]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/glwindow.h
This is fix for failure of compilation on new libpng
[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         gtk_widget_queue_draw( m_pWidget );
68 }
69
70 void SetFocus(){
71         /* gdk_window_raise (m_pWidget->window); */
72 }
73
74 void SetCapture(){
75         m_bMouseCapture = TRUE;
76 }
77
78 void ReleaseCapture(){
79         m_bMouseCapture = FALSE;
80 }
81
82 bool HasCapture(){
83         return m_bMouseCapture;
84 }
85
86 GtkWidget* GetWidget(){
87         return m_pWidget;
88 }
89
90 // member variables
91 public:
92 GtkWidget* m_pParent;   // for floating windows only
93
94 protected:
95 bool m_bMouseCapture;
96 GtkWidget* m_pWidget;
97
98 private:
99 guint m_nTimer;        // only one timer supported
100 };
101
102 #endif //_GLWINDOW_H_