home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / zkuste / delphi / kolekce / d6 / RX275D6.ZIP / Units / IMAGPRVW.DFM / IMAGPRVW.txt < prev   
Text File  |  1999-10-12  |  5KB  |  208 lines

  1. object ImageForm: TImageForm
  2.   Left = 201
  3.   Top = 98
  4.   ActiveControl = FileEdit
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Select Image'
  8.   ClientHeight = 262
  9.   ClientWidth = 485
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Icon.Data = {<image000.ico>}
  15.   PixelsPerInch = 96
  16.   Position = poScreenCenter
  17.   OnCreate = FormCreate
  18.   OnDestroy = FormDestroy
  19.   TextHeight = 13
  20.   object PathLabel: TLabel
  21.     Left = 158
  22.     Top = 27
  23.     Width = 146
  24.     Height = 15
  25.     AutoSize = False
  26.     Caption = 'e:\work\rx'
  27.   end
  28.   object ImageName: TLabel
  29.     Left = 319
  30.     Top = 13
  31.     Width = 57
  32.     Height = 13
  33.     Caption = 'ImageName'
  34.   end
  35.   object Label2: TLabel
  36.     Left = 4
  37.     Top = 216
  38.     Width = 81
  39.     Height = 13
  40.     Caption = 'List files of &type:  '
  41.     FocusControl = FilterCombo
  42.   end
  43.   object Label3: TLabel
  44.     Left = 158
  45.     Top = 216
  46.     Width = 36
  47.     Height = 13
  48.     Caption = 'Dri&ves: '
  49.     FocusControl = DriveCombo
  50.   end
  51.   object Label4: TLabel
  52.     Left = 4
  53.     Top = 8
  54.     Width = 54
  55.     Height = 13
  56.     Caption = 'File &name:  '
  57.     FocusControl = FileEdit
  58.   end
  59.   object Label5: TLabel
  60.     Left = 158
  61.     Top = 8
  62.     Width = 43
  63.     Height = 13
  64.     Caption = '&Folders:  '
  65.     FocusControl = DirectoryList
  66.   end
  67.   object PreviewBtn: TRxSpeedButton
  68.     Left = 455
  69.     Top = 4
  70.     Width = 24
  71.     Height = 23
  72.     Hint = 'Preview|'
  73.     Enabled = False
  74.     Flat = True
  75.     Glyph.Data = {
  76.       66010000424D6601000000000000760000002800000014000000140000000100
  77.       040000000000F000000000000000000000000000000000000000000000000000
  78.       80000080000000808000800000008000800080800000C0C0C000808080000000
  79.       FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00DDDDDDDDDDDD
  80.       DDDDDDDD0000DD00DDDDDDDDDDDDDDDD0000D0000DDDDDDDDDDDDDDD0000D0F0
  81.       00DDDDDDDDDDDDDD0000DD0F000DDDDDDDDDDDDD0000DDD0F000DDDDDDDDDDDD
  82.       0000DDDD0F00000008DDDDDD0000DDDDD0F008000800000D0000DDDDDD0080FF
  83.       FE80FE0D0000DDDDDD08D0EF0FE88F0D0000DDDDDD08D0F000FE0E0D0000DDDD
  84.       DD08D880E00F0F0D0000DDDDDD08DFFEFE000E0D0000DDDDDD888FFFEFE88F0D
  85.       0000DDDDDDD08DFEFE80FE0D0000DDDDDDDD0D6D6D00000D0000DDDDDDDDD800
  86.       08F0E0DD0000DDDDDDDDD0EFEFE00DDD0000DDDDDDDDD0000000DDDD0000DDDD
  87.       DDDDDDDDDDDDDDDD0000}
  88.     Layout = blGlyphLeft
  89.     OnClick = PreviewBtnClick
  90.   end
  91.   object DirectoryList: TDirectoryListBox
  92.     Left = 158
  93.     Top = 51
  94.     Width = 148
  95.     Height = 162
  96.     DirLabel = PathLabel
  97.     FileList = FileListBox
  98.     ItemHeight = 16
  99.     TabOrder = 2
  100.     OnChange = FileListBoxClick
  101.   end
  102.   object DriveCombo: TDriveComboBox
  103.     Left = 158
  104.     Top = 233
  105.     Width = 148
  106.     Height = 21
  107.     DirList = DirectoryList
  108.     TabOrder = 4
  109.   end
  110.   object FileEdit: TEdit
  111.     Left = 4
  112.     Top = 24
  113.     Width = 146
  114.     Height = 20
  115.     TabOrder = 0
  116.     Text = '*.bmp;*.ico;*.wmf'
  117.   end
  118.   object ImagePanel: TPanel
  119.     Left = 315
  120.     Top = 32
  121.     Width = 164
  122.     Height = 160
  123.     BevelInner = bvLowered
  124.     BevelOuter = bvNone
  125.     TabOrder = 5
  126.     object Image: TImage
  127.       Left = 1
  128.       Top = 1
  129.       Width = 162
  130.       Height = 158
  131.       Align = alClient
  132.       Center = True
  133.     end
  134.   end
  135.   object FileListBox: TFileListBox
  136.     Left = 4
  137.     Top = 51
  138.     Width = 146
  139.     Height = 162
  140.     FileEdit = FileEdit
  141.     FileType = [ftReadOnly, ftHidden, ftNormal]
  142.     IntegralHeight = True
  143.     ItemHeight = 16
  144.     Mask = '*.bmp;*.ico;*.wmf'
  145.     ShowGlyphs = True
  146.     TabOrder = 1
  147.     OnChange = FileListBoxChange
  148.     OnClick = FileListBoxClick
  149.     OnDblClick = FileListBoxDblClick
  150.   end
  151.   object FilterCombo: TFilterComboBox
  152.     Left = 4
  153.     Top = 233
  154.     Width = 146
  155.     Height = 21
  156.     FileList = FileListBox
  157.     Filter = 
  158.       'Image Files (*.bmp, *.ico, *.wmf)|*.bmp;*.ico;*.wmf|Bitmap Files' +
  159.       ' (*.bmp)|*.bmp|Icons (*.ico)|*.ico|Metafiles (*.wmf)|*.wmf|All f' +
  160.       'iles (*.*)|*.*'
  161.     TabOrder = 3
  162.     OnChange = FileListBoxClick
  163.   end
  164.   object StretchCheck: TCheckBox
  165.     Left = 321
  166.     Top = 198
  167.     Width = 116
  168.     Height = 15
  169.     Caption = ' &Stretch '
  170.     TabOrder = 6
  171.     OnClick = StretchCheckClick
  172.   end
  173.   object OkBtn: TButton
  174.     Left = 318
  175.     Top = 228
  176.     Width = 77
  177.     Height = 25
  178.     Caption = 'OK'
  179.     Default = True
  180.     TabOrder = 7
  181.     OnClick = OkBtnClick
  182.   end
  183.   object CancelBtn: TButton
  184.     Left = 401
  185.     Top = 228
  186.     Width = 77
  187.     Height = 25
  188.     Cancel = True
  189.     Caption = 'Cancel'
  190.     ModalResult = 2
  191.     TabOrder = 8
  192.   end
  193.   object FilePics: TPicClip
  194.     Cols = 11
  195.     Picture.Data = {<image001.bmp>}
  196.     Left = 244
  197.     Top = 6
  198.   end
  199.   object FormStorage: TFormStorage
  200.     IniFileName = 'DELPHI.INI'
  201.     IniSection = 'RX.ImagePreview'
  202.     StoredProps.Strings = (
  203.       'StretchCheck.Checked')
  204.     Left = 272
  205.     Top = 6
  206.   end
  207. end
  208.