在QT中为图像标签创建鼠标事件

发布于 2024-10-31 16:29:43 字数 187 浏览 0 评论 0原文

我正在使用 QT 开发一个应用程序。我有一个主窗口,上面有一个图像标签。我将图像加载到此图像标签,现在我想在它上面绘制。所以,我的问题是 - 如何仅为此图像标签创建鼠标事件,而不必派生另一个 QLabel 类并将其对象实例化到我的主窗口。

我的项目明天到期,这是我唯一要做的事情。我真的很感激你的帮助。

此致,阿尤什·什雷斯塔。

I am working on an application using QT. I have a mainwindow on which i have an image label. I load an image to this imagelabel and now i want to draw over it. So, my question is- how do i create mouse events for this image label only without having to derive another class of QLabel and instantiating its object to my main window.

My project's due tomorrow and its the only thing i've got left to do. I'd really appreciate the help.

Sincerely, Aayush Shrestha.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

单调的奢华 2024-11-07 16:29:43

如果您不想创建继承自QLabel的类来获取鼠标事件,则需要使用 installEventFilter 函数使用您的类之一的 eventFilter 事件。

If you do not want to create a class that inherits from QLabel to get mouse event, you need to use the installEventFilter function using the eventFilter event of one of your class.

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