| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>CCNotePad</class>
- <widget class="QMainWindow" name="CCNotePad">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>1585</width>
- <height>789</height>
- </rect>
- </property>
- <property name="font">
- <font>
- <family>Microsoft YaHei</family>
- <pointsize>12</pointsize>
- </font>
- </property>
- <property name="windowTitle">
- <string>notepad--</string>
- </property>
- <property name="windowIcon">
- <iconset resource="../RealCompare.qrc">
- <normaloff>:/Resources/edit/global/ndd.ico</normaloff>:/Resources/edit/global/ndd.ico</iconset>
- </property>
- <widget class="QWidget" name="centralWidget">
- <layout class="QHBoxLayout" name="horizontalLayout">
- <property name="spacing">
- <number>0</number>
- </property>
- <property name="leftMargin">
- <number>1</number>
- </property>
- <property name="topMargin">
- <number>0</number>
- </property>
- <property name="rightMargin">
- <number>0</number>
- </property>
- <property name="bottomMargin">
- <number>0</number>
- </property>
- <item>
- <widget class="QTabWidget" name="editTabWidget">
- <property name="font">
- <font>
- <family>Microsoft YaHei</family>
- <pointsize>10</pointsize>
- </font>
- </property>
- <property name="currentIndex">
- <number>-1</number>
- </property>
- <property name="iconSize">
- <size>
- <width>22</width>
- <height>22</height>
- </size>
- </property>
- <property name="elideMode">
- <enum>Qt::ElideNone</enum>
- </property>
- <property name="usesScrollButtons">
- <bool>true</bool>
- </property>
- <property name="tabsClosable">
- <bool>true</bool>
- </property>
- <property name="movable">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <widget class="QMenuBar" name="menuBar">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>1585</width>
- <height>23</height>
- </rect>
- </property>
- <widget class="QMenu" name="menuFile">
- <property name="layoutDirection">
- <enum>Qt::LeftToRight</enum>
- </property>
- <property name="title">
- <string>File</string>
- </property>
- <addaction name="actionNewFile"/>
- <addaction name="actionOpenFile"/>
- <addaction name="actionSave"/>
- <addaction name="actionSave_as"/>
- <addaction name="actionClose"/>
- <addaction name="actionClose_All"/>
- <addaction name="separator"/>
- </widget>
- <widget class="QMenu" name="menuEdit">
- <property name="layoutDirection">
- <enum>Qt::LeftToRight</enum>
- </property>
- <property name="title">
- <string>Edit</string>
- </property>
- <widget class="QMenu" name="menuformat_conversion">
- <property name="title">
- <string>Format Conversion</string>
- </property>
- <addaction name="actionconver_windows_CR_LF"/>
- <addaction name="actionconvert_Unix_LF"/>
- <addaction name="actionconvert_Mac_CR"/>
- </widget>
- <widget class="QMenu" name="menuBlank_CharOperate">
- <property name="title">
- <string>Blank CharOperate</string>
- </property>
- <addaction name="actionRemove_leading_blank"/>
- <addaction name="actionRemove_eding_blank"/>
- <addaction name="actionRemove_Head_End_Blank"/>
- </widget>
- <addaction name="actionundo"/>
- <addaction name="actionredo"/>
- <addaction name="separator"/>
- <addaction name="actioncut"/>
- <addaction name="actioncopy"/>
- <addaction name="actionpaste"/>
- <addaction name="separator"/>
- <addaction name="actionselect_All"/>
- <addaction name="menuformat_conversion"/>
- <addaction name="separator"/>
- <addaction name="actionOpen_In_Text"/>
- <addaction name="actionOpen_In_Bin"/>
- <addaction name="menuBlank_CharOperate"/>
- <addaction name="actionColumn_Block_Editing"/>
- </widget>
- <widget class="QMenu" name="menuSearch">
- <property name="title">
- <string>Search</string>
- </property>
- <addaction name="actionFind"/>
- <addaction name="actionReplace"/>
- <addaction name="actionGoline"/>
- </widget>
- <widget class="QMenu" name="menuView">
- <property name="title">
- <string>View</string>
- </property>
- <widget class="QMenu" name="menudisplay_symbols">
- <property name="title">
- <string>Display symbols</string>
- </property>
- <addaction name="actionshow_Spaces_tabs"/>
- <addaction name="actionshow_end_of_line"/>
- <addaction name="actionshow_all"/>
- </widget>
- <addaction name="menudisplay_symbols"/>
- <addaction name="actionSearch_Result"/>
- <addaction name="actionWrap"/>
- </widget>
- <widget class="QMenu" name="menuCode">
- <property name="title">
- <string>Encoding</string>
- </property>
- <addaction name="actionencode_in_GBK"/>
- <addaction name="actionencode_in_uft8"/>
- <addaction name="actionencode_in_UTF8_BOM"/>
- <addaction name="actionencode_in_UCS_BE_BOM"/>
- <addaction name="actionencode_in_UCS_2_LE_BOM"/>
- <addaction name="separator"/>
- <addaction name="actionconvert_to_GBK"/>
- <addaction name="actionconvert_to_UTF8"/>
- <addaction name="actionconvert_to_UTF8_BOM"/>
- <addaction name="actionconvert_to_UCS_2_BE_BOM"/>
- <addaction name="actionconvert_to_UCS_2_LE_BOM"/>
- <addaction name="actionbatch_convert"/>
- </widget>
- <widget class="QMenu" name="menuLanguage">
- <property name="title">
- <string>Language</string>
- </property>
- <widget class="QMenu" name="menuP">
- <property name="title">
- <string>P</string>
- </property>
- <addaction name="actionPascal"/>
- <addaction name="actionPerl"/>
- <addaction name="actionPhp"/>
- <addaction name="actionPo"/>
- <addaction name="actionPostScript"/>
- <addaction name="actionPov"/>
- <addaction name="actionPowerShell"/>
- <addaction name="actionProperties_file"/>
- <addaction name="actionPureBasic"/>
- <addaction name="actionPython"/>
- </widget>
- <widget class="QMenu" name="menuC">
- <property name="title">
- <string>C</string>
- </property>
- <addaction name="actionC"/>
- <addaction name="actionCPP"/>
- <addaction name="actionCShape"/>
- <addaction name="actionObjective_C"/>
- <addaction name="actionCss"/>
- <addaction name="actionCMake"/>
- <addaction name="actionCoffeeScript"/>
- <addaction name="actionCsound"/>
- </widget>
- <widget class="QMenu" name="menuJ">
- <property name="title">
- <string>J</string>
- </property>
- <addaction name="actionJava"/>
- <addaction name="actionJavaScript"/>
- <addaction name="actionJsp"/>
- <addaction name="actionjson"/>
- </widget>
- <widget class="QMenu" name="menuR">
- <property name="title">
- <string>R</string>
- </property>
- <addaction name="actionRC"/>
- <addaction name="actionRuby"/>
- <addaction name="actionRust"/>
- <addaction name="actionRegistry"/>
- <addaction name="actionREBOL"/>
- </widget>
- <widget class="QMenu" name="menuH">
- <property name="title">
- <string>H</string>
- </property>
- <addaction name="actionHTML"/>
- </widget>
- <widget class="QMenu" name="menuM">
- <property name="title">
- <string>M</string>
- </property>
- <addaction name="actionMakefile"/>
- <addaction name="actionMMIXAL"/>
- <addaction name="actionMarkDown_2"/>
- <addaction name="actionMatlab"/>
- </widget>
- <widget class="QMenu" name="menuB">
- <property name="title">
- <string>B</string>
- </property>
- <addaction name="actionBaanC"/>
- <addaction name="actionbash"/>
- <addaction name="actionBatch"/>
- <addaction name="actionBlitzBasic"/>
- </widget>
- <widget class="QMenu" name="menuI">
- <property name="title">
- <string>I</string>
- </property>
- <addaction name="actionIDL"/>
- <addaction name="actionini"/>
- <addaction name="actionIntel_HEX"/>
- </widget>
- <widget class="QMenu" name="menuN">
- <property name="title">
- <string>N</string>
- </property>
- <addaction name="actionNfo"/>
- <addaction name="actionNSIS"/>
- <addaction name="actionNncrontab"/>
- <addaction name="actionNim"/>
- </widget>
- <widget class="QMenu" name="menuA">
- <property name="title">
- <string>A</string>
- </property>
- <addaction name="actionASP"/>
- <addaction name="actionActionScript"/>
- <addaction name="actionAssembly"/>
- <addaction name="actionAutoIt"/>
- <addaction name="actionAviSynth"/>
- <addaction name="actionASN1"/>
- <addaction name="actionAVS"/>
- </widget>
- <widget class="QMenu" name="menuS">
- <property name="title">
- <string>S</string>
- </property>
- <addaction name="actionSql"/>
- <addaction name="actionShell"/>
- <addaction name="actionScheme"/>
- <addaction name="actionSmalltalk"/>
- <addaction name="actionS_Record"/>
- <addaction name="actionSwift"/>
- <addaction name="actionSpice"/>
- </widget>
- <widget class="QMenu" name="menuV">
- <property name="title">
- <string>V</string>
- </property>
- <addaction name="actionVerilog"/>
- <addaction name="actionVirsual_Basic"/>
- <addaction name="actionVHDL"/>
- <addaction name="actionVisual_Prolog"/>
- </widget>
- <widget class="QMenu" name="menuL">
- <property name="title">
- <string>L</string>
- </property>
- <addaction name="actionLua"/>
- <addaction name="actionLisp"/>
- <addaction name="actionLaTex"/>
- </widget>
- <widget class="QMenu" name="menuT">
- <property name="title">
- <string>T</string>
- </property>
- <addaction name="actionTex"/>
- <addaction name="actionTcl"/>
- <addaction name="actionTypeScript"/>
- <addaction name="actionTxt2tags"/>
- </widget>
- <widget class="QMenu" name="menuF">
- <property name="title">
- <string>F</string>
- </property>
- <addaction name="actionFortran"/>
- <addaction name="actionFortran77"/>
- <addaction name="actionForth"/>
- <addaction name="actionFreeBasic"/>
- </widget>
- <widget class="QMenu" name="menuD">
- <property name="title">
- <string>D</string>
- </property>
- <addaction name="actionD_2"/>
- <addaction name="actionDiff"/>
- </widget>
- <widget class="QMenu" name="menuO">
- <property name="title">
- <string>O</string>
- </property>
- <addaction name="actionOScript"/>
- <addaction name="actionOctave"/>
- </widget>
- <widget class="QMenu" name="menuE">
- <property name="title">
- <string>E</string>
- </property>
- <addaction name="actionESCRIPT"/>
- <addaction name="actionErlang"/>
- <addaction name="actionEdifact"/>
- </widget>
- <widget class="QMenu" name="menuG">
- <property name="title">
- <string>G</string>
- </property>
- <addaction name="actionGo"/>
- </widget>
- <addaction name="menuA"/>
- <addaction name="menuB"/>
- <addaction name="menuC"/>
- <addaction name="menuD"/>
- <addaction name="menuE"/>
- <addaction name="menuF"/>
- <addaction name="menuG"/>
- <addaction name="menuH"/>
- <addaction name="menuI"/>
- <addaction name="menuJ"/>
- <addaction name="menuL"/>
- <addaction name="menuM"/>
- <addaction name="menuN"/>
- <addaction name="menuO"/>
- <addaction name="menuP"/>
- <addaction name="menuR"/>
- <addaction name="menuS"/>
- <addaction name="menuT"/>
- <addaction name="menuV"/>
- <addaction name="actionXML"/>
- <addaction name="actionYAML"/>
- <addaction name="actionTxt"/>
- </widget>
- <widget class="QMenu" name="menuSet">
- <property name="title">
- <string>Set</string>
- </property>
- <widget class="QMenu" name="menuStyle">
- <property name="title">
- <string>Style</string>
- </property>
- <addaction name="actionDefaultStyle"/>
- <addaction name="actionLightBlueStyle"/>
- <addaction name="actionThinBlue"/>
- <addaction name="actionYellow"/>
- <addaction name="actionRiceYellow"/>
- <addaction name="actionSilver"/>
- <addaction name="actionLavenderBlush"/>
- <addaction name="actionMistyRose"/>
- </widget>
- <widget class="QMenu" name="menuLanguage_2">
- <property name="title">
- <string>Language</string>
- </property>
- <addaction name="actionChinese"/>
- <addaction name="actionEnglish"/>
- </widget>
- <addaction name="actionOptions"/>
- <addaction name="menuStyle"/>
- <addaction name="menuLanguage_2"/>
- <addaction name="actionLanguage_Format"/>
- </widget>
- <widget class="QMenu" name="menuAbout">
- <property name="title">
- <string>Feedback</string>
- </property>
- <addaction name="actionDonate"/>
- <addaction name="actionCC_Pad"/>
- <addaction name="actionRegister"/>
- </widget>
- <addaction name="menuFile"/>
- <addaction name="menuEdit"/>
- <addaction name="menuSearch"/>
- <addaction name="menuView"/>
- <addaction name="menuCode"/>
- <addaction name="menuLanguage"/>
- <addaction name="menuSet"/>
- <addaction name="menuAbout"/>
- </widget>
- <widget class="QToolBar" name="mainToolBar">
- <property name="movable">
- <bool>false</bool>
- </property>
- <property name="floatable">
- <bool>true</bool>
- </property>
- <attribute name="toolBarArea">
- <enum>TopToolBarArea</enum>
- </attribute>
- <attribute name="toolBarBreak">
- <bool>false</bool>
- </attribute>
- </widget>
- <widget class="QStatusBar" name="statusBar"/>
- <action name="actionNewFile">
- <property name="text">
- <string>New</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+N</string>
- </property>
- </action>
- <action name="actionOpenFile">
- <property name="text">
- <string>Open ...</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+O</string>
- </property>
- </action>
- <action name="actionSave">
- <property name="text">
- <string>Save</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+S</string>
- </property>
- </action>
- <action name="actionSave_as">
- <property name="text">
- <string>Save As ...</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Alt+S</string>
- </property>
- </action>
- <action name="actionClose">
- <property name="text">
- <string>Close</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+W</string>
- </property>
- </action>
- <action name="actionExit">
- <property name="text">
- <string>Exit</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Q</string>
- </property>
- </action>
- <action name="actionClose_All">
- <property name="text">
- <string>Close All</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+W</string>
- </property>
- </action>
- <action name="actionundo">
- <property name="text">
- <string>Undo</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Z</string>
- </property>
- </action>
- <action name="actionredo">
- <property name="text">
- <string>Redo</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Y</string>
- </property>
- </action>
- <action name="actioncut">
- <property name="text">
- <string>Cut</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+X</string>
- </property>
- </action>
- <action name="actioncopy">
- <property name="text">
- <string>Copy</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+C</string>
- </property>
- </action>
- <action name="actionpaste">
- <property name="text">
- <string>Paste</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+V</string>
- </property>
- </action>
- <action name="actionselect_All">
- <property name="text">
- <string>Select All</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+A</string>
- </property>
- </action>
- <action name="actionconver_windows_CR_LF">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Windows(CR+LF)</string>
- </property>
- </action>
- <action name="actionconvert_Unix_LF">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Unix(LF)</string>
- </property>
- </action>
- <action name="actionconvert_Mac_CR">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Mac(CR)</string>
- </property>
- </action>
- <action name="actionFind">
- <property name="text">
- <string>Find</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+F</string>
- </property>
- </action>
- <action name="actionReplace">
- <property name="text">
- <string>Replace</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+R</string>
- </property>
- </action>
- <action name="actionGoline">
- <property name="text">
- <string>Go line</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+G</string>
- </property>
- </action>
- <action name="actionshow_Spaces_tabs">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Show spaces/tabs</string>
- </property>
- </action>
- <action name="actionshow_end_of_line">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Show end of line</string>
- </property>
- </action>
- <action name="actionshow_all">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Show all</string>
- </property>
- </action>
- <action name="actionencode_in_GBK">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Encode in GBK</string>
- </property>
- </action>
- <action name="actionencode_in_uft8">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Encode in UTF8</string>
- </property>
- </action>
- <action name="actionencode_in_UTF8_BOM">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Encode in UTF8-BOM</string>
- </property>
- </action>
- <action name="actionencode_in_UCS_BE_BOM">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Encode in UCS-2 BE BOM</string>
- </property>
- </action>
- <action name="actionencode_in_UCS_2_LE_BOM">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Encode in UCS-2 LE BOM</string>
- </property>
- </action>
- <action name="actionconvert_to_GBK">
- <property name="text">
- <string>Convert to GBK</string>
- </property>
- </action>
- <action name="actionconvert_to_UTF8">
- <property name="text">
- <string>Convert to UTF8</string>
- </property>
- </action>
- <action name="actionconvert_to_UTF8_BOM">
- <property name="text">
- <string>Convert to UTF8-BOM</string>
- </property>
- </action>
- <action name="actionconvert_to_UCS_2_BE_BOM">
- <property name="text">
- <string>Convert to UCS-2 BE BOM</string>
- </property>
- </action>
- <action name="actionconvert_to_UCS_2_LE_BOM">
- <property name="text">
- <string>Convert to UCS-2 LE BOM</string>
- </property>
- </action>
- <action name="actionbatch_convert">
- <property name="text">
- <string>Batch convert</string>
- </property>
- </action>
- <action name="actionOptions">
- <property name="text">
- <string>Options</string>
- </property>
- </action>
- <action name="actionCC_Pad">
- <property name="text">
- <string>BugFix</string>
- </property>
- </action>
- <action name="actionFile_compare">
- <property name="text">
- <string>File compare</string>
- </property>
- </action>
- <action name="actionDir_compare">
- <property name="text">
- <string>Dir compare</string>
- </property>
- </action>
- <action name="actionR">
- <property name="text">
- <string>R</string>
- </property>
- </action>
- <action name="actionXML">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>XML</string>
- </property>
- </action>
- <action name="actionYAML">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>YAML</string>
- </property>
- </action>
- <action name="actionPhp">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Php</string>
- </property>
- </action>
- <action name="actionC">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>C</string>
- </property>
- </action>
- <action name="actionCPP">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>C++</string>
- </property>
- </action>
- <action name="actionCShape">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>C#</string>
- </property>
- </action>
- <action name="actionObjective_C">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Objective C</string>
- </property>
- </action>
- <action name="actionJava">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Java</string>
- </property>
- </action>
- <action name="actionRC">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>RC</string>
- </property>
- </action>
- <action name="actionHTML">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>HTML</string>
- </property>
- </action>
- <action name="actionMakefile">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Makefile</string>
- </property>
- </action>
- <action name="actionPascal">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Pascal</string>
- </property>
- </action>
- <action name="actionBatch">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Batch</string>
- </property>
- </action>
- <action name="actionini">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>ini</string>
- </property>
- </action>
- <action name="actionNfo">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Nfo</string>
- </property>
- </action>
- <action name="actionASP">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Asp</string>
- </property>
- </action>
- <action name="actionSql">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Sql</string>
- </property>
- </action>
- <action name="actionVirsual_Basic">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Virsual Basic</string>
- </property>
- </action>
- <action name="actionJavaScript">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>JavaScript</string>
- </property>
- </action>
- <action name="actionCss">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Css</string>
- </property>
- </action>
- <action name="actionPerl">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Perl</string>
- </property>
- </action>
- <action name="actionPython">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Python</string>
- </property>
- </action>
- <action name="actionLua">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Lua</string>
- </property>
- </action>
- <action name="actionTex">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Tex</string>
- </property>
- </action>
- <action name="actionFortran">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Fortran</string>
- </property>
- </action>
- <action name="actionShell">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Shell</string>
- </property>
- </action>
- <action name="actionActionScript">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>ActionScript</string>
- </property>
- </action>
- <action name="actionNSIS">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>NSIS</string>
- </property>
- </action>
- <action name="actionTcl">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Tcl</string>
- </property>
- </action>
- <action name="actionLisp">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Lisp</string>
- </property>
- </action>
- <action name="actionScheme">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Scheme</string>
- </property>
- </action>
- <action name="actionAssembly">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Assembly</string>
- </property>
- </action>
- <action name="actionD">
- <property name="text">
- <string>D</string>
- </property>
- </action>
- <action name="actionDiff">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Diff</string>
- </property>
- </action>
- <action name="actionProperties_file">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Properties file</string>
- </property>
- </action>
- <action name="actionPostScript">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>PostScript</string>
- </property>
- </action>
- <action name="actionRuby">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Ruby</string>
- </property>
- </action>
- <action name="actionSmalltalk">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Smalltalk</string>
- </property>
- </action>
- <action name="actionVHDL">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>VHDL</string>
- </property>
- </action>
- <action name="actionAutoIt">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>AutoIt</string>
- </property>
- </action>
- <action name="actionCMake">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>CMake</string>
- </property>
- </action>
- <action name="actionPowerShell">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>PowerShell</string>
- </property>
- </action>
- <action name="actionJsp">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Jsp</string>
- </property>
- </action>
- <action name="actionCoffeeScript">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>CoffeeScript</string>
- </property>
- </action>
- <action name="actionBaanC">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>BaanC</string>
- </property>
- </action>
- <action name="actionS_Record">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>S-Record</string>
- </property>
- </action>
- <action name="actionTypeScript">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>TypeScript</string>
- </property>
- </action>
- <action name="actionVisual_Prolog">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Visual Prolog</string>
- </property>
- </action>
- <action name="actionTxt2tags">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Txt2tags</string>
- </property>
- </action>
- <action name="actionRust">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Rust</string>
- </property>
- </action>
- <action name="actionRegistry">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Registry</string>
- </property>
- </action>
- <action name="actionREBOL">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>REBOL</string>
- </property>
- </action>
- <action name="actionOScript">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>OScript</string>
- </property>
- </action>
- <action name="actionNncrontab">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Nncrontab</string>
- </property>
- </action>
- <action name="actionNim">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Nim</string>
- </property>
- </action>
- <action name="actionMMIXAL">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>MMIXAL</string>
- </property>
- </action>
- <action name="actionLaTex">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>LaTex</string>
- </property>
- </action>
- <action name="actionForth">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Forth</string>
- </property>
- </action>
- <action name="actionESCRIPT">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>ESCRIPT</string>
- </property>
- </action>
- <action name="actionErlang">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Erlang</string>
- </property>
- </action>
- <action name="actionCsound">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Csound</string>
- </property>
- </action>
- <action name="actionFreeBasic">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>FreeBasic</string>
- </property>
- </action>
- <action name="actionBlitzBasic">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>BlitzBasic</string>
- </property>
- </action>
- <action name="actionPureBasic">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>PureBasic</string>
- </property>
- </action>
- <action name="actionAviSynth">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>AviSynth</string>
- </property>
- </action>
- <action name="actionASN1">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>ASN.1</string>
- </property>
- </action>
- <action name="actionSwift">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Swift</string>
- </property>
- </action>
- <action name="actionIntel_HEX">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Intel HEX</string>
- </property>
- </action>
- <action name="actionFortran77">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Fortran77</string>
- </property>
- </action>
- <action name="actionEdifact">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Edifact</string>
- </property>
- </action>
- <action name="actionMarkDown">
- <property name="text">
- <string>MarkDown</string>
- </property>
- </action>
- <action name="actionMarkDown_2">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>MarkDown</string>
- </property>
- </action>
- <action name="actionOctave">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Octave</string>
- </property>
- </action>
- <action name="actionPo">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Po</string>
- </property>
- </action>
- <action name="actionPov">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Pov</string>
- </property>
- </action>
- <action name="actionjson">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>json</string>
- </property>
- </action>
- <action name="actionD_2">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>D</string>
- </property>
- </action>
- <action name="actionAVS">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>AVS</string>
- </property>
- </action>
- <action name="actionbash">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Bash</string>
- </property>
- </action>
- <action name="actionIDL">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>IDL</string>
- </property>
- </action>
- <action name="actionMatlab">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Matlab</string>
- </property>
- </action>
- <action name="actionSpice">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Spice</string>
- </property>
- </action>
- <action name="actionVerilog">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Verilog</string>
- </property>
- </action>
- <action name="actionTxt">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>TXT</string>
- </property>
- </action>
- <action name="actiontest">
- <property name="text">
- <string>test</string>
- </property>
- </action>
- <action name="actiontest_2">
- <property name="text">
- <string>test</string>
- </property>
- </action>
- <action name="actionGo">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>go</string>
- </property>
- </action>
- <action name="actionSearch_Result">
- <property name="text">
- <string>Search Result</string>
- </property>
- </action>
- <action name="actionDonate">
- <property name="text">
- <string>Donate</string>
- </property>
- </action>
- <action name="actionDefaultStyle">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Default</string>
- </property>
- </action>
- <action name="actionLightBlueStyle">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>LightBlue</string>
- </property>
- </action>
- <action name="actionThinBlue">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>ThinBlue</string>
- </property>
- </action>
- <action name="actionRiceYellow">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>RiceYellow</string>
- </property>
- </action>
- <action name="actionYellow">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Yellow</string>
- </property>
- </action>
- <action name="actionSilver">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Silver</string>
- </property>
- </action>
- <action name="actionLavenderBlush">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>LavenderBlush</string>
- </property>
- </action>
- <action name="actionMistyRose">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>MistyRose</string>
- </property>
- </action>
- <action name="actionEnglish">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>English</string>
- </property>
- </action>
- <action name="actionChinese">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Chinese</string>
- </property>
- </action>
- <action name="actionRegister">
- <property name="text">
- <string>Register</string>
- </property>
- </action>
- <action name="actionLanguage_Format">
- <property name="text">
- <string>Language Format</string>
- </property>
- </action>
- <action name="actionOpen_In_Text">
- <property name="text">
- <string>Open In Text</string>
- </property>
- </action>
- <action name="actionOpen_In_Bin">
- <property name="text">
- <string>Open In Bin</string>
- </property>
- </action>
- <action name="actionRemove_leading_blank">
- <property name="text">
- <string>Remove Head Blank</string>
- </property>
- </action>
- <action name="actionRemove_eding_blank">
- <property name="text">
- <string>Remove End Blank</string>
- </property>
- </action>
- <action name="actionRemove_Head_End_Blank">
- <property name="text">
- <string>Remove Head End Blank</string>
- </property>
- </action>
- <action name="actionColumn_Block_Editing">
- <property name="text">
- <string>Column Block Editing</string>
- </property>
- </action>
- <action name="actionWrap">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Wrap</string>
- </property>
- </action>
- </widget>
- <layoutdefault spacing="6" margin="11"/>
- <resources>
- <include location="../RealCompare.qrc"/>
- </resources>
- <connections>
- <connection>
- <sender>actionNewFile</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_actionNewFile_toggle(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionOpenFile</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_actionOpenFile_toggle(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionSave</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_actionSaveFile_toggle(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionSave_as</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_actionSaveAsFile_toggle(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionClose</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_actionClose(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionExit</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_quit(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionClose_All</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_closeAllFile(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionredo</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_redo()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionundo</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_undo()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actioncopy</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_copy()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionpaste</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_paste()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actioncut</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_cut()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionselect_All</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_selectAll()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionconvert_Mac_CR</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_convertMacLineEnd(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionconver_windows_CR_LF</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_convertWinLineEnd(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionconvert_Unix_LF</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_convertUnixLineEnd(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionFind</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_find()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionReplace</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_replace()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionGoline</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_gotoline()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionshow_Spaces_tabs</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_show_spaces(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionshow_end_of_line</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_show_line_end(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionshow_all</sender>
- <signal>triggered(bool)</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_show_all(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionencode_in_GBK</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_load_with_gbk()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionconvert_to_UTF8</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_encode_utf8()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionconvert_to_UTF8_BOM</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_encode_utf8_bom()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionconvert_to_UCS_2_BE_BOM</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_encode_utf16_be()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionencode_in_UCS_2_LE_BOM</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_load_with_utf16_le()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionencode_in_UCS_BE_BOM</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_load_with_utf16_be()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionencode_in_UTF8_BOM</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_load_with_utf8_bom()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionencode_in_uft8</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_load_with_utf8()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionconvert_to_GBK</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_encode_gbk()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionconvert_to_UCS_2_LE_BOM</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_encode_utf16_le()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>393</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionDir_compare</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_compareDir()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionFile_compare</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_compareFile()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionCC_Pad</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_about()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionbatch_convert</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_batch_convert()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionOptions</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_options()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionSearch_Result</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_searchResultShow()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionDonate</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_donate()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionDefaultStyle</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_toDefaultStyle()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionLightBlueStyle</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_toLightBlueStyle()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionThinBlue</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_toThinBlueStyle()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionRiceYellow</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_toRiceYellow()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionYellow</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_toYellow()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionSilver</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_toSilverStyle()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionLavenderBlush</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_toThinBlueStyle()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionMistyRose</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_toMistyRose()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>379</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionEnglish</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_changeEnglish()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>601</x>
- <y>394</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionChinese</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_changeChinese()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>601</x>
- <y>394</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionRegister</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_register()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>601</x>
- <y>394</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionLanguage_Format</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_langFormat()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>601</x>
- <y>394</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionOpen_In_Text</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_reOpenTextMode()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>601</x>
- <y>394</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionOpen_In_Bin</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_reOpenHexMode()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>601</x>
- <y>394</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionRemove_leading_blank</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_removeHeadBlank()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>601</x>
- <y>394</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionRemove_eding_blank</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_removeEndBlank()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>601</x>
- <y>394</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionRemove_Head_End_Blank</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_removeHeadEndBlank()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>601</x>
- <y>394</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionColumn_Block_Editing</sender>
- <signal>triggered()</signal>
- <receiver>CCNotePad</receiver>
- <slot>slot_columnBlockEdit()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>792</x>
- <y>394</y>
- </hint>
- </hints>
- </connection>
- </connections>
- <slots>
- <slot>slot_actionNewFile_toggle(bool)</slot>
- <slot>slot_actionOpenFile_toggle(bool)</slot>
- <slot>slot_actionSaveFile_toggle(bool)</slot>
- <slot>slot_actionSaveAsFile_toggle(bool)</slot>
- <slot>slot_actionClose(bool)</slot>
- <slot>slot_quit(bool)</slot>
- <slot>slot_closeAllFile(bool)</slot>
- <slot>slot_undo()</slot>
- <slot>slot_redo()</slot>
- <slot>slot_cut()</slot>
- <slot>slot_copy()</slot>
- <slot>slot_paste()</slot>
- <slot>slot_selectAll()</slot>
- <slot>slot_convertWinLineEnd(bool)</slot>
- <slot>slot_convertUnixLineEnd(bool)</slot>
- <slot>slot_convertMacLineEnd(bool)</slot>
- <slot>slot_find()</slot>
- <slot>slot_replace()</slot>
- <slot>slot_gotoline()</slot>
- <slot>slot_show_spaces(bool)</slot>
- <slot>slot_show_line_end(bool)</slot>
- <slot>slot_show_all(bool)</slot>
- <slot>slot_encode_gbk()</slot>
- <slot>slot_encode_utf8()</slot>
- <slot>slot_encode_utf8_bom()</slot>
- <slot>slot_encode_utf16_be()</slot>
- <slot>slot_encode_utf16_le()</slot>
- <slot>slot_compareFile()</slot>
- <slot>slot_compareDir()</slot>
- <slot>slot_about()</slot>
- <slot>slot_batch_convert()</slot>
- <slot>slot_donate()</slot>
- <slot>slot_options()</slot>
- <slot>slot_load_with_gbk()</slot>
- <slot>slot_load_with_utf8()</slot>
- <slot>slot_load_with_utf8_bom()</slot>
- <slot>slot_load_with_utf16_be()</slot>
- <slot>slot_load_with_utf16_le()</slot>
- <slot>slot_searchResultShow()</slot>
- <slot>slot_toDefaultStyle()</slot>
- <slot>slot_toLightBlueStyle()</slot>
- <slot>slot_toThinBlueStyle()</slot>
- <slot>slot_toRiceYellow()</slot>
- <slot>slot_toYellow()</slot>
- <slot>slot_toSilverStyle()</slot>
- <slot>slot_toLavenderBlush()</slot>
- <slot>slot_toMistyRose()</slot>
- <slot>slot_changeEnglish()</slot>
- <slot>slot_changeChinese()</slot>
- <slot>slot_register()</slot>
- <slot>slot_langFormat()</slot>
- <slot>slot_reOpenTextMode()</slot>
- <slot>slot_reOpenHexMode()</slot>
- <slot>slot_removeHeadBlank()</slot>
- <slot>slot_removeEndBlank()</slot>
- <slot>slot_removeHeadEndBlank()</slot>
- <slot>slot_columnBlockEdit()</slot>
- <slot>slot_wordwrap()</slot>
- </slots>
- </ui>
|