在 pygtk 中如何编辑添加到 MenuItem 的 Entry 对象的内容(在运行时)
我想创建一个 MenuItem,条目在此显示,以便用户可以向条目小部件输入值。 这个过程很容易实现,但在显示此条目后,它无法获取光标,并且用户无法向其中输入文本,请帮我做到这一点。 我用的是 pygtk 2.0 。
#!/usr/bin/env python
import gtk
win = gtk.Window()
win.connect( "destroy", gtk.main_quit )
menubar = gtk.MenuBar()
popup = gtk.Menu()
root_menu = gtk.MenuItem("root")
menu_item = gtk.MenuItem()
field = gtk.Entry()
win.add( menubar )
menubar.add( root_menu )
root_menu.set_submenu( popup )
popup.append( menu_item )
menu_item.add( field )
win.show_all()
print field.get_can_focus(), field.get_editable()
gtk.main()
I want to create a MenuItem that an Entry shows on this to user can enter value to the entry widget.
This procedure is easy to implement but after showing this Entry it cant get cursor and user cant input text to it, help me to do it please.
i used pygtk 2.0 .
#!/usr/bin/env python
import gtk
win = gtk.Window()
win.connect( "destroy", gtk.main_quit )
menubar = gtk.MenuBar()
popup = gtk.Menu()
root_menu = gtk.MenuItem("root")
menu_item = gtk.MenuItem()
field = gtk.Entry()
win.add( menubar )
menubar.add( root_menu )
root_menu.set_submenu( popup )
popup.append( menu_item )
menu_item.add( field )
win.show_all()
print field.get_can_focus(), field.get_editable()
gtk.main()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这里是一篇文章,宣布您正在尝试to do 可能包含在 GTK 3.4 中;但我不知道在哪里可以找到该代码的当前状态。
Here is a post announcing that what you are trying to do might be included in GTK 3.4; but I don't know where to find the current state of that code.
这是一个很棒的菜单栏示例 -- 只需复制它并放入
menubar_test.py
然后更改权限chmod 755 menubar_test.py
希望这对您有帮助!
Here is a great menubar example -- just copy it and put it
menubar_test.py
then change the permissionschmod 755 menubar_test.py
Hope this helps you!
使用
pygtk 2.0
,我相信您想使用:field.get_text()
检索您刚刚在gtk.Entry
中设置的文本。Using
pygtk 2.0
, I believe you want to use:field.get_text()
retrieves the text that you just set above ingtk.Entry
.