Lines Matching refs:action
359 void ConfigList::setOptionMode(QAction *action) in setOptionMode() argument
361 if (action == showNormalAction) in setOptionMode()
363 else if (action == showAllAction) in setOptionMode()
886 QAction *action; in contextMenuEvent() local
889 action = new QAction("Show Name", this); in contextMenuEvent()
890 action->setCheckable(true); in contextMenuEvent()
891 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent()
894 action, SLOT(setChecked(bool))); in contextMenuEvent()
895 action->setChecked(showName); in contextMenuEvent()
896 headerPopup->addAction(action); in contextMenuEvent()
943 QAction *action = new QAction("Show Debug Info", contextMenu); in ConfigInfoView() local
945 action->setCheckable(true); in ConfigInfoView()
946 connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool))); in ConfigInfoView()
947 connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setChecked(bool))); in ConfigInfoView()
948 action->setChecked(showDebug()); in ConfigInfoView()
950 contextMenu->addAction(action); in ConfigInfoView()