1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: html printing classes
4 // Author: Vaclav Slavik
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_HTMPRINT_H_
12 #define _WX_HTMPRINT_H_
15 #pragma interface "htmprint.h"
20 #if wxUSE_HTML & wxUSE_PRINTING_ARCHITECTURE
22 #include "wx/html/htmlcell.h"
23 #include "wx/html/winpars.h"
26 #include "wx/printdlg.h"
28 //--------------------------------------------------------------------------------
30 // This class is capable of rendering HTML into specified
32 //--------------------------------------------------------------------------------
34 class WXDLLEXPORT wxHtmlDCRenderer
: public wxObject
40 // Following 3 methods *must* be called before any call to Render:
42 // Asign DC to this render
43 void SetDC(wxDC
*dc
, double pixel_scale
= 1.0);
45 // Sets size of output rectangle, in pixels. Note that you *can't* change
46 // width of the rectangle between calls to Render! (You can freely change height.)
47 void SetSize(int width
, int height
);
49 // Sets the text to be displayed.
50 // Basepath is base directory (html string would be stored there if it was in
51 // file). It is used to determine path for loading images, for example.
52 // isdir is FALSE if basepath is filename, TRUE if it is directory name
53 // (see wxFileSystem for detailed explanation)
54 void SetHtmlText(const wxString
& html
, const wxString
& basepath
= wxEmptyString
, bool isdir
= TRUE
);
56 // [x,y] is position of upper-left corner of printing rectangle (see SetSize)
57 // from is y-coordinate of the very first visible cell
58 // Returned value is y coordinate of first cell than didn't fit onto page.
59 // Use this value as 'from' in next call to Render in order to print multiple pages
61 // If dont_render is TRUE then nothing is rendered into DC and it only counts
62 // pixels and return y coord of the next page
64 // CAUTION! Render() changes DC's user scale and does NOT restore it!
65 int Render(int x
, int y
, int from
= 0, int dont_render
= FALSE
);
67 // returns total height of the html document
68 // (compare Render's return value with this)
73 wxHtmlWinParser
*m_Parser
;
75 wxHtmlContainerCell
*m_Cells
;
76 int m_MaxWidth
, m_Width
, m_Height
;
91 //--------------------------------------------------------------------------------
93 // This class is derived from standard wxWindows printout class
94 // and is used to print HTML documents.
95 //--------------------------------------------------------------------------------
98 class WXDLLEXPORT wxHtmlPrintout
: public wxPrintout
101 wxHtmlPrintout(const wxString
& title
= "Printout");
104 void SetHtmlText(const wxString
& html
, const wxString
&basepath
= wxEmptyString
, bool isdir
= TRUE
);
105 // prepares the class for printing this html document.
106 // Must be called before using the class, in fact just after constructor
108 // basepath is base directory (html string would be stored there if it was in
109 // file). It is used to determine path for loading images, for example.
110 // isdir is FALSE if basepath is filename, TRUE if it is directory name
111 // (see wxFileSystem for detailed explanation)
113 void SetHtmlFile(const wxString
&htmlfile
);
114 // same as SetHtmlText except that it takes regular file as the parameter
116 void SetHeader(const wxString
& header
, int pg
= wxPAGE_ALL
);
117 void SetFooter(const wxString
& footer
, int pg
= wxPAGE_ALL
);
118 // sets header/footer for the document. The argument is interpreted as HTML document.
119 // You can use macros in it:
120 // @PAGENUM@ is replaced by page number
121 // @PAGESCNT@ is replaced by total number of pages
123 // pg is one of wxPAGE_ODD, wxPAGE_EVEN and wx_PAGE_ALL constants.
124 // You can set different header/footer for odd and even pages
126 void SetMargins(float top
= 25.2, float bottom
= 25.2, float left
= 25.2, float right
= 25.2,
128 // sets margins in milimeters. Defaults to 1 inch for margins and 0.5cm for space
129 // between text and header and/or footer
132 bool OnPrintPage(int page
);
133 bool HasPage(int page
);
134 void GetPageInfo(int *minPage
, int *maxPage
, int *selPageFrom
, int *selPageTo
);
135 bool OnBeginDocument(int startPage
, int endPage
);
139 void RenderPage(wxDC
*dc
, int page
);
140 // renders one page into dc
141 wxString
TranslateHeader(const wxString
& instr
, int page
);
142 // substitute @PAGENUM@ and @PAGESCNT@ by real values
144 // counts pages and fills m_NumPages and m_PageBreaks
149 int m_PageBreaks
[wxHTML_PRINT_MAX_PAGES
];
151 wxString m_Document
, m_BasePath
;
152 bool m_BasePathIsDir
;
153 wxString m_Headers
[2], m_Footers
[2];
155 int m_HeaderHeight
, m_FooterHeight
;
156 wxHtmlDCRenderer
*m_Renderer
, *m_RendererHdr
;
157 float m_MarginTop
, m_MarginBottom
, m_MarginLeft
, m_MarginRight
, m_MarginSpace
;
164 //--------------------------------------------------------------------------------
165 // wxHtmlEasyPrinting
166 // This class provides very simple interface to printing
167 // architecture. It allows you to print HTML documents only
168 // with very few commands.
170 // Note : do not create this class on stack only.
171 // You should create an instance on app startup and
172 // use this instance for all printing. Why? The class
173 // stores page&printer settings in it.
174 //--------------------------------------------------------------------------------
176 class WXDLLEXPORT wxHtmlEasyPrinting
: public wxObject
179 wxHtmlEasyPrinting(const wxString
& name
= "Printing", wxFrame
*parent_frame
= NULL
);
180 ~wxHtmlEasyPrinting();
182 bool PreviewFile(const wxString
&htmlfile
);
183 bool PreviewText(const wxString
&htmltext
, const wxString
& basepath
= wxEmptyString
);
184 // Preview file / html-text for printing
185 // (and offers printing)
186 // basepath is base directory for opening subsequent files (e.g. from <img> tag)
188 bool PrintFile(const wxString
&htmlfile
);
189 bool PrintText(const wxString
&htmltext
, const wxString
& basepath
= wxEmptyString
);
190 // Print file / html-text w/o preview
194 // pop up printer or page setup dialog
196 void SetHeader(const wxString
& header
, int pg
= wxPAGE_ALL
);
197 void SetFooter(const wxString
& footer
, int pg
= wxPAGE_ALL
);
198 // sets header/footer for the document. The argument is interpreted as HTML document.
199 // You can use macros in it:
200 // @PAGENUM@ is replaced by page number
201 // @PAGESCNT@ is replaced by total number of pages
203 // pg is one of wxPAGE_ODD, wxPAGE_EVEN and wx_PAGE_ALL constants.
204 // You can set different header/footer for odd and even pages
206 wxPrintData
*GetPrintData() {return m_PrintData
;}
207 wxPageSetupDialogData
*GetPageSetupData() {return m_PageSetupData
;}
208 // return page setting data objects.
209 // (You can set their parameters.)
212 virtual wxHtmlPrintout
*CreatePrintout();
213 virtual bool DoPreview(wxHtmlPrintout
*printout1
, wxHtmlPrintout
*printout2
);
214 virtual bool DoPrint(wxHtmlPrintout
*printout
);
217 wxPrintData
*m_PrintData
;
218 wxPageSetupDialogData
*m_PageSetupData
;
220 wxString m_Headers
[2], m_Footers
[2];
227 #endif // wxUSE_HTML & wxUSE_PRINTING_ARCHITECTURE
229 #endif // _WX_HTMPRINT_H_