home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Richedit / Deu / remain.dfm / remain.txt < prev   
Text File  |  1999-08-11  |  37KB  |  885 lines

  1. object MainForm: TMainForm
  2.   Left = 174
  3.   Top = 107
  4.   Width = 625
  5.   Height = 209
  6.   ActiveControl = Editor
  7.   Caption = 'Rich Edit Control Beispiel'
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'Default'
  13.   Font.Style = []
  14.   Icon.Data = {<image000.ico>}
  15.   Menu = MainMenu
  16.   OldCreateOrder = True
  17.   Position = poDefaultSizeOnly
  18.   OnCloseQuery = FormCloseQuery
  19.   OnCreate = FormCreate
  20.   OnPaint = FormPaint
  21.   OnResize = FormResize
  22.   OnShow = FormShow
  23.   PixelsPerInch = 96
  24.   TextHeight = 13
  25.   object Ruler: TPanel
  26.     Left = 0
  27.     Top = 32
  28.     Width = 617
  29.     Height = 26
  30.     Align = alTop
  31.     Alignment = taLeftJustify
  32.     BevelOuter = bvNone
  33.     Caption = 'asdf'
  34.     Font.Charset = DEFAULT_CHARSET
  35.     Font.Color = clBlack
  36.     Font.Height = -11
  37.     Font.Name = 'Arial'
  38.     Font.Style = []
  39.     ParentFont = False
  40.     TabOrder = 0
  41.     OnResize = RulerResize
  42.     object FirstInd: TLabel
  43.       Left = 2
  44.       Top = 2
  45.       Width = 10
  46.       Height = 9
  47.       AutoSize = False
  48.       Caption = '∩┐╜'
  49.       DragCursor = crArrow
  50.       Font.Charset = DEFAULT_CHARSET
  51.       Font.Color = clBlack
  52.       Font.Height = -11
  53.       Font.Name = 'Wingdings'
  54.       Font.Style = []
  55.       ParentFont = False
  56.       OnMouseDown = RulerItemMouseDown
  57.       OnMouseMove = RulerItemMouseMove
  58.       OnMouseUp = FirstIndMouseUp
  59.     end
  60.     object LeftInd: TLabel
  61.       Left = 2
  62.       Top = 12
  63.       Width = 10
  64.       Height = 11
  65.       AutoSize = False
  66.       Caption = '∩┐╜'
  67.       DragCursor = crArrow
  68.       Font.Charset = DEFAULT_CHARSET
  69.       Font.Color = clBlack
  70.       Font.Height = -11
  71.       Font.Name = 'Wingdings'
  72.       Font.Style = []
  73.       ParentFont = False
  74.       OnMouseDown = RulerItemMouseDown
  75.       OnMouseMove = RulerItemMouseMove
  76.       OnMouseUp = LeftIndMouseUp
  77.     end
  78.     object RulerLine: TBevel
  79.       Left = 4
  80.       Top = 12
  81.       Width = 579
  82.       Height = 2
  83.       Shape = bsTopLine
  84.     end
  85.     object RightInd: TLabel
  86.       Left = 575
  87.       Top = 14
  88.       Width = 9
  89.       Height = 12
  90.       Caption = '∩┐╜'
  91.       DragCursor = crArrow
  92.       Font.Charset = DEFAULT_CHARSET
  93.       Font.Color = clBlack
  94.       Font.Height = -11
  95.       Font.Name = 'Wingdings'
  96.       Font.Style = []
  97.       ParentFont = False
  98.       OnMouseDown = RulerItemMouseDown
  99.       OnMouseMove = RulerItemMouseMove
  100.       OnMouseUp = RightIndMouseUp
  101.     end
  102.     object Bevel1: TBevel
  103.       Left = 0
  104.       Top = 0
  105.       Width = 617
  106.       Height = 2
  107.       Align = alTop
  108.       Shape = bsTopLine
  109.     end
  110.   end
  111.   object Editor: TRichEdit
  112.     Left = 0
  113.     Top = 58
  114.     Width = 617
  115.     Height = 86
  116.     Align = alClient
  117.     ScrollBars = ssBoth
  118.     TabOrder = 1
  119.     OnChange = RichEditChange
  120.     OnSelectionChange = SelectionChange
  121.   end
  122.   object StatusBar: TStatusBar
  123.     Left = 0
  124.     Top = 144
  125.     Width = 617
  126.     Height = 19
  127.     Panels = <
  128.       item
  129.         Width = 120
  130.       end
  131.       item
  132.         Alignment = taCenter
  133.         Width = 60
  134.       end
  135.       item
  136.         Width = 50
  137.       end>
  138.     SimplePanel = False
  139.   end
  140.   object StandardToolBar: TToolBar
  141.     Left = 0
  142.     Top = 0
  143.     Width = 617
  144.     AutoSize = True
  145.     BorderWidth = 2
  146.     Flat = True
  147.     Images = ToolbarImages
  148.     Indent = 4
  149.     ParentShowHint = False
  150.     ShowHint = True
  151.     TabOrder = 3
  152.     Wrapable = False
  153.     object ToolButton1: TToolButton
  154.       Left = 4
  155.       Top = 0
  156.       Action = FileNewCmd
  157.     end
  158.     object OpenButton: TToolButton
  159.       Left = 27
  160.       Top = 0
  161.       Action = FileOpenCmd
  162.     end
  163.     object SaveButton: TToolButton
  164.       Left = 50
  165.       Top = 0
  166.       Action = FileSaveCmd
  167.     end
  168.     object PrintButton: TToolButton
  169.       Left = 73
  170.       Top = 0
  171.       Action = FilePrintCmd
  172.     end
  173.     object ToolButton5: TToolButton
  174.       Left = 96
  175.       Top = 0
  176.       Width = 8
  177.       ImageIndex = 3
  178.       Style = tbsDivider
  179.     end
  180.     object CutButton: TToolButton
  181.       Left = 104
  182.       Top = 0
  183.       Action = EditCutCmd
  184.     end
  185.     object CopyButton: TToolButton
  186.       Left = 127
  187.       Top = 0
  188.       Action = EditCopyCmd
  189.     end
  190.     object PasteButton: TToolButton
  191.       Left = 150
  192.       Top = 0
  193.       Action = EditPasteCmd
  194.     end
  195.     object UndoButton: TToolButton
  196.       Left = 173
  197.       Top = 0
  198.       Action = EditUndoCmd
  199.     end
  200.     object ToolButton10: TToolButton
  201.       Left = 196
  202.       Top = 0
  203.       Width = 8
  204.       ImageIndex = 7
  205.       Style = tbsSeparator
  206.     end
  207.     object FontName: TComboBox
  208.       Left = 204
  209.       Top = 0
  210.       Width = 173
  211.       Height = 21
  212.       Hint = 'Schriftart|Schriftart ausw∩┐╜hlen'
  213.       Ctl3D = False
  214.       DropDownCount = 10
  215.       ItemHeight = 13
  216.       ParentCtl3D = False
  217.       TabOrder = 0
  218.       OnChange = FontNameChange
  219.     end
  220.     object ToolButton11: TToolButton
  221.       Left = 377
  222.       Top = 0
  223.       Width = 8
  224.       ImageIndex = 8
  225.       Style = tbsSeparator
  226.     end
  227.     object FontSize: TEdit
  228.       Left = 385
  229.       Top = 0
  230.       Width = 26
  231.       Height = 22
  232.       Hint = 'Schriftgr∩┐╜∩┐╜e|Schriftgr∩┐╜∩┐╜e ausw∩┐╜hlen'
  233.       TabOrder = 1
  234.       Text = '0'
  235.       OnChange = FontSizeChange
  236.     end
  237.     object UpDown1: TUpDown
  238.       Left = 411
  239.       Top = 0
  240.       Width = 15
  241.       Height = 22
  242.       Associate = FontSize
  243.       Min = 0
  244.       Position = 0
  245.       TabOrder = 2
  246.       Wrap = False
  247.     end
  248.     object ToolButton2: TToolButton
  249.       Left = 426
  250.       Top = 0
  251.       Width = 8
  252.       Caption = 'ToolButton2'
  253.       ImageIndex = 15
  254.       Style = tbsSeparator
  255.     end
  256.     object BoldButton: TToolButton
  257.       Left = 434
  258.       Top = 0
  259.       Hint = 'Fett'
  260.       ImageIndex = 8
  261.       Style = tbsCheck
  262.       OnClick = BoldButtonClick
  263.     end
  264.     object ItalicButton: TToolButton
  265.       Left = 457
  266.       Top = 0
  267.       Hint = 'Italic'
  268.       ImageIndex = 9
  269.       Style = tbsCheck
  270.       OnClick = ItalicButtonClick
  271.     end
  272.     object UnderlineButton: TToolButton
  273.       Left = 480
  274.       Top = 0
  275.       Hint = 'Unterstreichen'
  276.       ImageIndex = 10
  277.       Style = tbsCheck
  278.       OnClick = UnderlineButtonClick
  279.     end
  280.     object ToolButton16: TToolButton
  281.       Left = 503
  282.       Top = 0
  283.       Width = 8
  284.       ImageIndex = 12
  285.       Style = tbsDivider
  286.     end
  287.     object LeftAlign: TToolButton
  288.       Left = 511
  289.       Top = 0
  290.       Hint = 'Links ausrichten'
  291.       Grouped = True
  292.       ImageIndex = 11
  293.       Style = tbsCheck
  294.       OnClick = AlignButtonClick
  295.     end
  296.     object CenterAlign: TToolButton
  297.       Tag = 2
  298.       Left = 534
  299.       Top = 0
  300.       Hint = 'Zentrieren'
  301.       Grouped = True
  302.       ImageIndex = 12
  303.       Style = tbsCheck
  304.       OnClick = AlignButtonClick
  305.     end
  306.     object RightAlign: TToolButton
  307.       Tag = 1
  308.       Left = 557
  309.       Top = 0
  310.       Hint = 'Rechts ausrichten'
  311.       Grouped = True
  312.       ImageIndex = 13
  313.       Style = tbsCheck
  314.       OnClick = AlignButtonClick
  315.     end
  316.     object ToolButton20: TToolButton
  317.       Left = 580
  318.       Top = 0
  319.       Width = 8
  320.       ImageIndex = 15
  321.       Style = tbsDivider
  322.     end
  323.     object BulletsButton: TToolButton
  324.       Left = 588
  325.       Top = 0
  326.       Hint = 'Punkte|Punktemodus ausw∩┐╜hlen'
  327.       ImageIndex = 14
  328.       Style = tbsCheck
  329.       OnClick = BulletsButtonClick
  330.     end
  331.   end
  332.   object MainMenu: TMainMenu
  333.     Images = ToolbarImages
  334.     Left = 120
  335.     Top = 68
  336.     object FileMenu: TMenuItem
  337.       Caption = '&Datei'
  338.       object FileNewItem: TMenuItem
  339.         Action = FileNewCmd
  340.       end
  341.       object FileOpenItem: TMenuItem
  342.         Action = FileOpenCmd
  343.       end
  344.       object FileSaveItem: TMenuItem
  345.         Action = FileSaveCmd
  346.       end
  347.       object FileSaveAsItem: TMenuItem
  348.         Action = FileSaveAsCmd
  349.       end
  350.       object N1: TMenuItem
  351.         Caption = '-'
  352.       end
  353.       object FilePrintItem: TMenuItem
  354.         Action = FilePrintCmd
  355.       end
  356.       object N4: TMenuItem
  357.         Caption = '-'
  358.       end
  359.       object FileExitItem: TMenuItem
  360.         Action = FileExitCmd
  361.       end
  362.     end
  363.     object EditMenu: TMenuItem
  364.       Caption = '&Editieren'
  365.       object EditUndoItem: TMenuItem
  366.         Action = EditUndoCmd
  367.       end
  368.       object N2: TMenuItem
  369.         Caption = '-'
  370.       end
  371.       object EditCutItem: TMenuItem
  372.         Action = EditCutCmd
  373.       end
  374.       object EditCopyItem: TMenuItem
  375.         Action = EditCopyCmd
  376.       end
  377.       object EditPasteItem: TMenuItem
  378.         Action = EditPasteCmd
  379.       end
  380.       object N5: TMenuItem
  381.         Caption = '-'
  382.       end
  383.       object miEditFont: TMenuItem
  384.         Caption = '&Schriftart...'
  385.         OnClick = SelectFont
  386.       end
  387.     end
  388.     object LanguageMenu: TMenuItem
  389.       Caption = '&Sprache'
  390.       object LanguageEnglish: TMenuItem
  391.         Caption = '&Englisch'
  392.         Hint = 'Zur Englischen Sprache wechseln'
  393.         OnClick = SwitchLanguage
  394.       end
  395.       object LanguageFrench: TMenuItem
  396.         Caption = '&Franz∩┐╜sisch'
  397.         Hint = 'Zur Franz∩┐╜sischen Sprache wechseln'
  398.         OnClick = SwitchLanguage
  399.       end
  400.       object LanguageGerman: TMenuItem
  401.         Caption = '&Deutsch'
  402.         Hint = 'Zur Deutschen Sprache wechseln'
  403.         OnClick = SwitchLanguage
  404.       end
  405.     end
  406.     object HelpMenu: TMenuItem
  407.       Caption = '&Hilfe'
  408.       object HelpAboutItem: TMenuItem
  409.         Caption = '∩┐╜&ber...'
  410.         Hint = 'Zeigt Programminformationen'
  411.         OnClick = HelpAbout
  412.       end
  413.     end
  414.   end
  415.   object OpenDialog: TOpenDialog
  416.     Filter = 'Rich Text Dateien (*.RTF)|*.RTF|Text Files (*.TXT)|*.TXT'
  417.     Left = 56
  418.     Top = 104
  419.   end
  420.   object SaveDialog: TSaveDialog
  421.     Filter = 'Rich Text Dateien (*.RTF)|*.RTF|Text Files (*.TXT)|*.TXT'
  422.     Left = 88
  423.     Top = 104
  424.   end
  425.   object PrintDialog: TPrintDialog
  426.     Left = 120
  427.     Top = 104
  428.   end
  429.   object FontDialog1: TFontDialog
  430.     Font.Charset = DEFAULT_CHARSET
  431.     Font.Color = clWindowText
  432.     Font.Height = -11
  433.     Font.Name = 'MS Sans Serif'
  434.     Font.Style = []
  435.     MinFontSize = 0
  436.     MaxFontSize = 0
  437.     Left = 24
  438.     Top = 104
  439.   end
  440.   object ToolbarImages: TImageList
  441.     Left = 88
  442.     Top = 68
  443.     Bitmap = {
  444.       494C01010F001400040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  445.       0000000000003600000028000000400000005000000001001000000000000028
  446.       0000000000000000000000000000000000000000000000000000000000000000
  447.       0000000000000000000000000000000000000000000000000000000000000000
  448.       0000000000000000000000000000000000000000000000000000000000000000
  449.       0000000000000000000000000000000000000000000000000000000000000000
  450.       0000000000000000000000000000000000000000000000000000000000000000
  451.       0000000000000000000000000000000000000000000000000000000000000000
  452.       0000000000000000000000000000000000000000000000000000000000000000
  453.       0000000000000000000000000000000000000000000000000000000000000000
  454.       0000000000000000000000000000000000000000000000000000000000000000
  455.       0000000000000000000000000000000000000000000000000000000000000000
  456.       0000000000000000000000000000000000000000000000000000000000000000
  457.       0000000000000000000000000000000000000000000000000000000000000000
  458.       0000000000000000000000000000000000000000000000000000000000000000
  459.       0000000000000000000000000000000000000000000000000000000000000000
  460.       0000000000000000000000000000000000000000000000000000000000000000
  461.       0000000000000000000000000000000000000000000000000000000000000000
  462.       0000000000000000000000000000000000000000000000000000000000000000
  463.       0000000000000000000000000000000000000000000000000000000000000000
  464.       0000000000000000000000000000000000000000000000000000000000000000
  465.       0000000000000000000000000000000000000000000000000000000000000000
  466.       0000000000000000000000000000000000000000000000000000000000000000
  467.       0000000000000000000000000000000000000000000000000000000000000000
  468.       0000000000000000000000000000000000000000000000000000000000000000
  469.       0000000000000000000000000000000000000000000000000000000000000000
  470.       0000000000000000000000000000000000000000000000000000000000000000
  471.       0000000000000000000000000000000000000000000000000000000000000000
  472.       0000000000000000000000000000000000000000000000000000000000000000
  473.       0000000000000000000000000000000000000000000000000000000000000000
  474.       0000000000000000000000000000000000000000000000000000000000000000
  475.       0000000000000000000000000000000000000000000000000000000000000000
  476.       0000000000000000000000000000000000000000000000000000000000000000
  477.       0000000000000000000000000000000000000000000000000000000000000000
  478.       0000000000000000000000000000000000000000000000000000000000000000
  479.       0000000000000000000000000000000000000000000000000000000000000000
  480.       0000000000000000000000000000000000000000000000000000000000000000
  481.       0000000000000000000000000000000000000000000000000000000000000000
  482.       0000000000000000000000000000000000000000000000000000000000000000
  483.       0000000000000000000000000000000000000000000000000000000000000000
  484.       0000000000000000000000000000000000000000000000000000000000000000
  485.       0000000000000000000000000000000000000000000000000000000000000000
  486.       0000000000000000000000000000000000000000000000000000000000000000
  487.       0000000000000000000000000000000000000000000000000000000000000000
  488.       0000000000000000000000000000000000000000000000000000000000000000
  489.       0000000000000000000000000000000000000000000000000000000000000000
  490.       0000000000000000000000000000000000000000000000000000000000000000
  491.       0000000000000000000000000000000000000000000000000000000000000000
  492.       0000000000000000000000000000000000000000000000000000000000000000
  493.       0000000000000000000000000000000000000000000000000000000000000000
  494.       0000000000000000000000000000000000000000000000000000000000000000
  495.       0000000000000000000000000000000000000000000000000000000000000000
  496.       0000000000000000000000000000000000000000000000000000000000000000
  497.       0000000000000000000000000000000000000000000000000000000000000000
  498.       0000000000000000000000000000000000000000000000000000000000000000
  499.       0000000000000000000000000000000000000000000000000000000000000000
  500.       0000000000000000000000000000000000000000000000000000000000000000
  501.       0000000000000000000000000000000000000000000000000000000000000000
  502.       0000000000000000000000000000000000000000000000000000000000000000
  503.       0000000000000000000000000000000000000000000000000000000000000000
  504.       0000000000000000000000000000000000000000000000000000000000000000
  505.       0000000000000000000000000000000000000000000000000000000000000000
  506.       0000000000000000000000000000000000000000000000000000000000000000
  507.       0000000000000000000000000000000000000000000000000000000000000000
  508.       0000000000000000000000000000000000000000000000000000000000000000
  509.       0000000000000000000000000000000000000000000000000000000000000000
  510.       0000000000000000000000000000000000000000000000000000000000000000
  511.       0000000000000000000000000000000000000000000000000000000000000000
  512.       0000000000000000000000000000000000000000000000000000000000000000
  513.       0000000000000000000000000000000000000000000000000000000000000000
  514.       0000000000000000000000000000000000000000000000000000000000000000
  515.       0000000000000000000000000000000000000000000000000000000000000000
  516.       0000000000000000000000000000000000000000000000000000000000000000
  517.       0000000000000000000000000000000000000000000000000000000000000000
  518.       0000000000000000000000000000000000000000000000000000000000000000
  519.       0000000000000000000000000000000000000000000000000000000000000000
  520.       0000000000000000000000000000000000000000100010001000000000000000
  521.       0000000000000000000000000000000000000000000000000000000000000000
  522.       0000000000000000000000000000000000000000000000000000000000000000
  523.       0000000000000000000000000000000000000000000000000000000000000000
  524.       0000000000000000000000000000000000000000100010001000000000000000
  525.       0000000000000000000000000000000000000000000000000000000000000000
  526.       0000000000000000000000000000000000000000000000000000000000000000
  527.       0000000000000000000000000000000000000000000000000000000000000000
  528.       0000000000000000000000000000000000000000100010001000000000000000
  529.       0000000000000000000000000000000000000000000000000000000000000000
  530.       0000000000000000000000000000000000000000000000000000000000000000
  531.       0000000000000000000000000000000000000000000000000000000000000000
  532.       0000000000000000000000000000000000000000000000000000000000000000
  533.       0000000000000000000000000000000000000000000000000000000000000000
  534.       0000000000000000000000000000000000000000000000000000000000000000
  535.       0000000000000000000000000000000000000000000000000000000000000000
  536.       0000000000000000000000000000000000000000000000000000000000000000
  537.       0000000000000000000000000000000000000000000000000000000000000000
  538.       0000000000000000000000000000000000000000000000000000000000000000
  539.       0000000000000000000000000000000000000000000000000000000000000000
  540.       0000000000000000000000000000000000000000100010001000000000000000
  541.       0000000000000000000000000000000000000000000000000000000000000000
  542.       0000000000000000000000000000000000000000000000000000000000000000
  543.       0000000000000000000000000000000000000000000000000000000000000000
  544.       0000000000000000000000000000000000000000100010001000000000000000
  545.       0000000000000000000000000000000000000000000000000000000000000000
  546.       0000000000000000000000000000000000000000000000000000000000000000
  547.       0000000000000000000000000000000000000000000000000000000000000000
  548.       0000000000000000000000000000000000000000100010001000000000000000
  549.       0000000000000000000000000000000000000000000000000000000000000000
  550.       0000000000000000000000000000000000000000000000000000000000000000
  551.       0000000000000000000000000000000000000000000000000000000000000000
  552.       0000000000000000000000000000000000000000000000000000000000000000
  553.       0000000000000000000000000000000000000000000000000000000000000000
  554.       0000000000000000000000000000000000000000000000000000000000000000
  555.       0000000000000000000000000000000000000000000000000000000000000000
  556.       0000000000000000000000000000000000000000000000000000000000000000
  557.       0000000000000000000000000000000000000000000000000000000000000000
  558.       0000000000000000000000000000000000000000000000000000000000000000
  559.       0000000000000000000000000000000000000000000000000000000000000000
  560.       0000000000000000000000000000000000000000100010001000000000000000
  561.       0000000000000000000000000000000000000000000000000000000000000000
  562.       0000000000000000000000000000000000000000000000000000000000000000
  563.       0000000000000000000000000000000000000000000000000000000000000000
  564.       0000000000000000000000000000000000000000100010001000000000000000
  565.       0000000000000000000000000000000000000000000000000000000000000000
  566.       0000000000000000000000000000000000000000000000000000000000000000
  567.       0000000000000000000000000000000000000000000000000000000000000000
  568.       0000000000000000000000000000000000000000100010001000000000000000
  569.       0000000000000000000000000000000000000000000000000000000000000000
  570.       0000000000000000000000000000000000000000000000000000000000000000
  571.       0000000000000000000000000000000000000000000000000000000000000000
  572.       0000000000000000000000000000000000000000000000000000000000000000
  573.       0000000000000000000000000000000000000000000000000000000000000000
  574.       0000000000000000000000000000000000000000000000000000000000000000
  575.       0000000000000000000000000000000000000000000000000000000000000000
  576.       0000000000000000000000000000000000000000000000000000000000000000
  577.       0000000000000000000000000000000000000000000000000000000000000000
  578.       0000000000000000000000000000000000000000000000000000000000000000
  579.       0000000000000000000000000000000000000000000000000000000000000000
  580.       0000000000000000000000000000000000000000000000000000000000000000
  581.       0000000000000000000000000000000000000000000000000000000000000000
  582.       0000000000000000000000000000000000000000000000000000000000000000
  583.       0000000000000000000000000000000000000000000000000000000000000000
  584.       0000000000000000000000000000000000000000000000000000000000000000
  585.       0000000000000000000000000000000000000000000000000000000000000000
  586.       0000000000000000000000000000000000000000000000000000000000000000
  587.       0000000000000000000000000000000000000000000000000000000000000000
  588.       0000000000000000000000000000000000000000000000000000000000000000
  589.       0000000000000000000000000000000000000000000000000000000000000000
  590.       0000000000000000000000000000000000000000000000000000000000000000
  591.       0000000000000000000000000000000000000000000000000000000000000000
  592.       0000000000000000000000000000000000000000000000000000000000000000
  593.       0000000000000000000000000000000000000000000000000000000000000000
  594.       0000000000000000000000000000000000000000000000000000000000000000
  595.       0000000000000000000000000000000000000000000000000000000000000000
  596.       0000000000000000000000000000000000000000000000000000000000000000
  597.       0000000000000000000000000000000000000000000000000000000000000000
  598.       0000000000000000000000000000000000000000000000000000000000000000
  599.       0000000000000000000000000000000000000000000000000000000000000000
  600.       0000000000000000000000000000000000000000000000000000000000000000
  601.       0000000000000000000000000000000000000000000000000000000000000000
  602.       0000000000000000000000000000000000000000000000000000000000000000
  603.       0000000000000000000000000000000000000000000000000000000000000000
  604.       0000000000000000000000000000000000000000000000000000000000000000
  605.       0000000000000000000000000000000000000000000000000000000000000000
  606.       0000000000000000000000000000000000000000000000000000000000000000
  607.       0000000000000000000000000000000000000000000000000000000000000000
  608.       0000000000000000000000000000000000000000000000000000000000000000
  609.       0000000000000000000000000000000000000000000000000000000000000000
  610.       0000000000000000000000000000000000000000000000000000000000000000
  611.       0000000000000000000000000000000000000000000000000000000000000000
  612.       0000000000000000000000000000000000000000000000000000000000000000
  613.       0000000000000000000000000000000000000000000000000000000000000000
  614.       0000000000000000000000000000000000000000000000000000000000000000
  615.       0000000000000000000000000000000000000000000000000000000000000000
  616.       0000000000000000000000000000000000000000000000000000000000000000
  617.       0000000000000000000000000000000000000000000000000000000000000000
  618.       0000000000000000000000000000000000000000000000000000000000000000
  619.       0000000000000000000000000000000000000000000000000000000000000000
  620.       0000000000000000000000000000000000000000000000000000000000000000
  621.       0000000000000000000000000000000000000000000000000000000000000000
  622.       0000000000000000000000000000000000000000000000000000000000000000
  623.       0000000000000000000000000000000000000000000000000000000000000000
  624.       0000000000000000000000000000000000000000000000000000000000000000
  625.       0000000000000000000000000000000000000000000000000000000000000000
  626.       0000000000000000000000000000000000000000000000000000000000000000
  627.       0000000000000000000000000000000000000000000000000000000000000000
  628.       0000000000000000000000000000000000000000000000000000000000000000
  629.       0000000000000000000000000000000000000000000000000000000000000000
  630.       0000000000000000000000000000000000000000000000000000000000000000
  631.       0000000000000000000000000000000000000000000000000000000000000000
  632.       0000000000000000000000000000000000000000000000000000000000000000
  633.       0000000000000000000000000000000000000000000000000000000000000000
  634.       0000000000000000000000000000000000000000000000000000000000000000
  635.       0000000000000000000000000000000000000000000000000000000000000000
  636.       0000000000000000000000000000000000000000000000000000000000000000
  637.       0000000000000000000000000000000000000000000000000000000000000000
  638.       0000000000000000000000000000000000000000000000000000000000000000
  639.       0000000000000000000000000000000000000000000000000000000000000000
  640.       0000000000000000000000000000000000000000000000000000000000000000
  641.       0000000000000000000000000000000000000000000000000000000000000000
  642.       0000000000000000000000000000000000000000000000000000000000000000
  643.       0000000000000000000000000000000000000000000000000000000010001000
  644.       0000000000000000000000000000000000000000000000000000000000000000
  645.       0000000000000000000000000000000000000000000000000000000000001000
  646.       1000100010001000100010001000100010000000000000000000000000000000
  647.       0000000000000000000000000000000000000000000000000000100000000000
  648.       1000000000001000100000000000000000000000000000000000000000000000
  649.       1000100010001000100010001000100010000000000000000000000000001000
  650.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F10000000000000000000000000000000
  651.       0000000000000000000000000000000000000000000000000000100000000000
  652.       1000000010000000000010000000000000000000000000000000000000000000
  653.       1000FF7FFF7FFF7FFF7FFF7FFF7FFF7F10000000104200421042004210421000
  654.       FF7F000000000000000000000000FF7F10000000000000000000000000000000
  655.       0000000000000000000000000000000000000000000000000000100000000000
  656.       1000000010000000000010000000000000000000000000000000000000000000
  657.       1000FF7F00000000000000000000FF7F10000000004210420042104200421000
  658.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F10000000000000000000000000000000
  659.       0000000000000000000010000000000000000000000000000000000010001000
  660.       1000000010000000000010000000000000000000000000000000000000000000
  661.       1000FF7FFF7FFF7FFF7FFF7FFF7FFF7F10000000104200421042004210421000
  662.       FF7F000000000000FF7F10001000100010000000000010001000100010001000
  663.       0000000000000000000010000000000000000000000000000000000000000000
  664.       10000000100010001000000000000000000000000000FF7FFF7FFF7FFF7FFF7F
  665.       1000FF7F00000000000000000000FF7F10000000004210420042104200421000
  666.       FF7FFF7FFF7FFF7FFF7F1000FF7F100000000000000010001000100010000000
  667.       0000000000000000000000001000000000000000000000000000000000000000
  668.       10000000100000000000000000000000000000000000FF7F0000000000000000
  669.       1000FF7FFF7FFF7FFF7FFF7FFF7FFF7F10000000104200421042004210421000
  670.       FF7FFF7FFF7FFF7FFF7F10001000000000000000000010001000100000000000
  671.       0000000000000000000000001000000000000000000000000000000000000000
  672.       00000000000000000000000000000000000000000000FF7FFF7FFF7FFF7FFF7F
  673.       1000FF7F00000000FF7F10001000100010000000004210420042104200421000
  674.       1000100010001000100010000000000000000000000010001000000010000000
  675.       0000000000000000000000001000000000000000000000000000000000000000
  676.       00000000000000000000000000000000000000000000FF7F0000000000000000
  677.       1000FF7FFF7FFF7FFF7F1000FF7F100000000000104200421042004210420042
  678.       1042004210420042104200420000000000000000000010000000000000001000
  679.       1000000000000000000010000000000000000000000000000000000000000000
  680.       00000000000000000000000000000000000000000000FF7FFF7FFF7FFF7FFF7F
  681.       1000FF7FFF7FFF7FFF7F10001000000000000000004210420000000000000000
  682.       0000000000000000104210420000000000000000000000000000000000000000
  683.       0000100010001000100000000000000000000000000000000000000000000000
  684.       00000000000000000000000000000000000000000000FF7F00000000FF7F0000
  685.       1000100010001000100010000000000000000000104210420000000000000000
  686.       0000000000000000104200420000000000000000000000000000000000000000
  687.       0000000000000000000000000000000000000000000000000000000000000000
  688.       00000000000000000000000000000000000000000000FF7FFF7FFF7FFF7F0000
  689.       FF7F0000000000000000000000000000000000000042104200420000E07F0000
  690.       0000E07F00001042004210420000000000000000000000000000000000000000
  691.       0000000000000000000000000000000000000000000000000000000000000000
  692.       00000000000000000000000000000000000000000000FF7FFF7FFF7FFF7F0000
  693.       000000000000000000000000000000000000000000000000000000000000E07F
  694.       E07F000000000000000000000000000000000000000000000000000000000000
  695.       0000000000000000000000000000000000000000000000000000000000000000
  696.       0000000000000000000000000000000000000000000000000000000000000000
  697.       0000000000000000000000000000000000000000000000000000000000000000
  698.       0000000000000000000000000000000000000000000000000000000000000000
  699.       0000000000000000000000000000000000000000000000000000000000000000
  700.       0000000000000000000000000000000000000000000000000000000000000000
  701.       0000000000000000000000000000000000000000000000000000000000000000
  702.       0000000000000000000000000000000000000000000000000000000000000000
  703.       0000000000000000000000000000000000000000000000000000000000000000
  704.       0000000000000000000000000000000000000000000000000000000000000000
  705.       0000000000000000000000000000000000000000000000000000000000000000
  706.       0000000000000000000000000000000000000000000000000000000000000000
  707.       0000000000000000000000000000000000000000000000000000000000000000
  708.       0000000000000000000000000000000000000000000000000000000000000000
  709.       0000000000000000000000000000000000000000000000000000000000000000
  710.       0000000000000000000000000000000000000000000000000000000000000000
  711.       0000000000000000000000000000000000000000000000000000000000000000
  712.       0000000000000000000000000000000000000000000000420042000000000000
  713.       0000000000000000000000000042000000000000000000000000000000000000
  714.       000000000000000000000000000000000000000000000000FF7FFF7FFF7FFF7F
  715.       FF7FFF7FFF7FFF7FFF7F00000000000000000000000000420042004200420042
  716.       0042004200420042000000000000000000000000000000420042000000000000
  717.       0000000000000000000000000042000000000000000000000000000000000000
  718.       000000000000000000000000000000000000000000000000FF7FFF7FFF7FFF7F
  719.       FF7FFF7FFF7FFF7FFF7F00000000000000000000E07F00000042004200420042
  720.       0042004200420042004200000000000000000000000000420042000000000000
  721.       0000000000000000000000000042000000000000000000000000000000000000
  722.       E07FE07FE07F000000000000000000000000000000000000FF7FFF7FFF7FFF7F
  723.       FF7FFF7FFF7FFF7FFF7F00000000000000000000FF7FE07F0000004200420042
  724.       0042004200420042004200420000000000000000000000420042000000000000
  725.       0000000000000000000000000042000000000000000000000000000000000000
  726.       104210421042000000000000000000000000000000000000FF7FFF7FFF7FFF7F
  727.       FF7FFF7FFF7FFF7FFF7F00000000000000000000E07FFF7FE07F000000420042
  728.       0042004200420042004200420042000000000000000000420042004200420042
  729.       0042004200420042004200420042000000000000000000000000000000000000
  730.       000000000000000000000000000000000000000000000000FF7FFF7FFF7FFF7F
  731.       FF7FFF7FFF7FFF7FFF7F00000000000000000000FF7FE07FFF7FE07F00000000
  732.       0000000000000000000000000000000000000000000000420042000000000000
  733.       0000000000000000000000420042000000000000000000000000000000000000
  734.       000000000000000000000000000000000000000000000000FF7FFF7FFF7FFF7F
  735.       FF7FFF7FFF7FFF7FFF7F00000000000000000000E07FFF7FE07FFF7FE07FFF7F
  736.       E07FFF7FE07F0000000000000000000000000000000000420000000000000000
  737.       0000000000000000000000000042000000000000000000000000000000000000
  738.       000000000000000000000000000000000000000000000000FF7FFF7FFF7FFF7F
  739.       FF7FFF7FFF7FFF7FFF7F00000000000000000000FF7FE07FFF7FE07FFF7FE07F
  740.       FF7FE07FFF7F0000000000000000000000000000000000420000000000000000
  741.       000000000000000000000000004200000000000000000000FF7FFF7FFF7FFF7F
  742.       FF7FFF7FFF7FFF7F00000000000000000000000000000000FF7FFF7FFF7FFF7F
  743.       FF7FFF7FFF7FFF7FFF7F00000000000000000000E07FFF7FE07F000000000000
  744.       0000000000000000000000000000000000000000000000420000000000000000
  745.       0000000000000000000000000042000000000000000000000000FF7F00000000
  746.       000000000000FF7F00000000000000000000000000000000FF7FFF7FFF7FFF7F
  747.       FF7FFF7F00000000000000000000000000000000000000000000000000000000
  748.       0000000000000000000000000000000000000000000000420000000000000000
  749.       0000000000000000000000000042000000000000000000000000FF7FFF7FFF7F
  750.       FF7FFF7FFF7FFF7FFF7F0000000000000000000000000000FF7FFF7FFF7FFF7F
  751.       FF7FFF7F0000FF7F000000000000000000000000000000000000000000000000
  752.       0000000000000000000000000000000000000000000000420000000000000000
  753.       00000000000000000000000000000000000000000000000000000000FF7F0000
  754.       0000000000000000FF7F0000000000000000000000000000FF7FFF7FFF7FFF7F
  755.       FF7FFF7F00000000000000000000000000000000000000000000000000000000
  756.       0000000000000000000000000000000000000000000000420000000000000000
  757.       00000000000000000000000000000000000000000000000000000000FF7FFF7F
  758.       FF7FFF7FFF7FFF7FFF7FFF7F0000000000000000000000000000000000000000
  759.       0000000000000000000000000000000000000000000000000000000000000000
  760.       0000000000000000000000000000000000000000000000000000000000000000
  761.       0000000000000000000000000000000000000000000000000000000000000000
  762.       0000000000000000000000000000000000000000000000000000000000000000
  763.       0000000000000000000000000000000000000000000000000000000000000000
  764.       0000000000000000000000000000000000000000000000000000000000000000
  765.       0000000000000000000000000000000000000000000000000000000000000000
  766.       000000000000000000000000000000000000424D3E000000000000003E000000
  767.       2800000040000000500000000100010000000000800200000000000000000000
  768.       000000000000000000000000FFFFFF0000000000000000000000000000000000
  769.       0000000000000000000000000000000000000000000000000000000000000000
  770.       0000000000000000000000000000000000000000000000000000000000000000
  771.       0000000000000000000000000000000000000000000000000000000000000000
  772.       00000000000000000000000000000000FFFFFFFFFFFF0000FFFFFFFFFFFF0000
  773.       FFFFFFFF8FFF0000C007C0078C030000FFFFFFFF8FFF0000F83FF807FFFF0000
  774.       FFFFFFFFFFFF0000C007C0078FFF0000FFFFFFFF8C030000F01FF8078FFF0000
  775.       FFFFFFFFFFFF0000C007C007FFFF0000FFFFFFFF8FFF0000F83FF8078C030000
  776.       FFFFFFFF8FFF0000FFFFFFFFFFFF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
  777.       FFFFFFFFE00FFFFFFFFFFFFFFFFFC007F00F81FFF83FFFFFF8C7E3FFF39FC03F
  778.       F8C7F1FFF39FFFFFF8C7F8FFF39FC007F80FFC7FF39FFFFFF8C7FE3FF39FC03F
  779.       F8C7FF1FF39FFFFFF8C7FF8FF39FC007F00FFF03E10FFFFFFFFFFFFFFFFFC03F
  780.       FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9FFFFFFFC00
  781.       FFFFF6CFFE008000FFFFF6B7FE000000FFFFF6B7FE000000FFF7F8B780000000
  782.       C1F7FE8F80000001C3FBFE3F80000003C7FBFF7F80000003CBFBFE3F80010003
  783.       DCF7FEBF80030003FF0FFC9F80070FC3FFFFFDDF807F0003FFFFFDDF80FF8007
  784.       FFFFFDDF81FFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC001C007
  785.       C007001F8031BFEBC007000F80310005C007000780317E31C007000380017E35
  786.       C007000180010006C007000080017FEAC007001F8FF18014C007001F8FF1C00A
  787.       C007001F8FF1E001C0078FF18FF1E007C00FFFF98FF1F007C01FFF758FF5F003
  788.       C03FFF8F8001F803FFFFFFFFFFFFFFFF00000000000000000000000000000000
  789.       000000000000}
  790.   end
  791.   object ActionList1: TActionList
  792.     Images = ToolbarImages
  793.     Left = 24
  794.     Top = 68
  795.     object FileNewCmd: TAction
  796.       Category = 'File'
  797.       Caption = '&Neu'
  798.       Hint = 'Neue Datei erstellen'
  799.       ImageIndex = 0
  800.       ShortCut = 16462
  801.       OnExecute = FileNew
  802.     end
  803.     object FileOpenCmd: TAction
  804.       Category = 'File'
  805.       Caption = '∩┐╜ffn&en...'
  806.       Hint = 'Datei ∩┐╜ffnen'
  807.       ImageIndex = 1
  808.       ShortCut = 16463
  809.       OnExecute = FileOpen
  810.     end
  811.     object FileSaveCmd: TAction
  812.       Category = 'File'
  813.       Caption = '&Speichern'
  814.       Hint = 'Datei speichern'
  815.       ImageIndex = 2
  816.       ShortCut = 16467
  817.       OnExecute = FileSave
  818.     end
  819.     object FilePrintCmd: TAction
  820.       Category = 'File'
  821.       Caption = 'D&rucken'
  822.       Hint = 'Datei drucken'
  823.       ImageIndex = 3
  824.       ShortCut = 16464
  825.       OnExecute = FilePrint
  826.     end
  827.     object FileExitCmd: TAction
  828.       Category = 'File'
  829.       Caption = 'S&chlie∩┐╜en'
  830.       Hint = 'Applikation beenden'
  831.       ShortCut = 32856
  832.       OnExecute = FileExit
  833.     end
  834.     object FileSaveAsCmd: TAction
  835.       Category = 'File'
  836.       Caption = 'Speichern &unter...'
  837.       Hint = 'Datei unter neuem Namen speichern'
  838.       OnExecute = FileSaveAs
  839.     end
  840.   end
  841.   object ActionList2: TActionList
  842.     Images = ToolbarImages
  843.     OnUpdate = ActionList2Update
  844.     Left = 56
  845.     Top = 68
  846.     object EditUndoCmd: TAction
  847.       Category = 'Edit'
  848.       Caption = '&R∩┐╜ckg∩┐╜ngig'
  849.       Hint = 'Letzte Aktion r∩┐╜ckg∩┐╜ngig machen'
  850.       ImageIndex = 4
  851.       ShortCut = 16474
  852.       OnExecute = EditUndo
  853.     end
  854.     object EditCutCmd: TAction
  855.       Category = 'Edit'
  856.       Caption = '&Ausschneiden'
  857.       Hint = 'Selektiertes ausschneiden'
  858.       ImageIndex = 5
  859.       ShortCut = 16472
  860.       OnExecute = EditCut
  861.     end
  862.     object EditCopyCmd: TAction
  863.       Category = 'Edit'
  864.       Caption = '&Kopieren'
  865.       Hint = 'Selektiertes kopieren'
  866.       ImageIndex = 6
  867.       ShortCut = 16451
  868.       OnExecute = EditCopy
  869.     end
  870.     object EditPasteCmd: TAction
  871.       Category = 'Edit'
  872.       Caption = 'E&inf∩┐╜gen'
  873.       Hint = 'Aus Speicher einf∩┐╜gen'
  874.       ImageIndex = 7
  875.       ShortCut = 16470
  876.       OnExecute = EditPaste
  877.     end
  878.     object EditFontCmd: TAction
  879.       Category = 'Edit'
  880.       Caption = '&Schriftart...'
  881.       OnExecute = SelectFont
  882.     end
  883.   end
  884. end
  885.