1<ui version="4.0" >
2 <class>SpellCheckingDialog</class>
3 <widget class="QDialog" name="SpellCheckingDialog" >
4  <property name="geometry" >
5   <rect>
6    <x>0</x>
7    <y>0</y>
8    <width>696</width>
9    <height>366</height>
10   </rect>
11  </property>
12  <property name="windowTitle" >
13   <string>Check spelling</string>
14  </property>
15  <property name="sizeGripEnabled" >
16   <bool>true</bool>
17  </property>
18  <layout class="QGridLayout" name="gridLayout_2" >
19   <item row="0" column="0" colspan="2" >
20    <layout class="QHBoxLayout" name="horizontalLayout" >
21     <item>
22      <spacer name="horizontalSpacer_2" >
23       <property name="orientation" >
24        <enum>Qt::Horizontal</enum>
25       </property>
26       <property name="sizeHint" stdset="0" >
27        <size>
28         <width>40</width>
29         <height>20</height>
30        </size>
31       </property>
32      </spacer>
33     </item>
34     <item>
35      <widget class="QLabel" name="label_2" >
36       <property name="text" >
37        <string>Current language:</string>
38       </property>
39      </widget>
40     </item>
41     <item>
42      <widget class="QLabel" name="languageLabel" >
43       <property name="toolTip" >
44        <string>Shows the language used for spell checking</string>
45       </property>
46       <property name="text" >
47        <string/>
48       </property>
49      </widget>
50     </item>
51     <item>
52      <spacer name="horizontalSpacer" >
53       <property name="orientation" >
54        <enum>Qt::Horizontal</enum>
55       </property>
56       <property name="sizeHint" stdset="0" >
57        <size>
58         <width>328</width>
59         <height>17</height>
60        </size>
61       </property>
62      </spacer>
63     </item>
64    </layout>
65   </item>
66   <item row="1" column="0" colspan="2" >
67    <widget class="Line" name="line_2" >
68     <property name="orientation" >
69      <enum>Qt::Horizontal</enum>
70     </property>
71    </widget>
72   </item>
73   <item row="2" column="0" >
74    <layout class="QGridLayout" name="gridLayout" >
75     <item row="0" column="0" colspan="2" >
76      <widget class="QLabel" name="label" >
77       <property name="text" >
78        <string>Not found in dictionary</string>
79       </property>
80      </widget>
81     </item>
82     <item row="1" column="0" colspan="2" >
83      <widget class="QLabel" name="contextLabel" >
84       <property name="toolTip" >
85        <string>Shows the unrecognized word with some context</string>
86       </property>
87       <property name="frameShape" >
88        <enum>QFrame::Panel</enum>
89       </property>
90       <property name="frameShadow" >
91        <enum>QFrame::Sunken</enum>
92       </property>
93       <property name="text" >
94        <string/>
95       </property>
96       <property name="textFormat" >
97        <enum>Qt::RichText</enum>
98       </property>
99       <property name="wordWrap" >
100        <bool>true</bool>
101       </property>
102      </widget>
103     </item>
104     <item row="2" column="0" >
105      <widget class="QLabel" name="label_3" >
106       <property name="text" >
107        <string>Change &amp;to:</string>
108       </property>
109       <property name="buddy" >
110        <cstring>changeEdit</cstring>
111       </property>
112      </widget>
113     </item>
114     <item row="2" column="1" >
115      <widget class="QLineEdit" name="changeEdit" />
116     </item>
117     <item row="3" column="0" colspan="2" >
118      <widget class="QLabel" name="label_4" >
119       <property name="text" >
120        <string>&amp;Suggestions:</string>
121       </property>
122       <property name="buddy" >
123        <cstring>suggestionsList</cstring>
124       </property>
125      </widget>
126     </item>
127     <item row="4" column="0" colspan="2" >
128      <widget class="QListWidget" name="suggestionsList" />
129     </item>
130    </layout>
131   </item>
132   <item row="2" column="1" >
133    <layout class="QVBoxLayout" name="verticalLayout" >
134     <item>
135      <widget class="QPushButton" name="ignoreButton" >
136       <property name="toolTip" >
137        <string>Press to ignore once</string>
138       </property>
139       <property name="text" >
140        <string>&amp;Ignore</string>
141       </property>
142      </widget>
143     </item>
144     <item>
145      <widget class="QPushButton" name="ignoreAllButton" >
146       <property name="toolTip" >
147        <string>Press to always ignore</string>
148       </property>
149       <property name="text" >
150        <string>I&amp;gnore All</string>
151       </property>
152      </widget>
153     </item>
154     <item>
155      <widget class="QPushButton" name="addButton" >
156       <property name="toolTip" >
157        <string>Press to add to dictionary</string>
158       </property>
159       <property name="text" >
160        <string>&amp;Add to dictionary</string>
161       </property>
162      </widget>
163     </item>
164     <item>
165      <widget class="Line" name="line" >
166       <property name="orientation" >
167        <enum>Qt::Horizontal</enum>
168       </property>
169      </widget>
170     </item>
171     <item>
172      <widget class="QPushButton" name="replaceButton" >
173       <property name="toolTip" >
174        <string>Press to replace the word</string>
175       </property>
176       <property name="text" >
177        <string>&amp;Replace</string>
178       </property>
179      </widget>
180     </item>
181     <item>
182      <widget class="QPushButton" name="replaceAllButton" >
183       <property name="toolTip" >
184        <string>Press to replace all occurrences</string>
185       </property>
186       <property name="text" >
187        <string>Re&amp;place All</string>
188       </property>
189      </widget>
190     </item>
191     <item>
192      <spacer name="verticalSpacer" >
193       <property name="orientation" >
194        <enum>Qt::Vertical</enum>
195       </property>
196       <property name="sizeHint" stdset="0" >
197        <size>
198         <width>20</width>
199         <height>40</height>
200        </size>
201       </property>
202      </spacer>
203     </item>
204    </layout>
205   </item>
206   <item row="3" column="0" colspan="2" >
207    <widget class="Line" name="line_3" >
208     <property name="orientation" >
209      <enum>Qt::Horizontal</enum>
210     </property>
211    </widget>
212   </item>
213   <item row="4" column="0" colspan="2" >
214    <widget class="QDialogButtonBox" name="buttonBox" >
215     <property name="orientation" >
216      <enum>Qt::Horizontal</enum>
217     </property>
218     <property name="standardButtons" >
219      <set>QDialogButtonBox::Close</set>
220     </property>
221    </widget>
222   </item>
223  </layout>
224 </widget>
225 <tabstops>
226  <tabstop>changeEdit</tabstop>
227  <tabstop>suggestionsList</tabstop>
228  <tabstop>ignoreButton</tabstop>
229  <tabstop>ignoreAllButton</tabstop>
230  <tabstop>addButton</tabstop>
231  <tabstop>replaceButton</tabstop>
232  <tabstop>replaceAllButton</tabstop>
233  <tabstop>buttonBox</tabstop>
234 </tabstops>
235 <resources/>
236 <connections>
237  <connection>
238   <sender>buttonBox</sender>
239   <signal>accepted()</signal>
240   <receiver>SpellCheckingDialog</receiver>
241   <slot>accept()</slot>
242   <hints>
243    <hint type="sourcelabel" >
244     <x>248</x>
245     <y>254</y>
246    </hint>
247    <hint type="destinationlabel" >
248     <x>157</x>
249     <y>274</y>
250    </hint>
251   </hints>
252  </connection>
253  <connection>
254   <sender>buttonBox</sender>
255   <signal>rejected()</signal>
256   <receiver>SpellCheckingDialog</receiver>
257   <slot>reject()</slot>
258   <hints>
259    <hint type="sourcelabel" >
260     <x>316</x>
261     <y>260</y>
262    </hint>
263    <hint type="destinationlabel" >
264     <x>286</x>
265     <y>274</y>
266    </hint>
267   </hints>
268  </connection>
269 </connections>
270</ui>
271