Remove actions options menu in Symbian: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
AutoSpider (talk | contribs) (Add "cleanup" tag) |
||
Line 1: | Line 1: | ||
{{Cleanup | reason=Auto-imported from ExpressionEngine.}} | |||
[[Category:HowTo]] | [[Category:HowTo]] | ||
Revision as of 16:56, 3 March 2015
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine. Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean. |
English Български
The Problem
Sometimes Actions option is added automatically to the Options menu of Qt applications for Symbian.
Solutions
Using Qt Designer
This article describes how to remove the strange Actions option which keeps appearing on Qt application running on Symbian.
- Go to the Qt Designer (you can do this in the code as well)
- Select every Widget in your form
- In the properties pane find contextMenuPolicy and change it to NoContextMenu for every widget inside your form (could be a QWidget, QDialog or a QMainWindow).
- See the screenshot below
Programatically
Another way to solve the issue is to set NoContextMenu to all widgets using the code below:
QWidgetList allWidgets = QApplication::allWidgets();
foreach(QWidget* widget, allWidgets)
widget->setContextMenuPolicy(Qt::NoContextMenu);