• Home
  • Raw
  • Download

Lines Matching refs:action

873 		QAction *action;  in contextMenuEvent()  local
876 action = new QAction("Show Name", this); in contextMenuEvent()
877 action->setCheckable(true); in contextMenuEvent()
878 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
881 action, SLOT(setChecked(bool))); in contextMenuEvent()
882 action->setChecked(showName); in contextMenuEvent()
883 headerPopup->addAction(action); in contextMenuEvent()
885 action = new QAction("Show Range", this); in contextMenuEvent()
886 action->setCheckable(true); in contextMenuEvent()
887 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
890 action, SLOT(setChecked(bool))); in contextMenuEvent()
891 action->setChecked(showRange); in contextMenuEvent()
892 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(setChecked(bool))); in contextMenuEvent()
900 action->setChecked(showData); in contextMenuEvent()
901 headerPopup->addAction(action); in contextMenuEvent()
1227 QAction* action = new QAction("Show Debug Info", popup); in createStandardContextMenu() local
1229 action->setCheckable(true); in createStandardContextMenu()
1230 connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool))); in createStandardContextMenu()
1231 connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setChecked(bool))); in createStandardContextMenu()
1232 action->setChecked(showDebug()); in createStandardContextMenu()
1234 popup->addAction(action); in createStandardContextMenu()