QGIS/python/plugins/processing/ui/DlgScriptEditor.ui
Nyall Dawson 8e88d4842b Use QgsCodeEditorWidget in processing script editor
And remove custom search/replace functionality, it's now replaced
by the standard QgsCodeEditorWidget implementation
2024-05-16 08:44:14 +10:00

197 lines
4.9 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>600</width>
<height>578</height>
</rect>
</property>
<property name="windowTitle">
<string>Processing Script Editor</string>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QGridLayout" name="gridLayout">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item row="0" column="0">
<widget class="QWidget" name="editor_container" native="true"/>
</item>
</layout>
</widget>
<widget class="QToolBar" name="toolBar">
<property name="windowTitle">
<string>Toolbar</string>
</property>
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
<addaction name="actionOpenScript"/>
<addaction name="actionSaveScript"/>
<addaction name="actionSaveScriptAs"/>
<addaction name="separator"/>
<addaction name="actionRunScript"/>
<addaction name="separator"/>
<addaction name="actionCut"/>
<addaction name="actionCopy"/>
<addaction name="actionPaste"/>
<addaction name="separator"/>
<addaction name="actionUndo"/>
<addaction name="actionRedo"/>
<addaction name="separator"/>
<addaction name="actionFindReplace"/>
<addaction name="separator"/>
<addaction name="actionIncreaseFontSize"/>
<addaction name="actionDecreaseFontSize"/>
<addaction name="separator"/>
<addaction name="actionToggleComment"/>
</widget>
<action name="actionOpenScript">
<property name="text">
<string>Open Script…</string>
</property>
<property name="toolTip">
<string>Open Script</string>
</property>
<property name="shortcut">
<string>Ctrl+O</string>
</property>
</action>
<action name="actionSaveScript">
<property name="text">
<string>Save Script…</string>
</property>
<property name="toolTip">
<string>Save Script</string>
</property>
<property name="shortcut">
<string>Ctrl+S</string>
</property>
</action>
<action name="actionSaveScriptAs">
<property name="text">
<string>Save Script as…</string>
</property>
<property name="toolTip">
<string>Save Script as</string>
</property>
<property name="shortcut">
<string>Ctrl+Shift+S</string>
</property>
</action>
<action name="actionRunScript">
<property name="text">
<string>Run Script</string>
</property>
<property name="toolTip">
<string>Run Script</string>
</property>
<property name="shortcut">
<string>F5</string>
</property>
</action>
<action name="actionCut">
<property name="text">
<string>Cut</string>
</property>
<property name="toolTip">
<string>Cut</string>
</property>
<property name="shortcut">
<string>Ctrl+X</string>
</property>
</action>
<action name="actionCopy">
<property name="text">
<string>Copy</string>
</property>
<property name="toolTip">
<string>Copy</string>
</property>
<property name="shortcut">
<string>Ctrl+C</string>
</property>
</action>
<action name="actionPaste">
<property name="text">
<string>Paste</string>
</property>
<property name="toolTip">
<string>Paste</string>
</property>
<property name="shortcut">
<string>Ctrl+V</string>
</property>
</action>
<action name="actionUndo">
<property name="text">
<string>Undo</string>
</property>
<property name="toolTip">
<string>Undo</string>
</property>
<property name="shortcut">
<string>Ctrl+Z</string>
</property>
</action>
<action name="actionRedo">
<property name="text">
<string>Redo</string>
</property>
<property name="toolTip">
<string>Redo</string>
</property>
<property name="shortcut">
<string>Ctrl+Shift+Z</string>
</property>
</action>
<action name="actionIncreaseFontSize">
<property name="text">
<string>Increase Font Size</string>
</property>
<property name="toolTip">
<string>Increase Font Size</string>
</property>
</action>
<action name="actionDecreaseFontSize">
<property name="text">
<string>Decrease Font Size</string>
</property>
<property name="toolTip">
<string>Decrease Font Size</string>
</property>
</action>
<action name="actionFindReplace">
<property name="checkable">
<bool>true</bool>
</property>
<property name="text">
<string>Find &amp;&amp; &amp;Replace</string>
</property>
</action>
<action name="actionToggleComment">
<property name="text">
<string>Toggle Comment</string>
</property>
</action>
</widget>
<resources/>
<connections/>
</ui>