]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/camwindow.h
Purge GTK forward declarations
[xonotic/netradiant.git] / radiant / camwindow.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 #if !defined( INCLUDED_CAMWINDOW_H )
23 #define INCLUDED_CAMWINDOW_H
24
25 #include <uilib/uilib.h>
26 #include "math/vector.h"
27 #include "signal/signalfwd.h"
28
29 class CamWnd;
30 CamWnd* NewCamWnd();
31 void DeleteCamWnd( CamWnd* camwnd );
32
33 void AddCameraMovedCallback( const SignalHandler& handler );
34
35 void CamWnd_Update( CamWnd& camwnd );
36
37 ui::Widget CamWnd_getWidget( CamWnd& camwnd );
38 void CamWnd_setParent( CamWnd& camwnd, ui::Window parent );
39
40 void GlobalCamera_setCamWnd( CamWnd& camwnd );
41
42 void fill_view_camera_menu( ui::Menu menu );
43 void CamWnd_constructToolbar( ui::Toolbar toolbar );
44 void CamWnd_registerShortcuts();
45
46 void GlobalCamera_Benchmark();
47
48 const Vector3& Camera_getOrigin( CamWnd& camwnd );
49 void Camera_setOrigin( CamWnd& camwnd, const Vector3& origin );
50
51 enum
52 {
53         CAMERA_PITCH = 0, // up / down
54         CAMERA_YAW = 1, // left / right
55         CAMERA_ROLL = 2, // fall over
56 };
57
58 const Vector3& Camera_getAngles( CamWnd& camwnd );
59 void Camera_setAngles( CamWnd& camwnd, const Vector3& angles );
60
61
62 struct camwindow_globals_t
63 {
64         Vector3 color_cameraback;
65         Vector3 color_selbrushes3d;
66
67         int m_nCubicScale;
68
69         camwindow_globals_t() :
70                 color_cameraback( 0.25f, 0.25f, 0.25f ),
71                 color_selbrushes3d( 1.0f, 0.f, 0.f ),
72                 m_nCubicScale( 13 ){
73         }
74
75 };
76
77 extern camwindow_globals_t g_camwindow_globals;
78
79 void CamWnd_Construct();
80 void CamWnd_Destroy();
81
82 #endif