区分gtk.Entry图标
我正在将两个图标添加到 PyGTK 中的 gtk.Entry 中。图标信号通过以下方法处理,
def entry_icon_event(self, widget, position, event)
我试图区分它们两者:
<enum GTK_ENTRY_ICON_PRIMARY of type GtkEntryIconPosition>
<enum GTK_ENTRY_ICON_SECONDARY of type GtkEntryIconPosition>
我该如何做到这一点?我一直在深入研究 PyGTK 的文档,但没有对象 GtkEntryIconPosition 也没有这个枚举的任何定义。
谢谢
I'm adding two icons to a gtk.Entry in PyGTK. The icons signals are handled by the following method
def entry_icon_event(self, widget, position, event)
I'm trying to differentiate between the two of them:
<enum GTK_ENTRY_ICON_PRIMARY of type GtkEntryIconPosition>
<enum GTK_ENTRY_ICON_SECONDARY of type GtkEntryIconPosition>
How can I do this? I've been digging through the documentation of PyGTK but there's no object GtkEntryIconPosition nor any definition for this enums.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,既然没有人给出答案,我就用我实际找到的东西来做。使用此图标的方法如下所示:
Alright, since no one gave an answer, I'll do with what I actually found. A method to use this icons would look like this:
有更好的方法来做到这一点:
There is better way to do it: