]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/glwindow.h
* use CMD_SEP in sample plugin (minor cleanup)
[xonotic/netradiant.git] / radiant / glwindow.h
1 /*
2 Copyright (c) 2001, Loki software, inc.
3 All rights reserved.
4
5 Redistribution and use in source and binary forms, with or without modification, 
6 are permitted provided that the following conditions are met:
7
8 Redistributions of source code must retain the above copyright notice, this list 
9 of conditions and the following disclaimer.
10
11 Redistributions in binary form must reproduce the above copyright notice, this
12 list of conditions and the following disclaimer in the documentation and/or
13 other materials provided with the distribution.
14
15 Neither the name of Loki software nor the names of its contributors may be used 
16 to endorse or promote products derived from this software without specific prior 
17 written permission. 
18
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' 
20 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
21 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
22 DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY 
23 DIRECT,INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
24 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
25 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 
26 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
27 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
28 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
29 */
30
31 #ifndef _GLWINDOW_H_
32 #define _GLWINDOW_H_
33
34 class GLWindow
35 {
36  public:
37   GLWindow (bool zbuffer);
38   virtual ~GLWindow ();
39
40   bool MakeCurrent ();
41   void SwapBuffers ();
42   void SetTimer (guint millisec);
43   void KillTimer ();
44   bool HasTimer ()
45     { return m_nTimer != 0; }
46   void DestroyContext ();
47   void CreateContext ();
48
49   virtual void OnCreate () { }
50   virtual void OnExpose () { }
51
52   virtual void OnLButtonDown (guint32 flags, int x, int y) { }
53   virtual void OnRButtonDown (guint32 flags, int x, int y) { }
54   virtual void OnMButtonDown (guint32 flags, int x, int y) { }
55   virtual void OnLButtonUp (guint32 flags, int pointx, int pointy) { }
56   virtual void OnRButtonUp (guint32 flags, int pointx, int pointy) { }
57   virtual void OnMButtonUp (guint32 flags, int pointx, int pointy) { }
58   virtual void OnMouseMove (guint32 flags, int pointx, int pointy) { }
59
60   
61   virtual void OnSize (int cx, int cy) { }
62   virtual void OnTimer () { }
63
64   virtual void OnMouseWheel (bool bUp) { }
65
66   void RedrawWindow ()
67   {
68     gtk_widget_queue_draw(m_pWidget);
69   }
70
71   void SetFocus ()
72   {
73     /* gdk_window_raise (m_pWidget->window); */
74   }
75
76   void SetCapture ()
77   {
78     m_bMouseCapture = TRUE;
79   }
80
81   void ReleaseCapture ()
82   {
83     m_bMouseCapture = FALSE;
84   }
85
86   bool HasCapture ()
87   {
88     return m_bMouseCapture;
89   }
90
91   GtkWidget* GetWidget ()
92   {
93     return m_pWidget;
94   }
95
96   // member variables
97  public:
98   GtkWidget* m_pParent; // for floating windows only
99
100  protected:
101   bool       m_bMouseCapture;
102   GtkWidget* m_pWidget;
103
104  private:
105   guint      m_nTimer; // only one timer supported
106 };
107
108 #endif //_GLWINDOW_H_