EQL5/examples/9-simple-lisp-editor/data/editor.ui
2016-11-25 23:30:38 +01:00

246 lines
6.5 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>main_window</class>
<widget class="QMainWindow" name="main_window">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>605</width>
<height>435</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QSplitter" name="splitter">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<widget class="QWidget" name="layoutWidget">
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QTextEdit" name="editor"/>
</item>
<item>
<widget class="QTextEdit" name="command"/>
</item>
</layout>
</widget>
<widget class="QTextEdit" name="output"/>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLineEdit" name="find">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>175</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>175</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Hit Return for next hit</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="replace">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>175</width>
<height>1</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>175</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Hit Return for replace</string>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="button_next">
<property name="text">
<string>Next</string>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="button_replace">
<property name="text">
<string>Replace</string>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QLabel" name="sel_label">
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="select">
<property name="text">
<string>Select</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>605</width>
<height>19</height>
</rect>
</property>
</widget>
<widget class="QStatusBar" name="statusbar"/>
<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="action_open"/>
<addaction name="action_save"/>
<addaction name="action_save_as"/>
<addaction name="separator"/>
<addaction name="action_save_and_run"/>
<addaction name="separator"/>
<addaction name="action_copy"/>
<addaction name="action_cut"/>
<addaction name="action_insert_file"/>
<addaction name="separator"/>
<addaction name="action_eval_region"/>
<addaction name="action_repeat_eval"/>
<addaction name="separator"/>
<addaction name="action_reset_lisp"/>
</widget>
<action name="action_open">
<property name="text">
<string>Open</string>
</property>
</action>
<action name="action_save">
<property name="text">
<string>Save</string>
</property>
</action>
<action name="action_save_as">
<property name="text">
<string>Save As</string>
</property>
</action>
<action name="action_save_and_run">
<property name="text">
<string>Save and Run</string>
</property>
</action>
<action name="action_eval_region">
<property name="text">
<string>Eval Region</string>
</property>
<property name="toolTip">
<string>Eval expression enclosed in currently highlighted parenthesis</string>
</property>
</action>
<action name="action_repeat_eval">
<property name="text">
<string>Repeat Eval</string>
</property>
<property name="toolTip">
<string>Eval starting from left paren of latest eval</string>
</property>
</action>
<action name="action_copy">
<property name="text">
<string>Copy ( )</string>
</property>
<property name="toolTip">
<string>Copy highlighted region</string>
</property>
</action>
<action name="action_cut">
<property name="text">
<string>Cut ( )</string>
</property>
<property name="toolTip">
<string>Cut highlighted region</string>
</property>
</action>
<action name="action_insert_file">
<property name="text">
<string>Insert File</string>
</property>
<property name="toolTip">
<string>Insert a file at current cursor position</string>
</property>
</action>
<action name="action_reset_lisp">
<property name="text">
<string>Reset Lisp</string>
</property>
<property name="toolTip">
<string>Restart local Lisp server</string>
</property>
</action>
</widget>
<resources/>
<connections/>
</ui>