2024-08-18 13:57:57 +03:00
|
|
|
<?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>
|
2024-08-24 00:45:47 +03:00
|
|
|
<width>817</width>
|
|
|
|
<height>659</height>
|
2024-08-18 13:57:57 +03:00
|
|
|
</rect>
|
|
|
|
</property>
|
|
|
|
<property name="windowTitle">
|
|
|
|
<string>MainWindow</string>
|
|
|
|
</property>
|
2024-08-19 02:35:16 +03:00
|
|
|
<widget class="QWidget" name="centralwidget">
|
|
|
|
<widget class="QComboBox" name="storeType">
|
|
|
|
<property name="geometry">
|
|
|
|
<rect>
|
|
|
|
<x>90</x>
|
|
|
|
<y>10</y>
|
|
|
|
<width>211</width>
|
|
|
|
<height>31</height>
|
|
|
|
</rect>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
<widget class="QLabel" name="storeTypeLabel">
|
|
|
|
<property name="geometry">
|
|
|
|
<rect>
|
|
|
|
<x>10</x>
|
|
|
|
<y>10</y>
|
|
|
|
<width>81</width>
|
|
|
|
<height>31</height>
|
|
|
|
</rect>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Store</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
2024-08-31 22:18:54 +03:00
|
|
|
<widget class="QLabel" name="checkTypeLabel">
|
|
|
|
<property name="geometry">
|
|
|
|
<rect>
|
|
|
|
<x>10</x>
|
|
|
|
<y>50</y>
|
|
|
|
<width>81</width>
|
|
|
|
<height>20</height>
|
|
|
|
</rect>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Check type</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
<widget class="QComboBox" name="checkType">
|
|
|
|
<property name="geometry">
|
|
|
|
<rect>
|
|
|
|
<x>90</x>
|
|
|
|
<y>50</y>
|
|
|
|
<width>211</width>
|
|
|
|
<height>26</height>
|
|
|
|
</rect>
|
|
|
|
</property>
|
|
|
|
<item>
|
|
|
|
<property name="text">
|
|
|
|
<string>Text</string>
|
|
|
|
</property>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<property name="text">
|
|
|
|
<string>Image (not yet implemented)</string>
|
|
|
|
</property>
|
|
|
|
</item>
|
|
|
|
</widget>
|
|
|
|
<widget class="QWidget" name="checkInfoText" native="true">
|
|
|
|
<property name="enabled">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
2024-08-19 02:35:16 +03:00
|
|
|
<property name="geometry">
|
|
|
|
<rect>
|
|
|
|
<x>0</x>
|
2024-08-31 22:18:54 +03:00
|
|
|
<y>70</y>
|
|
|
|
<width>421</width>
|
2024-08-24 00:45:47 +03:00
|
|
|
<height>511</height>
|
2024-08-19 02:35:16 +03:00
|
|
|
</rect>
|
|
|
|
</property>
|
|
|
|
<widget class="QLabel" name="checkContentLabel">
|
|
|
|
<property name="geometry">
|
|
|
|
<rect>
|
|
|
|
<x>20</x>
|
|
|
|
<y>10</y>
|
|
|
|
<width>121</width>
|
|
|
|
<height>18</height>
|
|
|
|
</rect>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Check content</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
<widget class="QPlainTextEdit" name="checkContent">
|
|
|
|
<property name="geometry">
|
|
|
|
<rect>
|
|
|
|
<x>20</x>
|
|
|
|
<y>40</y>
|
|
|
|
<width>401</width>
|
|
|
|
<height>411</height>
|
|
|
|
</rect>
|
|
|
|
</property>
|
|
|
|
<property name="plainText">
|
|
|
|
<string/>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
<widget class="QPushButton" name="parseButton">
|
|
|
|
<property name="geometry">
|
|
|
|
<rect>
|
|
|
|
<x>20</x>
|
|
|
|
<y>480</y>
|
|
|
|
<width>80</width>
|
|
|
|
<height>26</height>
|
|
|
|
</rect>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string>Parse</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</widget>
|
2024-08-31 22:18:54 +03:00
|
|
|
<widget class="QTabWidget" name="tabWidget">
|
2024-08-19 02:35:16 +03:00
|
|
|
<property name="geometry">
|
|
|
|
<rect>
|
2024-08-31 22:18:54 +03:00
|
|
|
<x>460</x>
|
|
|
|
<y>270</y>
|
|
|
|
<width>301</width>
|
|
|
|
<height>221</height>
|
2024-08-19 02:35:16 +03:00
|
|
|
</rect>
|
|
|
|
</property>
|
2024-08-31 22:18:54 +03:00
|
|
|
<property name="tabPosition">
|
|
|
|
<enum>QTabWidget::TabPosition::North</enum>
|
|
|
|
</property>
|
|
|
|
<property name="tabShape">
|
|
|
|
<enum>QTabWidget::TabShape::Rounded</enum>
|
2024-08-19 02:35:16 +03:00
|
|
|
</property>
|
2024-08-31 22:18:54 +03:00
|
|
|
<property name="currentIndex">
|
|
|
|
<number>0</number>
|
|
|
|
</property>
|
|
|
|
<property name="elideMode">
|
|
|
|
<enum>Qt::TextElideMode::ElideNone</enum>
|
|
|
|
</property>
|
|
|
|
<property name="documentMode">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<property name="tabsClosable">
|
|
|
|
<bool>false</bool>
|
|
|
|
</property>
|
|
|
|
<property name="tabBarAutoHide">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
<widget class="QWidget" name="tab">
|
|
|
|
<attribute name="title">
|
|
|
|
<string>Text</string>
|
|
|
|
</attribute>
|
|
|
|
</widget>
|
|
|
|
<widget class="QWidget" name="tab_2">
|
|
|
|
<attribute name="title">
|
|
|
|
<string>Image</string>
|
|
|
|
</attribute>
|
|
|
|
</widget>
|
2024-08-19 02:35:16 +03:00
|
|
|
</widget>
|
2024-08-31 22:18:54 +03:00
|
|
|
<widget class="QStackedWidget" name="stackedWidget">
|
2024-08-19 02:35:16 +03:00
|
|
|
<property name="geometry">
|
|
|
|
<rect>
|
2024-08-31 22:18:54 +03:00
|
|
|
<x>460</x>
|
|
|
|
<y>60</y>
|
|
|
|
<width>241</width>
|
|
|
|
<height>151</height>
|
2024-08-19 02:35:16 +03:00
|
|
|
</rect>
|
|
|
|
</property>
|
2024-08-31 22:18:54 +03:00
|
|
|
<widget class="QWidget" name="page_5"/>
|
|
|
|
<widget class="QWidget" name="page_6"/>
|
2024-08-19 02:35:16 +03:00
|
|
|
</widget>
|
|
|
|
</widget>
|
2024-08-18 13:57:57 +03:00
|
|
|
<widget class="QMenuBar" name="menubar">
|
|
|
|
<property name="geometry">
|
|
|
|
<rect>
|
|
|
|
<x>0</x>
|
|
|
|
<y>0</y>
|
2024-08-24 00:45:47 +03:00
|
|
|
<width>817</width>
|
2024-08-18 13:57:57 +03:00
|
|
|
<height>23</height>
|
|
|
|
</rect>
|
|
|
|
</property>
|
2024-08-19 02:35:16 +03:00
|
|
|
<widget class="QMenu" name="menuchecks_parser">
|
|
|
|
<property name="title">
|
|
|
|
<string>checks parser</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
<addaction name="menuchecks_parser"/>
|
2024-08-18 13:57:57 +03:00
|
|
|
</widget>
|
|
|
|
<widget class="QStatusBar" name="statusbar"/>
|
|
|
|
</widget>
|
|
|
|
<resources/>
|
|
|
|
<connections/>
|
|
|
|
</ui>
|