1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>FeatherPad::FPwin</class>
4 <widget class="QMainWindow" name="FPwin">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>700</width>
10    <height>500</height>
11   </rect>
12  </property>
13  <widget class="QWidget" name="centralWidget">
14   <layout class="QVBoxLayout" name="verticalLayout">
15    <property name="leftMargin">
16     <number>0</number>
17    </property>
18    <property name="topMargin">
19     <number>0</number>
20    </property>
21    <property name="rightMargin">
22     <number>0</number>
23    </property>
24    <property name="bottomMargin">
25     <number>0</number>
26    </property>
27    <item>
28     <widget class="QSplitter" name="splitter">
29      <property name="sizePolicy">
30       <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
31        <horstretch>0</horstretch>
32        <verstretch>0</verstretch>
33       </sizepolicy>
34      </property>
35      <property name="lineWidth">
36       <number>0</number>
37      </property>
38      <property name="orientation">
39       <enum>Qt::Horizontal</enum>
40      </property>
41      <widget class="FeatherPad::TabWidget" name="tabWidget">
42       <property name="currentIndex">
43        <number>-1</number>
44       </property>
45       <property name="documentMode">
46        <bool>true</bool>
47       </property>
48       <property name="tabsClosable">
49        <bool>true</bool>
50       </property>
51       <property name="movable">
52        <bool>true</bool>
53       </property>
54      </widget>
55     </widget>
56    </item>
57    <item>
58     <layout class="QGridLayout" name="goToGridLayout">
59      <property name="leftMargin">
60       <number>2</number>
61      </property>
62      <property name="rightMargin">
63       <number>2</number>
64      </property>
65      <property name="horizontalSpacing">
66       <number>1</number>
67      </property>
68      <item row="0" column="0">
69       <widget class="QLabel" name="label">
70        <property name="text">
71         <string>Go to line:</string>
72        </property>
73        <property name="margin">
74         <number>2</number>
75        </property>
76       </widget>
77      </item>
78      <item row="0" column="1">
79       <widget class="QSpinBox" name="spinBox">
80        <property name="minimum">
81         <number>1</number>
82        </property>
83       </widget>
84      </item>
85      <item row="0" column="2">
86       <spacer name="horizontalSpacer_2">
87        <property name="orientation">
88         <enum>Qt::Horizontal</enum>
89        </property>
90        <property name="sizeType">
91         <enum>QSizePolicy::Fixed</enum>
92        </property>
93        <property name="sizeHint" stdset="0">
94         <size>
95          <width>10</width>
96          <height>0</height>
97         </size>
98        </property>
99       </spacer>
100      </item>
101      <item row="0" column="3">
102       <widget class="QCheckBox" name="checkBox">
103        <property name="focusPolicy">
104         <enum>Qt::NoFocus</enum>
105        </property>
106        <property name="toolTip">
107         <string>Select text from cursor to this line
108(Ctrl+Shift+J)</string>
109        </property>
110        <property name="text">
111         <string>Select Text</string>
112        </property>
113        <property name="shortcut">
114         <string>Ctrl+Shift+J</string>
115        </property>
116       </widget>
117      </item>
118      <item row="0" column="4">
119       <spacer name="horizontalSpacer">
120        <property name="orientation">
121         <enum>Qt::Horizontal</enum>
122        </property>
123        <property name="sizeHint" stdset="0">
124         <size>
125          <width>40</width>
126          <height>0</height>
127         </size>
128        </property>
129       </spacer>
130      </item>
131     </layout>
132    </item>
133   </layout>
134  </widget>
135  <widget class="QMenuBar" name="menuBar">
136   <property name="geometry">
137    <rect>
138     <x>0</x>
139     <y>0</y>
140     <width>700</width>
141     <height>20</height>
142    </rect>
143   </property>
144   <property name="contextMenuPolicy">
145    <enum>Qt::PreventContextMenu</enum>
146   </property>
147   <widget class="QMenu" name="menuFile">
148    <property name="title">
149     <string>&amp;File</string>
150    </property>
151    <widget class="QMenu" name="menuOpenRecently">
152     <property name="title">
153      <string>Recently &amp;Modified</string>
154     </property>
155     <addaction name="actionClearRecent"/>
156    </widget>
157    <addaction name="actionNew"/>
158    <addaction name="actionOpen"/>
159    <addaction name="menuOpenRecently"/>
160    <addaction name="actionSession"/>
161    <addaction name="actionSidePane"/>
162    <addaction name="separator"/>
163    <addaction name="actionRun"/>
164    <addaction name="separator"/>
165    <addaction name="actionDetachTab"/>
166    <addaction name="actionLastActiveTab"/>
167    <addaction name="actionRightTab"/>
168    <addaction name="actionLeftTab"/>
169    <addaction name="actionLastTab"/>
170    <addaction name="actionFirstTab"/>
171    <addaction name="separator"/>
172    <addaction name="actionReload"/>
173    <addaction name="separator"/>
174    <addaction name="actionSave"/>
175    <addaction name="actionSaveAs"/>
176    <addaction name="actionSaveAllFiles"/>
177    <addaction name="separator"/>
178    <addaction name="actionSaveCodec"/>
179    <addaction name="separator"/>
180    <addaction name="actionPrint"/>
181    <addaction name="separator"/>
182    <addaction name="actionDoc"/>
183    <addaction name="separator"/>
184    <addaction name="actionClose"/>
185    <addaction name="actionQuit"/>
186   </widget>
187   <widget class="QMenu" name="menuEdit">
188    <property name="title">
189     <string>&amp;Edit</string>
190    </property>
191    <addaction name="actionEdit"/>
192    <addaction name="separator"/>
193    <addaction name="actionUndo"/>
194    <addaction name="actionRedo"/>
195    <addaction name="separator"/>
196    <addaction name="actionCut"/>
197    <addaction name="actionCopy"/>
198    <addaction name="actionPaste"/>
199    <addaction name="actionDelete"/>
200    <addaction name="separator"/>
201    <addaction name="actionSelectAll"/>
202    <addaction name="separator"/>
203    <addaction name="actionSoftTab"/>
204    <addaction name="separator"/>
205    <addaction name="actionUpperCase"/>
206    <addaction name="actionLowerCase"/>
207    <addaction name="actionStartCase"/>
208    <addaction name="separator"/>
209    <addaction name="actionSortLines"/>
210    <addaction name="actionRSortLines"/>
211    <addaction name="separator"/>
212    <addaction name="actionCheckSpelling"/>
213    <addaction name="actionUserDict"/>
214    <addaction name="separator"/>
215    <addaction name="actionDate"/>
216   </widget>
217   <widget class="QMenu" name="menuOptions">
218    <property name="title">
219     <string>&amp;Options</string>
220    </property>
221    <widget class="QMenu" name="menuEncoding">
222     <property name="title">
223      <string>&amp;Encoding</string>
224     </property>
225     <widget class="QMenu" name="menuUnicode">
226      <property name="title">
227       <string>&amp;Unicode</string>
228      </property>
229      <addaction name="actionUTF_8"/>
230      <addaction name="actionUTF_16"/>
231     </widget>
232     <widget class="QMenu" name="menuWestern_European">
233      <property name="title">
234       <string>&amp;Western European</string>
235      </property>
236      <addaction name="actionISO_8859_1"/>
237      <addaction name="actionISO_8859_15"/>
238      <addaction name="actionWindows_1252"/>
239     </widget>
240     <widget class="QMenu" name="menuEast_European">
241      <property name="title">
242       <string>&amp;East European</string>
243      </property>
244      <addaction name="actionCyrillic_CP1251"/>
245      <addaction name="actionCyrillic_KOI8_U"/>
246      <addaction name="actionCyrillic_ISO_8859_5"/>
247     </widget>
248     <widget class="QMenu" name="menuEast_Asian">
249      <property name="title">
250       <string>Ea&amp;st Asian</string>
251      </property>
252      <addaction name="actionChinese_BIG5"/>
253      <addaction name="actionChinese_GB18030"/>
254      <addaction name="actionJapanese_ISO_2022_JP"/>
255      <addaction name="actionJapanese_ISO_2022_JP_2"/>
256      <addaction name="actionJapanese_ISO_2022_KR"/>
257      <addaction name="actionJapanese_CP932"/>
258      <addaction name="actionJapanese_EUC_JP"/>
259      <addaction name="actionKorean_CP949"/>
260      <addaction name="actionKorean_CP1361"/>
261      <addaction name="actionKorean_EUC_KR"/>
262     </widget>
263     <addaction name="menuUnicode"/>
264     <addaction name="menuWestern_European"/>
265     <addaction name="actionWindows_Arabic"/>
266     <addaction name="menuEast_European"/>
267     <addaction name="menuEast_Asian"/>
268     <addaction name="actionOther"/>
269    </widget>
270    <addaction name="actionLineNumbers"/>
271    <addaction name="actionWrap"/>
272    <addaction name="actionIndent"/>
273    <addaction name="actionSyntax"/>
274    <addaction name="separator"/>
275    <addaction name="menuEncoding"/>
276    <addaction name="separator"/>
277    <addaction name="actionFont"/>
278    <addaction name="actionPreferences"/>
279   </widget>
280   <widget class="QMenu" name="menuSearch">
281    <property name="title">
282     <string>&amp;Search</string>
283    </property>
284    <addaction name="actionFind"/>
285    <addaction name="actionReplace"/>
286    <addaction name="actionJump"/>
287   </widget>
288   <widget class="QMenu" name="menuHelp">
289    <property name="title">
290     <string>&amp;Help</string>
291    </property>
292    <addaction name="actionHelp"/>
293    <addaction name="actionAbout"/>
294   </widget>
295   <addaction name="menuFile"/>
296   <addaction name="menuEdit"/>
297   <addaction name="menuOptions"/>
298   <addaction name="menuSearch"/>
299   <addaction name="menuHelp"/>
300  </widget>
301  <widget class="QToolBar" name="mainToolBar">
302   <property name="contextMenuPolicy">
303    <enum>Qt::PreventContextMenu</enum>
304   </property>
305   <property name="movable">
306    <bool>false</bool>
307   </property>
308   <attribute name="toolBarArea">
309    <enum>TopToolBarArea</enum>
310   </attribute>
311   <attribute name="toolBarBreak">
312    <bool>false</bool>
313   </attribute>
314   <addaction name="actionNew"/>
315   <addaction name="actionOpen"/>
316   <addaction name="actionSave"/>
317   <addaction name="separator"/>
318   <addaction name="actionUndo"/>
319   <addaction name="actionRedo"/>
320   <addaction name="actionReload"/>
321   <addaction name="separator"/>
322   <addaction name="actionFind"/>
323   <addaction name="actionReplace"/>
324   <addaction name="actionJump"/>
325   <addaction name="separator"/>
326   <addaction name="actionEdit"/>
327   <addaction name="actionRun"/>
328   <addaction name="actionMenu"/>
329  </widget>
330  <widget class="QStatusBar" name="statusBar"/>
331  <widget class="QDockWidget" name="dockReplace">
332   <property name="contextMenuPolicy">
333    <enum>Qt::PreventContextMenu</enum>
334   </property>
335   <property name="features">
336    <set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
337   </property>
338   <property name="allowedAreas">
339    <set>Qt::BottomDockWidgetArea|Qt::TopDockWidgetArea</set>
340   </property>
341   <property name="windowTitle">
342    <string>Replacement</string>
343   </property>
344   <attribute name="dockWidgetArea">
345    <number>8</number>
346   </attribute>
347   <widget class="QWidget" name="dockWidgetContents">
348    <layout class="QGridLayout" name="gridLayout">
349     <property name="leftMargin">
350      <number>0</number>
351     </property>
352     <property name="topMargin">
353      <number>0</number>
354     </property>
355     <property name="rightMargin">
356      <number>0</number>
357     </property>
358     <property name="bottomMargin">
359      <number>0</number>
360     </property>
361     <property name="spacing">
362      <number>0</number>
363     </property>
364     <item row="0" column="0">
365      <layout class="QGridLayout" name="dockGridLayout">
366       <property name="leftMargin">
367        <number>5</number>
368       </property>
369       <property name="rightMargin">
370        <number>2</number>
371       </property>
372       <property name="bottomMargin">
373        <number>5</number>
374       </property>
375       <property name="horizontalSpacing">
376        <number>5</number>
377       </property>
378       <property name="verticalSpacing">
379        <number>0</number>
380       </property>
381       <item row="0" column="0" alignment="Qt::AlignHCenter|Qt::AlignVCenter">
382        <widget class="QLabel" name="label_3">
383         <property name="sizePolicy">
384          <sizepolicy hsizetype="Fixed" vsizetype="Preferred">
385           <horstretch>0</horstretch>
386           <verstretch>0</verstretch>
387          </sizepolicy>
388         </property>
389         <property name="text">
390          <string>Find:</string>
391         </property>
392         <property name="alignment">
393          <set>Qt::AlignCenter</set>
394         </property>
395        </widget>
396       </item>
397       <item row="0" column="1" colspan="2" alignment="Qt::AlignVCenter">
398        <widget class="FeatherPad::LineEdit" name="lineEditFind">
399         <property name="minimumSize">
400          <size>
401           <width>150</width>
402           <height>0</height>
403          </size>
404         </property>
405         <property name="placeholderText">
406          <string>To be replaced</string>
407         </property>
408        </widget>
409       </item>
410       <item row="1" column="0" alignment="Qt::AlignVCenter">
411        <widget class="QLabel" name="label_2">
412         <property name="sizePolicy">
413          <sizepolicy hsizetype="Fixed" vsizetype="Preferred">
414           <horstretch>0</horstretch>
415           <verstretch>0</verstretch>
416          </sizepolicy>
417         </property>
418         <property name="text">
419          <string>Replace with:</string>
420         </property>
421         <property name="alignment">
422          <set>Qt::AlignCenter</set>
423         </property>
424        </widget>
425       </item>
426       <item row="1" column="1" colspan="2" alignment="Qt::AlignVCenter">
427        <widget class="FeatherPad::LineEdit" name="lineEditReplace">
428         <property name="minimumSize">
429          <size>
430           <width>150</width>
431           <height>0</height>
432          </size>
433         </property>
434         <property name="placeholderText">
435          <string>Replacing text</string>
436         </property>
437        </widget>
438       </item>
439       <item row="0" column="3">
440        <widget class="QToolButton" name="toolButtonPrv">
441         <property name="sizePolicy">
442          <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
443           <horstretch>0</horstretch>
444           <verstretch>0</verstretch>
445          </sizepolicy>
446         </property>
447         <property name="focusPolicy">
448          <enum>Qt::NoFocus</enum>
449         </property>
450         <property name="autoRaise">
451          <bool>true</bool>
452         </property>
453        </widget>
454       </item>
455       <item row="1" column="3">
456        <widget class="QToolButton" name="toolButtonNext">
457         <property name="sizePolicy">
458          <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
459           <horstretch>0</horstretch>
460           <verstretch>0</verstretch>
461          </sizepolicy>
462         </property>
463         <property name="focusPolicy">
464          <enum>Qt::NoFocus</enum>
465         </property>
466         <property name="autoRaise">
467          <bool>true</bool>
468         </property>
469        </widget>
470       </item>
471       <item row="1" column="4">
472        <widget class="QToolButton" name="toolButtonAll">
473         <property name="sizePolicy">
474          <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
475           <horstretch>0</horstretch>
476           <verstretch>0</verstretch>
477          </sizepolicy>
478         </property>
479         <property name="focusPolicy">
480          <enum>Qt::NoFocus</enum>
481         </property>
482         <property name="autoRaise">
483          <bool>true</bool>
484         </property>
485        </widget>
486       </item>
487      </layout>
488     </item>
489    </layout>
490   </widget>
491  </widget>
492  <action name="actionNew">
493   <property name="text">
494    <string>&amp;New</string>
495   </property>
496   <property name="toolTip">
497    <string>New tab</string>
498   </property>
499   <property name="shortcut">
500    <string>Ctrl+N</string>
501   </property>
502  </action>
503  <action name="actionOpen">
504   <property name="text">
505    <string>&amp;Open</string>
506   </property>
507   <property name="toolTip">
508    <string>Open a file</string>
509   </property>
510   <property name="shortcut">
511    <string>Ctrl+O</string>
512   </property>
513  </action>
514  <action name="actionSave">
515   <property name="enabled">
516    <bool>false</bool>
517   </property>
518   <property name="text">
519    <string>&amp;Save</string>
520   </property>
521   <property name="toolTip">
522    <string>Save the current tab</string>
523   </property>
524   <property name="shortcut">
525    <string>Ctrl+S</string>
526   </property>
527  </action>
528  <action name="actionUndo">
529   <property name="enabled">
530    <bool>false</bool>
531   </property>
532   <property name="text">
533    <string>&amp;Undo</string>
534   </property>
535   <property name="toolTip">
536    <string>Undo</string>
537   </property>
538   <property name="shortcut">
539    <string>Ctrl+Z</string>
540   </property>
541  </action>
542  <action name="actionRedo">
543   <property name="enabled">
544    <bool>false</bool>
545   </property>
546   <property name="text">
547    <string>&amp;Redo</string>
548   </property>
549   <property name="toolTip">
550    <string>Redo</string>
551   </property>
552   <property name="shortcut">
553    <string>Ctrl+Shift+Z</string>
554   </property>
555  </action>
556  <action name="actionReload">
557   <property name="enabled">
558    <bool>false</bool>
559   </property>
560   <property name="text">
561    <string>Reload</string>
562   </property>
563   <property name="toolTip">
564    <string>Reload</string>
565   </property>
566   <property name="shortcut">
567    <string>Ctrl+Shift+R</string>
568   </property>
569  </action>
570  <action name="actionFind">
571   <property name="text">
572    <string>&amp;Find</string>
573   </property>
574   <property name="toolTip">
575    <string>Focus/hide search bar</string>
576   </property>
577   <property name="shortcut">
578    <string>Ctrl+F</string>
579   </property>
580  </action>
581  <action name="actionReplace">
582   <property name="text">
583    <string>&amp;Replace</string>
584   </property>
585   <property name="toolTip">
586    <string>Show/hide replacement dock</string>
587   </property>
588   <property name="shortcut">
589    <string>Ctrl+R</string>
590   </property>
591  </action>
592  <action name="actionSaveAs">
593   <property name="text">
594    <string>Save &amp;As</string>
595   </property>
596   <property name="shortcut">
597    <string>Ctrl+Shift+S</string>
598   </property>
599  </action>
600  <action name="actionPrint">
601   <property name="text">
602    <string>&amp;Print</string>
603   </property>
604   <property name="shortcut">
605    <string>Ctrl+P</string>
606   </property>
607  </action>
608  <action name="actionDoc">
609   <property name="text">
610    <string>Documen&amp;t Properties</string>
611   </property>
612   <property name="shortcut">
613    <string>Ctrl+Shift+D</string>
614   </property>
615  </action>
616  <action name="actionClose">
617   <property name="text">
618    <string>&amp;Close</string>
619   </property>
620   <property name="shortcut">
621    <string>Ctrl+Shift+Q</string>
622   </property>
623  </action>
624  <action name="actionQuit">
625   <property name="text">
626    <string>&amp;Quit</string>
627   </property>
628   <property name="shortcut">
629    <string>Ctrl+Q</string>
630   </property>
631  </action>
632  <action name="actionCut">
633   <property name="enabled">
634    <bool>false</bool>
635   </property>
636   <property name="text">
637    <string>&amp;Cut</string>
638   </property>
639   <property name="shortcut">
640    <string>Ctrl+X</string>
641   </property>
642  </action>
643  <action name="actionCopy">
644   <property name="enabled">
645    <bool>false</bool>
646   </property>
647   <property name="text">
648    <string>C&amp;opy</string>
649   </property>
650   <property name="shortcut">
651    <string>Ctrl+C</string>
652   </property>
653  </action>
654  <action name="actionPaste">
655   <property name="text">
656    <string>&amp;Paste</string>
657   </property>
658   <property name="shortcut">
659    <string>Ctrl+V</string>
660   </property>
661  </action>
662  <action name="actionDelete">
663   <property name="enabled">
664    <bool>false</bool>
665   </property>
666   <property name="text">
667    <string>&amp;Delete</string>
668   </property>
669  </action>
670  <action name="actionSelectAll">
671   <property name="text">
672    <string>&amp;Select All</string>
673   </property>
674   <property name="shortcut">
675    <string>Ctrl+A</string>
676   </property>
677  </action>
678  <action name="actionFont">
679   <property name="text">
680    <string>&amp;Font</string>
681   </property>
682  </action>
683  <action name="actionLineNumbers">
684   <property name="checkable">
685    <bool>true</bool>
686   </property>
687   <property name="text">
688    <string>&amp;Line Numbers</string>
689   </property>
690   <property name="shortcut">
691    <string>Ctrl+L</string>
692   </property>
693  </action>
694  <action name="actionWrap">
695   <property name="checkable">
696    <bool>true</bool>
697   </property>
698   <property name="checked">
699    <bool>true</bool>
700   </property>
701   <property name="text">
702    <string>&amp;Wrap Lines</string>
703   </property>
704   <property name="shortcut">
705    <string>Ctrl+W</string>
706   </property>
707  </action>
708  <action name="actionIndent">
709   <property name="checkable">
710    <bool>true</bool>
711   </property>
712   <property name="checked">
713    <bool>true</bool>
714   </property>
715   <property name="text">
716    <string>&amp;Auto-Indentation</string>
717   </property>
718   <property name="shortcut">
719    <string>Ctrl+I</string>
720   </property>
721  </action>
722  <action name="actionSyntax">
723   <property name="checkable">
724    <bool>true</bool>
725   </property>
726   <property name="checked">
727    <bool>true</bool>
728   </property>
729   <property name="text">
730    <string>&amp;Syntax Highlighting</string>
731   </property>
732   <property name="shortcut">
733    <string>Ctrl+Shift+H</string>
734   </property>
735  </action>
736  <action name="actionPreferences">
737   <property name="text">
738    <string>&amp;Preferences</string>
739   </property>
740   <property name="shortcut">
741    <string>Ctrl+Shift+P</string>
742   </property>
743  </action>
744  <action name="actionHelp">
745   <property name="text">
746    <string>&amp;Help</string>
747   </property>
748   <property name="shortcut">
749    <string>Ctrl+H</string>
750   </property>
751  </action>
752  <action name="actionAbout">
753   <property name="text">
754    <string>&amp;About</string>
755   </property>
756  </action>
757  <action name="actionWindows_Arabic">
758   <property name="checkable">
759    <bool>true</bool>
760   </property>
761   <property name="checked">
762    <bool>false</bool>
763   </property>
764   <property name="text">
765    <string>Windows Arabic (&amp;CP1256)</string>
766   </property>
767  </action>
768  <action name="actionOther">
769   <property name="checkable">
770    <bool>true</bool>
771   </property>
772   <property name="text">
773    <string>&amp;Other</string>
774   </property>
775  </action>
776  <action name="actionEnforce_UTF_8">
777   <property name="checkable">
778    <bool>true</bool>
779   </property>
780   <property name="text">
781    <string>Enforce UTF-8</string>
782   </property>
783  </action>
784  <action name="actionUTF_8">
785   <property name="checkable">
786    <bool>true</bool>
787   </property>
788   <property name="checked">
789    <bool>false</bool>
790   </property>
791   <property name="text">
792    <string>&amp;UTF-8</string>
793   </property>
794  </action>
795  <action name="actionUTF_16">
796   <property name="checkable">
797    <bool>true</bool>
798   </property>
799   <property name="checked">
800    <bool>false</bool>
801   </property>
802   <property name="text">
803    <string>UTF-&amp;16</string>
804   </property>
805  </action>
806  <action name="actionISO_8859_1">
807   <property name="checkable">
808    <bool>true</bool>
809   </property>
810   <property name="checked">
811    <bool>false</bool>
812   </property>
813   <property name="text">
814    <string>&amp;ISO-8859-1</string>
815   </property>
816  </action>
817  <action name="actionWindows_1252">
818   <property name="checkable">
819    <bool>true</bool>
820   </property>
821   <property name="checked">
822    <bool>false</bool>
823   </property>
824   <property name="text">
825    <string>&amp;Windows-1252</string>
826   </property>
827  </action>
828  <action name="actionCyrillic_CP1251">
829   <property name="checkable">
830    <bool>true</bool>
831   </property>
832   <property name="checked">
833    <bool>false</bool>
834   </property>
835   <property name="text">
836    <string>&amp;Cyrillic (CP1251)</string>
837   </property>
838  </action>
839  <action name="actionCyrillic_KOI8_U">
840   <property name="checkable">
841    <bool>true</bool>
842   </property>
843   <property name="checked">
844    <bool>false</bool>
845   </property>
846   <property name="text">
847    <string>Cyrillic (&amp;KOI8-U)</string>
848   </property>
849  </action>
850  <action name="actionCyrillic_ISO_8859_5">
851   <property name="checkable">
852    <bool>true</bool>
853   </property>
854   <property name="checked">
855    <bool>false</bool>
856   </property>
857   <property name="text">
858    <string>Cyrillic (&amp;ISO-8859-5)</string>
859   </property>
860  </action>
861  <action name="actionChinese_BIG5">
862   <property name="checkable">
863    <bool>true</bool>
864   </property>
865   <property name="checked">
866    <bool>false</bool>
867   </property>
868   <property name="text">
869    <string>&amp;Chinese (BIG5)</string>
870   </property>
871  </action>
872  <action name="actionChinese_GB18030">
873   <property name="checkable">
874    <bool>true</bool>
875   </property>
876   <property name="checked">
877    <bool>false</bool>
878   </property>
879   <property name="text">
880    <string>Chinese (&amp;GB18030)</string>
881   </property>
882  </action>
883  <action name="actionJapanese_ISO_2022_JP">
884   <property name="checkable">
885    <bool>true</bool>
886   </property>
887   <property name="checked">
888    <bool>false</bool>
889   </property>
890   <property name="text">
891    <string>&amp;Japanese (ISO-2022-JP)</string>
892   </property>
893  </action>
894  <action name="actionJapanese_ISO_2022_JP_2">
895   <property name="checkable">
896    <bool>true</bool>
897   </property>
898   <property name="checked">
899    <bool>false</bool>
900   </property>
901   <property name="text">
902    <string>Japanese (&amp;ISO-2022-JP-2)</string>
903   </property>
904  </action>
905  <action name="actionJapanese_ISO_2022_KR">
906   <property name="checkable">
907    <bool>true</bool>
908   </property>
909   <property name="checked">
910    <bool>false</bool>
911   </property>
912   <property name="text">
913    <string>Japanese (ISO-&amp;2022-KR)</string>
914   </property>
915  </action>
916  <action name="actionJapanese_CP932">
917   <property name="checkable">
918    <bool>true</bool>
919   </property>
920   <property name="checked">
921    <bool>false</bool>
922   </property>
923   <property name="text">
924    <string>Ja&amp;panese (CP932)</string>
925   </property>
926  </action>
927  <action name="actionJapanese_EUC_JP">
928   <property name="checkable">
929    <bool>true</bool>
930   </property>
931   <property name="checked">
932    <bool>false</bool>
933   </property>
934   <property name="text">
935    <string>Japa&amp;nese (EUC-JP)</string>
936   </property>
937  </action>
938  <action name="actionKorean_CP949">
939   <property name="checkable">
940    <bool>true</bool>
941   </property>
942   <property name="text">
943    <string>&amp;Korean (CP949)</string>
944   </property>
945  </action>
946  <action name="actionKorean_CP1361">
947   <property name="checkable">
948    <bool>true</bool>
949   </property>
950   <property name="text">
951    <string>K&amp;orean (CP1361)</string>
952   </property>
953  </action>
954  <action name="actionKorean_EUC_KR">
955   <property name="checkable">
956    <bool>true</bool>
957   </property>
958   <property name="text">
959    <string>Korean (&amp;EUC-KR)</string>
960   </property>
961  </action>
962  <action name="actionSaveCodec">
963   <property name="text">
964    <string>Save with &amp;Encoding</string>
965   </property>
966  </action>
967  <action name="actionJump">
968   <property name="text">
969    <string>&amp;Jump to</string>
970   </property>
971   <property name="toolTip">
972    <string>Show/hide jump bar</string>
973   </property>
974   <property name="shortcut">
975    <string>Ctrl+J</string>
976   </property>
977  </action>
978  <action name="actionEdit">
979   <property name="text">
980    <string>&amp;Edit</string>
981   </property>
982   <property name="toolTip">
983    <string>Edit text</string>
984   </property>
985   <property name="shortcut">
986    <string>Ctrl+Shift+E</string>
987   </property>
988  </action>
989  <action name="actionDetachTab">
990   <property name="enabled">
991    <bool>false</bool>
992   </property>
993   <property name="text">
994    <string>&amp;Detach Tab</string>
995   </property>
996   <property name="shortcut">
997    <string>Ctrl+T</string>
998   </property>
999  </action>
1000  <action name="actionISO_8859_15">
1001   <property name="checkable">
1002    <bool>true</bool>
1003   </property>
1004   <property name="text">
1005    <string>ISO-&amp;8859-15</string>
1006   </property>
1007  </action>
1008  <action name="actionCloseRight">
1009   <property name="text">
1010    <string>Close Ne&amp;xt Tabs</string>
1011   </property>
1012  </action>
1013  <action name="actionCloseLeft">
1014   <property name="text">
1015    <string>Close &amp;Previous Tabs</string>
1016   </property>
1017  </action>
1018  <action name="actionCloseAll">
1019   <property name="text">
1020    <string>Close &amp;All Tabs</string>
1021   </property>
1022  </action>
1023  <action name="actionCloseOther">
1024   <property name="text">
1025    <string>Close &amp;Other Tabs</string>
1026   </property>
1027  </action>
1028  <action name="actionCopyName">
1029   <property name="text">
1030    <string>&amp;Copy File Name</string>
1031   </property>
1032  </action>
1033  <action name="actionCopyPath">
1034   <property name="text">
1035    <string>Copy File &amp;Path</string>
1036   </property>
1037  </action>
1038  <action name="actionRightTab">
1039   <property name="enabled">
1040    <bool>false</bool>
1041   </property>
1042   <property name="text">
1043    <string>Ne&amp;xt Tab</string>
1044   </property>
1045   <property name="shortcut">
1046    <string>Alt+Right</string>
1047   </property>
1048  </action>
1049  <action name="actionLeftTab">
1050   <property name="enabled">
1051    <bool>false</bool>
1052   </property>
1053   <property name="text">
1054    <string>Previous Ta&amp;b</string>
1055   </property>
1056   <property name="shortcut">
1057    <string>Alt+Left</string>
1058   </property>
1059  </action>
1060  <action name="actionFirstTab">
1061   <property name="enabled">
1062    <bool>false</bool>
1063   </property>
1064   <property name="text">
1065    <string>&amp;First Tab</string>
1066   </property>
1067   <property name="shortcut">
1068    <string>Alt+Down</string>
1069   </property>
1070  </action>
1071  <action name="actionLastTab">
1072   <property name="enabled">
1073    <bool>false</bool>
1074   </property>
1075   <property name="text">
1076    <string>&amp;Last Tab</string>
1077   </property>
1078   <property name="shortcut">
1079    <string>Alt+Up</string>
1080   </property>
1081  </action>
1082  <action name="actionMenu">
1083   <property name="text">
1084    <string>Menu</string>
1085   </property>
1086  </action>
1087  <action name="actionRun">
1088   <property name="text">
1089    <string>&amp;Run</string>
1090   </property>
1091   <property name="toolTip">
1092    <string>Execute</string>
1093   </property>
1094   <property name="shortcut">
1095    <string>Ctrl+E</string>
1096   </property>
1097  </action>
1098  <action name="actionClearRecent">
1099   <property name="text">
1100    <string>&amp;Clear</string>
1101   </property>
1102   <property name="toolTip">
1103    <string>Clear the list of recently modified files</string>
1104   </property>
1105  </action>
1106  <action name="actionSession">
1107   <property name="text">
1108    <string>Save/Restore Session</string>
1109   </property>
1110   <property name="toolTip">
1111    <string>Sa&amp;ve/Restore Session</string>
1112   </property>
1113   <property name="shortcut">
1114    <string>Ctrl+M</string>
1115   </property>
1116  </action>
1117  <action name="actionSidePane">
1118   <property name="text">
1119    <string>Side-Pane</string>
1120   </property>
1121   <property name="shortcut">
1122    <string>Ctrl+Alt+P</string>
1123   </property>
1124  </action>
1125  <action name="actionDate">
1126   <property name="text">
1127    <string>Paste Date and Time</string>
1128   </property>
1129   <property name="shortcut">
1130    <string>Ctrl+Shift+V</string>
1131   </property>
1132  </action>
1133  <action name="actionUpperCase">
1134   <property name="text">
1135    <string>To Upper Case</string>
1136   </property>
1137   <property name="toolTip">
1138    <string>To Upper Case</string>
1139   </property>
1140   <property name="shortcut">
1141    <string>Ctrl+Shift+U</string>
1142   </property>
1143  </action>
1144  <action name="actionLowerCase">
1145   <property name="text">
1146    <string>To Lower Case</string>
1147   </property>
1148   <property name="toolTip">
1149    <string>To Lower Case</string>
1150   </property>
1151   <property name="shortcut">
1152    <string>Ctrl+Shift+L</string>
1153   </property>
1154  </action>
1155  <action name="actionStartCase">
1156   <property name="text">
1157    <string>To Start Case</string>
1158   </property>
1159   <property name="toolTip">
1160    <string>To Start Case</string>
1161   </property>
1162  </action>
1163  <action name="actionLastActiveTab">
1164   <property name="enabled">
1165    <bool>false</bool>
1166   </property>
1167   <property name="text">
1168    <string>Last Active Tab</string>
1169   </property>
1170   <property name="toolTip">
1171    <string>Last Active Tab</string>
1172   </property>
1173   <property name="shortcut">
1174    <string>F1</string>
1175   </property>
1176  </action>
1177  <action name="actionSortLines">
1178   <property name="text">
1179    <string>Sort Lines</string>
1180   </property>
1181   <property name="toolTip">
1182    <string>Sort Lines</string>
1183   </property>
1184  </action>
1185  <action name="actionRSortLines">
1186   <property name="text">
1187    <string>Sort Lines Reversely</string>
1188   </property>
1189   <property name="toolTip">
1190    <string>Sort Lines Reversely</string>
1191   </property>
1192  </action>
1193  <action name="actionCheckSpelling">
1194   <property name="text">
1195    <string>Check Spelling</string>
1196   </property>
1197   <property name="shortcut">
1198    <string>F2</string>
1199   </property>
1200  </action>
1201  <action name="actionSaveAllFiles">
1202   <property name="text">
1203    <string>Save All Files</string>
1204   </property>
1205   <property name="toolTip">
1206    <string>Save All Files</string>
1207   </property>
1208  </action>
1209  <action name="actionUserDict">
1210   <property name="text">
1211    <string>User Dictionary</string>
1212   </property>
1213   <property name="toolTip">
1214    <string>User Dictionary</string>
1215   </property>
1216  </action>
1217  <action name="actionSoftTab">
1218   <property name="text">
1219    <string>Text Tabs to Spaces</string>
1220   </property>
1221  </action>
1222 </widget>
1223 <layoutdefault spacing="6" margin="11"/>
1224 <customwidgets>
1225  <customwidget>
1226   <class>FeatherPad::LineEdit</class>
1227   <extends>QLineEdit</extends>
1228   <header>lineedit.h</header>
1229  </customwidget>
1230  <customwidget>
1231   <class>FeatherPad::TabWidget</class>
1232   <extends>QTabWidget</extends>
1233   <header>tabwidget.h</header>
1234   <container>1</container>
1235  </customwidget>
1236 </customwidgets>
1237 <connections>
1238  <connection>
1239   <sender>actionQuit</sender>
1240   <signal>triggered()</signal>
1241   <receiver>FPwin</receiver>
1242   <slot>close()</slot>
1243   <hints>
1244    <hint type="sourcelabel">
1245     <x>-1</x>
1246     <y>-1</y>
1247    </hint>
1248    <hint type="destinationlabel">
1249     <x>346</x>
1250     <y>246</y>
1251    </hint>
1252   </hints>
1253  </connection>
1254 </connections>
1255</ui>
1256