%{
#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"));
+
//---------------------------------------------------------------------------
wxPaperSize GetPaperId();
const wxSize& GetPaperSize();
- wxPrintQuality GetQuality();
+ int GetQuality();
void SetNoCopies(int v);
void SetCollate(bool flag);
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();
void CreateAbortWindow(wxWindow* parent, wxPyPrintout* printout);
wxPrintDialogData& GetPrintDialogData();
- bool Print(wxWindow *parent, wxPyPrintout *printout, int prompt=TRUE);
+ bool Print(wxWindow *parent, wxPyPrintout *printout, int prompt=True);
wxDC* PrintDialog(wxWindow *parent);
void ReportError(wxWindow *parent, wxPyPrintout *printout, const wxString& message);
bool Setup(wxWindow *parent);
// Since this one would be tough and ugly to do with the Macros...
void wxPyPrintout::GetPageInfo(int *minPage, int *maxPage, int *pageFrom, int *pageTo) {
- bool hadErr = FALSE;
+ bool hadErr = False;
bool found;
wxPyBeginBlockThreads();
val = PyTuple_GetItem(result, 0);
if (PyInt_Check(val)) *minPage = PyInt_AsLong(val);
- else hadErr = TRUE;
+ else hadErr = True;
val = PyTuple_GetItem(result, 1);
if (PyInt_Check(val)) *maxPage = PyInt_AsLong(val);
- else hadErr = TRUE;
+ else hadErr = True;
val = PyTuple_GetItem(result, 2);
if (PyInt_Check(val)) *pageFrom = PyInt_AsLong(val);
- else hadErr = TRUE;
+ else hadErr = True;
val = PyTuple_GetItem(result, 3);
if (PyInt_Check(val)) *pageTo = PyInt_AsLong(val);
- else hadErr = TRUE;
+ else hadErr = True;
}
else
- hadErr = TRUE;
+ hadErr = True;
if (hadErr) {
PyErr_SetString(PyExc_TypeError, "GetPageInfo should return a tuple of 4 integers.");
wxDC* GetDC();
void SetDC(wxDC *dc);
- void GetPageSizePixels(int *OUTPUT, int *OUTPUT);
void SetPageSizePixels(int w, int h);
+ DocDeclA(
+ void, GetPageSizePixels(int *OUTPUT, int *OUTPUT),
+ "GetPageSizePixels() -> (w, h)");
void SetPageSizeMM(int w, int h);
- void GetPageSizeMM(int *OUTPUT, int *OUTPUT);
+ DocDeclA(
+ void, GetPageSizeMM(int *OUTPUT, int *OUTPUT),
+ "GetPageSizeMM() -> (w, h)");
void SetPPIScreen(int x, int y);
- void GetPPIScreen(int *OUTPUT, int *OUTPUT);
+ DocDeclA(
+ void, GetPPIScreen(int *OUTPUT, int *OUTPUT),
+ "GetPPIScreen() -> (x,y)");
void SetPPIPrinter(int x, int y);
- void GetPPIPrinter(int *OUTPUT, int *OUTPUT);
+ DocDeclA(
+ void, GetPPIPrinter(int *OUTPUT, int *OUTPUT),
+ "GetPPIPrinter() -> (x,y)");
bool IsPreview();
void SetIsPreview(bool p);
void base_OnBeginPrinting();
void base_OnEndPrinting();
void base_OnPreparePrinting();
- void base_GetPageInfo(int *OUTPUT, int *OUTPUT, int *OUTPUT, int *OUTPUT);
bool base_HasPage(int page);
+ DocDeclA(
+ void, base_GetPageInfo(int *OUTPUT, int *OUTPUT, int *OUTPUT, int *OUTPUT),
+ "base_GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)");
};
//---------------------------------------------------------------------------
class wxPreviewCanvas: public wxScrolledWindow
{
public:
- %addtofunc wxPreviewCanvas "self._self._setOORInfo(self)"
+ %addtofunc wxPreviewCanvas "self._setOORInfo(self)"
wxPreviewCanvas(wxPrintPreview *preview,
wxWindow *parent,
class wxPreviewFrame : public wxFrame {
public:
- %addtofunc wxPreviewFrame "self._self._setOORInfo(self)"
+ %addtofunc wxPreviewFrame "self._setOORInfo(self)"
wxPreviewFrame(wxPrintPreview* preview, wxFrame* parent, const wxString& title,
const wxPoint& pos = wxDefaultPosition,
class wxPreviewControlBar: public wxPanel
{
public:
- %addtofunc wxPreviewControlBar "self._self._setOORInfo(self)"
+ %addtofunc wxPreviewControlBar "self._setOORInfo(self)"
wxPreviewControlBar(wxPrintPreview *preview,
long buttons,
#define IMP_PYCALLBACK_BOOL_PREWINDC(CLASS, PCLASS, CBNAME) \
bool CLASS::CBNAME(wxPreviewCanvas* a, wxDC& b) { \
- bool rval=FALSE; \
+ bool rval=False; \
bool found; \
wxPyBeginBlockThreads(); \
if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \