Qt_Circular_Menu_Example/application/main_window.ui

155 lines
4.5 KiB
XML

<?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>561</width>
<height>345</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<property name="windowIcon">
<iconset resource="../_resources/main.qrc">
<normaloff>:/images/main_icon.png</normaloff>:/images/main_icon.png</iconset>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>Нажмите Alt чтобы вызвать круговое меню</string>
</property>
<property name="alignment">
<set>Qt::AlignmentFlag::AlignCenter</set>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QStatusBar" name="statusbar"/>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>561</width>
<height>21</height>
</rect>
</property>
<widget class="QMenu" name="menuFile">
<property name="title">
<string>Файл</string>
</property>
<addaction name="actionOpen"/>
<addaction name="actionSaveAs"/>
<addaction name="actionExit"/>
</widget>
<widget class="QMenu" name="menuEdit">
<property name="title">
<string>Правка</string>
</property>
<addaction name="actionUndo"/>
<addaction name="actionApply"/>
</widget>
<widget class="QMenu" name="menuView">
<property name="title">
<string>Вид</string>
</property>
<addaction name="actionChange"/>
</widget>
<addaction name="menuFile"/>
<addaction name="menuEdit"/>
<addaction name="menuView"/>
</widget>
<widget class="QToolBar" name="toolBar">
<property name="windowTitle">
<string>toolBar</string>
</property>
<property name="iconSize">
<size>
<width>32</width>
<height>32</height>
</size>
</property>
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
<addaction name="actionOpen"/>
<addaction name="actionSaveAs"/>
<addaction name="actionUndo"/>
<addaction name="actionApply"/>
<addaction name="actionChange"/>
</widget>
<action name="actionOpen">
<property name="icon">
<iconset resource="../_resources/icons.qrc">
<normaloff>:/icons/opened-folder-40.png</normaloff>:/icons/opened-folder-40.png</iconset>
</property>
<property name="text">
<string>Открыть...</string>
</property>
</action>
<action name="actionSaveAs">
<property name="icon">
<iconset resource="../_resources/icons.qrc">
<normaloff>:/icons/save-as-40.png</normaloff>:/icons/save-as-40.png</iconset>
</property>
<property name="text">
<string>Сохранить как...</string>
</property>
</action>
<action name="actionExit">
<property name="icon">
<iconset resource="../_resources/icons.qrc">
<normaloff>:/icons/shutdown-40.png</normaloff>:/icons/shutdown-40.png</iconset>
</property>
<property name="text">
<string>Выход</string>
</property>
</action>
<action name="actionUndo">
<property name="icon">
<iconset resource="../_resources/icons.qrc">
<normaloff>:/icons/restart-40.png</normaloff>:/icons/restart-40.png</iconset>
</property>
<property name="text">
<string>Отменить последнее действие</string>
</property>
</action>
<action name="actionChange">
<property name="icon">
<iconset resource="../_resources/icons.qrc">
<normaloff>:/icons/change-theme-40.png</normaloff>:/icons/change-theme-40.png</iconset>
</property>
<property name="text">
<string>Разделить</string>
</property>
</action>
<action name="actionApply">
<property name="icon">
<iconset resource="../_resources/icons.qrc">
<normaloff>:/icons/ok-40.png</normaloff>:/icons/ok-40.png</iconset>
</property>
<property name="text">
<string>Применить всё</string>
</property>
</action>
</widget>
<resources>
<include location="../_resources/main.qrc"/>
<include location="../_resources/icons.qrc"/>
</resources>
<connections/>
<buttongroups>
<buttongroup name="buttonGroup"/>
</buttongroups>
</ui>