Credentials_manager/PasswordManager/mainwindow.ui
Daniil 019c5237a6 ??Manger class created
first working menuItem created
2021-12-01 20:45:34 +03:00

81 lines
2.0 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="tableViewEmployees">
<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>
<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>