2024-03-19 20:42:32 +00: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>
|
|
|
|
<width>800</width>
|
|
|
|
<height>600</height>
|
|
|
|
</rect>
|
|
|
|
</property>
|
|
|
|
<property name="windowTitle">
|
2024-03-20 08:34:54 +00:00
|
|
|
<string>QVectorSearch</string>
|
2024-03-19 20:42:32 +00:00
|
|
|
</property>
|
2024-03-20 08:34:54 +00:00
|
|
|
<property name="unifiedTitleAndToolBarOnMac">
|
|
|
|
<bool>false</bool>
|
|
|
|
</property>
|
|
|
|
<widget class="QWidget" name="centralwidget">
|
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
|
|
|
<property name="maximumSize">
|
|
|
|
<size>
|
|
|
|
<width>1920</width>
|
|
|
|
<height>1200</height>
|
|
|
|
</size>
|
|
|
|
</property>
|
|
|
|
<layout class="QVBoxLayout" name="verticalLayout">
|
|
|
|
<item>
|
|
|
|
<layout class="QGridLayout" name="gridLayout">
|
|
|
|
<property name="sizeConstraint">
|
|
|
|
<enum>QLayout::SetDefaultConstraint</enum>
|
|
|
|
</property>
|
2024-03-20 17:38:44 +00:00
|
|
|
<item row="0" column="1">
|
|
|
|
<widget class="QLineEdit" name="searchInput">
|
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
2024-03-20 08:34:54 +00:00
|
|
|
<item row="1" column="0">
|
|
|
|
<widget class="QLabel" name="label_2">
|
|
|
|
<property name="text">
|
|
|
|
<string>Select search algorithm</string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
2024-03-20 17:38:44 +00:00
|
|
|
<item row="1" column="1">
|
|
|
|
<widget class="QComboBox" name="searchAlgorithmSelector"/>
|
|
|
|
</item>
|
2024-03-20 08:34:54 +00:00
|
|
|
<item row="0" column="0">
|
|
|
|
<widget class="QLabel" name="label">
|
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
|
|
|
<property name="text">
|
|
|
|
<string><html><head/><body><p>Enter a search text</p></body></html></string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
2024-03-20 17:38:44 +00:00
|
|
|
<item row="2" column="0">
|
|
|
|
<widget class="QLabel" name="label_3">
|
|
|
|
<property name="text">
|
|
|
|
<string><html><head/><body><p>Select word-list size</p></body></html></string>
|
|
|
|
</property>
|
|
|
|
</widget>
|
2024-03-20 08:34:54 +00:00
|
|
|
</item>
|
2024-03-20 17:38:44 +00:00
|
|
|
<item row="2" column="1">
|
|
|
|
<widget class="QSpinBox" name="wordListSizeSelector">
|
|
|
|
<property name="maximum">
|
|
|
|
<number>100</number>
|
|
|
|
</property>
|
|
|
|
<property name="value">
|
|
|
|
<number>1</number>
|
2024-03-20 08:34:54 +00:00
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<widget class="QListView" name="resultView">
|
|
|
|
<property name="sizePolicy">
|
|
|
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
</sizepolicy>
|
|
|
|
</property>
|
|
|
|
<property name="uniformItemSizes">
|
|
|
|
<bool>true</bool>
|
|
|
|
</property>
|
|
|
|
</widget>
|
|
|
|
</item>
|
|
|
|
</layout>
|
|
|
|
</widget>
|
|
|
|
<widget class="QStatusBar" name="mainStatusBar"/>
|
|
|
|
<action name="actionOption">
|
|
|
|
<property name="text">
|
|
|
|
<string>Option</string>
|
|
|
|
</property>
|
|
|
|
</action>
|
2024-03-19 20:42:32 +00:00
|
|
|
</widget>
|
|
|
|
<resources/>
|
|
|
|
<connections/>
|
|
|
|
</ui>
|