PyGTK:如何制作剪贴板监视器?
如何使用 PyGTK GUI 在 Python 中制作一个简单的剪贴板监视器?
我找到了 gtk.clipboard 类,但找不到任何解决方案来获取“信号”以在剪贴板内容发生更改时触发事件。
有什么想法吗?
How can I make a simple clipboard monitor in Python using the PyGTK GUI?
I found gtk.clipboard
class and but I couldn't find any solution to get the "signals" to trigger the event when the clipboard content has changed.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有适当的通知 API(例如 WM_DrawClipboard 消息),您可能必须求助于轮询循环。然后,您将与尝试使用此共享资源的其他应用程序产生重大冲突。
不要诉诸轮询循环。
Without a proper notification API, such as WM_DrawClipboard messages, you would probably have to resort to a polling loop. And then you will cause major conflicts with other apps that are trying to use this shared resource.
Do not resort to a polling loop.