diff options
author | Jacek Antonelli | 2008-08-15 23:45:04 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:04 -0500 |
commit | 117e22047c5752352342d64e3fb7ce00a4eb8113 (patch) | |
tree | e32de2cfba0dda8705ae528fcd1fbe23ba075685 /linden/indra/newview/llpanelaudiovolume.h | |
parent | Second Life viewer sources 1.18.0.6 (diff) | |
download | meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.zip meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.tar.gz meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.tar.bz2 meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.tar.xz |
Second Life viewer sources 1.18.1.2
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llpanelaudiovolume.h (renamed from linden/indra/newview/llaudiostatus.h) | 37 |
1 files changed, 20 insertions, 17 deletions
diff --git a/linden/indra/newview/llaudiostatus.h b/linden/indra/newview/llpanelaudiovolume.h index fe7b67f..8a824d2 100644 --- a/linden/indra/newview/llaudiostatus.h +++ b/linden/indra/newview/llpanelaudiovolume.h | |||
@@ -1,6 +1,6 @@ | |||
1 | /** | 1 | /** |
2 | * @file llaudiostatus.h | 2 | * @file llpanelaudiovolume.h |
3 | * @brief Audio channel allocation information | 3 | * @brief Audio preference definitions |
4 | * | 4 | * |
5 | * Copyright (c) 2001-2007, Linden Research, Inc. | 5 | * Copyright (c) 2001-2007, Linden Research, Inc. |
6 | * | 6 | * |
@@ -26,27 +26,30 @@ | |||
26 | * COMPLETENESS OR PERFORMANCE. | 26 | * COMPLETENESS OR PERFORMANCE. |
27 | */ | 27 | */ |
28 | 28 | ||
29 | #ifndef LL_LLAUDIOSTATUS_H | 29 | #ifndef LL_LLPANELAUDIOVOLUME_H |
30 | #define LL_LLAUDIOSTATUS_H | 30 | #define LL_LLPANELAUDIOVOLUME_H |
31 | 31 | ||
32 | #include "llmath.h" | 32 | #include "llpanel.h" |
33 | #include "llview.h" | 33 | #include "llfloater.h" |
34 | 34 | ||
35 | //const char TAB = '\t'; | 35 | class LLFloaterAudioVolume : |
36 | //const char DIVIDER[] = " / "; | 36 | public LLUISingleton<LLFloaterAudioVolume>, |
37 | public LLFloater | ||
38 | { | ||
39 | friend class LLUISingleton<LLFloaterAudioVolume>; | ||
40 | public: | ||
41 | LLFloaterAudioVolume(const LLSD& seed); | ||
42 | static void* createVolumePanel(void* data); | ||
43 | }; | ||
37 | 44 | ||
38 | class LLAudiostatus : public LLView | 45 | class LLPanelAudioVolume : public LLPanel |
39 | { | 46 | { |
40 | public: | ||
41 | S32 mPage; | ||
42 | protected: | ||
43 | public: | 47 | public: |
44 | LLAudiostatus(const std::string& name, const LLRect& rect); | 48 | LLPanelAudioVolume(); |
45 | 49 | virtual ~LLPanelAudioVolume(); | |
46 | virtual EWidgetType getWidgetType() const; | ||
47 | virtual LLString getWidgetTag() const; | ||
48 | 50 | ||
49 | virtual void draw(); | 51 | virtual BOOL postBuild(); |
52 | virtual void draw(); | ||
50 | }; | 53 | }; |
51 | 54 | ||
52 | #endif | 55 | #endif |