Refactored Python shadows to use wxControlWithItems where appropriate.
Implememted SetClientData for wxControlWithItems. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11799 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -77,6 +77,9 @@ class wxBitmapPtr(wxGDIObjectPtr):
|
||||
val = apply(gdic.wxBitmap_GetSubBitmap,(self,) + _args, _kwargs)
|
||||
if val: val = wxBitmapPtr(val) ; val.thisown = 1
|
||||
return val
|
||||
def CopyFromIcon(self, *_args, **_kwargs):
|
||||
val = apply(gdic.wxBitmap_CopyFromIcon,(self,) + _args, _kwargs)
|
||||
return val
|
||||
def __repr__(self):
|
||||
return "<C wxBitmap instance at %s>" % (self.this,)
|
||||
|
||||
@@ -451,9 +454,6 @@ class wxPenPtr(wxGDIObjectPtr):
|
||||
def SetWidth(self, *_args, **_kwargs):
|
||||
val = apply(gdic.wxPen_SetWidth,(self,) + _args, _kwargs)
|
||||
return val
|
||||
def GetDashes(self, *_args, **_kwargs):
|
||||
val = apply(gdic.wxPen_GetDashes,(self,) + _args, _kwargs)
|
||||
return val
|
||||
def SetDashes(self, *_args, **_kwargs):
|
||||
val = apply(gdic.wxPen_SetDashes,(self,) + _args, _kwargs)
|
||||
return val
|
||||
@@ -467,6 +467,26 @@ class wxPen(wxPenPtr):
|
||||
|
||||
|
||||
|
||||
class wxPyPenPtr(wxPenPtr):
|
||||
def __init__(self,this):
|
||||
self.this = this
|
||||
self.thisown = 0
|
||||
def __del__(self,gdic=gdic):
|
||||
if self.thisown == 1 :
|
||||
gdic.delete_wxPyPen(self)
|
||||
def SetDashes(self, *_args, **_kwargs):
|
||||
val = apply(gdic.wxPyPen_SetDashes,(self,) + _args, _kwargs)
|
||||
return val
|
||||
def __repr__(self):
|
||||
return "<C wxPyPen instance at %s>" % (self.this,)
|
||||
class wxPyPen(wxPyPenPtr):
|
||||
def __init__(self,*_args,**_kwargs):
|
||||
self.this = apply(gdic.new_wxPyPen,_args,_kwargs)
|
||||
self.thisown = 1
|
||||
|
||||
|
||||
|
||||
|
||||
class wxPenListPtr(wxObjectPtr):
|
||||
def __init__(self,this):
|
||||
self.this = this
|
||||
@@ -530,7 +550,7 @@ class wxBrush(wxBrushPtr):
|
||||
|
||||
|
||||
|
||||
class wxBrushListPtr :
|
||||
class wxBrushListPtr(wxObjectPtr):
|
||||
def __init__(self,this):
|
||||
self.this = this
|
||||
self.thisown = 0
|
||||
@@ -1292,6 +1312,7 @@ wxNullFont = wxFontPtr(gdic.cvar.wxNullFont)
|
||||
wxNullColour = wxColourPtr(gdic.cvar.wxNullColour)
|
||||
wxTheFontList = wxFontListPtr(gdic.cvar.wxTheFontList)
|
||||
wxThePenList = wxPenListPtr(gdic.cvar.wxThePenList)
|
||||
wxTheBrushList = wxBrushListPtr(gdic.cvar.wxTheBrushList)
|
||||
wxTheColourDatabase = wxColourDatabasePtr(gdic.cvar.wxTheColourDatabase)
|
||||
wxIMAGELIST_DRAW_NORMAL = gdic.wxIMAGELIST_DRAW_NORMAL
|
||||
wxIMAGELIST_DRAW_TRANSPARENT = gdic.wxIMAGELIST_DRAW_TRANSPARENT
|
||||
|
Reference in New Issue
Block a user