DlgScriptEditor.ui 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>MainWindow</class>
  4. <widget class="QMainWindow" name="MainWindow">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>600</width>
  10. <height>578</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Processing Script Editor</string>
  15. </property>
  16. <widget class="QWidget" name="centralwidget">
  17. <layout class="QGridLayout" name="gridLayout">
  18. <item row="0" column="0">
  19. <widget class="QWidget" name="editor_container"/>
  20. </item>
  21. <item row="1" column="0">
  22. <widget class="QWidget" name="searchWidget" native="true">
  23. <layout class="QGridLayout" name="gridLayout_2">
  24. <property name="leftMargin">
  25. <number>0</number>
  26. </property>
  27. <property name="topMargin">
  28. <number>5</number>
  29. </property>
  30. <property name="rightMargin">
  31. <number>0</number>
  32. </property>
  33. <property name="bottomMargin">
  34. <number>5</number>
  35. </property>
  36. <item row="0" column="0">
  37. <widget class="QCheckBox" name="chkCaseSensitive">
  38. <property name="text">
  39. <string>Case sensitive</string>
  40. </property>
  41. </widget>
  42. </item>
  43. <item row="1" column="0">
  44. <widget class="QCheckBox" name="chkWholeWord">
  45. <property name="text">
  46. <string>Whole word</string>
  47. </property>
  48. </widget>
  49. </item>
  50. <item row="1" column="4" colspan="2">
  51. <widget class="QPushButton" name="btnReplace">
  52. <property name="text">
  53. <string>Replace</string>
  54. </property>
  55. </widget>
  56. </item>
  57. <item row="0" column="2">
  58. <widget class="QLabel" name="label">
  59. <property name="text">
  60. <string>Find what:</string>
  61. </property>
  62. </widget>
  63. </item>
  64. <item row="1" column="2">
  65. <widget class="QLabel" name="label_2">
  66. <property name="text">
  67. <string>Replace with:</string>
  68. </property>
  69. </widget>
  70. </item>
  71. <item row="1" column="3">
  72. <widget class="QLineEdit" name="leReplaceText"/>
  73. </item>
  74. <item row="0" column="4" colspan="2">
  75. <widget class="QPushButton" name="btnFind">
  76. <property name="text">
  77. <string>Find</string>
  78. </property>
  79. </widget>
  80. </item>
  81. <item row="0" column="3">
  82. <widget class="QLineEdit" name="leFindText"/>
  83. </item>
  84. <item row="0" column="1" rowspan="2">
  85. <widget class="Line" name="line_8">
  86. <property name="orientation">
  87. <enum>Qt::Vertical</enum>
  88. </property>
  89. </widget>
  90. </item>
  91. </layout>
  92. </widget>
  93. </item>
  94. </layout>
  95. </widget>
  96. <widget class="QToolBar" name="toolBar">
  97. <property name="windowTitle">
  98. <string>Toolbar</string>
  99. </property>
  100. <attribute name="toolBarArea">
  101. <enum>TopToolBarArea</enum>
  102. </attribute>
  103. <attribute name="toolBarBreak">
  104. <bool>false</bool>
  105. </attribute>
  106. <addaction name="actionOpenScript"/>
  107. <addaction name="actionSaveScript"/>
  108. <addaction name="actionSaveScriptAs"/>
  109. <addaction name="separator"/>
  110. <addaction name="actionRunScript"/>
  111. <addaction name="separator"/>
  112. <addaction name="actionCut"/>
  113. <addaction name="actionCopy"/>
  114. <addaction name="actionPaste"/>
  115. <addaction name="separator"/>
  116. <addaction name="actionUndo"/>
  117. <addaction name="actionRedo"/>
  118. <addaction name="separator"/>
  119. <addaction name="actionFindReplace"/>
  120. <addaction name="separator"/>
  121. <addaction name="actionIncreaseFontSize"/>
  122. <addaction name="actionDecreaseFontSize"/>
  123. <addaction name="separator"/>
  124. <addaction name="actionToggleComment"/>
  125. </widget>
  126. <action name="actionOpenScript">
  127. <property name="text">
  128. <string>Open Script…</string>
  129. </property>
  130. <property name="toolTip">
  131. <string>Open Script</string>
  132. </property>
  133. <property name="shortcut">
  134. <string>Ctrl+O</string>
  135. </property>
  136. </action>
  137. <action name="actionSaveScript">
  138. <property name="text">
  139. <string>Save Script…</string>
  140. </property>
  141. <property name="toolTip">
  142. <string>Save Script</string>
  143. </property>
  144. <property name="shortcut">
  145. <string>Ctrl+S</string>
  146. </property>
  147. </action>
  148. <action name="actionSaveScriptAs">
  149. <property name="text">
  150. <string>Save Script as…</string>
  151. </property>
  152. <property name="toolTip">
  153. <string>Save Script as</string>
  154. </property>
  155. <property name="shortcut">
  156. <string>Ctrl+Shift+S</string>
  157. </property>
  158. </action>
  159. <action name="actionRunScript">
  160. <property name="text">
  161. <string>Run Script</string>
  162. </property>
  163. <property name="toolTip">
  164. <string>Run Script</string>
  165. </property>
  166. <property name="shortcut">
  167. <string>F5</string>
  168. </property>
  169. </action>
  170. <action name="actionCut">
  171. <property name="text">
  172. <string>Cut</string>
  173. </property>
  174. <property name="toolTip">
  175. <string>Cut</string>
  176. </property>
  177. <property name="shortcut">
  178. <string>Ctrl+X</string>
  179. </property>
  180. </action>
  181. <action name="actionCopy">
  182. <property name="text">
  183. <string>Copy</string>
  184. </property>
  185. <property name="toolTip">
  186. <string>Copy</string>
  187. </property>
  188. <property name="shortcut">
  189. <string>Ctrl+C</string>
  190. </property>
  191. </action>
  192. <action name="actionPaste">
  193. <property name="text">
  194. <string>Paste</string>
  195. </property>
  196. <property name="toolTip">
  197. <string>Paste</string>
  198. </property>
  199. <property name="shortcut">
  200. <string>Ctrl+V</string>
  201. </property>
  202. </action>
  203. <action name="actionUndo">
  204. <property name="text">
  205. <string>Undo</string>
  206. </property>
  207. <property name="toolTip">
  208. <string>Undo</string>
  209. </property>
  210. <property name="shortcut">
  211. <string>Ctrl+Z</string>
  212. </property>
  213. </action>
  214. <action name="actionRedo">
  215. <property name="text">
  216. <string>Redo</string>
  217. </property>
  218. <property name="toolTip">
  219. <string>Redo</string>
  220. </property>
  221. <property name="shortcut">
  222. <string>Ctrl+Shift+Z</string>
  223. </property>
  224. </action>
  225. <action name="actionIncreaseFontSize">
  226. <property name="text">
  227. <string>Increase Font Size</string>
  228. </property>
  229. <property name="toolTip">
  230. <string>Increase Font Size</string>
  231. </property>
  232. </action>
  233. <action name="actionDecreaseFontSize">
  234. <property name="text">
  235. <string>Decrease Font Size</string>
  236. </property>
  237. <property name="toolTip">
  238. <string>Decrease Font Size</string>
  239. </property>
  240. </action>
  241. <action name="actionFindReplace">
  242. <property name="checkable">
  243. <bool>true</bool>
  244. </property>
  245. <property name="text">
  246. <string>Find &amp;&amp; &amp;Replace</string>
  247. </property>
  248. <property name="shortcut">
  249. <string>Ctrl+F</string>
  250. </property>
  251. </action>
  252. <action name="actionToggleComment">
  253. <property name="text">
  254. <string>Toggle Comment</string>
  255. </property>
  256. </action>
  257. </widget>
  258. <resources/>
  259. <connections/>
  260. </ui>