SelectMask.dfm 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. object SelectMaskDialog: TSelectMaskDialog
  2. Left = 369
  3. Top = 257
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_select'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'SelectX'
  9. ClientHeight = 186
  10. ClientWidth = 417
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = True
  14. Position = poDesigned
  15. OnCloseQuery = FormCloseQuery
  16. OnShow = FormShow
  17. DesignSize = (
  18. 417
  19. 186)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object MaskGroup: TGroupBox
  23. Left = 8
  24. Top = 6
  25. Width = 401
  26. Height = 138
  27. Anchors = [akLeft, akTop, akRight, akBottom]
  28. TabOrder = 0
  29. DesignSize = (
  30. 401
  31. 138)
  32. object Label3: TLabel
  33. Left = 16
  34. Top = 19
  35. Width = 47
  36. Height = 13
  37. Caption = 'File &mask:'
  38. FocusControl = MaskEdit
  39. end
  40. object ColorFileNamesLabel: TLabel
  41. Left = 16
  42. Top = 86
  43. Width = 150
  44. Height = 37
  45. Anchors = [akLeft, akTop, akBottom]
  46. AutoSize = False
  47. Caption = 'about.html'#13#10'index.html'#13#10'photo.jpg'
  48. Color = clWindow
  49. ParentColor = False
  50. Transparent = False
  51. WordWrap = True
  52. end
  53. object ColorSizesLabel: TLabel
  54. Left = 166
  55. Top = 86
  56. Width = 75
  57. Height = 37
  58. Alignment = taRightJustify
  59. Anchors = [akLeft, akTop, akBottom]
  60. AutoSize = False
  61. Caption = 'ColorSizesLabel'
  62. Color = clWindow
  63. ParentColor = False
  64. Transparent = False
  65. WordWrap = True
  66. end
  67. object ColorPaddingLabel: TLabel
  68. Left = 241
  69. Top = 86
  70. Width = 58
  71. Height = 37
  72. Alignment = taRightJustify
  73. Anchors = [akLeft, akTop, akRight, akBottom]
  74. AutoSize = False
  75. Color = clWindow
  76. ParentColor = False
  77. Transparent = False
  78. WordWrap = True
  79. end
  80. object ApplyToDirectoriesCheck: TCheckBox
  81. Left = 16
  82. Top = 63
  83. Width = 209
  84. Height = 17
  85. Caption = 'Apply to &directories'
  86. TabOrder = 3
  87. end
  88. object MaskEdit: THistoryComboBox
  89. Left = 16
  90. Top = 36
  91. Width = 283
  92. Height = 21
  93. AutoComplete = False
  94. Anchors = [akLeft, akTop, akRight]
  95. MaxLength = 1000
  96. TabOrder = 0
  97. Text = '*.*'
  98. OnChange = MaskEditChange
  99. OnExit = MaskEditExit
  100. end
  101. object HintText: TStaticText
  102. Left = 194
  103. Top = 64
  104. Width = 105
  105. Height = 17
  106. Alignment = taRightJustify
  107. Anchors = [akTop, akRight]
  108. AutoSize = False
  109. Caption = 'mask hi&nts'
  110. TabOrder = 1
  111. TabStop = True
  112. end
  113. object MaskButton: TButton
  114. Left = 305
  115. Top = 34
  116. Width = 80
  117. Height = 25
  118. Anchors = [akTop, akRight]
  119. Caption = '&Edit...'
  120. TabOrder = 2
  121. OnClick = MaskButtonClick
  122. end
  123. object ColorButton: TButton
  124. Left = 305
  125. Top = 86
  126. Width = 80
  127. Height = 25
  128. Anchors = [akTop, akRight]
  129. Caption = '&Color'
  130. TabOrder = 4
  131. OnClick = ColorButtonClick
  132. end
  133. end
  134. object OKBtn: TButton
  135. Left = 165
  136. Top = 153
  137. Width = 75
  138. Height = 25
  139. Anchors = [akRight, akBottom]
  140. Caption = 'OK'
  141. Default = True
  142. ModalResult = 1
  143. TabOrder = 2
  144. end
  145. object CancelBtn: TButton
  146. Left = 250
  147. Top = 153
  148. Width = 75
  149. Height = 25
  150. Anchors = [akRight, akBottom]
  151. Cancel = True
  152. Caption = 'Cancel'
  153. ModalResult = 2
  154. TabOrder = 3
  155. end
  156. object HelpButton: TButton
  157. Left = 333
  158. Top = 153
  159. Width = 75
  160. Height = 25
  161. Anchors = [akRight, akBottom]
  162. Caption = '&Help'
  163. TabOrder = 4
  164. OnClick = HelpButtonClick
  165. end
  166. object ClearButton: TButton
  167. Left = 84
  168. Top = 153
  169. Width = 75
  170. Height = 25
  171. Anchors = [akRight, akBottom]
  172. Caption = '&Clear'
  173. ModalResult = 1
  174. TabOrder = 1
  175. OnClick = ClearButtonClick
  176. end
  177. end