CustomCommand.dfm 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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: TXPGroupBox
  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. end
  75. object ApplyToDirectoriesCheck: TCheckBox
  76. Left = 16
  77. Top = 149
  78. Width = 161
  79. Height = 17
  80. Caption = '&Apply to directories'
  81. TabOrder = 5
  82. OnClick = ControlChange
  83. end
  84. object RecursiveCheck: TCheckBox
  85. Left = 184
  86. Top = 149
  87. Width = 185
  88. Height = 17
  89. Caption = '&Execute recursively'
  90. TabOrder = 6
  91. OnClick = ControlChange
  92. end
  93. object LocalCommandButton: TRadioButton
  94. Left = 184
  95. Top = 122
  96. Width = 185
  97. Height = 17
  98. Caption = '&Local command'
  99. TabOrder = 4
  100. OnClick = ControlChange
  101. end
  102. object RemoteCommandButton: TRadioButton
  103. Left = 16
  104. Top = 122
  105. Width = 161
  106. Height = 17
  107. Caption = '&Remote command'
  108. TabOrder = 3
  109. OnClick = ControlChange
  110. end
  111. object ShowResultsCheck: TCheckBox
  112. Left = 16
  113. Top = 176
  114. Width = 161
  115. Height = 17
  116. Caption = '&Show results in terminal'
  117. TabOrder = 7
  118. OnClick = ControlChange
  119. end
  120. object CopyResultsCheck: TCheckBox
  121. Left = 184
  122. Top = 176
  123. Width = 185
  124. Height = 17
  125. Caption = 'Copy results to clip&board'
  126. TabOrder = 8
  127. OnClick = ControlChange
  128. end
  129. object HintText: TStaticText
  130. Left = 290
  131. Top = 103
  132. Width = 79
  133. Height = 16
  134. Alignment = taRightJustify
  135. Anchors = [akTop, akRight]
  136. AutoSize = False
  137. Caption = '&patterns'
  138. TabOrder = 2
  139. TabStop = True
  140. end
  141. end
  142. object OkButton: TButton
  143. Left = 144
  144. Top = 222
  145. Width = 75
  146. Height = 25
  147. Anchors = [akRight, akBottom]
  148. Caption = 'OK'
  149. Default = True
  150. ModalResult = 1
  151. TabOrder = 1
  152. end
  153. object CancelButton: TButton
  154. Left = 228
  155. Top = 222
  156. Width = 75
  157. Height = 25
  158. Anchors = [akRight, akBottom]
  159. Cancel = True
  160. Caption = 'Cancel'
  161. ModalResult = 2
  162. TabOrder = 2
  163. end
  164. object HelpButton: TButton
  165. Left = 312
  166. Top = 222
  167. Width = 75
  168. Height = 25
  169. Anchors = [akRight, akBottom]
  170. Caption = '&Help'
  171. TabOrder = 3
  172. OnClick = HelpButtonClick
  173. end
  174. end