96 lines
2.2 KiB
Plaintext
96 lines
2.2 KiB
Plaintext
|
<?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>800</width>
|
||
|
<height>600</height>
|
||
|
</rect>
|
||
|
</property>
|
||
|
<property name="windowTitle">
|
||
|
<string>Editor</string>
|
||
|
</property>
|
||
|
<widget class="QWidget" name="centralwidget">
|
||
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||
|
<property name="spacing">
|
||
|
<number>3</number>
|
||
|
</property>
|
||
|
<property name="leftMargin">
|
||
|
<number>3</number>
|
||
|
</property>
|
||
|
<property name="topMargin">
|
||
|
<number>3</number>
|
||
|
</property>
|
||
|
<property name="rightMargin">
|
||
|
<number>3</number>
|
||
|
</property>
|
||
|
<property name="bottomMargin">
|
||
|
<number>3</number>
|
||
|
</property>
|
||
|
<item>
|
||
|
<widget class="CodeEditor" name="edit_field">
|
||
|
<property name="font">
|
||
|
<font>
|
||
|
<pointsize>10</pointsize>
|
||
|
</font>
|
||
|
</property>
|
||
|
</widget>
|
||
|
</item>
|
||
|
</layout>
|
||
|
</widget>
|
||
|
<widget class="QMenuBar" name="menubar">
|
||
|
<property name="geometry">
|
||
|
<rect>
|
||
|
<x>0</x>
|
||
|
<y>0</y>
|
||
|
<width>800</width>
|
||
|
<height>30</height>
|
||
|
</rect>
|
||
|
</property>
|
||
|
<widget class="QMenu" name="menuFile">
|
||
|
<property name="title">
|
||
|
<string>File</string>
|
||
|
</property>
|
||
|
<addaction name="actionOpen"/>
|
||
|
<addaction name="actionSave"/>
|
||
|
<addaction name="actionSave_as"/>
|
||
|
<addaction name="actionClose"/>
|
||
|
</widget>
|
||
|
<addaction name="menuFile"/>
|
||
|
</widget>
|
||
|
<widget class="QStatusBar" name="statusbar"/>
|
||
|
<action name="actionOpen">
|
||
|
<property name="text">
|
||
|
<string>Open...</string>
|
||
|
</property>
|
||
|
</action>
|
||
|
<action name="actionSave">
|
||
|
<property name="text">
|
||
|
<string>Save</string>
|
||
|
</property>
|
||
|
</action>
|
||
|
<action name="actionSave_as">
|
||
|
<property name="text">
|
||
|
<string>Save as...</string>
|
||
|
</property>
|
||
|
</action>
|
||
|
<action name="actionClose">
|
||
|
<property name="text">
|
||
|
<string>Close</string>
|
||
|
</property>
|
||
|
</action>
|
||
|
</widget>
|
||
|
<customwidgets>
|
||
|
<customwidget>
|
||
|
<class>CodeEditor</class>
|
||
|
<extends>QPlainTextEdit</extends>
|
||
|
<header>..lib.codeeditor</header>
|
||
|
</customwidget>
|
||
|
</customwidgets>
|
||
|
<resources/>
|
||
|
<connections/>
|
||
|
</ui>
|