]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - include/iui_gtk.h
compiles on OSX (10.4.10 Intel)
[xonotic/netradiant.git] / include / iui_gtk.h
1 /*\r
2 Copyright (C) 1999-2007 id Software, Inc. and contributors.\r
3 For a list of contributors, see the accompanying CONTRIBUTORS file.\r
4 \r
5 This file is part of GtkRadiant.\r
6 \r
7 GtkRadiant is free software; you can redistribute it and/or modify\r
8 it under the terms of the GNU General Public License as published by\r
9 the Free Software Foundation; either version 2 of the License, or\r
10 (at your option) any later version.\r
11 \r
12 GtkRadiant is distributed in the hope that it will be useful,\r
13 but WITHOUT ANY WARRANTY; without even the implied warranty of\r
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
15 GNU General Public License for more details.\r
16 \r
17 You should have received a copy of the GNU General Public License\r
18 along with GtkRadiant; if not, write to the Free Software\r
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r
20 */\r
21 \r
22 //-----------------------------------------------------------------------------\r
23 //\r
24 // DESCRIPTION\r
25 // This contains functions specific to the UI toolkit\r
26 //   it is best to avoid using them, but they are provided for backward compatibility with the older interfaces\r
27 //   the abstracted UI layer in iUI.h is not sufficient for some tasks .. no other choice than to rely on UI specific code\r
28 \r
29 #ifndef __IGL_GTK_H__\r
30 #define __IGL_GTK_H__\r
31 \r
32 #define UIGTK_MAJOR "uigtk"\r
33 \r
34 // All OpenGL stuff is handled by GLWidget to ensure portability\r
35 typedef GtkWidget* (WINAPI* PFN_QERAPP_GETQEGLOBALSGLWIDGET) (); \r
36 typedef GtkWidget* (WINAPI* PFN_GLWIDGET_NEW) (gboolean zbufffer, GtkWidget* share);\r
37 typedef void       (WINAPI* PFN_GLWIDGET_SWAPBUFFERS) (GtkWidget* widget);\r
38 typedef gboolean   (WINAPI* PFN_GLWIDGET_MAKECURRENT) (GtkWidget* widget);\r
39 typedef void       (WINAPI* PFN_GLWIDGET_DESTROYCONTEXT) (GtkWidget* widget);\r
40 typedef void       (WINAPI* PFN_GLWIDGET_CREATECONTEXT) (GtkWidget* widget);\r
41 #if 0\r
42 typedef gpointer   (WINAPI* PFN_GLWIDGET_GETCONTEXT) (GtkWidget* widget);\r
43 #endif\r
44 \r
45 struct _QERUIGtkTable\r
46 {\r
47   int m_nSize;\r
48   PFN_QERAPP_GETQEGLOBALSGLWIDGET       m_pfn_GetQeglobalsGLWidget;\r
49   PFN_GLWIDGET_NEW                      m_pfn_glwidget_new;\r
50   PFN_GLWIDGET_SWAPBUFFERS              m_pfn_glwidget_swap_buffers;\r
51   PFN_GLWIDGET_MAKECURRENT              m_pfn_glwidget_make_current;\r
52   PFN_GLWIDGET_DESTROYCONTEXT           m_pfn_glwidget_destroy_context;\r
53   PFN_GLWIDGET_CREATECONTEXT            m_pfn_glwidget_create_context;\r
54 #if 0\r
55   PFN_GLWIDGET_GETCONTEXT               m_pfn_glwidget_get_context;\r
56 #endif\r
57 };\r
58 \r
59 #endif\r