1999-08-11 13:14:49 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: glcanvas.i
|
|
|
|
// Purpose: SWIG definitions for the OpenGL wxWindows classes
|
|
|
|
//
|
|
|
|
// Author: Robin Dunn
|
|
|
|
//
|
|
|
|
// Created: 15-Mar-1999
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1998 by Total Control Software
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2004-05-14 17:25:33 -04:00
|
|
|
%define DOCSTRING
|
|
|
|
"`GLCanvas` provides an OpenGL Context on a `wx.Window`."
|
|
|
|
%enddef
|
2004-06-01 22:29:55 -04:00
|
|
|
|
|
|
|
%module(package="wx", docstring=DOCSTRING) glcanvas
|
1999-08-11 13:14:49 -04:00
|
|
|
|
|
|
|
%{
|
2003-11-12 16:34:20 -05:00
|
|
|
#include "wx/wxPython/wxPython.h"
|
|
|
|
#include "wx/wxPython/pyclasses.h"
|
2003-08-25 16:22:05 -04:00
|
|
|
|
2001-10-12 20:41:21 -04:00
|
|
|
#include <wx/glcanvas.h>
|
|
|
|
|
1999-08-11 13:14:49 -04:00
|
|
|
%}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2003-11-12 16:34:20 -05:00
|
|
|
%import core.i
|
2004-04-25 02:51:10 -04:00
|
|
|
%pythoncode { wx = _core }
|
2004-04-27 15:26:48 -04:00
|
|
|
%pythoncode { __docfilter__ = wx.__DocFilter(globals()) }
|
2002-03-21 00:50:09 -05:00
|
|
|
|
2003-12-19 20:01:49 -05:00
|
|
|
|
2004-01-06 16:17:32 -05:00
|
|
|
MAKE_CONST_WXSTRING2(GLCanvasNameStr, wxT("GLCanvas"));
|
2003-12-19 20:01:49 -05:00
|
|
|
MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
|
|
|
|
|
|
|
|
|
2003-11-12 16:34:20 -05:00
|
|
|
%include _glcanvas_rename.i
|
2002-03-21 00:50:09 -05:00
|
|
|
|
1999-08-11 13:14:49 -04:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxPalette;
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2004-06-01 17:38:05 -04:00
|
|
|
MustHaveApp(wxGLContext);
|
|
|
|
|
2001-05-17 18:47:09 -04:00
|
|
|
class wxGLContext : public wxObject {
|
1999-08-11 13:14:49 -04:00
|
|
|
public:
|
2003-11-12 16:34:20 -05:00
|
|
|
#ifndef __WXMAC__
|
2001-10-12 19:26:38 -04:00
|
|
|
wxGLContext(bool isRGB, wxGLCanvas *win,
|
2003-11-12 16:34:20 -05:00
|
|
|
const wxPalette& palette = wxNullPalette,
|
|
|
|
const wxGLContext* other = NULL);
|
|
|
|
#else
|
|
|
|
%extend {
|
|
|
|
wxGLContext(bool isRGB, wxGLCanvas *win,
|
|
|
|
const wxPalette& palette = wxNullPalette,
|
|
|
|
const wxGLContext* other = NULL) {
|
|
|
|
AGLPixelFormat fmt; // TODO: How should this be initialized?
|
|
|
|
return new wxGLContext(fmt, win, palette, other);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-09 18:19:16 -05:00
|
|
|
#endif
|
1999-08-11 13:14:49 -04:00
|
|
|
~wxGLContext();
|
|
|
|
|
|
|
|
void SetCurrent();
|
2003-03-25 01:35:27 -05:00
|
|
|
void SetColour(const wxString& colour);
|
1999-08-11 13:14:49 -04:00
|
|
|
void SwapBuffers();
|
|
|
|
|
|
|
|
#ifdef __WXGTK__
|
|
|
|
void SetupPixelFormat();
|
|
|
|
void SetupPalette(const wxPalette& palette);
|
|
|
|
wxPalette CreateDefaultPalette();
|
|
|
|
wxPalette* GetPalette();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
wxWindow* GetWindow();
|
|
|
|
};
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2001-11-19 21:04:03 -05:00
|
|
|
enum {
|
|
|
|
WX_GL_RGBA, // use true color palette
|
|
|
|
WX_GL_BUFFER_SIZE, // bits for buffer if not WX_GL_RGBA
|
|
|
|
WX_GL_LEVEL, // 0 for main buffer, >0 for overlay, <0 for underlay
|
|
|
|
WX_GL_DOUBLEBUFFER, // use doublebuffer
|
|
|
|
WX_GL_STEREO, // use stereoscopic display
|
|
|
|
WX_GL_AUX_BUFFERS, // number of auxiliary buffers
|
|
|
|
WX_GL_MIN_RED, // use red buffer with most bits (> MIN_RED bits)
|
|
|
|
WX_GL_MIN_GREEN, // use green buffer with most bits (> MIN_GREEN bits)
|
|
|
|
WX_GL_MIN_BLUE, // use blue buffer with most bits (> MIN_BLUE bits)
|
|
|
|
WX_GL_MIN_ALPHA, // use blue buffer with most bits (> MIN_ALPHA bits)
|
|
|
|
WX_GL_DEPTH_SIZE, // bits for Z-buffer (0,16,32)
|
|
|
|
WX_GL_STENCIL_SIZE, // bits for stencil buffer
|
|
|
|
WX_GL_MIN_ACCUM_RED, // use red accum buffer with most bits (> MIN_ACCUM_RED bits)
|
|
|
|
WX_GL_MIN_ACCUM_GREEN, // use green buffer with most bits (> MIN_ACCUM_GREEN bits)
|
|
|
|
WX_GL_MIN_ACCUM_BLUE, // use blue buffer with most bits (> MIN_ACCUM_BLUE bits)
|
|
|
|
WX_GL_MIN_ACCUM_ALPHA // use blue buffer with most bits (> MIN_ACCUM_ALPHA bits)
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-11-12 16:34:20 -05:00
|
|
|
%typemap(in) int *attribList (int *temp) {
|
2000-10-30 16:08:42 -05:00
|
|
|
int i;
|
2003-11-12 16:34:20 -05:00
|
|
|
if (PySequence_Check($input)) {
|
|
|
|
int size = PyObject_Length($input);
|
2000-10-30 16:08:42 -05:00
|
|
|
temp = new int[size+1]; // (int*)malloc((size + 1) * sizeof(int));
|
|
|
|
for (i = 0; i < size; i++) {
|
2003-11-12 16:34:20 -05:00
|
|
|
temp[i] = PyInt_AsLong(PySequence_GetItem($input, i));
|
2000-10-30 16:08:42 -05:00
|
|
|
}
|
|
|
|
temp[size] = 0;
|
2003-11-12 16:34:20 -05:00
|
|
|
$1 = temp;
|
2000-10-30 16:08:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-12 16:34:20 -05:00
|
|
|
%typemap(freearg) int *attribList
|
2000-10-30 16:08:42 -05:00
|
|
|
{
|
2003-11-12 16:34:20 -05:00
|
|
|
delete [] $1;
|
2000-10-30 16:08:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-06-01 17:38:05 -04:00
|
|
|
MustHaveApp(wxGLCanvas);
|
|
|
|
|
2001-11-02 15:56:23 -05:00
|
|
|
class wxGLCanvas : public wxWindow {
|
1999-08-11 13:14:49 -04:00
|
|
|
public:
|
2004-01-30 20:18:37 -05:00
|
|
|
%pythonAppend wxGLCanvas "self._setOORInfo(self)"
|
1999-08-11 13:14:49 -04:00
|
|
|
wxGLCanvas(wxWindow *parent, wxWindowID id = -1,
|
2000-12-21 19:06:04 -05:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize, long style = 0,
|
2002-03-21 00:50:09 -05:00
|
|
|
const wxString& name = wxPyGLCanvasNameStr,
|
2000-10-30 16:08:42 -05:00
|
|
|
int *attribList = NULL,
|
1999-08-11 13:14:49 -04:00
|
|
|
const wxPalette& palette = wxNullPalette);
|
|
|
|
|
2004-01-30 20:18:37 -05:00
|
|
|
%pythonAppend wxGLCanvas "val._setOORInfo(val)"
|
2004-01-23 17:48:15 -05:00
|
|
|
%name(GLCanvasWithContext)
|
2001-10-12 19:26:38 -04:00
|
|
|
wxGLCanvas( wxWindow *parent,
|
|
|
|
const wxGLContext *shared = NULL,
|
|
|
|
wxWindowID id = -1,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
2002-03-21 00:50:09 -05:00
|
|
|
const wxString& name = wxPyGLCanvasNameStr,
|
2001-10-12 19:26:38 -04:00
|
|
|
int *attribList = NULL,
|
|
|
|
const wxPalette& palette = wxNullPalette );
|
|
|
|
|
1999-08-11 13:14:49 -04:00
|
|
|
|
|
|
|
void SetCurrent();
|
2003-03-25 01:35:27 -05:00
|
|
|
void SetColour(const wxString& colour);
|
1999-08-11 13:14:49 -04:00
|
|
|
void SwapBuffers();
|
|
|
|
|
|
|
|
wxGLContext* GetContext();
|
2001-10-12 19:26:38 -04:00
|
|
|
|
2001-10-12 20:41:21 -04:00
|
|
|
#ifdef __WXMSW__
|
|
|
|
void SetupPixelFormat(int *attribList = NULL);
|
|
|
|
void SetupPalette(const wxPalette& palette);
|
|
|
|
wxPalette CreateDefaultPalette();
|
|
|
|
wxPalette* GetPalette();
|
|
|
|
#endif
|
1999-08-11 13:14:49 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
%init %{
|
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------
|