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