home *** CD-ROM | disk | FTP | other *** search
/ Compressed Image File Formats / CompressedImageFileFormatsJohnMiano.iso / pc / Library / BCBViewer / PngConfig.dfm / PngConfig.txt
Encoding:
Text File  |  1998-12-17  |  3.7 KB  |  188 lines

  1. object PngConfiguration: TPngConfiguration
  2.   Left = 384
  3.   Top = 188
  4.   BorderStyle = bsDialog
  5.   Caption = 'PNG Configuration'
  6.   ClientHeight = 179
  7.   ClientWidth = 384
  8.   ParentFont = True
  9.   Position = poScreenCenter
  10.   OnCreate = FormCreate
  11.   PixelsPerInch = 96
  12.   TextHeight = 13
  13.   object Panel1: TPanel
  14.     Left = 284
  15.     Top = 0
  16.     Width = 100
  17.     Height = 179
  18.     Align = alRight
  19.     BevelOuter = bvNone
  20.     TabOrder = 0
  21.     object OKBtn: TButton
  22.       Left = 10
  23.       Top = 8
  24.       Width = 75
  25.       Height = 25
  26.       Caption = 'OK'
  27.       Default = True
  28.       ModalResult = 1
  29.       TabOrder = 0
  30.       OnClick = OKBtnClick
  31.     end
  32.     object CancelBtn: TButton
  33.       Left = 10
  34.       Top = 38
  35.       Width = 75
  36.       Height = 25
  37.       Cancel = True
  38.       Caption = 'Cancel'
  39.       ModalResult = 2
  40.       TabOrder = 1
  41.     end
  42.   end
  43.   object PageControl1: TPageControl
  44.     Left = 0
  45.     Top = 0
  46.     Width = 284
  47.     Height = 179
  48.     ActivePage = TabSheet1
  49.     Align = alClient
  50.     TabOrder = 1
  51.     object TabSheet1: TTabSheet
  52.       Caption = 'General'
  53.       object Label1: TLabel
  54.         Left = 10
  55.         Top = 40
  56.         Width = 50
  57.         Height = 13
  58.         Caption = 'Block Size'
  59.       end
  60.       object Label2: TLabel
  61.         Left = 10
  62.         Top = 70
  63.         Width = 89
  64.         Height = 13
  65.         Caption = 'Compression Level'
  66.       end
  67.       object UseFilters: TCheckBox
  68.         Left = 10
  69.         Top = 10
  70.         Width = 73
  71.         Height = 17
  72.         Caption = 'Use Filters'
  73.         State = cbChecked
  74.         TabOrder = 0
  75.       end
  76.       object BlockSize: TEdit
  77.         Left = 80
  78.         Top = 36
  79.         Width = 121
  80.         Height = 21
  81.         TabOrder = 1
  82.         Text = '16384'
  83.       end
  84.       object CompressionLevel: TComboBox
  85.         Left = 110
  86.         Top = 66
  87.         Width = 145
  88.         Height = 21
  89.         Style = csDropDownList
  90.         ItemHeight = 13
  91.         Items.Strings = (
  92.           'Fastest'
  93.           'Fast'
  94.           'Default'
  95.           'Maximum')
  96.         TabOrder = 2
  97.       end
  98.     end
  99.     object TabSheet2: TTabSheet
  100.       Caption = 'Text Values'
  101.       object Label3: TLabel
  102.         Left = 10
  103.         Top = 14
  104.         Width = 20
  105.         Height = 13
  106.         Caption = 'Title'
  107.       end
  108.       object Label4: TLabel
  109.         Left = 10
  110.         Top = 38
  111.         Width = 31
  112.         Height = 13
  113.         Caption = 'Author'
  114.       end
  115.       object Label5: TLabel
  116.         Left = 10
  117.         Top = 61
  118.         Width = 53
  119.         Height = 13
  120.         Caption = 'Description'
  121.       end
  122.       object Label6: TLabel
  123.         Left = 10
  124.         Top = 85
  125.         Width = 44
  126.         Height = 13
  127.         Caption = 'Copyright'
  128.       end
  129.       object Label7: TLabel
  130.         Left = 10
  131.         Top = 108
  132.         Width = 34
  133.         Height = 13
  134.         Caption = 'Source'
  135.       end
  136.       object Label8: TLabel
  137.         Left = 10
  138.         Top = 132
  139.         Width = 44
  140.         Height = 13
  141.         Caption = 'Comment'
  142.       end
  143.       object Title: TEdit
  144.         Left = 70
  145.         Top = 10
  146.         Width = 200
  147.         Height = 21
  148.         TabOrder = 0
  149.       end
  150.       object Author: TEdit
  151.         Left = 70
  152.         Top = 34
  153.         Width = 200
  154.         Height = 21
  155.         TabOrder = 1
  156.       end
  157.       object Description: TEdit
  158.         Left = 70
  159.         Top = 57
  160.         Width = 200
  161.         Height = 21
  162.         TabOrder = 2
  163.       end
  164.       object Copyright: TEdit
  165.         Left = 70
  166.         Top = 81
  167.         Width = 200
  168.         Height = 21
  169.         TabOrder = 3
  170.       end
  171.       object Source: TEdit
  172.         Left = 70
  173.         Top = 104
  174.         Width = 200
  175.         Height = 21
  176.         TabOrder = 4
  177.       end
  178.       object Comment: TEdit
  179.         Left = 70
  180.         Top = 128
  181.         Width = 200
  182.         Height = 21
  183.         TabOrder = 5
  184.       end
  185.     end
  186.   end
  187. end
  188.