CustomCommand.dfm 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. object CustomCommandDialog: TCustomCommandDialog
  2. Left = 384
  3. Top = 214
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_customcommand'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'CustomCommandDialog'
  9. ClientHeight = 282
  10. ClientWidth = 396
  11. Color = clBtnFace
  12. Font.Charset = DEFAULT_CHARSET
  13. Font.Color = clWindowText
  14. Font.Height = -11
  15. Font.Name = 'MS Sans Serif'
  16. Font.Style = []
  17. OldCreateOrder = False
  18. Position = poOwnerFormCenter
  19. OnCloseQuery = FormCloseQuery
  20. DesignSize = (
  21. 396
  22. 282)
  23. PixelsPerInch = 96
  24. TextHeight = 13
  25. object Group: TGroupBox
  26. Left = 8
  27. Top = 8
  28. Width = 380
  29. Height = 232
  30. Anchors = [akLeft, akTop, akRight, akBottom]
  31. TabOrder = 0
  32. DesignSize = (
  33. 380
  34. 232)
  35. object DescriptionLabel: TLabel
  36. Left = 11
  37. Top = 16
  38. Width = 56
  39. Height = 13
  40. Anchors = [akLeft, akTop, akRight]
  41. Caption = '&Description:'
  42. FocusControl = DescriptionEdit
  43. end
  44. object Label1: TLabel
  45. Left = 11
  46. Top = 64
  47. Width = 87
  48. Height = 13
  49. Anchors = [akLeft, akTop, akRight]
  50. Caption = '&Custom command:'
  51. FocusControl = CommandEdit
  52. end
  53. object ShortCutLabel: TLabel
  54. Left = 16
  55. Top = 205
  56. Width = 89
  57. Height = 13
  58. Caption = '&Keyboard shortcut:'
  59. FocusControl = ShortCutCombo
  60. end
  61. object DescriptionEdit: TEdit
  62. Left = 11
  63. Top = 32
  64. Width = 358
  65. Height = 21
  66. Anchors = [akLeft, akTop, akRight]
  67. MaxLength = 250
  68. TabOrder = 0
  69. OnChange = ControlChange
  70. end
  71. object CommandEdit: THistoryComboBox
  72. Left = 11
  73. Top = 80
  74. Width = 358
  75. Height = 21
  76. AutoComplete = False
  77. Anchors = [akLeft, akTop, akRight]
  78. MaxLength = 250
  79. TabOrder = 1
  80. OnChange = ControlChange
  81. OnGetData = CommandEditGetData
  82. OnSetData = CommandEditSetData
  83. end
  84. object ApplyToDirectoriesCheck: TCheckBox
  85. Left = 16
  86. Top = 149
  87. Width = 161
  88. Height = 17
  89. Caption = '&Apply to directories'
  90. TabOrder = 5
  91. OnClick = ControlChange
  92. end
  93. object RecursiveCheck: TCheckBox
  94. Left = 184
  95. Top = 149
  96. Width = 185
  97. Height = 17
  98. Caption = '&Execute recursively'
  99. TabOrder = 6
  100. OnClick = ControlChange
  101. end
  102. object LocalCommandButton: TRadioButton
  103. Left = 184
  104. Top = 122
  105. Width = 185
  106. Height = 17
  107. Caption = '&Local command'
  108. TabOrder = 4
  109. OnClick = ControlChange
  110. end
  111. object RemoteCommandButton: TRadioButton
  112. Left = 16
  113. Top = 122
  114. Width = 161
  115. Height = 17
  116. Caption = '&Remote command'
  117. TabOrder = 3
  118. OnClick = ControlChange
  119. end
  120. object ShowResultsCheck: TCheckBox
  121. Left = 16
  122. Top = 176
  123. Width = 161
  124. Height = 17
  125. Caption = '&Show results in terminal'
  126. TabOrder = 7
  127. OnClick = ControlChange
  128. end
  129. object CopyResultsCheck: TCheckBox
  130. Left = 184
  131. Top = 176
  132. Width = 185
  133. Height = 17
  134. Caption = 'Copy results to clip&board'
  135. TabOrder = 8
  136. OnClick = ControlChange
  137. end
  138. object HintText: TStaticText
  139. Left = 290
  140. Top = 103
  141. Width = 79
  142. Height = 16
  143. Alignment = taRightJustify
  144. Anchors = [akTop, akRight]
  145. AutoSize = False
  146. Caption = '&patterns'
  147. TabOrder = 2
  148. TabStop = True
  149. end
  150. object ShortCutCombo: TComboBox
  151. Left = 184
  152. Top = 200
  153. Width = 184
  154. Height = 21
  155. TabOrder = 9
  156. end
  157. end
  158. object OkButton: TButton
  159. Left = 144
  160. Top = 249
  161. Width = 75
  162. Height = 25
  163. Anchors = [akRight, akBottom]
  164. Caption = 'OK'
  165. Default = True
  166. ModalResult = 1
  167. TabOrder = 1
  168. end
  169. object CancelButton: TButton
  170. Left = 228
  171. Top = 249
  172. Width = 75
  173. Height = 25
  174. Anchors = [akRight, akBottom]
  175. Cancel = True
  176. Caption = 'Cancel'
  177. ModalResult = 2
  178. TabOrder = 2
  179. end
  180. object HelpButton: TButton
  181. Left = 312
  182. Top = 249
  183. Width = 75
  184. Height = 25
  185. Anchors = [akRight, akBottom]
  186. Caption = '&Help'
  187. TabOrder = 3
  188. OnClick = HelpButtonClick
  189. end
  190. end