<?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>721</width> <height>578</height> </rect> </property> <property name="windowTitle"> <string>Script editor</string> </property> <widget class="QWidget" name="centralwidget"> <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0"> <widget class="ScriptEdit" name="editor"/> </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="actionEditScriptHelp"/> <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="actionIncreaseFontSize"/> <addaction name="actionDecreaseFontSize"/> </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="actionEditScriptHelp"> <property name="text"> <string>Edit script help</string> </property> <property name="toolTip"> <string>Edit script help</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> </widget> <customwidgets> <customwidget> <class>ScriptEdit</class> <extends>QTextEdit</extends> <header>processing.gui.ScriptEdit</header> </customwidget> </customwidgets> <resources/> <connections/> </ui>