home *** CD-ROM | disk | FTP | other *** search
/ PC Expert 29 / Pce29cd.iso / RUNIMAGE / DELPHI40 / BIN / CORIDE40.BPL / 0 / RCDATA / TPICTUREEDITORDLG / TPICTUREEDITORDLG.txt
Text File  |  1998-06-16  |  2KB  |  115 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.   ParentFont = True
  10.   Position = poScreenCenter
  11.   OnCreate = FormCreate
  12.   OnDestroy = FormDestroy
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object OKButton: TButton
  16.     Left = 274
  17.     Top = 12
  18.     Width = 75
  19.     Height = 25
  20.     Caption = 'OK'
  21.     Default = True
  22.     ModalResult = 1
  23.     TabOrder = 0
  24.   end
  25.   object CancelButton: TButton
  26.     Left = 274
  27.     Top = 41
  28.     Width = 75
  29.     Height = 25
  30.     Cancel = True
  31.     Caption = 'Cancel'
  32.     ModalResult = 2
  33.     TabOrder = 1
  34.   end
  35.   object HelpButton: TButton
  36.     Left = 274
  37.     Top = 71
  38.     Width = 75
  39.     Height = 25
  40.     Caption = '&Help'
  41.     TabOrder = 2
  42.     OnClick = HelpButtonClick
  43.   end
  44.   object GroupBox1: TGroupBox
  45.     Left = 10
  46.     Top = 7
  47.     Width = 255
  48.     Height = 288
  49.     TabOrder = 3
  50.     object ImagePanel: TPanel
  51.       Left = 10
  52.       Top = 16
  53.       Width = 235
  54.       Height = 235
  55.       BevelOuter = bvNone
  56.       BorderWidth = 5
  57.       BorderStyle = bsSingle
  58.       Color = clWindow
  59.       TabOrder = 0
  60.       object ImagePaintBox: TPaintBox
  61.         Left = 5
  62.         Top = 5
  63.         Width = 221
  64.         Height = 221
  65.         Align = alClient
  66.         OnPaint = ImagePaintBoxPaint
  67.       end
  68.     end
  69.     object Load: TButton
  70.       Left = 10
  71.       Top = 257
  72.       Width = 75
  73.       Height = 23
  74.       Caption = '&Load...'
  75.       TabOrder = 1
  76.       OnClick = LoadClick
  77.     end
  78.     object Save: TButton
  79.       Left = 90
  80.       Top = 257
  81.       Width = 75
  82.       Height = 23
  83.       Caption = '&Save...'
  84.       TabOrder = 2
  85.       OnClick = SaveClick
  86.     end
  87.     object Clear: TButton
  88.       Left = 170
  89.       Top = 257
  90.       Width = 75
  91.       Height = 23
  92.       Caption = '&Clear'
  93.       TabOrder = 3
  94.       OnClick = ClearClick
  95.     end
  96.   end
  97.   object OpenDialog: TOpenPictureDialog
  98.     Filter = 
  99.       'All (*.bmp;*.ico;*.emf;*.wmf)|*.bmp;*.ico;*.emf;*.wmf|Bitmaps (*' +
  100.       '.bmp)|*.bmp|Icons (*.ico)|*.ico|Enhanced Metafiles (*.emf)|*.emf' +
  101.       '|Metafiles (*.wmf)|*.wmf'
  102.     Left = 140
  103.     Top = 20
  104.   end
  105.   object SaveDialog: TSavePictureDialog
  106.     Filter = 
  107.       'All (*.bmp;*.ico;*.emf;*.wmf)|*.bmp;*.ico;*.emf;*.wmf|Bitmaps (*' +
  108.       '.bmp)|*.bmp|Icons (*.ico)|*.ico|Enhanced Metafiles (*.emf)|*.emf' +
  109.       '|Metafiles (*.wmf)|*.wmf'
  110.     Options = [ofOverwritePrompt, ofEnableSizing]
  111.     Left = 140
  112.     Top = 52
  113.   end
  114. end
  115.