home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / textedit.pak / MDIEDIT.DFM / MDIEDIT.txt < prev   
Encoding:
Text File  |  1995-08-24  |  4.5 KB  |  202 lines

  1. object EditForm: TEditForm
  2.   Left = 236
  3.   Top = 123
  4.   Width = 399
  5.   Height = 210
  6.   ActiveControl = Memo1
  7.   Caption = 'Untitled'
  8.   Ctl3D = False
  9.   Font.Color = clWindowText
  10.   Font.Height = -13
  11.   Font.Name = 'System'
  12.   Font.Style = []
  13.   FormStyle = fsMDIChild
  14.   Icon.Data = {<image000.ico>}
  15.   Menu = MainMenu1
  16.   PixelsPerInch = 96
  17.   Position = poDefault
  18.   Visible = True
  19.   OnClose = FormClose
  20.   OnCloseQuery = FormCloseQuery
  21.   TextHeight = 16
  22.   object Memo1: TMemo
  23.     Left = 0
  24.     Top = 0
  25.     Width = 391
  26.     Height = 164
  27.     Cursor = crIBeam
  28.     Align = alClient
  29.     BorderStyle = bsNone
  30.     Ctl3D = False
  31.     Font.Color = clBlack
  32.     Font.Height = -13
  33.     Font.Name = 'Courier New'
  34.     Font.Style = []
  35.     ParentCtl3D = False
  36.     ParentFont = False
  37.     PopupMenu = MemoPopUp
  38.     ScrollBars = ssBoth
  39.     TabOrder = 0
  40.     WordWrap = False
  41.   end
  42.   object MainMenu1: TMainMenu
  43.     AutoMerge = True
  44.     Left = 335
  45.     object File1: TMenuItem
  46.       Caption = '&File'
  47.       object New1: TMenuItem
  48.         Caption = '&New'
  49.         OnClick = New1Click
  50.         ShortCutText = 'Ctrl+N'
  51.       end
  52.       object Open1: TMenuItem
  53.         Caption = '&Open'
  54.         OnClick = Open1Click
  55.         ShortCutText = 'Ctrl+O'
  56.       end
  57.       object Close1: TMenuItem
  58.         Caption = '&Close'
  59.         OnClick = Close1Click
  60.       end
  61.       object N1: TMenuItem
  62.         Caption = '-'
  63.       end
  64.       object Save1: TMenuItem
  65.         Caption = '&Save'
  66.         OnClick = Save1Click
  67.         ShortCutText = 'Ctrl+S'
  68.       end
  69.       object SaveAs1: TMenuItem
  70.         Caption = 'Save &As...'
  71.         OnClick = SaveAs1Click
  72.       end
  73.       object N2: TMenuItem
  74.         Caption = '-'
  75.       end
  76.       object Print1: TMenuItem
  77.         Caption = '&Print'
  78.         OnClick = Print1Click
  79.         ShortCutText = 'Ctrl+P'
  80.       end
  81.       object PrintSetup1: TMenuItem
  82.         Caption = 'Prin&t Setup...'
  83.         OnClick = PrintSetup1Click
  84.       end
  85.       object N3: TMenuItem
  86.         Caption = '-'
  87.       end
  88.       object Exit1: TMenuItem
  89.         Caption = 'E&xit'
  90.         OnClick = Exit1Click
  91.       end
  92.     end
  93.     object Edit1: TMenuItem
  94.       Caption = '&Edit'
  95.       GroupIndex = 1
  96.       OnClick = SetEditItems
  97.       object Cut1: TMenuItem
  98.         Caption = 'Cu&t'
  99.         OnClick = CutToClipboard
  100.         ShortCutText = 'Ctrl+X'
  101.       end
  102.       object Copy1: TMenuItem
  103.         Caption = '&Copy'
  104.         OnClick = CopyToClipboard
  105.         ShortCutText = 'Ctrl+C'
  106.       end
  107.       object Paste1: TMenuItem
  108.         Caption = '&Paste'
  109.         OnClick = PasteFromClipboard
  110.         ShortCutText = 'Ctrl+V'
  111.       end
  112.       object Delete1: TMenuItem
  113.         Caption = 'De&lete'
  114.         OnClick = Delete
  115.         ShortCutText = 'Del'
  116.       end
  117.       object TMenuItem
  118.         Caption = '-'
  119.       end
  120.       object SelectAll1: TMenuItem
  121.         Caption = 'Select &All'
  122.         OnClick = selectAll
  123.       end
  124.     end
  125.     object Character1: TMenuItem
  126.       Caption = '&Character'
  127.       GroupIndex = 1
  128.       object Left1: TMenuItem
  129.         Caption = '&Left'
  130.         Checked = True
  131.         GroupIndex = 2
  132.         OnClick = AlignClick
  133.       end
  134.       object Right1: TMenuItem
  135.         Caption = '&Right'
  136.         GroupIndex = 2
  137.         OnClick = AlignClick
  138.       end
  139.       object Center1: TMenuItem
  140.         Caption = '&Center'
  141.         GroupIndex = 2
  142.         OnClick = AlignClick
  143.       end
  144.       object TMenuItem
  145.         Caption = '-'
  146.         GroupIndex = 2
  147.       end
  148.       object WordWrap1: TMenuItem
  149.         Caption = '&WordWrap'
  150.         GroupIndex = 3
  151.         OnClick = SetWordWrap
  152.       end
  153.       object TMenuItem
  154.         Caption = '-'
  155.         GroupIndex = 3
  156.       end
  157.       object Font1: TMenuItem
  158.         Caption = '&Font...'
  159.         GroupIndex = 4
  160.         OnClick = SetFont
  161.       end
  162.     end
  163.   end
  164.   object MemoPopUp: TPopupMenu
  165.     OnPopup = SetPopUpItems
  166.     Left = 308
  167.     Top = 65534
  168.     object Cut2: TMenuItem
  169.       Caption = 'Cut'
  170.       OnClick = CutToClipboard
  171.     end
  172.     object Copy2: TMenuItem
  173.       Caption = 'Copy'
  174.       OnClick = CopyToClipboard
  175.     end
  176.     object Paste2: TMenuItem
  177.       Caption = 'Paste'
  178.       OnClick = PasteFromClipboard
  179.     end
  180.   end
  181.   object FontDialog1: TFontDialog
  182.     Font.Color = clWindowText
  183.     Font.Height = -13
  184.     Font.Name = 'System'
  185.     Font.Style = []
  186.     MinFontSize = 0
  187.     MaxFontSize = 0
  188.     Left = 363
  189.   end
  190.   object PrinterSetupDialog1: TPrinterSetupDialog
  191.     Left = 256
  192.   end
  193.   object PrintDialog1: TPrintDialog
  194.     Left = 280
  195.   end
  196.   object SaveFileDialog: TSaveDialog
  197.     Filter = 'Text Files (*.txt) | *.txt | All Files (*.*) | *.*'
  198.     Options = [ofHideReadOnly, ofNoReadOnlyReturn]
  199.     Left = 232
  200.   end
  201. end
  202.