blob: c93b62c75fe9bc60a778866545aacbc1a6189c43 (
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
62
63
|
/**
* @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;
};
// These functions found in llcontroldef.cpp *TODO: clean this up!
//setting variables are declared in this function
void declare_settings();
void fixup_settings();
void settings_setup_listeners();
// 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
|