CustomCommand.dfm 4.0 KB

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