123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- <?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">
- <item row="0" column="0">
- <widget class="QWidget" name="editor_container"/>
- </item>
- <item row="1" column="0">
- <widget class="QWidget" name="searchWidget" native="true">
- <layout class="QGridLayout" name="gridLayout_2">
- <property name="leftMargin">
- <number>0</number>
- </property>
- <property name="topMargin">
- <number>5</number>
- </property>
- <property name="rightMargin">
- <number>0</number>
- </property>
- <property name="bottomMargin">
- <number>5</number>
- </property>
- <item row="0" column="0">
- <widget class="QCheckBox" name="chkCaseSensitive">
- <property name="text">
- <string>Case sensitive</string>
- </property>
- </widget>
- </item>
- <item row="1" column="0">
- <widget class="QCheckBox" name="chkWholeWord">
- <property name="text">
- <string>Whole word</string>
- </property>
- </widget>
- </item>
- <item row="1" column="4" colspan="2">
- <widget class="QPushButton" name="btnReplace">
- <property name="text">
- <string>Replace</string>
- </property>
- </widget>
- </item>
- <item row="0" column="2">
- <widget class="QLabel" name="label">
- <property name="text">
- <string>Find what:</string>
- </property>
- </widget>
- </item>
- <item row="1" column="2">
- <widget class="QLabel" name="label_2">
- <property name="text">
- <string>Replace with:</string>
- </property>
- </widget>
- </item>
- <item row="1" column="3">
- <widget class="QLineEdit" name="leReplaceText"/>
- </item>
- <item row="0" column="4" colspan="2">
- <widget class="QPushButton" name="btnFind">
- <property name="text">
- <string>Find</string>
- </property>
- </widget>
- </item>
- <item row="0" column="3">
- <widget class="QLineEdit" name="leFindText"/>
- </item>
- <item row="0" column="1" rowspan="2">
- <widget class="Line" name="line_8">
- <property name="orientation">
- <enum>Qt::Vertical</enum>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- </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 && &Replace</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+F</string>
- </property>
- </action>
- <action name="actionToggleComment">
- <property name="text">
- <string>Toggle Comment</string>
- </property>
- </action>
- </widget>
- <resources/>
- <connections/>
- </ui>
|