Lines Matching refs:ActionEditor

104 ObjectNamingMode ActionEditor::m_objectNamingMode = Underscore; // fixme Qt 6: CamelCase
106 ActionEditor::ActionEditor(QDesignerFormEditorInterface *core, QWidget *parent, Qt::WindowFlags fla… in ActionEditor() function in qdesigner_internal::ActionEditor
142 connect(m_actionNew, &QAction::triggered, this, &ActionEditor::slotNewAction); in ActionEditor()
149 connect(m_actionCut, &QAction::triggered, this, &ActionEditor::slotCut); in ActionEditor()
154 connect(m_actionCopy, &QAction::triggered, this, &ActionEditor::slotCopy); in ActionEditor()
159 connect(m_actionPaste, &QAction::triggered, this, &ActionEditor::slotPaste); in ActionEditor()
166 connect(m_actionEdit, &QAction::triggered, this, &ActionEditor::editCurrentAction); in ActionEditor()
168 …connect(m_actionNavigateToSlot, &QAction::triggered, this, &ActionEditor::navigateToSlotCurrentAct… in ActionEditor()
173 connect(m_actionDelete, &QAction::triggered, this, &ActionEditor::slotDelete); in ActionEditor()
181 connect(m_viewModeGroup, &QActionGroup::triggered, this, &ActionEditor::slotViewMode); in ActionEditor()
198 connect(filterLineEdit, &QLineEdit::textChanged, this, &ActionEditor::setFilter); in ActionEditor()
226 this, &ActionEditor::resourceImageDropped); in ActionEditor()
228 connect(m_actionView, &ActionView::currentChanged,this, &ActionEditor::slotCurrentItemChanged); in ActionEditor()
230 connect(m_actionView, &ActionView::activated, this, &ActionEditor::itemActivated); in ActionEditor()
233 this, &ActionEditor::slotSelectionChanged); in ActionEditor()
236 this, &ActionEditor::slotContextMenuRequested); in ActionEditor()
238 connect(this, &ActionEditor::itemActivated, this, &ActionEditor::editAction); in ActionEditor()
245 QToolButton *ActionEditor::createConfigureMenuButton(const QString &t, QMenu **ptrToMenu) in createConfigureMenuButton()
259 ActionEditor::~ActionEditor() in ~ActionEditor()
264 QAction *ActionEditor::actionNew() const in actionNew()
269 QAction *ActionEditor::actionDelete() const in actionDelete()
274 QDesignerFormWindowInterface *ActionEditor::formWindow() const in formWindow()
279 void ActionEditor::setFormWindow(QDesignerFormWindowInterface *formWindow) in setFormWindow()
291 disconnect(action, &QAction::changed, this, &ActionEditor::slotActionChanged); in setFormWindow()
320 connect(action, &QAction::changed, this, &ActionEditor::slotActionChanged); in setFormWindow()
326 void ActionEditor::slotSelectionChanged(const QItemSelection& selected, const QItemSelection& /*de… in slotSelectionChanged()
336 void ActionEditor::slotCurrentItemChanged(QAction *action) in slotCurrentItemChanged()
364 void ActionEditor::slotActionChanged() in slotActionChanged()
382 QDesignerFormEditorInterface *ActionEditor::core() const in core()
387 QString ActionEditor::filter() const in filter()
392 void ActionEditor::setFilter(const QString &f) in setFilter()
404 void ActionEditor::manageAction(QAction *action) in manageAction()
418 connect(action, &QAction::changed, this, &ActionEditor::slotActionChanged); in manageAction()
421 void ActionEditor::unmanageAction(QAction *action) in unmanageAction()
426 disconnect(action, &QAction::changed, this, &ActionEditor::slotActionChanged); in unmanageAction()
442 void ActionEditor::slotNewAction() in slotNewAction()
531 void ActionEditor::editAction(QAction *action, int column) in editAction()
607 void ActionEditor::editCurrentAction() in editCurrentAction()
613 void ActionEditor::navigateToSlotCurrentAction() in navigateToSlotCurrentAction()
619 void ActionEditor::deleteActions(QDesignerFormWindowInterface *fw, const ActionList &actions) in deleteActions()
636 void ActionEditor::copyActions(QDesignerFormWindowInterface *fwi, const ActionList &actions) in copyActions()
659 void ActionEditor::slotDelete() in slotDelete()
720 QString ActionEditor::actionTextToName(const QString &text, const QString &prefix) in actionTextToName()
729 void ActionEditor::resourceImageDropped(const QString &path, QAction *action) in resourceImageDropped()
746 void ActionEditor::mainContainerChanged() in mainContainerChanged()
753 void ActionEditor::slotViewMode(QAction *a) in slotViewMode()
759 void ActionEditor::slotSelectAssociatedWidget(QWidget *w) in slotSelectAssociatedWidget()
773 void ActionEditor::restoreSettings() in restoreSettings()
780 void ActionEditor::saveSettings() in saveSettings()
786 void ActionEditor::updateViewModeActions() in updateViewModeActions()
799 void ActionEditor::slotCopy() in slotCopy()
812 void ActionEditor::slotCut() in slotCut()
826 void ActionEditor::slotPaste() in slotPaste()
836 void ActionEditor::slotContextMenuRequested(QContextMenuEvent *e, QAction *item) in slotContextMenuRequested()