• Home
  • Raw
  • Download

Lines Matching refs:action

874 			QAction *action;  in contextMenuEvent()  local
877 action = new QAction("Show Name", this); in contextMenuEvent()
878 action->setCheckable(true); in contextMenuEvent()
879 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
882 action, SLOT(setOn(bool))); in contextMenuEvent()
883 action->setChecked(showName); in contextMenuEvent()
884 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(setOn(bool))); in contextMenuEvent()
891 action->setChecked(showRange); in contextMenuEvent()
892 headerPopup->addAction(action); in contextMenuEvent()
893 action = new QAction("Show Data", this); in contextMenuEvent()
894 action->setCheckable(true); in contextMenuEvent()
895 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
898 action, SLOT(setOn(bool))); in contextMenuEvent()
899 action->setChecked(showData); in contextMenuEvent()
900 headerPopup->addAction(action); in contextMenuEvent()
1227 QAction* action = new QAction("Show Debug Info", popup); in createStandardContextMenu() local
1228 action->setCheckable(true); in createStandardContextMenu()
1229 connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool))); in createStandardContextMenu()
1230 connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setOn(bool))); in createStandardContextMenu()
1231 action->setChecked(showDebug()); in createStandardContextMenu()
1233 popup->addAction(action); in createStandardContextMenu()