Lines Matching refs:action

825 			Q3Action *action;  in contextMenuEvent()  local
828 action = new Q3Action(NULL, _("Show Name"), 0, this); in contextMenuEvent()
829 action->setToggleAction(TRUE); in contextMenuEvent()
830 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
833 action, SLOT(setOn(bool))); in contextMenuEvent()
834 action->setOn(showName); in contextMenuEvent()
835 action->addTo(headerPopup); in contextMenuEvent()
836 action = new Q3Action(NULL, _("Show Range"), 0, this); in contextMenuEvent()
837 action->setToggleAction(TRUE); in contextMenuEvent()
838 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
841 action, SLOT(setOn(bool))); in contextMenuEvent()
842 action->setOn(showRange); in contextMenuEvent()
843 action->addTo(headerPopup); in contextMenuEvent()
844 action = new Q3Action(NULL, _("Show Data"), 0, this); in contextMenuEvent()
845 action->setToggleAction(TRUE); in contextMenuEvent()
846 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
849 action, SLOT(setOn(bool))); in contextMenuEvent()
850 action->setOn(showData); in contextMenuEvent()
851 action->addTo(headerPopup); in contextMenuEvent()
1167 Q3Action* action = new Q3Action(NULL, _("Show Debug Info"), 0, popup); in createPopupMenu() local
1168 action->setToggleAction(TRUE); in createPopupMenu()
1169 connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool))); in createPopupMenu()
1170 connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setOn(bool))); in createPopupMenu()
1171 action->setOn(showDebug()); in createPopupMenu()
1173 action->addTo(popup); in createPopupMenu()