IDE.MainForm.dfm 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328
  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. ParentShowHint = False
  404. ShowHint = True
  405. TabOrder = 2
  406. OnClick = UpdatePanelDonateBitBtnClick
  407. end
  408. object UpdateLinkLabel: TLinkLabel
  409. Left = 13
  410. Top = 13
  411. Width = 303
  412. Height = 17
  413. Caption =
  414. 'Your version of Inno Setup has been updated! <a id="hwhatsnew">S' +
  415. 'ee what'#39's new</a>.'
  416. TabOrder = 0
  417. OnLinkClick = UpdateLinkLabelLinkClick
  418. end
  419. end
  420. object MainMenu1: TMainMenu
  421. AutoHotkeys = maManual
  422. AutoLineReduction = maManual
  423. Left = 48
  424. Top = 64
  425. object FMenu: TMenuItem
  426. Caption = '&File'
  427. OnClick = FMenuClick
  428. object FNewMainFile: TMenuItem
  429. Caption = '&New'
  430. ShortCut = 16462
  431. OnClick = FNewMainFileClick
  432. end
  433. object FOpenMainFile: TMenuItem
  434. Caption = '&Open...'
  435. ShortCut = 16463
  436. OnClick = FOpenMainFileClick
  437. end
  438. object FRecent: TMenuItem
  439. Caption = 'Open &Recent'
  440. object N6: TMenuItem
  441. Caption = '-'
  442. end
  443. object FClearRecent: TMenuItem
  444. Caption = '&Clear Recently Opened'
  445. OnClick = FClearRecentClick
  446. end
  447. end
  448. object N19: TMenuItem
  449. Caption = '-'
  450. end
  451. object FSave: TMenuItem
  452. Caption = '&Save'
  453. ShortCut = 16467
  454. OnClick = FSaveClick
  455. end
  456. object FSaveMainFileAs: TMenuItem
  457. Caption = 'Save &As...'
  458. OnClick = FSaveClick
  459. end
  460. object FSaveEncoding: TMenuItem
  461. Caption = 'Save &Encoding'
  462. object FSaveEncodingAuto: TMenuItem
  463. Caption = '&Auto (ANSI or UTF-8)'
  464. RadioItem = True
  465. OnClick = FSaveEncodingItemClick
  466. end
  467. object FSaveEncodingUTF8WithoutBOM: TMenuItem
  468. Caption = '&UTF-8'
  469. RadioItem = True
  470. OnClick = FSaveEncodingItemClick
  471. end
  472. object FSaveEncodingUTF8WithBOM: TMenuItem
  473. Caption = 'UTF-8 with &BOM'
  474. RadioItem = True
  475. OnClick = FSaveEncodingItemClick
  476. end
  477. end
  478. object FSaveAll: TMenuItem
  479. Caption = 'Sa&ve All'
  480. ShortCut = 24659
  481. OnClick = FSaveAllClick
  482. end
  483. object N1: TMenuItem
  484. Caption = '-'
  485. end
  486. object FPrint: TMenuItem
  487. Caption = '&Print...'
  488. ShortCut = 16464
  489. OnClick = FPrintClick
  490. end
  491. object N22: TMenuItem
  492. Caption = '-'
  493. end
  494. object FExit: TMenuItem
  495. Caption = 'E&xit'
  496. OnClick = FExitClick
  497. end
  498. end
  499. object EMenu: TMenuItem
  500. Caption = '&Edit'
  501. OnClick = EMenuClick
  502. object EUndo: TMenuItem
  503. Caption = '&Undo'
  504. OnClick = EUndoClick
  505. end
  506. object ERedo: TMenuItem
  507. Caption = '&Redo'
  508. OnClick = ERedoClick
  509. end
  510. object N3: TMenuItem
  511. Caption = '-'
  512. end
  513. object ECut: TMenuItem
  514. Caption = 'Cu&t'
  515. OnClick = ECutClick
  516. end
  517. object ECopy: TMenuItem
  518. Caption = '&Copy'
  519. OnClick = ECopyClick
  520. end
  521. object EPaste: TMenuItem
  522. Caption = '&Paste'
  523. OnClick = EPasteClick
  524. end
  525. object EDelete: TMenuItem
  526. Caption = 'De&lete'
  527. OnClick = EDeleteClick
  528. end
  529. object N25: TMenuItem
  530. Caption = '-'
  531. end
  532. object ESelectAll: TMenuItem
  533. Caption = 'Select &All'
  534. OnClick = ESelectAllClick
  535. end
  536. object ESelectNextOccurrence: TMenuItem
  537. Caption = 'Add Next &Occurrence'
  538. OnClick = ESelectNextOccurrenceClick
  539. end
  540. object ESelectAllOccurrences: TMenuItem
  541. Caption = '&Select All Occurrences'
  542. OnClick = ESelectAllOccurrencesClick
  543. end
  544. object ESelectAllFindMatches: TMenuItem
  545. Caption = 'Select All Find &Matches'
  546. OnClick = ESelectAllFindMatchesClick
  547. end
  548. object N4: TMenuItem
  549. Caption = '-'
  550. end
  551. object EFind: TMenuItem
  552. Caption = '&Find...'
  553. ShortCut = 16454
  554. OnClick = EFindClick
  555. end
  556. object EFindInFiles: TMenuItem
  557. Caption = 'F&ind in Files...'
  558. ShortCut = 24646
  559. OnClick = EFindInFilesClick
  560. end
  561. object EFindNext: TMenuItem
  562. Caption = 'Find &Next'
  563. ShortCut = 114
  564. OnClick = EFindNextOrPreviousClick
  565. end
  566. object EFindPrevious: TMenuItem
  567. Caption = 'Find Pre&vious'
  568. ShortCut = 8306
  569. OnClick = EFindNextOrPreviousClick
  570. end
  571. object EReplace: TMenuItem
  572. Caption = 'R&eplace...'
  573. ShortCut = 16456
  574. OnClick = EReplaceClick
  575. end
  576. object EFindRegEx: TMenuItem
  577. Caption = 'Use Regular E&xpressions'
  578. OnClick = EFindRegExClick
  579. end
  580. object N13: TMenuItem
  581. Caption = '-'
  582. end
  583. object EFoldLine: TMenuItem
  584. Caption = 'Fol&d Section'
  585. OnClick = EFoldOrUnfoldLineClick
  586. end
  587. object EUnfoldLine: TMenuItem
  588. Caption = '&Unfold Section'
  589. OnClick = EFoldOrUnfoldLineClick
  590. end
  591. object EGoto: TMenuItem
  592. Caption = '&Go to Line...'
  593. ShortCut = 16455
  594. OnClick = EGotoClick
  595. end
  596. object N18: TMenuItem
  597. Caption = '-'
  598. end
  599. object EToggleLinesComment: TMenuItem
  600. Caption = 'Toggle Line Comment'
  601. OnClick = EToggleLinesCommentClick
  602. end
  603. object EBraceMatch: TMenuItem
  604. Caption = 'Go To Matching Brace'
  605. OnClick = EBraceMatchClick
  606. end
  607. end
  608. object VMenu: TMenuItem
  609. Caption = '&View'
  610. OnClick = VMenuClick
  611. object VZoom: TMenuItem
  612. Caption = '&Zoom'
  613. object VZoomIn: TMenuItem
  614. Caption = 'Zoom &In'
  615. OnClick = VZoomInClick
  616. end
  617. object VZoomOut: TMenuItem
  618. Caption = 'Zoom &Out'
  619. OnClick = VZoomOutClick
  620. end
  621. object N9: TMenuItem
  622. Caption = '-'
  623. end
  624. object VZoomReset: TMenuItem
  625. Caption = '&Reset'
  626. OnClick = VZoomResetClick
  627. end
  628. end
  629. object N8: TMenuItem
  630. Caption = '-'
  631. end
  632. object VToolbar: TMenuItem
  633. Caption = '&Toolbar'
  634. OnClick = VToolbarClick
  635. end
  636. object VStatusBar: TMenuItem
  637. Caption = 'St&atus Bar'
  638. OnClick = VStatusBarClick
  639. end
  640. object N11: TMenuItem
  641. Caption = '-'
  642. end
  643. object VNextTab: TMenuItem
  644. Caption = '&Next Tab'
  645. ShortCut = 16393
  646. OnClick = VNextTabClick
  647. end
  648. object VPreviousTab: TMenuItem
  649. Caption = '&Previous Tab'
  650. ShortCut = 24585
  651. OnClick = VPreviousTabClick
  652. end
  653. object VCloseCurrentTab: TMenuItem
  654. Caption = 'C&lose Tab'
  655. ShortCut = 16499
  656. OnClick = VCloseCurrentTabClick
  657. end
  658. object VReopenTab: TMenuItem
  659. Caption = 'Re&open Tab'
  660. end
  661. object VReopenTabs: TMenuItem
  662. Caption = 'Reopen &All Tabs'
  663. OnClick = VReopenTabsClick
  664. end
  665. object MemosTabSetPopupMenu: TMenuItem
  666. Caption = 'MemosTabSetPopupMenu'
  667. Visible = False
  668. OnClick = MemosTabSetPopupMenuClick
  669. object VCloseCurrentTab2: TMenuItem
  670. Caption = 'C&lose Current Tab'
  671. OnClick = VCloseCurrentTabClick
  672. end
  673. object VReopenTab2: TMenuItem
  674. Caption = 'Re&open Tab'
  675. end
  676. object VReopenTabs2: TMenuItem
  677. Caption = 'Reopen &All Tabs'
  678. OnClick = VReopenTabsClick
  679. end
  680. end
  681. object NavPopupMenu: TMenuItem
  682. Caption = 'NavPopupMenu'
  683. Visible = False
  684. OnClick = NavPopupMenuClick
  685. end
  686. object N20: TMenuItem
  687. Caption = '-'
  688. end
  689. object VCompilerOutput: TMenuItem
  690. Caption = '&Compiler Output'
  691. RadioItem = True
  692. OnClick = VCompilerOutputClick
  693. end
  694. object VDebugOutput: TMenuItem
  695. Caption = '&Debug Output'
  696. RadioItem = True
  697. OnClick = VDebugOutputClick
  698. end
  699. object VDebugCallStack: TMenuItem
  700. Caption = 'D&ebug Call Stack'
  701. RadioItem = True
  702. OnClick = VDebugCallStackClick
  703. end
  704. object VFindResults: TMenuItem
  705. Caption = '&Find Results'
  706. RadioItem = True
  707. OnClick = VFindResultsClick
  708. end
  709. object VHide: TMenuItem
  710. Caption = '&Hide Bottom Pane'
  711. RadioItem = True
  712. OnClick = VHideClick
  713. end
  714. object N24: TMenuItem
  715. Caption = '-'
  716. end
  717. object VWordWrap: TMenuItem
  718. Caption = '&Word Wrap'
  719. ShortCut = 32858
  720. OnClick = VWordWrapClick
  721. end
  722. object OutputListPopupMenu: TMenuItem
  723. Caption = 'OutputListPopupMenu'
  724. Visible = False
  725. OnClick = SimpleMenuClick
  726. object POutputListCopy: TMenuItem
  727. Caption = '&Copy'
  728. OnClick = POutputListCopyClick
  729. end
  730. object POutputListSelectAll: TMenuItem
  731. Caption = 'Select &All'
  732. OnClick = POutputListSelectAllClick
  733. end
  734. end
  735. end
  736. object BMenu: TMenuItem
  737. Caption = '&Build'
  738. OnClick = BMenuClick
  739. object BCompile: TMenuItem
  740. Caption = '&Compile'
  741. OnClick = BCompileClick
  742. end
  743. object BStopCompile: TMenuItem
  744. Caption = 'S&top Compile'
  745. Enabled = False
  746. OnClick = BStopCompileClick
  747. end
  748. object N2: TMenuItem
  749. Caption = '-'
  750. end
  751. object BLowPriority: TMenuItem
  752. Caption = '&Low Priority During Compile'
  753. OnClick = BLowPriorityClick
  754. end
  755. object N17: TMenuItem
  756. Caption = '-'
  757. end
  758. object BOpenOutputFolder: TMenuItem
  759. Caption = '&Open Output Folder'
  760. Enabled = False
  761. OnClick = BOpenOutputFolderClick
  762. end
  763. end
  764. object RMenu: TMenuItem
  765. Caption = '&Run'
  766. OnClick = RMenuClick
  767. object RRun: TMenuItem
  768. Caption = '&Run'
  769. OnClick = RRunClick
  770. end
  771. object RParameters: TMenuItem
  772. Caption = '&Parameters...'
  773. OnClick = RParametersClick
  774. end
  775. object N5: TMenuItem
  776. Caption = '-'
  777. end
  778. object RRunToCursor: TMenuItem
  779. Caption = 'Run to &Cursor'
  780. OnClick = RRunToCursorClick
  781. end
  782. object RStepInto: TMenuItem
  783. Caption = 'Step &Into'
  784. OnClick = RStepIntoClick
  785. end
  786. object RStepOver: TMenuItem
  787. Caption = 'Step &Over'
  788. OnClick = RStepOverClick
  789. end
  790. object RStepOut: TMenuItem
  791. Caption = 'Step Out'
  792. OnClick = RStepOutClick
  793. end
  794. object RToggleBreakPoint: TMenuItem
  795. Caption = 'Toggle &Breakpoint'
  796. OnClick = RToggleBreakPointClick
  797. end
  798. object RDeleteBreakPoints: TMenuItem
  799. Caption = '&Delete All Breakpoints'
  800. OnClick = RDeleteBreakPointsClick
  801. end
  802. object BreakPointsPopupMenu: TMenuItem
  803. Caption = 'BreakPointsPopupMenu'
  804. Visible = False
  805. OnClick = BreakPointsPopupMenuClick
  806. object RToggleBreakPoint2: TMenuItem
  807. Caption = 'Toggle &Breakpoint'
  808. OnClick = RToggleBreakPointClick
  809. end
  810. object RDeleteBreakPoints2: TMenuItem
  811. Caption = '&Delete All Breakpoints'
  812. OnClick = RDeleteBreakPointsClick
  813. end
  814. end
  815. object RPause: TMenuItem
  816. Caption = 'P&ause'
  817. Enabled = False
  818. OnClick = RPauseClick
  819. end
  820. object RTerminate: TMenuItem
  821. Caption = '&Terminate'
  822. Enabled = False
  823. OnClick = RTerminateClick
  824. end
  825. object N10: TMenuItem
  826. Caption = '-'
  827. end
  828. object REvaluate: TMenuItem
  829. Caption = '&Evaluate Constant...'
  830. Enabled = False
  831. OnClick = REvaluateClick
  832. end
  833. object N15: TMenuItem
  834. Caption = '-'
  835. end
  836. object RTargetSetup: TMenuItem
  837. Caption = 'Target &Setup'
  838. GroupIndex = 1
  839. RadioItem = True
  840. ShortCut = 16465
  841. OnClick = RTargetClick
  842. end
  843. object RTargetUninstall: TMenuItem
  844. Caption = 'Target &Uninstall'
  845. GroupIndex = 1
  846. RadioItem = True
  847. ShortCut = 16471
  848. OnClick = RTargetClick
  849. end
  850. end
  851. object TMenu: TMenuItem
  852. Caption = '&Tools'
  853. OnClick = TMenuClick
  854. object TAddRemovePrograms: TMenuItem
  855. Caption = '&Add/Remove Programs'
  856. OnClick = TAddRemoveProgramsClick
  857. end
  858. object N23: TMenuItem
  859. Caption = '-'
  860. end
  861. object TGenerateGUID: TMenuItem
  862. Caption = 'Generate &GUID'
  863. ShortCut = 24647
  864. OnClick = TGenerateGUIDClick
  865. end
  866. object TFilesDesigner: TMenuItem
  867. Caption = 'Generate [F&iles] Entries...'
  868. ShortCut = 24649
  869. OnClick = TFilesDesignerClick
  870. end
  871. object TRegistryDesigner: TMenuItem
  872. Caption = 'Generate [&Registry] Entries...'
  873. ImageIndex = 66
  874. ShortCut = 24658
  875. OnClick = TRegistryDesignerClick
  876. end
  877. object TMsgBoxDesigner: TMenuItem
  878. Caption = 'Generate &MsgBox/TaskDialogMsgBox Call...'
  879. ShortCut = 24653
  880. OnClick = TMsgBoxDesignerClick
  881. end
  882. object N7: TMenuItem
  883. Caption = '-'
  884. end
  885. object TSignTools: TMenuItem
  886. Caption = '&Configure Sign Tools...'
  887. OnClick = TSignToolsClick
  888. end
  889. object N16: TMenuItem
  890. Caption = '-'
  891. end
  892. object TOptions: TMenuItem
  893. Caption = '&Options...'
  894. OnClick = TOptionsClick
  895. end
  896. end
  897. object HMenu: TMenuItem
  898. Caption = '&Help'
  899. OnClick = HMenuClick
  900. object HPurchase: TMenuItem
  901. Caption = 'Purchase or Renew Commercial &License'
  902. OnClick = HPurchaseClick
  903. end
  904. object HRegister: TMenuItem
  905. Caption = 'Enter Commercial License &Key...'
  906. OnClick = HRegisterClick
  907. end
  908. object HUnregister: TMenuItem
  909. Caption = 'Remove Commercial License Key'
  910. OnClick = HUnregisterClick
  911. end
  912. object HDonate: TMenuItem
  913. Caption = '&Donate'
  914. OnClick = HDonateClick
  915. end
  916. object N21: TMenuItem
  917. Caption = '-'
  918. end
  919. object HShortcutsDoc: TMenuItem
  920. Caption = '&Keyboard And Mouse Commands'
  921. OnClick = HShortcutsDocClick
  922. end
  923. object HRegexDoc: TMenuItem
  924. Caption = 'Regular E&xpressions'
  925. OnClick = HRegexDocClick
  926. end
  927. object N14: TMenuItem
  928. Caption = '-'
  929. end
  930. object HDoc: TMenuItem
  931. Caption = 'Inno &Setup Documentation'
  932. OnClick = HDocClick
  933. end
  934. object HExamples: TMenuItem
  935. Caption = 'Inno Setup &Example Scripts'
  936. OnClick = HExamplesClick
  937. end
  938. object HFaq: TMenuItem
  939. Caption = 'Inno Setup &FAQ'
  940. OnClick = HFaqClick
  941. end
  942. object HMailingList: TMenuItem
  943. Caption = 'Inno Setup &Mailing List'
  944. OnClick = HMailingListClick
  945. end
  946. object HWhatsNew: TMenuItem
  947. Caption = 'Inno Setup &Revision History'
  948. OnClick = HWhatsNewClick
  949. end
  950. object HWebsite: TMenuItem
  951. Caption = 'Inno Setup &Web Site'
  952. OnClick = HWebsiteClick
  953. end
  954. object N12: TMenuItem
  955. Caption = '-'
  956. end
  957. object HISPPDoc: TMenuItem
  958. Caption = 'Inno Setup &Preprocessor Documentation'
  959. OnClick = HISPPDocClick
  960. end
  961. object HISPPSep: TMenuItem
  962. Caption = '-'
  963. end
  964. object HAbout: TMenuItem
  965. Caption = '&About Inno Setup'
  966. OnClick = HAboutClick
  967. end
  968. end
  969. end
  970. object FindDialog: TFindDialog
  971. OnFind = FindDialogFind
  972. Left = 48
  973. Top = 120
  974. end
  975. object ReplaceDialog: TReplaceDialog
  976. OnFind = FindDialogFind
  977. OnReplace = ReplaceDialogReplace
  978. Left = 160
  979. Top = 120
  980. end
  981. object CheckIfRunningTimer: TTimer
  982. Enabled = False
  983. Interval = 100
  984. OnTimer = CheckIfRunningTimerTimer
  985. Left = 160
  986. Top = 64
  987. end
  988. object ThemedToolbarVirtualImageList: TVirtualImageList
  989. AutoFill = True
  990. Images = <
  991. item
  992. CollectionIndex = 0
  993. CollectionName = 'document-new'
  994. Name = 'document-new'
  995. end
  996. item
  997. CollectionIndex = 1
  998. CollectionName = 'folder-open-filled-arrow-down-right'
  999. Name = 'folder-open-filled-arrow-down-right'
  1000. end
  1001. item
  1002. CollectionIndex = 2
  1003. CollectionName = 'save-filled'
  1004. Name = 'save-filled'
  1005. end
  1006. item
  1007. CollectionIndex = 3
  1008. CollectionName = 'build'
  1009. Name = 'build'
  1010. end
  1011. item
  1012. CollectionIndex = 4
  1013. CollectionName = 'build-cancel-2'
  1014. Name = 'build-cancel-2'
  1015. end
  1016. item
  1017. CollectionIndex = 5
  1018. CollectionName = 'debug-start-filled'
  1019. Name = 'debug-start-filled'
  1020. end
  1021. item
  1022. CollectionIndex = 6
  1023. CollectionName = 'debug-break-all-filled'
  1024. Name = 'debug-break-all-filled'
  1025. end
  1026. item
  1027. CollectionIndex = 7
  1028. CollectionName = 'install'
  1029. Name = 'install'
  1030. end
  1031. item
  1032. CollectionIndex = 8
  1033. CollectionName = 'uninstall'
  1034. Name = 'uninstall'
  1035. end
  1036. item
  1037. CollectionIndex = 9
  1038. CollectionName = 'button-help'
  1039. Name = 'button-help'
  1040. end
  1041. item
  1042. CollectionIndex = 10
  1043. CollectionName = 'debug-stop-filled'
  1044. Name = 'debug-stop-filled'
  1045. end
  1046. item
  1047. CollectionIndex = 11
  1048. CollectionName = 'save-as-filled'
  1049. Name = 'save-as-filled'
  1050. end
  1051. item
  1052. CollectionIndex = 12
  1053. CollectionName = 'save-all-filled'
  1054. Name = 'save-all-filled'
  1055. end
  1056. item
  1057. CollectionIndex = 13
  1058. CollectionName = 'printer'
  1059. Name = 'printer'
  1060. end
  1061. item
  1062. CollectionIndex = 14
  1063. CollectionName = 'command-undo-1'
  1064. Name = 'command-undo-1'
  1065. end
  1066. item
  1067. CollectionIndex = 15
  1068. CollectionName = 'command-redo-1'
  1069. Name = 'command-redo-1'
  1070. end
  1071. item
  1072. CollectionIndex = 16
  1073. CollectionName = 'clipboard-cut'
  1074. Name = 'clipboard-cut'
  1075. end
  1076. item
  1077. CollectionIndex = 17
  1078. CollectionName = 'clipboard-copy'
  1079. Name = 'clipboard-copy'
  1080. end
  1081. item
  1082. CollectionIndex = 18
  1083. CollectionName = 'clipboard-paste'
  1084. Name = 'clipboard-paste'
  1085. end
  1086. item
  1087. CollectionIndex = 19
  1088. CollectionName = 'select-all'
  1089. Name = 'select-all'
  1090. end
  1091. item
  1092. CollectionIndex = 20
  1093. CollectionName = 'find'
  1094. Name = 'find'
  1095. end
  1096. item
  1097. CollectionIndex = 21
  1098. CollectionName = 'replace'
  1099. Name = 'replace'
  1100. end
  1101. item
  1102. CollectionIndex = 22
  1103. CollectionName = 'control-edit'
  1104. Name = 'control-edit'
  1105. end
  1106. item
  1107. CollectionIndex = 23
  1108. CollectionName = 'debug-step-into'
  1109. Name = 'debug-step-into'
  1110. end
  1111. item
  1112. CollectionIndex = 24
  1113. CollectionName = 'debug-step-over'
  1114. Name = 'debug-step-over'
  1115. end
  1116. item
  1117. CollectionIndex = 25
  1118. CollectionName = 'debug-step-out'
  1119. Name = 'debug-step-out'
  1120. end
  1121. item
  1122. CollectionIndex = 26
  1123. CollectionName = 'debug-breakpoint-filled'
  1124. Name = 'debug-breakpoint-filled'
  1125. end
  1126. item
  1127. CollectionIndex = 27
  1128. CollectionName = 'variables'
  1129. Name = 'variables'
  1130. end
  1131. item
  1132. CollectionIndex = 28
  1133. CollectionName = 'heart-filled'
  1134. Name = 'heart-filled'
  1135. end
  1136. item
  1137. CollectionIndex = 29
  1138. CollectionName = 'alert-filled'
  1139. Name = 'alert-filled'
  1140. end
  1141. item
  1142. CollectionIndex = 30
  1143. CollectionName = 'home'
  1144. Name = 'home'
  1145. end
  1146. item
  1147. CollectionIndex = 31
  1148. CollectionName = 'button-info'
  1149. Name = 'button-info'
  1150. end
  1151. item
  1152. CollectionIndex = 32
  1153. CollectionName = 'application'
  1154. Name = 'application'
  1155. end
  1156. item
  1157. CollectionIndex = 33
  1158. CollectionName = 'folder-open-filled-find'
  1159. Name = 'folder-open-filled-find'
  1160. end
  1161. item
  1162. CollectionIndex = 34
  1163. CollectionName = 'gear-filled'
  1164. Name = 'gear-filled'
  1165. end
  1166. item
  1167. CollectionIndex = 35
  1168. CollectionName = 'key-filled'
  1169. Name = 'key-filled'
  1170. end
  1171. item
  1172. CollectionIndex = 36
  1173. CollectionName = 'unused\letter-a-arrow-right-2'
  1174. Name = 'unused\letter-a-arrow-right-2'
  1175. end
  1176. item
  1177. CollectionIndex = 37
  1178. CollectionName = 'symbol-cancel'
  1179. Name = 'symbol-cancel'
  1180. end
  1181. item
  1182. CollectionIndex = 38
  1183. CollectionName = 'comment-text-script-filled'
  1184. Name = 'comment-text-script-filled'
  1185. end
  1186. item
  1187. CollectionIndex = 39
  1188. CollectionName = 'control-tree-script-filled'
  1189. Name = 'control-tree-script-filled'
  1190. end
  1191. item
  1192. CollectionIndex = 40
  1193. CollectionName = 'documents-script-filled'
  1194. Name = 'documents-script-filled'
  1195. end
  1196. item
  1197. CollectionIndex = 41
  1198. CollectionName = 'tag-script-filled'
  1199. Name = 'tag-script-filled'
  1200. end
  1201. item
  1202. CollectionIndex = 42
  1203. CollectionName = 'control-tab-filled-arrow-left-2'
  1204. Name = 'control-tab-filled-arrow-left-2'
  1205. end
  1206. item
  1207. CollectionIndex = 43
  1208. CollectionName = 'control-tab-filled-arrow-right-2'
  1209. Name = 'control-tab-filled-arrow-right-2'
  1210. end
  1211. item
  1212. CollectionIndex = 44
  1213. CollectionName = 'unused\control-tab-filled-cancel-2'
  1214. Name = 'unused\control-tab-filled-cancel-2'
  1215. end
  1216. item
  1217. CollectionIndex = 45
  1218. CollectionName = 'control-tab-filled-redo-1'
  1219. Name = 'control-tab-filled-redo-1'
  1220. end
  1221. item
  1222. CollectionIndex = 46
  1223. CollectionName = 'unused\find-arrow-left-2'
  1224. Name = 'unused\find-arrow-left-2'
  1225. end
  1226. item
  1227. CollectionIndex = 47
  1228. CollectionName = 'unused\find-arrow-right-2'
  1229. Name = 'unused\find-arrow-right-2'
  1230. end
  1231. item
  1232. CollectionIndex = 48
  1233. CollectionName = 'announcement'
  1234. Name = 'announcement'
  1235. end
  1236. item
  1237. CollectionIndex = 49
  1238. CollectionName = 'debug-start-filled-arrow-right-2'
  1239. Name = 'debug-start-filled-arrow-right-2'
  1240. end
  1241. item
  1242. CollectionIndex = 50
  1243. CollectionName = 'zoom-in'
  1244. Name = 'zoom-in'
  1245. end
  1246. item
  1247. CollectionIndex = 51
  1248. CollectionName = 'zoom-out'
  1249. Name = 'zoom-out'
  1250. end
  1251. item
  1252. CollectionIndex = 52
  1253. CollectionName = 'unused\debug-breakpoint-filled-eraser'
  1254. Name = 'unused\debug-breakpoint-filled-eraser'
  1255. end
  1256. item
  1257. CollectionIndex = 53
  1258. CollectionName = 'debug-breakpoints-filled-eraser'
  1259. Name = 'debug-breakpoints-filled-eraser'
  1260. end
  1261. item
  1262. CollectionIndex = 54
  1263. CollectionName = 'button-arrow-left'
  1264. Name = 'button-arrow-left'
  1265. end
  1266. item
  1267. CollectionIndex = 55
  1268. CollectionName = 'button-arrow-right'
  1269. Name = 'button-arrow-right'
  1270. end
  1271. item
  1272. CollectionIndex = 56
  1273. CollectionName = 'folder-open-filled'
  1274. Name = 'folder-open-filled'
  1275. end
  1276. item
  1277. CollectionIndex = 57
  1278. CollectionName = 'eraser'
  1279. Name = 'eraser'
  1280. end
  1281. item
  1282. CollectionIndex = 58
  1283. CollectionName = 'symbol-add'
  1284. Name = 'symbol-add'
  1285. end
  1286. item
  1287. CollectionIndex = 59
  1288. CollectionName = 'symbol-remove'
  1289. Name = 'symbol-remove'
  1290. end
  1291. item
  1292. CollectionIndex = 60
  1293. CollectionName = 'padlock-filled'
  1294. Name = 'padlock-filled'
  1295. end
  1296. item
  1297. CollectionIndex = 61
  1298. CollectionName = 'shopping-cart'
  1299. Name = 'shopping-cart'
  1300. end>
  1301. ImageCollection = ImagesModule.LightToolBarImageCollection
  1302. Left = 80
  1303. Top = 176
  1304. end
  1305. object LightToolbarVirtualImageList: TVirtualImageList
  1306. Images = <>
  1307. ImageCollection = ImagesModule.LightToolBarImageCollection
  1308. Left = 191
  1309. Top = 197
  1310. end
  1311. object FindInFilesDialog: TFindDialog
  1312. Options = [frDown, frHideUpDown]
  1313. OnFind = FindInFilesDialogFind
  1314. Left = 272
  1315. Top = 120
  1316. end
  1317. object PrintDialog: TPrintDialog
  1318. Left = 272
  1319. Top = 64
  1320. end
  1321. object ThemedMarkersAndACVirtualImageList: TVirtualImageList
  1322. Images = <>
  1323. Width = 12
  1324. Height = 12
  1325. Left = 320
  1326. Top = 176
  1327. end
  1328. end