home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / QDB / QDBG.ZIP / GraphicUnit.dfm / GraphicUnit.txt
Text File  |  1998-07-29  |  2KB  |  89 lines

  1. object GraphicForm: TGraphicForm
  2.   Left = 282
  3.   Top = 190
  4.   Width = 575
  5.   Height = 406
  6.   Caption = 'Editing a Graphic'
  7.   Font.Color = clWindowText
  8.   Font.Height = -13
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   OnCreate = FormCreate
  12.   PixelsPerInch = 120
  13.   TextHeight = 16
  14.   object Panel1: TPanel
  15.     Left = 450
  16.     Top = 0
  17.     Width = 117
  18.     Height = 379
  19.     Align = alRight
  20.     TabOrder = 0
  21.     object CancelButton: TButton
  22.       Left = 21
  23.       Top = 32
  24.       Width = 75
  25.       Height = 25
  26.       Cancel = True
  27.       Caption = 'Cancel'
  28.       ModalResult = 2
  29.       TabOrder = 0
  30.     end
  31.     object SaveButton: TButton
  32.       Left = 21
  33.       Top = 88
  34.       Width = 75
  35.       Height = 25
  36.       Caption = 'Save'
  37.       Default = True
  38.       ModalResult = 1
  39.       TabOrder = 1
  40.     end
  41.     object ImportButton: TButton
  42.       Left = 21
  43.       Top = 144
  44.       Width = 75
  45.       Height = 25
  46.       Caption = 'Import'
  47.       TabOrder = 2
  48.       OnClick = ImportButtonClick
  49.     end
  50.     object ExportButton: TButton
  51.       Left = 21
  52.       Top = 184
  53.       Width = 75
  54.       Height = 25
  55.       Caption = 'Export'
  56.       TabOrder = 3
  57.       OnClick = ExportButtonClick
  58.     end
  59.   end
  60.   object ScrollBox1: TScrollBox
  61.     Left = 0
  62.     Top = 0
  63.     Width = 450
  64.     Height = 379
  65.     Align = alClient
  66.     Color = clBtnFace
  67.     ParentColor = False
  68.     TabOrder = 1
  69.     object Image: TImage
  70.       Left = 0
  71.       Top = 0
  72.       Width = 105
  73.       Height = 105
  74.       AutoSize = True
  75.     end
  76.   end
  77.   object OpenDialog: TOpenDialog
  78.     FileEditStyle = fsEdit
  79.     Left = 498
  80.     Top = 248
  81.   end
  82.   object SaveDialog: TSaveDialog
  83.     FileEditStyle = fsEdit
  84.     Options = [ofOverwritePrompt, ofHideReadOnly]
  85.     Left = 498
  86.     Top = 296
  87.   end
  88. end
  89.