diff options
Diffstat (limited to 'linden/indra/newview/llcameraview.h')
-rw-r--r-- | linden/indra/newview/llcameraview.h | 22 |
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 | ||
39 | class LLJoystickCameraRotate; | 41 | class LLJoystickCameraRotate; |
40 | class LLJoystickCameraZoom; | 42 | class LLJoystickCameraZoom; |
@@ -62,6 +64,26 @@ public: | |||
62 | LLJoystickCameraTrack* mTrack; | 64 | LLJoystickCameraTrack* mTrack; |
63 | }; | 65 | }; |
64 | 66 | ||
67 | class LLFloaterJoystick | ||
68 | : public LLFloater | ||
69 | { | ||
70 | protected: | ||
71 | LLFloaterJoystick(); | ||
72 | ~LLFloaterJoystick(); | ||
73 | |||
74 | public: | ||
75 | static void show(void*); | ||
76 | static LLFloaterJoystick* getInstance(); | ||
77 | static BOOL visible(void*); | ||
78 | virtual void draw(); | ||
79 | |||
80 | protected: | ||
81 | static LLFloaterJoystick* sInstance; | ||
82 | LLStatView* mAxisStats; | ||
83 | LLStat* mAxis[6]; | ||
84 | LLStatBar* mAxisBar[6]; | ||
85 | }; | ||
86 | |||
65 | extern LLFloaterCamera *gFloaterCamera; | 87 | extern LLFloaterCamera *gFloaterCamera; |
66 | 88 | ||
67 | #endif | 89 | #endif |