home *** CD-ROM | disk | FTP | other *** search
/ PC World Plus! (NZ) 2001 June / HDC50.iso / Runimage / Delphi50 / Demos / Imagview / IMAGEWIN.DFM / IMAGEWIN.txt
Text File  |  1999-08-11  |  4KB  |  207 lines

  1. object ImageForm: TImageForm
  2.   Left = 193
  3.   Top = 107
  4.   ActiveControl = FileEdit
  5.   BorderIcons = [biSystemMenu, biMinimize]
  6.   BorderStyle = bsSingle
  7.   Caption = 'Image Viewer'
  8.   ClientHeight = 315
  9.   ClientWidth = 502
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clBlack
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = [fsBold]
  15.   Position = poDefaultPosOnly
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Bevel1: TBevel
  19.     Left = 316
  20.     Top = 5
  21.     Width = 171
  22.     Height = 121
  23.   end
  24.   object Bevel2: TBevel
  25.     Left = 317
  26.     Top = 132
  27.     Width = 170
  28.     Height = 177
  29.   end
  30.   object Label1: TLabel
  31.     Left = 325
  32.     Top = 11
  33.     Width = 147
  34.     Height = 13
  35.     AutoSize = False
  36.     Caption = 'Label1'
  37.   end
  38.   object Label2: TLabel
  39.     Left = 324
  40.     Top = 290
  41.     Width = 117
  42.     Height = 13
  43.     Caption = 'Number of Glyphs - '
  44.   end
  45.   object DirectoryListBox1: TDirectoryListBox
  46.     Left = 8
  47.     Top = 12
  48.     Width = 148
  49.     Height = 260
  50.     FileList = FileListBox1
  51.     IntegralHeight = True
  52.     ItemHeight = 16
  53.     TabOrder = 1
  54.   end
  55.   object DriveComboBox1: TDriveComboBox
  56.     Left = 9
  57.     Top = 277
  58.     Width = 148
  59.     Height = 19
  60.     DirList = DirectoryListBox1
  61.     TabOrder = 3
  62.   end
  63.   object FileEdit: TEdit
  64.     Left = 166
  65.     Top = 13
  66.     Width = 139
  67.     Height = 21
  68.     TabOrder = 0
  69.     Text = '*.bmp;*.ico;*.wmf;*.emf'
  70.     OnKeyPress = FileEditKeyPress
  71.   end
  72.   object UpDownGroup: TGroupBox
  73.     Left = 323
  74.     Top = 158
  75.     Width = 154
  76.     Height = 60
  77.     Caption = 'Up / Down'
  78.     TabOrder = 5
  79.     object SpeedButton1: TSpeedButton
  80.       Left = 116
  81.       Top = 26
  82.       Width = 25
  83.       Height = 25
  84.       AllowAllUp = True
  85.       GroupIndex = 1
  86.     end
  87.     object BitBtn1: TBitBtn
  88.       Left = 12
  89.       Top = 18
  90.       Width = 92
  91.       Height = 33
  92.       Caption = 'BitBtn1'
  93.       TabOrder = 0
  94.     end
  95.   end
  96.   object DisabledGrp: TGroupBox
  97.     Left = 323
  98.     Top = 220
  99.     Width = 154
  100.     Height = 60
  101.     Caption = 'Disabled'
  102.     TabOrder = 7
  103.     object SpeedButton2: TSpeedButton
  104.       Left = 116
  105.       Top = 25
  106.       Width = 25
  107.       Height = 25
  108.       Enabled = False
  109.     end
  110.     object BitBtn2: TBitBtn
  111.       Left = 11
  112.       Top = 18
  113.       Width = 92
  114.       Height = 33
  115.       Caption = 'BitBtn2'
  116.       Enabled = False
  117.       TabOrder = 0
  118.     end
  119.   end
  120.   object Panel1: TPanel
  121.     Left = 324
  122.     Top = 27
  123.     Width = 153
  124.     Height = 68
  125.     BevelInner = bvLowered
  126.     TabOrder = 8
  127.     object Image1: TImage
  128.       Left = 2
  129.       Top = 2
  130.       Width = 149
  131.       Height = 64
  132.       Align = alClient
  133.       IncrementalDisplay = False
  134.     end
  135.   end
  136.   object FileListBox1: TFileListBox
  137.     Left = 166
  138.     Top = 41
  139.     Width = 139
  140.     Height = 227
  141.     FileEdit = FileEdit
  142.     ItemHeight = 13
  143.     Mask = '*.bmp;*.ico;*.wmf;*.emf'
  144.     TabOrder = 2
  145.     OnClick = FileListBox1Click
  146.   end
  147.   object ViewBtn: TBitBtn
  148.     Left = 325
  149.     Top = 98
  150.     Width = 63
  151.     Height = 24
  152.     Caption = '&Full View'
  153.     TabOrder = 6
  154.     OnClick = ViewBtnClick
  155.   end
  156.   object FilterComboBox1: TFilterComboBox
  157.     Left = 166
  158.     Top = 275
  159.     Width = 140
  160.     Height = 21
  161.     FileList = FileListBox1
  162.     Filter = 
  163.       'Image Files (*.bmp, *.ico, *.wmf, *.emf)|*.bmp;*.ico;*.wmf;*.emf' +
  164.       '|Bitmap Files (*.bmp)|*.bmp|Icons (*.ico)|*.ico|Metafiles (*.wmf' +
  165.       ', *.emf)|*.wmf;*.emf|All files (*.*)|*.*'
  166.     TabOrder = 4
  167.   end
  168.   object GlyphCheck: TCheckBox
  169.     Left = 327
  170.     Top = 137
  171.     Width = 104
  172.     Height = 17
  173.     Caption = 'View as Glyph'
  174.     TabOrder = 9
  175.     OnClick = GlyphCheckClick
  176.   end
  177.   object StretchCheck: TCheckBox
  178.     Left = 413
  179.     Top = 96
  180.     Width = 64
  181.     Height = 17
  182.     Caption = 'Stretch'
  183.     TabOrder = 11
  184.     OnClick = StretchCheckClick
  185.   end
  186.   object UpDownEdit: TEdit
  187.     Left = 439
  188.     Top = 286
  189.     Width = 24
  190.     Height = 21
  191.     TabOrder = 10
  192.     Text = '1'
  193.     OnChange = UpDownEditChange
  194.   end
  195.   object UpDown1: TUpDown
  196.     Left = 463
  197.     Top = 286
  198.     Width = 11
  199.     Height = 21
  200.     Associate = UpDownEdit
  201.     Min = 0
  202.     Position = 1
  203.     TabOrder = 12
  204.     Wrap = False
  205.   end
  206. end
  207.