]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/richtext/richtextprint.h
many ifacecheck automatic fixes + some access-specifier manual fix
[wxWidgets.git] / interface / wx / richtext / richtextprint.h
index 1eb02d7c9d8270b7b7b28790a619e82dac16eb61..df41065a0ea13850c6f1bc548f114b77c9e50303 100644 (file)
     which will
     be substituted for the actual values during printing and preview.
 
-     @DATE@: the current date.
-     @PAGESCNT@: the total number of pages.
-     @PAGENUM@: the current page number.
-     @TIME@: the current time.
-     @TITLE@: the title of the document, as passed to the wxRichTextPrinting or
+     @@DATE@: the current date.
+     @@PAGESCNT@: the total number of pages.
+     @@PAGENUM@: the current page number.
+     @@TIME@: the current time.
+     @@TITLE@: the title of the document, as passed to the wxRichTextPrinting or
     wxRichTextLayout constructor.
 
     @library{wxrichtext}
@@ -201,17 +201,17 @@ public:
     /**
         Returns @true if the given page exists in the printout.
     */
-    bool HasPage(int page);
+    virtual bool HasPage(int page);
 
     /**
         Prepares for printing, laying out the buffer and calculating pagination.
     */
-    void OnPreparePrinting();
+    virtual void OnPreparePrinting();
 
     /**
         Does the actual printing for this page.
     */
-    bool OnPrintPage(int page);
+    virtual bool OnPrintPage(int page);
 
     /**
         Sets the header and footer data associated with the printout.