]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/contrib/glcanvas/msw/glcanvas.py
1 # This file was created automatically by SWIG.
2 # Don't modify this file, modify the SWIG interface instead.
8 __docfilter__
= wx
.__docfilter
__
9 class GLContext(_core
.Object
):
11 return "<%s.%s; proxy of C++ wxGLContext instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
12 def __init__(self
, *args
, **kwargs
):
14 __init__(self, bool isRGB, GLCanvas win, wxPalette palette=wxNullPalette,
15 GLContext other=None) -> GLContext
17 newobj
= _glcanvas
.new_GLContext(*args
, **kwargs
)
18 self
.this
= newobj
.this
21 def __del__(self
, destroy
=_glcanvas
.delete_GLContext
):
24 if self
.thisown
: destroy(self
)
27 def SetCurrent(*args
, **kwargs
):
28 """SetCurrent(self)"""
29 return _glcanvas
.GLContext_SetCurrent(*args
, **kwargs
)
31 def SetColour(*args
, **kwargs
):
32 """SetColour(self, String colour)"""
33 return _glcanvas
.GLContext_SetColour(*args
, **kwargs
)
35 def SwapBuffers(*args
, **kwargs
):
36 """SwapBuffers(self)"""
37 return _glcanvas
.GLContext_SwapBuffers(*args
, **kwargs
)
39 def GetWindow(*args
, **kwargs
):
40 """GetWindow(self) -> Window"""
41 return _glcanvas
.GLContext_GetWindow(*args
, **kwargs
)
44 class GLContextPtr(GLContext
):
45 def __init__(self
, this
):
47 if not hasattr(self
,"thisown"): self
.thisown
= 0
48 self
.__class
__ = GLContext
49 _glcanvas
.GLContext_swigregister(GLContextPtr
)
51 GLCanvasNameStr
= cvar
.GLCanvasNameStr
53 WX_GL_RGBA
= _glcanvas
.WX_GL_RGBA
54 WX_GL_BUFFER_SIZE
= _glcanvas
.WX_GL_BUFFER_SIZE
55 WX_GL_LEVEL
= _glcanvas
.WX_GL_LEVEL
56 WX_GL_DOUBLEBUFFER
= _glcanvas
.WX_GL_DOUBLEBUFFER
57 WX_GL_STEREO
= _glcanvas
.WX_GL_STEREO
58 WX_GL_AUX_BUFFERS
= _glcanvas
.WX_GL_AUX_BUFFERS
59 WX_GL_MIN_RED
= _glcanvas
.WX_GL_MIN_RED
60 WX_GL_MIN_GREEN
= _glcanvas
.WX_GL_MIN_GREEN
61 WX_GL_MIN_BLUE
= _glcanvas
.WX_GL_MIN_BLUE
62 WX_GL_MIN_ALPHA
= _glcanvas
.WX_GL_MIN_ALPHA
63 WX_GL_DEPTH_SIZE
= _glcanvas
.WX_GL_DEPTH_SIZE
64 WX_GL_STENCIL_SIZE
= _glcanvas
.WX_GL_STENCIL_SIZE
65 WX_GL_MIN_ACCUM_RED
= _glcanvas
.WX_GL_MIN_ACCUM_RED
66 WX_GL_MIN_ACCUM_GREEN
= _glcanvas
.WX_GL_MIN_ACCUM_GREEN
67 WX_GL_MIN_ACCUM_BLUE
= _glcanvas
.WX_GL_MIN_ACCUM_BLUE
68 WX_GL_MIN_ACCUM_ALPHA
= _glcanvas
.WX_GL_MIN_ACCUM_ALPHA
69 class GLCanvas(_core
.Window
):
71 return "<%s.%s; proxy of C++ wxGLCanvas instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
72 def __init__(self
, *args
, **kwargs
):
74 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
75 Size size=DefaultSize, long style=0, String name=GLCanvasNameStr,
76 int attribList=None, wxPalette palette=wxNullPalette) -> GLCanvas
78 newobj
= _glcanvas
.new_GLCanvas(*args
, **kwargs
)
79 self
.this
= newobj
.this
82 self
._setOORInfo
(self
)
84 def SetCurrent(*args
, **kwargs
):
85 """SetCurrent(self)"""
86 return _glcanvas
.GLCanvas_SetCurrent(*args
, **kwargs
)
88 def SetColour(*args
, **kwargs
):
89 """SetColour(self, String colour)"""
90 return _glcanvas
.GLCanvas_SetColour(*args
, **kwargs
)
92 def SwapBuffers(*args
, **kwargs
):
93 """SwapBuffers(self)"""
94 return _glcanvas
.GLCanvas_SwapBuffers(*args
, **kwargs
)
96 def GetContext(*args
, **kwargs
):
97 """GetContext(self) -> GLContext"""
98 return _glcanvas
.GLCanvas_GetContext(*args
, **kwargs
)
100 def SetupPixelFormat(*args
, **kwargs
):
101 """SetupPixelFormat(self, int attribList=None)"""
102 return _glcanvas
.GLCanvas_SetupPixelFormat(*args
, **kwargs
)
104 def SetupPalette(*args
, **kwargs
):
105 """SetupPalette(self, wxPalette palette)"""
106 return _glcanvas
.GLCanvas_SetupPalette(*args
, **kwargs
)
108 def CreateDefaultPalette(*args
, **kwargs
):
109 """CreateDefaultPalette(self) -> wxPalette"""
110 return _glcanvas
.GLCanvas_CreateDefaultPalette(*args
, **kwargs
)
112 def GetPalette(*args
, **kwargs
):
113 """GetPalette(self) -> wxPalette"""
114 return _glcanvas
.GLCanvas_GetPalette(*args
, **kwargs
)
117 class GLCanvasPtr(GLCanvas
):
118 def __init__(self
, this
):
120 if not hasattr(self
,"thisown"): self
.thisown
= 0
121 self
.__class
__ = GLCanvas
122 _glcanvas
.GLCanvas_swigregister(GLCanvasPtr
)
124 def GLCanvasWithContext(*args
, **kwargs
):
126 GLCanvasWithContext(Window parent, GLContext shared=None, int id=-1, Point pos=DefaultPosition,
127 Size size=DefaultSize,
128 long style=0, String name=GLCanvasNameStr,
129 int attribList=None, wxPalette palette=wxNullPalette) -> GLCanvas
131 val
= _glcanvas
.new_GLCanvasWithContext(*args
, **kwargs
)