Show
Ignore:
Timestamp:
10/09/08 09:30:57 (3 months ago)
Author:
FM
Message:

revised richtext headers

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • wxWidgets/trunk/interface/wx/richtext/richtextxml.h

    r55912 r56199  
    1111 
    1212    A handler for loading and saving content in an XML format specific 
    13     to wxRichTextBuffer. You can either add the handler to the buffer 
    14     and load and save through the buffer or control API, or you can 
    15     create an instance of the handler on the stack and call its 
    16     functions directly. 
     13    to wxRichTextBuffer. 
     14 
     15    You can either add the handler to the buffer and load and save through 
     16    the buffer or control API, or you can create an instance of the handler 
     17    on the stack and call its functions directly. 
     18 
     19 
     20    @section richtextxmlhandler_flags Handler flags 
     21 
     22    The following flags can be used with this handler, via the handler's SetFlags() 
     23    function or the buffer or control's SetHandlerFlags() function: 
     24 
     25    - wxRICHTEXT_HANDLER_INCLUDE_STYLESHEET 
     26      Include the style sheet in loading and saving operations. 
     27 
    1728 
    1829    @library{wxrichtext} 
     
    2334public: 
    2435    /** 
    25         ,  wxString&@e ext = wxT("xml"), @b int@e type = wxRICHTEXT_TYPE_XML) 
    2636        Constructor. 
    2737    */ 
    28     wxRichTextXMLHandler() const; 
     38    wxRichTextXMLHandler(const wxString& name = wxT("XML"), 
     39                         const wxString& ext = wxT("xml"), 
     40                         int type = wxRICHTEXT_TYPE_XML) const; 
    2941 
    3042    /**