PyQt:如何将树视图或其他复杂的小部件显示为工具提示

发布于 2024-12-04 12:05:20 字数 211 浏览 1 评论 0原文

我正在开发一个 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 技术交流群。

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

发布评论

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

评论(1

心意如水 2024-12-11 12:05:20

使用 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

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