我有一个应用程序,其中一些菜单操作在其他一些事情发生之前不应该是敏感的(如下面的最小代码中,在单击“新建”之前,“保存”没有意义)。
设置整个菜单很简单,例如示例中的 File-menu insensitive。设置工具栏按钮不敏感也很容易。这两个分别显示为 theMenuBar
和 the 的子ToolBar
级。
但是,当我尝试设置菜单的单个操作时,我完全迷失了。我根本找不到通往他们的道路。既不会像示例中的方法那样从它们(按下它们之后)上_do_save
移,也不会从菜单下移。
问题:
如何从一开始就设置“保存”不敏感并在单击“新建”时使其变得敏感?
要求:
我仍然想使用UIManager
如下设置菜单。
该解决方案不应要求用户单击“保存”来切换其灵敏度,它应该从一开始就不敏感。
最小代码:
节目中的评论是__init__
我希望访问菜单操作的地方......
#!/usr/bin/env python
from gi.repository import Gtk
class W(Gtk.Window):
UI = """
<menubar name="MainMenu">
<menu action="MenuFile">
<menuitem action="MenuNew" />
<menuitem action="MenuSave" />
<separator />
<menuitem action="MenuQuit" />
</menu>
</menubar>
"""
def __init__(self):
super(W, self).__init__()
self.set_default_size(300, 300)
self.connect("destroy", Gtk.main_quit)
box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
self.add(box)
action_group = Gtk.ActionGroup("ui_actions")
action_group.add_actions(
[
('MenuFile', None, '_File'),
('MenuNew', Gtk.STOCK_NEW, '_New', None, 'Should enable save',
self._do_new),
('MenuSave', Gtk.STOCK_SAVE, '_Save', None,
'Only sensitive after new', self._do_save),
('MenuQuit', Gtk.STOCK_QUIT, '_Quit', None, 'Exits',
Gtk.main_quit)
]
)
uim = Gtk.UIManager()
uim.add_ui_from_string(self.UI)
self.add_accel_group(uim.get_accel_group())
uim.insert_action_group(action_group)
self._menu = uim.get_widget("/MainMenu")
box.pack_start(self._menu, False, False, 0)
#HERE'S WHERE I DON'T KNOW WHAT TO DO
#How to append the widget corresponing ot 'MenuSave' into
#self._sensitie_widgets
self._sensitive_widgets = []
self._set_sensitive_state(False)
self.show_all()
def _set_sensitive_state(self, val):
"""Does nothing now, because the GtkAction for 'MenuSave' has
not been appended to self._set_sensitive_state"""
for w in self._sensitive_widgets:
w.set_sensitive(val)
def _do_new(self, *args):
"""Callback should just invoke self._set_sensitive_state as below"""
self._set_sensitive_state(True)
def _do_save(self, widget):
"""This should only be possible after New has been pressed.
Currently a failed attempt at tracing the way to access it."""
def _do_trace(w):
if hasattr(w, 'get_parent'):
_do_trace(w.get_parent())
else:
print dir(w)
print w
_do_trace(widget)
if __name__ == "__main__":
w = W()
Gtk.main()
任何帮助将不胜感激,因为我对此感到困惑(感觉应该很直接)......