home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 June / Chip_2002-06_cd1.bin / zkuste / delphi / kolekce / d6 / rxlibsetup.exe / {app} / units / PICTEDIT.dfm / PICTEDIT.txt
Encoding:
Text File  |  1999-10-12  |  3.8 KB  |  193 lines

  1. object PictureEditDialog: TPictureEditDialog
  2.   Left = 202
  3.   Top = 102
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Picture Editor'
  7.   ClientHeight = 335
  8.   ClientWidth = 353
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = [fsBold]
  15.   OldCreateOrder = True
  16.   Position = poScreenCenter
  17.   OnCreate = FormCreate
  18.   OnDestroy = FormDestroy
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object UsePreviewBox: TCheckBox
  22.     Left = 7
  23.     Top = 270
  24.     Width = 339
  25.     Height = 14
  26.     Caption = ' &Use preview dialog box '
  27.     TabOrder = 1
  28.   end
  29.   object OKButton: TButton
  30.     Left = 105
  31.     Top = 306
  32.     Width = 75
  33.     Height = 25
  34.     Caption = 'OK'
  35.     Default = True
  36.     ModalResult = 1
  37.     TabOrder = 3
  38.   end
  39.   object CancelButton: TButton
  40.     Left = 188
  41.     Top = 306
  42.     Width = 75
  43.     Height = 25
  44.     Cancel = True
  45.     Caption = 'Cancel'
  46.     ModalResult = 2
  47.     TabOrder = 4
  48.   end
  49.   object HelpBtn: TButton
  50.     Left = 271
  51.     Top = 306
  52.     Width = 75
  53.     Height = 25
  54.     Caption = '&Help'
  55.     TabOrder = 5
  56.     OnClick = HelpBtnClick
  57.   end
  58.   object GroupBox: TGroupBox
  59.     Left = 7
  60.     Top = 3
  61.     Width = 339
  62.     Height = 262
  63.     TabOrder = 0
  64.     object Bevel: TBevel
  65.       Left = 9
  66.       Top = 15
  67.       Width = 237
  68.       Height = 237
  69.     end
  70.     object PathsBtn: TRxSpeedButton
  71.       Left = 307
  72.       Top = 186
  73.       Width = 22
  74.       Height = 25
  75.       DropDownMenu = PathsMenu
  76.       Enabled = False
  77.     end
  78.     object ImagePanel: TPanel
  79.       Left = 10
  80.       Top = 16
  81.       Width = 235
  82.       Height = 235
  83.       BevelOuter = bvNone
  84.       BorderWidth = 5
  85.       BorderStyle = bsSingle
  86.       Color = clWindow
  87.       Ctl3D = True
  88.       ParentCtl3D = False
  89.       TabOrder = 0
  90.       object ImagePaintBox: TPaintBox
  91.         Left = 5
  92.         Top = 5
  93.         Width = 221
  94.         Height = 221
  95.         Align = alClient
  96.         OnPaint = ImagePaintBoxPaint
  97.       end
  98.     end
  99.     object Load: TButton
  100.       Left = 254
  101.       Top = 16
  102.       Width = 75
  103.       Height = 25
  104.       Caption = '&Load...'
  105.       TabOrder = 1
  106.       OnClick = LoadClick
  107.     end
  108.     object Save: TButton
  109.       Left = 254
  110.       Top = 49
  111.       Width = 75
  112.       Height = 25
  113.       Caption = '&Save...'
  114.       TabOrder = 2
  115.       OnClick = SaveClick
  116.     end
  117.     object Clear: TButton
  118.       Left = 254
  119.       Top = 146
  120.       Width = 75
  121.       Height = 25
  122.       Caption = 'Cl&ear'
  123.       TabOrder = 5
  124.       OnClick = ClearClick
  125.     end
  126.     object Copy: TButton
  127.       Left = 254
  128.       Top = 81
  129.       Width = 75
  130.       Height = 25
  131.       Caption = '&Copy'
  132.       TabOrder = 3
  133.       OnClick = CopyClick
  134.     end
  135.     object Paste: TButton
  136.       Left = 254
  137.       Top = 114
  138.       Width = 75
  139.       Height = 25
  140.       Caption = '&Paste'
  141.       TabOrder = 4
  142.       OnClick = PasteClick
  143.     end
  144.     object Paths: TButton
  145.       Left = 254
  146.       Top = 186
  147.       Width = 53
  148.       Height = 25
  149.       Caption = 'P&aths'
  150.       TabOrder = 6
  151.       OnClick = PathsClick
  152.     end
  153.   end
  154.   object DecreaseBox: TCheckBox
  155.     Left = 7
  156.     Top = 287
  157.     Width = 339
  158.     Height = 14
  159.     Caption = ' &Decrease to 16 colors when paste '
  160.     Checked = True
  161.     State = cbChecked
  162.     TabOrder = 2
  163.   end
  164.   object FormStorage: TFormStorage
  165.     IniFileName = 'DELPHI.INI'
  166.     IniSection = 'RX.ImageEditor'
  167.     Options = [fpPosition]
  168.     OnSavePlacement = FormStorageSavePlacement
  169.     OnRestorePlacement = FormStorageRestorePlacement
  170.     StoredProps.Strings = (
  171.       'UsePreviewBox.Checked'
  172.       'DecreaseBox.Checked')
  173.     StoredValues = <>
  174.     Left = 32
  175.     Top = 30
  176.   end
  177.   object PathsMenu: TPopupMenu
  178.     Alignment = paRight
  179.     OnPopup = PathsMenuPopup
  180.     Left = 60
  181.     Top = 30
  182.   end
  183.   object PathsMRU: TMRUManager
  184.     Capacity = 30
  185.     IniStorage = FormStorage
  186.     ShowAccelChar = False
  187.     OnChange = PathsMRUChange
  188.     OnClick = PathsMRUClick
  189.     Left = 88
  190.     Top = 30
  191.   end
  192. end
  193.