summaryrefslogtreecommitdiff
path: root/indra/newview/llviewercontrol.h
blob: 389f0e8bc6662c4569323544ca451ed213f7d9fc (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/** 
 * @file llviewercontrol.h
 * @brief references to viewer-specific control files
 *
 * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
 * $License$
 */

#ifndef LL_LLVIEWERCONTROL_H
#define LL_LLVIEWERCONTROL_H

#include "llcontrol.h"
#include "llfloater.h"
#include "lltexteditor.h"

class LLFloaterSettingsDebug : public LLFloater
{
public:
	LLFloaterSettingsDebug();
	virtual ~LLFloaterSettingsDebug();

	virtual BOOL postBuild();
	virtual void draw();

	void updateControl(LLControlBase* control);

	static void show(void*);
	static void onSettingSelect(LLUICtrl* ctrl, void* user_data);
	static void onCommitSettings(LLUICtrl* ctrl, void* user_data);
	static void onClickDefault(void* user_data);

protected:
	static LLFloaterSettingsDebug* sInstance;
	LLTextEditor* mComment;
};

//setting variables are declared in this function
void declare_settings();
void settings_version_fixup();

// saved at end of session
extern LLControlGroup gSavedSettings;
extern LLControlGroup gSavedPerAccountSettings;

// Read-only
extern LLControlGroup gViewerArt;

// Read-only
extern LLControlGroup gColors;

// Saved at end of session
extern LLControlGroup gCrashSettings;

// Set after settings loaded
extern LLString gLastRunVersion;
extern LLString gCurrentVersion;

extern LLString gSettingsFileName;
extern LLString gPerAccountSettingsFileName;

#endif // LL_LLVIEWERCONTROL_H