wxDC* GetDC();
void SetDC(wxDC *dc);
+
+ void FitThisSizeToPaper(const wxSize& imageSize);
+ void FitThisSizeToPage(const wxSize& imageSize);
+ void FitThisSizeToPageMargins(const wxSize& imageSize, const wxPageSetupDialogData& pageSetupData);
+ void MapScreenSizeToPaper();
+ void MapScreenSizeToPage();
+ void MapScreenSizeToPageMargins(const wxPageSetupDialogData& pageSetupData);
+ void MapScreenSizeToDevice();
+
+ wxRect GetLogicalPaperRect() const;
+ wxRect GetLogicalPageRect() const;
+ wxRect GetLogicalPageMarginsRect(const wxPageSetupDialogData& pageSetupData) const;
+
+ void SetLogicalOrigin(wxCoord x, wxCoord y);
+ void OffsetLogicalOrigin(wxCoord xoff, wxCoord yoff);
+
+
void SetPageSizePixels(int w, int h);
DocDeclA(
void, GetPageSizePixels(int *OUTPUT, int *OUTPUT),
void, GetPPIPrinter(int *OUTPUT, int *OUTPUT),
"GetPPIPrinter() -> (x,y)");
+ void SetPaperRectPixels(const wxRect& paperRectPixels);
+ wxRect GetPaperRectPixels() const;
+
bool IsPreview();
void SetIsPreview(bool p);
virtual void SetTitle(const wxString& title);
virtual wxString GetTitle() const;
+ // enable/disable close button [x]
+ virtual bool EnableCloseButton(bool enable );
+
// Set the shape of the window to the given region.
// Returns True if the platform supports this feature
// (and the operation is successful.)
"Center the window on screen", "");
%pythoncode { CentreOnScreen = CenterOnScreen }
-#ifdef __WXMSW__
- bool EnableCloseButton(bool enable = true);
-#else
- %extend {
- bool EnableCloseButton(bool enable = true) { return false; }
- }
-#endif
-
-
DocDeclStr(
virtual wxWindow *, GetDefaultItem() const,