home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Lib / picedit.dfm < prev    next >
Text File  |  1999-08-11  |  3KB  |  117 lines

  1. object PictureEditorDlg: TPictureEditorDlg
  2.   Left = 232
  3.   Top = 143
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Picture Editor'
  7.   ClientHeight = 306
  8.   ClientWidth = 357
  9.   Color = clBtnFace
  10.   ParentFont = True
  11.   OldCreateOrder = True
  12.   Position = poScreenCenter
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object OKButton: TButton
  18.     Left = 274
  19.     Top = 12
  20.     Width = 75
  21.     Height = 25
  22.     Caption = 'OK'
  23.     Default = True
  24.     ModalResult = 1
  25.     TabOrder = 0
  26.   end
  27.   object CancelButton: TButton
  28.     Left = 274
  29.     Top = 41
  30.     Width = 75
  31.     Height = 25
  32.     Cancel = True
  33.     Caption = 'Cancel'
  34.     ModalResult = 2
  35.     TabOrder = 1
  36.   end
  37.   object HelpButton: TButton
  38.     Left = 274
  39.     Top = 71
  40.     Width = 75
  41.     Height = 25
  42.     Caption = '&Help'
  43.     TabOrder = 2
  44.     OnClick = HelpButtonClick
  45.   end
  46.   object GroupBox1: TGroupBox
  47.     Left = 10
  48.     Top = 7
  49.     Width = 255
  50.     Height = 288
  51.     TabOrder = 3
  52.     object ImagePanel: TPanel
  53.       Left = 10
  54.       Top = 16
  55.       Width = 235
  56.       Height = 235
  57.       BevelOuter = bvNone
  58.       BorderWidth = 5
  59.       BorderStyle = bsSingle
  60.       Color = clWindow
  61.       TabOrder = 0
  62.       object ImagePaintBox: TPaintBox
  63.         Left = 5
  64.         Top = 5
  65.         Width = 221
  66.         Height = 221
  67.         Align = alClient
  68.         OnPaint = ImagePaintBoxPaint
  69.       end
  70.     end
  71.     object Load: TButton
  72.       Left = 10
  73.       Top = 257
  74.       Width = 75
  75.       Height = 23
  76.       Caption = '&Load...'
  77.       TabOrder = 1
  78.       OnClick = LoadClick
  79.     end
  80.     object Save: TButton
  81.       Left = 90
  82.       Top = 257
  83.       Width = 75
  84.       Height = 23
  85.       Caption = '&Save...'
  86.       TabOrder = 2
  87.       OnClick = SaveClick
  88.     end
  89.     object Clear: TButton
  90.       Left = 170
  91.       Top = 257
  92.       Width = 75
  93.       Height = 23
  94.       Caption = '&Clear'
  95.       TabOrder = 3
  96.       OnClick = ClearClick
  97.     end
  98.   end
  99.   object OpenDialog: TOpenPictureDialog
  100.     Filter = 
  101.       'All (*.bmp;*.ico;*.emf;*.wmf)|*.bmp;*.ico;*.emf;*.wmf|Bitmaps (*' +
  102.       '.bmp)|*.bmp|Icons (*.ico)|*.ico|Enhanced Metafiles (*.emf)|*.emf' +
  103.       '|Metafiles (*.wmf)|*.wmf'
  104.     Left = 140
  105.     Top = 20
  106.   end
  107.   object SaveDialog: TSavePictureDialog
  108.     Filter = 
  109.       'All (*.bmp;*.ico;*.emf;*.wmf)|*.bmp;*.ico;*.emf;*.wmf|Bitmaps (*' +
  110.       '.bmp)|*.bmp|Icons (*.ico)|*.ico|Enhanced Metafiles (*.emf)|*.emf' +
  111.       '|Metafiles (*.wmf)|*.wmf'
  112.     Options = [ofOverwritePrompt, ofEnableSizing]
  113.     Left = 140
  114.     Top = 52
  115.   end
  116. end
  117.