Lines Matching refs:action

831 			Q3Action *action;  in contextMenuEvent()  local
834 action = new Q3Action(NULL, _("Show Name"), 0, this); in contextMenuEvent()
835 action->setToggleAction(TRUE); in contextMenuEvent()
836 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
839 action, SLOT(setOn(bool))); in contextMenuEvent()
840 action->setOn(showName); in contextMenuEvent()
841 action->addTo(headerPopup); in contextMenuEvent()
842 action = new Q3Action(NULL, _("Show Range"), 0, this); in contextMenuEvent()
843 action->setToggleAction(TRUE); in contextMenuEvent()
844 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
847 action, SLOT(setOn(bool))); in contextMenuEvent()
848 action->setOn(showRange); in contextMenuEvent()
849 action->addTo(headerPopup); in contextMenuEvent()
850 action = new Q3Action(NULL, _("Show Data"), 0, this); in contextMenuEvent()
851 action->setToggleAction(TRUE); in contextMenuEvent()
852 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
855 action, SLOT(setOn(bool))); in contextMenuEvent()
856 action->setOn(showData); in contextMenuEvent()
857 action->addTo(headerPopup); in contextMenuEvent()
1173 Q3Action* action = new Q3Action(NULL, _("Show Debug Info"), 0, popup); in createPopupMenu() local
1174 action->setToggleAction(TRUE); in createPopupMenu()
1175 connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool))); in createPopupMenu()
1176 connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setOn(bool))); in createPopupMenu()
1177 action->setOn(showDebug()); in createPopupMenu()
1179 action->addTo(popup); in createPopupMenu()