]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/carbon/glcanvas.h
moving all border invalidations into one area, also opening peer access for all
[wxWidgets.git] / include / wx / mac / carbon / glcanvas.h
CommitLineData
8cf73271
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: glcanvas.h
77ffb593 3// Purpose: wxGLCanvas, for using OpenGL with wxWidgets under Macintosh
8cf73271
SC
4// Author: Stefan Csomor
5// Modified by:
6// Created: 1998-01-01
7// RCS-ID: $Id$
8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
8cf73271
SC
10/////////////////////////////////////////////////////////////////////////////
11
db4c39a9
VZ
12#ifndef _WX_GLCANVAS_H_
13#define _WX_GLCANVAS_H_
14
8cf73271
SC
15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16# pragma interface "glcanvas.h"
17#endif
18
8cf73271
SC
19#include "wx/setup.h"
20
21#if wxUSE_GLCANVAS
22
23#include "wx/palette.h"
24#include "wx/scrolwin.h"
25#include "wx/app.h"
26
27#ifdef __DARWIN__
28# include <OpenGL/gl.h>
29# include <AGL/agl.h>
30#else
31# include <gl.h>
32# include <agl.h>
33#endif
34
35//---------------------------------------------------------------------------
36// Constants for attriblist
37//---------------------------------------------------------------------------
38
39enum
40{
41 WX_GL_RGBA=1, /* use true color palette */
42 WX_GL_BUFFER_SIZE, /* bits for buffer if not WX_GL_RGBA */
43 WX_GL_LEVEL, /* 0 for main buffer, >0 for overlay, <0 for underlay */
44 WX_GL_DOUBLEBUFFER, /* use doublebuffer */
45 WX_GL_STEREO, /* use stereoscopic display */
46 WX_GL_AUX_BUFFERS, /* number of auxiliary buffers */
47 WX_GL_MIN_RED, /* use red buffer with most bits (> MIN_RED bits) */
48 WX_GL_MIN_GREEN, /* use green buffer with most bits (> MIN_GREEN bits) */
49 WX_GL_MIN_BLUE, /* use blue buffer with most bits (> MIN_BLUE bits) */
50 WX_GL_MIN_ALPHA, /* use blue buffer with most bits (> MIN_ALPHA bits) */
51 WX_GL_DEPTH_SIZE, /* bits for Z-buffer (0,16,32) */
52 WX_GL_STENCIL_SIZE, /* bits for stencil buffer */
53 WX_GL_MIN_ACCUM_RED, /* use red accum buffer with most bits (> MIN_ACCUM_RED bits) */
54 WX_GL_MIN_ACCUM_GREEN, /* use green buffer with most bits (> MIN_ACCUM_GREEN bits) */
55 WX_GL_MIN_ACCUM_BLUE, /* use blue buffer with most bits (> MIN_ACCUM_BLUE bits) */
56 WX_GL_MIN_ACCUM_ALPHA /* use blue buffer with most bits (> MIN_ACCUM_ALPHA bits) */
57};
58
59class WXDLLEXPORT wxGLCanvas; /* forward reference */
60
61class WXDLLEXPORT wxGLContext: public wxObject
62{
63public:
64 wxGLContext(AGLPixelFormat fmt, wxGLCanvas *win,
65 const wxPalette& WXUNUSED(palette),
66 const wxGLContext *other /* for sharing display lists */
67 );
68 ~wxGLContext();
69
70 void SetCurrent();
71 void Update(); // must be called after window drag/grows/zoom or clut change
72 void SetColour(const wxChar *colour);
73 void SwapBuffers();
74
75
76 inline wxWindow* GetWindow() const { return m_window; }
77 inline AGLDrawable GetDrawable() const { return m_drawable; }
78
79public:
80 AGLContext m_glContext;
81 AGLDrawable m_drawable;
82 wxWindow* m_window;
83};
84
85class WXDLLEXPORT wxGLCanvas: public wxWindow
86{
87 DECLARE_CLASS(wxGLCanvas)
88 public:
89 wxGLCanvas(wxWindow *parent, wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition,
90 const wxSize& size = wxDefaultSize, long style = 0,
91 const wxString& name = wxT("GLCanvas") , int *attribList = 0, const wxPalette& palette = wxNullPalette);
a0573e8e 92 wxGLCanvas( wxWindow *parent, const wxGLContext *shared,
8cf73271
SC
93 wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition,
94 const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = wxT("GLCanvas"),
95 int *attribList = (int*) NULL, const wxPalette& palette = wxNullPalette );
96
a0573e8e 97 wxGLCanvas( wxWindow *parent, const wxGLCanvas *shared, wxWindowID id = -1,
8cf73271
SC
98 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0,
99 const wxString& name = wxT("GLCanvas"), int *attribList = 0, const wxPalette& palette = wxNullPalette );
100
101 ~wxGLCanvas();
102
103 bool Create(wxWindow *parent, const wxGLContext *shared, wxWindowID id,
104 const wxPoint& pos, const wxSize& size, long style, const wxString& name,
105 int *attribList, const wxPalette& palette);
106
107 void SetCurrent();
108 void SetColour(const wxChar *colour);
109 void SwapBuffers();
110 void UpdateContext();
111 void SetViewport();
112 virtual bool Show(bool show = TRUE) ;
113
114 // Unlike some other platforms, this must get called if you override it.
115 // It sets the viewport correctly and update the context.
116 // You shouldn't call glViewport yourself either (use SetViewport if you must reset it.)
117 void OnSize(wxSizeEvent& event);
118
119 virtual void MacSuperChangedPosition() ;
120 virtual void MacTopLevelWindowChangedPosition() ;
aa4d3151 121 virtual void MacVisibilityChanged() ;
8cf73271
SC
122
123 void MacUpdateView() ;
124
125 inline wxGLContext* GetContext() const { return m_glContext; }
126
127protected:
128 wxGLContext* m_glContext;
129 bool m_macCanvasIsShown ;
130DECLARE_EVENT_TABLE()
131};
132
133#endif // wxUSE_GLCANVAS
134#endif // _WX_GLCANVAS_H_