diff options
author | McCabe Maxsted | 2010-06-15 01:03:29 -0700 |
---|---|---|
committer | Jacek Antonelli | 2010-06-19 02:43:39 -0500 |
commit | 991aa9770f6b3d5922ec7a7a3e2e2fc999de61ab (patch) | |
tree | 8aa3e75288e5a5e11480f9d8bffdddb4eea84678 /linden/indra/newview/aoremotectrl.h | |
parent | Automatically try logging in again if 'Login Failed. You appear to be already... (diff) | |
download | meta-impy-991aa9770f6b3d5922ec7a7a3e2e2fc999de61ab.zip meta-impy-991aa9770f6b3d5922ec7a7a3e2e2fc999de61ab.tar.gz meta-impy-991aa9770f6b3d5922ec7a7a3e2e2fc999de61ab.tar.bz2 meta-impy-991aa9770f6b3d5922ec7a7a3e2e2fc999de61ab.tar.xz |
Created toolbar remote for toggling AO on/off
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/aoremotectrl.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/linden/indra/newview/aoremotectrl.h b/linden/indra/newview/aoremotectrl.h new file mode 100644 index 0000000..ca74e0d --- /dev/null +++ b/linden/indra/newview/aoremotectrl.h | |||
@@ -0,0 +1,54 @@ | |||
1 | /** | ||
2 | * @file aoremotectrl.h | ||
3 | * @brief toolbar remote for toggling the viewer AO | ||
4 | * | ||
5 | * $LicenseInfo:firstyear=2009&license=viewergpl$ | ||
6 | * | ||
7 | * Copyright (c) 2010, McCabe Maxsted | ||
8 | * | ||
9 | * Imprudence Viewer Source Code | ||
10 | * The source code in this file ("Source Code") is provided to you | ||
11 | * under the terms of the GNU General Public License, version 2.0 | ||
12 | * ("GPL"). Terms of the GPL can be found in doc/GPL-license.txt in | ||
13 | * this distribution, or online at | ||
14 | * http://secondlifegrid.net/programs/open_source/licensing/gplv2 | ||
15 | * | ||
16 | * There are special exceptions to the terms and conditions of the GPL as | ||
17 | * it is applied to this Source Code. View the full text of the exception | ||
18 | * in the file doc/FLOSS-exception.txt in this software distribution, or | ||
19 | * online at http://secondlifegrid.net/programs/open_source/licensing/flossexception | ||
20 | * | ||
21 | * By copying, modifying or distributing this software, you acknowledge | ||
22 | * that you have read and understood your obligations described above, | ||
23 | * and agree to abide by those obligations. | ||
24 | * | ||
25 | * ALL SOURCE CODE IS PROVIDED "AS IS." THE AUTHOR MAKES NO | ||
26 | * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, | ||
27 | * COMPLETENESS OR PERFORMANCE. | ||
28 | * $/LicenseInfo$ | ||
29 | */ | ||
30 | |||
31 | #ifndef AOREMOTECTRL_H | ||
32 | #define AOREMOTECTRL_H | ||
33 | |||
34 | #include "llpanel.h" | ||
35 | |||
36 | class AORemoteCtrl : public LLPanel | ||
37 | { | ||
38 | public: | ||
39 | AORemoteCtrl(); | ||
40 | virtual ~AORemoteCtrl(); | ||
41 | /*virtual*/ BOOL postBuild(); | ||
42 | /*virtual*/ void draw(); | ||
43 | |||
44 | private: | ||
45 | |||
46 | void build(); | ||
47 | |||
48 | static void onClickToggleAO(void* data); | ||
49 | static void onClickToggleAOSit(void* data); | ||
50 | static void onClickShowAO(void* data); | ||
51 | static void onClickPopupBtn(void* data); | ||
52 | }; | ||
53 | |||
54 | #endif // AOREMOTECTRL_H | ||