Compatibility Members for QActionGroup

The following members of class QActionGroupare part of the Qt compatibility layer. We advise against using them in new code.

Public Functions

void add(QAction * a)
void addSeparator()
bool addTo(QWidget * widget)
  • 8 public functions inherited from QObject

Signals

void selected(QAction * action)

Member Function Documentation

void QActionGroup::add(QAction * a)

Use addAction() instead.

void QActionGroup::addSeparator()

Normally you add a separator to the menus or widgets to which actions are added, so this function is very rarely needed.

For example, if you have code like

actionGroup->addSeparator();

you can rewrite it as

QAction *separator = new QAction(this);
separator->setSeparator(true);
actionGroup->addAction(separator);

bool QActionGroup::addTo(QWidget * widget)

For example, if you have code like

actionGroup->addTo(widget);

you can rewrite it as

widget->addActions(actionGroup->actions());

[signal] void QActionGroup::selected(QAction * action)

Use triggered() instead.

© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.