]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - include/iui_gtk.h
error check and bail if permission denied during gamepack install
[xonotic/netradiant.git] / include / iui_gtk.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 // This contains functions specific to the UI toolkit
26 //   it is best to avoid using them, but they are provided for backward compatibility with the older interfaces
27 //   the abstracted UI layer in iUI.h is not sufficient for some tasks .. no other choice than to rely on UI specific code
28
29 #ifndef __IGL_GTK_H__
30 #define __IGL_GTK_H__
31
32 #define UIGTK_MAJOR "uigtk"
33
34 // All OpenGL stuff is handled by GLWidget to ensure portability
35 typedef GtkWidget* ( WINAPI * PFN_QERAPP_GETQEGLOBALSGLWIDGET )();
36 typedef GtkWidget* ( WINAPI * PFN_GLWIDGET_NEW )( gboolean zbufffer, GtkWidget* share );
37 typedef void ( WINAPI * PFN_GLWIDGET_SWAPBUFFERS )( GtkWidget* widget );
38 typedef gboolean ( WINAPI * PFN_GLWIDGET_MAKECURRENT )( GtkWidget* widget );
39 typedef void ( WINAPI * PFN_GLWIDGET_DESTROYCONTEXT )( GtkWidget* widget );
40 typedef void ( WINAPI * PFN_GLWIDGET_CREATECONTEXT )( GtkWidget* widget );
41 #if 0
42 typedef gpointer ( WINAPI * PFN_GLWIDGET_GETCONTEXT )( GtkWidget* widget );
43 #endif
44
45 struct _QERUIGtkTable
46 {
47         int m_nSize;
48         PFN_QERAPP_GETQEGLOBALSGLWIDGET m_pfn_GetQeglobalsGLWidget;
49         PFN_GLWIDGET_NEW m_pfn_glwidget_new;
50         PFN_GLWIDGET_SWAPBUFFERS m_pfn_glwidget_swap_buffers;
51         PFN_GLWIDGET_MAKECURRENT m_pfn_glwidget_make_current;
52         PFN_GLWIDGET_DESTROYCONTEXT m_pfn_glwidget_destroy_context;
53         PFN_GLWIDGET_CREATECONTEXT m_pfn_glwidget_create_context;
54 #if 0
55         PFN_GLWIDGET_GETCONTEXT m_pfn_glwidget_get_context;
56 #endif
57 };
58
59 #endif