PyQt:如何将树视图或其他复杂的小部件显示为工具提示
我正在开发一个 PyQt 项目。我有一张带有点的地图(地图是 QGraphicsScene,我的点是 QGraphicsEllipseItem)。 我想在收到悬停事件时显示有关点的一些信息。 信息将是:一张图片、一些文本和一个填充数据的树视图。 我不想打开一个新窗口,我希望它像工具提示一样漂浮在地图上。
我不知道该怎么做,我找不到任何可以满足我需求的小部件。
感谢您的帮助!
I'm working on a PyQt project. I have a map with points on it (The map is a QGraphicsScene and my points are QGraphicsEllipseItem).
I would like to display some informations on the points when they receive a hover event.
The information will be: a picture, some text and a treeview fill with data.
I don't want to open a new window, I want it to float over the map exactly how a tooltip will do.
I don't know how to do it, I can't find any widget who fill my needs.
Thank you for any help !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 windowflag Qt::ToolTip 创建一个新的小部件/窗口。根据文档,Qt 的工具提示没有别的。 http://doc.qt.io/qt-5/qt.html #WindowType-enum
Create a new widget/window with windowflag Qt::ToolTip. According to the docs Qt's tooltips are nothing else. http://doc.qt.io/qt-5/qt.html#WindowType-enum