コード例 #1
0
ファイル: simplegui_gtk.py プロジェクト: thuleqaid/studynotes
 def __init__(self,parent,label=""):
     super(Button,self).__init__()
     self._widget=_gtk.Button(_utils.utf8ToStr(label))
     self._widget.connect("clicked",self.onClickEvent)
     self._click=None
コード例 #2
0
ファイル: simplegui_gtk.py プロジェクト: thuleqaid/studynotes
 def setTitle(self,title):
     self._widget.set_label(_utils.utf8ToStr(title))
コード例 #3
0
ファイル: simplegui_gtk.py プロジェクト: thuleqaid/studynotes
 def __init__(self,parent,label=""):
     super(Label,self).__init__()
     self._widget=_gtk.Label(_utils.utf8ToStr(label))