ccnotepad.ui 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>CCNotePad</class>
  4. <widget class="QMainWindow" name="CCNotePad">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>1585</width>
  10. <height>789</height>
  11. </rect>
  12. </property>
  13. <property name="font">
  14. <font>
  15. <family>Microsoft YaHei</family>
  16. <pointsize>12</pointsize>
  17. </font>
  18. </property>
  19. <property name="windowTitle">
  20. <string>notepad--</string>
  21. </property>
  22. <property name="windowIcon">
  23. <iconset resource="../RealCompare.qrc">
  24. <normaloff>:/Resources/edit/global/ndd.ico</normaloff>:/Resources/edit/global/ndd.ico</iconset>
  25. </property>
  26. <widget class="QWidget" name="centralWidget">
  27. <layout class="QHBoxLayout" name="horizontalLayout">
  28. <property name="spacing">
  29. <number>0</number>
  30. </property>
  31. <property name="leftMargin">
  32. <number>1</number>
  33. </property>
  34. <property name="topMargin">
  35. <number>0</number>
  36. </property>
  37. <property name="rightMargin">
  38. <number>0</number>
  39. </property>
  40. <property name="bottomMargin">
  41. <number>0</number>
  42. </property>
  43. <item>
  44. <widget class="QTabWidget" name="editTabWidget">
  45. <property name="font">
  46. <font>
  47. <family>Microsoft YaHei</family>
  48. <pointsize>10</pointsize>
  49. </font>
  50. </property>
  51. <property name="currentIndex">
  52. <number>-1</number>
  53. </property>
  54. <property name="iconSize">
  55. <size>
  56. <width>22</width>
  57. <height>22</height>
  58. </size>
  59. </property>
  60. <property name="elideMode">
  61. <enum>Qt::ElideNone</enum>
  62. </property>
  63. <property name="usesScrollButtons">
  64. <bool>true</bool>
  65. </property>
  66. <property name="tabsClosable">
  67. <bool>true</bool>
  68. </property>
  69. <property name="movable">
  70. <bool>true</bool>
  71. </property>
  72. </widget>
  73. </item>
  74. </layout>
  75. </widget>
  76. <widget class="QMenuBar" name="menuBar">
  77. <property name="geometry">
  78. <rect>
  79. <x>0</x>
  80. <y>0</y>
  81. <width>1585</width>
  82. <height>23</height>
  83. </rect>
  84. </property>
  85. <widget class="QMenu" name="menuFile">
  86. <property name="layoutDirection">
  87. <enum>Qt::LeftToRight</enum>
  88. </property>
  89. <property name="title">
  90. <string>File</string>
  91. </property>
  92. <addaction name="actionNewFile"/>
  93. <addaction name="actionOpenFile"/>
  94. <addaction name="actionSave"/>
  95. <addaction name="actionSave_as"/>
  96. <addaction name="actionClose"/>
  97. <addaction name="actionClose_All"/>
  98. <addaction name="separator"/>
  99. </widget>
  100. <widget class="QMenu" name="menuEdit">
  101. <property name="layoutDirection">
  102. <enum>Qt::LeftToRight</enum>
  103. </property>
  104. <property name="title">
  105. <string>Edit</string>
  106. </property>
  107. <widget class="QMenu" name="menuformat_conversion">
  108. <property name="title">
  109. <string>Format Conversion</string>
  110. </property>
  111. <addaction name="actionconver_windows_CR_LF"/>
  112. <addaction name="actionconvert_Unix_LF"/>
  113. <addaction name="actionconvert_Mac_CR"/>
  114. </widget>
  115. <widget class="QMenu" name="menuBlank_CharOperate">
  116. <property name="title">
  117. <string>Blank CharOperate</string>
  118. </property>
  119. <addaction name="actionRemove_leading_blank"/>
  120. <addaction name="actionRemove_eding_blank"/>
  121. <addaction name="actionRemove_Head_End_Blank"/>
  122. </widget>
  123. <addaction name="actionundo"/>
  124. <addaction name="actionredo"/>
  125. <addaction name="separator"/>
  126. <addaction name="actioncut"/>
  127. <addaction name="actioncopy"/>
  128. <addaction name="actionpaste"/>
  129. <addaction name="separator"/>
  130. <addaction name="actionselect_All"/>
  131. <addaction name="menuformat_conversion"/>
  132. <addaction name="separator"/>
  133. <addaction name="actionOpen_In_Text"/>
  134. <addaction name="actionOpen_In_Bin"/>
  135. <addaction name="menuBlank_CharOperate"/>
  136. <addaction name="actionColumn_Block_Editing"/>
  137. </widget>
  138. <widget class="QMenu" name="menuSearch">
  139. <property name="title">
  140. <string>Search</string>
  141. </property>
  142. <addaction name="actionFind"/>
  143. <addaction name="actionReplace"/>
  144. <addaction name="actionGoline"/>
  145. </widget>
  146. <widget class="QMenu" name="menuView">
  147. <property name="title">
  148. <string>View</string>
  149. </property>
  150. <widget class="QMenu" name="menudisplay_symbols">
  151. <property name="title">
  152. <string>Display symbols</string>
  153. </property>
  154. <addaction name="actionshow_Spaces_tabs"/>
  155. <addaction name="actionshow_end_of_line"/>
  156. <addaction name="actionshow_all"/>
  157. </widget>
  158. <addaction name="menudisplay_symbols"/>
  159. <addaction name="actionSearch_Result"/>
  160. <addaction name="actionWrap"/>
  161. </widget>
  162. <widget class="QMenu" name="menuCode">
  163. <property name="title">
  164. <string>Encoding</string>
  165. </property>
  166. <addaction name="actionencode_in_GBK"/>
  167. <addaction name="actionencode_in_uft8"/>
  168. <addaction name="actionencode_in_UTF8_BOM"/>
  169. <addaction name="actionencode_in_UCS_BE_BOM"/>
  170. <addaction name="actionencode_in_UCS_2_LE_BOM"/>
  171. <addaction name="separator"/>
  172. <addaction name="actionconvert_to_GBK"/>
  173. <addaction name="actionconvert_to_UTF8"/>
  174. <addaction name="actionconvert_to_UTF8_BOM"/>
  175. <addaction name="actionconvert_to_UCS_2_BE_BOM"/>
  176. <addaction name="actionconvert_to_UCS_2_LE_BOM"/>
  177. <addaction name="actionbatch_convert"/>
  178. </widget>
  179. <widget class="QMenu" name="menuLanguage">
  180. <property name="title">
  181. <string>Language</string>
  182. </property>
  183. <widget class="QMenu" name="menuP">
  184. <property name="title">
  185. <string>P</string>
  186. </property>
  187. <addaction name="actionPascal"/>
  188. <addaction name="actionPerl"/>
  189. <addaction name="actionPhp"/>
  190. <addaction name="actionPo"/>
  191. <addaction name="actionPostScript"/>
  192. <addaction name="actionPov"/>
  193. <addaction name="actionPowerShell"/>
  194. <addaction name="actionProperties_file"/>
  195. <addaction name="actionPureBasic"/>
  196. <addaction name="actionPython"/>
  197. </widget>
  198. <widget class="QMenu" name="menuC">
  199. <property name="title">
  200. <string>C</string>
  201. </property>
  202. <addaction name="actionC"/>
  203. <addaction name="actionCPP"/>
  204. <addaction name="actionCShape"/>
  205. <addaction name="actionObjective_C"/>
  206. <addaction name="actionCss"/>
  207. <addaction name="actionCMake"/>
  208. <addaction name="actionCoffeeScript"/>
  209. <addaction name="actionCsound"/>
  210. </widget>
  211. <widget class="QMenu" name="menuJ">
  212. <property name="title">
  213. <string>J</string>
  214. </property>
  215. <addaction name="actionJava"/>
  216. <addaction name="actionJavaScript"/>
  217. <addaction name="actionJsp"/>
  218. <addaction name="actionjson"/>
  219. </widget>
  220. <widget class="QMenu" name="menuR">
  221. <property name="title">
  222. <string>R</string>
  223. </property>
  224. <addaction name="actionRC"/>
  225. <addaction name="actionRuby"/>
  226. <addaction name="actionRust"/>
  227. <addaction name="actionRegistry"/>
  228. <addaction name="actionREBOL"/>
  229. </widget>
  230. <widget class="QMenu" name="menuH">
  231. <property name="title">
  232. <string>H</string>
  233. </property>
  234. <addaction name="actionHTML"/>
  235. </widget>
  236. <widget class="QMenu" name="menuM">
  237. <property name="title">
  238. <string>M</string>
  239. </property>
  240. <addaction name="actionMakefile"/>
  241. <addaction name="actionMMIXAL"/>
  242. <addaction name="actionMarkDown_2"/>
  243. <addaction name="actionMatlab"/>
  244. </widget>
  245. <widget class="QMenu" name="menuB">
  246. <property name="title">
  247. <string>B</string>
  248. </property>
  249. <addaction name="actionBaanC"/>
  250. <addaction name="actionbash"/>
  251. <addaction name="actionBatch"/>
  252. <addaction name="actionBlitzBasic"/>
  253. </widget>
  254. <widget class="QMenu" name="menuI">
  255. <property name="title">
  256. <string>I</string>
  257. </property>
  258. <addaction name="actionIDL"/>
  259. <addaction name="actionini"/>
  260. <addaction name="actionIntel_HEX"/>
  261. </widget>
  262. <widget class="QMenu" name="menuN">
  263. <property name="title">
  264. <string>N</string>
  265. </property>
  266. <addaction name="actionNfo"/>
  267. <addaction name="actionNSIS"/>
  268. <addaction name="actionNncrontab"/>
  269. <addaction name="actionNim"/>
  270. </widget>
  271. <widget class="QMenu" name="menuA">
  272. <property name="title">
  273. <string>A</string>
  274. </property>
  275. <addaction name="actionASP"/>
  276. <addaction name="actionActionScript"/>
  277. <addaction name="actionAssembly"/>
  278. <addaction name="actionAutoIt"/>
  279. <addaction name="actionAviSynth"/>
  280. <addaction name="actionASN1"/>
  281. <addaction name="actionAVS"/>
  282. </widget>
  283. <widget class="QMenu" name="menuS">
  284. <property name="title">
  285. <string>S</string>
  286. </property>
  287. <addaction name="actionSql"/>
  288. <addaction name="actionShell"/>
  289. <addaction name="actionScheme"/>
  290. <addaction name="actionSmalltalk"/>
  291. <addaction name="actionS_Record"/>
  292. <addaction name="actionSwift"/>
  293. <addaction name="actionSpice"/>
  294. </widget>
  295. <widget class="QMenu" name="menuV">
  296. <property name="title">
  297. <string>V</string>
  298. </property>
  299. <addaction name="actionVerilog"/>
  300. <addaction name="actionVirsual_Basic"/>
  301. <addaction name="actionVHDL"/>
  302. <addaction name="actionVisual_Prolog"/>
  303. </widget>
  304. <widget class="QMenu" name="menuL">
  305. <property name="title">
  306. <string>L</string>
  307. </property>
  308. <addaction name="actionLua"/>
  309. <addaction name="actionLisp"/>
  310. <addaction name="actionLaTex"/>
  311. </widget>
  312. <widget class="QMenu" name="menuT">
  313. <property name="title">
  314. <string>T</string>
  315. </property>
  316. <addaction name="actionTex"/>
  317. <addaction name="actionTcl"/>
  318. <addaction name="actionTypeScript"/>
  319. <addaction name="actionTxt2tags"/>
  320. </widget>
  321. <widget class="QMenu" name="menuF">
  322. <property name="title">
  323. <string>F</string>
  324. </property>
  325. <addaction name="actionFortran"/>
  326. <addaction name="actionFortran77"/>
  327. <addaction name="actionForth"/>
  328. <addaction name="actionFreeBasic"/>
  329. </widget>
  330. <widget class="QMenu" name="menuD">
  331. <property name="title">
  332. <string>D</string>
  333. </property>
  334. <addaction name="actionD_2"/>
  335. <addaction name="actionDiff"/>
  336. </widget>
  337. <widget class="QMenu" name="menuO">
  338. <property name="title">
  339. <string>O</string>
  340. </property>
  341. <addaction name="actionOScript"/>
  342. <addaction name="actionOctave"/>
  343. </widget>
  344. <widget class="QMenu" name="menuE">
  345. <property name="title">
  346. <string>E</string>
  347. </property>
  348. <addaction name="actionESCRIPT"/>
  349. <addaction name="actionErlang"/>
  350. <addaction name="actionEdifact"/>
  351. </widget>
  352. <widget class="QMenu" name="menuG">
  353. <property name="title">
  354. <string>G</string>
  355. </property>
  356. <addaction name="actionGo"/>
  357. </widget>
  358. <addaction name="menuA"/>
  359. <addaction name="menuB"/>
  360. <addaction name="menuC"/>
  361. <addaction name="menuD"/>
  362. <addaction name="menuE"/>
  363. <addaction name="menuF"/>
  364. <addaction name="menuG"/>
  365. <addaction name="menuH"/>
  366. <addaction name="menuI"/>
  367. <addaction name="menuJ"/>
  368. <addaction name="menuL"/>
  369. <addaction name="menuM"/>
  370. <addaction name="menuN"/>
  371. <addaction name="menuO"/>
  372. <addaction name="menuP"/>
  373. <addaction name="menuR"/>
  374. <addaction name="menuS"/>
  375. <addaction name="menuT"/>
  376. <addaction name="menuV"/>
  377. <addaction name="actionXML"/>
  378. <addaction name="actionYAML"/>
  379. <addaction name="actionTxt"/>
  380. </widget>
  381. <widget class="QMenu" name="menuSet">
  382. <property name="title">
  383. <string>Set</string>
  384. </property>
  385. <widget class="QMenu" name="menuStyle">
  386. <property name="title">
  387. <string>Style</string>
  388. </property>
  389. <addaction name="actionDefaultStyle"/>
  390. <addaction name="actionLightBlueStyle"/>
  391. <addaction name="actionThinBlue"/>
  392. <addaction name="actionYellow"/>
  393. <addaction name="actionRiceYellow"/>
  394. <addaction name="actionSilver"/>
  395. <addaction name="actionLavenderBlush"/>
  396. <addaction name="actionMistyRose"/>
  397. </widget>
  398. <widget class="QMenu" name="menuLanguage_2">
  399. <property name="title">
  400. <string>Language</string>
  401. </property>
  402. <addaction name="actionChinese"/>
  403. <addaction name="actionEnglish"/>
  404. </widget>
  405. <addaction name="actionOptions"/>
  406. <addaction name="menuStyle"/>
  407. <addaction name="menuLanguage_2"/>
  408. <addaction name="actionLanguage_Format"/>
  409. </widget>
  410. <widget class="QMenu" name="menuAbout">
  411. <property name="title">
  412. <string>Feedback</string>
  413. </property>
  414. <addaction name="actionDonate"/>
  415. <addaction name="actionCC_Pad"/>
  416. <addaction name="actionRegister"/>
  417. </widget>
  418. <addaction name="menuFile"/>
  419. <addaction name="menuEdit"/>
  420. <addaction name="menuSearch"/>
  421. <addaction name="menuView"/>
  422. <addaction name="menuCode"/>
  423. <addaction name="menuLanguage"/>
  424. <addaction name="menuSet"/>
  425. <addaction name="menuAbout"/>
  426. </widget>
  427. <widget class="QToolBar" name="mainToolBar">
  428. <property name="movable">
  429. <bool>false</bool>
  430. </property>
  431. <property name="floatable">
  432. <bool>true</bool>
  433. </property>
  434. <attribute name="toolBarArea">
  435. <enum>TopToolBarArea</enum>
  436. </attribute>
  437. <attribute name="toolBarBreak">
  438. <bool>false</bool>
  439. </attribute>
  440. </widget>
  441. <widget class="QStatusBar" name="statusBar"/>
  442. <action name="actionNewFile">
  443. <property name="text">
  444. <string>New</string>
  445. </property>
  446. <property name="shortcut">
  447. <string>Ctrl+N</string>
  448. </property>
  449. </action>
  450. <action name="actionOpenFile">
  451. <property name="text">
  452. <string>Open ...</string>
  453. </property>
  454. <property name="shortcut">
  455. <string>Ctrl+O</string>
  456. </property>
  457. </action>
  458. <action name="actionSave">
  459. <property name="text">
  460. <string>Save</string>
  461. </property>
  462. <property name="shortcut">
  463. <string>Ctrl+S</string>
  464. </property>
  465. </action>
  466. <action name="actionSave_as">
  467. <property name="text">
  468. <string>Save As ...</string>
  469. </property>
  470. <property name="shortcut">
  471. <string>Ctrl+Alt+S</string>
  472. </property>
  473. </action>
  474. <action name="actionClose">
  475. <property name="text">
  476. <string>Close</string>
  477. </property>
  478. <property name="shortcut">
  479. <string>Ctrl+W</string>
  480. </property>
  481. </action>
  482. <action name="actionExit">
  483. <property name="text">
  484. <string>Exit</string>
  485. </property>
  486. <property name="shortcut">
  487. <string>Ctrl+Q</string>
  488. </property>
  489. </action>
  490. <action name="actionClose_All">
  491. <property name="text">
  492. <string>Close All</string>
  493. </property>
  494. <property name="shortcut">
  495. <string>Ctrl+Shift+W</string>
  496. </property>
  497. </action>
  498. <action name="actionundo">
  499. <property name="text">
  500. <string>Undo</string>
  501. </property>
  502. <property name="shortcut">
  503. <string>Ctrl+Z</string>
  504. </property>
  505. </action>
  506. <action name="actionredo">
  507. <property name="text">
  508. <string>Redo</string>
  509. </property>
  510. <property name="shortcut">
  511. <string>Ctrl+Y</string>
  512. </property>
  513. </action>
  514. <action name="actioncut">
  515. <property name="text">
  516. <string>Cut</string>
  517. </property>
  518. <property name="shortcut">
  519. <string>Ctrl+X</string>
  520. </property>
  521. </action>
  522. <action name="actioncopy">
  523. <property name="text">
  524. <string>Copy</string>
  525. </property>
  526. <property name="shortcut">
  527. <string>Ctrl+C</string>
  528. </property>
  529. </action>
  530. <action name="actionpaste">
  531. <property name="text">
  532. <string>Paste</string>
  533. </property>
  534. <property name="shortcut">
  535. <string>Ctrl+V</string>
  536. </property>
  537. </action>
  538. <action name="actionselect_All">
  539. <property name="text">
  540. <string>Select All</string>
  541. </property>
  542. <property name="shortcut">
  543. <string>Ctrl+A</string>
  544. </property>
  545. </action>
  546. <action name="actionconver_windows_CR_LF">
  547. <property name="checkable">
  548. <bool>true</bool>
  549. </property>
  550. <property name="text">
  551. <string>Windows(CR+LF)</string>
  552. </property>
  553. </action>
  554. <action name="actionconvert_Unix_LF">
  555. <property name="checkable">
  556. <bool>true</bool>
  557. </property>
  558. <property name="text">
  559. <string>Unix(LF)</string>
  560. </property>
  561. </action>
  562. <action name="actionconvert_Mac_CR">
  563. <property name="checkable">
  564. <bool>true</bool>
  565. </property>
  566. <property name="text">
  567. <string>Mac(CR)</string>
  568. </property>
  569. </action>
  570. <action name="actionFind">
  571. <property name="text">
  572. <string>Find</string>
  573. </property>
  574. <property name="shortcut">
  575. <string>Ctrl+F</string>
  576. </property>
  577. </action>
  578. <action name="actionReplace">
  579. <property name="text">
  580. <string>Replace</string>
  581. </property>
  582. <property name="shortcut">
  583. <string>Ctrl+R</string>
  584. </property>
  585. </action>
  586. <action name="actionGoline">
  587. <property name="text">
  588. <string>Go line</string>
  589. </property>
  590. <property name="shortcut">
  591. <string>Ctrl+G</string>
  592. </property>
  593. </action>
  594. <action name="actionshow_Spaces_tabs">
  595. <property name="checkable">
  596. <bool>true</bool>
  597. </property>
  598. <property name="text">
  599. <string>Show spaces/tabs</string>
  600. </property>
  601. </action>
  602. <action name="actionshow_end_of_line">
  603. <property name="checkable">
  604. <bool>true</bool>
  605. </property>
  606. <property name="text">
  607. <string>Show end of line</string>
  608. </property>
  609. </action>
  610. <action name="actionshow_all">
  611. <property name="checkable">
  612. <bool>true</bool>
  613. </property>
  614. <property name="text">
  615. <string>Show all</string>
  616. </property>
  617. </action>
  618. <action name="actionencode_in_GBK">
  619. <property name="checkable">
  620. <bool>true</bool>
  621. </property>
  622. <property name="text">
  623. <string>Encode in GBK</string>
  624. </property>
  625. </action>
  626. <action name="actionencode_in_uft8">
  627. <property name="checkable">
  628. <bool>true</bool>
  629. </property>
  630. <property name="text">
  631. <string>Encode in UTF8</string>
  632. </property>
  633. </action>
  634. <action name="actionencode_in_UTF8_BOM">
  635. <property name="checkable">
  636. <bool>true</bool>
  637. </property>
  638. <property name="text">
  639. <string>Encode in UTF8-BOM</string>
  640. </property>
  641. </action>
  642. <action name="actionencode_in_UCS_BE_BOM">
  643. <property name="checkable">
  644. <bool>true</bool>
  645. </property>
  646. <property name="text">
  647. <string>Encode in UCS-2 BE BOM</string>
  648. </property>
  649. </action>
  650. <action name="actionencode_in_UCS_2_LE_BOM">
  651. <property name="checkable">
  652. <bool>true</bool>
  653. </property>
  654. <property name="text">
  655. <string>Encode in UCS-2 LE BOM</string>
  656. </property>
  657. </action>
  658. <action name="actionconvert_to_GBK">
  659. <property name="text">
  660. <string>Convert to GBK</string>
  661. </property>
  662. </action>
  663. <action name="actionconvert_to_UTF8">
  664. <property name="text">
  665. <string>Convert to UTF8</string>
  666. </property>
  667. </action>
  668. <action name="actionconvert_to_UTF8_BOM">
  669. <property name="text">
  670. <string>Convert to UTF8-BOM</string>
  671. </property>
  672. </action>
  673. <action name="actionconvert_to_UCS_2_BE_BOM">
  674. <property name="text">
  675. <string>Convert to UCS-2 BE BOM</string>
  676. </property>
  677. </action>
  678. <action name="actionconvert_to_UCS_2_LE_BOM">
  679. <property name="text">
  680. <string>Convert to UCS-2 LE BOM</string>
  681. </property>
  682. </action>
  683. <action name="actionbatch_convert">
  684. <property name="text">
  685. <string>Batch convert</string>
  686. </property>
  687. </action>
  688. <action name="actionOptions">
  689. <property name="text">
  690. <string>Options</string>
  691. </property>
  692. </action>
  693. <action name="actionCC_Pad">
  694. <property name="text">
  695. <string>BugFix</string>
  696. </property>
  697. </action>
  698. <action name="actionFile_compare">
  699. <property name="text">
  700. <string>File compare</string>
  701. </property>
  702. </action>
  703. <action name="actionDir_compare">
  704. <property name="text">
  705. <string>Dir compare</string>
  706. </property>
  707. </action>
  708. <action name="actionR">
  709. <property name="text">
  710. <string>R</string>
  711. </property>
  712. </action>
  713. <action name="actionXML">
  714. <property name="checkable">
  715. <bool>true</bool>
  716. </property>
  717. <property name="text">
  718. <string>XML</string>
  719. </property>
  720. </action>
  721. <action name="actionYAML">
  722. <property name="checkable">
  723. <bool>true</bool>
  724. </property>
  725. <property name="text">
  726. <string>YAML</string>
  727. </property>
  728. </action>
  729. <action name="actionPhp">
  730. <property name="checkable">
  731. <bool>true</bool>
  732. </property>
  733. <property name="text">
  734. <string>Php</string>
  735. </property>
  736. </action>
  737. <action name="actionC">
  738. <property name="checkable">
  739. <bool>true</bool>
  740. </property>
  741. <property name="text">
  742. <string>C</string>
  743. </property>
  744. </action>
  745. <action name="actionCPP">
  746. <property name="checkable">
  747. <bool>true</bool>
  748. </property>
  749. <property name="text">
  750. <string>C++</string>
  751. </property>
  752. </action>
  753. <action name="actionCShape">
  754. <property name="checkable">
  755. <bool>true</bool>
  756. </property>
  757. <property name="text">
  758. <string>C#</string>
  759. </property>
  760. </action>
  761. <action name="actionObjective_C">
  762. <property name="checkable">
  763. <bool>true</bool>
  764. </property>
  765. <property name="text">
  766. <string>Objective C</string>
  767. </property>
  768. </action>
  769. <action name="actionJava">
  770. <property name="checkable">
  771. <bool>true</bool>
  772. </property>
  773. <property name="text">
  774. <string>Java</string>
  775. </property>
  776. </action>
  777. <action name="actionRC">
  778. <property name="checkable">
  779. <bool>true</bool>
  780. </property>
  781. <property name="text">
  782. <string>RC</string>
  783. </property>
  784. </action>
  785. <action name="actionHTML">
  786. <property name="checkable">
  787. <bool>true</bool>
  788. </property>
  789. <property name="text">
  790. <string>HTML</string>
  791. </property>
  792. </action>
  793. <action name="actionMakefile">
  794. <property name="checkable">
  795. <bool>true</bool>
  796. </property>
  797. <property name="text">
  798. <string>Makefile</string>
  799. </property>
  800. </action>
  801. <action name="actionPascal">
  802. <property name="checkable">
  803. <bool>true</bool>
  804. </property>
  805. <property name="text">
  806. <string>Pascal</string>
  807. </property>
  808. </action>
  809. <action name="actionBatch">
  810. <property name="checkable">
  811. <bool>true</bool>
  812. </property>
  813. <property name="text">
  814. <string>Batch</string>
  815. </property>
  816. </action>
  817. <action name="actionini">
  818. <property name="checkable">
  819. <bool>true</bool>
  820. </property>
  821. <property name="text">
  822. <string>ini</string>
  823. </property>
  824. </action>
  825. <action name="actionNfo">
  826. <property name="checkable">
  827. <bool>true</bool>
  828. </property>
  829. <property name="text">
  830. <string>Nfo</string>
  831. </property>
  832. </action>
  833. <action name="actionASP">
  834. <property name="checkable">
  835. <bool>true</bool>
  836. </property>
  837. <property name="text">
  838. <string>Asp</string>
  839. </property>
  840. </action>
  841. <action name="actionSql">
  842. <property name="checkable">
  843. <bool>true</bool>
  844. </property>
  845. <property name="text">
  846. <string>Sql</string>
  847. </property>
  848. </action>
  849. <action name="actionVirsual_Basic">
  850. <property name="checkable">
  851. <bool>true</bool>
  852. </property>
  853. <property name="text">
  854. <string>Virsual Basic</string>
  855. </property>
  856. </action>
  857. <action name="actionJavaScript">
  858. <property name="checkable">
  859. <bool>true</bool>
  860. </property>
  861. <property name="text">
  862. <string>JavaScript</string>
  863. </property>
  864. </action>
  865. <action name="actionCss">
  866. <property name="checkable">
  867. <bool>true</bool>
  868. </property>
  869. <property name="text">
  870. <string>Css</string>
  871. </property>
  872. </action>
  873. <action name="actionPerl">
  874. <property name="checkable">
  875. <bool>true</bool>
  876. </property>
  877. <property name="text">
  878. <string>Perl</string>
  879. </property>
  880. </action>
  881. <action name="actionPython">
  882. <property name="checkable">
  883. <bool>true</bool>
  884. </property>
  885. <property name="text">
  886. <string>Python</string>
  887. </property>
  888. </action>
  889. <action name="actionLua">
  890. <property name="checkable">
  891. <bool>true</bool>
  892. </property>
  893. <property name="text">
  894. <string>Lua</string>
  895. </property>
  896. </action>
  897. <action name="actionTex">
  898. <property name="checkable">
  899. <bool>true</bool>
  900. </property>
  901. <property name="text">
  902. <string>Tex</string>
  903. </property>
  904. </action>
  905. <action name="actionFortran">
  906. <property name="checkable">
  907. <bool>true</bool>
  908. </property>
  909. <property name="text">
  910. <string>Fortran</string>
  911. </property>
  912. </action>
  913. <action name="actionShell">
  914. <property name="checkable">
  915. <bool>true</bool>
  916. </property>
  917. <property name="text">
  918. <string>Shell</string>
  919. </property>
  920. </action>
  921. <action name="actionActionScript">
  922. <property name="checkable">
  923. <bool>true</bool>
  924. </property>
  925. <property name="text">
  926. <string>ActionScript</string>
  927. </property>
  928. </action>
  929. <action name="actionNSIS">
  930. <property name="checkable">
  931. <bool>true</bool>
  932. </property>
  933. <property name="text">
  934. <string>NSIS</string>
  935. </property>
  936. </action>
  937. <action name="actionTcl">
  938. <property name="checkable">
  939. <bool>true</bool>
  940. </property>
  941. <property name="text">
  942. <string>Tcl</string>
  943. </property>
  944. </action>
  945. <action name="actionLisp">
  946. <property name="checkable">
  947. <bool>true</bool>
  948. </property>
  949. <property name="text">
  950. <string>Lisp</string>
  951. </property>
  952. </action>
  953. <action name="actionScheme">
  954. <property name="checkable">
  955. <bool>true</bool>
  956. </property>
  957. <property name="text">
  958. <string>Scheme</string>
  959. </property>
  960. </action>
  961. <action name="actionAssembly">
  962. <property name="checkable">
  963. <bool>true</bool>
  964. </property>
  965. <property name="text">
  966. <string>Assembly</string>
  967. </property>
  968. </action>
  969. <action name="actionD">
  970. <property name="text">
  971. <string>D</string>
  972. </property>
  973. </action>
  974. <action name="actionDiff">
  975. <property name="checkable">
  976. <bool>true</bool>
  977. </property>
  978. <property name="text">
  979. <string>Diff</string>
  980. </property>
  981. </action>
  982. <action name="actionProperties_file">
  983. <property name="checkable">
  984. <bool>true</bool>
  985. </property>
  986. <property name="text">
  987. <string>Properties file</string>
  988. </property>
  989. </action>
  990. <action name="actionPostScript">
  991. <property name="checkable">
  992. <bool>true</bool>
  993. </property>
  994. <property name="text">
  995. <string>PostScript</string>
  996. </property>
  997. </action>
  998. <action name="actionRuby">
  999. <property name="checkable">
  1000. <bool>true</bool>
  1001. </property>
  1002. <property name="text">
  1003. <string>Ruby</string>
  1004. </property>
  1005. </action>
  1006. <action name="actionSmalltalk">
  1007. <property name="checkable">
  1008. <bool>true</bool>
  1009. </property>
  1010. <property name="text">
  1011. <string>Smalltalk</string>
  1012. </property>
  1013. </action>
  1014. <action name="actionVHDL">
  1015. <property name="checkable">
  1016. <bool>true</bool>
  1017. </property>
  1018. <property name="text">
  1019. <string>VHDL</string>
  1020. </property>
  1021. </action>
  1022. <action name="actionAutoIt">
  1023. <property name="checkable">
  1024. <bool>true</bool>
  1025. </property>
  1026. <property name="text">
  1027. <string>AutoIt</string>
  1028. </property>
  1029. </action>
  1030. <action name="actionCMake">
  1031. <property name="checkable">
  1032. <bool>true</bool>
  1033. </property>
  1034. <property name="text">
  1035. <string>CMake</string>
  1036. </property>
  1037. </action>
  1038. <action name="actionPowerShell">
  1039. <property name="checkable">
  1040. <bool>true</bool>
  1041. </property>
  1042. <property name="text">
  1043. <string>PowerShell</string>
  1044. </property>
  1045. </action>
  1046. <action name="actionJsp">
  1047. <property name="checkable">
  1048. <bool>true</bool>
  1049. </property>
  1050. <property name="text">
  1051. <string>Jsp</string>
  1052. </property>
  1053. </action>
  1054. <action name="actionCoffeeScript">
  1055. <property name="checkable">
  1056. <bool>true</bool>
  1057. </property>
  1058. <property name="text">
  1059. <string>CoffeeScript</string>
  1060. </property>
  1061. </action>
  1062. <action name="actionBaanC">
  1063. <property name="checkable">
  1064. <bool>true</bool>
  1065. </property>
  1066. <property name="text">
  1067. <string>BaanC</string>
  1068. </property>
  1069. </action>
  1070. <action name="actionS_Record">
  1071. <property name="checkable">
  1072. <bool>true</bool>
  1073. </property>
  1074. <property name="text">
  1075. <string>S-Record</string>
  1076. </property>
  1077. </action>
  1078. <action name="actionTypeScript">
  1079. <property name="checkable">
  1080. <bool>true</bool>
  1081. </property>
  1082. <property name="text">
  1083. <string>TypeScript</string>
  1084. </property>
  1085. </action>
  1086. <action name="actionVisual_Prolog">
  1087. <property name="checkable">
  1088. <bool>true</bool>
  1089. </property>
  1090. <property name="text">
  1091. <string>Visual Prolog</string>
  1092. </property>
  1093. </action>
  1094. <action name="actionTxt2tags">
  1095. <property name="checkable">
  1096. <bool>true</bool>
  1097. </property>
  1098. <property name="text">
  1099. <string>Txt2tags</string>
  1100. </property>
  1101. </action>
  1102. <action name="actionRust">
  1103. <property name="checkable">
  1104. <bool>true</bool>
  1105. </property>
  1106. <property name="text">
  1107. <string>Rust</string>
  1108. </property>
  1109. </action>
  1110. <action name="actionRegistry">
  1111. <property name="checkable">
  1112. <bool>true</bool>
  1113. </property>
  1114. <property name="text">
  1115. <string>Registry</string>
  1116. </property>
  1117. </action>
  1118. <action name="actionREBOL">
  1119. <property name="checkable">
  1120. <bool>true</bool>
  1121. </property>
  1122. <property name="text">
  1123. <string>REBOL</string>
  1124. </property>
  1125. </action>
  1126. <action name="actionOScript">
  1127. <property name="checkable">
  1128. <bool>true</bool>
  1129. </property>
  1130. <property name="text">
  1131. <string>OScript</string>
  1132. </property>
  1133. </action>
  1134. <action name="actionNncrontab">
  1135. <property name="checkable">
  1136. <bool>true</bool>
  1137. </property>
  1138. <property name="text">
  1139. <string>Nncrontab</string>
  1140. </property>
  1141. </action>
  1142. <action name="actionNim">
  1143. <property name="checkable">
  1144. <bool>true</bool>
  1145. </property>
  1146. <property name="text">
  1147. <string>Nim</string>
  1148. </property>
  1149. </action>
  1150. <action name="actionMMIXAL">
  1151. <property name="checkable">
  1152. <bool>true</bool>
  1153. </property>
  1154. <property name="text">
  1155. <string>MMIXAL</string>
  1156. </property>
  1157. </action>
  1158. <action name="actionLaTex">
  1159. <property name="checkable">
  1160. <bool>true</bool>
  1161. </property>
  1162. <property name="text">
  1163. <string>LaTex</string>
  1164. </property>
  1165. </action>
  1166. <action name="actionForth">
  1167. <property name="checkable">
  1168. <bool>true</bool>
  1169. </property>
  1170. <property name="text">
  1171. <string>Forth</string>
  1172. </property>
  1173. </action>
  1174. <action name="actionESCRIPT">
  1175. <property name="checkable">
  1176. <bool>true</bool>
  1177. </property>
  1178. <property name="text">
  1179. <string>ESCRIPT</string>
  1180. </property>
  1181. </action>
  1182. <action name="actionErlang">
  1183. <property name="checkable">
  1184. <bool>true</bool>
  1185. </property>
  1186. <property name="text">
  1187. <string>Erlang</string>
  1188. </property>
  1189. </action>
  1190. <action name="actionCsound">
  1191. <property name="checkable">
  1192. <bool>true</bool>
  1193. </property>
  1194. <property name="text">
  1195. <string>Csound</string>
  1196. </property>
  1197. </action>
  1198. <action name="actionFreeBasic">
  1199. <property name="checkable">
  1200. <bool>true</bool>
  1201. </property>
  1202. <property name="text">
  1203. <string>FreeBasic</string>
  1204. </property>
  1205. </action>
  1206. <action name="actionBlitzBasic">
  1207. <property name="checkable">
  1208. <bool>true</bool>
  1209. </property>
  1210. <property name="text">
  1211. <string>BlitzBasic</string>
  1212. </property>
  1213. </action>
  1214. <action name="actionPureBasic">
  1215. <property name="checkable">
  1216. <bool>true</bool>
  1217. </property>
  1218. <property name="text">
  1219. <string>PureBasic</string>
  1220. </property>
  1221. </action>
  1222. <action name="actionAviSynth">
  1223. <property name="checkable">
  1224. <bool>true</bool>
  1225. </property>
  1226. <property name="text">
  1227. <string>AviSynth</string>
  1228. </property>
  1229. </action>
  1230. <action name="actionASN1">
  1231. <property name="checkable">
  1232. <bool>true</bool>
  1233. </property>
  1234. <property name="text">
  1235. <string>ASN.1</string>
  1236. </property>
  1237. </action>
  1238. <action name="actionSwift">
  1239. <property name="checkable">
  1240. <bool>true</bool>
  1241. </property>
  1242. <property name="text">
  1243. <string>Swift</string>
  1244. </property>
  1245. </action>
  1246. <action name="actionIntel_HEX">
  1247. <property name="checkable">
  1248. <bool>true</bool>
  1249. </property>
  1250. <property name="text">
  1251. <string>Intel HEX</string>
  1252. </property>
  1253. </action>
  1254. <action name="actionFortran77">
  1255. <property name="checkable">
  1256. <bool>true</bool>
  1257. </property>
  1258. <property name="text">
  1259. <string>Fortran77</string>
  1260. </property>
  1261. </action>
  1262. <action name="actionEdifact">
  1263. <property name="checkable">
  1264. <bool>true</bool>
  1265. </property>
  1266. <property name="text">
  1267. <string>Edifact</string>
  1268. </property>
  1269. </action>
  1270. <action name="actionMarkDown">
  1271. <property name="text">
  1272. <string>MarkDown</string>
  1273. </property>
  1274. </action>
  1275. <action name="actionMarkDown_2">
  1276. <property name="checkable">
  1277. <bool>true</bool>
  1278. </property>
  1279. <property name="text">
  1280. <string>MarkDown</string>
  1281. </property>
  1282. </action>
  1283. <action name="actionOctave">
  1284. <property name="checkable">
  1285. <bool>true</bool>
  1286. </property>
  1287. <property name="text">
  1288. <string>Octave</string>
  1289. </property>
  1290. </action>
  1291. <action name="actionPo">
  1292. <property name="checkable">
  1293. <bool>true</bool>
  1294. </property>
  1295. <property name="text">
  1296. <string>Po</string>
  1297. </property>
  1298. </action>
  1299. <action name="actionPov">
  1300. <property name="checkable">
  1301. <bool>true</bool>
  1302. </property>
  1303. <property name="text">
  1304. <string>Pov</string>
  1305. </property>
  1306. </action>
  1307. <action name="actionjson">
  1308. <property name="checkable">
  1309. <bool>true</bool>
  1310. </property>
  1311. <property name="text">
  1312. <string>json</string>
  1313. </property>
  1314. </action>
  1315. <action name="actionD_2">
  1316. <property name="checkable">
  1317. <bool>true</bool>
  1318. </property>
  1319. <property name="text">
  1320. <string>D</string>
  1321. </property>
  1322. </action>
  1323. <action name="actionAVS">
  1324. <property name="checkable">
  1325. <bool>true</bool>
  1326. </property>
  1327. <property name="text">
  1328. <string>AVS</string>
  1329. </property>
  1330. </action>
  1331. <action name="actionbash">
  1332. <property name="checkable">
  1333. <bool>true</bool>
  1334. </property>
  1335. <property name="text">
  1336. <string>Bash</string>
  1337. </property>
  1338. </action>
  1339. <action name="actionIDL">
  1340. <property name="checkable">
  1341. <bool>true</bool>
  1342. </property>
  1343. <property name="text">
  1344. <string>IDL</string>
  1345. </property>
  1346. </action>
  1347. <action name="actionMatlab">
  1348. <property name="checkable">
  1349. <bool>true</bool>
  1350. </property>
  1351. <property name="text">
  1352. <string>Matlab</string>
  1353. </property>
  1354. </action>
  1355. <action name="actionSpice">
  1356. <property name="checkable">
  1357. <bool>true</bool>
  1358. </property>
  1359. <property name="text">
  1360. <string>Spice</string>
  1361. </property>
  1362. </action>
  1363. <action name="actionVerilog">
  1364. <property name="checkable">
  1365. <bool>true</bool>
  1366. </property>
  1367. <property name="text">
  1368. <string>Verilog</string>
  1369. </property>
  1370. </action>
  1371. <action name="actionTxt">
  1372. <property name="checkable">
  1373. <bool>true</bool>
  1374. </property>
  1375. <property name="text">
  1376. <string>TXT</string>
  1377. </property>
  1378. </action>
  1379. <action name="actiontest">
  1380. <property name="text">
  1381. <string>test</string>
  1382. </property>
  1383. </action>
  1384. <action name="actiontest_2">
  1385. <property name="text">
  1386. <string>test</string>
  1387. </property>
  1388. </action>
  1389. <action name="actionGo">
  1390. <property name="checkable">
  1391. <bool>true</bool>
  1392. </property>
  1393. <property name="text">
  1394. <string>go</string>
  1395. </property>
  1396. </action>
  1397. <action name="actionSearch_Result">
  1398. <property name="text">
  1399. <string>Search Result</string>
  1400. </property>
  1401. </action>
  1402. <action name="actionDonate">
  1403. <property name="text">
  1404. <string>Donate</string>
  1405. </property>
  1406. </action>
  1407. <action name="actionDefaultStyle">
  1408. <property name="checkable">
  1409. <bool>true</bool>
  1410. </property>
  1411. <property name="checked">
  1412. <bool>true</bool>
  1413. </property>
  1414. <property name="text">
  1415. <string>Default</string>
  1416. </property>
  1417. </action>
  1418. <action name="actionLightBlueStyle">
  1419. <property name="checkable">
  1420. <bool>true</bool>
  1421. </property>
  1422. <property name="text">
  1423. <string>LightBlue</string>
  1424. </property>
  1425. </action>
  1426. <action name="actionThinBlue">
  1427. <property name="checkable">
  1428. <bool>true</bool>
  1429. </property>
  1430. <property name="text">
  1431. <string>ThinBlue</string>
  1432. </property>
  1433. </action>
  1434. <action name="actionRiceYellow">
  1435. <property name="checkable">
  1436. <bool>true</bool>
  1437. </property>
  1438. <property name="text">
  1439. <string>RiceYellow</string>
  1440. </property>
  1441. </action>
  1442. <action name="actionYellow">
  1443. <property name="checkable">
  1444. <bool>true</bool>
  1445. </property>
  1446. <property name="text">
  1447. <string>Yellow</string>
  1448. </property>
  1449. </action>
  1450. <action name="actionSilver">
  1451. <property name="checkable">
  1452. <bool>true</bool>
  1453. </property>
  1454. <property name="text">
  1455. <string>Silver</string>
  1456. </property>
  1457. </action>
  1458. <action name="actionLavenderBlush">
  1459. <property name="checkable">
  1460. <bool>true</bool>
  1461. </property>
  1462. <property name="text">
  1463. <string>LavenderBlush</string>
  1464. </property>
  1465. </action>
  1466. <action name="actionMistyRose">
  1467. <property name="checkable">
  1468. <bool>true</bool>
  1469. </property>
  1470. <property name="text">
  1471. <string>MistyRose</string>
  1472. </property>
  1473. </action>
  1474. <action name="actionEnglish">
  1475. <property name="checkable">
  1476. <bool>true</bool>
  1477. </property>
  1478. <property name="text">
  1479. <string>English</string>
  1480. </property>
  1481. </action>
  1482. <action name="actionChinese">
  1483. <property name="checkable">
  1484. <bool>true</bool>
  1485. </property>
  1486. <property name="text">
  1487. <string>Chinese</string>
  1488. </property>
  1489. </action>
  1490. <action name="actionRegister">
  1491. <property name="text">
  1492. <string>Register</string>
  1493. </property>
  1494. </action>
  1495. <action name="actionLanguage_Format">
  1496. <property name="text">
  1497. <string>Language Format</string>
  1498. </property>
  1499. </action>
  1500. <action name="actionOpen_In_Text">
  1501. <property name="text">
  1502. <string>Open In Text</string>
  1503. </property>
  1504. </action>
  1505. <action name="actionOpen_In_Bin">
  1506. <property name="text">
  1507. <string>Open In Bin</string>
  1508. </property>
  1509. </action>
  1510. <action name="actionRemove_leading_blank">
  1511. <property name="text">
  1512. <string>Remove Head Blank</string>
  1513. </property>
  1514. </action>
  1515. <action name="actionRemove_eding_blank">
  1516. <property name="text">
  1517. <string>Remove End Blank</string>
  1518. </property>
  1519. </action>
  1520. <action name="actionRemove_Head_End_Blank">
  1521. <property name="text">
  1522. <string>Remove Head End Blank</string>
  1523. </property>
  1524. </action>
  1525. <action name="actionColumn_Block_Editing">
  1526. <property name="text">
  1527. <string>Column Block Editing</string>
  1528. </property>
  1529. </action>
  1530. <action name="actionWrap">
  1531. <property name="checkable">
  1532. <bool>true</bool>
  1533. </property>
  1534. <property name="text">
  1535. <string>Wrap</string>
  1536. </property>
  1537. </action>
  1538. </widget>
  1539. <layoutdefault spacing="6" margin="11"/>
  1540. <resources>
  1541. <include location="../RealCompare.qrc"/>
  1542. </resources>
  1543. <connections>
  1544. <connection>
  1545. <sender>actionNewFile</sender>
  1546. <signal>triggered(bool)</signal>
  1547. <receiver>CCNotePad</receiver>
  1548. <slot>slot_actionNewFile_toggle(bool)</slot>
  1549. <hints>
  1550. <hint type="sourcelabel">
  1551. <x>-1</x>
  1552. <y>-1</y>
  1553. </hint>
  1554. <hint type="destinationlabel">
  1555. <x>554</x>
  1556. <y>393</y>
  1557. </hint>
  1558. </hints>
  1559. </connection>
  1560. <connection>
  1561. <sender>actionOpenFile</sender>
  1562. <signal>triggered(bool)</signal>
  1563. <receiver>CCNotePad</receiver>
  1564. <slot>slot_actionOpenFile_toggle(bool)</slot>
  1565. <hints>
  1566. <hint type="sourcelabel">
  1567. <x>-1</x>
  1568. <y>-1</y>
  1569. </hint>
  1570. <hint type="destinationlabel">
  1571. <x>554</x>
  1572. <y>393</y>
  1573. </hint>
  1574. </hints>
  1575. </connection>
  1576. <connection>
  1577. <sender>actionSave</sender>
  1578. <signal>triggered(bool)</signal>
  1579. <receiver>CCNotePad</receiver>
  1580. <slot>slot_actionSaveFile_toggle(bool)</slot>
  1581. <hints>
  1582. <hint type="sourcelabel">
  1583. <x>-1</x>
  1584. <y>-1</y>
  1585. </hint>
  1586. <hint type="destinationlabel">
  1587. <x>554</x>
  1588. <y>393</y>
  1589. </hint>
  1590. </hints>
  1591. </connection>
  1592. <connection>
  1593. <sender>actionSave_as</sender>
  1594. <signal>triggered(bool)</signal>
  1595. <receiver>CCNotePad</receiver>
  1596. <slot>slot_actionSaveAsFile_toggle(bool)</slot>
  1597. <hints>
  1598. <hint type="sourcelabel">
  1599. <x>-1</x>
  1600. <y>-1</y>
  1601. </hint>
  1602. <hint type="destinationlabel">
  1603. <x>554</x>
  1604. <y>393</y>
  1605. </hint>
  1606. </hints>
  1607. </connection>
  1608. <connection>
  1609. <sender>actionClose</sender>
  1610. <signal>triggered(bool)</signal>
  1611. <receiver>CCNotePad</receiver>
  1612. <slot>slot_actionClose(bool)</slot>
  1613. <hints>
  1614. <hint type="sourcelabel">
  1615. <x>-1</x>
  1616. <y>-1</y>
  1617. </hint>
  1618. <hint type="destinationlabel">
  1619. <x>554</x>
  1620. <y>393</y>
  1621. </hint>
  1622. </hints>
  1623. </connection>
  1624. <connection>
  1625. <sender>actionExit</sender>
  1626. <signal>triggered(bool)</signal>
  1627. <receiver>CCNotePad</receiver>
  1628. <slot>slot_quit(bool)</slot>
  1629. <hints>
  1630. <hint type="sourcelabel">
  1631. <x>-1</x>
  1632. <y>-1</y>
  1633. </hint>
  1634. <hint type="destinationlabel">
  1635. <x>554</x>
  1636. <y>393</y>
  1637. </hint>
  1638. </hints>
  1639. </connection>
  1640. <connection>
  1641. <sender>actionClose_All</sender>
  1642. <signal>triggered(bool)</signal>
  1643. <receiver>CCNotePad</receiver>
  1644. <slot>slot_closeAllFile(bool)</slot>
  1645. <hints>
  1646. <hint type="sourcelabel">
  1647. <x>-1</x>
  1648. <y>-1</y>
  1649. </hint>
  1650. <hint type="destinationlabel">
  1651. <x>554</x>
  1652. <y>393</y>
  1653. </hint>
  1654. </hints>
  1655. </connection>
  1656. <connection>
  1657. <sender>actionredo</sender>
  1658. <signal>triggered(bool)</signal>
  1659. <receiver>CCNotePad</receiver>
  1660. <slot>slot_redo()</slot>
  1661. <hints>
  1662. <hint type="sourcelabel">
  1663. <x>-1</x>
  1664. <y>-1</y>
  1665. </hint>
  1666. <hint type="destinationlabel">
  1667. <x>554</x>
  1668. <y>393</y>
  1669. </hint>
  1670. </hints>
  1671. </connection>
  1672. <connection>
  1673. <sender>actionundo</sender>
  1674. <signal>triggered(bool)</signal>
  1675. <receiver>CCNotePad</receiver>
  1676. <slot>slot_undo()</slot>
  1677. <hints>
  1678. <hint type="sourcelabel">
  1679. <x>-1</x>
  1680. <y>-1</y>
  1681. </hint>
  1682. <hint type="destinationlabel">
  1683. <x>554</x>
  1684. <y>393</y>
  1685. </hint>
  1686. </hints>
  1687. </connection>
  1688. <connection>
  1689. <sender>actioncopy</sender>
  1690. <signal>triggered(bool)</signal>
  1691. <receiver>CCNotePad</receiver>
  1692. <slot>slot_copy()</slot>
  1693. <hints>
  1694. <hint type="sourcelabel">
  1695. <x>-1</x>
  1696. <y>-1</y>
  1697. </hint>
  1698. <hint type="destinationlabel">
  1699. <x>554</x>
  1700. <y>393</y>
  1701. </hint>
  1702. </hints>
  1703. </connection>
  1704. <connection>
  1705. <sender>actionpaste</sender>
  1706. <signal>triggered(bool)</signal>
  1707. <receiver>CCNotePad</receiver>
  1708. <slot>slot_paste()</slot>
  1709. <hints>
  1710. <hint type="sourcelabel">
  1711. <x>-1</x>
  1712. <y>-1</y>
  1713. </hint>
  1714. <hint type="destinationlabel">
  1715. <x>554</x>
  1716. <y>393</y>
  1717. </hint>
  1718. </hints>
  1719. </connection>
  1720. <connection>
  1721. <sender>actioncut</sender>
  1722. <signal>triggered(bool)</signal>
  1723. <receiver>CCNotePad</receiver>
  1724. <slot>slot_cut()</slot>
  1725. <hints>
  1726. <hint type="sourcelabel">
  1727. <x>-1</x>
  1728. <y>-1</y>
  1729. </hint>
  1730. <hint type="destinationlabel">
  1731. <x>554</x>
  1732. <y>393</y>
  1733. </hint>
  1734. </hints>
  1735. </connection>
  1736. <connection>
  1737. <sender>actionselect_All</sender>
  1738. <signal>triggered(bool)</signal>
  1739. <receiver>CCNotePad</receiver>
  1740. <slot>slot_selectAll()</slot>
  1741. <hints>
  1742. <hint type="sourcelabel">
  1743. <x>-1</x>
  1744. <y>-1</y>
  1745. </hint>
  1746. <hint type="destinationlabel">
  1747. <x>554</x>
  1748. <y>393</y>
  1749. </hint>
  1750. </hints>
  1751. </connection>
  1752. <connection>
  1753. <sender>actionconvert_Mac_CR</sender>
  1754. <signal>triggered(bool)</signal>
  1755. <receiver>CCNotePad</receiver>
  1756. <slot>slot_convertMacLineEnd(bool)</slot>
  1757. <hints>
  1758. <hint type="sourcelabel">
  1759. <x>-1</x>
  1760. <y>-1</y>
  1761. </hint>
  1762. <hint type="destinationlabel">
  1763. <x>554</x>
  1764. <y>393</y>
  1765. </hint>
  1766. </hints>
  1767. </connection>
  1768. <connection>
  1769. <sender>actionconver_windows_CR_LF</sender>
  1770. <signal>triggered(bool)</signal>
  1771. <receiver>CCNotePad</receiver>
  1772. <slot>slot_convertWinLineEnd(bool)</slot>
  1773. <hints>
  1774. <hint type="sourcelabel">
  1775. <x>-1</x>
  1776. <y>-1</y>
  1777. </hint>
  1778. <hint type="destinationlabel">
  1779. <x>554</x>
  1780. <y>393</y>
  1781. </hint>
  1782. </hints>
  1783. </connection>
  1784. <connection>
  1785. <sender>actionconvert_Unix_LF</sender>
  1786. <signal>triggered(bool)</signal>
  1787. <receiver>CCNotePad</receiver>
  1788. <slot>slot_convertUnixLineEnd(bool)</slot>
  1789. <hints>
  1790. <hint type="sourcelabel">
  1791. <x>-1</x>
  1792. <y>-1</y>
  1793. </hint>
  1794. <hint type="destinationlabel">
  1795. <x>554</x>
  1796. <y>393</y>
  1797. </hint>
  1798. </hints>
  1799. </connection>
  1800. <connection>
  1801. <sender>actionFind</sender>
  1802. <signal>triggered(bool)</signal>
  1803. <receiver>CCNotePad</receiver>
  1804. <slot>slot_find()</slot>
  1805. <hints>
  1806. <hint type="sourcelabel">
  1807. <x>-1</x>
  1808. <y>-1</y>
  1809. </hint>
  1810. <hint type="destinationlabel">
  1811. <x>554</x>
  1812. <y>393</y>
  1813. </hint>
  1814. </hints>
  1815. </connection>
  1816. <connection>
  1817. <sender>actionReplace</sender>
  1818. <signal>triggered(bool)</signal>
  1819. <receiver>CCNotePad</receiver>
  1820. <slot>slot_replace()</slot>
  1821. <hints>
  1822. <hint type="sourcelabel">
  1823. <x>-1</x>
  1824. <y>-1</y>
  1825. </hint>
  1826. <hint type="destinationlabel">
  1827. <x>554</x>
  1828. <y>393</y>
  1829. </hint>
  1830. </hints>
  1831. </connection>
  1832. <connection>
  1833. <sender>actionGoline</sender>
  1834. <signal>triggered()</signal>
  1835. <receiver>CCNotePad</receiver>
  1836. <slot>slot_gotoline()</slot>
  1837. <hints>
  1838. <hint type="sourcelabel">
  1839. <x>-1</x>
  1840. <y>-1</y>
  1841. </hint>
  1842. <hint type="destinationlabel">
  1843. <x>554</x>
  1844. <y>393</y>
  1845. </hint>
  1846. </hints>
  1847. </connection>
  1848. <connection>
  1849. <sender>actionshow_Spaces_tabs</sender>
  1850. <signal>triggered(bool)</signal>
  1851. <receiver>CCNotePad</receiver>
  1852. <slot>slot_show_spaces(bool)</slot>
  1853. <hints>
  1854. <hint type="sourcelabel">
  1855. <x>-1</x>
  1856. <y>-1</y>
  1857. </hint>
  1858. <hint type="destinationlabel">
  1859. <x>554</x>
  1860. <y>393</y>
  1861. </hint>
  1862. </hints>
  1863. </connection>
  1864. <connection>
  1865. <sender>actionshow_end_of_line</sender>
  1866. <signal>triggered(bool)</signal>
  1867. <receiver>CCNotePad</receiver>
  1868. <slot>slot_show_line_end(bool)</slot>
  1869. <hints>
  1870. <hint type="sourcelabel">
  1871. <x>-1</x>
  1872. <y>-1</y>
  1873. </hint>
  1874. <hint type="destinationlabel">
  1875. <x>554</x>
  1876. <y>393</y>
  1877. </hint>
  1878. </hints>
  1879. </connection>
  1880. <connection>
  1881. <sender>actionshow_all</sender>
  1882. <signal>triggered(bool)</signal>
  1883. <receiver>CCNotePad</receiver>
  1884. <slot>slot_show_all(bool)</slot>
  1885. <hints>
  1886. <hint type="sourcelabel">
  1887. <x>-1</x>
  1888. <y>-1</y>
  1889. </hint>
  1890. <hint type="destinationlabel">
  1891. <x>554</x>
  1892. <y>393</y>
  1893. </hint>
  1894. </hints>
  1895. </connection>
  1896. <connection>
  1897. <sender>actionencode_in_GBK</sender>
  1898. <signal>triggered()</signal>
  1899. <receiver>CCNotePad</receiver>
  1900. <slot>slot_load_with_gbk()</slot>
  1901. <hints>
  1902. <hint type="sourcelabel">
  1903. <x>-1</x>
  1904. <y>-1</y>
  1905. </hint>
  1906. <hint type="destinationlabel">
  1907. <x>554</x>
  1908. <y>393</y>
  1909. </hint>
  1910. </hints>
  1911. </connection>
  1912. <connection>
  1913. <sender>actionconvert_to_UTF8</sender>
  1914. <signal>triggered()</signal>
  1915. <receiver>CCNotePad</receiver>
  1916. <slot>slot_encode_utf8()</slot>
  1917. <hints>
  1918. <hint type="sourcelabel">
  1919. <x>-1</x>
  1920. <y>-1</y>
  1921. </hint>
  1922. <hint type="destinationlabel">
  1923. <x>554</x>
  1924. <y>393</y>
  1925. </hint>
  1926. </hints>
  1927. </connection>
  1928. <connection>
  1929. <sender>actionconvert_to_UTF8_BOM</sender>
  1930. <signal>triggered()</signal>
  1931. <receiver>CCNotePad</receiver>
  1932. <slot>slot_encode_utf8_bom()</slot>
  1933. <hints>
  1934. <hint type="sourcelabel">
  1935. <x>-1</x>
  1936. <y>-1</y>
  1937. </hint>
  1938. <hint type="destinationlabel">
  1939. <x>554</x>
  1940. <y>393</y>
  1941. </hint>
  1942. </hints>
  1943. </connection>
  1944. <connection>
  1945. <sender>actionconvert_to_UCS_2_BE_BOM</sender>
  1946. <signal>triggered()</signal>
  1947. <receiver>CCNotePad</receiver>
  1948. <slot>slot_encode_utf16_be()</slot>
  1949. <hints>
  1950. <hint type="sourcelabel">
  1951. <x>-1</x>
  1952. <y>-1</y>
  1953. </hint>
  1954. <hint type="destinationlabel">
  1955. <x>554</x>
  1956. <y>393</y>
  1957. </hint>
  1958. </hints>
  1959. </connection>
  1960. <connection>
  1961. <sender>actionencode_in_UCS_2_LE_BOM</sender>
  1962. <signal>triggered()</signal>
  1963. <receiver>CCNotePad</receiver>
  1964. <slot>slot_load_with_utf16_le()</slot>
  1965. <hints>
  1966. <hint type="sourcelabel">
  1967. <x>-1</x>
  1968. <y>-1</y>
  1969. </hint>
  1970. <hint type="destinationlabel">
  1971. <x>554</x>
  1972. <y>393</y>
  1973. </hint>
  1974. </hints>
  1975. </connection>
  1976. <connection>
  1977. <sender>actionencode_in_UCS_BE_BOM</sender>
  1978. <signal>triggered()</signal>
  1979. <receiver>CCNotePad</receiver>
  1980. <slot>slot_load_with_utf16_be()</slot>
  1981. <hints>
  1982. <hint type="sourcelabel">
  1983. <x>-1</x>
  1984. <y>-1</y>
  1985. </hint>
  1986. <hint type="destinationlabel">
  1987. <x>554</x>
  1988. <y>393</y>
  1989. </hint>
  1990. </hints>
  1991. </connection>
  1992. <connection>
  1993. <sender>actionencode_in_UTF8_BOM</sender>
  1994. <signal>triggered()</signal>
  1995. <receiver>CCNotePad</receiver>
  1996. <slot>slot_load_with_utf8_bom()</slot>
  1997. <hints>
  1998. <hint type="sourcelabel">
  1999. <x>-1</x>
  2000. <y>-1</y>
  2001. </hint>
  2002. <hint type="destinationlabel">
  2003. <x>554</x>
  2004. <y>393</y>
  2005. </hint>
  2006. </hints>
  2007. </connection>
  2008. <connection>
  2009. <sender>actionencode_in_uft8</sender>
  2010. <signal>triggered()</signal>
  2011. <receiver>CCNotePad</receiver>
  2012. <slot>slot_load_with_utf8()</slot>
  2013. <hints>
  2014. <hint type="sourcelabel">
  2015. <x>-1</x>
  2016. <y>-1</y>
  2017. </hint>
  2018. <hint type="destinationlabel">
  2019. <x>554</x>
  2020. <y>393</y>
  2021. </hint>
  2022. </hints>
  2023. </connection>
  2024. <connection>
  2025. <sender>actionconvert_to_GBK</sender>
  2026. <signal>triggered()</signal>
  2027. <receiver>CCNotePad</receiver>
  2028. <slot>slot_encode_gbk()</slot>
  2029. <hints>
  2030. <hint type="sourcelabel">
  2031. <x>-1</x>
  2032. <y>-1</y>
  2033. </hint>
  2034. <hint type="destinationlabel">
  2035. <x>554</x>
  2036. <y>393</y>
  2037. </hint>
  2038. </hints>
  2039. </connection>
  2040. <connection>
  2041. <sender>actionconvert_to_UCS_2_LE_BOM</sender>
  2042. <signal>triggered()</signal>
  2043. <receiver>CCNotePad</receiver>
  2044. <slot>slot_encode_utf16_le()</slot>
  2045. <hints>
  2046. <hint type="sourcelabel">
  2047. <x>-1</x>
  2048. <y>-1</y>
  2049. </hint>
  2050. <hint type="destinationlabel">
  2051. <x>554</x>
  2052. <y>393</y>
  2053. </hint>
  2054. </hints>
  2055. </connection>
  2056. <connection>
  2057. <sender>actionDir_compare</sender>
  2058. <signal>triggered()</signal>
  2059. <receiver>CCNotePad</receiver>
  2060. <slot>slot_compareDir()</slot>
  2061. <hints>
  2062. <hint type="sourcelabel">
  2063. <x>-1</x>
  2064. <y>-1</y>
  2065. </hint>
  2066. <hint type="destinationlabel">
  2067. <x>554</x>
  2068. <y>379</y>
  2069. </hint>
  2070. </hints>
  2071. </connection>
  2072. <connection>
  2073. <sender>actionFile_compare</sender>
  2074. <signal>triggered()</signal>
  2075. <receiver>CCNotePad</receiver>
  2076. <slot>slot_compareFile()</slot>
  2077. <hints>
  2078. <hint type="sourcelabel">
  2079. <x>-1</x>
  2080. <y>-1</y>
  2081. </hint>
  2082. <hint type="destinationlabel">
  2083. <x>554</x>
  2084. <y>379</y>
  2085. </hint>
  2086. </hints>
  2087. </connection>
  2088. <connection>
  2089. <sender>actionCC_Pad</sender>
  2090. <signal>triggered()</signal>
  2091. <receiver>CCNotePad</receiver>
  2092. <slot>slot_about()</slot>
  2093. <hints>
  2094. <hint type="sourcelabel">
  2095. <x>-1</x>
  2096. <y>-1</y>
  2097. </hint>
  2098. <hint type="destinationlabel">
  2099. <x>554</x>
  2100. <y>379</y>
  2101. </hint>
  2102. </hints>
  2103. </connection>
  2104. <connection>
  2105. <sender>actionbatch_convert</sender>
  2106. <signal>triggered()</signal>
  2107. <receiver>CCNotePad</receiver>
  2108. <slot>slot_batch_convert()</slot>
  2109. <hints>
  2110. <hint type="sourcelabel">
  2111. <x>-1</x>
  2112. <y>-1</y>
  2113. </hint>
  2114. <hint type="destinationlabel">
  2115. <x>554</x>
  2116. <y>379</y>
  2117. </hint>
  2118. </hints>
  2119. </connection>
  2120. <connection>
  2121. <sender>actionOptions</sender>
  2122. <signal>triggered()</signal>
  2123. <receiver>CCNotePad</receiver>
  2124. <slot>slot_options()</slot>
  2125. <hints>
  2126. <hint type="sourcelabel">
  2127. <x>-1</x>
  2128. <y>-1</y>
  2129. </hint>
  2130. <hint type="destinationlabel">
  2131. <x>554</x>
  2132. <y>379</y>
  2133. </hint>
  2134. </hints>
  2135. </connection>
  2136. <connection>
  2137. <sender>actionSearch_Result</sender>
  2138. <signal>triggered()</signal>
  2139. <receiver>CCNotePad</receiver>
  2140. <slot>slot_searchResultShow()</slot>
  2141. <hints>
  2142. <hint type="sourcelabel">
  2143. <x>-1</x>
  2144. <y>-1</y>
  2145. </hint>
  2146. <hint type="destinationlabel">
  2147. <x>554</x>
  2148. <y>379</y>
  2149. </hint>
  2150. </hints>
  2151. </connection>
  2152. <connection>
  2153. <sender>actionDonate</sender>
  2154. <signal>triggered()</signal>
  2155. <receiver>CCNotePad</receiver>
  2156. <slot>slot_donate()</slot>
  2157. <hints>
  2158. <hint type="sourcelabel">
  2159. <x>-1</x>
  2160. <y>-1</y>
  2161. </hint>
  2162. <hint type="destinationlabel">
  2163. <x>554</x>
  2164. <y>379</y>
  2165. </hint>
  2166. </hints>
  2167. </connection>
  2168. <connection>
  2169. <sender>actionDefaultStyle</sender>
  2170. <signal>triggered()</signal>
  2171. <receiver>CCNotePad</receiver>
  2172. <slot>slot_toDefaultStyle()</slot>
  2173. <hints>
  2174. <hint type="sourcelabel">
  2175. <x>-1</x>
  2176. <y>-1</y>
  2177. </hint>
  2178. <hint type="destinationlabel">
  2179. <x>554</x>
  2180. <y>379</y>
  2181. </hint>
  2182. </hints>
  2183. </connection>
  2184. <connection>
  2185. <sender>actionLightBlueStyle</sender>
  2186. <signal>triggered()</signal>
  2187. <receiver>CCNotePad</receiver>
  2188. <slot>slot_toLightBlueStyle()</slot>
  2189. <hints>
  2190. <hint type="sourcelabel">
  2191. <x>-1</x>
  2192. <y>-1</y>
  2193. </hint>
  2194. <hint type="destinationlabel">
  2195. <x>554</x>
  2196. <y>379</y>
  2197. </hint>
  2198. </hints>
  2199. </connection>
  2200. <connection>
  2201. <sender>actionThinBlue</sender>
  2202. <signal>triggered()</signal>
  2203. <receiver>CCNotePad</receiver>
  2204. <slot>slot_toThinBlueStyle()</slot>
  2205. <hints>
  2206. <hint type="sourcelabel">
  2207. <x>-1</x>
  2208. <y>-1</y>
  2209. </hint>
  2210. <hint type="destinationlabel">
  2211. <x>554</x>
  2212. <y>379</y>
  2213. </hint>
  2214. </hints>
  2215. </connection>
  2216. <connection>
  2217. <sender>actionRiceYellow</sender>
  2218. <signal>triggered()</signal>
  2219. <receiver>CCNotePad</receiver>
  2220. <slot>slot_toRiceYellow()</slot>
  2221. <hints>
  2222. <hint type="sourcelabel">
  2223. <x>-1</x>
  2224. <y>-1</y>
  2225. </hint>
  2226. <hint type="destinationlabel">
  2227. <x>554</x>
  2228. <y>379</y>
  2229. </hint>
  2230. </hints>
  2231. </connection>
  2232. <connection>
  2233. <sender>actionYellow</sender>
  2234. <signal>triggered()</signal>
  2235. <receiver>CCNotePad</receiver>
  2236. <slot>slot_toYellow()</slot>
  2237. <hints>
  2238. <hint type="sourcelabel">
  2239. <x>-1</x>
  2240. <y>-1</y>
  2241. </hint>
  2242. <hint type="destinationlabel">
  2243. <x>554</x>
  2244. <y>379</y>
  2245. </hint>
  2246. </hints>
  2247. </connection>
  2248. <connection>
  2249. <sender>actionSilver</sender>
  2250. <signal>triggered()</signal>
  2251. <receiver>CCNotePad</receiver>
  2252. <slot>slot_toSilverStyle()</slot>
  2253. <hints>
  2254. <hint type="sourcelabel">
  2255. <x>-1</x>
  2256. <y>-1</y>
  2257. </hint>
  2258. <hint type="destinationlabel">
  2259. <x>554</x>
  2260. <y>379</y>
  2261. </hint>
  2262. </hints>
  2263. </connection>
  2264. <connection>
  2265. <sender>actionLavenderBlush</sender>
  2266. <signal>triggered()</signal>
  2267. <receiver>CCNotePad</receiver>
  2268. <slot>slot_toThinBlueStyle()</slot>
  2269. <hints>
  2270. <hint type="sourcelabel">
  2271. <x>-1</x>
  2272. <y>-1</y>
  2273. </hint>
  2274. <hint type="destinationlabel">
  2275. <x>554</x>
  2276. <y>379</y>
  2277. </hint>
  2278. </hints>
  2279. </connection>
  2280. <connection>
  2281. <sender>actionMistyRose</sender>
  2282. <signal>triggered()</signal>
  2283. <receiver>CCNotePad</receiver>
  2284. <slot>slot_toMistyRose()</slot>
  2285. <hints>
  2286. <hint type="sourcelabel">
  2287. <x>-1</x>
  2288. <y>-1</y>
  2289. </hint>
  2290. <hint type="destinationlabel">
  2291. <x>554</x>
  2292. <y>379</y>
  2293. </hint>
  2294. </hints>
  2295. </connection>
  2296. <connection>
  2297. <sender>actionEnglish</sender>
  2298. <signal>triggered()</signal>
  2299. <receiver>CCNotePad</receiver>
  2300. <slot>slot_changeEnglish()</slot>
  2301. <hints>
  2302. <hint type="sourcelabel">
  2303. <x>-1</x>
  2304. <y>-1</y>
  2305. </hint>
  2306. <hint type="destinationlabel">
  2307. <x>601</x>
  2308. <y>394</y>
  2309. </hint>
  2310. </hints>
  2311. </connection>
  2312. <connection>
  2313. <sender>actionChinese</sender>
  2314. <signal>triggered()</signal>
  2315. <receiver>CCNotePad</receiver>
  2316. <slot>slot_changeChinese()</slot>
  2317. <hints>
  2318. <hint type="sourcelabel">
  2319. <x>-1</x>
  2320. <y>-1</y>
  2321. </hint>
  2322. <hint type="destinationlabel">
  2323. <x>601</x>
  2324. <y>394</y>
  2325. </hint>
  2326. </hints>
  2327. </connection>
  2328. <connection>
  2329. <sender>actionRegister</sender>
  2330. <signal>triggered()</signal>
  2331. <receiver>CCNotePad</receiver>
  2332. <slot>slot_register()</slot>
  2333. <hints>
  2334. <hint type="sourcelabel">
  2335. <x>-1</x>
  2336. <y>-1</y>
  2337. </hint>
  2338. <hint type="destinationlabel">
  2339. <x>601</x>
  2340. <y>394</y>
  2341. </hint>
  2342. </hints>
  2343. </connection>
  2344. <connection>
  2345. <sender>actionLanguage_Format</sender>
  2346. <signal>triggered()</signal>
  2347. <receiver>CCNotePad</receiver>
  2348. <slot>slot_langFormat()</slot>
  2349. <hints>
  2350. <hint type="sourcelabel">
  2351. <x>-1</x>
  2352. <y>-1</y>
  2353. </hint>
  2354. <hint type="destinationlabel">
  2355. <x>601</x>
  2356. <y>394</y>
  2357. </hint>
  2358. </hints>
  2359. </connection>
  2360. <connection>
  2361. <sender>actionOpen_In_Text</sender>
  2362. <signal>triggered()</signal>
  2363. <receiver>CCNotePad</receiver>
  2364. <slot>slot_reOpenTextMode()</slot>
  2365. <hints>
  2366. <hint type="sourcelabel">
  2367. <x>-1</x>
  2368. <y>-1</y>
  2369. </hint>
  2370. <hint type="destinationlabel">
  2371. <x>601</x>
  2372. <y>394</y>
  2373. </hint>
  2374. </hints>
  2375. </connection>
  2376. <connection>
  2377. <sender>actionOpen_In_Bin</sender>
  2378. <signal>triggered()</signal>
  2379. <receiver>CCNotePad</receiver>
  2380. <slot>slot_reOpenHexMode()</slot>
  2381. <hints>
  2382. <hint type="sourcelabel">
  2383. <x>-1</x>
  2384. <y>-1</y>
  2385. </hint>
  2386. <hint type="destinationlabel">
  2387. <x>601</x>
  2388. <y>394</y>
  2389. </hint>
  2390. </hints>
  2391. </connection>
  2392. <connection>
  2393. <sender>actionRemove_leading_blank</sender>
  2394. <signal>triggered()</signal>
  2395. <receiver>CCNotePad</receiver>
  2396. <slot>slot_removeHeadBlank()</slot>
  2397. <hints>
  2398. <hint type="sourcelabel">
  2399. <x>-1</x>
  2400. <y>-1</y>
  2401. </hint>
  2402. <hint type="destinationlabel">
  2403. <x>601</x>
  2404. <y>394</y>
  2405. </hint>
  2406. </hints>
  2407. </connection>
  2408. <connection>
  2409. <sender>actionRemove_eding_blank</sender>
  2410. <signal>triggered()</signal>
  2411. <receiver>CCNotePad</receiver>
  2412. <slot>slot_removeEndBlank()</slot>
  2413. <hints>
  2414. <hint type="sourcelabel">
  2415. <x>-1</x>
  2416. <y>-1</y>
  2417. </hint>
  2418. <hint type="destinationlabel">
  2419. <x>601</x>
  2420. <y>394</y>
  2421. </hint>
  2422. </hints>
  2423. </connection>
  2424. <connection>
  2425. <sender>actionRemove_Head_End_Blank</sender>
  2426. <signal>triggered()</signal>
  2427. <receiver>CCNotePad</receiver>
  2428. <slot>slot_removeHeadEndBlank()</slot>
  2429. <hints>
  2430. <hint type="sourcelabel">
  2431. <x>-1</x>
  2432. <y>-1</y>
  2433. </hint>
  2434. <hint type="destinationlabel">
  2435. <x>601</x>
  2436. <y>394</y>
  2437. </hint>
  2438. </hints>
  2439. </connection>
  2440. <connection>
  2441. <sender>actionColumn_Block_Editing</sender>
  2442. <signal>triggered()</signal>
  2443. <receiver>CCNotePad</receiver>
  2444. <slot>slot_columnBlockEdit()</slot>
  2445. <hints>
  2446. <hint type="sourcelabel">
  2447. <x>-1</x>
  2448. <y>-1</y>
  2449. </hint>
  2450. <hint type="destinationlabel">
  2451. <x>792</x>
  2452. <y>394</y>
  2453. </hint>
  2454. </hints>
  2455. </connection>
  2456. </connections>
  2457. <slots>
  2458. <slot>slot_actionNewFile_toggle(bool)</slot>
  2459. <slot>slot_actionOpenFile_toggle(bool)</slot>
  2460. <slot>slot_actionSaveFile_toggle(bool)</slot>
  2461. <slot>slot_actionSaveAsFile_toggle(bool)</slot>
  2462. <slot>slot_actionClose(bool)</slot>
  2463. <slot>slot_quit(bool)</slot>
  2464. <slot>slot_closeAllFile(bool)</slot>
  2465. <slot>slot_undo()</slot>
  2466. <slot>slot_redo()</slot>
  2467. <slot>slot_cut()</slot>
  2468. <slot>slot_copy()</slot>
  2469. <slot>slot_paste()</slot>
  2470. <slot>slot_selectAll()</slot>
  2471. <slot>slot_convertWinLineEnd(bool)</slot>
  2472. <slot>slot_convertUnixLineEnd(bool)</slot>
  2473. <slot>slot_convertMacLineEnd(bool)</slot>
  2474. <slot>slot_find()</slot>
  2475. <slot>slot_replace()</slot>
  2476. <slot>slot_gotoline()</slot>
  2477. <slot>slot_show_spaces(bool)</slot>
  2478. <slot>slot_show_line_end(bool)</slot>
  2479. <slot>slot_show_all(bool)</slot>
  2480. <slot>slot_encode_gbk()</slot>
  2481. <slot>slot_encode_utf8()</slot>
  2482. <slot>slot_encode_utf8_bom()</slot>
  2483. <slot>slot_encode_utf16_be()</slot>
  2484. <slot>slot_encode_utf16_le()</slot>
  2485. <slot>slot_compareFile()</slot>
  2486. <slot>slot_compareDir()</slot>
  2487. <slot>slot_about()</slot>
  2488. <slot>slot_batch_convert()</slot>
  2489. <slot>slot_donate()</slot>
  2490. <slot>slot_options()</slot>
  2491. <slot>slot_load_with_gbk()</slot>
  2492. <slot>slot_load_with_utf8()</slot>
  2493. <slot>slot_load_with_utf8_bom()</slot>
  2494. <slot>slot_load_with_utf16_be()</slot>
  2495. <slot>slot_load_with_utf16_le()</slot>
  2496. <slot>slot_searchResultShow()</slot>
  2497. <slot>slot_toDefaultStyle()</slot>
  2498. <slot>slot_toLightBlueStyle()</slot>
  2499. <slot>slot_toThinBlueStyle()</slot>
  2500. <slot>slot_toRiceYellow()</slot>
  2501. <slot>slot_toYellow()</slot>
  2502. <slot>slot_toSilverStyle()</slot>
  2503. <slot>slot_toLavenderBlush()</slot>
  2504. <slot>slot_toMistyRose()</slot>
  2505. <slot>slot_changeEnglish()</slot>
  2506. <slot>slot_changeChinese()</slot>
  2507. <slot>slot_register()</slot>
  2508. <slot>slot_langFormat()</slot>
  2509. <slot>slot_reOpenTextMode()</slot>
  2510. <slot>slot_reOpenHexMode()</slot>
  2511. <slot>slot_removeHeadBlank()</slot>
  2512. <slot>slot_removeEndBlank()</slot>
  2513. <slot>slot_removeHeadEndBlank()</slot>
  2514. <slot>slot_columnBlockEdit()</slot>
  2515. <slot>slot_wordwrap()</slot>
  2516. </slots>
  2517. </ui>