PyGTK:如何制作剪贴板监视器?

发布于 2024-09-05 02:53:11 字数 126 浏览 5 评论 0原文

如何使用 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 技术交流群。

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

发布评论

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

评论(1

∝单色的世界 2024-09-12 02:53:11

如果没有适当的通知 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.

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