X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4209475ced5240eb3ce516767e7c9a0a74d12bc7..0d28a1f9271606b5a38b4b7b2a78bd869bb7d520:/include/wx/html/htmprint.h diff --git a/include/wx/html/htmprint.h b/include/wx/html/htmprint.h index cf0a18fb12..4e0ccc9150 100644 --- a/include/wx/html/htmprint.h +++ b/include/wx/html/htmprint.h @@ -39,7 +39,9 @@ public: // Following 3 methods *must* be called before any call to Render: // Assign DC to this render - void SetDC(wxDC *dc, double pixel_scale = 1.0); + void SetDC(wxDC *dc, double pixel_scale = 1.0) + { SetDC(dc, pixel_scale, pixel_scale); } + void SetDC(wxDC *dc, double pixel_scale, double font_scale); // Sets size of output rectangle, in pixels. Note that you *can't* change // width of the rectangle between calls to Render! (You can freely change height.) @@ -276,6 +278,11 @@ public: void SetParentWindow(wxWindow* window) { m_ParentWindow = window; } // set the parent window + const wxString& GetName() const { return m_Name; } + // get the printout name + void SetName(const wxString& name) { m_Name = name; } + // set the printout name + protected: virtual wxHtmlPrintout *CreatePrintout(); virtual bool DoPreview(wxHtmlPrintout *printout1, wxHtmlPrintout *printout2);