在QT中为图像标签创建鼠标事件
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不想创建继承自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.