]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/contrib/glcanvas/msw/glcanvas.py
1 # This file was created automatically by SWIG 1.3.29.
2 # Don't modify this file, modify the SWIG interface instead.
5 `GLCanvas` provides an OpenGL Context on a `wx.Window`.
10 new_instancemethod
= new
.instancemethod
11 def _swig_setattr_nondynamic(self
,class_type
,name
,value
,static
=1):
12 if (name
== "thisown"): return self
.this
.own(value
)
14 if type(value
).__name
__ == 'PySwigObject':
15 self
.__dict
__[name
] = value
17 method
= class_type
.__swig
_setmethods
__.get(name
,None)
18 if method
: return method(self
,value
)
19 if (not static
) or hasattr(self
,name
):
20 self
.__dict
__[name
] = value
22 raise AttributeError("You cannot add attributes to %s" % self
)
24 def _swig_setattr(self
,class_type
,name
,value
):
25 return _swig_setattr_nondynamic(self
,class_type
,name
,value
,0)
27 def _swig_getattr(self
,class_type
,name
):
28 if (name
== "thisown"): return self
.this
.own()
29 method
= class_type
.__swig
_getmethods
__.get(name
,None)
30 if method
: return method(self
)
31 raise AttributeError,name
34 try: strthis
= "proxy of " + self
.this
.__repr
__()
36 return "<%s.%s; %s >" % (self
.__class
__.__module
__, self
.__class
__.__name
__, strthis
,)
40 _object
= types
.ObjectType
42 except AttributeError:
48 def _swig_setattr_nondynamic_method(set):
49 def set_attr(self
,name
,value
):
50 if (name
== "thisown"): return self
.this
.own(value
)
51 if hasattr(self
,name
) or (name
== "this"):
54 raise AttributeError("You cannot add attributes to %s" % self
)
60 __docfilter__
= wx
.__DocFilter
(globals())
61 class GLContext(_core
.Object
):
62 """Proxy of C++ GLContext class"""
63 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
65 def __init__(self
, *args
, **kwargs
):
67 __init__(self, bool isRGB, GLCanvas win, Palette palette=wxNullPalette,
68 GLContext other=None) -> GLContext
70 _glcanvas
.GLContext_swiginit(self
,_glcanvas
.new_GLContext(*args
, **kwargs
))
71 __swig_destroy__
= _glcanvas
.delete_GLContext
72 __del__
= lambda self
: None;
73 def SetCurrent(*args
, **kwargs
):
74 """SetCurrent(self)"""
75 return _glcanvas
.GLContext_SetCurrent(*args
, **kwargs
)
77 def SetColour(*args
, **kwargs
):
78 """SetColour(self, String colour)"""
79 return _glcanvas
.GLContext_SetColour(*args
, **kwargs
)
81 def SwapBuffers(*args
, **kwargs
):
82 """SwapBuffers(self)"""
83 return _glcanvas
.GLContext_SwapBuffers(*args
, **kwargs
)
85 def GetWindow(*args
, **kwargs
):
86 """GetWindow(self) -> Window"""
87 return _glcanvas
.GLContext_GetWindow(*args
, **kwargs
)
89 _glcanvas
.GLContext_swigregister(GLContext
)
91 GLCanvasNameStr
= cvar
.GLCanvasNameStr
93 WX_GL_RGBA
= _glcanvas
.WX_GL_RGBA
94 WX_GL_BUFFER_SIZE
= _glcanvas
.WX_GL_BUFFER_SIZE
95 WX_GL_LEVEL
= _glcanvas
.WX_GL_LEVEL
96 WX_GL_DOUBLEBUFFER
= _glcanvas
.WX_GL_DOUBLEBUFFER
97 WX_GL_STEREO
= _glcanvas
.WX_GL_STEREO
98 WX_GL_AUX_BUFFERS
= _glcanvas
.WX_GL_AUX_BUFFERS
99 WX_GL_MIN_RED
= _glcanvas
.WX_GL_MIN_RED
100 WX_GL_MIN_GREEN
= _glcanvas
.WX_GL_MIN_GREEN
101 WX_GL_MIN_BLUE
= _glcanvas
.WX_GL_MIN_BLUE
102 WX_GL_MIN_ALPHA
= _glcanvas
.WX_GL_MIN_ALPHA
103 WX_GL_DEPTH_SIZE
= _glcanvas
.WX_GL_DEPTH_SIZE
104 WX_GL_STENCIL_SIZE
= _glcanvas
.WX_GL_STENCIL_SIZE
105 WX_GL_MIN_ACCUM_RED
= _glcanvas
.WX_GL_MIN_ACCUM_RED
106 WX_GL_MIN_ACCUM_GREEN
= _glcanvas
.WX_GL_MIN_ACCUM_GREEN
107 WX_GL_MIN_ACCUM_BLUE
= _glcanvas
.WX_GL_MIN_ACCUM_BLUE
108 WX_GL_MIN_ACCUM_ALPHA
= _glcanvas
.WX_GL_MIN_ACCUM_ALPHA
109 class GLCanvas(_core
.Window
):
110 """Proxy of C++ GLCanvas class"""
111 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
112 __repr__
= _swig_repr
113 def __init__(self
, *args
, **kwargs
):
115 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
116 Size size=DefaultSize, long style=0, String name=GLCanvasNameStr,
117 int attribList=None, Palette palette=wxNullPalette) -> GLCanvas
119 _glcanvas
.GLCanvas_swiginit(self
,_glcanvas
.new_GLCanvas(*args
, **kwargs
))
120 self
._setOORInfo
(self
)
122 def SetCurrent(*args
, **kwargs
):
123 """SetCurrent(self)"""
124 return _glcanvas
.GLCanvas_SetCurrent(*args
, **kwargs
)
126 def SetColour(*args
, **kwargs
):
127 """SetColour(self, String colour)"""
128 return _glcanvas
.GLCanvas_SetColour(*args
, **kwargs
)
130 def SwapBuffers(*args
, **kwargs
):
131 """SwapBuffers(self)"""
132 return _glcanvas
.GLCanvas_SwapBuffers(*args
, **kwargs
)
134 def GetContext(*args
, **kwargs
):
135 """GetContext(self) -> GLContext"""
136 return _glcanvas
.GLCanvas_GetContext(*args
, **kwargs
)
138 def SetupPixelFormat(*args
, **kwargs
):
139 """SetupPixelFormat(self, int attribList=None)"""
140 return _glcanvas
.GLCanvas_SetupPixelFormat(*args
, **kwargs
)
142 def SetupPalette(*args
, **kwargs
):
143 """SetupPalette(self, Palette palette)"""
144 return _glcanvas
.GLCanvas_SetupPalette(*args
, **kwargs
)
146 def CreateDefaultPalette(*args
, **kwargs
):
147 """CreateDefaultPalette(self) -> Palette"""
148 return _glcanvas
.GLCanvas_CreateDefaultPalette(*args
, **kwargs
)
150 def GetPalette(*args
, **kwargs
):
151 """GetPalette(self) -> Palette"""
152 return _glcanvas
.GLCanvas_GetPalette(*args
, **kwargs
)
154 _glcanvas
.GLCanvas_swigregister(GLCanvas
)
156 def GLCanvasWithContext(*args
, **kwargs
):
158 GLCanvasWithContext(Window parent, GLContext shared=None, int id=-1, Point pos=DefaultPosition,
159 Size size=DefaultSize,
160 long style=0, String name=GLCanvasNameStr,
161 int attribList=None, Palette palette=wxNullPalette) -> GLCanvas
163 val
= _glcanvas
.new_GLCanvasWithContext(*args
, **kwargs
)