Lines Matching refs:action

875 			QAction *action;  in contextMenuEvent()  local
878 action = new QAction(_("Show Name"), this); in contextMenuEvent()
879 action->setCheckable(true); in contextMenuEvent()
880 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
883 action, SLOT(setOn(bool))); in contextMenuEvent()
884 action->setChecked(showName); in contextMenuEvent()
885 headerPopup->addAction(action); in contextMenuEvent()
886 action = new QAction(_("Show Range"), 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(showRange); in contextMenuEvent()
893 headerPopup->addAction(action); in contextMenuEvent()
894 action = new QAction(_("Show Data"), 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(showData); in contextMenuEvent()
901 headerPopup->addAction(action); in contextMenuEvent()
1229 QAction* action = new QAction(_("Show Debug Info"), popup); in createStandardContextMenu() local
1230 action->setCheckable(true); in createStandardContextMenu()
1231 connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool))); in createStandardContextMenu()
1232 connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setOn(bool))); in createStandardContextMenu()
1233 action->setChecked(showDebug()); in createStandardContextMenu()
1235 popup->addAction(action); in createStandardContextMenu()