Prepare layout code generation for editor
[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       </item>
35       <item>
36        <widget class="QTextEdit" name="messages">
37         <property name="maximumSize">
38          <size>
39           <width>16777215</width>
40           <height>400</height>
41          </size>
42         </property>
43         <property name="styleSheet">
44          <string notr="true">background-color: rgb(200, 200, 200);</string>
45         </property>
46         <property name="readOnly">
47          <bool>true</bool>
48         </property>
49         <property name="textInteractionFlags">
50          <set>Qt::TextSelectableByMouse</set>
51         </property>
52        </widget>
53       </item>
54      </layout>
55     </item>
56    </layout>
57   </widget>
58   <widget class="QMenuBar" name="menubar">
59    <property name="geometry">
60     <rect>
61      <x>0</x>
62      <y>0</y>
63      <width>800</width>
64      <height>19</height>
65     </rect>
66    </property>
67    <widget class="QMenu" name="menuFile">
68     <property name="title">
69      <string>File</string>
70     </property>
71     <addaction name="actionNew"/>
72     <addaction name="actionOpen"/>
73     <addaction name="actionSave"/>
74     <addaction name="actionSave_as"/>
75     <addaction name="separator"/>
76     <addaction name="actionQuit"/>
77    </widget>
78    <widget class="QMenu" name="menuEdit">
79     <property name="title">
80      <string>Edit</string>
81     </property>
82     <addaction name="actionCopy"/>
83     <addaction name="actionPaste"/>
84     <addaction name="actionCut"/>
85     <addaction name="actionClear_all"/>
86     <addaction name="separator"/>
87     <addaction name="actionFind"/>
88     <addaction name="actionFind_Next"/>
89    </widget>
90    <widget class="QMenu" name="menuCompile">
91     <property name="title">
92      <string>Compile</string>
93     </property>
94    </widget>
95    <widget class="QMenu" name="menuProperties">
96     <property name="title">
97      <string>Properties</string>
98     </property>
99    </widget>
100    <addaction name="menuFile"/>
101    <addaction name="menuEdit"/>
102    <addaction name="menuCompile"/>
103    <addaction name="menuProperties"/>
104   </widget>
105   <widget class="QStatusBar" name="statusbar"/>
106   <action name="actionNew">
107    <property name="text">
108     <string>New</string>
109    </property>
110    <property name="shortcut">
111     <string>Ctrl+N</string>
112    </property>
113   </action>
114   <action name="actionOpen">
115    <property name="text">
116     <string>Open</string>
117    </property>
118    <property name="shortcut">
119     <string>Ctrl+O</string>
120    </property>
121   </action>
122   <action name="actionSave">
123    <property name="text">
124     <string>Save</string>
125    </property>
126    <property name="shortcut">
127     <string>Ctrl+S</string>
128    </property>
129   </action>
130   <action name="actionSave_as">
131    <property name="text">
132     <string>Save as</string>
133    </property>
134    <property name="shortcut">
135     <string>Ctrl+Shift+S</string>
136    </property>
137   </action>
138   <action name="actionQuit">
139    <property name="text">
140     <string>Quit</string>
141    </property>
142   </action>
143   <action name="actionCopy">
144    <property name="text">
145     <string>Copy</string>
146    </property>
147    <property name="shortcut">
148     <string>Ctrl+Ins</string>
149    </property>
150   </action>
151   <action name="actionPaste">
152    <property name="text">
153     <string>Paste</string>
154    </property>
155    <property name="shortcut">
156     <string>Shift+Ins</string>
157    </property>
158   </action>
159   <action name="actionCut">
160    <property name="text">
161     <string>Cut</string>
162    </property>
163    <property name="shortcut">
164     <string>Ctrl+Del</string>
165    </property>
166   </action>
167   <action name="actionClear_all">
168    <property name="text">
169     <string>Clear all</string>
170    </property>
171   </action>
172   <action name="actionFind">
173    <property name="text">
174     <string>Find</string>
175    </property>
176    <property name="shortcut">
177     <string>Ctrl+F</string>
178    </property>
179   </action>
180   <action name="actionFind_Next">
181    <property name="text">
182     <string>Find Next</string>
183    </property>
184    <property name="shortcut">
185     <string>Ctrl+L</string>
186    </property>
187   </action>
188  </widget>
189  <resources/>
190  <connections/>
191 </ui>