home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk12 / lib.pak / PICEDIT.DFM / PICEDIT.txt
Encoding:
Text File  |  1995-08-24  |  1.9 KB  |  108 lines

  1. object PictureEditorDlg: TPictureEditorDlg
  2.   Left = 263
  3.   Top = 144
  4.   ActiveControl = OK
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Picture Editor'
  8.   ClientHeight = 226
  9.   ClientWidth = 281
  10.   Font.Color = clBlack
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = [fsBold]
  14.   PixelsPerInch = 96
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   OnPaint = FormPaint
  18.   TextHeight = 13
  19.   object Bevel1: TBevel
  20.     Left = 8
  21.     Top = 8
  22.     Width = 265
  23.     Height = 177
  24.     Shape = bsFrame
  25.   end
  26.   object Shape1: TShape
  27.     Left = 12
  28.     Top = 12
  29.     Width = 169
  30.     Height = 169
  31.     Brush.Style = bsClear
  32.   end
  33.   object Shape2: TShape
  34.     Left = 13
  35.     Top = 13
  36.     Width = 167
  37.     Height = 167
  38.     Brush.Style = bsClear
  39.     Pen.Color = clWhite
  40.   end
  41.   object OK: TBitBtn
  42.     Left = 28
  43.     Top = 192
  44.     Width = 77
  45.     Height = 27
  46.     TabOrder = 0
  47.     Kind = bkOK
  48.     Margin = 2
  49.     Spacing = -1
  50.   end
  51.   object Cancel: TBitBtn
  52.     Left = 112
  53.     Top = 192
  54.     Width = 77
  55.     Height = 27
  56.     TabOrder = 1
  57.     Kind = bkCancel
  58.     Margin = 2
  59.     Spacing = -1
  60.   end
  61.   object Load: TButton
  62.     Left = 188
  63.     Top = 12
  64.     Width = 77
  65.     Height = 24
  66.     Caption = '&Load...'
  67.     TabOrder = 2
  68.     OnClick = LoadClick
  69.   end
  70.   object Save: TButton
  71.     Left = 188
  72.     Top = 44
  73.     Width = 77
  74.     Height = 24
  75.     Caption = '&Save...'
  76.     TabOrder = 3
  77.     OnClick = SaveClick
  78.   end
  79.   object Clear: TButton
  80.     Left = 188
  81.     Top = 84
  82.     Width = 77
  83.     Height = 24
  84.     Caption = '&Clear'
  85.     TabOrder = 4
  86.     OnClick = ClearClick
  87.   end
  88.   object HelpBtn: TBitBtn
  89.     Left = 196
  90.     Top = 192
  91.     Width = 77
  92.     Height = 27
  93.     TabOrder = 5
  94.     Kind = bkHelp
  95.   end
  96.   object FileDialog: TOpenDialog
  97.     Title = 'Load picture'
  98.     Left = 140
  99.     Top = 20
  100.   end
  101.   object SaveDialog: TSaveDialog
  102.     Options = [ofOverwritePrompt]
  103.     Title = 'Save picture as'
  104.     Left = 140
  105.     Top = 52
  106.   end
  107. end
  108.