|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <ui version="4.0"> |
|
3 <class>AddBookmarkDialog</class> |
|
4 <widget class="QDialog" name="AddBookmarkDialog"> |
|
5 <property name="geometry"> |
|
6 <rect> |
|
7 <x>0</x> |
|
8 <y>0</y> |
|
9 <width>500</width> |
|
10 <height>230</height> |
|
11 </rect> |
|
12 </property> |
|
13 <property name="minimumSize"> |
|
14 <size> |
|
15 <width>500</width> |
|
16 <height>0</height> |
|
17 </size> |
|
18 </property> |
|
19 <property name="maximumSize"> |
|
20 <size> |
|
21 <width>500</width> |
|
22 <height>250</height> |
|
23 </size> |
|
24 </property> |
|
25 <property name="windowTitle"> |
|
26 <string>Add Bookmark</string> |
|
27 </property> |
|
28 <property name="sizeGripEnabled"> |
|
29 <bool>true</bool> |
|
30 </property> |
|
31 <layout class="QGridLayout" name="gridLayout"> |
|
32 <item row="0" column="0"> |
|
33 <widget class="QLabel" name="label_2"> |
|
34 <property name="text"> |
|
35 <string>Name:</string> |
|
36 </property> |
|
37 </widget> |
|
38 </item> |
|
39 <item row="0" column="1"> |
|
40 <widget class="QLineEdit" name="nameEdit"> |
|
41 <property name="toolTip"> |
|
42 <string>Enter the name</string> |
|
43 </property> |
|
44 <property name="placeholderText"> |
|
45 <string>Bookmark Title</string> |
|
46 </property> |
|
47 <property name="clearButtonEnabled"> |
|
48 <bool>true</bool> |
|
49 </property> |
|
50 </widget> |
|
51 </item> |
|
52 <item row="1" column="0"> |
|
53 <widget class="QLabel" name="addressLabel"> |
|
54 <property name="text"> |
|
55 <string>Address:</string> |
|
56 </property> |
|
57 </widget> |
|
58 </item> |
|
59 <item row="1" column="1"> |
|
60 <widget class="QLineEdit" name="addressEdit"> |
|
61 <property name="toolTip"> |
|
62 <string>Enter the address</string> |
|
63 </property> |
|
64 <property name="placeholderText"> |
|
65 <string>Bookmark URL</string> |
|
66 </property> |
|
67 <property name="clearButtonEnabled"> |
|
68 <bool>true</bool> |
|
69 </property> |
|
70 </widget> |
|
71 </item> |
|
72 <item row="2" column="0"> |
|
73 <widget class="QLabel" name="label"> |
|
74 <property name="text"> |
|
75 <string>Description:</string> |
|
76 </property> |
|
77 <property name="alignment"> |
|
78 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> |
|
79 </property> |
|
80 </widget> |
|
81 </item> |
|
82 <item row="2" column="1"> |
|
83 <widget class="EricSpellCheckedPlainTextEdit" name="descriptionEdit"> |
|
84 <property name="toolTip"> |
|
85 <string>Enter a description</string> |
|
86 </property> |
|
87 </widget> |
|
88 </item> |
|
89 <item row="3" column="0"> |
|
90 <widget class="QLabel" name="label_4"> |
|
91 <property name="text"> |
|
92 <string>Folder:</string> |
|
93 </property> |
|
94 </widget> |
|
95 </item> |
|
96 <item row="3" column="1"> |
|
97 <widget class="QComboBox" name="locationCombo"/> |
|
98 </item> |
|
99 <item row="4" column="0" colspan="2"> |
|
100 <widget class="QDialogButtonBox" name="buttonBox"> |
|
101 <property name="orientation"> |
|
102 <enum>Qt::Horizontal</enum> |
|
103 </property> |
|
104 <property name="standardButtons"> |
|
105 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> |
|
106 </property> |
|
107 </widget> |
|
108 </item> |
|
109 </layout> |
|
110 </widget> |
|
111 <customwidgets> |
|
112 <customwidget> |
|
113 <class>EricSpellCheckedPlainTextEdit</class> |
|
114 <extends>QPlainTextEdit</extends> |
|
115 <header>EricWidgets/EricSpellCheckedTextEdit.h</header> |
|
116 </customwidget> |
|
117 </customwidgets> |
|
118 <tabstops> |
|
119 <tabstop>nameEdit</tabstop> |
|
120 <tabstop>addressEdit</tabstop> |
|
121 <tabstop>descriptionEdit</tabstop> |
|
122 <tabstop>locationCombo</tabstop> |
|
123 <tabstop>buttonBox</tabstop> |
|
124 </tabstops> |
|
125 <resources/> |
|
126 <connections> |
|
127 <connection> |
|
128 <sender>buttonBox</sender> |
|
129 <signal>accepted()</signal> |
|
130 <receiver>AddBookmarkDialog</receiver> |
|
131 <slot>accept()</slot> |
|
132 <hints> |
|
133 <hint type="sourcelabel"> |
|
134 <x>248</x> |
|
135 <y>254</y> |
|
136 </hint> |
|
137 <hint type="destinationlabel"> |
|
138 <x>157</x> |
|
139 <y>274</y> |
|
140 </hint> |
|
141 </hints> |
|
142 </connection> |
|
143 <connection> |
|
144 <sender>buttonBox</sender> |
|
145 <signal>rejected()</signal> |
|
146 <receiver>AddBookmarkDialog</receiver> |
|
147 <slot>reject()</slot> |
|
148 <hints> |
|
149 <hint type="sourcelabel"> |
|
150 <x>316</x> |
|
151 <y>260</y> |
|
152 </hint> |
|
153 <hint type="destinationlabel"> |
|
154 <x>286</x> |
|
155 <y>274</y> |
|
156 </hint> |
|
157 </hints> |
|
158 </connection> |
|
159 </connections> |
|
160 </ui> |