home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 June / Chip_1999-06_cd.bin / tema / Diadema / Demo / setup.exe / Pantheon.csy / RCDATA / TPICTUREEDITDIALOG / TPICTUREEDITDIALOG.txt
Encoding:
Text File  |  1999-04-22  |  2.7 KB  |  147 lines

  1. object PictureEditDialog: TPictureEditDialog
  2.   Left = 223
  3.   Top = 151
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Picture Editor'
  7.   ClientHeight = 249
  8.   ClientWidth = 281
  9.   Font.Color = clBlack
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = [fsBold]
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   OnActivate = UpdateClipboard
  16.   OnCreate = FormCreate
  17.   OnDestroy = FormDestroy
  18.   OnPaint = FormPaint
  19.   OnShow = UpdateClipboard
  20.   TextHeight = 13
  21.   object Shape1: TShape
  22.     Left = 12
  23.     Top = 10
  24.     Width = 169
  25.     Height = 169
  26.     Brush.Style = bsClear
  27.   end
  28.   object Shape2: TShape
  29.     Left = 13
  30.     Top = 11
  31.     Width = 167
  32.     Height = 167
  33.     Brush.Style = bsClear
  34.     Pen.Color = clWhite
  35.   end
  36.   object Bevel1: TBevel
  37.     Left = 8
  38.     Top = 6
  39.     Width = 265
  40.     Height = 177
  41.     Shape = bsFrame
  42.   end
  43.   object Load: TButton
  44.     Left = 188
  45.     Top = 15
  46.     Width = 77
  47.     Height = 24
  48.     Caption = '&Load...'
  49.     TabOrder = 0
  50.     OnClick = LoadClick
  51.   end
  52.   object Save: TButton
  53.     Left = 188
  54.     Top = 45
  55.     Width = 77
  56.     Height = 24
  57.     Caption = '&Save...'
  58.     TabOrder = 1
  59.     OnClick = SaveClick
  60.   end
  61.   object Clear: TButton
  62.     Left = 188
  63.     Top = 146
  64.     Width = 77
  65.     Height = 24
  66.     Caption = 'Cl&ear'
  67.     TabOrder = 4
  68.     OnClick = ClearClick
  69.   end
  70.   object Copy: TButton
  71.     Left = 188
  72.     Top = 75
  73.     Width = 77
  74.     Height = 24
  75.     Caption = '&Copy'
  76.     TabOrder = 2
  77.     OnClick = CopyClick
  78.   end
  79.   object Paste: TButton
  80.     Left = 188
  81.     Top = 105
  82.     Width = 77
  83.     Height = 24
  84.     Caption = '&Paste'
  85.     TabOrder = 3
  86.     OnClick = PasteClick
  87.   end
  88.   object DecreaseBox: TCheckBox
  89.     Left = 10
  90.     Top = 187
  91.     Width = 262
  92.     Height = 14
  93.     Caption = ' &Decrease to 16 colors when paste '
  94.     State = cbChecked
  95.     TabOrder = 5
  96.   end
  97.   object OK: TButton
  98.     Left = 30
  99.     Top = 220
  100.     Width = 77
  101.     Height = 24
  102.     Caption = 'OK'
  103.     Default = True
  104.     ModalResult = 1
  105.     TabOrder = 7
  106.   end
  107.   object Cancel: TButton
  108.     Left = 114
  109.     Top = 220
  110.     Width = 77
  111.     Height = 24
  112.     Cancel = True
  113.     Caption = 'Cancel'
  114.     ModalResult = 2
  115.     TabOrder = 8
  116.   end
  117.   object HelpBtn: TButton
  118.     Left = 198
  119.     Top = 220
  120.     Width = 77
  121.     Height = 24
  122.     Caption = '&Help'
  123.     TabOrder = 9
  124.     OnClick = HelpBtnClick
  125.   end
  126.   object UsePreviewBox: TCheckBox
  127.     Left = 10
  128.     Top = 202
  129.     Width = 262
  130.     Height = 13
  131.     Caption = ' &Use preview dialog box '
  132.     TabOrder = 6
  133.   end
  134.   object FormStorage: TFormStorage
  135.     IniFileName = 'DELPHI.INI'
  136.     IniSection = 'RX.ImageEditor'
  137.     Options = []
  138.     OnSavePlacement = FormStorageSavePlacement
  139.     OnRestorePlacement = FormStorageRestorePlacement
  140.     StoredProps.Strings = (
  141.       'UsePreviewBox.Checked'
  142.       'DecreaseBox.Checked')
  143.     Left = 8
  144.     Top = 6
  145.   end
  146. end
  147.