Lines Matching defs:action
363 void ConfigList::setOptionMode(QAction *action)
365 if (action == showNormalAction)
367 else if (action == showAllAction)
890 QAction *action;
893 action = new QAction("Show Name", this);
894 action->setCheckable(true);
895 connect(action, &QAction::toggled,
898 action, &QAction::setChecked);
899 action->setChecked(showName);
900 headerPopup->addAction(action);
948 QAction *action = new QAction("Show Debug Info", contextMenu);
950 action->setCheckable(true);
951 connect(action, &QAction::toggled,
954 action, &QAction::setChecked);
955 action->setChecked(showDebug());
957 contextMenu->addAction(action);