SelectMask.dfm 4.0 KB

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