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