home *** CD-ROM | disk | FTP | other *** search
/ PC World Plus! (NZ) 2001 June / HDC50.iso / Runimage / Delphi50 / Demos / Doc / Textedit / MDIEDIT.DFM / MDIEDIT.txt
Text File  |  1999-08-11  |  4KB  |  182 lines

  1. object EditForm: TEditForm
  2.   Left = 196
  3.   Top = 112
  4.   Width = 435
  5.   Height = 308
  6.   Caption = 'Untitled'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   FormStyle = fsMDIChild
  12.   Menu = MainMenu1
  13.   PixelsPerInch = 96
  14.   PopupMenu = PopupMenu1
  15.   Position = poDefault
  16.   Visible = True
  17.   OnClose = FormClose
  18.   OnCloseQuery = FormCloseQuery
  19.   OnCreate = FormCreate
  20.   TextHeight = 13
  21.   object Editor: TRichEdit
  22.     Left = 0
  23.     Top = 0
  24.     Width = 427
  25.     Height = 262
  26.     Align = alClient
  27.     BorderStyle = bsNone
  28.     ScrollBars = ssVertical
  29.     TabOrder = 0
  30.   end
  31.   object MainMenu1: TMainMenu
  32.     Left = 16
  33.     Top = 248
  34.     object File1: TMenuItem
  35.       Caption = '&File'
  36.       object New1: TMenuItem
  37.         Caption = '&New'
  38.         OnClick = New1Click
  39.       end
  40.       object Open1: TMenuItem
  41.         Caption = '&Open...'
  42.         OnClick = Open1Click
  43.       end
  44.       object Close1: TMenuItem
  45.         Caption = '&Close'
  46.         OnClick = Close1Click
  47.       end
  48.       object Save1: TMenuItem
  49.         Caption = '&Save'
  50.         OnClick = Save1Click
  51.       end
  52.       object Saveas1: TMenuItem
  53.         Caption = 'Save &as...'
  54.         OnClick = Saveas1Click
  55.       end
  56.       object Print1: TMenuItem
  57.         Caption = '&Print'
  58.         OnClick = Print1Click
  59.       end
  60.       object Printersetup1: TMenuItem
  61.         Caption = 'Printer setup...'
  62.         OnClick = Printersetup1Click
  63.       end
  64.       object N2: TMenuItem
  65.         Caption = '-'
  66.       end
  67.       object Exit1: TMenuItem
  68.         Caption = 'E&xit'
  69.         OnClick = Exit1Click
  70.       end
  71.     end
  72.     object Edit1: TMenuItem
  73.       Caption = '&Edit'
  74.       GroupIndex = 1
  75.       OnClick = Edit1Click
  76.       object Cut1: TMenuItem
  77.         Caption = 'Cu&t'
  78.         OnClick = Cut1Click
  79.         ShortCutText = 'Ctrl+X'
  80.       end
  81.       object Copy1: TMenuItem
  82.         Caption = '&Copy'
  83.         OnClick = Copy1Click
  84.         ShortCutText = 'Ctrl+C'
  85.       end
  86.       object Paste1: TMenuItem
  87.         Caption = '&Paste'
  88.         OnClick = Paste1Click
  89.         ShortCutText = 'Ctrl+V'
  90.       end
  91.       object Delete1: TMenuItem
  92.         Caption = 'De&lete'
  93.         OnClick = Delete1Click
  94.         ShortCutText = 'Ctrl+D'
  95.       end
  96.       object N3: TMenuItem
  97.         Caption = '-'
  98.       end
  99.       object Selectall1: TMenuItem
  100.         Caption = 'Select &all'
  101.         OnClick = Selectall1Click
  102.         ShortCutText = 'Ctrl+A'
  103.       end
  104.     end
  105.     object Character1: TMenuItem
  106.       Caption = '&Character'
  107.       GroupIndex = 1
  108.       object Left1: TMenuItem
  109.         Caption = '&Left'
  110.         Checked = True
  111.         OnClick = AlignClick
  112.       end
  113.       object Right1: TMenuItem
  114.         Caption = '&Right'
  115.         OnClick = AlignClick
  116.       end
  117.       object Center1: TMenuItem
  118.         Caption = '&Center'
  119.         OnClick = AlignClick
  120.       end
  121.       object N4: TMenuItem
  122.         Caption = '-'
  123.       end
  124.       object Wordwrap1: TMenuItem
  125.         Caption = '&Word wrap'
  126.         Checked = True
  127.         OnClick = Wordwrap1Click
  128.       end
  129.       object N5: TMenuItem
  130.         Caption = '-'
  131.       end
  132.       object Font1: TMenuItem
  133.         Caption = '&Font...'
  134.         OnClick = Font1Click
  135.       end
  136.     end
  137.   end
  138.   object PopupMenu1: TPopupMenu
  139.     OnPopup = Edit1Click
  140.     Left = 96
  141.     Top = 64
  142.     object Cut2: TMenuItem
  143.       Caption = 'Cu&t'
  144.       OnClick = Cut1Click
  145.     end
  146.     object Copy2: TMenuItem
  147.       Caption = '&Copy'
  148.       OnClick = Copy1Click
  149.     end
  150.     object Paste2: TMenuItem
  151.       Caption = '&Paste'
  152.       OnClick = Paste1Click
  153.     end
  154.   end
  155.   object SaveFileDialog: TSaveDialog
  156.     Filter = 
  157.       'Rich text files (*.rtf)|*.rtf|Plain text files (*.txt)|*.txt|All' +
  158.       ' files|*.*'
  159.     Options = [ofHideReadOnly, ofFileMustExist, ofNoReadOnlyReturn]
  160.     Left = 56
  161.     Top = 64
  162.   end
  163.   object FontDialog1: TFontDialog
  164.     Font.Color = clWindowText
  165.     Font.Height = -11
  166.     Font.Name = 'MS Sans Serif'
  167.     Font.Style = []
  168.     MinFontSize = 0
  169.     MaxFontSize = 0
  170.     Left = 136
  171.     Top = 64
  172.   end
  173.   object PrinterSetupDialog1: TPrinterSetupDialog
  174.     Left = 176
  175.     Top = 64
  176.   end
  177.   object PrintDialog1: TPrintDialog
  178.     Left = 216
  179.     Top = 64
  180.   end
  181. end
  182.