diff options
Diffstat (limited to 'desktop-utilities/lumina-textedit/MainUI.ui')
-rw-r--r-- | desktop-utilities/lumina-textedit/MainUI.ui | 150 |
1 files changed, 150 insertions, 0 deletions
diff --git a/desktop-utilities/lumina-textedit/MainUI.ui b/desktop-utilities/lumina-textedit/MainUI.ui new file mode 100644 index 00000000..01b20dc1 --- /dev/null +++ b/desktop-utilities/lumina-textedit/MainUI.ui @@ -0,0 +1,150 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>MainUI</class> + <widget class="QMainWindow" name="MainUI"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>505</width> + <height>505</height> + </rect> + </property> + <property name="windowTitle"> + <string>MainWindow</string> + </property> + <widget class="QWidget" name="centralwidget"> + <layout class="QVBoxLayout" name="verticalLayout"> + <property name="leftMargin"> + <number>0</number> + </property> + <property name="topMargin"> + <number>0</number> + </property> + <property name="rightMargin"> + <number>0</number> + </property> + <property name="bottomMargin"> + <number>0</number> + </property> + <item> + <widget class="QTabWidget" name="tabWidget"> + <property name="tabsClosable"> + <bool>true</bool> + </property> + <property name="tabBarAutoHide"> + <bool>false</bool> + </property> + <widget class="QWidget" name="tab"> + <attribute name="title"> + <string>Tab 1</string> + </attribute> + </widget> + </widget> + </item> + </layout> + </widget> + <widget class="QMenuBar" name="menubar"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>505</width> + <height>23</height> + </rect> + </property> + <widget class="QMenu" name="menuFile"> + <property name="title"> + <string>File</string> + </property> + <addaction name="actionNew_File"/> + <addaction name="actionOpen_File"/> + <addaction name="separator"/> + <addaction name="actionSave_File"/> + <addaction name="actionSave_File_As"/> + <addaction name="separator"/> + <addaction name="actionClose"/> + </widget> + <widget class="QMenu" name="menuView"> + <property name="title"> + <string>View</string> + </property> + <widget class="QMenu" name="menuSyntax_Highlighting"> + <property name="title"> + <string>Syntax Highlighting</string> + </property> + <addaction name="action_syntax_none"/> + <addaction name="separator"/> + </widget> + <addaction name="menuSyntax_Highlighting"/> + <addaction name="actionLine_Numbers"/> + </widget> + <addaction name="menuFile"/> + <addaction name="menuView"/> + </widget> + <widget class="QStatusBar" name="statusbar"/> + <widget class="QToolBar" name="toolBar"> + <property name="windowTitle"> + <string>toolBar</string> + </property> + <property name="movable"> + <bool>false</bool> + </property> + <property name="floatable"> + <bool>false</bool> + </property> + <attribute name="toolBarArea"> + <enum>TopToolBarArea</enum> + </attribute> + <attribute name="toolBarBreak"> + <bool>false</bool> + </attribute> + <addaction name="actionNew_File"/> + <addaction name="actionOpen_File"/> + <addaction name="actionSave_File"/> + </widget> + <action name="actionLine_Numbers"> + <property name="checkable"> + <bool>true</bool> + </property> + <property name="checked"> + <bool>true</bool> + </property> + <property name="text"> + <string>Line Numbers</string> + </property> + </action> + <action name="action_syntax_none"> + <property name="text"> + <string>None</string> + </property> + </action> + <action name="actionNew_File"> + <property name="text"> + <string>New File</string> + </property> + </action> + <action name="actionOpen_File"> + <property name="text"> + <string>Open File</string> + </property> + </action> + <action name="actionSave_File"> + <property name="text"> + <string>Save File</string> + </property> + </action> + <action name="actionSave_File_As"> + <property name="text"> + <string>Save File As</string> + </property> + </action> + <action name="actionClose"> + <property name="text"> + <string>Close</string> + </property> + </action> + </widget> + <resources/> + <connections/> +</ui> |