在 pygtk 中如何编辑添加到 MenuItem 的 Entry 对象的内容(在运行时)

发布于 2024-10-17 09:16:58 字数 565 浏览 1 评论 0原文

我想创建一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

美胚控场 2024-10-24 09:16:58

这里是一篇文章,宣布您正在尝试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.

国粹 2024-10-24 09:16:58

Here is a great menubar example -- just copy it and put it menubar_test.py then change the permissions chmod 755 menubar_test.py

Hope this helps you!

夜声 2024-10-24 09:16:58

使用pygtk 2.0,我相信您想使用:

field.set_text("Here is my text in gtk.Entry widget")

field.get_text()检索您刚刚在gtk.Entry中设置的文本。

Using pygtk 2.0, I believe you want to use:

field.set_text("Here is my text in gtk.Entry widget")

field.get_text() retrieves the text that you just set above in gtk.Entry.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文