Lines Matching refs:action
883 QAction *action; in contextMenuEvent() local
886 action = new QAction(_("Show Name"), this); in contextMenuEvent()
887 action->setCheckable(true); in contextMenuEvent()
888 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
891 action, SLOT(setOn(bool))); in contextMenuEvent()
892 action->setChecked(showName); in contextMenuEvent()
893 headerPopup->addAction(action); in contextMenuEvent()
894 action = new QAction(_("Show Range"), this); in contextMenuEvent()
895 action->setCheckable(true); in contextMenuEvent()
896 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
899 action, SLOT(setOn(bool))); in contextMenuEvent()
900 action->setChecked(showRange); in contextMenuEvent()
901 headerPopup->addAction(action); in contextMenuEvent()
902 action = new QAction(_("Show Data"), this); in contextMenuEvent()
903 action->setCheckable(true); in contextMenuEvent()
904 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
907 action, SLOT(setOn(bool))); in contextMenuEvent()
908 action->setChecked(showData); in contextMenuEvent()
909 headerPopup->addAction(action); in contextMenuEvent()
1237 QAction* action = new QAction(_("Show Debug Info"), popup); in createStandardContextMenu() local
1238 action->setCheckable(true); in createStandardContextMenu()
1239 connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool))); in createStandardContextMenu()
1240 connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setOn(bool))); in createStandardContextMenu()
1241 action->setChecked(showDebug()); in createStandardContextMenu()
1243 popup->addAction(action); in createStandardContextMenu()