Files
QTicTacToe/mainwindow.ui
2024-11-30 09:36:15 +02:00

124 lines
3.2 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>572</width>
<height>444</height>
</rect>
</property>
<property name="windowTitle">
<string>TicTacToe</string>
</property>
<widget class="QWidget" name="centralWidget">
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QScrollArea" name="scrollArea">
<widget class="QWidget" name="scrollAreaWidgetContents">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>552</width>
<height>360</height>
</rect>
</property>
<layout class="QGridLayout" name="gridLayout_2"/>
</widget>
</widget>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>572</width>
<height>21</height>
</rect>
</property>
<widget class="QMenu" name="menuGame">
<property name="title">
<string>Game</string>
</property>
<addaction name="actionNew_game"/>
<addaction name="actionGame_settings"/>
</widget>
<widget class="QMenu" name="menuHelp">
<property name="title">
<string>Help</string>
</property>
<addaction name="actionAbout"/>
</widget>
<addaction name="menuGame"/>
<addaction name="menuHelp"/>
</widget>
<widget class="QToolBar" name="mainToolBar">
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
<addaction name="actionNew_game"/>
<addaction name="actionGame_settings"/>
<addaction name="actionStart_server"/>
<addaction name="actionConnect_to_Server"/>
<addaction name="actionDisconnect"/>
</widget>
<widget class="QStatusBar" name="statusBar"/>
<action name="actionNew_game">
<property name="text">
<string>New game</string>
</property>
<property name="toolTip">
<string>Start new game</string>
</property>
<property name="shortcut">
<string>Ctrl+N</string>
</property>
</action>
<action name="actionGame_settings">
<property name="text">
<string>Game settings</string>
</property>
<property name="toolTip">
<string>Show game settings dialog</string>
</property>
<property name="shortcut">
<string>Ctrl+P</string>
</property>
</action>
<action name="actionStart_server">
<property name="text">
<string>Start server</string>
</property>
</action>
<action name="actionConnect_to_Server">
<property name="text">
<string>Connect to Server</string>
</property>
</action>
<action name="actionDisconnect">
<property name="enabled">
<bool>false</bool>
</property>
<property name="text">
<string>Disconnect</string>
</property>
</action>
<action name="actionAbout">
<property name="text">
<string>About</string>
</property>
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections/>
</ui>