本文整理汇总了Python中gtk.VBox.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python VBox.__init__方法的具体用法?Python VBox.__init__怎么用?Python VBox.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gtk.VBox
的用法示例。
在下文中一共展示了VBox.__init__方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from gtk import VBox [as 别名]
# 或者: from gtk.VBox import __init__ [as 别名]
def __init__(self, vdict):
VBox.__init__(self)
self.vdict = {}
for name, value in vdict.items():
self.vdict[name] = _FieldEntry(name, default=value)
self.add(self.vdict[name])
self.vdict[name].show()
self.show()
示例2: __init__
# 需要导入模块: from gtk import VBox [as 别名]
# 或者: from gtk.VBox import __init__ [as 别名]
def __init__(self):
VBox.__init__(self)
self.status_label = Label('blank')
self.source_label = Label('blank')
self.pack_start(self.status_label, FALSE, FALSE, 0)
self.pack_end(self.source_label, FALSE, FALSE, 0)
self.status_label.show()
self.source_label.show()
self.show()
示例3: __init__
# 需要导入模块: from gtk import VBox [as 别名]
# 或者: from gtk.VBox import __init__ [as 别名]
def __init__(self, maxthreads=3):
VBox.__init__(self)
self.threads = []
self.queue = DownloadQueue()
self.show()
for i in range(maxthreads):
thread = _DownloadStatus(self.queue)
thread.start()
self.threads.append(thread)
self.pack_end(thread, FALSE, FALSE, 0)
示例4: __init__
# 需要导入模块: from gtk import VBox [as 别名]
# 或者: from gtk.VBox import __init__ [as 别名]
def __init__(self, conn, name='BaseDiffer'):
VBox.__init__(self)
self.set_name(name)
self.conn = conn
self.view = TwinScrollCList(name=name)
self.cursor = StatementCursor(self.conn)
suites = [r.suite for r in self.cursor.select(table='suites', order='suite')]
self.suite_bar = SuiteBar(suites, name=name)
self.trait_bar = TraitBar(name=name)
self.pack_end(self.suite_bar, 0, 0, 0)
self.pack_end(self.trait_bar, 0, 0, 0)
self.add(self.view)
self.suite_bar.show()
self.show()
示例5: __init__
# 需要导入模块: from gtk import VBox [as 别名]
# 或者: from gtk.VBox import __init__ [as 别名]
def __init__(self):
VBox.__init__(self)
self.form = GeoForm()
self.result = GeoResult()
self.pack_start(self.form, False)
self.pack_start(self.result)
self.login = GeoCaching()
self.search = None
self.form.connect('search', self.do_search)