More changes to make the autodocs be better, made all the namestrings
and such be visible to swig so the autodoc generator knows how to rename them. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24927 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -19,13 +19,11 @@
|
||||
%{
|
||||
#include "wx/wxPython/printfw.h"
|
||||
|
||||
static const wxChar* wxPrintoutTitleStr = wxT("Printout");
|
||||
DECLARE_DEF_STRING(PrintoutTitleStr);
|
||||
static const wxChar* wxPreviewCanvasNameStr = wxT("previewcanvas");
|
||||
DECLARE_DEF_STRING(PreviewCanvasNameStr);
|
||||
|
||||
%}
|
||||
|
||||
MAKE_CONST_WXSTRING2(PrintoutTitleStr, wxT("Printout"));
|
||||
MAKE_CONST_WXSTRING2(PreviewCanvasNameStr, wxT("previewcanvas"));
|
||||
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
@@ -56,7 +54,7 @@ public:
|
||||
wxPaperSize GetPaperId();
|
||||
const wxSize& GetPaperSize();
|
||||
|
||||
wxPrintQuality GetQuality();
|
||||
int GetQuality();
|
||||
|
||||
void SetNoCopies(int v);
|
||||
void SetCollate(bool flag);
|
||||
@@ -67,7 +65,7 @@ public:
|
||||
void SetDuplex(wxDuplexMode duplex);
|
||||
void SetPaperId(wxPaperSize sizeId);
|
||||
void SetPaperSize(const wxSize& sz);
|
||||
void SetQuality(wxPrintQuality quality);
|
||||
void SetQuality(int quality);
|
||||
|
||||
// PostScript-specific data
|
||||
const wxString& GetPrinterCommand();
|
||||
|
Reference in New Issue
Block a user