本文整理汇总了Python中netzob.Common.ResourcesConfiguration.ResourcesConfiguration.getWorkspace方法的典型用法代码示例。如果您正苦于以下问题:Python ResourcesConfiguration.getWorkspace方法的具体用法?Python ResourcesConfiguration.getWorkspace怎么用?Python ResourcesConfiguration.getWorkspace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类netzob.Common.ResourcesConfiguration.ResourcesConfiguration
的用法示例。
在下文中一共展示了ResourcesConfiguration.getWorkspace方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from netzob.Common.ResourcesConfiguration import ResourcesConfiguration [as 别名]
# 或者: from netzob.Common.ResourcesConfiguration.ResourcesConfiguration import getWorkspace [as 别名]
def __init__(self):
self.window = Gtk.Window(Gtk.WindowType.TOPLEVEL)
self.window.set_title(_("Netzob"))
self.window.set_position(Gtk.WindowPosition.CENTER)
self.window.set_decorated(False)
self.window.set_default_size(268, 501)
self.window.set_events(Gdk.EventMask.ALL_EVENTS_MASK)
# Retrieve static resources
staticPath = ResourcesConfiguration.getStaticResources()
logoPath = os.path.abspath(os.path.join(staticPath, "logo.png"))
hbox = Gtk.HBox()
hbox.show()
self.window.add(hbox)
self.image = Gtk.Image()
self.image.set_from_file(logoPath)
self.image.show()
main_vbox = Gtk.VBox(False, 1)
# main_vbox.pack_start(self.image, True, True)
workspace = ResourcesConfiguration.getWorkspace()
if workspace is not None:
self.lbl = Gtk.Label(label=_("Current workspace: {0}".format(workspace)))
else:
self.lbl = Gtk.Label(label=_("Current workspace: NO WORKSPACE COMPUTED!"))
self.lbl.set_alignment(0, 0.5)
main_vbox.pack_start(self.image, True, True, 2)
self.window.add(main_vbox)
self.window.show_all()