summaryrefslogtreecommitdiff
path: root/indra/newview/lldebugview.h
blob: 5406099189116ae16aff72bd18e8c6b3e7e022b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/** 
 * @file lldebugview.h
 * @brief A view containing debug UI elements
 *
 * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
 * $License$
 */

#ifndef LL_LLDEBUGVIEW_H
#define LL_LLDEBUGVIEW_H

// requires:
// stdtypes.h

#include "llview.h"

// declarations
class LLButton;
class LLToolView;
class LLStatusPanel;
class LLFrameStatView;
class LLFastTimerView;
class LLMemoryView;
class LLConsole;
class LLTextureView;
class LLContainerView;

class LLDebugView : public LLView
{
public:
	LLDebugView(const std::string& name, const LLRect &rect);
	~LLDebugView();

	virtual EWidgetType getWidgetType() const;
	virtual LLString getWidgetTag() const;

	LLFrameStatView* mFrameStatView;
	LLFastTimerView* mFastTimerView;
	LLMemoryView*	 mMemoryView;
	LLConsole*		 mDebugConsolep;
	LLContainerView* mStatViewp;
};

extern LLDebugView* gDebugView;

#endif