]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/ui.h
error check and bail if permission denied during gamepack install
[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 virtual ~CXYWndWrapper() {}
35 void SnapToGrid( int x1, int y1, vec3_t pt );
36 VIEWTYPE GetViewType( void );
37 };
38
39 // implementation of the IWindow API
40 class CGtkWindow : public IWindow
41 {
42 int refCount;
43 GtkWidget *m_pWnd;
44 GtkWidget *m_pGLWidget;
45 int m_nWidthParam,m_nHeightParam;
46 IWindowListener *m_pListen;
47 Str m_Name;
48 public:
49 CGtkWindow() { refCount = 0; m_pWnd = NULL; m_pGLWidget = NULL; m_nWidthParam = 0; m_nHeightParam = 0; m_pListen = 0; m_Name = "CGtkWindow"; }
50 virtual ~CGtkWindow(){
51         if ( m_pListen ) {
52                 m_pListen->DecRef(); m_pListen = NULL;
53         }
54         if ( m_pWnd ) {
55                 gtk_widget_destroy( m_pWnd ); m_pWnd = NULL;
56         }
57 }
58 // refcounting ----------------------------------------
59 // Increment the number of references to this object
60 void IncRef() { refCount++; }
61 // Decrement the reference count
62 void DecRef(){
63         if ( --refCount <= 0 ) {
64                 delete this;
65         }
66 }
67 // IWindow --------------------------------------------
68 // get pixel size
69 int getHeight() { return m_pWnd->allocation.height; }
70 int getWidth() { return m_pWnd->allocation.width; }
71 // set pixel size and other parameters before showing it
72 void setSizeParm( int width, int height ) { m_nWidthParam = width; m_nHeightParam = height; }
73 // set the IWindowListener (implemented by the plugin using this window)
74 void setListener( IWindowListener * pListen ) { m_pListen = pListen; m_pListen->IncRef(); }
75 // set the name (optional)
76 void setName( char *name ) { m_Name = name; }
77 // will actually create the GL and the window based on the parameters
78 bool Show();
79 // CGtkWindow -----------------------------------------
80 // called upon a closure of the widget
81 void Close();
82 // called to manage GL context and buffer swapping before display
83 void DoExpose();
84 // commands -------------------------------------------
85 // call this to ask for a Redraw
86 void Redraw();
87 };
88
89 #endif