如何从 QTextEdit 上下文菜单中删除标准菜单项
所以,我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要完全控制上下文菜单,请首先使用 QWidget.setContextMenuPolicy 将上下文菜单策略更改为
Qt.CustomContextMenu
。然后将处理程序连接到 QWidget.customContextMenuRequested 信号。在处理程序中,您可以使用 QTextEdit.createStandardContextMenu 方法。根据需要修改菜单,然后使用传递给信号处理程序的
QPoint
显示它,如下所示: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:欢迎来到皮赛德! :-)
由于 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.