Remove actions options menu in Symbian: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 26: Line 26:
Another way to solve the issue is to set '''NoContextMenu''' to all widgets using the code below:
Another way to solve the issue is to set '''NoContextMenu''' to all widgets using the code below:


<code><br />QWidgetList allWidgets = QApplication::allWidgets();<br />foreach(QWidget* widget, allWidgets)<br /> widget->setContextMenuPolicy(Qt::NoContextMenu);
<code>
QWidgetList allWidgets = QApplication::allWidgets();
foreach(QWidget* widget, allWidgets)
widget->setContextMenuPolicy(Qt::NoContextMenu);

Revision as of 11:45, 25 February 2015


English Български

Remove actions option menu in Symbian

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.

  1. Go to the Qt Designer (you can do this in the code as well)
  2. Select every Widget in your form
  3. 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).
  4. See the screenshot below

pic

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);