1999-08-11 17:14:49 +00: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 21:25:33 +00:00
|
|
|
%define DOCSTRING
|
|
|
|
"`GLCanvas` provides an OpenGL Context on a `wx.Window`."
|
|
|
|
%enddef
|
2004-06-02 02:29:55 +00:00
|
|
|
|
|
|
|
%module(package="wx", docstring=DOCSTRING) glcanvas
|
1999-08-11 17:14:49 +00:00
|
|
|
|
|
|
|
%{
|
2003-11-12 21:34:20 +00:00
|
|
|
#include "wx/wxPython/wxPython.h"
|
|
|
|
#include "wx/wxPython/pyclasses.h"
|
2003-08-25 20:22:05 +00:00
|
|
|
|
2001-10-13 00:41:21 +00:00
|
|
|
#include <wx/glcanvas.h>
|
|
|
|
|
1999-08-11 17:14:49 +00:00
|
|
|
%}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2003-11-12 21:34:20 +00:00
|
|
|
%import core.i
|
2004-04-25 06:51:10 +00:00
|
|
|
%pythoncode { wx = _core }
|
2004-04-27 19:26:48 +00:00
|
|
|
%pythoncode { __docfilter__ = wx.__DocFilter(globals()) }
|
2002-03-21 05:50:09 +00:00
|
|
|
|
2003-12-20 01:01:49 +00:00
|
|
|
|
2004-01-06 21:17:32 +00:00
|
|
|
MAKE_CONST_WXSTRING2(GLCanvasNameStr, wxT("GLCanvas"));
|
2003-12-20 01:01:49 +00:00
|
|
|
MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
|
|
|
|
|
|
|
|
|
2003-11-12 21:34:20 +00:00
|
|
|
%include _glcanvas_rename.i
|
2002-03-21 05:50:09 +00:00
|
|
|
|
1999-08-11 17:14:49 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxPalette;
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2004-06-01 21:38:05 +00:00
|
|
|
MustHaveApp(wxGLContext);
|
|
|
|
|
2001-05-17 22:47:09 +00:00
|
|
|
class wxGLContext : public wxObject {
|
1999-08-11 17:14:49 +00:00
|
|
|
public:
|
2003-11-12 21:34:20 +00:00
|
|
|
#ifndef __WXMAC__
|
2001-10-12 23:26:38 +00:00
|
|
|
wxGLContext(bool isRGB, wxGLCanvas *win,
|
2003-11-12 21:34:20 +00: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 23:19:16 +00:00
|
|
|
#endif
|
1999-08-11 17:14:49 +00:00
|
|
|
~wxGLContext();
|
|
|
|
|
|
|
|
void SetCurrent();
|
2003-03-25 06:35:27 +00:00
|
|
|
void SetColour(const wxString& colour);
|
1999-08-11 17:14:49 +00:00
|
|
|
void SwapBuffers();
|
|
|
|
|
|
|
|
#ifdef __WXGTK__
|
|
|
|
void SetupPixelFormat();
|
|
|
|
void SetupPalette(const wxPalette& palette);
|
|
|
|
wxPalette CreateDefaultPalette();
|
|
|
|
wxPalette* GetPalette();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
wxWindow* GetWindow();
|
|
|
|
};
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2001-11-20 02:04:03 +00: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 21:34:20 +00:00
|
|
|
%typemap(in) int *attribList (int *temp) {
|
2000-10-30 21:08:42 +00:00
|
|
|
int i;
|
2003-11-12 21:34:20 +00:00
|
|
|
if (PySequence_Check($input)) {
|
|
|
|
int size = PyObject_Length($input);
|
2000-10-30 21:08:42 +00:00
|
|
|
temp = new int[size+1]; // (int*)malloc((size + 1) * sizeof(int));
|
|
|
|
for (i = 0; i < size; i++) {
|
2003-11-12 21:34:20 +00:00
|
|
|
temp[i] = PyInt_AsLong(PySequence_GetItem($input, i));
|
2000-10-30 21:08:42 +00:00
|
|
|
}
|
|
|
|
temp[size] = 0;
|
2003-11-12 21:34:20 +00:00
|
|
|
$1 = temp;
|
2000-10-30 21:08:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-12 21:34:20 +00:00
|
|
|
%typemap(freearg) int *attribList
|
2000-10-30 21:08:42 +00:00
|
|
|
{
|
2003-11-12 21:34:20 +00:00
|
|
|
delete [] $1;
|
2000-10-30 21:08:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-06-01 21:38:05 +00:00
|
|
|
MustHaveApp(wxGLCanvas);
|
|
|
|
|
2001-11-02 20:56:23 +00:00
|
|
|
class wxGLCanvas : public wxWindow {
|
1999-08-11 17:14:49 +00:00
|
|
|
public:
|
2004-01-31 01:18:37 +00:00
|
|
|
%pythonAppend wxGLCanvas "self._setOORInfo(self)"
|
1999-08-11 17:14:49 +00:00
|
|
|
wxGLCanvas(wxWindow *parent, wxWindowID id = -1,
|
2000-12-22 00:06:04 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize, long style = 0,
|
2002-03-21 05:50:09 +00:00
|
|
|
const wxString& name = wxPyGLCanvasNameStr,
|
2000-10-30 21:08:42 +00:00
|
|
|
int *attribList = NULL,
|
1999-08-11 17:14:49 +00:00
|
|
|
const wxPalette& palette = wxNullPalette);
|
|
|
|
|
2004-01-31 01:18:37 +00:00
|
|
|
%pythonAppend wxGLCanvas "val._setOORInfo(val)"
|
2004-12-23 20:44:09 +00:00
|
|
|
%RenameCtor(GLCanvasWithContext,
|
2001-10-12 23:26:38 +00: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 05:50:09 +00:00
|
|
|
const wxString& name = wxPyGLCanvasNameStr,
|
2001-10-12 23:26:38 +00:00
|
|
|
int *attribList = NULL,
|
2004-12-23 20:44:09 +00:00
|
|
|
const wxPalette& palette = wxNullPalette ));
|
2001-10-12 23:26:38 +00:00
|
|
|
|
1999-08-11 17:14:49 +00:00
|
|
|
|
|
|
|
void SetCurrent();
|
2003-03-25 06:35:27 +00:00
|
|
|
void SetColour(const wxString& colour);
|
1999-08-11 17:14:49 +00:00
|
|
|
void SwapBuffers();
|
|
|
|
|
|
|
|
wxGLContext* GetContext();
|
2001-10-12 23:26:38 +00:00
|
|
|
|
2001-10-13 00:41:21 +00:00
|
|
|
#ifdef __WXMSW__
|
|
|
|
void SetupPixelFormat(int *attribList = NULL);
|
|
|
|
void SetupPalette(const wxPalette& palette);
|
|
|
|
wxPalette CreateDefaultPalette();
|
|
|
|
wxPalette* GetPalette();
|
|
|
|
#endif
|
1999-08-11 17:14:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
%init %{
|
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------
|