]> git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/textool/StdAfx.h
Remove <gtk/gtk.h> from plugins/*
[xonotic/netradiant.git] / plugins / textool / StdAfx.h
1 /*
2    Copyright (C) 1999-2006 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 // stdafx.h
23 // precompiled headers
24
25 // standard headers
26 #include <gdk/gdkkeysyms.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29
30 #if !defined( WIN32 )
31
32 // Necessary for proper boolean type declaration
33 #include "qertypes.h"
34
35 typedef void* HMODULE;
36 typedef void* LPVOID;
37 typedef char* LPCSTR;
38
39 #define MB_OK                       0x00000000L
40 #define MB_OKCANCEL                 0x00000001L
41 #define MB_ABORTRETRYIGNORE         0x00000002L
42 #define MB_YESNOCANCEL              0x00000003L
43 #define MB_YESNO                    0x00000004L
44 #define MB_RETRYCANCEL              0x00000005L
45
46
47 #define MB_ICONHAND                 0x00000010L
48 #define MB_ICONQUESTION             0x00000020L
49 #define MB_ICONEXCLAMATION          0x00000030L
50 #define MB_ICONASTERISK             0x00000040L
51
52 #define MB_USERICON                 0x00000080L
53 #define MB_ICONWARNING              MB_ICONEXCLAMATION
54 #define MB_ICONERROR                MB_ICONHAND
55 #define MB_ICONINFORMATION          MB_ICONASTERISK
56 #define MB_ICONSTOP                 MB_ICONHAND
57
58 #define MB_TYPEMASK                 0x0000000FL
59 #define MB_ICONMASK                 0x000000F0L
60 #define MB_DEFMASK                  0x00000F00L
61 #define MB_MODEMASK                 0x00003000L
62 #define MB_MISCMASK                 0x0000C000L
63
64 #define IDOK                1
65 #define IDCANCEL            2
66 #define IDABORT             3
67 #define IDRETRY             4
68 #define IDIGNORE            5
69 #define IDYES               6
70 #define IDNO                7
71
72 typedef struct tagRECT
73 {
74         long left;
75         long top;
76         long right;
77         long bottom;
78 } RECT, *PRECT, *LPRECT;
79
80 #endif // __linux__
81
82 // plugin
83 // FIXME TTimo: drop this
84 extern "C" void Sys_Printf( char *text, ... );
85
86 #include "synapse.h"
87 #include "iplugin.h"
88 #include "qerplugin.h"
89 #include "mathlib.h"
90 #include "igl.h"
91 #include "iselectedface.h"
92 #include "isurfaceplugin.h"
93 #include "iui.h"
94
95 // internals
96 // the implementation of a IWindowListener interface to use with the native UI
97 // TODO: move in it's own set of files?
98 // NOTE: I'm not too sure about the bool flags being any use.. they are supposed to tell if we handle the event or not
99 class CWindowListener : public IWindowListener
100 {
101 int refCount;
102 public:
103 // Increment the number of references to this object
104 void IncRef() { refCount++; }
105 // Decrement the reference count
106 void DecRef() {
107         if ( --refCount <= 0 ) {
108                 delete this;
109         }
110 }
111 // IWindowListener ---------------------------------------
112 bool OnLButtonDown( guint32 nFlags, double x, double y );
113 bool OnMButtonDown( guint32 nFlags, double x, double y ) { return false; }
114 bool OnRButtonDown( guint32 nFlags, double x, double y );
115 bool OnLButtonUp( guint32 nFlags, double x, double y );
116 bool OnMButtonUp( guint32 nFlags, double x, double y ) { return false; }
117 bool OnRButtonUp( guint32 nFlags, double x, double y );
118 bool OnMouseMove( guint32 nFlags, double x, double y );
119 bool OnKeyPressed( char *s );
120 bool Paint();
121 void Close();
122 };
123
124 #include "2DView.h"
125 typedef struct
126 {
127         float data[MAX_POINTS_ON_WINDING][2];
128 } CtrlPts_t;
129 #include "ControlPointsManager.h"
130
131 extern OpenGLBinding g_QglTable;
132 extern _QERFuncTable_1 g_FuncTable;
133 // prefs globals
134 // NOTE: these are used by the CControlPointsManager classes, not very C++ish
135 extern bool g_bPrefsUpdateCameraView;
136 extern _QERSelectedFaceTable g_SelectedFaceTable;
137 extern _QERFaceData g_CancelFaceData;
138
139 #define Sys_Printf g_FuncTable.m_pfnSysPrintf
140 #define Sys_FPrintf g_FuncTable.m_pfnSysFPrintf
141
142 // call to validate the current changes into the editor
143 extern void Textool_Validate();
144 extern void Textool_Cancel();
145
146 class CSynapseClientTexTool : public CSynapseClient
147 {
148 public:
149 // CSynapseClient API
150 bool RequestAPI( APIDescriptor_t *pAPI );
151 const char* GetInfo();
152
153 CSynapseClientTexTool() { }
154 virtual ~CSynapseClientTexTool() { }
155 };
156
157 extern IWindow *g_pToolWnd;