| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?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>
|