]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/html/htmprint.h
Always use active wxTranslations instance via wxLocale.
[wxWidgets.git] / include / wx / html / htmprint.h
index cf0a18fb122ad929585ee8d0e935ca3dd1945bf3..4e0ccc9150bf2bed6226999fa9d13d667d0b2ccb 100644 (file)
@@ -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);