Restore functionality of loglan helpers
[vlp.git] / src / edit / ui / editor.ui
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3  <class>EditorWindow</class>
4  <widget class="QMainWindow" name="EditorWindow">
5   <property name="geometry">
6    <rect>
7     <x>0</x>
8     <y>0</y>
9     <width>800</width>
10     <height>600</height>
11    </rect>
12   </property>
13   <property name="windowTitle">
14    <string>MainWindow</string>
15   </property>
16   <widget class="QWidget" name="centralwidget">
17    <layout class="QHBoxLayout" name="horizontalLayout">
18     <property name="leftMargin">
19      <number>3</number>
20     </property>
21     <property name="topMargin">
22      <number>0</number>
23     </property>
24     <property name="rightMargin">
25      <number>3</number>
26     </property>
27     <property name="bottomMargin">
28      <number>0</number>
29     </property>
30     <item>
31      <layout class="QVBoxLayout" name="verticalLayout">
32       <item>
33        <widget class="QTextEdit" name="editor">
34         <property name="font">
35          <font>
36           <family>Monospace</family>
37          </font>
38         </property>
39        </widget>
40       </item>
41       <item>
42        <widget class="QTextEdit" name="messages">
43         <property name="sizePolicy">
44          <sizepolicy hsizetype="Expanding" vsizetype="Minimum">
45           <horstretch>0</horstretch>
46           <verstretch>0</verstretch>
47          </sizepolicy>
48         </property>
49         <property name="minimumSize">
50          <size>
51           <width>0</width>
52           <height>0</height>
53          </size>
54         </property>
55         <property name="maximumSize">
56          <size>
57           <width>16777215</width>
58           <height>16777215</height>
59          </size>
60         </property>
61         <property name="styleSheet">
62          <string notr="true">background-color: rgb(200, 200, 200);</string>
63         </property>
64         <property name="readOnly">
65          <bool>true</bool>
66         </property>
67         <property name="textInteractionFlags">
68          <set>Qt::TextSelectableByMouse</set>
69         </property>
70        </widget>
71       </item>
72      </layout>
73     </item>
74    </layout>
75   </widget>
76   <widget class="QMenuBar" name="menubar">
77    <property name="geometry">
78     <rect>
79      <x>0</x>
80      <y>0</y>
81      <width>800</width>
82      <height>19</height>
83     </rect>
84    </property>
85    <widget class="QMenu" name="menuFile">
86     <property name="title">
87      <string>File</string>
88     </property>
89     <addaction name="actionNew"/>
90     <addaction name="actionOpen"/>
91     <addaction name="actionSave"/>
92     <addaction name="actionSave_as"/>
93     <addaction name="separator"/>
94     <addaction name="actionQuit"/>
95    </widget>
96    <widget class="QMenu" name="menuEdit">
97     <property name="title">
98      <string>Edit</string>
99     </property>
100     <addaction name="actionCopy"/>
101     <addaction name="actionPaste"/>
102     <addaction name="actionCut"/>
103     <addaction name="actionClear_all"/>
104     <addaction name="separator"/>
105     <addaction name="actionFind"/>
106     <addaction name="actionFind_Next"/>
107     <addaction name="separator"/>
108     <addaction name="actionPreferences"/>
109    </widget>
110    <widget class="QMenu" name="menuBuild">
111     <property name="title">
112      <string>Build</string>
113     </property>
114     <addaction name="actionCompile"/>
115     <addaction name="actionGen"/>
116     <addaction name="actionCompile_Gen"/>
117    </widget>
118    <widget class="QMenu" name="menuLoglan">
119     <property name="enabled">
120      <bool>true</bool>
121     </property>
122     <property name="title">
123      <string>Loglan</string>
124     </property>
125     <addaction name="actionProgram_structure"/>
126     <addaction name="actionUnit_structure"/>
127    </widget>
128    <addaction name="menuFile"/>
129    <addaction name="menuEdit"/>
130    <addaction name="menuBuild"/>
131    <addaction name="menuLoglan"/>
132   </widget>
133   <widget class="QStatusBar" name="statusbar"/>
134   <action name="actionNew">
135    <property name="text">
136     <string>New</string>
137    </property>
138    <property name="shortcut">
139     <string>Ctrl+N</string>
140    </property>
141   </action>
142   <action name="actionOpen">
143    <property name="text">
144     <string>Open</string>
145    </property>
146    <property name="shortcut">
147     <string>Ctrl+O</string>
148    </property>
149   </action>
150   <action name="actionSave">
151    <property name="text">
152     <string>Save</string>
153    </property>
154    <property name="shortcut">
155     <string>Ctrl+S</string>
156    </property>
157   </action>
158   <action name="actionSave_as">
159    <property name="text">
160     <string>Save as</string>
161    </property>
162    <property name="shortcut">
163     <string>Ctrl+Shift+S</string>
164    </property>
165   </action>
166   <action name="actionQuit">
167    <property name="text">
168     <string>Quit</string>
169    </property>
170   </action>
171   <action name="actionCopy">
172    <property name="text">
173     <string>Copy</string>
174    </property>
175    <property name="shortcut">
176     <string>Ctrl+Ins</string>
177    </property>
178   </action>
179   <action name="actionPaste">
180    <property name="text">
181     <string>Paste</string>
182    </property>
183    <property name="shortcut">
184     <string>Shift+Ins</string>
185    </property>
186   </action>
187   <action name="actionCut">
188    <property name="text">
189     <string>Cut</string>
190    </property>
191    <property name="shortcut">
192     <string>Ctrl+Del</string>
193    </property>
194   </action>
195   <action name="actionClear_all">
196    <property name="text">
197     <string>Clear all</string>
198    </property>
199   </action>
200   <action name="actionFind">
201    <property name="text">
202     <string>Find</string>
203    </property>
204    <property name="shortcut">
205     <string>Ctrl+F</string>
206    </property>
207   </action>
208   <action name="actionFind_Next">
209    <property name="text">
210     <string>Find Next</string>
211    </property>
212    <property name="shortcut">
213     <string>Ctrl+L</string>
214    </property>
215   </action>
216   <action name="actionCompile">
217    <property name="text">
218     <string>Compile</string>
219    </property>
220   </action>
221   <action name="actionGen">
222    <property name="text">
223     <string>Gen</string>
224    </property>
225   </action>
226   <action name="actionCompile_Gen">
227    <property name="text">
228     <string>Compile &amp; Gen</string>
229    </property>
230   </action>
231   <action name="actionProgram_structure">
232    <property name="text">
233     <string>Program structure</string>
234    </property>
235   </action>
236   <action name="actionUnit_structure">
237    <property name="text">
238     <string>Unit structure</string>
239    </property>
240   </action>
241   <action name="actionPreferences">
242    <property name="text">
243     <string>Preferences</string>
244    </property>
245   </action>
246  </widget>
247  <resources/>
248  <connections/>
249 </ui>