Home
last modified time | relevance | path

Searched refs:unindentAct (Results 1 – 3 of 3) sorted by relevance

/dports/audio/csoundqt/CsoundQt-0.9.8.1/src/
H A Dqutecsound.h488 QAction *unindentAct; variable
H A Dqutecsound.cpp3291 unindentAct->setShortcut(tr("Shift+Ctrl+I")); in setDefaultKeyboardShortcuts()
4067 unindentAct = new QAction(tr("Unindent"), this); in createActions()
4068 unindentAct->setStatusTip(tr("Unindent selection")); in createActions()
4069 unindentAct->setShortcutContext(Qt::ApplicationShortcut); in createActions()
4183 m_keyActions.append(unindentAct); in setKeyboardShortcutsList()
4250 disconnect(unindentAct, 0, 0, 0); in connectActions()
4259 connect(unindentAct, SIGNAL(triggered()), doc, SLOT(unindent())); in connectActions()
4413 editMenu->addAction(unindentAct); in createMenus()
/dports/devel/eric6/eric6-21.11/eric/eric6/ViewManager/
H A DViewManager.py1062 self.unindentAct = E5Action(
1070 self.unindentAct.setStatusTip(QCoreApplication.translate(
1072 self.unindentAct.setWhatsThis(QCoreApplication.translate(
1078 self.unindentAct.triggered.connect(self.__editUnindent)
1079 self.editActions.append(self.unindentAct)
2777 menu.addAction(self.unindentAct)
2840 toolbarManager.addAction(self.unindentAct, tb.windowTitle())