Click here to Skip to main content
15,881,204 members
Articles / Desktop Programming / MFC
Article

CAutoRichEditCtrl - automate rich edit formatting and RTF handling

Rate me:
Please Sign up or sign in to vote.
4.86/5 (24 votes)
11 Feb 2003CPOL4 min read 282.8K   7.7K   84   50
A CRichEditCtrl derived class to handle formatting quickly.
  • Download demo project - 40 Kb
  • Download source - 6 Kb
  • While MFC does provide a rich edit control, it does not provide a quick and easy way to handle formatting and RTF codes. CAutoRichEditCtrl is a derivative of CRichEditCtrl. This new class adds several functions that allow you to add formatting quickly. It also provides two functions to let you retrieve the formatted text (RTF) in a CString, and to insert an RTF CString into the control.

    To use CAutoRichEditCtrl in a dialog box, follow these instructions.

    1. Insert a normal rich edit control in your dialog box.
    2. Using ClassWizard, attach a control variable of type CRichEditCtrl to your control.
    3. Copy AutoRichEditCtrl.cpp and AutoRichEditCtrl.h (download below) to your source directory, and #include "AutoRichEditCtrl.h" in your dialog's header.
    4. In your dialog's header, change CRichEditCtrl to CAutoRichEditCtrl.
    5. In your application's InitInstance (CMyApp::InitInstance()), include a call to AfxInitRichEdit() - this is needed for all rich edit controls.
    6. Add interface elements that use CAutoRichEditCtrls's functions - see below.

    Once you've inserted the control into your project, you can add toolbar buttons, menu commands, or other elements to call the following functions:

    • GetRTF() - returns a CString holding the text of the control (including the RTF formatting code).
    • SetRTF(CString sRTF) - parameter sRTF is an RTF formatted CString. Calling this will insert and format the string. If a CString is passed that does not have valid RTF code, the control will be cleared.

    • SelectionIsBold() - returns true if the current selection is bold, otherwise false.
    • SelectionIsItalic()- returns true if the current selection is italic, else false.
    • SelectionIsUnderlined() - returns true if the current selection is underlined, else false.

    • SetSelectionBold() - sets the current selection to be bold (Note: this will actually act like pressing the Bold toolbar button in Wordpad - if the text is not bold, it will become bold; if the text is already bold, it will remove the bold formatting; if part of the selection is bold, the entire selection will become bold; if there is not anything selected, the format is changed to bold so when the user starts typing, it will be in bold).
    • SetSelectionItalic() - sets the current selection to italic (see note in SetSelectionBold()).
    • SetSelectionUnderlined() - sets the current selection to underlined (see note in SetSelectionBold()).

    • SetParagraphCenter() - sets the current paragraph to be centered.
    • SetParagraphLeft() - sets the current paragraph to be left justified.
    • SetParagraphRight() - sets the current paragraph to be right justified.

    • ParagraphIsCentered() - returns true if the current paragraph is centered, else false.
    • ParagraphIsLeft() - returns true if the current paragraph is left justified, else false.
    • ParagraphIsRight() - returns true if the current paragraph is right justified, else false.

    • SetParagraphBulleted() - sets the bullet style (see note in SetSelectionBold()).
    • ParagraphIsBulleted() - returns true if the current selection is bulleted, else false.

    • SelectColor() - displays a color selection dialog box and sets the selection to the chosen color (if OK is pressed).

    • SetFontName(CString sFontName) - sets the selected font to sFontName.
    • SetFontSize(int nPointSize) - sets the selection to nPointSize.

    • GetSelectionFontName() - returns a CString holding the selection's font name.
    • GetSelectionFontSize() - returns a long holding the selection's font size.

    • GetSystemFonts(CStringArray &saFontList) - saFontList will hold an array of all true-type fonts available on the system.

    • GetCharFormat() - returns the CHARFORMAT structure of the current selection.

    To see examples of these functions, download the demo app. The source code that shows examples of how to use each function is located in CRichEdDlg::OnExecute().

    A quick example here: if you want a rich edit control in a dialog to use formatting, you may create a toolbar with the typical bold, italic, and underline buttons. Just use ClassWizard to add a function for when the user presses the button (like OnBold), then call the right function (like m_richedit.SetSelectionBold();, assuming your rich edit control is named m_richedit). That's all it takes to set up the formatting correctly.

    When you want to save the text, just do a CString sText = m_richedit.GetRTF();, then save the string however you like - when you call m_richedit.SetRTF(sText); with the same string, the formatting will be just like it was when you saved it.

    Two thank you's are in order for Zafir Anjum and Girish Bharadwaj. The code that streams the RTF string into the control was taken from Zafir's article, Inserting an RTF string using StreamIn. The code that retrieves all the fonts on the system was derived from Girish's article, Owner Drawn Font Selection ComboBox.

    You are free to use/modify this source code for whatever you like. If you do make any modifications or additions, I would appreciate it you let me know (or better, let everybody know by posting a comment). Of course, this control is provided as is, and no warranty is expressed or implied as to its fitness for any particular purpose.

    Hope this helps you out!

    License

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


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

    Comments and Discussions

     
    QuestionGood Sample ! Pin
    wy73729-Oct-13 18:55
    wy73729-Oct-13 18:55 
    QuestionIs is possible to set default font size colour etc to an edit box Pin
    Candleman30-Oct-12 22:08
    Candleman30-Oct-12 22:08 
    QuestionCAutorichedit control how to set defaults for edit box using CAutoRichEdit Pin
    Candleman13-Oct-12 20:55
    Candleman13-Oct-12 20:55 
    GeneralMy vote of 5 Pin
    CTI Guru19-Apr-11 11:09
    CTI Guru19-Apr-11 11:09 
    GeneralThank you! Pin
    CTI Guru19-Apr-11 11:07
    CTI Guru19-Apr-11 11:07 
    Generalhi Pin
    timidfool16-Sep-10 22:13
    timidfool16-Sep-10 22:13 
    QuestionUnicode suported?? Pin
    Arrin29-Oct-09 23:17
    Arrin29-Oct-09 23:17 
    QuestionCan it work with UNICODE [modified] Pin
    RandyS12-Feb-07 4:17
    RandyS12-Feb-07 4:17 
    Generaltables / tab positions Pin
    andrewtruckle28-Apr-06 10:57
    andrewtruckle28-Apr-06 10:57 
    can this class support tables and tab stops, font colouring etc etc etc?

    Andrew
    GeneralDLL Pin
    rdba9-Mar-04 6:59
    rdba9-Mar-04 6:59 
    GeneralProblem in win98 Pin
    CodeStylite29-Jan-04 15:50
    CodeStylite29-Jan-04 15:50 
    Questionwho can tell me how to set image as richedit background? Pin
    okboy26-Dec-03 4:42
    okboy26-Dec-03 4:42 
    GeneralCatching Tab Presses Pin
    Joseph Franklin S11-Dec-03 0:43
    professionalJoseph Franklin S11-Dec-03 0:43 
    GeneralRe: Catching Tab Presses Pin
    Jason Morris20-Dec-04 18:18
    Jason Morris20-Dec-04 18:18 
    GeneralCAutoRichEditCtrl and OLE objects Pin
    darkwise9-Nov-03 22:43
    darkwise9-Nov-03 22:43 
    Generalto remove white space after "." Pin
    ramya8314-Oct-03 22:17
    ramya8314-Oct-03 22:17 
    GeneralAdding Text In Design Time Pin
    orb6k3-Oct-03 14:22
    orb6k3-Oct-03 14:22 
    Generalabc Pin
    Anonymous26-Aug-03 18:48
    Anonymous26-Aug-03 18:48 
    Generalstarange error Pin
    Irek Zielinski14-Aug-03 1:30
    Irek Zielinski14-Aug-03 1:30 
    GeneralRe: starange error <Bug with Bulleting> Pin
    naveed21-Jan-04 7:06
    naveed21-Jan-04 7:06 
    GeneralRe: starange error &lt;Bug with Bulleting&gt; Pin
    Member 33728-May-04 12:22
    Member 33728-May-04 12:22 
    Generalis it posible by u?... Pin
    Balaji200028-May-03 4:22
    Balaji200028-May-03 4:22 
    Generalevaluation of fields in RTF files Pin
    luedi28-Apr-03 23:07
    luedi28-Apr-03 23:07 
    GeneralAuthor information and bitmaps Pin
    Ole Setnes19-Feb-03 2:49
    Ole Setnes19-Feb-03 2:49 
    General12 Feb 03 update Pin
    Nicolas Bonamy13-Feb-03 2:11
    Nicolas Bonamy13-Feb-03 2:11 

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.