CustomCommand.dfm 4.4 KB

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