blob: 25a55167ae6ce058d94c7e9f404660c324622bb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<ui version="4.0" >
<author>Petr Vanek <petr@scribus.info></author>
<class>UnicodeSearch</class>
<widget class="QDialog" name="UnicodeSearch" >
<property name="geometry" >
<rect>
<x>0</x>
<y>0</y>
<width>369</width>
<height>208</height>
</rect>
</property>
<property name="windowTitle" >
<string>Unicode Search</string>
</property>
<layout class="QGridLayout" >
<property name="margin" >
<number>1</number>
</property>
<property name="spacing" >
<number>1</number>
</property>
<item row="0" column="0" >
<widget class="QLabel" name="textLabel1" >
<property name="text" >
<string>&Search:</string>
</property>
<property name="wordWrap" >
<bool>false</bool>
</property>
<property name="buddy" >
<cstring>searchEdit</cstring>
</property>
</widget>
</item>
<item row="0" column="1" >
<widget class="QLineEdit" name="searchEdit" >
<property name="toolTip" >
<string>Enter the search phrase. Then press Enter.</string>
</property>
</widget>
</item>
<item row="1" column="0" colspan="2" >
<widget class="QTableView" name="tableView" >
<property name="alternatingRowColors" >
<bool>true</bool>
</property>
<property name="selectionMode" >
<enum>QAbstractItemView::SingleSelection</enum>
</property>
<property name="selectionBehavior" >
<enum>QAbstractItemView::SelectRows</enum>
</property>
</widget>
</item>
</layout>
</widget>
<layoutdefault spacing="6" margin="11" />
<resources/>
<connections/>
</ui>
|