pygtk-label


 #!/usr/bin/env python

# example label.py

import pygtk
pygtk.require('2.0')
import gtk

class Labels:
	 def __init__(self):
		 self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
		 self.window.connect("destroy", lambda w: gtk.main_quit())

		 self.window.set_title("Label")
		 vbox = gtk.VBox(False, 5)
		 hbox = gtk.HBox(False, 5)
		 self.window.add(hbox)
		 hbox.pack_start(vbox, False, False, 0)
		 self.window.set_border_width(5)

		 frame = gtk.Frame("Normal Label")
		 label = gtk.Label("This is a Normal label")
		 frame.add(label)
		 vbox.pack_start(frame, False, False, 0)

		 frame = gtk.Frame("Multi-line Label")
		 label = gtk.Label("This is a Multi-line label.\nSecond line\n"
		 "Third line")
		 frame.add(label)
		 vbox.pack_start(frame, False, False, 0)

		 frame = gtk.Frame("Left Justified Label")
		 label = gtk.Label("This is a Left-Justified\n"
		 "Multi-line label.\nThird line")
		 label.set_justify(gtk.JUSTIFY_LEFT)
		 frame.add(label)
		 vbox.pack_start(frame, False, False, 0)

		 frame = gtk.Frame("Right Justified Label")
		 label = gtk.Label("This is a Right-Justified\nMulti-line label.\n"
		 "Fourth line, (j/k)")
		 label.set_justify(gtk.JUSTIFY_RIGHT)
		 frame.add(label)
		 vbox.pack_start(frame, False, False, 0)

		 vbox = gtk.VBox(False, 5)
		 hbox.pack_start(vbox, False, False, 0)
		 frame = gtk.Frame("Line wrapped label")
		 label = gtk.Label("This is an example of a line-wrapped label. It "
		 "should not be taking up the entire "
		 "width allocated to it, but automatically "
		 "wraps the words to fit. "
		 "The time has come, for all good men, to come to "
		 "the aid of their party. "
		 "The sixth sheik’s six sheep’s sick.\n"
		 " It supports multiple paragraphs correctly, "
		 "and correctly adds "
		 "many extra spaces. ")
		 label.set_line_wrap(True)
		 frame.add(label)
		 vbox.pack_start(frame, False, False, 0)

		 frame = gtk.Frame("Filled, wrapped label")

		 label = gtk.Label("This is an example of a line-wrapped, filled label. "
		 "It should be taking "
		 "up the entire width allocated to it. "
		 "Here is a sentence to prove "
		 "my point. Here is another sentence. "
		 "Here comes the sun, do de do de do.\n"
		 " This is a new paragraph.\n"
		 " This is another newer, longer, better "
		 "paragraph. It is coming to an end, "
		 "unfortunately.")
		 label.set_justify(gtk.JUSTIFY_FILL)
		 label.set_line_wrap(True)
		 frame.add(label)
		 vbox.pack_start(frame, False, False, 0)

		 frame = gtk.Frame("Underlined label")
		 label = gtk.Label("This label is underlined!\n"
		 "This one is underlined in quite a funky fashion")
		 label.set_justify(gtk.JUSTIFY_LEFT)
		 label.set_pattern("___________________________")
		 frame.add(label)
		 vbox.pack_start(frame, False, False, 0)
		 self.window.show_all ()

def main():
	gtk.main()
	return 0

if __name__ == "__main__":
	Labels()
	main()

 

 



 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值