5,317,598 members and growing! (28,099 online)
Email Password   helpLost your password?
Desktop Development » Edit Controls » General     Advanced

Crystal Edit - syntax coloring text editor

By Andrei Stcherbatchenko

A set of classes that provide an expandable framework for the syntax coloring text editor.
VC6, C++Windows, NT4, MFC, Visual Studio, Dev

Posted: 30 Jan 2000
Updated: 30 Jan 2000
Views: 289,007
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
128 votes for this Article.
Popularity: 10.03 Rating: 4.76 out of 5
1 vote, 1.6%
1
1 vote, 1.6%
2
2 votes, 3.1%
3
2 votes, 3.1%
4
58 votes, 90.6%
5
  • Download demo project - 116 Kb
  • Download source files - 55 Kb
  • Sample Image - crysedit.gif

    The package consists of three main classes:
    • CCrystalTextBuffer class is responsible for storing lines, loading and saving text to a file. To simplify Undo/Redo command implementations, every editing operation is split into a sequence of 'insert text' and 'delete text' actions. Accordingly, CView-derived classes are only intended to react only on this primitive operations.

    • CCrystalTextView class is the framework for text viewing window. It derives from CView, and it provides text painting code, overridable functions for syntax highlighting, different kinds of text selections, cursor movements, Find common dialog etc. However, it's not allowed to perform any changes to the text.

      CCrystalTextView-derived views are usually used with CCrystalTextBuffer object. Once such a view is connected to the CCrystalTextBuffer object, it is capable to track changes made to the text. (Obviously, any number of views can be connected to a single CCrystalTextBuffer object at the same time. This is useful, when we need to use the editor in the dynamic splitter as shown on the figure above).

    • CCrystalEditView class is derived from CCrystalTextView class. Unlike its ansector, which is only able to display a text and update the view when it is needed, it has functions to perform all sorts of editing, including drag-and-drop and Replace dialog. Note, that the view does not make the changes in the text directly, instead, it transforms the command into a sequence of primitive operations described above, and delegates them to the CCrystalTextBuffer object. Once the changes are made, the CCrystalTextBuffer object updates all views connected to it.

    Usually, CCrystalTextBuffer exists within the CDocument object. You must provide a way to connect views to the object (the best place for it is CView::OnInitialUpdate handler). In most cases, you will also need to override SetModified method to keep 'dirty' flag of the document up-to-date. Consider the following sample code:
    class CSampleDoc : public CDocument
    {
    // code omitted
    
    
    // Attributes
    
    public:
        class CSampleTextBuffer : public CCrystalTextBuffer
        {
        private:
            CSampleDoc *m_pOwnerDoc;
        public:
            CSampleTextBuffer(CSampleDoc *pDoc) { m_pOwnerDoc = pDoc; };
    
            virtual void SetModified(BOOL bModified = TRUE)
                { m_pOwnerDoc->SetModifiedFlag(bModified); };
        };
    
        CSampleTextBuffer m_xTextBuffer;
    };

    CCrystalTextView objects can exist without a buffer class, in that case it must provide its own storage for lines (binded to another storage object, for example) and mechanisms for updating the view when text content changes. Whether are you using CCrystalTextBuffer object or not, you will always need to derive your class from CCrystalTextView.

    CCrystalTextView cannot exist without CCrystalTextBuffer object.

    Using CCrystalTextView or CCrystalEditView with buffer class

    To use CCrystalEditView (or CCrystalTextView) with the CCrystalTextBuffer object, you must go through the following steps:
    1. Derive your class from CCrystalEditView (or CCrystalTextView).
    2. Override LocateTextBuffer member function. After that, your view class declaration will look like this:
      class CSampleView : public CCrystalEditView
      {
          // code omitted
      
      
      protected:
          virtual CCrystalTextBuffer *LocateTextBuffer();
      }
      

      and the implementation will look like this:

      CCrystalTextBuffer *CSampleView::LocateTextBuffer()
      {
          CSampleDoc *pDoc = (CSampleDoc *) GetDocument();
          return &pDoc->m_xTextBuffer;
      }
      
    That's all! From this point, view and buffer objects will work together. To load text from the file, simply call LoadFromFile method of CCrystalTextBuffer class. To save the text to file, call SaveToFile. Remember, you must call InitNew or LoadFromFile member function before using the object; and FreeAll function before deleting it.

    Parsing and syntax coloring

    All parsing is concentrated in a single method of CCrystalTextView class, declared as follows:

    virtual DWORD ParseLine(DWORD dwCookie, int nLineIndex,
                            TEXTBLOCK *pBuf, int &nActualItems);
    
    struct TEXTBLOCK
    {
        int  m_nCharPos;      // Offset from beginning of the line
    
        int  m_nColorIndex;   // Type of the block being defined: COLORINDEX_NORMALTEXT,
    
                              //  COLORINDEX_KEYWORD, COLORINDEX_COMMENT, etc.
    
    };
    
    This method should parse the line specified by its zero-based number (nLineIndex) and split it into the blocks of text. Each block is provided with the character position and its color.
    For the sake of an efficiency, the internal view implementation preserves the result of parsing each line. dwCookie parameter means the result of parsing the previous line. Really, this is the minimum of the information, needed to restart the parser from the indicated line. For example, when parsing C++ code, you'll have to pass the following set of flags as dwCookie parameter:
    • Extended comment (/* */) flag. This is absolutely needed because C++ has multiple-line comments.
    • Continuous double-slash comment;
    • Continuous preprocessor directive;
    • Continuous string constant;
    • Continuous character constant.

    To understand why we need last four cases, consider the following C++ code snippet:

    // This is the continuous double-slash comment.\
    
        you see, it is really continuous !
    #define MESSAGE "And this is continuous preprocessor directive.\n"\
        "And this is its second line."

    This approach can minimize amount of information, that we need to keep within the view object. Actually, we must preserve only the information that must be passed from one line to another. Moreover, to increase parsing speed, sometimes ParseLine member is called with NULL as pBuf parameter. In that case, the function is called only to calculate the cookie, and that can be made much faster.

    For more information, look in the demo project, which includes parser for the C++ language.

    Using CCrystalTextView without buffer class

    In that case, we are using it just as text viewer, and we need to provide the storage for lines. Suppose, we have an array of strings in the CDocument object. The view must take the text from this array. The view class declaration will look like this:
    protected:
        virtual int GetLineCount();
        virtual int GetLineLength(int nLineIndex);
        virtual LPCTSTR GetLineChars(int nLineIndex);
    

    And implementation will look like this:

    int CSampleView::GetLineCount()
    {
        // Please note that we must always return at least 1 line.
    
        // Even empty text has a single *empty* line!
    
        CSampleDoc *pDoc = (CSampleDoc *) GetDocument();
        return pDoc->m_strarrLines.GetSize();
    }
    
    int CSampleView::GetLineLength(int nLineIndex)
    {
        CSampleDoc *pDoc = (CSampleDoc *) GetDocument();
        return pDoc->m_strarrLines[nLineIndex].GetLength();
    }
    
    LPCTSTR CSampleView::GetLineChars(int nLineIndex)
    {
        CSampleDoc *pDoc = (CSampleDoc *) GetDocument();
        return pDoc->m_strarrLines[nLineIndex];
    }

    Known drawbacks and limitations

    • Only fixed fonts are supported.
    • No support for bold/italic on syntax elements (Delphi style)
    • No 'word wrap'. (Since the editor was primarily designed as a code editor, is this feature really needed?)
    • No support for column selection.

    If you decide to use this code

    You are free to use or modify this code to the following restrictions:
    • You must acknowledge me somewhere in your about box, simple "Parts of code by.." will be enough. If you cannot (or don't want to) mention my name, contact me personally. At least, I'm flexible.
    • Do not remove copyright notices from the source and header files.
    • Do not publish any part of this code or article on other websites.
    • I reserve to myself exclusive right to update this page, as well as provided source code and usage sample. Please publish your modification and additions on adjacent pages. In other words, do not blame me for other's bugs.

    The demo project includes parsing methods and the keyword set for C/C++ language. It was originally built using MS Developer Studio 5.0 SP3.

    Posted at CodeProject.com with permission of Andrei Stcherbatchenko.

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here

    About the Author

    Andrei Stcherbatchenko



    Location: Germany Germany

    Other popular Edit Controls articles:

    Article Top
    Sign Up to vote for this article
    You must Sign In to use this message board.
    FAQ FAQ Noise ToleranceSearch Search Messages 
     Layout  Per page   
     Msgs 1 to 25 of 140 (Total in Forum: 140) (Refresh)FirstPrevNext
    Subject  Author Date 
    GeneralA bug-- Display chinesememberTony Chan4:36 9 Nov '07  
    GeneralEdit Control to hold imagesmemberminad_7863:07 12 Mar '07  
    GeneralSome question about GetLineChars()memberxyz999518:39 14 Aug '06  
    QuestionCan I use the Crystal Edit for Commercial Purpose ?memberTsoTakChiu16:54 26 Feb '06  
    GeneralCompiling in VC7membercpmce4:56 20 Jan '06  
    GeneralRe: Compiling in VC7memberShahbaz Ali5:43 1 Feb '06  
    QuestionHow to use Crystal Edit in Docking window without document?memberchihyu0:46 20 Dec '05  
    GeneralHow to implement wrapline feature?memberSongLaiYun20:48 29 Oct '05  
    Generalhow to support column selectionmemberjackejiang5:22 9 Dec '04  
    GeneralOCX version?memberavins_752:23 24 Oct '04  
    Generalthe limit of the length?sussAnonymous22:10 6 Sep '04  
    GeneralHere's Code to use as a ControlmemberCurtis Faith14:35 13 Aug '04  
    GeneralLiscence policymemberKoundinya3:37 6 Jul '04  
    GeneralNon-editable textmemberrichiebabes8:26 1 Jun '04  
    GeneralRe: Non-editable textmemberrichiebabes8:02 2 Jun '04  
    GeneralRe: Non-editable textmembersabrown1004:52 8 Dec '07  
    GeneralProblem in the Israel HP Laptopmemberrshetty20:36 27 May '04  
    GeneralCannot CompilememberLachlan McCutcheon4:19 8 May '04  
    GeneralA Bug---- When Insert into Tab View(MDI View like .Net IDE)memberGE - NBGYF7:24 25 Apr '04  
    GeneralTAB bugmemberktalex22:09 20 Apr '04  
    GeneralRe: TAB bugmemberGE - NBGYF20:03 16 May '04  
    GeneralProgrammatically inserting textmemberDoug Matulis10:10 12 Feb '04  
    GeneralRe: Programmatically inserting textsussfrancisco _lozano_ovejero2:39 24 Jul '04  
    GeneralDisplaying bugs when change fontmemberligs200122:30 4 Feb '04  
    GeneralRe: Displaying bugs when change fontmemberJean-Michel LE FOL6:46 10 Mar '04  

    General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

    PermaLink | Privacy | Terms of Use
    Last Updated: 30 Jan 2000
    Editor: Chris Maunder
    Copyright 2000 by Andrei Stcherbatchenko
    Everything else Copyright © CodeProject, 1999-2008
    Web10 | Advertise on the Code Project