IDE.Wizard.WizardFileForm.dfm 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. object WizardFileForm: TWizardFileForm
  2. Left = 284
  3. Top = 219
  4. BorderIcons = [biSystemMenu]
  5. BorderStyle = bsDialog
  6. Caption = 'Script Wizard File'
  7. ClientHeight = 345
  8. ClientWidth = 420
  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. Position = poScreenCenter
  16. OnCreate = FormCreate
  17. DesignSize = (
  18. 420
  19. 345)
  20. TextHeight = 13
  21. object RequiredLabel1: TNewStaticText
  22. Left = 8
  23. Top = 319
  24. Width = 21
  25. Height = 14
  26. Anchors = [akLeft, akBottom]
  27. Caption = 'bold'
  28. Enabled = False
  29. TabOrder = 4
  30. end
  31. object RequiredLabel2: TNewStaticText
  32. Left = 36
  33. Top = 319
  34. Width = 51
  35. Height = 14
  36. Anchors = [akLeft, akBottom]
  37. Caption = ' = required'
  38. Enabled = False
  39. TabOrder = 5
  40. end
  41. object OKButton: TButton
  42. Left = 258
  43. Top = 313
  44. Width = 73
  45. Height = 23
  46. Anchors = [akRight, akBottom]
  47. Caption = 'OK'
  48. Default = True
  49. ModalResult = 1
  50. TabOrder = 1
  51. OnClick = OKButtonClick
  52. end
  53. object CancelButton: TButton
  54. Left = 338
  55. Top = 313
  56. Width = 73
  57. Height = 23
  58. Anchors = [akRight, akBottom]
  59. Cancel = True
  60. Caption = 'Cancel'
  61. ModalResult = 2
  62. TabOrder = 2
  63. end
  64. object GroupBox2: TGroupBox
  65. Left = 8
  66. Top = 108
  67. Width = 403
  68. Height = 197
  69. Anchors = [akLeft, akTop, akRight]
  70. Caption = ' Destination '
  71. TabOrder = 0
  72. DesignSize = (
  73. 403
  74. 197)
  75. object DestRootDirLabel: TNewStaticText
  76. Left = 12
  77. Top = 20
  78. Width = 112
  79. Height = 14
  80. Caption = 'Destination &base folder:'
  81. FocusControl = DestRootDirComboBox
  82. TabOrder = 0
  83. end
  84. object DestRootDirComboBox: TComboBox
  85. Left = 12
  86. Top = 40
  87. Width = 379
  88. Height = 21
  89. Style = csDropDownList
  90. Anchors = [akLeft, akTop, akRight]
  91. DropDownCount = 12
  92. TabOrder = 1
  93. OnChange = DestRootDirComboBoxChange
  94. end
  95. object DestRootDirEdit: TEdit
  96. Left = 12
  97. Top = 68
  98. Width = 379
  99. Height = 21
  100. Anchors = [akLeft, akTop, akRight]
  101. TabOrder = 2
  102. end
  103. object DestSubDirLabel: TNewStaticText
  104. Left = 12
  105. Top = 96
  106. Width = 103
  107. Height = 14
  108. Caption = 'Destination &subfolder:'
  109. FocusControl = DestSubDirEdit
  110. TabOrder = 3
  111. end
  112. object DestSubDirEdit: TEdit
  113. Left = 12
  114. Top = 116
  115. Width = 379
  116. Height = 21
  117. Anchors = [akLeft, akTop, akRight]
  118. TabOrder = 4
  119. end
  120. object DestNameEdit: TEdit
  121. Left = 12
  122. Top = 164
  123. Width = 379
  124. Height = 21
  125. Anchors = [akLeft, akTop, akRight]
  126. TabOrder = 5
  127. end
  128. object DestNameLabel: TNewStaticText
  129. Left = 12
  130. Top = 144
  131. Width = 86
  132. Height = 14
  133. Caption = 'Destination &name:'
  134. FocusControl = DestSubDirEdit
  135. TabOrder = 6
  136. end
  137. end
  138. object GroupBox1: TGroupBox
  139. Left = 8
  140. Top = 8
  141. Width = 403
  142. Height = 93
  143. Anchors = [akLeft, akTop, akRight]
  144. Caption = ' Source '
  145. TabOrder = 3
  146. DesignSize = (
  147. 403
  148. 93)
  149. object SourceLabel: TNewStaticText
  150. Left = 12
  151. Top = 20
  152. Width = 95
  153. Height = 14
  154. Caption = '&Source file or folder:'
  155. Enabled = False
  156. TabOrder = 0
  157. end
  158. object SourceEdit: TEdit
  159. Left = 12
  160. Top = 40
  161. Width = 379
  162. Height = 21
  163. Anchors = [akLeft, akTop, akRight]
  164. Color = clBtnFace
  165. ReadOnly = True
  166. TabOrder = 1
  167. end
  168. object RecurseSubDirsCheck: TCheckBox
  169. Left = 12
  170. Top = 68
  171. Width = 125
  172. Height = 17
  173. Caption = '&Recurse subfolders'
  174. TabOrder = 2
  175. OnClick = CheckClick
  176. end
  177. object CreateAllSubDirsCheck: TCheckBox
  178. Left = 138
  179. Top = 68
  180. Width = 151
  181. Height = 17
  182. Caption = '&Include empty subfolders'
  183. TabOrder = 3
  184. end
  185. object ExtractArchiveCheck: TCheckBox
  186. Left = 290
  187. Top = 68
  188. Width = 111
  189. Height = 17
  190. Caption = '&Extract archive'
  191. TabOrder = 4
  192. OnClick = CheckClick
  193. end
  194. end
  195. end