如何从 QTextEdit 上下文菜单中删除标准菜单项

发布于 2024-12-10 09:48:57 字数 170 浏览 0 评论 0原文

所以,我对 PySide 和 QT 很陌生,想知道如何从 QTextEdit 标准上下文菜单中删除 menuitem (无论哪种(撤消、重做、复制、粘贴等))。

或者告诉我一种获取此上下文菜单的 QMenu 对象的方法。然后我可以将removeAction方法应用于menitem。

TIA。

So, i'm pretty new in PySide and QT, and want to know how to remove menuitem (it does not matter what kind of (undo, redo, copy, paste and etc)) from QTextEdit standart context menu.

Or tell me a way to get QMenu object of this context menu. Then i can apply removeAction method to menuitem.

TIA.

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

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

发布评论

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

评论(2

烟酒忠诚 2024-12-17 09:48:57

要完全控制上下文菜单,请首先使用 QWidget.setContextMenuPolicy 将上下文菜单策略更改为Qt.CustomContextMenu。然后将处理程序连接到 QWidget.customContextMenuRequested 信号。在处理程序中,您可以使用 QTextEdit.createStandardContextMenu 方法。

根据需要修改菜单,然后使用传递给信号处理程序的 QPoint 显示它,如下所示:

menu.exec_(textedit.viewport().mapToGlobal(point))

To get full control over the context menu, first use QWidget.setContextMenuPolicy to change the context meu policy to Qt.CustomContextMenu. Then connect a handler to the QWidget.customContextMenuRequested signal. In the handler, you can then get a standard context menu object using the QTextEdit.createStandardContextMenu method.

Modify the menu as you see fit, and then show it using the QPoint passed to the signal handler like this:

menu.exec_(textedit.viewport().mapToGlobal(point))
等待我真够勒 2024-12-17 09:48:57

欢迎来到皮赛德! :-)

由于 QTextEdit 继承了 QWidget,您可能希望将上下文菜单策略设置为自定义,然后提供自己的弹出菜单

http://www.pyside.org/docs/pyside/PySide/QtGui/QWidget.html#PySide.QtGui.PySide.QtGui.QWidget.contextMenuPolicy

我建议创建自己的原因自定义上下文是因为 qmenu 不能作为 qtextedit 上的持久对象真正访问。它是根据单击时的上下文动态构建的。我不确定是否有一种方法可以重载以在显示 qmenu 之前获得对它的访问权限。我认为你能做的最好的事情就是完全定义你自己的。

Welcome to pyside! :-)

Since QTextEdit inherits QWidget you would probably want to set the context menu policy to custom and then supply you own popup menu

http://www.pyside.org/docs/pyside/PySide/QtGui/QWidget.html#PySide.QtGui.PySide.QtGui.QWidget.contextMenuPolicy

The reason i suggest creating your own custom context is because the qmenu isnt really accessible as a persistant object on the qtextedit. Its build on the fly basd on the context at the moment it was clicked. Im not sure there is a method you can overload to gain acces to the qmenu before it is shown. I think the best you can do is define your own completly.

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