133 lines
3.2 KiB
XML
133 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>800</width>
|
|
<height>600</height>
|
|
</rect>
|
|
</property>
|
|
<property name="windowTitle">
|
|
<string>Оконное приложение, управляющее БД</string>
|
|
</property>
|
|
<widget class="QWidget" name="centralWidget">
|
|
<widget class="QTableView" name="tableViewRecords">
|
|
<property name="enabled">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>250</x>
|
|
<y>10</y>
|
|
<width>541</width>
|
|
<height>351</height>
|
|
</rect>
|
|
</property>
|
|
</widget>
|
|
<widget class="QTableView" name="tableView">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>10</x>
|
|
<y>10</y>
|
|
<width>231</width>
|
|
<height>561</height>
|
|
</rect>
|
|
</property>
|
|
</widget>
|
|
<widget class="QGroupBox" name="ToolGroup">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>249</x>
|
|
<y>369</y>
|
|
<width>541</width>
|
|
<height>41</height>
|
|
</rect>
|
|
</property>
|
|
<property name="title">
|
|
<string>GroupBox</string>
|
|
</property>
|
|
<widget class="QPushButton" name="addButton">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>20</y>
|
|
<width>80</width>
|
|
<height>26</height>
|
|
</rect>
|
|
</property>
|
|
<property name="text">
|
|
<string>Add</string>
|
|
</property>
|
|
</widget>
|
|
<widget class="QPushButton" name="deleteButton">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>80</x>
|
|
<y>20</y>
|
|
<width>80</width>
|
|
<height>26</height>
|
|
</rect>
|
|
</property>
|
|
<property name="text">
|
|
<string>Delete</string>
|
|
</property>
|
|
</widget>
|
|
<widget class="QPushButton" name="editButton">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>160</x>
|
|
<y>20</y>
|
|
<width>80</width>
|
|
<height>26</height>
|
|
</rect>
|
|
</property>
|
|
<property name="text">
|
|
<string>Edit</string>
|
|
</property>
|
|
</widget>
|
|
</widget>
|
|
</widget>
|
|
<widget class="QMenuBar" name="menuBar">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>800</width>
|
|
<height>23</height>
|
|
</rect>
|
|
</property>
|
|
<widget class="QMenu" name="menu">
|
|
<property name="title">
|
|
<string>Файл</string>
|
|
</property>
|
|
<addaction name="actionCreateNewDatabase"/>
|
|
<addaction name="actionOpenDatabase"/>
|
|
<addaction name="separator"/>
|
|
<addaction name="actionExit"/>
|
|
</widget>
|
|
<addaction name="menu"/>
|
|
</widget>
|
|
<action name="actionCreateNewDatabase">
|
|
<property name="text">
|
|
<string>Создать новую базу данных…</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionOpenDatabase">
|
|
<property name="text">
|
|
<string>Открыть созданную ранее базу данных…</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionExit">
|
|
<property name="text">
|
|
<string>Выход</string>
|
|
</property>
|
|
</action>
|
|
</widget>
|
|
<layoutdefault spacing="6" margin="11"/>
|
|
<resources/>
|
|
<connections/>
|
|
</ui>
|