]> git.saurik.com Git - wxWidgets.git/commitdiff
printing works, page number controls are hidden
authorKarsten Ballüder <ballueder@usa.net>
Fri, 14 Aug 1998 11:02:39 +0000 (11:02 +0000)
committerKarsten Ballüder <ballueder@usa.net>
Fri, 14 Aug 1998 11:02:39 +0000 (11:02 +0000)
portrait/landscape doesn't work, pages are printed wrong

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@531 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

user/wxLayout/wxllist.cpp

index 81e2d690d44d02833f7231b7660aedf76d8f744e..551321b13cc9a92ff60e411191d5d3babea4bbf8 100644 (file)
@@ -1033,12 +1033,17 @@ void wxLayoutPrintout::GetPageInfo(int *minPage, int *maxPage, int *selPageFrom,
 
    // This code doesn't work, because we don't have a DC yet.
    // How on earth are we supposed to calculate the number of pages then?
+   *minPage = 0;    // set this to 0 to disable editing of page numbers 
+   *maxPage = 100;
 
-   *minPage = 1;
-   *maxPage = 32000;
+   *selPageFrom = 0; // set this to 0 to hide page number controls
+   *selPageTo = 100;  
 
-   *selPageFrom = 1;
-   *selPageTo = 1;
+//   *minPage = 1;
+//   *maxPage = 32000;
+
+//   *selPageFrom = 1;
+//   *selPageTo = 1;
 
 #if 0
    CoordType height;
@@ -1064,7 +1069,7 @@ void wxLayoutPrintout::GetPageInfo(int *minPage, int *maxPage, int *selPageFrom,
 
 bool wxLayoutPrintout::HasPage(int pageNum)
 {
-   return true;
+   return pageNum <= 5; // for testing
 //   return m_maxPage >= pageNum;
 }