SelectMask.dfm 4.1 KB

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