Changes to ensure that GDI objects returned from Python methods are
copied, not just left as references. The old way was counter-intuitive for Python. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12752 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
b2abc29318
commit
c594325333
@ -89,11 +89,21 @@ class MyCanvas(wxScrolledWindow):
|
|||||||
if style == wxUSER_DASH:
|
if style == wxUSER_DASH:
|
||||||
pen.SetDashes([1, 2, 3, 4, 5, 6, 7, 8])
|
pen.SetDashes([1, 2, 3, 4, 5, 6, 7, 8])
|
||||||
pen.SetColour("RED")
|
pen.SetColour("RED")
|
||||||
|
|
||||||
dc.SetPen(pen)
|
dc.SetPen(pen)
|
||||||
dc.DrawLine(300, y, 400, y)
|
dc.DrawLine(300, y, 400, y)
|
||||||
y = y + 10
|
y = y + 10
|
||||||
|
|
||||||
|
dc.SetBrush(wxNullBrush)
|
||||||
|
dc.SetPen(wxPen(wxColour(0xFF, 0x20, 0xFF), 1, wxSOLID))
|
||||||
|
dc.DrawRectangle(450, 50, 100, 100)
|
||||||
|
old_pen = dc.GetPen()
|
||||||
|
new_pen = wxPen("BLACK", 5)
|
||||||
|
dc.SetPen(new_pen)
|
||||||
|
dc.DrawRectangle(470, 70, 60, 60)
|
||||||
|
dc.SetPen(old_pen)
|
||||||
|
dc.DrawRectangle(490, 90, 20, 20)
|
||||||
|
|
||||||
|
|
||||||
self.DrawSavedLines(dc)
|
self.DrawSavedLines(dc)
|
||||||
dc.EndDrawing()
|
dc.EndDrawing()
|
||||||
|
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
# Author: Robin Dunn
|
# Author: Robin Dunn
|
||||||
#
|
#
|
||||||
# Created: 6/30/97
|
# Created: 6/30/97
|
||||||
# RCS-ID: $Id$
|
|
||||||
# Copyright: (c) 1998 by Total Control Software
|
# Copyright: (c) 1998 by Total Control Software
|
||||||
# Licence: wxWindows license
|
# Licence: wxWindows license
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
|
@ -98,10 +98,10 @@ public:
|
|||||||
|
|
||||||
bool IsHoliday() const;
|
bool IsHoliday() const;
|
||||||
|
|
||||||
const wxColour& GetTextColour() const;
|
wxColour GetTextColour() const;
|
||||||
const wxColour& GetBackgroundColour() const;
|
wxColour GetBackgroundColour() const;
|
||||||
const wxColour& GetBorderColour() const;
|
wxColour GetBorderColour() const;
|
||||||
const wxFont& GetFont() const;
|
wxFont GetFont() const;
|
||||||
wxCalendarDateBorder GetBorder() const;
|
wxCalendarDateBorder GetBorder() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -214,18 +214,18 @@ public:
|
|||||||
|
|
||||||
// header colours are used for painting the weekdays at the top
|
// header colours are used for painting the weekdays at the top
|
||||||
void SetHeaderColours(const wxColour& colFg, const wxColour& colBg);
|
void SetHeaderColours(const wxColour& colFg, const wxColour& colBg);
|
||||||
const wxColour& GetHeaderColourFg() const;
|
wxColour GetHeaderColourFg() const;
|
||||||
const wxColour& GetHeaderColourBg() const;
|
wxColour GetHeaderColourBg() const;
|
||||||
|
|
||||||
// highlight colour is used for the currently selected date
|
// highlight colour is used for the currently selected date
|
||||||
void SetHighlightColours(const wxColour& colFg, const wxColour& colBg);
|
void SetHighlightColours(const wxColour& colFg, const wxColour& colBg);
|
||||||
const wxColour& GetHighlightColourFg() const;
|
wxColour GetHighlightColourFg() const;
|
||||||
const wxColour& GetHighlightColourBg() const;
|
wxColour GetHighlightColourBg() const;
|
||||||
|
|
||||||
// holiday colour is used for the holidays (if style & wxCAL_SHOW_HOLIDAYS)
|
// holiday colour is used for the holidays (if style & wxCAL_SHOW_HOLIDAYS)
|
||||||
void SetHolidayColours(const wxColour& colFg, const wxColour& colBg);
|
void SetHolidayColours(const wxColour& colFg, const wxColour& colBg);
|
||||||
const wxColour& GetHolidayColourFg() const;
|
wxColour GetHolidayColourFg() const;
|
||||||
const wxColour& GetHolidayColourBg() const;
|
wxColour GetHolidayColourBg() const;
|
||||||
|
|
||||||
// an item without custom attributes is drawn with the default colours and
|
// an item without custom attributes is drawn with the default colours and
|
||||||
// font and without border, setting custom attributes allows to modify this
|
// font and without border, setting custom attributes allows to modify this
|
||||||
|
@ -188,10 +188,10 @@ public:
|
|||||||
%pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
|
%pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
|
||||||
%pragma(python) addtomethod = "wxPreBitmapButton:val._setOORInfo(val)"
|
%pragma(python) addtomethod = "wxPreBitmapButton:val._setOORInfo(val)"
|
||||||
|
|
||||||
wxBitmap& GetBitmapLabel();
|
wxBitmap GetBitmapLabel();
|
||||||
wxBitmap& GetBitmapDisabled();
|
wxBitmap GetBitmapDisabled();
|
||||||
wxBitmap& GetBitmapFocus();
|
wxBitmap GetBitmapFocus();
|
||||||
wxBitmap& GetBitmapSelected();
|
wxBitmap GetBitmapSelected();
|
||||||
void SetBitmapDisabled(const wxBitmap& bitmap);
|
void SetBitmapDisabled(const wxBitmap& bitmap);
|
||||||
void SetBitmapFocus(const wxBitmap& bitmap);
|
void SetBitmapFocus(const wxBitmap& bitmap);
|
||||||
void SetBitmapSelected(const wxBitmap& bitmap);
|
void SetBitmapSelected(const wxBitmap& bitmap);
|
||||||
@ -616,9 +616,9 @@ public:
|
|||||||
bool HasBackgroundColour() const;
|
bool HasBackgroundColour() const;
|
||||||
bool HasFont() const;
|
bool HasFont() const;
|
||||||
|
|
||||||
const wxColour& GetTextColour() const;
|
wxColour GetTextColour() const;
|
||||||
const wxColour& GetBackgroundColour() const;
|
wxColour GetBackgroundColour() const;
|
||||||
const wxFont& GetFont() const;
|
wxFont GetFont() const;
|
||||||
|
|
||||||
// returns false if we have any attributes set, true otherwise
|
// returns false if we have any attributes set, true otherwise
|
||||||
bool IsDefault();
|
bool IsDefault();
|
||||||
@ -828,7 +828,7 @@ public:
|
|||||||
%pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
|
%pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
|
||||||
%pragma(python) addtomethod = "wxPreStaticBitmap:val._setOORInfo(val)"
|
%pragma(python) addtomethod = "wxPreStaticBitmap:val._setOORInfo(val)"
|
||||||
|
|
||||||
const wxBitmap& GetBitmap();
|
wxBitmap GetBitmap();
|
||||||
void SetBitmap(const wxBitmap& bitmap);
|
void SetBitmap(const wxBitmap& bitmap);
|
||||||
void SetIcon(const wxIcon& icon);
|
void SetIcon(const wxIcon& icon);
|
||||||
};
|
};
|
||||||
|
@ -259,9 +259,9 @@ public:
|
|||||||
bool HasBackgroundColour();
|
bool HasBackgroundColour();
|
||||||
bool HasFont();
|
bool HasFont();
|
||||||
|
|
||||||
const wxColour& GetTextColour();
|
wxColour GetTextColour();
|
||||||
const wxColour& GetBackgroundColour();
|
wxColour GetBackgroundColour();
|
||||||
const wxFont& GetFont();
|
wxFont GetFont();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -908,9 +908,9 @@ public:
|
|||||||
bool HasBackgroundColour();
|
bool HasBackgroundColour();
|
||||||
bool HasFont();
|
bool HasFont();
|
||||||
|
|
||||||
const wxColour& GetTextColour();
|
wxColour GetTextColour();
|
||||||
const wxColour& GetBackgroundColour();
|
wxColour GetBackgroundColour();
|
||||||
const wxFont& GetFont();
|
wxFont GetFont();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@ public:
|
|||||||
virtual bool IsIconized() const;
|
virtual bool IsIconized() const;
|
||||||
|
|
||||||
// get the frame icon
|
// get the frame icon
|
||||||
const wxIcon& GetIcon() const;
|
wxIcon GetIcon() const;
|
||||||
|
|
||||||
// set the frame icon
|
// set the frame icon
|
||||||
virtual void SetIcon(const wxIcon& icon);
|
virtual void SetIcon(const wxIcon& icon);
|
||||||
|
@ -757,18 +757,18 @@ public:
|
|||||||
void EndDrawing();
|
void EndDrawing();
|
||||||
void EndPage();
|
void EndPage();
|
||||||
void FloodFill(long x, long y, const wxColour& colour, int style=wxFLOOD_SURFACE);
|
void FloodFill(long x, long y, const wxColour& colour, int style=wxFLOOD_SURFACE);
|
||||||
wxBrush& GetBackground();
|
wxBrush GetBackground();
|
||||||
wxBrush& GetBrush();
|
wxBrush GetBrush();
|
||||||
long GetCharHeight();
|
long GetCharHeight();
|
||||||
long GetCharWidth();
|
long GetCharWidth();
|
||||||
void GetClippingBox(long *OUTPUT, long *OUTPUT,
|
void GetClippingBox(long *OUTPUT, long *OUTPUT,
|
||||||
long *OUTPUT, long *OUTPUT);
|
long *OUTPUT, long *OUTPUT);
|
||||||
wxFont& GetFont();
|
wxFont GetFont();
|
||||||
int GetLogicalFunction();
|
int GetLogicalFunction();
|
||||||
void GetLogicalScale(double *OUTPUT, double *OUTPUT);
|
void GetLogicalScale(double *OUTPUT, double *OUTPUT);
|
||||||
int GetMapMode();
|
int GetMapMode();
|
||||||
bool GetOptimization();
|
bool GetOptimization();
|
||||||
wxPen& GetPen();
|
wxPen GetPen();
|
||||||
%addmethods {
|
%addmethods {
|
||||||
%new wxColour* GetPixel(long x, long y) {
|
%new wxColour* GetPixel(long x, long y) {
|
||||||
wxColour* wc = new wxColour();
|
wxColour* wc = new wxColour();
|
||||||
@ -1116,74 +1116,6 @@ public:
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
|
|
||||||
%readonly
|
|
||||||
%{
|
|
||||||
#if 0
|
|
||||||
%}
|
|
||||||
extern wxFont *wxNORMAL_FONT;
|
|
||||||
extern wxFont *wxSMALL_FONT;
|
|
||||||
extern wxFont *wxITALIC_FONT;
|
|
||||||
extern wxFont *wxSWISS_FONT;
|
|
||||||
|
|
||||||
extern wxPen *wxRED_PEN;
|
|
||||||
extern wxPen *wxCYAN_PEN;
|
|
||||||
extern wxPen *wxGREEN_PEN;
|
|
||||||
extern wxPen *wxBLACK_PEN;
|
|
||||||
extern wxPen *wxWHITE_PEN;
|
|
||||||
extern wxPen *wxTRANSPARENT_PEN;
|
|
||||||
extern wxPen *wxBLACK_DASHED_PEN;
|
|
||||||
extern wxPen *wxGREY_PEN;
|
|
||||||
extern wxPen *wxMEDIUM_GREY_PEN;
|
|
||||||
extern wxPen *wxLIGHT_GREY_PEN;
|
|
||||||
|
|
||||||
extern wxBrush *wxBLUE_BRUSH;
|
|
||||||
extern wxBrush *wxGREEN_BRUSH;
|
|
||||||
extern wxBrush *wxWHITE_BRUSH;
|
|
||||||
extern wxBrush *wxBLACK_BRUSH;
|
|
||||||
extern wxBrush *wxTRANSPARENT_BRUSH;
|
|
||||||
extern wxBrush *wxCYAN_BRUSH;
|
|
||||||
extern wxBrush *wxRED_BRUSH;
|
|
||||||
extern wxBrush *wxGREY_BRUSH;
|
|
||||||
extern wxBrush *wxMEDIUM_GREY_BRUSH;
|
|
||||||
extern wxBrush *wxLIGHT_GREY_BRUSH;
|
|
||||||
|
|
||||||
extern wxColour *wxBLACK;
|
|
||||||
extern wxColour *wxWHITE;
|
|
||||||
extern wxColour *wxRED;
|
|
||||||
extern wxColour *wxBLUE;
|
|
||||||
extern wxColour *wxGREEN;
|
|
||||||
extern wxColour *wxCYAN;
|
|
||||||
extern wxColour *wxLIGHT_GREY;
|
|
||||||
|
|
||||||
extern wxCursor *wxSTANDARD_CURSOR;
|
|
||||||
extern wxCursor *wxHOURGLASS_CURSOR;
|
|
||||||
extern wxCursor *wxCROSS_CURSOR;
|
|
||||||
|
|
||||||
extern wxBitmap wxNullBitmap;
|
|
||||||
extern wxIcon wxNullIcon;
|
|
||||||
extern wxCursor wxNullCursor;
|
|
||||||
extern wxPen wxNullPen;
|
|
||||||
extern wxBrush wxNullBrush;
|
|
||||||
extern wxPalette wxNullPalette;
|
|
||||||
extern wxFont wxNullFont;
|
|
||||||
extern wxColour wxNullColour;
|
|
||||||
|
|
||||||
|
|
||||||
extern wxFontList* wxTheFontList;
|
|
||||||
extern wxPenList* wxThePenList;
|
|
||||||
extern wxBrushList* wxTheBrushList;
|
|
||||||
extern wxColourDatabase* wxTheColourDatabase;
|
|
||||||
|
|
||||||
|
|
||||||
%readwrite
|
|
||||||
%{
|
|
||||||
#endif
|
|
||||||
%}
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
class wxPalette : public wxGDIObject {
|
class wxPalette : public wxGDIObject {
|
||||||
@ -1301,3 +1233,72 @@ public:
|
|||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
%readonly
|
||||||
|
%{
|
||||||
|
#if 0
|
||||||
|
%}
|
||||||
|
|
||||||
|
extern wxFont *wxNORMAL_FONT;
|
||||||
|
extern wxFont *wxSMALL_FONT;
|
||||||
|
extern wxFont *wxITALIC_FONT;
|
||||||
|
extern wxFont *wxSWISS_FONT;
|
||||||
|
|
||||||
|
extern wxPen *wxRED_PEN;
|
||||||
|
extern wxPen *wxCYAN_PEN;
|
||||||
|
extern wxPen *wxGREEN_PEN;
|
||||||
|
extern wxPen *wxBLACK_PEN;
|
||||||
|
extern wxPen *wxWHITE_PEN;
|
||||||
|
extern wxPen *wxTRANSPARENT_PEN;
|
||||||
|
extern wxPen *wxBLACK_DASHED_PEN;
|
||||||
|
extern wxPen *wxGREY_PEN;
|
||||||
|
extern wxPen *wxMEDIUM_GREY_PEN;
|
||||||
|
extern wxPen *wxLIGHT_GREY_PEN;
|
||||||
|
|
||||||
|
extern wxBrush *wxBLUE_BRUSH;
|
||||||
|
extern wxBrush *wxGREEN_BRUSH;
|
||||||
|
extern wxBrush *wxWHITE_BRUSH;
|
||||||
|
extern wxBrush *wxBLACK_BRUSH;
|
||||||
|
extern wxBrush *wxTRANSPARENT_BRUSH;
|
||||||
|
extern wxBrush *wxCYAN_BRUSH;
|
||||||
|
extern wxBrush *wxRED_BRUSH;
|
||||||
|
extern wxBrush *wxGREY_BRUSH;
|
||||||
|
extern wxBrush *wxMEDIUM_GREY_BRUSH;
|
||||||
|
extern wxBrush *wxLIGHT_GREY_BRUSH;
|
||||||
|
|
||||||
|
extern wxColour *wxBLACK;
|
||||||
|
extern wxColour *wxWHITE;
|
||||||
|
extern wxColour *wxRED;
|
||||||
|
extern wxColour *wxBLUE;
|
||||||
|
extern wxColour *wxGREEN;
|
||||||
|
extern wxColour *wxCYAN;
|
||||||
|
extern wxColour *wxLIGHT_GREY;
|
||||||
|
|
||||||
|
extern wxCursor *wxSTANDARD_CURSOR;
|
||||||
|
extern wxCursor *wxHOURGLASS_CURSOR;
|
||||||
|
extern wxCursor *wxCROSS_CURSOR;
|
||||||
|
|
||||||
|
|
||||||
|
extern wxBitmap wxNullBitmap;
|
||||||
|
extern wxIcon wxNullIcon;
|
||||||
|
extern wxCursor wxNullCursor;
|
||||||
|
extern wxPen wxNullPen;
|
||||||
|
extern wxBrush wxNullBrush;
|
||||||
|
extern wxPalette wxNullPalette;
|
||||||
|
extern wxFont wxNullFont;
|
||||||
|
extern wxColour wxNullColour;
|
||||||
|
|
||||||
|
|
||||||
|
extern wxFontList* wxTheFontList;
|
||||||
|
extern wxPenList* wxThePenList;
|
||||||
|
extern wxBrushList* wxTheBrushList;
|
||||||
|
extern wxColourDatabase* wxTheColourDatabase;
|
||||||
|
|
||||||
|
|
||||||
|
%readwrite
|
||||||
|
%{
|
||||||
|
#endif
|
||||||
|
%}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------
|
||||||
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -904,9 +904,9 @@ public:
|
|||||||
bool HasEditor() const;
|
bool HasEditor() const;
|
||||||
bool HasReadWriteMode() const;
|
bool HasReadWriteMode() const;
|
||||||
|
|
||||||
const wxColour& GetTextColour() const;
|
wxColour GetTextColour() const;
|
||||||
const wxColour& GetBackgroundColour() const;
|
wxColour GetBackgroundColour() const;
|
||||||
const wxFont& GetFont() const;
|
wxFont GetFont() const;
|
||||||
void GetAlignment(int *OUTPUT, int *OUTPUT) const;
|
void GetAlignment(int *OUTPUT, int *OUTPUT) const;
|
||||||
wxGridCellRenderer *GetRenderer(wxGrid* grid, int row, int col) const;
|
wxGridCellRenderer *GetRenderer(wxGrid* grid, int row, int col) const;
|
||||||
wxGridCellEditor *GetEditor(wxGrid* grid, int row, int col) const;
|
wxGridCellEditor *GetEditor(wxGrid* grid, int row, int col) const;
|
||||||
|
@ -402,8 +402,10 @@ PyObject* wxPyConstructObject(void* ptr,
|
|||||||
}
|
}
|
||||||
|
|
||||||
char buff[64]; // should always be big enough...
|
char buff[64]; // should always be big enough...
|
||||||
|
|
||||||
sprintf(buff, "%sPtr", className);
|
sprintf(buff, "%sPtr", className);
|
||||||
|
|
||||||
|
wxASSERT_MSG(wxPython_dict, "wxPython_dict is not set yet!!");
|
||||||
|
|
||||||
PyObject* classobj = PyDict_GetItemString(wxPython_dict, buff);
|
PyObject* classobj = PyDict_GetItemString(wxPython_dict, buff);
|
||||||
if (! classobj) {
|
if (! classobj) {
|
||||||
char temp[128];
|
char temp[128];
|
||||||
|
@ -172,9 +172,9 @@ public:
|
|||||||
void SetFontFixed(int x);
|
void SetFontFixed(int x);
|
||||||
int GetAlign();
|
int GetAlign();
|
||||||
void SetAlign(int a);
|
void SetAlign(int a);
|
||||||
const wxColour& GetLinkColor();
|
wxColour GetLinkColor();
|
||||||
void SetLinkColor(const wxColour& clr);
|
void SetLinkColor(const wxColour& clr);
|
||||||
const wxColour& GetActualColor();
|
wxColour GetActualColor();
|
||||||
void SetActualColor(const wxColour& clr);
|
void SetActualColor(const wxColour& clr);
|
||||||
void SetLink(const wxString& link);
|
void SetLink(const wxString& link);
|
||||||
wxFont* CreateCurrentFont();
|
wxFont* CreateCurrentFont();
|
||||||
|
@ -585,18 +585,12 @@ static PyObject *_wrap_wxCalendarDateAttr_GetTextColour(PyObject *self, PyObject
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxCalendarDateAttr_GetTextColour(_arg0);
|
_result = new wxColour (wxCalendarDateAttr_GetTextColour(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -621,18 +615,12 @@ static PyObject *_wrap_wxCalendarDateAttr_GetBackgroundColour(PyObject *self, Py
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxCalendarDateAttr_GetBackgroundColour(_arg0);
|
_result = new wxColour (wxCalendarDateAttr_GetBackgroundColour(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -657,18 +645,12 @@ static PyObject *_wrap_wxCalendarDateAttr_GetBorderColour(PyObject *self, PyObje
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxCalendarDateAttr_GetBorderColour(_arg0);
|
_result = new wxColour (wxCalendarDateAttr_GetBorderColour(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -693,18 +675,12 @@ static PyObject *_wrap_wxCalendarDateAttr_GetFont(PyObject *self, PyObject *args
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxFont & _result_ref = wxCalendarDateAttr_GetFont(_arg0);
|
_result = new wxFont (wxCalendarDateAttr_GetFont(_arg0));
|
||||||
_result = (wxFont *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxFont_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxFont_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1473,18 +1449,12 @@ static PyObject *_wrap_wxCalendarCtrl_GetHeaderColourFg(PyObject *self, PyObject
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxCalendarCtrl_GetHeaderColourFg(_arg0);
|
_result = new wxColour (wxCalendarCtrl_GetHeaderColourFg(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1509,18 +1479,12 @@ static PyObject *_wrap_wxCalendarCtrl_GetHeaderColourBg(PyObject *self, PyObject
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxCalendarCtrl_GetHeaderColourBg(_arg0);
|
_result = new wxColour (wxCalendarCtrl_GetHeaderColourBg(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1589,18 +1553,12 @@ static PyObject *_wrap_wxCalendarCtrl_GetHighlightColourFg(PyObject *self, PyObj
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxCalendarCtrl_GetHighlightColourFg(_arg0);
|
_result = new wxColour (wxCalendarCtrl_GetHighlightColourFg(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1625,18 +1583,12 @@ static PyObject *_wrap_wxCalendarCtrl_GetHighlightColourBg(PyObject *self, PyObj
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxCalendarCtrl_GetHighlightColourBg(_arg0);
|
_result = new wxColour (wxCalendarCtrl_GetHighlightColourBg(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1705,18 +1657,12 @@ static PyObject *_wrap_wxCalendarCtrl_GetHolidayColourFg(PyObject *self, PyObjec
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxCalendarCtrl_GetHolidayColourFg(_arg0);
|
_result = new wxColour (wxCalendarCtrl_GetHolidayColourFg(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1741,18 +1687,12 @@ static PyObject *_wrap_wxCalendarCtrl_GetHolidayColourBg(PyObject *self, PyObjec
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxCalendarCtrl_GetHolidayColourBg(_arg0);
|
_result = new wxColour (wxCalendarCtrl_GetHolidayColourBg(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -77,19 +77,19 @@ class wxCalendarDateAttrPtr :
|
|||||||
return val
|
return val
|
||||||
def GetTextColour(self, *_args, **_kwargs):
|
def GetTextColour(self, *_args, **_kwargs):
|
||||||
val = apply(calendarc.wxCalendarDateAttr_GetTextColour,(self,) + _args, _kwargs)
|
val = apply(calendarc.wxCalendarDateAttr_GetTextColour,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetBackgroundColour(self, *_args, **_kwargs):
|
def GetBackgroundColour(self, *_args, **_kwargs):
|
||||||
val = apply(calendarc.wxCalendarDateAttr_GetBackgroundColour,(self,) + _args, _kwargs)
|
val = apply(calendarc.wxCalendarDateAttr_GetBackgroundColour,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetBorderColour(self, *_args, **_kwargs):
|
def GetBorderColour(self, *_args, **_kwargs):
|
||||||
val = apply(calendarc.wxCalendarDateAttr_GetBorderColour,(self,) + _args, _kwargs)
|
val = apply(calendarc.wxCalendarDateAttr_GetBorderColour,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetFont(self, *_args, **_kwargs):
|
def GetFont(self, *_args, **_kwargs):
|
||||||
val = apply(calendarc.wxCalendarDateAttr_GetFont,(self,) + _args, _kwargs)
|
val = apply(calendarc.wxCalendarDateAttr_GetFont,(self,) + _args, _kwargs)
|
||||||
if val: val = wxFontPtr(val)
|
if val: val = wxFontPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetBorder(self, *_args, **_kwargs):
|
def GetBorder(self, *_args, **_kwargs):
|
||||||
val = apply(calendarc.wxCalendarDateAttr_GetBorder,(self,) + _args, _kwargs)
|
val = apply(calendarc.wxCalendarDateAttr_GetBorder,(self,) + _args, _kwargs)
|
||||||
@ -175,33 +175,33 @@ class wxCalendarCtrlPtr(wxControlPtr):
|
|||||||
return val
|
return val
|
||||||
def GetHeaderColourFg(self, *_args, **_kwargs):
|
def GetHeaderColourFg(self, *_args, **_kwargs):
|
||||||
val = apply(calendarc.wxCalendarCtrl_GetHeaderColourFg,(self,) + _args, _kwargs)
|
val = apply(calendarc.wxCalendarCtrl_GetHeaderColourFg,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetHeaderColourBg(self, *_args, **_kwargs):
|
def GetHeaderColourBg(self, *_args, **_kwargs):
|
||||||
val = apply(calendarc.wxCalendarCtrl_GetHeaderColourBg,(self,) + _args, _kwargs)
|
val = apply(calendarc.wxCalendarCtrl_GetHeaderColourBg,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def SetHighlightColours(self, *_args, **_kwargs):
|
def SetHighlightColours(self, *_args, **_kwargs):
|
||||||
val = apply(calendarc.wxCalendarCtrl_SetHighlightColours,(self,) + _args, _kwargs)
|
val = apply(calendarc.wxCalendarCtrl_SetHighlightColours,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def GetHighlightColourFg(self, *_args, **_kwargs):
|
def GetHighlightColourFg(self, *_args, **_kwargs):
|
||||||
val = apply(calendarc.wxCalendarCtrl_GetHighlightColourFg,(self,) + _args, _kwargs)
|
val = apply(calendarc.wxCalendarCtrl_GetHighlightColourFg,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetHighlightColourBg(self, *_args, **_kwargs):
|
def GetHighlightColourBg(self, *_args, **_kwargs):
|
||||||
val = apply(calendarc.wxCalendarCtrl_GetHighlightColourBg,(self,) + _args, _kwargs)
|
val = apply(calendarc.wxCalendarCtrl_GetHighlightColourBg,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def SetHolidayColours(self, *_args, **_kwargs):
|
def SetHolidayColours(self, *_args, **_kwargs):
|
||||||
val = apply(calendarc.wxCalendarCtrl_SetHolidayColours,(self,) + _args, _kwargs)
|
val = apply(calendarc.wxCalendarCtrl_SetHolidayColours,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def GetHolidayColourFg(self, *_args, **_kwargs):
|
def GetHolidayColourFg(self, *_args, **_kwargs):
|
||||||
val = apply(calendarc.wxCalendarCtrl_GetHolidayColourFg,(self,) + _args, _kwargs)
|
val = apply(calendarc.wxCalendarCtrl_GetHolidayColourFg,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetHolidayColourBg(self, *_args, **_kwargs):
|
def GetHolidayColourBg(self, *_args, **_kwargs):
|
||||||
val = apply(calendarc.wxCalendarCtrl_GetHolidayColourBg,(self,) + _args, _kwargs)
|
val = apply(calendarc.wxCalendarCtrl_GetHolidayColourBg,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetAttr(self, *_args, **_kwargs):
|
def GetAttr(self, *_args, **_kwargs):
|
||||||
val = apply(calendarc.wxCalendarCtrl_GetAttr,(self,) + _args, _kwargs)
|
val = apply(calendarc.wxCalendarCtrl_GetAttr,(self,) + _args, _kwargs)
|
||||||
|
@ -1549,18 +1549,12 @@ static PyObject *_wrap_wxBitmapButton_GetBitmapLabel(PyObject *self, PyObject *a
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
wxBitmap & _result_ref = wxBitmapButton_GetBitmapLabel(_arg0);
|
_result = new wxBitmap (wxBitmapButton_GetBitmapLabel(_arg0));
|
||||||
_result = (wxBitmap *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxBitmap_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxBitmap_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1585,18 +1579,12 @@ static PyObject *_wrap_wxBitmapButton_GetBitmapDisabled(PyObject *self, PyObject
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
wxBitmap & _result_ref = wxBitmapButton_GetBitmapDisabled(_arg0);
|
_result = new wxBitmap (wxBitmapButton_GetBitmapDisabled(_arg0));
|
||||||
_result = (wxBitmap *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxBitmap_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxBitmap_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1621,18 +1609,12 @@ static PyObject *_wrap_wxBitmapButton_GetBitmapFocus(PyObject *self, PyObject *a
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
wxBitmap & _result_ref = wxBitmapButton_GetBitmapFocus(_arg0);
|
_result = new wxBitmap (wxBitmapButton_GetBitmapFocus(_arg0));
|
||||||
_result = (wxBitmap *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxBitmap_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxBitmap_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1657,18 +1639,12 @@ static PyObject *_wrap_wxBitmapButton_GetBitmapSelected(PyObject *self, PyObject
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
wxBitmap & _result_ref = wxBitmapButton_GetBitmapSelected(_arg0);
|
_result = new wxBitmap (wxBitmapButton_GetBitmapSelected(_arg0));
|
||||||
_result = (wxBitmap *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxBitmap_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxBitmap_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5876,18 +5852,12 @@ static PyObject *_wrap_wxTextAttr_GetTextColour(PyObject *self, PyObject *args,
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxTextAttr_GetTextColour(_arg0);
|
_result = new wxColour (wxTextAttr_GetTextColour(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5912,18 +5882,12 @@ static PyObject *_wrap_wxTextAttr_GetBackgroundColour(PyObject *self, PyObject *
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxTextAttr_GetBackgroundColour(_arg0);
|
_result = new wxColour (wxTextAttr_GetBackgroundColour(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5948,18 +5912,12 @@ static PyObject *_wrap_wxTextAttr_GetFont(PyObject *self, PyObject *args, PyObje
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxFont & _result_ref = wxTextAttr_GetFont(_arg0);
|
_result = new wxFont (wxTextAttr_GetFont(_arg0));
|
||||||
_result = (wxFont *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxFont_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxFont_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -8634,18 +8592,12 @@ static PyObject *_wrap_wxStaticBitmap_GetBitmap(PyObject *self, PyObject *args,
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxBitmap & _result_ref = wxStaticBitmap_GetBitmap(_arg0);
|
_result = new wxBitmap (wxStaticBitmap_GetBitmap(_arg0));
|
||||||
_result = (wxBitmap *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxBitmap_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxBitmap_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -139,19 +139,19 @@ class wxBitmapButtonPtr(wxButtonPtr):
|
|||||||
return val
|
return val
|
||||||
def GetBitmapLabel(self, *_args, **_kwargs):
|
def GetBitmapLabel(self, *_args, **_kwargs):
|
||||||
val = apply(controlsc.wxBitmapButton_GetBitmapLabel,(self,) + _args, _kwargs)
|
val = apply(controlsc.wxBitmapButton_GetBitmapLabel,(self,) + _args, _kwargs)
|
||||||
if val: val = wxBitmapPtr(val)
|
if val: val = wxBitmapPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetBitmapDisabled(self, *_args, **_kwargs):
|
def GetBitmapDisabled(self, *_args, **_kwargs):
|
||||||
val = apply(controlsc.wxBitmapButton_GetBitmapDisabled,(self,) + _args, _kwargs)
|
val = apply(controlsc.wxBitmapButton_GetBitmapDisabled,(self,) + _args, _kwargs)
|
||||||
if val: val = wxBitmapPtr(val)
|
if val: val = wxBitmapPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetBitmapFocus(self, *_args, **_kwargs):
|
def GetBitmapFocus(self, *_args, **_kwargs):
|
||||||
val = apply(controlsc.wxBitmapButton_GetBitmapFocus,(self,) + _args, _kwargs)
|
val = apply(controlsc.wxBitmapButton_GetBitmapFocus,(self,) + _args, _kwargs)
|
||||||
if val: val = wxBitmapPtr(val)
|
if val: val = wxBitmapPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetBitmapSelected(self, *_args, **_kwargs):
|
def GetBitmapSelected(self, *_args, **_kwargs):
|
||||||
val = apply(controlsc.wxBitmapButton_GetBitmapSelected,(self,) + _args, _kwargs)
|
val = apply(controlsc.wxBitmapButton_GetBitmapSelected,(self,) + _args, _kwargs)
|
||||||
if val: val = wxBitmapPtr(val)
|
if val: val = wxBitmapPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def SetBitmapDisabled(self, *_args, **_kwargs):
|
def SetBitmapDisabled(self, *_args, **_kwargs):
|
||||||
val = apply(controlsc.wxBitmapButton_SetBitmapDisabled,(self,) + _args, _kwargs)
|
val = apply(controlsc.wxBitmapButton_SetBitmapDisabled,(self,) + _args, _kwargs)
|
||||||
@ -581,15 +581,15 @@ class wxTextAttrPtr :
|
|||||||
return val
|
return val
|
||||||
def GetTextColour(self, *_args, **_kwargs):
|
def GetTextColour(self, *_args, **_kwargs):
|
||||||
val = apply(controlsc.wxTextAttr_GetTextColour,(self,) + _args, _kwargs)
|
val = apply(controlsc.wxTextAttr_GetTextColour,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetBackgroundColour(self, *_args, **_kwargs):
|
def GetBackgroundColour(self, *_args, **_kwargs):
|
||||||
val = apply(controlsc.wxTextAttr_GetBackgroundColour,(self,) + _args, _kwargs)
|
val = apply(controlsc.wxTextAttr_GetBackgroundColour,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetFont(self, *_args, **_kwargs):
|
def GetFont(self, *_args, **_kwargs):
|
||||||
val = apply(controlsc.wxTextAttr_GetFont,(self,) + _args, _kwargs)
|
val = apply(controlsc.wxTextAttr_GetFont,(self,) + _args, _kwargs)
|
||||||
if val: val = wxFontPtr(val)
|
if val: val = wxFontPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def IsDefault(self, *_args, **_kwargs):
|
def IsDefault(self, *_args, **_kwargs):
|
||||||
val = apply(controlsc.wxTextAttr_IsDefault,(self,) + _args, _kwargs)
|
val = apply(controlsc.wxTextAttr_IsDefault,(self,) + _args, _kwargs)
|
||||||
@ -854,7 +854,7 @@ class wxStaticBitmapPtr(wxControlPtr):
|
|||||||
return val
|
return val
|
||||||
def GetBitmap(self, *_args, **_kwargs):
|
def GetBitmap(self, *_args, **_kwargs):
|
||||||
val = apply(controlsc.wxStaticBitmap_GetBitmap,(self,) + _args, _kwargs)
|
val = apply(controlsc.wxStaticBitmap_GetBitmap,(self,) + _args, _kwargs)
|
||||||
if val: val = wxBitmapPtr(val)
|
if val: val = wxBitmapPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def SetBitmap(self, *_args, **_kwargs):
|
def SetBitmap(self, *_args, **_kwargs):
|
||||||
val = apply(controlsc.wxStaticBitmap_SetBitmap,(self,) + _args, _kwargs)
|
val = apply(controlsc.wxStaticBitmap_SetBitmap,(self,) + _args, _kwargs)
|
||||||
|
@ -491,18 +491,12 @@ static PyObject *_wrap_wxListItemAttr_GetTextColour(PyObject *self, PyObject *ar
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxListItemAttr_GetTextColour(_arg0);
|
_result = new wxColour (wxListItemAttr_GetTextColour(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -527,18 +521,12 @@ static PyObject *_wrap_wxListItemAttr_GetBackgroundColour(PyObject *self, PyObje
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxListItemAttr_GetBackgroundColour(_arg0);
|
_result = new wxColour (wxListItemAttr_GetBackgroundColour(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -563,18 +551,12 @@ static PyObject *_wrap_wxListItemAttr_GetFont(PyObject *self, PyObject *args, Py
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxFont & _result_ref = wxListItemAttr_GetFont(_arg0);
|
_result = new wxFont (wxListItemAttr_GetFont(_arg0));
|
||||||
_result = (wxFont *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxFont_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxFont_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5908,18 +5890,12 @@ static PyObject *_wrap_wxTreeItemAttr_GetTextColour(PyObject *self, PyObject *ar
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxTreeItemAttr_GetTextColour(_arg0);
|
_result = new wxColour (wxTreeItemAttr_GetTextColour(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5944,18 +5920,12 @@ static PyObject *_wrap_wxTreeItemAttr_GetBackgroundColour(PyObject *self, PyObje
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxTreeItemAttr_GetBackgroundColour(_arg0);
|
_result = new wxColour (wxTreeItemAttr_GetBackgroundColour(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5980,18 +5950,12 @@ static PyObject *_wrap_wxTreeItemAttr_GetFont(PyObject *self, PyObject *args, Py
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxFont & _result_ref = wxTreeItemAttr_GetFont(_arg0);
|
_result = new wxFont (wxTreeItemAttr_GetFont(_arg0));
|
||||||
_result = (wxFont *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxFont_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxFont_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -160,15 +160,15 @@ class wxListItemAttrPtr :
|
|||||||
return val
|
return val
|
||||||
def GetTextColour(self, *_args, **_kwargs):
|
def GetTextColour(self, *_args, **_kwargs):
|
||||||
val = apply(controls2c.wxListItemAttr_GetTextColour,(self,) + _args, _kwargs)
|
val = apply(controls2c.wxListItemAttr_GetTextColour,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetBackgroundColour(self, *_args, **_kwargs):
|
def GetBackgroundColour(self, *_args, **_kwargs):
|
||||||
val = apply(controls2c.wxListItemAttr_GetBackgroundColour,(self,) + _args, _kwargs)
|
val = apply(controls2c.wxListItemAttr_GetBackgroundColour,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetFont(self, *_args, **_kwargs):
|
def GetFont(self, *_args, **_kwargs):
|
||||||
val = apply(controls2c.wxListItemAttr_GetFont,(self,) + _args, _kwargs)
|
val = apply(controls2c.wxListItemAttr_GetFont,(self,) + _args, _kwargs)
|
||||||
if val: val = wxFontPtr(val)
|
if val: val = wxFontPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "<C wxListItemAttr instance at %s>" % (self.this,)
|
return "<C wxListItemAttr instance at %s>" % (self.this,)
|
||||||
@ -745,15 +745,15 @@ class wxTreeItemAttrPtr :
|
|||||||
return val
|
return val
|
||||||
def GetTextColour(self, *_args, **_kwargs):
|
def GetTextColour(self, *_args, **_kwargs):
|
||||||
val = apply(controls2c.wxTreeItemAttr_GetTextColour,(self,) + _args, _kwargs)
|
val = apply(controls2c.wxTreeItemAttr_GetTextColour,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetBackgroundColour(self, *_args, **_kwargs):
|
def GetBackgroundColour(self, *_args, **_kwargs):
|
||||||
val = apply(controls2c.wxTreeItemAttr_GetBackgroundColour,(self,) + _args, _kwargs)
|
val = apply(controls2c.wxTreeItemAttr_GetBackgroundColour,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetFont(self, *_args, **_kwargs):
|
def GetFont(self, *_args, **_kwargs):
|
||||||
val = apply(controls2c.wxTreeItemAttr_GetFont,(self,) + _args, _kwargs)
|
val = apply(controls2c.wxTreeItemAttr_GetFont,(self,) + _args, _kwargs)
|
||||||
if val: val = wxFontPtr(val)
|
if val: val = wxFontPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "<C wxTreeItemAttr instance at %s>" % (self.this,)
|
return "<C wxTreeItemAttr instance at %s>" % (self.this,)
|
||||||
|
@ -473,18 +473,12 @@ static PyObject *_wrap_wxTopLevelWindow_GetIcon(PyObject *self, PyObject *args,
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxIcon & _result_ref = wxTopLevelWindow_GetIcon(_arg0);
|
_result = new wxIcon (wxTopLevelWindow_GetIcon(_arg0));
|
||||||
_result = (wxIcon *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxIcon_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxIcon_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ class wxTopLevelWindowPtr(wxWindowPtr):
|
|||||||
return val
|
return val
|
||||||
def GetIcon(self, *_args, **_kwargs):
|
def GetIcon(self, *_args, **_kwargs):
|
||||||
val = apply(framesc.wxTopLevelWindow_GetIcon,(self,) + _args, _kwargs)
|
val = apply(framesc.wxTopLevelWindow_GetIcon,(self,) + _args, _kwargs)
|
||||||
if val: val = wxIconPtr(val)
|
if val: val = wxIconPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def SetIcon(self, *_args, **_kwargs):
|
def SetIcon(self, *_args, **_kwargs):
|
||||||
val = apply(framesc.wxTopLevelWindow_SetIcon,(self,) + _args, _kwargs)
|
val = apply(framesc.wxTopLevelWindow_SetIcon,(self,) + _args, _kwargs)
|
||||||
|
@ -7391,18 +7391,12 @@ static PyObject *_wrap_wxDC_GetBackground(PyObject *self, PyObject *args, PyObje
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
wxBrush & _result_ref = wxDC_GetBackground(_arg0);
|
_result = new wxBrush (wxDC_GetBackground(_arg0));
|
||||||
_result = (wxBrush *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxBrush_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxBrush_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -7427,18 +7421,12 @@ static PyObject *_wrap_wxDC_GetBrush(PyObject *self, PyObject *args, PyObject *k
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
wxBrush & _result_ref = wxDC_GetBrush(_arg0);
|
_result = new wxBrush (wxDC_GetBrush(_arg0));
|
||||||
_result = (wxBrush *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxBrush_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxBrush_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -7587,18 +7575,12 @@ static PyObject *_wrap_wxDC_GetFont(PyObject *self, PyObject *args, PyObject *kw
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
wxFont & _result_ref = wxDC_GetFont(_arg0);
|
_result = new wxFont (wxDC_GetFont(_arg0));
|
||||||
_result = (wxFont *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxFont_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxFont_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -7755,18 +7737,12 @@ static PyObject *_wrap_wxDC_GetPen(PyObject *self, PyObject *args, PyObject *kwa
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
wxPen & _result_ref = wxDC_GetPen(_arg0);
|
_result = new wxPen (wxDC_GetPen(_arg0));
|
||||||
_result = (wxPen *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxPen_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxPen_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -12768,6 +12744,16 @@ SWIGEXPORT(void) initgdic() {
|
|||||||
PyDict_SetItemString(d,"wxFONTENCODING_UTF8", PyInt_FromLong((long) wxFONTENCODING_UTF8));
|
PyDict_SetItemString(d,"wxFONTENCODING_UTF8", PyInt_FromLong((long) wxFONTENCODING_UTF8));
|
||||||
PyDict_SetItemString(d,"wxFONTENCODING_UNICODE", PyInt_FromLong((long) wxFONTENCODING_UNICODE));
|
PyDict_SetItemString(d,"wxFONTENCODING_UNICODE", PyInt_FromLong((long) wxFONTENCODING_UNICODE));
|
||||||
PyDict_SetItemString(d,"wxFONTENCODING_MAX", PyInt_FromLong((long) wxFONTENCODING_MAX));
|
PyDict_SetItemString(d,"wxFONTENCODING_MAX", PyInt_FromLong((long) wxFONTENCODING_MAX));
|
||||||
|
PyDict_SetItemString(d,"wxIMAGELIST_DRAW_NORMAL", PyInt_FromLong((long) wxIMAGELIST_DRAW_NORMAL));
|
||||||
|
PyDict_SetItemString(d,"wxIMAGELIST_DRAW_TRANSPARENT", PyInt_FromLong((long) wxIMAGELIST_DRAW_TRANSPARENT));
|
||||||
|
PyDict_SetItemString(d,"wxIMAGELIST_DRAW_SELECTED", PyInt_FromLong((long) wxIMAGELIST_DRAW_SELECTED));
|
||||||
|
PyDict_SetItemString(d,"wxIMAGELIST_DRAW_FOCUSED", PyInt_FromLong((long) wxIMAGELIST_DRAW_FOCUSED));
|
||||||
|
PyDict_SetItemString(d,"wxIMAGE_LIST_NORMAL", PyInt_FromLong((long) wxIMAGE_LIST_NORMAL));
|
||||||
|
PyDict_SetItemString(d,"wxIMAGE_LIST_SMALL", PyInt_FromLong((long) wxIMAGE_LIST_SMALL));
|
||||||
|
PyDict_SetItemString(d,"wxIMAGE_LIST_STATE", PyInt_FromLong((long) wxIMAGE_LIST_STATE));
|
||||||
|
PyDict_SetItemString(d,"wxOutRegion", PyInt_FromLong((long) wxOutRegion));
|
||||||
|
PyDict_SetItemString(d,"wxPartRegion", PyInt_FromLong((long) wxPartRegion));
|
||||||
|
PyDict_SetItemString(d,"wxInRegion", PyInt_FromLong((long) wxInRegion));
|
||||||
PyDict_SetItemString(d,"cvar", SWIG_globals);
|
PyDict_SetItemString(d,"cvar", SWIG_globals);
|
||||||
SWIG_addvarlink(SWIG_globals,"wxNORMAL_FONT",_wrap_wxNORMAL_FONT_get, _wrap_wxNORMAL_FONT_set);
|
SWIG_addvarlink(SWIG_globals,"wxNORMAL_FONT",_wrap_wxNORMAL_FONT_get, _wrap_wxNORMAL_FONT_set);
|
||||||
SWIG_addvarlink(SWIG_globals,"wxSMALL_FONT",_wrap_wxSMALL_FONT_get, _wrap_wxSMALL_FONT_set);
|
SWIG_addvarlink(SWIG_globals,"wxSMALL_FONT",_wrap_wxSMALL_FONT_get, _wrap_wxSMALL_FONT_set);
|
||||||
@ -12815,16 +12801,6 @@ SWIGEXPORT(void) initgdic() {
|
|||||||
SWIG_addvarlink(SWIG_globals,"wxThePenList",_wrap_wxThePenList_get, _wrap_wxThePenList_set);
|
SWIG_addvarlink(SWIG_globals,"wxThePenList",_wrap_wxThePenList_get, _wrap_wxThePenList_set);
|
||||||
SWIG_addvarlink(SWIG_globals,"wxTheBrushList",_wrap_wxTheBrushList_get, _wrap_wxTheBrushList_set);
|
SWIG_addvarlink(SWIG_globals,"wxTheBrushList",_wrap_wxTheBrushList_get, _wrap_wxTheBrushList_set);
|
||||||
SWIG_addvarlink(SWIG_globals,"wxTheColourDatabase",_wrap_wxTheColourDatabase_get, _wrap_wxTheColourDatabase_set);
|
SWIG_addvarlink(SWIG_globals,"wxTheColourDatabase",_wrap_wxTheColourDatabase_get, _wrap_wxTheColourDatabase_set);
|
||||||
PyDict_SetItemString(d,"wxIMAGELIST_DRAW_NORMAL", PyInt_FromLong((long) wxIMAGELIST_DRAW_NORMAL));
|
|
||||||
PyDict_SetItemString(d,"wxIMAGELIST_DRAW_TRANSPARENT", PyInt_FromLong((long) wxIMAGELIST_DRAW_TRANSPARENT));
|
|
||||||
PyDict_SetItemString(d,"wxIMAGELIST_DRAW_SELECTED", PyInt_FromLong((long) wxIMAGELIST_DRAW_SELECTED));
|
|
||||||
PyDict_SetItemString(d,"wxIMAGELIST_DRAW_FOCUSED", PyInt_FromLong((long) wxIMAGELIST_DRAW_FOCUSED));
|
|
||||||
PyDict_SetItemString(d,"wxIMAGE_LIST_NORMAL", PyInt_FromLong((long) wxIMAGE_LIST_NORMAL));
|
|
||||||
PyDict_SetItemString(d,"wxIMAGE_LIST_SMALL", PyInt_FromLong((long) wxIMAGE_LIST_SMALL));
|
|
||||||
PyDict_SetItemString(d,"wxIMAGE_LIST_STATE", PyInt_FromLong((long) wxIMAGE_LIST_STATE));
|
|
||||||
PyDict_SetItemString(d,"wxOutRegion", PyInt_FromLong((long) wxOutRegion));
|
|
||||||
PyDict_SetItemString(d,"wxPartRegion", PyInt_FromLong((long) wxPartRegion));
|
|
||||||
PyDict_SetItemString(d,"wxInRegion", PyInt_FromLong((long) wxInRegion));
|
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; _swig_mapping[i].n1; i++)
|
for (i = 0; _swig_mapping[i].n1; i++)
|
||||||
|
@ -737,11 +737,11 @@ class wxDCPtr(wxObjectPtr):
|
|||||||
return val
|
return val
|
||||||
def GetBackground(self, *_args, **_kwargs):
|
def GetBackground(self, *_args, **_kwargs):
|
||||||
val = apply(gdic.wxDC_GetBackground,(self,) + _args, _kwargs)
|
val = apply(gdic.wxDC_GetBackground,(self,) + _args, _kwargs)
|
||||||
if val: val = wxBrushPtr(val)
|
if val: val = wxBrushPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetBrush(self, *_args, **_kwargs):
|
def GetBrush(self, *_args, **_kwargs):
|
||||||
val = apply(gdic.wxDC_GetBrush,(self,) + _args, _kwargs)
|
val = apply(gdic.wxDC_GetBrush,(self,) + _args, _kwargs)
|
||||||
if val: val = wxBrushPtr(val)
|
if val: val = wxBrushPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetCharHeight(self, *_args, **_kwargs):
|
def GetCharHeight(self, *_args, **_kwargs):
|
||||||
val = apply(gdic.wxDC_GetCharHeight,(self,) + _args, _kwargs)
|
val = apply(gdic.wxDC_GetCharHeight,(self,) + _args, _kwargs)
|
||||||
@ -754,7 +754,7 @@ class wxDCPtr(wxObjectPtr):
|
|||||||
return val
|
return val
|
||||||
def GetFont(self, *_args, **_kwargs):
|
def GetFont(self, *_args, **_kwargs):
|
||||||
val = apply(gdic.wxDC_GetFont,(self,) + _args, _kwargs)
|
val = apply(gdic.wxDC_GetFont,(self,) + _args, _kwargs)
|
||||||
if val: val = wxFontPtr(val)
|
if val: val = wxFontPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetLogicalFunction(self, *_args, **_kwargs):
|
def GetLogicalFunction(self, *_args, **_kwargs):
|
||||||
val = apply(gdic.wxDC_GetLogicalFunction,(self,) + _args, _kwargs)
|
val = apply(gdic.wxDC_GetLogicalFunction,(self,) + _args, _kwargs)
|
||||||
@ -770,7 +770,7 @@ class wxDCPtr(wxObjectPtr):
|
|||||||
return val
|
return val
|
||||||
def GetPen(self, *_args, **_kwargs):
|
def GetPen(self, *_args, **_kwargs):
|
||||||
val = apply(gdic.wxDC_GetPen,(self,) + _args, _kwargs)
|
val = apply(gdic.wxDC_GetPen,(self,) + _args, _kwargs)
|
||||||
if val: val = wxPenPtr(val)
|
if val: val = wxPenPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetPixel(self, *_args, **_kwargs):
|
def GetPixel(self, *_args, **_kwargs):
|
||||||
val = apply(gdic.wxDC_GetPixel,(self,) + _args, _kwargs)
|
val = apply(gdic.wxDC_GetPixel,(self,) + _args, _kwargs)
|
||||||
@ -1416,6 +1416,16 @@ wxFONTENCODING_UTF7 = gdic.wxFONTENCODING_UTF7
|
|||||||
wxFONTENCODING_UTF8 = gdic.wxFONTENCODING_UTF8
|
wxFONTENCODING_UTF8 = gdic.wxFONTENCODING_UTF8
|
||||||
wxFONTENCODING_UNICODE = gdic.wxFONTENCODING_UNICODE
|
wxFONTENCODING_UNICODE = gdic.wxFONTENCODING_UNICODE
|
||||||
wxFONTENCODING_MAX = gdic.wxFONTENCODING_MAX
|
wxFONTENCODING_MAX = gdic.wxFONTENCODING_MAX
|
||||||
|
wxIMAGELIST_DRAW_NORMAL = gdic.wxIMAGELIST_DRAW_NORMAL
|
||||||
|
wxIMAGELIST_DRAW_TRANSPARENT = gdic.wxIMAGELIST_DRAW_TRANSPARENT
|
||||||
|
wxIMAGELIST_DRAW_SELECTED = gdic.wxIMAGELIST_DRAW_SELECTED
|
||||||
|
wxIMAGELIST_DRAW_FOCUSED = gdic.wxIMAGELIST_DRAW_FOCUSED
|
||||||
|
wxIMAGE_LIST_NORMAL = gdic.wxIMAGE_LIST_NORMAL
|
||||||
|
wxIMAGE_LIST_SMALL = gdic.wxIMAGE_LIST_SMALL
|
||||||
|
wxIMAGE_LIST_STATE = gdic.wxIMAGE_LIST_STATE
|
||||||
|
wxOutRegion = gdic.wxOutRegion
|
||||||
|
wxPartRegion = gdic.wxPartRegion
|
||||||
|
wxInRegion = gdic.wxInRegion
|
||||||
cvar = gdic.cvar
|
cvar = gdic.cvar
|
||||||
wxNORMAL_FONT = wxFontPtr(gdic.cvar.wxNORMAL_FONT)
|
wxNORMAL_FONT = wxFontPtr(gdic.cvar.wxNORMAL_FONT)
|
||||||
wxSMALL_FONT = wxFontPtr(gdic.cvar.wxSMALL_FONT)
|
wxSMALL_FONT = wxFontPtr(gdic.cvar.wxSMALL_FONT)
|
||||||
@ -1463,13 +1473,3 @@ wxTheFontList = wxFontListPtr(gdic.cvar.wxTheFontList)
|
|||||||
wxThePenList = wxPenListPtr(gdic.cvar.wxThePenList)
|
wxThePenList = wxPenListPtr(gdic.cvar.wxThePenList)
|
||||||
wxTheBrushList = wxBrushListPtr(gdic.cvar.wxTheBrushList)
|
wxTheBrushList = wxBrushListPtr(gdic.cvar.wxTheBrushList)
|
||||||
wxTheColourDatabase = wxColourDatabasePtr(gdic.cvar.wxTheColourDatabase)
|
wxTheColourDatabase = wxColourDatabasePtr(gdic.cvar.wxTheColourDatabase)
|
||||||
wxIMAGELIST_DRAW_NORMAL = gdic.wxIMAGELIST_DRAW_NORMAL
|
|
||||||
wxIMAGELIST_DRAW_TRANSPARENT = gdic.wxIMAGELIST_DRAW_TRANSPARENT
|
|
||||||
wxIMAGELIST_DRAW_SELECTED = gdic.wxIMAGELIST_DRAW_SELECTED
|
|
||||||
wxIMAGELIST_DRAW_FOCUSED = gdic.wxIMAGELIST_DRAW_FOCUSED
|
|
||||||
wxIMAGE_LIST_NORMAL = gdic.wxIMAGE_LIST_NORMAL
|
|
||||||
wxIMAGE_LIST_SMALL = gdic.wxIMAGE_LIST_SMALL
|
|
||||||
wxIMAGE_LIST_STATE = gdic.wxIMAGE_LIST_STATE
|
|
||||||
wxOutRegion = gdic.wxOutRegion
|
|
||||||
wxPartRegion = gdic.wxPartRegion
|
|
||||||
wxInRegion = gdic.wxInRegion
|
|
||||||
|
@ -3766,18 +3766,12 @@ static PyObject *_wrap_wxGridCellAttr_GetTextColour(PyObject *self, PyObject *ar
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxGridCellAttr_GetTextColour(_arg0);
|
_result = new wxColour (wxGridCellAttr_GetTextColour(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3802,18 +3796,12 @@ static PyObject *_wrap_wxGridCellAttr_GetBackgroundColour(PyObject *self, PyObje
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxGridCellAttr_GetBackgroundColour(_arg0);
|
_result = new wxColour (wxGridCellAttr_GetBackgroundColour(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3838,18 +3826,12 @@ static PyObject *_wrap_wxGridCellAttr_GetFont(PyObject *self, PyObject *args, Py
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxFont & _result_ref = wxGridCellAttr_GetFont(_arg0);
|
_result = new wxFont (wxGridCellAttr_GetFont(_arg0));
|
||||||
_result = (wxFont *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxFont_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxFont_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -511,15 +511,15 @@ class wxGridCellAttrPtr :
|
|||||||
return val
|
return val
|
||||||
def GetTextColour(self, *_args, **_kwargs):
|
def GetTextColour(self, *_args, **_kwargs):
|
||||||
val = apply(gridc.wxGridCellAttr_GetTextColour,(self,) + _args, _kwargs)
|
val = apply(gridc.wxGridCellAttr_GetTextColour,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetBackgroundColour(self, *_args, **_kwargs):
|
def GetBackgroundColour(self, *_args, **_kwargs):
|
||||||
val = apply(gridc.wxGridCellAttr_GetBackgroundColour,(self,) + _args, _kwargs)
|
val = apply(gridc.wxGridCellAttr_GetBackgroundColour,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetFont(self, *_args, **_kwargs):
|
def GetFont(self, *_args, **_kwargs):
|
||||||
val = apply(gridc.wxGridCellAttr_GetFont,(self,) + _args, _kwargs)
|
val = apply(gridc.wxGridCellAttr_GetFont,(self,) + _args, _kwargs)
|
||||||
if val: val = wxFontPtr(val)
|
if val: val = wxFontPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetAlignment(self, *_args, **_kwargs):
|
def GetAlignment(self, *_args, **_kwargs):
|
||||||
val = apply(gridc.wxGridCellAttr_GetAlignment,(self,) + _args, _kwargs)
|
val = apply(gridc.wxGridCellAttr_GetAlignment,(self,) + _args, _kwargs)
|
||||||
|
@ -2015,17 +2015,11 @@ static PyObject *_wrap_wxHtmlWinParser_GetLinkColor(PyObject *self, PyObject *ar
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxHtmlWinParser_GetLinkColor(_arg0);
|
_result = new wxColour (wxHtmlWinParser_GetLinkColor(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2085,17 +2079,11 @@ static PyObject *_wrap_wxHtmlWinParser_GetActualColor(PyObject *self, PyObject *
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxColour & _result_ref = wxHtmlWinParser_GetActualColor(_arg0);
|
_result = new wxColour (wxHtmlWinParser_GetActualColor(_arg0));
|
||||||
_result = (wxColour *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxColour_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxColour_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -230,14 +230,14 @@ class wxHtmlWinParserPtr(wxHtmlParserPtr):
|
|||||||
return val
|
return val
|
||||||
def GetLinkColor(self, *_args, **_kwargs):
|
def GetLinkColor(self, *_args, **_kwargs):
|
||||||
val = apply(htmlc.wxHtmlWinParser_GetLinkColor,(self,) + _args, _kwargs)
|
val = apply(htmlc.wxHtmlWinParser_GetLinkColor,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def SetLinkColor(self, *_args, **_kwargs):
|
def SetLinkColor(self, *_args, **_kwargs):
|
||||||
val = apply(htmlc.wxHtmlWinParser_SetLinkColor,(self,) + _args, _kwargs)
|
val = apply(htmlc.wxHtmlWinParser_SetLinkColor,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def GetActualColor(self, *_args, **_kwargs):
|
def GetActualColor(self, *_args, **_kwargs):
|
||||||
val = apply(htmlc.wxHtmlWinParser_GetActualColor,(self,) + _args, _kwargs)
|
val = apply(htmlc.wxHtmlWinParser_GetActualColor,(self,) + _args, _kwargs)
|
||||||
if val: val = wxColourPtr(val)
|
if val: val = wxColourPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def SetActualColor(self, *_args, **_kwargs):
|
def SetActualColor(self, *_args, **_kwargs):
|
||||||
val = apply(htmlc.wxHtmlWinParser_SetActualColor,(self,) + _args, _kwargs)
|
val = apply(htmlc.wxHtmlWinParser_SetActualColor,(self,) + _args, _kwargs)
|
||||||
|
@ -879,18 +879,12 @@ static PyObject *_wrap_wxToolBarToolBase_GetBitmap1(PyObject *self, PyObject *ar
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxBitmap & _result_ref = wxToolBarToolBase_GetBitmap1(_arg0);
|
_result = new wxBitmap (wxToolBarToolBase_GetBitmap1(_arg0));
|
||||||
_result = (wxBitmap *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxBitmap_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxBitmap_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -915,18 +909,12 @@ static PyObject *_wrap_wxToolBarToolBase_GetBitmap2(PyObject *self, PyObject *ar
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxBitmap & _result_ref = wxToolBarToolBase_GetBitmap2(_arg0);
|
_result = new wxBitmap (wxToolBarToolBase_GetBitmap2(_arg0));
|
||||||
_result = (wxBitmap *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxBitmap_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxBitmap_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -951,18 +939,12 @@ static PyObject *_wrap_wxToolBarToolBase_GetBitmap(PyObject *self, PyObject *arg
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxBitmap & _result_ref = wxToolBarToolBase_GetBitmap(_arg0);
|
_result = new wxBitmap (wxToolBarToolBase_GetBitmap(_arg0));
|
||||||
_result = (wxBitmap *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxBitmap_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxBitmap_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -104,15 +104,15 @@ class wxToolBarToolBasePtr(wxObjectPtr):
|
|||||||
return val
|
return val
|
||||||
def GetBitmap1(self, *_args, **_kwargs):
|
def GetBitmap1(self, *_args, **_kwargs):
|
||||||
val = apply(stattoolc.wxToolBarToolBase_GetBitmap1,(self,) + _args, _kwargs)
|
val = apply(stattoolc.wxToolBarToolBase_GetBitmap1,(self,) + _args, _kwargs)
|
||||||
if val: val = wxBitmapPtr(val)
|
if val: val = wxBitmapPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetBitmap2(self, *_args, **_kwargs):
|
def GetBitmap2(self, *_args, **_kwargs):
|
||||||
val = apply(stattoolc.wxToolBarToolBase_GetBitmap2,(self,) + _args, _kwargs)
|
val = apply(stattoolc.wxToolBarToolBase_GetBitmap2,(self,) + _args, _kwargs)
|
||||||
if val: val = wxBitmapPtr(val)
|
if val: val = wxBitmapPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetBitmap(self, *_args, **_kwargs):
|
def GetBitmap(self, *_args, **_kwargs):
|
||||||
val = apply(stattoolc.wxToolBarToolBase_GetBitmap,(self,) + _args, _kwargs)
|
val = apply(stattoolc.wxToolBarToolBase_GetBitmap,(self,) + _args, _kwargs)
|
||||||
if val: val = wxBitmapPtr(val)
|
if val: val = wxBitmapPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetShortHelp(self, *_args, **_kwargs):
|
def GetShortHelp(self, *_args, **_kwargs):
|
||||||
val = apply(stattoolc.wxToolBarToolBase_GetShortHelp,(self,) + _args, _kwargs)
|
val = apply(stattoolc.wxToolBarToolBase_GetShortHelp,(self,) + _args, _kwargs)
|
||||||
|
@ -1888,18 +1888,12 @@ static PyObject *_wrap_wxWindow_GetFont(PyObject *self, PyObject *args, PyObject
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
wxFont & _result_ref = wxWindow_GetFont(_arg0);
|
_result = new wxFont (wxWindow_GetFont(_arg0));
|
||||||
_result = (wxFont *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxFont_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxFont_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -10057,18 +10051,12 @@ static PyObject *_wrap_wxMenuItem_GetFont(PyObject *self, PyObject *args, PyObje
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
wxFont & _result_ref = wxMenuItem_GetFont(_arg0);
|
_result = new wxFont (wxMenuItem_GetFont(_arg0));
|
||||||
_result = (wxFont *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxFont_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxFont_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -10311,18 +10299,12 @@ static PyObject *_wrap_wxMenuItem_GetBitmap(PyObject *self, PyObject *args, PyOb
|
|||||||
_arg1 = (bool ) tempbool1;
|
_arg1 = (bool ) tempbool1;
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
const wxBitmap & _result_ref = wxMenuItem_GetBitmap(_arg0,_arg1);
|
_result = new wxBitmap (wxMenuItem_GetBitmap(_arg0,_arg1));
|
||||||
_result = (wxBitmap *) &_result_ref;
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
if (PyErr_Occurred()) return NULL;
|
if (PyErr_Occurred()) return NULL;
|
||||||
} if (_result) {
|
} SWIG_MakePtr(_ptemp, (void *) _result,"_wxBitmap_p");
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"_wxBitmap_p");
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -204,7 +204,7 @@ class wxWindowPtr(wxEvtHandlerPtr):
|
|||||||
return val
|
return val
|
||||||
def GetFont(self, *_args, **_kwargs):
|
def GetFont(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxWindow_GetFont,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxWindow_GetFont,(self,) + _args, _kwargs)
|
||||||
if val: val = wxFontPtr(val)
|
if val: val = wxFontPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def GetForegroundColour(self, *_args, **_kwargs):
|
def GetForegroundColour(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxWindow_GetForegroundColour,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxWindow_GetForegroundColour,(self,) + _args, _kwargs)
|
||||||
@ -963,7 +963,7 @@ class wxMenuItemPtr(wxObjectPtr):
|
|||||||
return val
|
return val
|
||||||
def GetFont(self, *_args, **_kwargs):
|
def GetFont(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_GetFont,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_GetFont,(self,) + _args, _kwargs)
|
||||||
if val: val = wxFontPtr(val)
|
if val: val = wxFontPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def SetTextColour(self, *_args, **_kwargs):
|
def SetTextColour(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_SetTextColour,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_SetTextColour,(self,) + _args, _kwargs)
|
||||||
@ -987,7 +987,7 @@ class wxMenuItemPtr(wxObjectPtr):
|
|||||||
return val
|
return val
|
||||||
def GetBitmap(self, *_args, **_kwargs):
|
def GetBitmap(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_GetBitmap,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_GetBitmap,(self,) + _args, _kwargs)
|
||||||
if val: val = wxBitmapPtr(val)
|
if val: val = wxBitmapPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
def SetMarginWidth(self, *_args, **_kwargs):
|
def SetMarginWidth(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_SetMarginWidth,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_SetMarginWidth,(self,) + _args, _kwargs)
|
||||||
|
@ -879,7 +879,6 @@ wxDefaultSize = wxSizePtr(wxc.cvar.wxDefaultSize)
|
|||||||
# Author: Robin Dunn
|
# Author: Robin Dunn
|
||||||
#
|
#
|
||||||
# Created: 6/30/97
|
# Created: 6/30/97
|
||||||
# RCS-ID: $Id$
|
|
||||||
# Copyright: (c) 1998 by Total Control Software
|
# Copyright: (c) 1998 by Total Control Software
|
||||||
# Licence: wxWindows license
|
# Licence: wxWindows license
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
|
@ -110,9 +110,9 @@ public:
|
|||||||
bool IsEnabled();
|
bool IsEnabled();
|
||||||
bool IsToggled();
|
bool IsToggled();
|
||||||
bool CanBeToggled();
|
bool CanBeToggled();
|
||||||
const wxBitmap& GetBitmap1();
|
wxBitmap GetBitmap1();
|
||||||
const wxBitmap& GetBitmap2();
|
wxBitmap GetBitmap2();
|
||||||
const wxBitmap& GetBitmap();
|
wxBitmap GetBitmap();
|
||||||
wxString GetShortHelp();
|
wxString GetShortHelp();
|
||||||
wxString GetLongHelp();
|
wxString GetLongHelp();
|
||||||
bool Enable(bool enable);
|
bool Enable(bool enable);
|
||||||
|
@ -234,7 +234,7 @@ public:
|
|||||||
wxLayoutConstraints * GetConstraints();
|
wxLayoutConstraints * GetConstraints();
|
||||||
wxEvtHandler* GetEventHandler();
|
wxEvtHandler* GetEventHandler();
|
||||||
|
|
||||||
wxFont& GetFont();
|
wxFont GetFont();
|
||||||
wxColour GetForegroundColour();
|
wxColour GetForegroundColour();
|
||||||
wxWindow * GetGrandParent();
|
wxWindow * GetGrandParent();
|
||||||
%addmethods {
|
%addmethods {
|
||||||
@ -332,7 +332,7 @@ public:
|
|||||||
%name(SetClientSizeWH)void SetClientSize(int width, int height);
|
%name(SetClientSizeWH)void SetClientSize(int width, int height);
|
||||||
void SetClientSize(const wxSize& size);
|
void SetClientSize(const wxSize& size);
|
||||||
//void SetPalette(wxPalette* palette);
|
//void SetPalette(wxPalette* palette);
|
||||||
void SetCursor(const wxCursor&cursor);
|
void SetCursor(const wxCursor& cursor);
|
||||||
void SetEventHandler(wxEvtHandler* handler);
|
void SetEventHandler(wxEvtHandler* handler);
|
||||||
void SetExtraStyle(long exStyle);
|
void SetExtraStyle(long exStyle);
|
||||||
void SetTitle(const wxString& title);
|
void SetTitle(const wxString& title);
|
||||||
@ -656,7 +656,7 @@ public:
|
|||||||
// wxOwnerDrawn methods
|
// wxOwnerDrawn methods
|
||||||
#ifdef __WXMSW__
|
#ifdef __WXMSW__
|
||||||
void SetFont(const wxFont& font);
|
void SetFont(const wxFont& font);
|
||||||
wxFont& GetFont();
|
wxFont GetFont();
|
||||||
void SetTextColour(const wxColour& colText);
|
void SetTextColour(const wxColour& colText);
|
||||||
wxColour GetTextColour();
|
wxColour GetTextColour();
|
||||||
void SetBackgroundColour(const wxColour& colBack);
|
void SetBackgroundColour(const wxColour& colBack);
|
||||||
@ -664,7 +664,7 @@ public:
|
|||||||
void SetBitmaps(const wxBitmap& bmpChecked,
|
void SetBitmaps(const wxBitmap& bmpChecked,
|
||||||
const wxBitmap& bmpUnchecked = wxNullBitmap);
|
const wxBitmap& bmpUnchecked = wxNullBitmap);
|
||||||
void SetBitmap(const wxBitmap& bmpChecked);
|
void SetBitmap(const wxBitmap& bmpChecked);
|
||||||
const wxBitmap& GetBitmap(bool bChecked = TRUE);
|
wxBitmap GetBitmap(bool bChecked = TRUE);
|
||||||
void SetMarginWidth(int nWidth);
|
void SetMarginWidth(int nWidth);
|
||||||
int GetMarginWidth();
|
int GetMarginWidth();
|
||||||
static int GetDefaultMarginWidth();
|
static int GetDefaultMarginWidth();
|
||||||
|
@ -17,6 +17,11 @@
|
|||||||
#include "helpers.h"
|
#include "helpers.h"
|
||||||
%}
|
%}
|
||||||
|
|
||||||
|
// %pragma(python) code="
|
||||||
|
// # This gives this module's dictionary to the C++ extension code...
|
||||||
|
// wxc._wxSetDictionary(vars())
|
||||||
|
// "
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
// This is where we include the other wrapper definition files for SWIG
|
// This is where we include the other wrapper definition files for SWIG
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
@ -112,6 +117,8 @@ public:
|
|||||||
}
|
}
|
||||||
%}
|
%}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
// this is used to cleanup after wxWindows when Python shuts down.
|
// this is used to cleanup after wxWindows when Python shuts down.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user