IDE.MainForm.dfm 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329
  1. object MainForm: TMainForm
  2. Left = 206
  3. Top = 97
  4. BorderStyle = bsNone
  5. Caption = '*'
  6. ClientHeight = 306
  7. ClientWidth = 361
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'MS Sans Serif'
  13. Font.Style = []
  14. KeyPreview = True
  15. Menu = MainMenu1
  16. Position = poDefault
  17. StyleElements = []
  18. OnAfterMonitorDpiChanged = FormAfterMonitorDpiChanged
  19. OnCloseQuery = FormCloseQuery
  20. OnKeyDown = FormKeyDown
  21. OnResize = FormResize
  22. TextHeight = 13
  23. object Bevel1: TBevel
  24. Left = 0
  25. Top = 29
  26. Width = 361
  27. Height = 1
  28. Align = alTop
  29. Shape = bsTopLine
  30. end
  31. object BodyPanel: TPanel
  32. Left = 0
  33. Top = 92
  34. Width = 361
  35. Height = 194
  36. Align = alClient
  37. BevelOuter = bvNone
  38. FullRepaint = False
  39. TabOrder = 3
  40. object SplitPanel: TPanel
  41. Left = 0
  42. Top = 86
  43. Width = 361
  44. Height = 4
  45. Cursor = crSizeNS
  46. Align = alBottom
  47. BevelOuter = bvNone
  48. FullRepaint = False
  49. TabOrder = 1
  50. Visible = False
  51. StyleName = 'Windows'
  52. OnMouseMove = SplitPanelMouseMove
  53. end
  54. object StatusPanel: TPanel
  55. Left = 0
  56. Top = 90
  57. Width = 361
  58. Height = 104
  59. Align = alBottom
  60. BevelOuter = bvNone
  61. FullRepaint = False
  62. TabOrder = 0
  63. Visible = False
  64. object FindResultsList: TListBox
  65. Left = 0
  66. Top = 0
  67. Width = 361
  68. Height = 83
  69. Style = lbOwnerDrawFixed
  70. Align = alClient
  71. BorderStyle = bsNone
  72. ItemHeight = 13
  73. MultiSelect = True
  74. TabOrder = 3
  75. Visible = False
  76. OnDblClick = FindResultsListDblClick
  77. OnDrawItem = FindResultsListDrawItem
  78. OnKeyDown = OutputListKeyDown
  79. end
  80. object DebugCallStackList: TListBox
  81. Left = 0
  82. Top = 0
  83. Width = 361
  84. Height = 83
  85. Style = lbOwnerDrawFixed
  86. Align = alClient
  87. BorderStyle = bsNone
  88. ItemHeight = 13
  89. MultiSelect = True
  90. TabOrder = 2
  91. Visible = False
  92. OnDrawItem = DebugCallStackListDrawItem
  93. OnKeyDown = OutputListKeyDown
  94. end
  95. object DebugOutputList: TListBox
  96. Left = 0
  97. Top = 0
  98. Width = 361
  99. Height = 83
  100. Style = lbOwnerDrawFixed
  101. Align = alClient
  102. BorderStyle = bsNone
  103. ItemHeight = 13
  104. MultiSelect = True
  105. TabOrder = 1
  106. Visible = False
  107. OnDrawItem = DebugOutputListDrawItem
  108. OnKeyDown = OutputListKeyDown
  109. end
  110. object CompilerOutputList: TListBox
  111. Left = 0
  112. Top = 0
  113. Width = 361
  114. Height = 83
  115. Style = lbOwnerDrawFixed
  116. Align = alClient
  117. BorderStyle = bsNone
  118. ItemHeight = 13
  119. MultiSelect = True
  120. TabOrder = 0
  121. OnDrawItem = CompilerOutputListDrawItem
  122. OnKeyDown = OutputListKeyDown
  123. end
  124. object OutputTabSet: TNewTabSet
  125. Left = 0
  126. Top = 83
  127. Width = 361
  128. Height = 21
  129. Align = alBottom
  130. TabIndex = 0
  131. Tabs.Strings = (
  132. 'Compiler Output'
  133. 'Debug Output'
  134. 'Debug Call Stack'
  135. 'Find Results')
  136. OnClick = OutputTabSetClick
  137. end
  138. end
  139. end
  140. object StatusBar: TStatusBar
  141. Left = 0
  142. Top = 286
  143. Width = 361
  144. Height = 20
  145. Panels = <
  146. item
  147. Alignment = taCenter
  148. Bevel = pbNone
  149. Text = ' 1: 1'
  150. Width = 64
  151. end
  152. item
  153. Alignment = taCenter
  154. Bevel = pbNone
  155. Width = 64
  156. end
  157. item
  158. Alignment = taCenter
  159. Bevel = pbNone
  160. Text = 'Insert'
  161. Width = 64
  162. end
  163. item
  164. Alignment = taCenter
  165. Bevel = pbNone
  166. Text = '.*'
  167. Width = 23
  168. end
  169. item
  170. Bevel = pbNone
  171. Style = psOwnerDraw
  172. Width = 110
  173. end
  174. item
  175. Bevel = pbNone
  176. Style = psOwnerDraw
  177. Width = 23
  178. end
  179. item
  180. Bevel = pbNone
  181. Style = psOwnerDraw
  182. Width = 128
  183. end
  184. item
  185. Bevel = pbNone
  186. Width = 50
  187. end>
  188. OnClick = StatusBarClick
  189. OnDrawPanel = StatusBarDrawPanel
  190. OnResize = StatusBarResize
  191. end
  192. object ToolBarPanel: TPanel
  193. Left = 0
  194. Top = 0
  195. Width = 361
  196. Height = 29
  197. Align = alTop
  198. BevelOuter = bvNone
  199. TabOrder = 0
  200. StyleName = 'Windows'
  201. object ToolBar: TToolBar
  202. AlignWithMargins = True
  203. Left = 7
  204. Top = 4
  205. Width = 351
  206. Height = 25
  207. Margins.Left = 7
  208. Margins.Top = 4
  209. Margins.Bottom = 0
  210. Images = ThemedToolbarVirtualImageList
  211. ParentShowHint = False
  212. ShowHint = True
  213. TabOrder = 0
  214. Transparent = True
  215. object BackNavButton: TToolButton
  216. Left = 0
  217. Top = 0
  218. ImageIndex = 54
  219. ImageName = 'button-arrow-left'
  220. OnClick = BackNavButtonClick
  221. end
  222. object ForwardNavButton: TToolButton
  223. Left = 23
  224. Top = 0
  225. ImageIndex = 55
  226. ImageName = 'button-arrow-right'
  227. OnClick = ForwardNavButtonClick
  228. end
  229. object ToolButton1: TToolButton
  230. Left = 46
  231. Top = 0
  232. Width = 8
  233. Style = tbsSeparator
  234. end
  235. object NewMainFileButton: TToolButton
  236. Left = 54
  237. Top = 0
  238. Hint = 'New Main Script (Ctrl+N)'
  239. ImageIndex = 0
  240. ImageName = 'document-new'
  241. OnClick = FNewMainFileClick
  242. end
  243. object OpenMainFileButton: TToolButton
  244. Left = 77
  245. Top = 0
  246. Hint = 'Open Main Script (Ctrl+O)'
  247. ImageIndex = 1
  248. ImageName = 'folder-open-filled-arrow-down-right'
  249. OnClick = FOpenMainFileClick
  250. end
  251. object SaveButton: TToolButton
  252. Left = 100
  253. Top = 0
  254. Hint = 'Save (Ctrl+S)'
  255. ImageIndex = 2
  256. ImageName = 'save-filled'
  257. OnClick = FSaveClick
  258. end
  259. object ToolButton2: TToolButton
  260. Left = 123
  261. Top = 0
  262. Width = 8
  263. Style = tbsSeparator
  264. end
  265. object CompileButton: TToolButton
  266. Left = 131
  267. Top = 0
  268. ImageIndex = 3
  269. ImageName = 'build'
  270. OnClick = BCompileClick
  271. end
  272. object StopCompileButton: TToolButton
  273. Left = 154
  274. Top = 0
  275. Hint = 'Stop Compile (Esc)'
  276. Enabled = False
  277. ImageIndex = 4
  278. ImageName = 'build-cancel-2'
  279. OnClick = BStopCompileClick
  280. end
  281. object ToolButton3: TToolButton
  282. Left = 177
  283. Top = 0
  284. Width = 8
  285. Style = tbsSeparator
  286. end
  287. object RunButton: TToolButton
  288. Left = 185
  289. Top = 0
  290. ImageIndex = 5
  291. ImageName = 'debug-start-filled'
  292. OnClick = RRunClick
  293. end
  294. object PauseButton: TToolButton
  295. Left = 208
  296. Top = 0
  297. Hint = 'Pause'
  298. Enabled = False
  299. ImageIndex = 6
  300. ImageName = 'debug-break-all-filled'
  301. OnClick = RPauseClick
  302. end
  303. object TerminateButton: TToolButton
  304. Left = 231
  305. Top = 0
  306. Enabled = False
  307. ImageIndex = 10
  308. ImageName = 'debug-stop-filled'
  309. OnClick = RTerminateClick
  310. end
  311. object ToolButton4: TToolButton
  312. Left = 254
  313. Top = 0
  314. Width = 8
  315. Style = tbsSeparator
  316. end
  317. object TargetSetupButton: TToolButton
  318. Left = 262
  319. Top = 0
  320. Hint = 'Target Setup (Ctrl+Q)'
  321. Grouped = True
  322. ImageIndex = 7
  323. ImageName = 'install'
  324. Style = tbsCheck
  325. OnClick = RTargetClick
  326. end
  327. object TargetUninstallButton: TToolButton
  328. Left = 285
  329. Top = 0
  330. Hint = 'Target Uninstall (Ctrl+W)'
  331. Grouped = True
  332. ImageIndex = 8
  333. ImageName = 'uninstall'
  334. Style = tbsCheck
  335. OnClick = RTargetClick
  336. end
  337. object ToolButton5: TToolButton
  338. Left = 308
  339. Top = 0
  340. Width = 8
  341. Style = tbsSeparator
  342. end
  343. object HelpButton: TToolButton
  344. Left = 316
  345. Top = 0
  346. Hint = 'Help (F1)'
  347. ImageIndex = 9
  348. ImageName = 'button-help'
  349. OnClick = HDocClick
  350. end
  351. end
  352. end
  353. object MemosTabSet: TNewTabSet
  354. Left = 0
  355. Top = 71
  356. Width = 361
  357. Height = 21
  358. Align = alTop
  359. TabIndex = 0
  360. Tabs.Strings = (
  361. 'Main Script')
  362. TabPosition = tpTop
  363. OnClick = MemosTabSetClick
  364. OnCloseButtonClick = MemosTabSetOnCloseButtonClick
  365. end
  366. object UpdatePanel: TPanel
  367. Left = 0
  368. Top = 30
  369. Width = 361
  370. Height = 41
  371. Align = alTop
  372. BevelOuter = bvNone
  373. TabOrder = 1
  374. Visible = False
  375. StyleName = 'Windows'
  376. object UpdatePanelCloseBitBtn: TBitmapButton
  377. AlignWithMargins = True
  378. Left = 328
  379. Top = 8
  380. Width = 25
  381. Height = 25
  382. Margins.Top = 8
  383. Margins.Right = 8
  384. Margins.Bottom = 8
  385. Align = alRight
  386. Caption = 'Close Banner'
  387. TabOrder = 1
  388. OnClick = UpdatePanelCloseBitBtnClick
  389. OnPaint = UpdatePanelCloseBitBtnPaint
  390. end
  391. object UpdatePanelDonateBitBtn: TBitmapButton
  392. AlignWithMargins = True
  393. Left = 300
  394. Top = 8
  395. Width = 25
  396. Height = 25
  397. Cursor = crHandPoint
  398. Margins.Top = 8
  399. Margins.Right = 0
  400. Margins.Bottom = 8
  401. Align = alRight
  402. Caption = 'Donate'
  403. Center = True
  404. ParentShowHint = False
  405. ShowHint = True
  406. TabOrder = 2
  407. OnClick = UpdatePanelDonateBitBtnClick
  408. end
  409. object UpdateLinkLabel: TLinkLabel
  410. Left = 13
  411. Top = 13
  412. Width = 303
  413. Height = 17
  414. Caption =
  415. 'Your version of Inno Setup has been updated! <a id="hwhatsnew">S' +
  416. 'ee what'#39's new</a>.'
  417. TabOrder = 0
  418. OnLinkClick = UpdateLinkLabelLinkClick
  419. end
  420. end
  421. object MainMenu1: TMainMenu
  422. AutoHotkeys = maManual
  423. AutoLineReduction = maManual
  424. Left = 48
  425. Top = 64
  426. object FMenu: TMenuItem
  427. Caption = '&File'
  428. OnClick = FMenuClick
  429. object FNewMainFile: TMenuItem
  430. Caption = '&New'
  431. ShortCut = 16462
  432. OnClick = FNewMainFileClick
  433. end
  434. object FOpenMainFile: TMenuItem
  435. Caption = '&Open...'
  436. ShortCut = 16463
  437. OnClick = FOpenMainFileClick
  438. end
  439. object FRecent: TMenuItem
  440. Caption = 'Open &Recent'
  441. object N6: TMenuItem
  442. Caption = '-'
  443. end
  444. object FClearRecent: TMenuItem
  445. Caption = '&Clear Recently Opened'
  446. OnClick = FClearRecentClick
  447. end
  448. end
  449. object N19: TMenuItem
  450. Caption = '-'
  451. end
  452. object FSave: TMenuItem
  453. Caption = '&Save'
  454. ShortCut = 16467
  455. OnClick = FSaveClick
  456. end
  457. object FSaveMainFileAs: TMenuItem
  458. Caption = 'Save &As...'
  459. OnClick = FSaveClick
  460. end
  461. object FSaveEncoding: TMenuItem
  462. Caption = 'Save &Encoding'
  463. object FSaveEncodingAuto: TMenuItem
  464. Caption = '&Auto (ANSI or UTF-8)'
  465. RadioItem = True
  466. OnClick = FSaveEncodingItemClick
  467. end
  468. object FSaveEncodingUTF8WithoutBOM: TMenuItem
  469. Caption = '&UTF-8'
  470. RadioItem = True
  471. OnClick = FSaveEncodingItemClick
  472. end
  473. object FSaveEncodingUTF8WithBOM: TMenuItem
  474. Caption = 'UTF-8 with &BOM'
  475. RadioItem = True
  476. OnClick = FSaveEncodingItemClick
  477. end
  478. end
  479. object FSaveAll: TMenuItem
  480. Caption = 'Sa&ve All'
  481. ShortCut = 24659
  482. OnClick = FSaveAllClick
  483. end
  484. object N1: TMenuItem
  485. Caption = '-'
  486. end
  487. object FPrint: TMenuItem
  488. Caption = '&Print...'
  489. ShortCut = 16464
  490. OnClick = FPrintClick
  491. end
  492. object N22: TMenuItem
  493. Caption = '-'
  494. end
  495. object FExit: TMenuItem
  496. Caption = 'E&xit'
  497. OnClick = FExitClick
  498. end
  499. end
  500. object EMenu: TMenuItem
  501. Caption = '&Edit'
  502. OnClick = EMenuClick
  503. object EUndo: TMenuItem
  504. Caption = '&Undo'
  505. OnClick = EUndoClick
  506. end
  507. object ERedo: TMenuItem
  508. Caption = '&Redo'
  509. OnClick = ERedoClick
  510. end
  511. object N3: TMenuItem
  512. Caption = '-'
  513. end
  514. object ECut: TMenuItem
  515. Caption = 'Cu&t'
  516. OnClick = ECutClick
  517. end
  518. object ECopy: TMenuItem
  519. Caption = '&Copy'
  520. OnClick = ECopyClick
  521. end
  522. object EPaste: TMenuItem
  523. Caption = '&Paste'
  524. OnClick = EPasteClick
  525. end
  526. object EDelete: TMenuItem
  527. Caption = 'De&lete'
  528. OnClick = EDeleteClick
  529. end
  530. object N25: TMenuItem
  531. Caption = '-'
  532. end
  533. object ESelectAll: TMenuItem
  534. Caption = 'Select &All'
  535. OnClick = ESelectAllClick
  536. end
  537. object ESelectNextOccurrence: TMenuItem
  538. Caption = 'Add Next &Occurrence'
  539. OnClick = ESelectNextOccurrenceClick
  540. end
  541. object ESelectAllOccurrences: TMenuItem
  542. Caption = '&Select All Occurrences'
  543. OnClick = ESelectAllOccurrencesClick
  544. end
  545. object ESelectAllFindMatches: TMenuItem
  546. Caption = 'Select All Find &Matches'
  547. OnClick = ESelectAllFindMatchesClick
  548. end
  549. object N4: TMenuItem
  550. Caption = '-'
  551. end
  552. object EFind: TMenuItem
  553. Caption = '&Find...'
  554. ShortCut = 16454
  555. OnClick = EFindClick
  556. end
  557. object EFindInFiles: TMenuItem
  558. Caption = 'F&ind in Files...'
  559. ShortCut = 24646
  560. OnClick = EFindInFilesClick
  561. end
  562. object EFindNext: TMenuItem
  563. Caption = 'Find &Next'
  564. ShortCut = 114
  565. OnClick = EFindNextOrPreviousClick
  566. end
  567. object EFindPrevious: TMenuItem
  568. Caption = 'Find Pre&vious'
  569. ShortCut = 8306
  570. OnClick = EFindNextOrPreviousClick
  571. end
  572. object EReplace: TMenuItem
  573. Caption = 'R&eplace...'
  574. ShortCut = 16456
  575. OnClick = EReplaceClick
  576. end
  577. object EFindRegEx: TMenuItem
  578. Caption = 'Use Regular E&xpressions'
  579. OnClick = EFindRegExClick
  580. end
  581. object N13: TMenuItem
  582. Caption = '-'
  583. end
  584. object EFoldLine: TMenuItem
  585. Caption = 'Fol&d Section'
  586. OnClick = EFoldOrUnfoldLineClick
  587. end
  588. object EUnfoldLine: TMenuItem
  589. Caption = '&Unfold Section'
  590. OnClick = EFoldOrUnfoldLineClick
  591. end
  592. object EGoto: TMenuItem
  593. Caption = '&Go to Line...'
  594. ShortCut = 16455
  595. OnClick = EGotoClick
  596. end
  597. object N18: TMenuItem
  598. Caption = '-'
  599. end
  600. object EToggleLinesComment: TMenuItem
  601. Caption = 'Toggle Line Comment'
  602. OnClick = EToggleLinesCommentClick
  603. end
  604. object EBraceMatch: TMenuItem
  605. Caption = 'Go To Matching Brace'
  606. OnClick = EBraceMatchClick
  607. end
  608. end
  609. object VMenu: TMenuItem
  610. Caption = '&View'
  611. OnClick = VMenuClick
  612. object VZoom: TMenuItem
  613. Caption = '&Zoom'
  614. object VZoomIn: TMenuItem
  615. Caption = 'Zoom &In'
  616. OnClick = VZoomInClick
  617. end
  618. object VZoomOut: TMenuItem
  619. Caption = 'Zoom &Out'
  620. OnClick = VZoomOutClick
  621. end
  622. object N9: TMenuItem
  623. Caption = '-'
  624. end
  625. object VZoomReset: TMenuItem
  626. Caption = '&Reset'
  627. OnClick = VZoomResetClick
  628. end
  629. end
  630. object N8: TMenuItem
  631. Caption = '-'
  632. end
  633. object VToolbar: TMenuItem
  634. Caption = '&Toolbar'
  635. OnClick = VToolbarClick
  636. end
  637. object VStatusBar: TMenuItem
  638. Caption = 'St&atus Bar'
  639. OnClick = VStatusBarClick
  640. end
  641. object N11: TMenuItem
  642. Caption = '-'
  643. end
  644. object VNextTab: TMenuItem
  645. Caption = '&Next Tab'
  646. ShortCut = 16393
  647. OnClick = VNextTabClick
  648. end
  649. object VPreviousTab: TMenuItem
  650. Caption = '&Previous Tab'
  651. ShortCut = 24585
  652. OnClick = VPreviousTabClick
  653. end
  654. object VCloseCurrentTab: TMenuItem
  655. Caption = 'C&lose Tab'
  656. ShortCut = 16499
  657. OnClick = VCloseCurrentTabClick
  658. end
  659. object VReopenTab: TMenuItem
  660. Caption = 'Re&open Tab'
  661. end
  662. object VReopenTabs: TMenuItem
  663. Caption = 'Reopen &All Tabs'
  664. OnClick = VReopenTabsClick
  665. end
  666. object MemosTabSetPopupMenu: TMenuItem
  667. Caption = 'MemosTabSetPopupMenu'
  668. Visible = False
  669. OnClick = MemosTabSetPopupMenuClick
  670. object VCloseCurrentTab2: TMenuItem
  671. Caption = 'C&lose Current Tab'
  672. OnClick = VCloseCurrentTabClick
  673. end
  674. object VReopenTab2: TMenuItem
  675. Caption = 'Re&open Tab'
  676. end
  677. object VReopenTabs2: TMenuItem
  678. Caption = 'Reopen &All Tabs'
  679. OnClick = VReopenTabsClick
  680. end
  681. end
  682. object NavPopupMenu: TMenuItem
  683. Caption = 'NavPopupMenu'
  684. Visible = False
  685. OnClick = NavPopupMenuClick
  686. end
  687. object N20: TMenuItem
  688. Caption = '-'
  689. end
  690. object VCompilerOutput: TMenuItem
  691. Caption = '&Compiler Output'
  692. RadioItem = True
  693. OnClick = VCompilerOutputClick
  694. end
  695. object VDebugOutput: TMenuItem
  696. Caption = '&Debug Output'
  697. RadioItem = True
  698. OnClick = VDebugOutputClick
  699. end
  700. object VDebugCallStack: TMenuItem
  701. Caption = 'D&ebug Call Stack'
  702. RadioItem = True
  703. OnClick = VDebugCallStackClick
  704. end
  705. object VFindResults: TMenuItem
  706. Caption = '&Find Results'
  707. RadioItem = True
  708. OnClick = VFindResultsClick
  709. end
  710. object VHide: TMenuItem
  711. Caption = '&Hide Bottom Pane'
  712. RadioItem = True
  713. OnClick = VHideClick
  714. end
  715. object N24: TMenuItem
  716. Caption = '-'
  717. end
  718. object VWordWrap: TMenuItem
  719. Caption = '&Word Wrap'
  720. ShortCut = 32858
  721. OnClick = VWordWrapClick
  722. end
  723. object OutputListPopupMenu: TMenuItem
  724. Caption = 'OutputListPopupMenu'
  725. Visible = False
  726. OnClick = SimpleMenuClick
  727. object POutputListCopy: TMenuItem
  728. Caption = '&Copy'
  729. OnClick = POutputListCopyClick
  730. end
  731. object POutputListSelectAll: TMenuItem
  732. Caption = 'Select &All'
  733. OnClick = POutputListSelectAllClick
  734. end
  735. end
  736. end
  737. object BMenu: TMenuItem
  738. Caption = '&Build'
  739. OnClick = BMenuClick
  740. object BCompile: TMenuItem
  741. Caption = '&Compile'
  742. OnClick = BCompileClick
  743. end
  744. object BStopCompile: TMenuItem
  745. Caption = 'S&top Compile'
  746. Enabled = False
  747. OnClick = BStopCompileClick
  748. end
  749. object N2: TMenuItem
  750. Caption = '-'
  751. end
  752. object BLowPriority: TMenuItem
  753. Caption = '&Low Priority During Compile'
  754. OnClick = BLowPriorityClick
  755. end
  756. object N17: TMenuItem
  757. Caption = '-'
  758. end
  759. object BOpenOutputFolder: TMenuItem
  760. Caption = '&Open Output Folder'
  761. Enabled = False
  762. OnClick = BOpenOutputFolderClick
  763. end
  764. end
  765. object RMenu: TMenuItem
  766. Caption = '&Run'
  767. OnClick = RMenuClick
  768. object RRun: TMenuItem
  769. Caption = '&Run'
  770. OnClick = RRunClick
  771. end
  772. object RParameters: TMenuItem
  773. Caption = '&Parameters...'
  774. OnClick = RParametersClick
  775. end
  776. object N5: TMenuItem
  777. Caption = '-'
  778. end
  779. object RRunToCursor: TMenuItem
  780. Caption = 'Run to &Cursor'
  781. OnClick = RRunToCursorClick
  782. end
  783. object RStepInto: TMenuItem
  784. Caption = 'Step &Into'
  785. OnClick = RStepIntoClick
  786. end
  787. object RStepOver: TMenuItem
  788. Caption = 'Step &Over'
  789. OnClick = RStepOverClick
  790. end
  791. object RStepOut: TMenuItem
  792. Caption = 'Step Out'
  793. OnClick = RStepOutClick
  794. end
  795. object RToggleBreakPoint: TMenuItem
  796. Caption = 'Toggle &Breakpoint'
  797. OnClick = RToggleBreakPointClick
  798. end
  799. object RDeleteBreakPoints: TMenuItem
  800. Caption = '&Delete All Breakpoints'
  801. OnClick = RDeleteBreakPointsClick
  802. end
  803. object BreakPointsPopupMenu: TMenuItem
  804. Caption = 'BreakPointsPopupMenu'
  805. Visible = False
  806. OnClick = BreakPointsPopupMenuClick
  807. object RToggleBreakPoint2: TMenuItem
  808. Caption = 'Toggle &Breakpoint'
  809. OnClick = RToggleBreakPointClick
  810. end
  811. object RDeleteBreakPoints2: TMenuItem
  812. Caption = '&Delete All Breakpoints'
  813. OnClick = RDeleteBreakPointsClick
  814. end
  815. end
  816. object RPause: TMenuItem
  817. Caption = 'P&ause'
  818. Enabled = False
  819. OnClick = RPauseClick
  820. end
  821. object RTerminate: TMenuItem
  822. Caption = '&Terminate'
  823. Enabled = False
  824. OnClick = RTerminateClick
  825. end
  826. object N10: TMenuItem
  827. Caption = '-'
  828. end
  829. object REvaluate: TMenuItem
  830. Caption = '&Evaluate Constant...'
  831. Enabled = False
  832. OnClick = REvaluateClick
  833. end
  834. object N15: TMenuItem
  835. Caption = '-'
  836. end
  837. object RTargetSetup: TMenuItem
  838. Caption = 'Target &Setup'
  839. GroupIndex = 1
  840. RadioItem = True
  841. ShortCut = 16465
  842. OnClick = RTargetClick
  843. end
  844. object RTargetUninstall: TMenuItem
  845. Caption = 'Target &Uninstall'
  846. GroupIndex = 1
  847. RadioItem = True
  848. ShortCut = 16471
  849. OnClick = RTargetClick
  850. end
  851. end
  852. object TMenu: TMenuItem
  853. Caption = '&Tools'
  854. OnClick = TMenuClick
  855. object TAddRemovePrograms: TMenuItem
  856. Caption = '&Add/Remove Programs'
  857. OnClick = TAddRemoveProgramsClick
  858. end
  859. object N23: TMenuItem
  860. Caption = '-'
  861. end
  862. object TGenerateGUID: TMenuItem
  863. Caption = 'Generate &GUID'
  864. ShortCut = 24647
  865. OnClick = TGenerateGUIDClick
  866. end
  867. object TFilesDesigner: TMenuItem
  868. Caption = 'Generate [F&iles] Entries...'
  869. ShortCut = 24649
  870. OnClick = TFilesDesignerClick
  871. end
  872. object TRegistryDesigner: TMenuItem
  873. Caption = 'Generate [&Registry] Entries...'
  874. ImageIndex = 66
  875. ShortCut = 24658
  876. OnClick = TRegistryDesignerClick
  877. end
  878. object TMsgBoxDesigner: TMenuItem
  879. Caption = 'Generate &MsgBox/TaskDialogMsgBox Call...'
  880. ShortCut = 24653
  881. OnClick = TMsgBoxDesignerClick
  882. end
  883. object N7: TMenuItem
  884. Caption = '-'
  885. end
  886. object TSignTools: TMenuItem
  887. Caption = '&Configure Sign Tools...'
  888. OnClick = TSignToolsClick
  889. end
  890. object N16: TMenuItem
  891. Caption = '-'
  892. end
  893. object TOptions: TMenuItem
  894. Caption = '&Options...'
  895. OnClick = TOptionsClick
  896. end
  897. end
  898. object HMenu: TMenuItem
  899. Caption = '&Help'
  900. OnClick = HMenuClick
  901. object HPurchase: TMenuItem
  902. Caption = 'Purchase or Renew Commercial &License'
  903. OnClick = HPurchaseClick
  904. end
  905. object HRegister: TMenuItem
  906. Caption = 'Enter Commercial License &Key...'
  907. OnClick = HRegisterClick
  908. end
  909. object HUnregister: TMenuItem
  910. Caption = 'Remove Commercial License Key'
  911. OnClick = HUnregisterClick
  912. end
  913. object HDonate: TMenuItem
  914. Caption = '&Donate'
  915. OnClick = HDonateClick
  916. end
  917. object N21: TMenuItem
  918. Caption = '-'
  919. end
  920. object HShortcutsDoc: TMenuItem
  921. Caption = '&Keyboard And Mouse Commands'
  922. OnClick = HShortcutsDocClick
  923. end
  924. object HRegexDoc: TMenuItem
  925. Caption = 'Regular E&xpressions'
  926. OnClick = HRegexDocClick
  927. end
  928. object N14: TMenuItem
  929. Caption = '-'
  930. end
  931. object HDoc: TMenuItem
  932. Caption = 'Inno &Setup Documentation'
  933. OnClick = HDocClick
  934. end
  935. object HExamples: TMenuItem
  936. Caption = 'Inno Setup &Example Scripts'
  937. OnClick = HExamplesClick
  938. end
  939. object HFaq: TMenuItem
  940. Caption = 'Inno Setup &FAQ'
  941. OnClick = HFaqClick
  942. end
  943. object HMailingList: TMenuItem
  944. Caption = 'Inno Setup &Mailing List'
  945. OnClick = HMailingListClick
  946. end
  947. object HWhatsNew: TMenuItem
  948. Caption = 'Inno Setup &Revision History'
  949. OnClick = HWhatsNewClick
  950. end
  951. object HWebsite: TMenuItem
  952. Caption = 'Inno Setup &Web Site'
  953. OnClick = HWebsiteClick
  954. end
  955. object N12: TMenuItem
  956. Caption = '-'
  957. end
  958. object HISPPDoc: TMenuItem
  959. Caption = 'Inno Setup &Preprocessor Documentation'
  960. OnClick = HISPPDocClick
  961. end
  962. object HISPPSep: TMenuItem
  963. Caption = '-'
  964. end
  965. object HAbout: TMenuItem
  966. Caption = '&About Inno Setup'
  967. OnClick = HAboutClick
  968. end
  969. end
  970. end
  971. object FindDialog: TFindDialog
  972. OnFind = FindDialogFind
  973. Left = 48
  974. Top = 120
  975. end
  976. object ReplaceDialog: TReplaceDialog
  977. OnFind = FindDialogFind
  978. OnReplace = ReplaceDialogReplace
  979. Left = 160
  980. Top = 120
  981. end
  982. object CheckIfRunningTimer: TTimer
  983. Enabled = False
  984. Interval = 100
  985. OnTimer = CheckIfRunningTimerTimer
  986. Left = 160
  987. Top = 64
  988. end
  989. object ThemedToolbarVirtualImageList: TVirtualImageList
  990. AutoFill = True
  991. Images = <
  992. item
  993. CollectionIndex = 0
  994. CollectionName = 'document-new'
  995. Name = 'document-new'
  996. end
  997. item
  998. CollectionIndex = 1
  999. CollectionName = 'folder-open-filled-arrow-down-right'
  1000. Name = 'folder-open-filled-arrow-down-right'
  1001. end
  1002. item
  1003. CollectionIndex = 2
  1004. CollectionName = 'save-filled'
  1005. Name = 'save-filled'
  1006. end
  1007. item
  1008. CollectionIndex = 3
  1009. CollectionName = 'build'
  1010. Name = 'build'
  1011. end
  1012. item
  1013. CollectionIndex = 4
  1014. CollectionName = 'build-cancel-2'
  1015. Name = 'build-cancel-2'
  1016. end
  1017. item
  1018. CollectionIndex = 5
  1019. CollectionName = 'debug-start-filled'
  1020. Name = 'debug-start-filled'
  1021. end
  1022. item
  1023. CollectionIndex = 6
  1024. CollectionName = 'debug-break-all-filled'
  1025. Name = 'debug-break-all-filled'
  1026. end
  1027. item
  1028. CollectionIndex = 7
  1029. CollectionName = 'install'
  1030. Name = 'install'
  1031. end
  1032. item
  1033. CollectionIndex = 8
  1034. CollectionName = 'uninstall'
  1035. Name = 'uninstall'
  1036. end
  1037. item
  1038. CollectionIndex = 9
  1039. CollectionName = 'button-help'
  1040. Name = 'button-help'
  1041. end
  1042. item
  1043. CollectionIndex = 10
  1044. CollectionName = 'debug-stop-filled'
  1045. Name = 'debug-stop-filled'
  1046. end
  1047. item
  1048. CollectionIndex = 11
  1049. CollectionName = 'save-as-filled'
  1050. Name = 'save-as-filled'
  1051. end
  1052. item
  1053. CollectionIndex = 12
  1054. CollectionName = 'save-all-filled'
  1055. Name = 'save-all-filled'
  1056. end
  1057. item
  1058. CollectionIndex = 13
  1059. CollectionName = 'printer'
  1060. Name = 'printer'
  1061. end
  1062. item
  1063. CollectionIndex = 14
  1064. CollectionName = 'command-undo-1'
  1065. Name = 'command-undo-1'
  1066. end
  1067. item
  1068. CollectionIndex = 15
  1069. CollectionName = 'command-redo-1'
  1070. Name = 'command-redo-1'
  1071. end
  1072. item
  1073. CollectionIndex = 16
  1074. CollectionName = 'clipboard-cut'
  1075. Name = 'clipboard-cut'
  1076. end
  1077. item
  1078. CollectionIndex = 17
  1079. CollectionName = 'clipboard-copy'
  1080. Name = 'clipboard-copy'
  1081. end
  1082. item
  1083. CollectionIndex = 18
  1084. CollectionName = 'clipboard-paste'
  1085. Name = 'clipboard-paste'
  1086. end
  1087. item
  1088. CollectionIndex = 19
  1089. CollectionName = 'select-all'
  1090. Name = 'select-all'
  1091. end
  1092. item
  1093. CollectionIndex = 20
  1094. CollectionName = 'find'
  1095. Name = 'find'
  1096. end
  1097. item
  1098. CollectionIndex = 21
  1099. CollectionName = 'replace'
  1100. Name = 'replace'
  1101. end
  1102. item
  1103. CollectionIndex = 22
  1104. CollectionName = 'control-edit'
  1105. Name = 'control-edit'
  1106. end
  1107. item
  1108. CollectionIndex = 23
  1109. CollectionName = 'debug-step-into'
  1110. Name = 'debug-step-into'
  1111. end
  1112. item
  1113. CollectionIndex = 24
  1114. CollectionName = 'debug-step-over'
  1115. Name = 'debug-step-over'
  1116. end
  1117. item
  1118. CollectionIndex = 25
  1119. CollectionName = 'debug-step-out'
  1120. Name = 'debug-step-out'
  1121. end
  1122. item
  1123. CollectionIndex = 26
  1124. CollectionName = 'debug-breakpoint-filled'
  1125. Name = 'debug-breakpoint-filled'
  1126. end
  1127. item
  1128. CollectionIndex = 27
  1129. CollectionName = 'variables'
  1130. Name = 'variables'
  1131. end
  1132. item
  1133. CollectionIndex = 28
  1134. CollectionName = 'heart-filled'
  1135. Name = 'heart-filled'
  1136. end
  1137. item
  1138. CollectionIndex = 29
  1139. CollectionName = 'alert-filled'
  1140. Name = 'alert-filled'
  1141. end
  1142. item
  1143. CollectionIndex = 30
  1144. CollectionName = 'home'
  1145. Name = 'home'
  1146. end
  1147. item
  1148. CollectionIndex = 31
  1149. CollectionName = 'button-info'
  1150. Name = 'button-info'
  1151. end
  1152. item
  1153. CollectionIndex = 32
  1154. CollectionName = 'application'
  1155. Name = 'application'
  1156. end
  1157. item
  1158. CollectionIndex = 33
  1159. CollectionName = 'folder-open-filled-find'
  1160. Name = 'folder-open-filled-find'
  1161. end
  1162. item
  1163. CollectionIndex = 34
  1164. CollectionName = 'gear-filled'
  1165. Name = 'gear-filled'
  1166. end
  1167. item
  1168. CollectionIndex = 35
  1169. CollectionName = 'key-filled'
  1170. Name = 'key-filled'
  1171. end
  1172. item
  1173. CollectionIndex = 36
  1174. CollectionName = 'unused\letter-a-arrow-right-2'
  1175. Name = 'unused\letter-a-arrow-right-2'
  1176. end
  1177. item
  1178. CollectionIndex = 37
  1179. CollectionName = 'symbol-cancel'
  1180. Name = 'symbol-cancel'
  1181. end
  1182. item
  1183. CollectionIndex = 38
  1184. CollectionName = 'comment-text-script-filled'
  1185. Name = 'comment-text-script-filled'
  1186. end
  1187. item
  1188. CollectionIndex = 39
  1189. CollectionName = 'control-tree-script-filled'
  1190. Name = 'control-tree-script-filled'
  1191. end
  1192. item
  1193. CollectionIndex = 40
  1194. CollectionName = 'documents-script-filled'
  1195. Name = 'documents-script-filled'
  1196. end
  1197. item
  1198. CollectionIndex = 41
  1199. CollectionName = 'tag-script-filled'
  1200. Name = 'tag-script-filled'
  1201. end
  1202. item
  1203. CollectionIndex = 42
  1204. CollectionName = 'control-tab-filled-arrow-left-2'
  1205. Name = 'control-tab-filled-arrow-left-2'
  1206. end
  1207. item
  1208. CollectionIndex = 43
  1209. CollectionName = 'control-tab-filled-arrow-right-2'
  1210. Name = 'control-tab-filled-arrow-right-2'
  1211. end
  1212. item
  1213. CollectionIndex = 44
  1214. CollectionName = 'unused\control-tab-filled-cancel-2'
  1215. Name = 'unused\control-tab-filled-cancel-2'
  1216. end
  1217. item
  1218. CollectionIndex = 45
  1219. CollectionName = 'control-tab-filled-redo-1'
  1220. Name = 'control-tab-filled-redo-1'
  1221. end
  1222. item
  1223. CollectionIndex = 46
  1224. CollectionName = 'unused\find-arrow-left-2'
  1225. Name = 'unused\find-arrow-left-2'
  1226. end
  1227. item
  1228. CollectionIndex = 47
  1229. CollectionName = 'unused\find-arrow-right-2'
  1230. Name = 'unused\find-arrow-right-2'
  1231. end
  1232. item
  1233. CollectionIndex = 48
  1234. CollectionName = 'announcement'
  1235. Name = 'announcement'
  1236. end
  1237. item
  1238. CollectionIndex = 49
  1239. CollectionName = 'debug-start-filled-arrow-right-2'
  1240. Name = 'debug-start-filled-arrow-right-2'
  1241. end
  1242. item
  1243. CollectionIndex = 50
  1244. CollectionName = 'zoom-in'
  1245. Name = 'zoom-in'
  1246. end
  1247. item
  1248. CollectionIndex = 51
  1249. CollectionName = 'zoom-out'
  1250. Name = 'zoom-out'
  1251. end
  1252. item
  1253. CollectionIndex = 52
  1254. CollectionName = 'unused\debug-breakpoint-filled-eraser'
  1255. Name = 'unused\debug-breakpoint-filled-eraser'
  1256. end
  1257. item
  1258. CollectionIndex = 53
  1259. CollectionName = 'debug-breakpoints-filled-eraser'
  1260. Name = 'debug-breakpoints-filled-eraser'
  1261. end
  1262. item
  1263. CollectionIndex = 54
  1264. CollectionName = 'button-arrow-left'
  1265. Name = 'button-arrow-left'
  1266. end
  1267. item
  1268. CollectionIndex = 55
  1269. CollectionName = 'button-arrow-right'
  1270. Name = 'button-arrow-right'
  1271. end
  1272. item
  1273. CollectionIndex = 56
  1274. CollectionName = 'folder-open-filled'
  1275. Name = 'folder-open-filled'
  1276. end
  1277. item
  1278. CollectionIndex = 57
  1279. CollectionName = 'eraser'
  1280. Name = 'eraser'
  1281. end
  1282. item
  1283. CollectionIndex = 58
  1284. CollectionName = 'symbol-add'
  1285. Name = 'symbol-add'
  1286. end
  1287. item
  1288. CollectionIndex = 59
  1289. CollectionName = 'symbol-remove'
  1290. Name = 'symbol-remove'
  1291. end
  1292. item
  1293. CollectionIndex = 60
  1294. CollectionName = 'padlock-filled'
  1295. Name = 'padlock-filled'
  1296. end
  1297. item
  1298. CollectionIndex = 61
  1299. CollectionName = 'shopping-cart'
  1300. Name = 'shopping-cart'
  1301. end>
  1302. ImageCollection = ImagesModule.LightToolBarImageCollection
  1303. Left = 80
  1304. Top = 176
  1305. end
  1306. object LightToolbarVirtualImageList: TVirtualImageList
  1307. Images = <>
  1308. ImageCollection = ImagesModule.LightToolBarImageCollection
  1309. Left = 191
  1310. Top = 197
  1311. end
  1312. object FindInFilesDialog: TFindDialog
  1313. Options = [frDown, frHideUpDown]
  1314. OnFind = FindInFilesDialogFind
  1315. Left = 272
  1316. Top = 120
  1317. end
  1318. object PrintDialog: TPrintDialog
  1319. Left = 272
  1320. Top = 64
  1321. end
  1322. object ThemedMarkersAndACVirtualImageList: TVirtualImageList
  1323. Images = <>
  1324. Width = 12
  1325. Height = 12
  1326. Left = 320
  1327. Top = 176
  1328. end
  1329. end