LUAEditorMainWindow.ui 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>LUAEditorMainWindow</class>
  4. <widget class="QMainWindow" name="LUAEditorMainWindow">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>1121</width>
  10. <height>872</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Lua Editor</string>
  15. </property>
  16. <property name="windowIcon">
  17. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  18. <normaloff>:/general/hex_lua_icon</normaloff>:/general/hex_lua_icon</iconset>
  19. </property>
  20. <property name="dockOptions">
  21. <set>QMainWindow::AllowNestedDocks|QMainWindow::AllowTabbedDocks|QMainWindow::AnimatedDocks</set>
  22. </property>
  23. <widget class="QWidget" name="centralwidget"/>
  24. <widget class="QMenuBar" name="m_menuBar">
  25. <property name="geometry">
  26. <rect>
  27. <x>0</x>
  28. <y>0</y>
  29. <width>1121</width>
  30. <height>21</height>
  31. </rect>
  32. </property>
  33. <widget class="QMenu" name="menuFile">
  34. <property name="title">
  35. <string>&amp;File</string>
  36. </property>
  37. <addaction name="actionNew"/>
  38. <addaction name="actionOpen"/>
  39. <widget class="QMenu" name="menuOpenRecent">
  40. <property name="title">
  41. <string>Open Recent</string>
  42. </property>
  43. </widget>
  44. <addaction name="menuOpenRecent"/>
  45. <addaction name="actionSave"/>
  46. <addaction name="actionSaveAs"/>
  47. <addaction name="actionSaveAll"/>
  48. <addaction name="separator"/>
  49. <addaction name="actionReload"/>
  50. <addaction name="separator"/>
  51. <addaction name="actionClose"/>
  52. <addaction name="actionCloseAll"/>
  53. <addaction name="actionCloseAllExcept"/>
  54. <addaction name="separator"/>
  55. </widget>
  56. <widget class="QMenu" name="menuEdit">
  57. <property name="title">
  58. <string>&amp;Edit</string>
  59. </property>
  60. <addaction name="actionUndo"/>
  61. <addaction name="actionRedo"/>
  62. <addaction name="separator"/>
  63. <addaction name="actionCut"/>
  64. <addaction name="actionCopy"/>
  65. <addaction name="actionPaste"/>
  66. <addaction name="separator"/>
  67. <addaction name="actionFind"/>
  68. <addaction name="actionFindNext"/>
  69. <addaction name="actionFindLocal"/>
  70. <addaction name="actionFindLocalReverse"/>
  71. <addaction name="actionFindInAllOpen"/>
  72. <addaction name="actionReplace"/>
  73. <addaction name="actionReplaceInAllOpen"/>
  74. <addaction name="separator"/>
  75. <addaction name="actionGoToLine"/>
  76. <addaction name="actionFoldAll"/>
  77. <addaction name="actionUnfoldAll"/>
  78. <addaction name="actionSelect_All"/>
  79. <addaction name="actionSelect_To_Brace"/>
  80. <addaction name="actionLinesUpTranspose"/>
  81. <addaction name="actionLinesDnTranspose"/>
  82. <addaction name="separator"/>
  83. <addaction name="actionComment_Selected_Block"/>
  84. <addaction name="actionUnComment_Selected_Block"/>
  85. </widget>
  86. <widget class="QMenu" name="menuView">
  87. <property name="title">
  88. <string>&amp;View</string>
  89. </property>
  90. <addaction name="actionResetZoom"/>
  91. </widget>
  92. <widget class="QMenu" name="menuDebug">
  93. <property name="title">
  94. <string>&amp;Debug</string>
  95. </property>
  96. <addaction name="action_togglebreak"/>
  97. <addaction name="separator"/>
  98. <addaction name="action_continue"/>
  99. <addaction name="action_stepover"/>
  100. <addaction name="action_stepin"/>
  101. <addaction name="action_stepout"/>
  102. <addaction name="separator"/>
  103. <addaction name="action_ExecuteOnTarget"/>
  104. <addaction name="action_execute"/>
  105. <addaction name="separator"/>
  106. </widget>
  107. <widget class="QMenu" name="menuSource_Control">
  108. <property name="title">
  109. <string>Source &amp;Control</string>
  110. </property>
  111. <addaction name="actionCheckOut"/>
  112. </widget>
  113. <widget class="QMenu" name="menu_Options">
  114. <property name="title">
  115. <string>&amp;Options</string>
  116. </property>
  117. <addaction name="actionAutocomplete"/>
  118. <addaction name="actionAutoReloadUnmodifiedFiles"/>
  119. <addaction name="actionSettings"/>
  120. </widget>
  121. <widget class="QMenu" name="menuHelp">
  122. <property name="title">
  123. <string>Help</string>
  124. </property>
  125. <addaction name="actionLuaDocumentation"/>
  126. </widget>
  127. <addaction name="menuFile"/>
  128. <addaction name="menuEdit"/>
  129. <addaction name="menuView"/>
  130. <addaction name="menu_Options"/>
  131. <addaction name="menuSource_Control"/>
  132. <addaction name="menuDebug"/>
  133. <addaction name="menuHelp"/>
  134. </widget>
  135. <widget class="QStatusBar" name="statusbar"/>
  136. <widget class="QDockWidget" name="watchDockWidget">
  137. <property name="enabled">
  138. <bool>true</bool>
  139. </property>
  140. <property name="styleSheet">
  141. <string notr="true"/>
  142. </property>
  143. <property name="windowTitle">
  144. <string>Watched Variables</string>
  145. </property>
  146. <attribute name="dockWidgetArea">
  147. <number>1</number>
  148. </attribute>
  149. <widget class="QWidget" name="watchLayout">
  150. <property name="enabled">
  151. <bool>true</bool>
  152. </property>
  153. <layout class="QHBoxLayout" name="horizontalLayout_2">
  154. <property name="spacing">
  155. <number>6</number>
  156. </property>
  157. <property name="leftMargin">
  158. <number>0</number>
  159. </property>
  160. <property name="topMargin">
  161. <number>0</number>
  162. </property>
  163. <property name="rightMargin">
  164. <number>0</number>
  165. </property>
  166. <property name="bottomMargin">
  167. <number>0</number>
  168. </property>
  169. <item>
  170. <widget class="DHWatchesWidget" name="watchTreeView">
  171. <property name="editTriggers">
  172. <set>QAbstractItemView::AnyKeyPressed|QAbstractItemView::DoubleClicked|QAbstractItemView::EditKeyPressed|QAbstractItemView::SelectedClicked</set>
  173. </property>
  174. <property name="tabKeyNavigation">
  175. <bool>true</bool>
  176. </property>
  177. <property name="alternatingRowColors">
  178. <bool>true</bool>
  179. </property>
  180. <property name="selectionBehavior">
  181. <enum>QAbstractItemView::SelectItems</enum>
  182. </property>
  183. <property name="textElideMode">
  184. <enum>Qt::ElideLeft</enum>
  185. </property>
  186. <property name="indentation">
  187. <number>16</number>
  188. </property>
  189. <property name="uniformRowHeights">
  190. <bool>false</bool>
  191. </property>
  192. <property name="sortingEnabled">
  193. <bool>true</bool>
  194. </property>
  195. <property name="allColumnsShowFocus">
  196. <bool>true</bool>
  197. </property>
  198. <property name="headerHidden">
  199. <bool>false</bool>
  200. </property>
  201. <property name="expandsOnDoubleClick">
  202. <bool>false</bool>
  203. </property>
  204. <attribute name="headerVisible">
  205. <bool>true</bool>
  206. </attribute>
  207. <attribute name="headerDefaultSectionSize">
  208. <number>128</number>
  209. </attribute>
  210. <attribute name="headerMinimumSectionSize">
  211. <number>32</number>
  212. </attribute>
  213. </widget>
  214. </item>
  215. </layout>
  216. </widget>
  217. </widget>
  218. <widget class="QDockWidget" name="breakpointsDockWidget">
  219. <property name="windowTitle">
  220. <string>Breakpoints</string>
  221. </property>
  222. <attribute name="dockWidgetArea">
  223. <number>1</number>
  224. </attribute>
  225. <widget class="QWidget" name="breakpointsLayout">
  226. <layout class="QHBoxLayout" name="horizontalLayout_3">
  227. <property name="leftMargin">
  228. <number>0</number>
  229. </property>
  230. <property name="topMargin">
  231. <number>0</number>
  232. </property>
  233. <property name="rightMargin">
  234. <number>0</number>
  235. </property>
  236. <property name="bottomMargin">
  237. <number>0</number>
  238. </property>
  239. <item>
  240. <widget class="DHBreakpointsWidget" name="breakpointsTableView">
  241. <property name="editTriggers">
  242. <set>QAbstractItemView::NoEditTriggers</set>
  243. </property>
  244. <property name="selectionMode">
  245. <enum>QAbstractItemView::ExtendedSelection</enum>
  246. </property>
  247. <property name="selectionBehavior">
  248. <enum>QAbstractItemView::SelectRows</enum>
  249. </property>
  250. <property name="textElideMode">
  251. <enum>Qt::ElideLeft</enum>
  252. </property>
  253. <property name="columnCount">
  254. <number>2</number>
  255. </property>
  256. <attribute name="horizontalHeaderDefaultSectionSize">
  257. <number>48</number>
  258. </attribute>
  259. <attribute name="horizontalHeaderMinimumSectionSize">
  260. <number>16</number>
  261. </attribute>
  262. <attribute name="horizontalHeaderStretchLastSection">
  263. <bool>true</bool>
  264. </attribute>
  265. <attribute name="verticalHeaderVisible">
  266. <bool>false</bool>
  267. </attribute>
  268. <attribute name="verticalHeaderDefaultSectionSize">
  269. <number>24</number>
  270. </attribute>
  271. <attribute name="verticalHeaderMinimumSectionSize">
  272. <number>16</number>
  273. </attribute>
  274. <column>
  275. <property name="text">
  276. <string>Line</string>
  277. </property>
  278. </column>
  279. <column>
  280. <property name="text">
  281. <string>Script</string>
  282. </property>
  283. </column>
  284. </widget>
  285. </item>
  286. </layout>
  287. </widget>
  288. </widget>
  289. <widget class="QDockWidget" name="stackDockWidget">
  290. <property name="windowTitle">
  291. <string>Stack</string>
  292. </property>
  293. <attribute name="dockWidgetArea">
  294. <number>8</number>
  295. </attribute>
  296. <widget class="QWidget" name="stackLayout">
  297. <layout class="QHBoxLayout" name="horizontalLayout_4">
  298. <property name="leftMargin">
  299. <number>0</number>
  300. </property>
  301. <property name="topMargin">
  302. <number>0</number>
  303. </property>
  304. <property name="rightMargin">
  305. <number>0</number>
  306. </property>
  307. <property name="bottomMargin">
  308. <number>0</number>
  309. </property>
  310. <item>
  311. <widget class="DHStackWidget" name="stackTableView">
  312. <property name="editTriggers">
  313. <set>QAbstractItemView::NoEditTriggers</set>
  314. </property>
  315. <property name="selectionBehavior">
  316. <enum>QAbstractItemView::SelectRows</enum>
  317. </property>
  318. <property name="textElideMode">
  319. <enum>Qt::ElideLeft</enum>
  320. </property>
  321. <property name="columnCount">
  322. <number>2</number>
  323. </property>
  324. <attribute name="horizontalHeaderDefaultSectionSize">
  325. <number>48</number>
  326. </attribute>
  327. <attribute name="horizontalHeaderMinimumSectionSize">
  328. <number>16</number>
  329. </attribute>
  330. <attribute name="horizontalHeaderStretchLastSection">
  331. <bool>true</bool>
  332. </attribute>
  333. <attribute name="verticalHeaderVisible">
  334. <bool>false</bool>
  335. </attribute>
  336. <attribute name="verticalHeaderDefaultSectionSize">
  337. <number>24</number>
  338. </attribute>
  339. <attribute name="verticalHeaderMinimumSectionSize">
  340. <number>16</number>
  341. </attribute>
  342. <column>
  343. <property name="text">
  344. <string>Line</string>
  345. </property>
  346. </column>
  347. <column>
  348. <property name="text">
  349. <string>Script</string>
  350. </property>
  351. </column>
  352. </widget>
  353. </item>
  354. </layout>
  355. </widget>
  356. </widget>
  357. <widget class="QDockWidget" name="localsDockWidget">
  358. <property name="windowTitle">
  359. <string>LUA Locals</string>
  360. </property>
  361. <attribute name="dockWidgetArea">
  362. <number>8</number>
  363. </attribute>
  364. <widget class="QWidget" name="localsLayout">
  365. <layout class="QHBoxLayout" name="horizontalLayout_41">
  366. <property name="leftMargin">
  367. <number>0</number>
  368. </property>
  369. <property name="topMargin">
  370. <number>0</number>
  371. </property>
  372. <property name="rightMargin">
  373. <number>0</number>
  374. </property>
  375. <property name="bottomMargin">
  376. <number>0</number>
  377. </property>
  378. <item>
  379. <widget class="DHWatchesWidget" name="localsTreeView">
  380. <property name="editTriggers">
  381. <set>QAbstractItemView::DoubleClicked|QAbstractItemView::EditKeyPressed|QAbstractItemView::SelectedClicked</set>
  382. </property>
  383. <property name="tabKeyNavigation">
  384. <bool>true</bool>
  385. </property>
  386. <property name="alternatingRowColors">
  387. <bool>true</bool>
  388. </property>
  389. <property name="selectionBehavior">
  390. <enum>QAbstractItemView::SelectItems</enum>
  391. </property>
  392. <property name="textElideMode">
  393. <enum>Qt::ElideLeft</enum>
  394. </property>
  395. </widget>
  396. </item>
  397. </layout>
  398. </widget>
  399. </widget>
  400. <widget class="QDockWidget" name="m_dockLog">
  401. <property name="windowTitle">
  402. <string>Log</string>
  403. </property>
  404. <attribute name="dockWidgetArea">
  405. <number>8</number>
  406. </attribute>
  407. <widget class="QWidget" name="dockWidgetContents">
  408. <layout class="QHBoxLayout" name="horizontalLayout">
  409. <property name="spacing">
  410. <number>0</number>
  411. </property>
  412. <property name="leftMargin">
  413. <number>0</number>
  414. </property>
  415. <property name="topMargin">
  416. <number>0</number>
  417. </property>
  418. <property name="rightMargin">
  419. <number>0</number>
  420. </property>
  421. <property name="bottomMargin">
  422. <number>0</number>
  423. </property>
  424. <item>
  425. <widget class="AzToolsFramework::LogPanel::TracePrintFLogPanel" name="m_logPanel" native="true"/>
  426. </item>
  427. </layout>
  428. </widget>
  429. </widget>
  430. <widget class="QToolBar" name="fileToolBar">
  431. <property name="windowTitle">
  432. <string>File Tool Bar</string>
  433. </property>
  434. <property name="floatable">
  435. <bool>false</bool>
  436. </property>
  437. <attribute name="toolBarArea">
  438. <enum>TopToolBarArea</enum>
  439. </attribute>
  440. <attribute name="toolBarBreak">
  441. <bool>false</bool>
  442. </attribute>
  443. <addaction name="actionOpen"/>
  444. <addaction name="actionNew"/>
  445. <addaction name="actionSave"/>
  446. <addaction name="actionSaveAll"/>
  447. </widget>
  448. <widget class="QToolBar" name="editToolBar">
  449. <property name="windowTitle">
  450. <string>Edit Tool Bar</string>
  451. </property>
  452. <property name="floatable">
  453. <bool>false</bool>
  454. </property>
  455. <attribute name="toolBarArea">
  456. <enum>TopToolBarArea</enum>
  457. </attribute>
  458. <attribute name="toolBarBreak">
  459. <bool>false</bool>
  460. </attribute>
  461. <addaction name="actionUndo"/>
  462. <addaction name="actionRedo"/>
  463. <addaction name="separator"/>
  464. <addaction name="actionCut"/>
  465. <addaction name="actionCopy"/>
  466. <addaction name="actionPaste"/>
  467. <addaction name="separator"/>
  468. <addaction name="actionFind"/>
  469. <addaction name="actionFindNext"/>
  470. <addaction name="actionFindLocal"/>
  471. <addaction name="actionFindLocalReverse"/>
  472. <addaction name="actionReplace"/>
  473. <addaction name="actionReplaceInAllOpen"/>
  474. </widget>
  475. <widget class="QToolBar" name="sourceControlToolBar">
  476. <property name="windowTitle">
  477. <string>Source Control Tool Bar</string>
  478. </property>
  479. <property name="floatable">
  480. <bool>false</bool>
  481. </property>
  482. <attribute name="toolBarArea">
  483. <enum>TopToolBarArea</enum>
  484. </attribute>
  485. <attribute name="toolBarBreak">
  486. <bool>false</bool>
  487. </attribute>
  488. <addaction name="actionCheckOut"/>
  489. </widget>
  490. <widget class="QToolBar" name="viewToolBar">
  491. <property name="windowTitle">
  492. <string>View Tool Bar</string>
  493. </property>
  494. <property name="floatable">
  495. <bool>false</bool>
  496. </property>
  497. <attribute name="toolBarArea">
  498. <enum>TopToolBarArea</enum>
  499. </attribute>
  500. <attribute name="toolBarBreak">
  501. <bool>false</bool>
  502. </attribute>
  503. </widget>
  504. <widget class="QDockWidget" name="findResultsDockWidget">
  505. <property name="windowTitle">
  506. <string>Find Results</string>
  507. </property>
  508. <attribute name="dockWidgetArea">
  509. <number>8</number>
  510. </attribute>
  511. <widget class="QWidget" name="dockWidgetContents_1">
  512. <layout class="QHBoxLayout" name="horizontalLayout_18">
  513. <property name="leftMargin">
  514. <number>0</number>
  515. </property>
  516. <property name="topMargin">
  517. <number>0</number>
  518. </property>
  519. <property name="rightMargin">
  520. <number>0</number>
  521. </property>
  522. <property name="bottomMargin">
  523. <number>0</number>
  524. </property>
  525. <item>
  526. <widget class="AzQtComponents::TabWidget" name="findTabWidget">
  527. <property name="enabled">
  528. <bool>true</bool>
  529. </property>
  530. <property name="styleSheet">
  531. <string notr="true"/>
  532. </property>
  533. <property name="tabShape">
  534. <enum>QTabWidget::Rounded</enum>
  535. </property>
  536. <property name="currentIndex">
  537. <number>3</number>
  538. </property>
  539. <property name="documentMode">
  540. <bool>false</bool>
  541. </property>
  542. <property name="tabsClosable">
  543. <bool>false</bool>
  544. </property>
  545. <property name="movable">
  546. <bool>true</bool>
  547. </property>
  548. <widget class="QWidget" name="find1Layout">
  549. <attribute name="title">
  550. <string>Find 1</string>
  551. </attribute>
  552. <layout class="QHBoxLayout" name="horizontalLayout_14">
  553. <property name="leftMargin">
  554. <number>0</number>
  555. </property>
  556. <property name="topMargin">
  557. <number>0</number>
  558. </property>
  559. <property name="rightMargin">
  560. <number>0</number>
  561. </property>
  562. <property name="bottomMargin">
  563. <number>0</number>
  564. </property>
  565. <item>
  566. <widget class="LUAEditor::FindResults" name="m_findResults1" native="true"/>
  567. </item>
  568. </layout>
  569. </widget>
  570. <widget class="QWidget" name="find2Layout">
  571. <attribute name="title">
  572. <string>Find 2</string>
  573. </attribute>
  574. <layout class="QHBoxLayout" name="horizontalLayout_15">
  575. <property name="leftMargin">
  576. <number>0</number>
  577. </property>
  578. <property name="topMargin">
  579. <number>0</number>
  580. </property>
  581. <property name="rightMargin">
  582. <number>0</number>
  583. </property>
  584. <property name="bottomMargin">
  585. <number>0</number>
  586. </property>
  587. <item>
  588. <widget class="LUAEditor::FindResults" name="m_findResults2" native="true"/>
  589. </item>
  590. </layout>
  591. </widget>
  592. <widget class="QWidget" name="find3Layout">
  593. <attribute name="title">
  594. <string>Find 3</string>
  595. </attribute>
  596. <layout class="QHBoxLayout" name="horizontalLayout_16">
  597. <property name="leftMargin">
  598. <number>0</number>
  599. </property>
  600. <property name="topMargin">
  601. <number>0</number>
  602. </property>
  603. <property name="rightMargin">
  604. <number>0</number>
  605. </property>
  606. <property name="bottomMargin">
  607. <number>0</number>
  608. </property>
  609. <item>
  610. <widget class="LUAEditor::FindResults" name="m_findResults3" native="true"/>
  611. </item>
  612. </layout>
  613. </widget>
  614. <widget class="QWidget" name="find4Layout">
  615. <attribute name="title">
  616. <string>Find 4</string>
  617. </attribute>
  618. <layout class="QHBoxLayout" name="horizontalLayout_17">
  619. <property name="leftMargin">
  620. <number>0</number>
  621. </property>
  622. <property name="topMargin">
  623. <number>0</number>
  624. </property>
  625. <property name="rightMargin">
  626. <number>0</number>
  627. </property>
  628. <property name="bottomMargin">
  629. <number>0</number>
  630. </property>
  631. <item>
  632. <widget class="LUAEditor::FindResults" name="m_findResults4" native="true"/>
  633. </item>
  634. </layout>
  635. </widget>
  636. </widget>
  637. </item>
  638. </layout>
  639. </widget>
  640. </widget>
  641. <widget class="QToolBar" name="debugToolbar">
  642. <property name="windowTitle">
  643. <string>Debug Toolbar</string>
  644. </property>
  645. <property name="floatable">
  646. <bool>false</bool>
  647. </property>
  648. <attribute name="toolBarArea">
  649. <enum>TopToolBarArea</enum>
  650. </attribute>
  651. <attribute name="toolBarBreak">
  652. <bool>false</bool>
  653. </attribute>
  654. <addaction name="action_togglebreak"/>
  655. <addaction name="separator"/>
  656. <addaction name="action_continue"/>
  657. <addaction name="action_stepover"/>
  658. <addaction name="action_stepin"/>
  659. <addaction name="action_stepout"/>
  660. <addaction name="separator"/>
  661. <addaction name="action_ExecuteOnTarget"/>
  662. </widget>
  663. <widget class="QDockWidget" name="classReferenceDockWidget">
  664. <property name="windowTitle">
  665. <string>Classes Reference</string>
  666. </property>
  667. <attribute name="dockWidgetArea">
  668. <number>1</number>
  669. </attribute>
  670. <widget class="QWidget" name="dockWidgetContents_2">
  671. <layout class="QGridLayout" name="gridLayout">
  672. <property name="leftMargin">
  673. <number>0</number>
  674. </property>
  675. <property name="topMargin">
  676. <number>0</number>
  677. </property>
  678. <property name="rightMargin">
  679. <number>0</number>
  680. </property>
  681. <property name="bottomMargin">
  682. <number>0</number>
  683. </property>
  684. <property name="spacing">
  685. <number>0</number>
  686. </property>
  687. <item row="0" column="0">
  688. <widget class="AzQtComponents::FilteredSearchWidget" name="m_searchWidget" native="true"/>
  689. </item>
  690. <item row="1" column="0">
  691. <widget class="DHClassReferenceWidget" name="classReferenceTreeView">
  692. <property name="editTriggers">
  693. <set>QAbstractItemView::NoEditTriggers</set>
  694. </property>
  695. <property name="tabKeyNavigation">
  696. <bool>true</bool>
  697. </property>
  698. <property name="alternatingRowColors">
  699. <bool>true</bool>
  700. </property>
  701. <property name="textElideMode">
  702. <enum>Qt::ElideRight</enum>
  703. </property>
  704. <property name="indentation">
  705. <number>16</number>
  706. </property>
  707. <property name="uniformRowHeights">
  708. <bool>true</bool>
  709. </property>
  710. <property name="allColumnsShowFocus">
  711. <bool>true</bool>
  712. </property>
  713. <property name="headerHidden">
  714. <bool>true</bool>
  715. </property>
  716. <property name="expandsOnDoubleClick">
  717. <bool>false</bool>
  718. </property>
  719. </widget>
  720. </item>
  721. </layout>
  722. </widget>
  723. </widget>
  724. <widget class="QDockWidget" name="luaFilesDockWidget">
  725. <property name="windowTitle">
  726. <string>Lua Files</string>
  727. </property>
  728. <attribute name="dockWidgetArea">
  729. <number>1</number>
  730. </attribute>
  731. <widget class="QWidget" name="stackLayout_luafiles">
  732. <layout class="QVBoxLayout" name="horizontalLayout_luafiles">
  733. <property name="leftMargin">
  734. <number>0</number>
  735. </property>
  736. <property name="topMargin">
  737. <number>0</number>
  738. </property>
  739. <property name="rightMargin">
  740. <number>0</number>
  741. </property>
  742. <property name="bottomMargin">
  743. <number>0</number>
  744. </property>
  745. <item>
  746. <widget class="AzQtComponents::FilteredSearchWidget" name="m_assetBrowserSearchWidget" native="true"/>
  747. </item>
  748. <item>
  749. <widget class="AzToolsFramework::AssetBrowser::AssetBrowserTreeView" name="m_assetBrowserTreeView">
  750. <property name="sizePolicy">
  751. <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
  752. <horstretch>0</horstretch>
  753. <verstretch>0</verstretch>
  754. </sizepolicy>
  755. </property>
  756. <property name="contextMenuPolicy">
  757. <enum>Qt::CustomContextMenu</enum>
  758. </property>
  759. <property name="selectionMode">
  760. <enum>QAbstractItemView::ExtendedSelection</enum>
  761. </property>
  762. <attribute name="headerVisible">
  763. <bool>false</bool>
  764. </attribute>
  765. </widget>
  766. </item>
  767. </layout>
  768. </widget>
  769. </widget>
  770. <action name="actionSave">
  771. <property name="icon">
  772. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  773. <normaloff>:/general/document_save</normaloff>:/general/document_save</iconset>
  774. </property>
  775. <property name="text">
  776. <string>&amp;Save</string>
  777. </property>
  778. <property name="toolTip">
  779. <string>Save the File</string>
  780. </property>
  781. <property name="shortcut">
  782. <string>Ctrl+S</string>
  783. </property>
  784. </action>
  785. <action name="actionClose">
  786. <property name="icon">
  787. <iconset>
  788. <normaloff>:/trolltech/styles/commonstyle/images/standardbutton-close-32.png</normaloff>:/trolltech/styles/commonstyle/images/standardbutton-close-32.png</iconset>
  789. </property>
  790. <property name="text">
  791. <string>&amp;Close</string>
  792. </property>
  793. <property name="toolTip">
  794. <string>Close</string>
  795. </property>
  796. <property name="shortcut">
  797. <string>Ctrl+F4</string>
  798. </property>
  799. </action>
  800. <action name="actionCloseAll">
  801. <property name="icon">
  802. <iconset>
  803. <normaloff>:/trolltech/styles/commonstyle/images/standardbutton-close-32.png</normaloff>:/trolltech/styles/commonstyle/images/standardbutton-close-32.png</iconset>
  804. </property>
  805. <property name="text">
  806. <string>Close All</string>
  807. </property>
  808. <property name="toolTip">
  809. <string>Close All</string>
  810. </property>
  811. <property name="shortcut">
  812. <string>Ctrl+Shift+F4</string>
  813. </property>
  814. </action>
  815. <action name="actionCloseAllExcept">
  816. <property name="icon">
  817. <iconset>
  818. <normaloff>:/trolltech/styles/commonstyle/images/standardbutton-close-32.png</normaloff>:/trolltech/styles/commonstyle/images/standardbutton-close-32.png</iconset>
  819. </property>
  820. <property name="text">
  821. <string>Close All But Current</string>
  822. </property>
  823. <property name="toolTip">
  824. <string>Close All Except The Current Tab</string>
  825. </property>
  826. <property name="shortcut">
  827. <string>Ctrl+Alt+F4</string>
  828. </property>
  829. </action>
  830. <action name="actionSaveAll">
  831. <property name="icon">
  832. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  833. <normaloff>:/general/document_save_all</normaloff>:/general/document_save_all</iconset>
  834. </property>
  835. <property name="text">
  836. <string>Save A&amp;ll</string>
  837. </property>
  838. <property name="shortcut">
  839. <string>Ctrl+Shift+S</string>
  840. </property>
  841. </action>
  842. <action name="actionReload">
  843. <property name="text">
  844. <string>Reload</string>
  845. </property>
  846. </action>
  847. <action name="actionUndo">
  848. <property name="icon">
  849. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  850. <normaloff>:/general/edit_undo</normaloff>:/general/edit_undo</iconset>
  851. </property>
  852. <property name="text">
  853. <string>&amp;Undo</string>
  854. </property>
  855. <property name="shortcut">
  856. <string>Ctrl+Z</string>
  857. </property>
  858. </action>
  859. <action name="actionRedo">
  860. <property name="icon">
  861. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  862. <normaloff>:/general/edit_redo</normaloff>:/general/edit_redo</iconset>
  863. </property>
  864. <property name="text">
  865. <string>&amp;Redo</string>
  866. </property>
  867. <property name="shortcut">
  868. <string>Ctrl+Y</string>
  869. </property>
  870. </action>
  871. <action name="actionCut">
  872. <property name="icon">
  873. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  874. <normaloff>:/general/edit_cut</normaloff>:/general/edit_cut</iconset>
  875. </property>
  876. <property name="text">
  877. <string>Cu&amp;t</string>
  878. </property>
  879. <property name="toolTip">
  880. <string>Cut</string>
  881. </property>
  882. <property name="shortcut">
  883. <string>Ctrl+X</string>
  884. </property>
  885. </action>
  886. <action name="actionCopy">
  887. <property name="icon">
  888. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  889. <normaloff>:/general/edit_copy</normaloff>:/general/edit_copy</iconset>
  890. </property>
  891. <property name="text">
  892. <string>&amp;Copy</string>
  893. </property>
  894. <property name="shortcut">
  895. <string>Ctrl+C</string>
  896. </property>
  897. </action>
  898. <action name="actionPaste">
  899. <property name="icon">
  900. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  901. <normaloff>:/general/edit_paste</normaloff>:/general/edit_paste</iconset>
  902. </property>
  903. <property name="text">
  904. <string>&amp;Paste</string>
  905. </property>
  906. <property name="shortcut">
  907. <string>Ctrl+V</string>
  908. </property>
  909. </action>
  910. <action name="actionCheckOut">
  911. <property name="icon">
  912. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  913. <normaloff>:/general/edit_checkout</normaloff>:/general/edit_checkout</iconset>
  914. </property>
  915. <property name="text">
  916. <string>Check &amp;Out</string>
  917. </property>
  918. <property name="toolTip">
  919. <string>Check Out</string>
  920. </property>
  921. </action>
  922. <action name="actionFind">
  923. <property name="icon">
  924. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  925. <normaloff>:/general/edit_find</normaloff>:/general/edit_find</iconset>
  926. </property>
  927. <property name="text">
  928. <string>&amp;Find</string>
  929. </property>
  930. <property name="shortcut">
  931. <string>Ctrl+F</string>
  932. </property>
  933. </action>
  934. <action name="actionFindNext">
  935. <property name="icon">
  936. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  937. <normaloff>:/toolbar/Find next.png</normaloff>:/toolbar/Find next.png</iconset>
  938. </property>
  939. <property name="text">
  940. <string>Find Next</string>
  941. </property>
  942. <property name="shortcut">
  943. <string>F3</string>
  944. </property>
  945. </action>
  946. <action name="actionFindInAllOpen">
  947. <property name="icon">
  948. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  949. <normaloff>:/general/edit_find</normaloff>:/general/edit_find</iconset>
  950. </property>
  951. <property name="text">
  952. <string>Find in &amp;Open Files</string>
  953. </property>
  954. <property name="shortcut">
  955. <string>Ctrl+Shift+F</string>
  956. </property>
  957. </action>
  958. <action name="actionReplace">
  959. <property name="icon">
  960. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  961. <normaloff>:/general/edit_replace</normaloff>:/general/edit_replace</iconset>
  962. </property>
  963. <property name="text">
  964. <string>&amp;Replace</string>
  965. </property>
  966. <property name="shortcut">
  967. <string>Ctrl+R</string>
  968. </property>
  969. </action>
  970. <action name="actionReplaceInAllOpen">
  971. <property name="icon">
  972. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  973. <normaloff>:/toolbar/Replace in open.png</normaloff>:/toolbar/Replace in open.png</iconset>
  974. </property>
  975. <property name="text">
  976. <string>R&amp;eplace in Open Files</string>
  977. </property>
  978. <property name="shortcut">
  979. <string>Ctrl+Shift+R</string>
  980. </property>
  981. </action>
  982. <action name="actionFindLocal">
  983. <property name="icon">
  984. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  985. <normaloff>:/toolbar/Find local.png</normaloff>:/toolbar/Find local.png</iconset>
  986. </property>
  987. <property name="text">
  988. <string>Quick Find &amp;Local</string>
  989. </property>
  990. <property name="shortcut">
  991. <string>Ctrl+F3</string>
  992. </property>
  993. </action>
  994. <action name="actionFindLocalReverse">
  995. <property name="icon">
  996. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  997. <normaloff>:/toolbar/Find local reverse.png</normaloff>:/toolbar/Find local reverse.png</iconset>
  998. </property>
  999. <property name="text">
  1000. <string>Quick Find Local &amp;Reverse</string>
  1001. </property>
  1002. <property name="shortcut">
  1003. <string>Ctrl+Shift+F3</string>
  1004. </property>
  1005. </action>
  1006. <action name="actionNew">
  1007. <property name="icon">
  1008. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  1009. <normaloff>:/general/document_new</normaloff>:/general/document_new</iconset>
  1010. </property>
  1011. <property name="text">
  1012. <string>&amp;New</string>
  1013. </property>
  1014. </action>
  1015. <action name="actionSaveAs">
  1016. <property name="icon">
  1017. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  1018. <normaloff>:/general/document_save_as</normaloff>:/general/document_save_as</iconset>
  1019. </property>
  1020. <property name="text">
  1021. <string>Save As</string>
  1022. </property>
  1023. </action>
  1024. <action name="action_execute">
  1025. <property name="icon">
  1026. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  1027. <normaloff>:/general/control_play_editor</normaloff>:/general/control_play_editor</iconset>
  1028. </property>
  1029. <property name="text">
  1030. <string>Run In &amp;Editor</string>
  1031. </property>
  1032. <property name="toolTip">
  1033. <string>Run the current script in this editor</string>
  1034. </property>
  1035. <property name="shortcut">
  1036. <string>Alt+F5</string>
  1037. </property>
  1038. </action>
  1039. <action name="action_ExecuteOnTarget">
  1040. <property name="icon">
  1041. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  1042. <normaloff>:/general/control_play_remote</normaloff>:/general/control_play_remote</iconset>
  1043. </property>
  1044. <property name="text">
  1045. <string>Run On &amp;Target</string>
  1046. </property>
  1047. <property name="toolTip">
  1048. <string>Send this script to the target and run it</string>
  1049. </property>
  1050. <property name="shortcut">
  1051. <string>Ctrl+F5</string>
  1052. </property>
  1053. </action>
  1054. <action name="action_togglebreak">
  1055. <property name="icon">
  1056. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  1057. <normaloff>:/toolbar/breakpoints toggle.png</normaloff>:/toolbar/breakpoints toggle.png</iconset>
  1058. </property>
  1059. <property name="text">
  1060. <string>Toggle &amp;Breakpoint</string>
  1061. </property>
  1062. <property name="shortcut">
  1063. <string>F9</string>
  1064. </property>
  1065. </action>
  1066. <action name="action_continue">
  1067. <property name="icon">
  1068. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  1069. <normaloff>:/general/control_play</normaloff>:/general/control_play</iconset>
  1070. </property>
  1071. <property name="text">
  1072. <string>&amp;Run/Continue</string>
  1073. </property>
  1074. <property name="shortcut">
  1075. <string>F5</string>
  1076. </property>
  1077. </action>
  1078. <action name="action_stepover">
  1079. <property name="icon">
  1080. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  1081. <normaloff>:/debug/arrow-curve-270</normaloff>:/debug/arrow-curve-270</iconset>
  1082. </property>
  1083. <property name="text">
  1084. <string>Step &amp;Over</string>
  1085. </property>
  1086. <property name="shortcut">
  1087. <string>F10</string>
  1088. </property>
  1089. </action>
  1090. <action name="action_stepin">
  1091. <property name="icon">
  1092. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  1093. <normaloff>:/debug/arrow-curve</normaloff>:/debug/arrow-curve</iconset>
  1094. </property>
  1095. <property name="text">
  1096. <string>Step &amp;Into</string>
  1097. </property>
  1098. <property name="toolTip">
  1099. <string>Step In</string>
  1100. </property>
  1101. <property name="shortcut">
  1102. <string>F11</string>
  1103. </property>
  1104. </action>
  1105. <action name="action_stepout">
  1106. <property name="icon">
  1107. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  1108. <normaloff>:/debug/arrow-curve-180</normaloff>:/debug/arrow-curve-180</iconset>
  1109. </property>
  1110. <property name="text">
  1111. <string>Ste&amp;p Out</string>
  1112. </property>
  1113. <property name="shortcut">
  1114. <string>Shift+F11</string>
  1115. </property>
  1116. </action>
  1117. <action name="actionOpen">
  1118. <property name="icon">
  1119. <iconset resource="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc">
  1120. <normaloff>:/toolbar/AssetBrowserIcon.png</normaloff>:/toolbar/AssetBrowserIcon.png</iconset>
  1121. </property>
  1122. <property name="text">
  1123. <string>&amp;Open LUA Script</string>
  1124. </property>
  1125. <property name="toolTip">
  1126. <string>Open LUA Script</string>
  1127. </property>
  1128. <property name="shortcut">
  1129. <string>Alt+Shift+O</string>
  1130. </property>
  1131. </action>
  1132. <action name="actionGoToLine">
  1133. <property name="text">
  1134. <string>&amp;Go To Line..</string>
  1135. </property>
  1136. <property name="toolTip">
  1137. <string>Go To Line..</string>
  1138. </property>
  1139. </action>
  1140. <action name="actionFoldAll">
  1141. <property name="text">
  1142. <string>&amp;Fold Source Functions</string>
  1143. </property>
  1144. <property name="toolTip">
  1145. <string>Fold Source Functions</string>
  1146. </property>
  1147. </action>
  1148. <action name="actionSelect_All">
  1149. <property name="text">
  1150. <string>Select &amp;All</string>
  1151. </property>
  1152. <property name="toolTip">
  1153. <string>Select All</string>
  1154. </property>
  1155. <property name="shortcut">
  1156. <string>Ctrl+A</string>
  1157. </property>
  1158. </action>
  1159. <action name="actionSelect_To_Brace">
  1160. <property name="text">
  1161. <string>Select To Brace</string>
  1162. </property>
  1163. <property name="toolTip">
  1164. <string>Select To Brace</string>
  1165. </property>
  1166. <property name="shortcut">
  1167. <string>Ctrl+Shift+]</string>
  1168. </property>
  1169. </action>
  1170. <action name="actionLinesUpTranspose">
  1171. <property name="icon">
  1172. <iconset>
  1173. <normaloff>:/trolltech/styles/commonstyle/images/standardbutton-close-32.png</normaloff>:/trolltech/styles/commonstyle/images/standardbutton-close-32.png</iconset>
  1174. </property>
  1175. <property name="text">
  1176. <string>Transpose Lines Up</string>
  1177. </property>
  1178. <property name="toolTip">
  1179. <string>Transpose Lines Up</string>
  1180. </property>
  1181. <property name="shortcut">
  1182. <string>Ctrl+Shift+Up</string>
  1183. </property>
  1184. </action>
  1185. <action name="actionLinesDnTranspose">
  1186. <property name="icon">
  1187. <iconset>
  1188. <normaloff>:/trolltech/styles/commonstyle/images/standardbutton-close-32.png</normaloff>:/trolltech/styles/commonstyle/images/standardbutton-close-32.png</iconset>
  1189. </property>
  1190. <property name="text">
  1191. <string>Transpose Lines Down</string>
  1192. </property>
  1193. <property name="toolTip">
  1194. <string>Transpose Lines Down</string>
  1195. </property>
  1196. <property name="shortcut">
  1197. <string>Ctrl+Shift+Down</string>
  1198. </property>
  1199. </action>
  1200. <action name="actionComment_Selected_Block">
  1201. <property name="text">
  1202. <string>Comment Selected Block</string>
  1203. </property>
  1204. <property name="shortcut">
  1205. <string>Ctrl+K</string>
  1206. </property>
  1207. </action>
  1208. <action name="actionUnComment_Selected_Block">
  1209. <property name="text">
  1210. <string>UnComment Selected Block</string>
  1211. </property>
  1212. <property name="shortcut">
  1213. <string>Ctrl+Shift+K</string>
  1214. </property>
  1215. </action>
  1216. <action name="actionAutocomplete">
  1217. <property name="checkable">
  1218. <bool>true</bool>
  1219. </property>
  1220. <property name="checked">
  1221. <bool>true</bool>
  1222. </property>
  1223. <property name="text">
  1224. <string>Autocomplete</string>
  1225. </property>
  1226. <property name="autoRepeat">
  1227. <bool>false</bool>
  1228. </property>
  1229. </action>
  1230. <action name="actionAutoReloadUnmodifiedFiles">
  1231. <property name="checkable">
  1232. <bool>true</bool>
  1233. </property>
  1234. <property name="checked">
  1235. <bool>false</bool>
  1236. </property>
  1237. <property name="text">
  1238. <string>Auto Reload Unmodified Files</string>
  1239. </property>
  1240. <property name="autoRepeat">
  1241. <bool>false</bool>
  1242. </property>
  1243. </action>
  1244. <action name="actionSettings">
  1245. <property name="checkable">
  1246. <bool>false</bool>
  1247. </property>
  1248. <property name="text">
  1249. <string>&amp;Settings</string>
  1250. </property>
  1251. </action>
  1252. <action name="actionResetZoom">
  1253. <property name="text">
  1254. <string>&amp;Reset Default Zoom</string>
  1255. </property>
  1256. <property name="shortcut">
  1257. <string>Ctrl+0</string>
  1258. </property>
  1259. </action>
  1260. <action name="actionUnfoldAll">
  1261. <property name="text">
  1262. <string>&amp;Unfold Source Functions</string>
  1263. </property>
  1264. </action>
  1265. <action name="actionLuaDocumentation">
  1266. <property name="text">
  1267. <string>Lua Documentation</string>
  1268. </property>
  1269. <property name="toolTip">
  1270. <string>Open Lua Documentation</string>
  1271. </property>
  1272. </action>
  1273. </widget>
  1274. <customwidgets>
  1275. <customwidget>
  1276. <class>AzToolsFramework::LogPanel::TracePrintFLogPanel</class>
  1277. <extends>QWidget</extends>
  1278. <header>AzToolsFramework/UI/Logging/TracePrintFLogPanel.h</header>
  1279. <container>1</container>
  1280. </customwidget>
  1281. <customwidget>
  1282. <class>DHBreakpointsWidget</class>
  1283. <extends>QTableWidget</extends>
  1284. <header>BreakpointPanel.hxx</header>
  1285. </customwidget>
  1286. <customwidget>
  1287. <class>DHClassReferenceWidget</class>
  1288. <extends>QTreeView</extends>
  1289. <header>ClassReferencePanel.hxx</header>
  1290. </customwidget>
  1291. <customwidget>
  1292. <class>DHWatchesWidget</class>
  1293. <extends>QTreeView</extends>
  1294. <header>WatchesPanel.hxx</header>
  1295. </customwidget>
  1296. <customwidget>
  1297. <class>DHStackWidget</class>
  1298. <extends>QTableWidget</extends>
  1299. <header>StackPanel.hxx</header>
  1300. </customwidget>
  1301. <customwidget>
  1302. <class>LUAEditor::FindResults</class>
  1303. <extends>QWidget</extends>
  1304. <header>Source/LUA/LUAEditorFindResults.hxx</header>
  1305. <container>1</container>
  1306. </customwidget>
  1307. <customwidget>
  1308. <class>AzQtComponents::FilteredSearchWidget</class>
  1309. <extends>QWidget</extends>
  1310. <header>AzQtComponents/Components/FilteredSearchWidget.h</header>
  1311. <container>1</container>
  1312. </customwidget>
  1313. <customwidget>
  1314. <class>AzToolsFramework::AssetBrowser::SearchWidget</class>
  1315. <extends>QWidget</extends>
  1316. <header>AzToolsFramework/AssetBrowser/Search/SearchWidget.h</header>
  1317. <container>1</container>
  1318. </customwidget>
  1319. <customwidget>
  1320. <class>AzToolsFramework::AssetBrowser::AssetBrowserTreeView</class>
  1321. <extends>QTreeView</extends>
  1322. <header>AzToolsFramework/AssetBrowser/Views/AssetBrowserTreeView.h</header>
  1323. </customwidget>
  1324. <customwidget>
  1325. <class>AzQtComponents::FilteredSearchWidget</class>
  1326. <extends>QWidget</extends>
  1327. <header>AzQtComponents/Components/FilteredSearchWidget.h</header>
  1328. <container>1</container>
  1329. </customwidget>
  1330. <customwidget>
  1331. <class>AzQtComponents::TabWidget</class>
  1332. <extends>QTabWidget</extends>
  1333. <header>AzQtComponents/Components/Widgets/TabWidget.h</header>
  1334. <container>1</container>
  1335. </customwidget>
  1336. </customwidgets>
  1337. <resources>
  1338. <include location="../../../../Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Resources/sharedResources.qrc"/>
  1339. </resources>
  1340. <connections>
  1341. <connection>
  1342. <sender>actionClose</sender>
  1343. <signal>triggered()</signal>
  1344. <receiver>LUAEditorMainWindow</receiver>
  1345. <slot>OnFileMenuClose()</slot>
  1346. <hints>
  1347. <hint type="sourcelabel">
  1348. <x>-1</x>
  1349. <y>-1</y>
  1350. </hint>
  1351. <hint type="destinationlabel">
  1352. <x>399</x>
  1353. <y>299</y>
  1354. </hint>
  1355. </hints>
  1356. </connection>
  1357. <connection>
  1358. <sender>actionCloseAll</sender>
  1359. <signal>triggered()</signal>
  1360. <receiver>LUAEditorMainWindow</receiver>
  1361. <slot>OnFileMenuCloseAll()</slot>
  1362. <hints>
  1363. <hint type="sourcelabel">
  1364. <x>-1</x>
  1365. <y>-1</y>
  1366. </hint>
  1367. <hint type="destinationlabel">
  1368. <x>399</x>
  1369. <y>299</y>
  1370. </hint>
  1371. </hints>
  1372. </connection>
  1373. <connection>
  1374. <sender>actionCloseAllExcept</sender>
  1375. <signal>triggered()</signal>
  1376. <receiver>LUAEditorMainWindow</receiver>
  1377. <slot>OnFileMenuCloseAllExcept()</slot>
  1378. <hints>
  1379. <hint type="sourcelabel">
  1380. <x>-1</x>
  1381. <y>-1</y>
  1382. </hint>
  1383. <hint type="destinationlabel">
  1384. <x>399</x>
  1385. <y>299</y>
  1386. </hint>
  1387. </hints>
  1388. </connection>
  1389. <connection>
  1390. <sender>actionSave</sender>
  1391. <signal>triggered()</signal>
  1392. <receiver>LUAEditorMainWindow</receiver>
  1393. <slot>OnFileMenuSave()</slot>
  1394. <hints>
  1395. <hint type="sourcelabel">
  1396. <x>-1</x>
  1397. <y>-1</y>
  1398. </hint>
  1399. <hint type="destinationlabel">
  1400. <x>399</x>
  1401. <y>299</y>
  1402. </hint>
  1403. </hints>
  1404. </connection>
  1405. <connection>
  1406. <sender>actionCopy</sender>
  1407. <signal>triggered()</signal>
  1408. <receiver>LUAEditorMainWindow</receiver>
  1409. <slot>OnEditMenuCopy()</slot>
  1410. <hints>
  1411. <hint type="sourcelabel">
  1412. <x>-1</x>
  1413. <y>-1</y>
  1414. </hint>
  1415. <hint type="destinationlabel">
  1416. <x>399</x>
  1417. <y>299</y>
  1418. </hint>
  1419. </hints>
  1420. </connection>
  1421. <connection>
  1422. <sender>actionCut</sender>
  1423. <signal>triggered()</signal>
  1424. <receiver>LUAEditorMainWindow</receiver>
  1425. <slot>OnEditMenuCut()</slot>
  1426. <hints>
  1427. <hint type="sourcelabel">
  1428. <x>-1</x>
  1429. <y>-1</y>
  1430. </hint>
  1431. <hint type="destinationlabel">
  1432. <x>399</x>
  1433. <y>299</y>
  1434. </hint>
  1435. </hints>
  1436. </connection>
  1437. <connection>
  1438. <sender>actionPaste</sender>
  1439. <signal>triggered()</signal>
  1440. <receiver>LUAEditorMainWindow</receiver>
  1441. <slot>OnEditMenuPaste()</slot>
  1442. <hints>
  1443. <hint type="sourcelabel">
  1444. <x>-1</x>
  1445. <y>-1</y>
  1446. </hint>
  1447. <hint type="destinationlabel">
  1448. <x>399</x>
  1449. <y>299</y>
  1450. </hint>
  1451. </hints>
  1452. </connection>
  1453. <connection>
  1454. <sender>actionRedo</sender>
  1455. <signal>triggered()</signal>
  1456. <receiver>LUAEditorMainWindow</receiver>
  1457. <slot>OnEditMenuRedo()</slot>
  1458. <hints>
  1459. <hint type="sourcelabel">
  1460. <x>-1</x>
  1461. <y>-1</y>
  1462. </hint>
  1463. <hint type="destinationlabel">
  1464. <x>399</x>
  1465. <y>299</y>
  1466. </hint>
  1467. </hints>
  1468. </connection>
  1469. <connection>
  1470. <sender>actionSaveAll</sender>
  1471. <signal>triggered()</signal>
  1472. <receiver>LUAEditorMainWindow</receiver>
  1473. <slot>OnFileMenuSaveAll()</slot>
  1474. <hints>
  1475. <hint type="sourcelabel">
  1476. <x>-1</x>
  1477. <y>-1</y>
  1478. </hint>
  1479. <hint type="destinationlabel">
  1480. <x>399</x>
  1481. <y>299</y>
  1482. </hint>
  1483. </hints>
  1484. </connection>
  1485. <connection>
  1486. <sender>actionReload</sender>
  1487. <signal>triggered()</signal>
  1488. <receiver>LUAEditorMainWindow</receiver>
  1489. <slot>OnFileMenuReload()</slot>
  1490. <hints>
  1491. <hint type="sourcelabel">
  1492. <x>-1</x>
  1493. <y>-1</y>
  1494. </hint>
  1495. <hint type="destinationlabel">
  1496. <x>399</x>
  1497. <y>299</y>
  1498. </hint>
  1499. </hints>
  1500. </connection>
  1501. <connection>
  1502. <sender>actionUndo</sender>
  1503. <signal>triggered()</signal>
  1504. <receiver>LUAEditorMainWindow</receiver>
  1505. <slot>OnEditMenuUndo()</slot>
  1506. <hints>
  1507. <hint type="sourcelabel">
  1508. <x>-1</x>
  1509. <y>-1</y>
  1510. </hint>
  1511. <hint type="destinationlabel">
  1512. <x>399</x>
  1513. <y>299</y>
  1514. </hint>
  1515. </hints>
  1516. </connection>
  1517. <connection>
  1518. <sender>actionCheckOut</sender>
  1519. <signal>triggered()</signal>
  1520. <receiver>LUAEditorMainWindow</receiver>
  1521. <slot>OnSourceControlMenuCheckOut()</slot>
  1522. <hints>
  1523. <hint type="sourcelabel">
  1524. <x>-1</x>
  1525. <y>-1</y>
  1526. </hint>
  1527. <hint type="destinationlabel">
  1528. <x>410</x>
  1529. <y>487</y>
  1530. </hint>
  1531. </hints>
  1532. </connection>
  1533. <connection>
  1534. <sender>actionFind</sender>
  1535. <signal>triggered()</signal>
  1536. <receiver>LUAEditorMainWindow</receiver>
  1537. <slot>OnEditMenuFind()</slot>
  1538. <hints>
  1539. <hint type="sourcelabel">
  1540. <x>-1</x>
  1541. <y>-1</y>
  1542. </hint>
  1543. <hint type="destinationlabel">
  1544. <x>298</x>
  1545. <y>488</y>
  1546. </hint>
  1547. </hints>
  1548. </connection>
  1549. <connection>
  1550. <sender>actionFindNext</sender>
  1551. <signal>triggered()</signal>
  1552. <receiver>LUAEditorMainWindow</receiver>
  1553. <slot>OnEditMenuFindNext()</slot>
  1554. <hints>
  1555. <hint type="sourcelabel">
  1556. <x>-1</x>
  1557. <y>-1</y>
  1558. </hint>
  1559. <hint type="destinationlabel">
  1560. <x>298</x>
  1561. <y>488</y>
  1562. </hint>
  1563. </hints>
  1564. </connection>
  1565. <connection>
  1566. <sender>actionFindInAllOpen</sender>
  1567. <signal>triggered()</signal>
  1568. <receiver>LUAEditorMainWindow</receiver>
  1569. <slot>OnEditMenuFindInAllOpen()</slot>
  1570. <hints>
  1571. <hint type="sourcelabel">
  1572. <x>-1</x>
  1573. <y>-1</y>
  1574. </hint>
  1575. <hint type="destinationlabel">
  1576. <x>298</x>
  1577. <y>488</y>
  1578. </hint>
  1579. </hints>
  1580. </connection>
  1581. <connection>
  1582. <sender>actionReplace</sender>
  1583. <signal>triggered()</signal>
  1584. <receiver>LUAEditorMainWindow</receiver>
  1585. <slot>OnEditMenuReplace()</slot>
  1586. <hints>
  1587. <hint type="sourcelabel">
  1588. <x>-1</x>
  1589. <y>-1</y>
  1590. </hint>
  1591. <hint type="destinationlabel">
  1592. <x>298</x>
  1593. <y>488</y>
  1594. </hint>
  1595. </hints>
  1596. </connection>
  1597. <connection>
  1598. <sender>actionReplaceInAllOpen</sender>
  1599. <signal>triggered()</signal>
  1600. <receiver>LUAEditorMainWindow</receiver>
  1601. <slot>OnEditMenuReplaceInAllOpen()</slot>
  1602. <hints>
  1603. <hint type="sourcelabel">
  1604. <x>-1</x>
  1605. <y>-1</y>
  1606. </hint>
  1607. <hint type="destinationlabel">
  1608. <x>298</x>
  1609. <y>488</y>
  1610. </hint>
  1611. </hints>
  1612. </connection>
  1613. <connection>
  1614. <sender>actionFindLocal</sender>
  1615. <signal>triggered()</signal>
  1616. <receiver>LUAEditorMainWindow</receiver>
  1617. <slot>OnEditMenuFindLocal()</slot>
  1618. <hints>
  1619. <hint type="sourcelabel">
  1620. <x>-1</x>
  1621. <y>-1</y>
  1622. </hint>
  1623. <hint type="destinationlabel">
  1624. <x>298</x>
  1625. <y>488</y>
  1626. </hint>
  1627. </hints>
  1628. </connection>
  1629. <connection>
  1630. <sender>actionFindLocalReverse</sender>
  1631. <signal>triggered()</signal>
  1632. <receiver>LUAEditorMainWindow</receiver>
  1633. <slot>OnEditMenuFindLocalReverse()</slot>
  1634. <hints>
  1635. <hint type="sourcelabel">
  1636. <x>-1</x>
  1637. <y>-1</y>
  1638. </hint>
  1639. <hint type="destinationlabel">
  1640. <x>298</x>
  1641. <y>488</y>
  1642. </hint>
  1643. </hints>
  1644. </connection>
  1645. <connection>
  1646. <sender>actionNew</sender>
  1647. <signal>triggered()</signal>
  1648. <receiver>LUAEditorMainWindow</receiver>
  1649. <slot>OnFileMenuNew()</slot>
  1650. <hints>
  1651. <hint type="sourcelabel">
  1652. <x>-1</x>
  1653. <y>-1</y>
  1654. </hint>
  1655. <hint type="destinationlabel">
  1656. <x>298</x>
  1657. <y>488</y>
  1658. </hint>
  1659. </hints>
  1660. </connection>
  1661. <connection>
  1662. <sender>actionSaveAs</sender>
  1663. <signal>triggered()</signal>
  1664. <receiver>LUAEditorMainWindow</receiver>
  1665. <slot>OnFileMenuSaveAs()</slot>
  1666. <hints>
  1667. <hint type="sourcelabel">
  1668. <x>-1</x>
  1669. <y>-1</y>
  1670. </hint>
  1671. <hint type="destinationlabel">
  1672. <x>298</x>
  1673. <y>488</y>
  1674. </hint>
  1675. </hints>
  1676. </connection>
  1677. <connection>
  1678. <sender>action_execute</sender>
  1679. <signal>triggered()</signal>
  1680. <receiver>LUAEditorMainWindow</receiver>
  1681. <slot>OnDebugExecute()</slot>
  1682. <hints>
  1683. <hint type="sourcelabel">
  1684. <x>-1</x>
  1685. <y>-1</y>
  1686. </hint>
  1687. <hint type="destinationlabel">
  1688. <x>298</x>
  1689. <y>488</y>
  1690. </hint>
  1691. </hints>
  1692. </connection>
  1693. <connection>
  1694. <sender>action_ExecuteOnTarget</sender>
  1695. <signal>triggered()</signal>
  1696. <receiver>LUAEditorMainWindow</receiver>
  1697. <slot>OnDebugExecuteOnTarget()</slot>
  1698. <hints>
  1699. <hint type="sourcelabel">
  1700. <x>-1</x>
  1701. <y>-1</y>
  1702. </hint>
  1703. <hint type="destinationlabel">
  1704. <x>440</x>
  1705. <y>488</y>
  1706. </hint>
  1707. </hints>
  1708. </connection>
  1709. <connection>
  1710. <sender>action_togglebreak</sender>
  1711. <signal>triggered()</signal>
  1712. <receiver>LUAEditorMainWindow</receiver>
  1713. <slot>OnDebugToggleBreakpoint()</slot>
  1714. <hints>
  1715. <hint type="sourcelabel">
  1716. <x>-1</x>
  1717. <y>-1</y>
  1718. </hint>
  1719. <hint type="destinationlabel">
  1720. <x>440</x>
  1721. <y>488</y>
  1722. </hint>
  1723. </hints>
  1724. </connection>
  1725. <connection>
  1726. <sender>action_continue</sender>
  1727. <signal>triggered()</signal>
  1728. <receiver>LUAEditorMainWindow</receiver>
  1729. <slot>OnDebugContinueRunning()</slot>
  1730. <hints>
  1731. <hint type="sourcelabel">
  1732. <x>-1</x>
  1733. <y>-1</y>
  1734. </hint>
  1735. <hint type="destinationlabel">
  1736. <x>440</x>
  1737. <y>488</y>
  1738. </hint>
  1739. </hints>
  1740. </connection>
  1741. <connection>
  1742. <sender>action_stepover</sender>
  1743. <signal>triggered()</signal>
  1744. <receiver>LUAEditorMainWindow</receiver>
  1745. <slot>OnDebugStepOver()</slot>
  1746. <hints>
  1747. <hint type="sourcelabel">
  1748. <x>-1</x>
  1749. <y>-1</y>
  1750. </hint>
  1751. <hint type="destinationlabel">
  1752. <x>440</x>
  1753. <y>488</y>
  1754. </hint>
  1755. </hints>
  1756. </connection>
  1757. <connection>
  1758. <sender>action_stepin</sender>
  1759. <signal>triggered()</signal>
  1760. <receiver>LUAEditorMainWindow</receiver>
  1761. <slot>OnDebugStepIn()</slot>
  1762. <hints>
  1763. <hint type="sourcelabel">
  1764. <x>-1</x>
  1765. <y>-1</y>
  1766. </hint>
  1767. <hint type="destinationlabel">
  1768. <x>440</x>
  1769. <y>488</y>
  1770. </hint>
  1771. </hints>
  1772. </connection>
  1773. <connection>
  1774. <sender>action_stepout</sender>
  1775. <signal>triggered()</signal>
  1776. <receiver>LUAEditorMainWindow</receiver>
  1777. <slot>OnDebugStepOut()</slot>
  1778. <hints>
  1779. <hint type="sourcelabel">
  1780. <x>-1</x>
  1781. <y>-1</y>
  1782. </hint>
  1783. <hint type="destinationlabel">
  1784. <x>440</x>
  1785. <y>488</y>
  1786. </hint>
  1787. </hints>
  1788. </connection>
  1789. <connection>
  1790. <sender>actionGoToLine</sender>
  1791. <signal>triggered()</signal>
  1792. <receiver>LUAEditorMainWindow</receiver>
  1793. <slot>OnEditMenuGoToLine()</slot>
  1794. <hints>
  1795. <hint type="sourcelabel">
  1796. <x>-1</x>
  1797. <y>-1</y>
  1798. </hint>
  1799. <hint type="destinationlabel">
  1800. <x>560</x>
  1801. <y>435</y>
  1802. </hint>
  1803. </hints>
  1804. </connection>
  1805. <connection>
  1806. <sender>actionFoldAll</sender>
  1807. <signal>triggered()</signal>
  1808. <receiver>LUAEditorMainWindow</receiver>
  1809. <slot>OnEditMenuFoldAll()</slot>
  1810. <hints>
  1811. <hint type="sourcelabel">
  1812. <x>-1</x>
  1813. <y>-1</y>
  1814. </hint>
  1815. <hint type="destinationlabel">
  1816. <x>560</x>
  1817. <y>435</y>
  1818. </hint>
  1819. </hints>
  1820. </connection>
  1821. <connection>
  1822. <sender>actionSelect_All</sender>
  1823. <signal>triggered()</signal>
  1824. <receiver>LUAEditorMainWindow</receiver>
  1825. <slot>OnEditMenuSelectAll()</slot>
  1826. <hints>
  1827. <hint type="sourcelabel">
  1828. <x>-1</x>
  1829. <y>-1</y>
  1830. </hint>
  1831. <hint type="destinationlabel">
  1832. <x>399</x>
  1833. <y>299</y>
  1834. </hint>
  1835. </hints>
  1836. </connection>
  1837. <connection>
  1838. <sender>actionSelect_To_Brace</sender>
  1839. <signal>triggered()</signal>
  1840. <receiver>LUAEditorMainWindow</receiver>
  1841. <slot>OnEditMenuSelectToBrace()</slot>
  1842. <hints>
  1843. <hint type="sourcelabel">
  1844. <x>-1</x>
  1845. <y>-1</y>
  1846. </hint>
  1847. <hint type="destinationlabel">
  1848. <x>399</x>
  1849. <y>299</y>
  1850. </hint>
  1851. </hints>
  1852. </connection>
  1853. <connection>
  1854. <sender>actionComment_Selected_Block</sender>
  1855. <signal>triggered()</signal>
  1856. <receiver>LUAEditorMainWindow</receiver>
  1857. <slot>OnCommentSelectedBlock()</slot>
  1858. <hints>
  1859. <hint type="sourcelabel">
  1860. <x>-1</x>
  1861. <y>-1</y>
  1862. </hint>
  1863. <hint type="destinationlabel">
  1864. <x>399</x>
  1865. <y>299</y>
  1866. </hint>
  1867. </hints>
  1868. </connection>
  1869. <connection>
  1870. <sender>actionUnComment_Selected_Block</sender>
  1871. <signal>triggered()</signal>
  1872. <receiver>LUAEditorMainWindow</receiver>
  1873. <slot>OnUnCommentSelectedBlock()</slot>
  1874. <hints>
  1875. <hint type="sourcelabel">
  1876. <x>-1</x>
  1877. <y>-1</y>
  1878. </hint>
  1879. <hint type="destinationlabel">
  1880. <x>399</x>
  1881. <y>299</y>
  1882. </hint>
  1883. </hints>
  1884. </connection>
  1885. <connection>
  1886. <sender>actionLinesUpTranspose</sender>
  1887. <signal>triggered()</signal>
  1888. <receiver>LUAEditorMainWindow</receiver>
  1889. <slot>OnEditMenuTransposeUp()</slot>
  1890. <hints>
  1891. <hint type="sourcelabel">
  1892. <x>-1</x>
  1893. <y>-1</y>
  1894. </hint>
  1895. <hint type="destinationlabel">
  1896. <x>399</x>
  1897. <y>299</y>
  1898. </hint>
  1899. </hints>
  1900. </connection>
  1901. <connection>
  1902. <sender>actionLinesDnTranspose</sender>
  1903. <signal>triggered()</signal>
  1904. <receiver>LUAEditorMainWindow</receiver>
  1905. <slot>OnEditMenuTransposeDn()</slot>
  1906. <hints>
  1907. <hint type="sourcelabel">
  1908. <x>-1</x>
  1909. <y>-1</y>
  1910. </hint>
  1911. <hint type="destinationlabel">
  1912. <x>399</x>
  1913. <y>299</y>
  1914. </hint>
  1915. </hints>
  1916. </connection>
  1917. <connection>
  1918. <sender>actionUnfoldAll</sender>
  1919. <signal>triggered()</signal>
  1920. <receiver>LUAEditorMainWindow</receiver>
  1921. <slot>OnEditMenuUnfoldAll()</slot>
  1922. <hints>
  1923. <hint type="sourcelabel">
  1924. <x>-1</x>
  1925. <y>-1</y>
  1926. </hint>
  1927. <hint type="destinationlabel">
  1928. <x>560</x>
  1929. <y>435</y>
  1930. </hint>
  1931. </hints>
  1932. </connection>
  1933. <connection>
  1934. <sender>actionResetZoom</sender>
  1935. <signal>triggered()</signal>
  1936. <receiver>LUAEditorMainWindow</receiver>
  1937. <slot>OnViewMenuResetZoom()</slot>
  1938. <hints>
  1939. <hint type="sourcelabel">
  1940. <x>-1</x>
  1941. <y>-1</y>
  1942. </hint>
  1943. <hint type="destinationlabel">
  1944. <x>560</x>
  1945. <y>435</y>
  1946. </hint>
  1947. </hints>
  1948. </connection>
  1949. </connections>
  1950. <slots>
  1951. <slot>OnFileMenuSave()</slot>
  1952. <slot>OnFileMenuSaveAll()</slot>
  1953. <slot>OnFileMenuClose()</slot>
  1954. <slot>OnFileMenuCloseAll()</slot>
  1955. <slot>OnFileMenuCloseAllExcept()</slot>
  1956. <slot>OnEditMenuUndo()</slot>
  1957. <slot>OnEditMenuRedo()</slot>
  1958. <slot>OnEditMenuCut()</slot>
  1959. <slot>OnEditMenuCopy()</slot>
  1960. <slot>OnEditMenuPaste()</slot>
  1961. <slot>OnViewMenuBreakpoints()</slot>
  1962. <slot>OnViewMenuLog()</slot>
  1963. <slot>OnViewMenuStack()</slot>
  1964. <slot>OnViewMenuLocals()</slot>
  1965. <slot>OnViewMenuWatch()</slot>
  1966. <slot>OnViewMenuReference()</slot>
  1967. <slot>OnViewMenuResetZoom()</slot>
  1968. <slot>OnSourceControlMenuCheckOut()</slot>
  1969. <slot>OnEditMenuFind()</slot>
  1970. <slot>OnEditMenuFindInAllOpen()</slot>
  1971. <slot>OnEditMenuFindLocal()</slot>
  1972. <slot>OnEditMenuFindLocalReverse()</slot>
  1973. <slot>OnFileMenuNew()</slot>
  1974. <slot>OnFileMenuSaveAs()</slot>
  1975. <slot>OnDebugExecute()</slot>
  1976. <slot>OnDebugExecuteOnTarget()</slot>
  1977. <slot>OnDebugContinueRunning()</slot>
  1978. <slot>OnDebugToggleBreak()</slot>
  1979. <slot>OnDebugStepOver()</slot>
  1980. <slot>OnDebugStepIn()</slot>
  1981. <slot>OnDebugStepOut()</slot>
  1982. <slot>OnEditMenuGoToLine()</slot>
  1983. <slot>OnEditMenuFoldAll()</slot>
  1984. <slot>OnEditMenuUnfoldAll()</slot>
  1985. <slot>OnEditMenuTransposeUp()</slot>
  1986. <slot>OnEditMenuTransposeDn()</slot>
  1987. </slots>
  1988. </ui>