daily updates and tweaks
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42552 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -495,6 +495,23 @@ public:
|
|||||||
wxDC* GetDC();
|
wxDC* GetDC();
|
||||||
void SetDC(wxDC *dc);
|
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);
|
void SetPageSizePixels(int w, int h);
|
||||||
DocDeclA(
|
DocDeclA(
|
||||||
void, GetPageSizePixels(int *OUTPUT, int *OUTPUT),
|
void, GetPageSizePixels(int *OUTPUT, int *OUTPUT),
|
||||||
@@ -515,6 +532,9 @@ public:
|
|||||||
void, GetPPIPrinter(int *OUTPUT, int *OUTPUT),
|
void, GetPPIPrinter(int *OUTPUT, int *OUTPUT),
|
||||||
"GetPPIPrinter() -> (x,y)");
|
"GetPPIPrinter() -> (x,y)");
|
||||||
|
|
||||||
|
void SetPaperRectPixels(const wxRect& paperRectPixels);
|
||||||
|
wxRect GetPaperRectPixels() const;
|
||||||
|
|
||||||
bool IsPreview();
|
bool IsPreview();
|
||||||
void SetIsPreview(bool p);
|
void SetIsPreview(bool p);
|
||||||
|
|
||||||
|
@@ -130,6 +130,9 @@ public:
|
|||||||
virtual void SetTitle(const wxString& title);
|
virtual void SetTitle(const wxString& title);
|
||||||
virtual wxString GetTitle() const;
|
virtual wxString GetTitle() const;
|
||||||
|
|
||||||
|
// enable/disable close button [x]
|
||||||
|
virtual bool EnableCloseButton(bool enable );
|
||||||
|
|
||||||
// Set the shape of the window to the given region.
|
// Set the shape of the window to the given region.
|
||||||
// Returns True if the platform supports this feature
|
// Returns True if the platform supports this feature
|
||||||
// (and the operation is successful.)
|
// (and the operation is successful.)
|
||||||
@@ -168,15 +171,6 @@ public:
|
|||||||
"Center the window on screen", "");
|
"Center the window on screen", "");
|
||||||
%pythoncode { CentreOnScreen = CenterOnScreen }
|
%pythoncode { CentreOnScreen = CenterOnScreen }
|
||||||
|
|
||||||
#ifdef __WXMSW__
|
|
||||||
bool EnableCloseButton(bool enable = true);
|
|
||||||
#else
|
|
||||||
%extend {
|
|
||||||
bool EnableCloseButton(bool enable = true) { return false; }
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
DocDeclStr(
|
DocDeclStr(
|
||||||
virtual wxWindow *, GetDefaultItem() const,
|
virtual wxWindow *, GetDefaultItem() const,
|
||||||
|
@@ -24,7 +24,7 @@
|
|||||||
class wxPyXmlResourceHandler : public wxXmlResourceHandler {
|
class wxPyXmlResourceHandler : public wxXmlResourceHandler {
|
||||||
public:
|
public:
|
||||||
wxPyXmlResourceHandler() : wxXmlResourceHandler() {}
|
wxPyXmlResourceHandler() : wxXmlResourceHandler() {}
|
||||||
//~wxPyXmlResourceHandler();
|
~wxPyXmlResourceHandler() {}
|
||||||
|
|
||||||
// Base class virtuals
|
// Base class virtuals
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user