IDE.Wizard.WizardFileForm.dfm 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. object WizardFileForm: TWizardFileForm
  2. Left = 284
  3. Top = 219
  4. BorderIcons = [biSystemMenu]
  5. BorderStyle = bsDialog
  6. Caption = 'Script Wizard File'
  7. ClientHeight = 297
  8. ClientWidth = 350
  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. TextHeight = 13
  18. object RequiredLabel1: TNewStaticText
  19. Left = 8
  20. Top = 271
  21. Width = 21
  22. Height = 14
  23. Caption = 'bold'
  24. Enabled = False
  25. TabOrder = 4
  26. end
  27. object RequiredLabel2: TNewStaticText
  28. Left = 36
  29. Top = 271
  30. Width = 51
  31. Height = 14
  32. Caption = ' = required'
  33. Enabled = False
  34. TabOrder = 5
  35. end
  36. object OKButton: TButton
  37. Left = 188
  38. Top = 265
  39. Width = 73
  40. Height = 23
  41. Caption = 'OK'
  42. Default = True
  43. ModalResult = 1
  44. TabOrder = 1
  45. OnClick = OKButtonClick
  46. end
  47. object CancelButton: TButton
  48. Left = 268
  49. Top = 265
  50. Width = 73
  51. Height = 23
  52. Cancel = True
  53. Caption = 'Cancel'
  54. ModalResult = 2
  55. TabOrder = 2
  56. end
  57. object GroupBox2: TGroupBox
  58. Left = 8
  59. Top = 108
  60. Width = 333
  61. Height = 149
  62. Caption = ' Destination '
  63. TabOrder = 0
  64. object DestRootDirLabel: TNewStaticText
  65. Left = 12
  66. Top = 20
  67. Width = 112
  68. Height = 14
  69. Caption = 'Destination &base folder:'
  70. FocusControl = DestRootDirComboBox
  71. TabOrder = 0
  72. end
  73. object DestRootDirComboBox: TComboBox
  74. Left = 12
  75. Top = 40
  76. Width = 309
  77. Height = 21
  78. Style = csDropDownList
  79. DropDownCount = 12
  80. ItemHeight = 13
  81. TabOrder = 1
  82. OnChange = DestRootDirComboBoxChange
  83. end
  84. object DestRootDirEdit: TEdit
  85. Left = 12
  86. Top = 68
  87. Width = 309
  88. Height = 21
  89. TabOrder = 2
  90. end
  91. object SubDirLabel: TNewStaticText
  92. Left = 12
  93. Top = 96
  94. Width = 103
  95. Height = 14
  96. Caption = 'Destination &subfolder:'
  97. FocusControl = DestSubDirEdit
  98. TabOrder = 3
  99. end
  100. object DestSubDirEdit: TEdit
  101. Left = 12
  102. Top = 116
  103. Width = 309
  104. Height = 21
  105. TabOrder = 4
  106. end
  107. end
  108. object GroupBox1: TGroupBox
  109. Left = 8
  110. Top = 8
  111. Width = 333
  112. Height = 93
  113. Caption = ' Source '
  114. TabOrder = 3
  115. object SourceLabel: TNewStaticText
  116. Left = 12
  117. Top = 20
  118. Width = 95
  119. Height = 14
  120. Caption = '&Source file or folder:'
  121. Enabled = False
  122. TabOrder = 0
  123. end
  124. object SourceEdit: TEdit
  125. Left = 12
  126. Top = 40
  127. Width = 309
  128. Height = 21
  129. Color = clBtnFace
  130. ReadOnly = True
  131. TabOrder = 1
  132. end
  133. object RecurseSubDirsCheck: TCheckBox
  134. Left = 12
  135. Top = 68
  136. Width = 141
  137. Height = 17
  138. Caption = '&Recurse subfolders'
  139. TabOrder = 2
  140. OnClick = RecurseSubDirsCheckClick
  141. end
  142. object CreateAllSubDirsCheck: TCheckBox
  143. Left = 156
  144. Top = 68
  145. Width = 165
  146. Height = 17
  147. Caption = '&Include empty subfolders'
  148. TabOrder = 3
  149. end
  150. end
  151. end