1
<?xml version="1.0" encoding="UTF-8"?>
2
<ui version="4.0">
3
 <class>SimilarForm</class>
4
 <widget class="QWidget" name="SimilarForm">
5
  <property name="windowModality">
6
   <enum>Qt::ApplicationModal</enum>
7
  </property>
8
  <property name="geometry">
9
   <rect>
10
    <x>0</x>
11
    <y>0</y>
12
    <width>400</width>
13
    <height>300</height>
14
   </rect>
15
  </property>
16
  <property name="windowTitle">
17
   <string>Form</string>
18
  </property>
19
  <layout class="QGridLayout" name="gridLayout">
20
   <item row="0" column="1">
21
    <widget class="QLabel" name="label">
22
     <property name="text">
23
      <string>SimilarXXX for</string>
24
     </property>
25
    </widget>
26
   </item>
27
   <item row="0" column="2">
28
    <widget class="QLineEdit" name="value">
29
     <property name="toolTip">
30
      <string>The attribute to select similar attributes for.</string>
31
     </property>
32
     <property name="readOnly">
33
      <bool>true</bool>
34
     </property>
35
    </widget>
36
   </item>
37
   <item row="4" column="1" colspan="2">
38
    <widget class="QDialogButtonBox" name="buttonBox">
39
     <property name="standardButtons">
40
      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
41
     </property>
42
    </widget>
43
   </item>
44
   <item row="1" column="1" colspan="2">
45
    <widget class="QLineEdit" name="filter">
46
     <property name="toolTip">
47
      <string>Type here to filter the below list.</string>
48
     </property>
49
    </widget>
50
   </item>
51
   <item row="2" column="1" colspan="2">
52
    <widget class="QListWidget" name="values">
53
     <property name="toolTip">
54
      <string>Select similar values by checking them.</string>
55
     </property>
56
     <property name="alternatingRowColors">
57
      <bool>true</bool>
58
     </property>
59
     <property name="sortingEnabled">
60
      <bool>true</bool>
61
     </property>
62
    </widget>
63
   </item>
64
  </layout>
65
 </widget>
66
 <resources/>
67
 <connections/>
68
</ui>