Click here to Skip to main content
15,881,559 members
Articles / Programming Languages / C#

FireEdit

Rate me:
Please Sign up or sign in to vote.
4.66/5 (15 votes)
4 Apr 2006CPOL2 min read 134.9K   1.6K   75  
FireEdit - a small code editor with plugins support
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;

namespace FireEdit.Docking
{
    public class FireEditOutputWindow : FireEditDockableWindow
    {
        private RichTextBox _RichTextBox = null;

        public FireEditOutputWindow()
        {
            this.DockableAreas = Fireball.Docking.DockAreas.DockLeft
            | Fireball.Docking.DockAreas.DockRight
            | Fireball.Docking.DockAreas.DockTop
            | Fireball.Docking.DockAreas.Float
            | Fireball.Docking.DockAreas.DockBottom;

            _RichTextBox = new RichTextBox();

            this.Controls.Add(_RichTextBox);

            _RichTextBox.Dock = DockStyle.Fill;

            _RichTextBox.Font = new System.Drawing.Font("Lucida Console", 10);


            this.Text = "Output Window";
        }

        public void AppendOutput(string output)
        {
            _RichTextBox.AppendText(output);

            _RichTextBox.SelectionStart = _RichTextBox.TextLength;
        }

        public void Clear()
        {
            _RichTextBox.Text = string.Empty;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions