Home
last modified time | relevance | path

Searched refs:curEditor (Results 1 – 9 of 9) sorted by relevance

/dports/math/minizinc-ide/MiniZincIDE-2.5.5/MiniZincIDE/
H A Dmainwindow.cpp42 curEditor(nullptr), in MainWindow()
56 curEditor(nullptr), in MainWindow()
630 if (curEditor) { in tabChange()
649 if (!curEditor) { in tabChange()
786 …if (dataFiles.isEmpty() && curEditor && (curEditor->filepath.endsWith(".dzn") || curEditor->filepa… in compileOrRun()
905 if (curEditor) { in currentModelFile()
1361 if (curEditor) { in on_actionSave_triggered()
1362 saveFile(curEditor,curEditor->filepath); in on_actionSave_triggered()
1368 if (curEditor) { in on_actionSave_as_triggered()
2238 if (curEditor) { in editor_cursor_position_changed()
[all …]
H A Dmainwindow.h286 CodeEditor* curEditor; variable
/dports/games/kolf/kolf-21.12.3/
H A Dnewgame.cpp219 PlayerEditor *curEditor = nullptr; in slotOk() local
222 curEditor = editors.at(i); in slotOk()
223 configGroup.writeEntry(QString::number(i) + curEditor->name(), curEditor->color().name()); in slotOk()
/dports/audio/supercollider/SuperCollider-3.11.0-Source/editors/sc-ide/widgets/
H A Dmulti_editor.cpp1130 GenericCodeEditor* curEditor = curBox->currentEditor(); in split() local
1132 if (curEditor) in split()
1133 box->setDocument(curEditor->document(), curEditor->textCursor().position()); in split()
1180 GenericCodeEditor* curEditor = box->currentEditor(); in removeAllSplits() local
1181 if (curEditor) in removeAllSplits()
1182 nBox->setDocument(curEditor->document(), curEditor->textCursor().position()); in removeAllSplits()
/dports/editors/lazarus/lazarus/lcl/interfaces/cocoa/
H A Dcocoawsstdctrls.pas1117 curEditor: NSText;
1122 curEditor := NSText(lHandle.currentEditor);
1123 if not Assigned(curEditor) then Exit;
1124 lRange := curEditor.selectedRange;
1126 curEditor.setSelectedRange(lRange);
1132 curEditor: NSText;
1137 curEditor := NSText(lHandle.currentEditor);
1138 if not Assigned(curEditor) then Exit;
1139 lRange := curEditor.selectedRange;
1141 curEditor.setSelectedRange(lRange);
/dports/editors/lazarus-qt5/lazarus/lcl/interfaces/cocoa/
H A Dcocoawsstdctrls.pas1117 curEditor: NSText;
1122 curEditor := NSText(lHandle.currentEditor);
1123 if not Assigned(curEditor) then Exit;
1124 lRange := curEditor.selectedRange;
1126 curEditor.setSelectedRange(lRange);
1132 curEditor: NSText;
1137 curEditor := NSText(lHandle.currentEditor);
1138 if not Assigned(curEditor) then Exit;
1139 lRange := curEditor.selectedRange;
1141 curEditor.setSelectedRange(lRange);
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/lcl/interfaces/cocoa/
H A Dcocoawsstdctrls.pas1162 curEditor: NSText;
1167 curEditor := NSText(lHandle.currentEditor);
1168 if not Assigned(curEditor) then Exit;
1169 lRange := curEditor.selectedRange;
1171 curEditor.setSelectedRange(lRange);
1177 curEditor: NSText;
1182 curEditor := NSText(lHandle.currentEditor);
1183 if not Assigned(curEditor) then Exit;
1184 lRange := curEditor.selectedRange;
1186 curEditor.setSelectedRange(lRange);
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/lcl/interfaces/cocoa/
H A Dcocoawsstdctrls.pas1162 curEditor: NSText;
1167 curEditor := NSText(lHandle.currentEditor);
1168 if not Assigned(curEditor) then Exit;
1169 lRange := curEditor.selectedRange;
1171 curEditor.setSelectedRange(lRange);
1177 curEditor: NSText;
1182 curEditor := NSText(lHandle.currentEditor);
1183 if not Assigned(curEditor) then Exit;
1184 lRange := curEditor.selectedRange;
1186 curEditor.setSelectedRange(lRange);
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/codecompletion/
H A Dnativeparser.cpp2557 cbEditor* curEditor = Manager::Get()->GetEditorManager()->GetBuiltinEditor(editor); in OnEditorActivated() local
2558 if (!curEditor) in OnEditorActivated()
2565 cbProject* project = GetProjectByEditor(curEditor); in OnEditorActivated()