本文整理汇总了Python中gi.repository.Gtk.MINOR_VERSION属性的典型用法代码示例。如果您正苦于以下问题:Python Gtk.MINOR_VERSION属性的具体用法?Python Gtk.MINOR_VERSION怎么用?Python Gtk.MINOR_VERSION使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类gi.repository.Gtk
的用法示例。
在下文中一共展示了Gtk.MINOR_VERSION属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: show_context_menu
# 需要导入模块: from gi.repository import Gtk [as 别名]
# 或者: from gi.repository.Gtk import MINOR_VERSION [as 别名]
def show_context_menu(self):
"""
Show popup menu using different functions according to Gtk version.
'Gtk.Menu.popup' is deprecated since version 3.22, see:
https://lazka.github.io/pgi-docs/index.html#Gtk-3.0/classes/Menu.html#Gtk.Menu.popup
"""
self.prepare_context_menu()
self.context_menu.show_all()
if (Gtk.MAJOR_VERSION >= 3) and (Gtk.MINOR_VERSION >= 22):
self.context_menu.popup_at_pointer(None)
else:
self.context_menu.popup(None, None, None, None, 0, 0)
# ======================================================
# selection event handlers
# ======================================================
示例2: on_local_option
# 需要导入模块: from gi.repository import Gtk [as 别名]
# 或者: from gi.repository.Gtk import MINOR_VERSION [as 别名]
def on_local_option(self, app, option):
self.calc_sa = False
if option.contains("version"):
print("GPT: {}".format(__version__))
print("Python: {}".format(sys.version[:5]))
print("GTK+: {}.{}.{}".format(Gtk.MAJOR_VERSION,
Gtk.MINOR_VERSION,
Gtk.MICRO_VERSION,
))
print(_("Application executed from {}".format(cli.install_dir)))
return 0 # quit
elif option.contains("cli"):
cli.help()
cli.shell()
return 0
elif option.contains("default"):
self.load_stack_application_window()
elif option.contains("alt-gui-compact"):
self.load_application_window()
elif option.contains("alt-gui-ext"):
self.load_player_window()
elif option.contains("tl-calc"):
tlc.standalone()
return 0
else:
# insert key do option GLibVariantDict
option.insert_value("default", GLib.Variant("u", True))
self.on_local_option(app, option)
# contiunue with loading the app
return -1
示例3: show_menu
# 需要导入模块: from gi.repository import Gtk [as 别名]
# 或者: from gi.repository.Gtk import MINOR_VERSION [as 别名]
def show_menu(self, event=None):
"""
Show popup menu.
"""
if (Gtk.MAJOR_VERSION >= 3) and (Gtk.MINOR_VERSION >= 22):
# new from gtk 3.22:
self.popup_at_pointer(event)
else:
if event:
self.popup(None, None, None, None,
event.get_button()[1], event.time)
else:
self.popup(None, None, None, None,
0, Gtk.get_current_event_time())
#self.popup(None, None, None, None, 0, 0)