ToolPropertiesUnit.dfm 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. object ToolPropertiesForm: TToolPropertiesForm
  2. Left = 131
  3. Top = 102
  4. BorderIcons = [biSystemMenu]
  5. BorderStyle = bsDialog
  6. Caption = 'Tool Properties'
  7. ClientHeight = 205
  8. ClientWidth = 377
  9. Color = clBtnFace
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'MS Sans Serif'
  14. Font.Style = []
  15. OldCreateOrder = False
  16. Position = poScreenCenter
  17. DesignSize = (
  18. 377
  19. 205)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object Label1: TLabel
  23. Left = 83
  24. Top = 19
  25. Width = 23
  26. Height = 13
  27. Alignment = taRightJustify
  28. Caption = '&Title:'
  29. end
  30. object Label2: TLabel
  31. Left = 33
  32. Top = 51
  33. Width = 73
  34. Height = 13
  35. Alignment = taRightJustify
  36. Caption = 'Command &Line:'
  37. end
  38. object Label3: TLabel
  39. Left = 18
  40. Top = 83
  41. Width = 88
  42. Height = 13
  43. Alignment = taRightJustify
  44. Caption = '&Working Directory:'
  45. end
  46. object Label4: TLabel
  47. Left = 36
  48. Top = 115
  49. Width = 70
  50. Height = 13
  51. Alignment = taRightJustify
  52. Caption = 'Window &State:'
  53. end
  54. object Bevel1: TBevel
  55. Left = 8
  56. Top = 152
  57. Width = 361
  58. Height = 2
  59. Shape = bsTopLine
  60. end
  61. object TitleEdit: TEdit
  62. Left = 112
  63. Top = 16
  64. Width = 137
  65. Height = 21
  66. TabOrder = 0
  67. OnChange = EditChange
  68. end
  69. object CommandLineEdit: TEdit
  70. Left = 112
  71. Top = 48
  72. Width = 185
  73. Height = 21
  74. Anchors = [akLeft, akTop, akRight]
  75. TabOrder = 1
  76. OnChange = EditChange
  77. end
  78. object WorkingDirEdit: TEdit
  79. Left = 112
  80. Top = 80
  81. Width = 185
  82. Height = 21
  83. Anchors = [akLeft, akTop, akRight]
  84. TabOrder = 2
  85. end
  86. object OKButton: TButton
  87. Left = 88
  88. Top = 168
  89. Width = 81
  90. Height = 25
  91. Caption = '&OK'
  92. Default = True
  93. Enabled = False
  94. ModalResult = 1
  95. TabOrder = 4
  96. end
  97. object CancelButton: TButton
  98. Left = 208
  99. Top = 168
  100. Width = 81
  101. Height = 25
  102. Anchors = [akTop, akRight]
  103. Cancel = True
  104. Caption = '&Cancel'
  105. ModalResult = 2
  106. TabOrder = 5
  107. end
  108. object WindowStateEdit: TComboBox
  109. Left = 112
  110. Top = 112
  111. Width = 121
  112. Height = 21
  113. Style = csDropDownList
  114. ItemHeight = 13
  115. TabOrder = 3
  116. Items.Strings = (
  117. 'Normal'
  118. 'Maximized'
  119. 'Minimized')
  120. end
  121. object CommandLineBrowseButton: TButton
  122. Left = 304
  123. Top = 48
  124. Width = 59
  125. Height = 21
  126. Anchors = [akTop, akRight]
  127. Caption = '&Browse...'
  128. TabOrder = 6
  129. OnClick = CommandLineBrowseButtonClick
  130. end
  131. object WorkingDirBrowseButton: TButton
  132. Left = 304
  133. Top = 80
  134. Width = 59
  135. Height = 21
  136. Anchors = [akTop, akRight]
  137. Caption = 'B&rowse...'
  138. TabOrder = 7
  139. OnClick = WorkingDirBrowseButtonClick
  140. end
  141. object BrowseDialog: TOpenDialog
  142. Filter = 'Programs (*.exe)|*.exe|All Files (*.*)|*.*'
  143. Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  144. Title = 'Browse'
  145. end
  146. end