]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/ui.h
7bc99c949ab30bd160b4db9ad229fcb83608baf7
[xonotic/netradiant.git] / radiant / ui.h
1 /*
2 Copyright (C) 1999-2007 id Software, Inc. and contributors.
3 For a list of contributors, see the accompanying CONTRIBUTORS file.
4
5 This file is part of GtkRadiant.
6
7 GtkRadiant is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 GtkRadiant is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GtkRadiant; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20 */
21
22 //-----------------------------------------------------------------------------
23 //
24 // DESCRIPTION:
25 // headers for internal classes used in Messaging.cpp
26 // 
27
28 #ifndef __MESSAGING_H_
29 #define __MESSAGING_H_
30
31 class CXYWndWrapper : public IXYWndWrapper
32 {
33 public:
34   void SnapToGrid( int x1, int y1, vec3_t pt );
35   VIEWTYPE GetViewType( void );
36 };
37
38 // implementation of the IWindow API
39 class CGtkWindow : public IWindow
40 {
41   int refCount;
42   GtkWidget *m_pWnd;
43   GtkWidget *m_pGLWidget;
44   int m_nWidthParam,m_nHeightParam;
45   IWindowListener *m_pListen;
46   Str m_Name;
47 public:
48   CGtkWindow() { refCount = 0; m_pWnd = NULL; m_pGLWidget = NULL; m_nWidthParam = 0; m_nHeightParam = 0; m_pListen = 0; m_Name = "CGtkWindow"; }
49   virtual ~CGtkWindow()
50   {
51     if (m_pListen) { m_pListen->DecRef(); m_pListen = NULL; }
52     if (m_pWnd) { gtk_widget_destroy(m_pWnd); m_pWnd = NULL; }
53   }
54   // refcounting ----------------------------------------
55         // Increment the number of references to this object
56         void IncRef () { refCount++; }
57         // Decrement the reference count
58         void DecRef ()
59         { if ( --refCount <= 0 )
60                 delete this;
61         }
62   // IWindow --------------------------------------------
63   // get pixel size
64   int getHeight() { return m_pWnd->allocation.height; }
65   int getWidth() { return m_pWnd->allocation.width; }
66   // set pixel size and other parameters before showing it
67   void setSizeParm(int width, int height) { m_nWidthParam = width; m_nHeightParam = height; }
68   // set the IWindowListener (implemented by the plugin using this window)
69   void setListener(IWindowListener * pListen) { m_pListen = pListen; m_pListen->IncRef(); }
70   // set the name (optional)
71   void setName(char *name) { m_Name = name; }
72   // will actually create the GL and the window based on the parameters
73   bool Show();
74   // CGtkWindow -----------------------------------------
75   // called upon a closure of the widget
76   void Close();
77   // called to manage GL context and buffer swapping before display
78   void DoExpose();
79   // commands -------------------------------------------
80   // call this to ask for a Redraw
81   void Redraw();
82 };
83
84 #endif