]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/html/htmprint.h
add a wxEventType argument to wxThreadEvent for coherency with other event classes...
[wxWidgets.git] / interface / wx / html / htmprint.h
index 7bc796b99dc6aa89e859f688e8083016d1f0f88d..268189df7ed3716cadb0fc23d8283cd0e31d0edc 100644 (file)
@@ -36,12 +36,16 @@ public:
         Renders HTML text to the DC.
 
         @param x,y
-            position of upper-left corner of printing rectangle (see SetSize())
+            position of upper-left corner of printing rectangle (see SetSize()).
+        @param known_pagebreaks
+            @todo docme
         @param from
-            y-coordinate of the very first visible cell
+            y-coordinate of the very first visible cell.
         @param dont_render
             if @true then this method only returns y coordinate of the next page
-            and does not output anything
+            and does not output anything.
+        @param to
+            y-coordinate of the last visible cell.
 
         Returned value is y coordinate of first cell than didn't fit onto page.
         Use this value as from in next call to Render() in order to print multipages document.
@@ -55,7 +59,7 @@ public:
         <b>Render() changes the DC's user scale and does NOT restore it.</b>
     */
     int Render(int x, int y, wxArrayInt& known_pagebreaks, int from = 0,
-               int dont_render = 0, int to = INT_MAX);
+               int dont_render = false, int to = INT_MAX);
 
     /**
         Assign DC instance to the renderer.