aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llcameraview.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llcameraview.h')
-rw-r--r--linden/indra/newview/llcameraview.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/linden/indra/newview/llcameraview.h b/linden/indra/newview/llcameraview.h
index 9283043..32c29e8 100644
--- a/linden/indra/newview/llcameraview.h
+++ b/linden/indra/newview/llcameraview.h
@@ -4,6 +4,7 @@
4 * 4 *
5 * Copyright (c) 2001-2007, Linden Research, Inc. 5 * Copyright (c) 2001-2007, Linden Research, Inc.
6 * 6 *
7 * Second Life Viewer Source Code
7 * The source code in this file ("Source Code") is provided by Linden Lab 8 * The source code in this file ("Source Code") is provided by Linden Lab
8 * to you under the terms of the GNU General Public License, version 2.0 9 * to you under the terms of the GNU General Public License, version 2.0
9 * ("GPL"), unless you have obtained a separate licensing agreement 10 * ("GPL"), unless you have obtained a separate licensing agreement
@@ -35,6 +36,7 @@
35 36
36// Library includes 37// Library includes
37#include "llfloater.h" 38#include "llfloater.h"
39#include "llstatview.h"
38 40
39class LLJoystickCameraRotate; 41class LLJoystickCameraRotate;
40class LLJoystickCameraZoom; 42class LLJoystickCameraZoom;
@@ -62,6 +64,26 @@ public:
62 LLJoystickCameraTrack* mTrack; 64 LLJoystickCameraTrack* mTrack;
63}; 65};
64 66
67class LLFloaterJoystick
68: public LLFloater
69{
70protected:
71 LLFloaterJoystick();
72 ~LLFloaterJoystick();
73
74public:
75 static void show(void*);
76 static LLFloaterJoystick* getInstance();
77 static BOOL visible(void*);
78 virtual void draw();
79
80protected:
81 static LLFloaterJoystick* sInstance;
82 LLStatView* mAxisStats;
83 LLStat* mAxis[6];
84 LLStatBar* mAxisBar[6];
85};
86
65extern LLFloaterCamera *gFloaterCamera; 87extern LLFloaterCamera *gFloaterCamera;
66 88
67#endif 89#endif