網頁

2009年11月20日 星期五

一個有趣的小程式 - sm (screen message)

哈,其實我是想順便測試一下wp-codebox這個外掛....:P

這個小程式很有趣,可以做全螢幕的大字報/看板之類的,下面是我自己做的範例:

sm

別懷疑,這就是一整個螢幕大小!

我曾經拿這隻程式來做舉牌小弟,或是在一些場合可以(娛樂性質的)打廣告或是發表意見之類的XD 總之很好玩就是了~

下面是他的python版本的程式碼,才140行而已!值得注意的是,第70行的字型我改成我喜歡的字型了,畢竟這類型的應用,還是用黑體最好看了~嘿嘿~:P

#!/usr/bin/python
# encoding:utf8

# vlshow.py
# Copyright (C) 2006 Joachim Breitner
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

import pygtk
pygtk.require('2.0')
import gtk
import pango
import sys
import gobject

window = gtk.Window(gtk.WINDOW_TOPLEVEL)
window.set_decorated(False)
window.modify_bg(gtk.STATE_NORMAL, gtk.gdk.color_parse("white"))
window.fullscreen()

settings = gtk.settings_get_default()

draw = gtk.DrawingArea()
draw.modify_bg(gtk.STATE_NORMAL, gtk.gdk.color_parse("white"))
draw.set_size_request(400,300)

pixmap = gtk.gdk.Pixmap(None, 1, 1, 1)
color = gtk.gdk.Color()
cursor = gtk.gdk.Cursor(pixmap, pixmap, color, color, 0, 0)

tv = gtk.TextView()
tb = tv.get_buffer()

def get_text():
return tb.get_text(tb.get_start_iter(), tb.get_end_iter())

if len(sys.argv) > 1:
tb.set_text(" ".join(sys.argv[1:]))
else:
tb.set_text("")

quit = gtk.Button(stock=gtk.STOCK_QUIT)
quit.modify_bg(gtk.STATE_NORMAL, gtk.gdk.color_parse("white"))
quit.connect("clicked",gtk.main_quit)

hbox = gtk.HBox()
hbox.pack_start(tv, expand=True, fill=True)
hbox.pack_start(quit, expand=False,fill=False)

vbox = gtk.VBox()
vbox.pack_start(draw, expand=True, fill=True)
vbox.pack_start(hbox, expand=False, fill=False)
window.add(vbox)

font = pango.FontDescription()
font.set_family("LiHeiPro")
font.set_size(60*pango.SCALE)
layout = draw.create_pango_layout(get_text())
layout.set_font_description(font)
layout.set_alignment(pango.ALIGN_CENTER)

accel = gtk.AccelGroup()
key, mod = gtk.accelerator_parse("Q")
accel.connect_group(key, mod, 0, gtk.main_quit)
key, mod = gtk.accelerator_parse("Escape")
#accel.connect_group(key, mod, 0, gtk.main_quit)
#key, mod = gtk.accelerator_parse("C")
accel.connect_group(key, mod, 0, (lambda x,y,z,v: tb.set_text("")))
window.add_accel_group(accel)

window.show_all()

need_resize=True
need_quick=True

def resize(w=None,rect=None):
global need_resize
draw.window.set_cursor(cursor)
(w1,h1) = layout.get_pixel_size()
if h1>0 and w1>0:
(x,y,w2,h2) = draw.get_allocation()
s = font.get_size()
s = min ( int (s*w2/w1), int (s*h2/h1) )
font.set_size(s)
layout.set_font_description(font)
need_resize=False
else:
need_resize=True

def redraw(w=None,e=None):
global need_resize, need_quick
if layout.get_text(): # Fails for empty lines :-(
gc = draw.get_style().fg_gc[gtk.STATE_NORMAL]
(w1,h1) = layout.get_pixel_size()
if h1>0 and w1>0:
(x,y,w2,h2) = draw.get_allocation()
draw.window.draw_layout(gc,(w2-w1)/2,(h2-h1)/2,layout)
hq(True)

quality = False
def hq(q,force=False):
global quality
if q != quality:
if q:
settings.set_long_property("gtk-xft-antialias",1,"Hier halt")
else:
settings.set_long_property("gtk-xft-antialias",0,"Hier halt")
else:
if force:
draw.queue_draw()

quality = q
return False

def newtext(w):
global timeout_id
layout.set_text(get_text())
resize()
hq(False, True)

draw.connect("configure-event", resize)
draw.connect("expose-event", redraw)
tb.connect("changed", newtext)

gtk.main()

另外附上我學弟對這個程式的介紹,我想他的文筆應該比我好吧....|||

或是您也可以直接去Google搜尋「screen message」(千萬不要只搜尋簡寫...orz) 有很多相關資料~:P

Ubuntu的使用者也可以直接 $ sudo apt-get install sm 來安裝唷~(不過好像是C語言版本的,C語言版本在我的電腦上運作會跟compiz搭配得不太好...)

2 則留言:

  1. 唉唉
    搜尋時一直下錯關鍵字 XD

    回覆刪除
  2. 其實是我的錯啦.....我換系統卻沒把link留住.....下次我會再想辦法保持住link的QQ

    回覆刪除