aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterstats.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llfloaterstats.h (renamed from linden/indra/newview/audiosettings.h)39
1 files changed, 27 insertions, 12 deletions
diff --git a/linden/indra/newview/audiosettings.h b/linden/indra/newview/llfloaterstats.h
index 1d2ccc5..0b6feb0 100644
--- a/linden/indra/newview/audiosettings.h
+++ b/linden/indra/newview/llfloaterstats.h
@@ -1,10 +1,10 @@
1/** 1/**
2 * @file audiosettings.h 2 * @file llfloaterstats.h
3 * @brief AudioSettings definitions 3 * @brief Container for statistics view
4 * 4 *
5 * $LicenseInfo:firstyear=2000&license=viewergpl$ 5 * $LicenseInfo:firstyear=2002&license=viewergpl$
6 * 6 *
7 * Copyright (c) 2000-2008, Linden Research, Inc. 7 * Copyright (c) 2002-2008, Linden Research, Inc.
8 * 8 *
9 * Second Life Viewer Source Code 9 * Second Life Viewer Source Code
10 * The source code in this file ("Source Code") is provided by Linden Lab 10 * The source code in this file ("Source Code") is provided by Linden Lab
@@ -29,13 +29,28 @@
29 * $/LicenseInfo$ 29 * $/LicenseInfo$
30 */ 30 */
31 31
32#ifndef LL_AUDIOSETTINGS_H 32#ifndef LL_LLFLOATERSTATS_H
33#define LL_AUDIOSETTINGS_H 33#define LL_LLFLOATERSTATS_H
34 34
35// comment out to turn off wind 35
36#define kAUDIO_ENABLE_WIND 36#include "llfloater.h"
37//#define kAUDIO_ENABLE_WATER 1 // comment out to turn off water 37
38#define kAUDIO_NUM_BUFFERS 30 38class LLContainerView;
39#define kAUDIO_NUM_SOURCES 30 39class LLStatView;
40class LLScrollableContainerView;
41
42class LLFloaterStats : public LLFloater
43{
44 public:
45 LLFloaterStats(const LLRect& rect);
46 virtual ~LLFloaterStats();
47 void addStatView(LLStatView* stat);
48 void reshape(S32 width, S32 height);
49 void onClose(bool app_quitting);
50
51 private:
52 LLContainerView* mStatsContainer;
53 LLScrollableContainerView* mScrollContainer;
54};
40 55
41#endif 56#endif