aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llpanelgeneral.cpp
blob: 256f02ab1c3b862ad5a001a515377d5b66fd9fa3 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
/** 
 * @file llpanelgeneral.cpp
 * @brief General preferences panel in preferences floater
 *
 * $LicenseInfo:firstyear=2001&license=viewergpl$
 * 
 * Copyright (c) 2001-2008, Linden Research, Inc.
 * 
 * Second Life Viewer Source Code
 * The source code in this file ("Source Code") is provided by Linden Lab
 * to you under the terms of the GNU General Public License, version 2.0
 * ("GPL"), unless you have obtained a separate licensing agreement
 * ("Other License"), formally executed by you and Linden Lab.  Terms of
 * the GPL can be found in doc/GPL-license.txt in this distribution, or
 * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
 * 
 * There are special exceptions to the terms and conditions of the GPL as
 * it is applied to this Source Code. View the full text of the exception
 * in the file doc/FLOSS-exception.txt in this software distribution, or
 * online at http://secondlifegrid.net/programs/open_source/licensing/flossexception
 * 
 * By copying, modifying or distributing this software, you acknowledge
 * that you have read and understood your obligations described above,
 * and agree to abide by those obligations.
 * 
 * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
 * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
 * COMPLETENESS OR PERFORMANCE.
 * $/LicenseInfo$
 */

#include "llviewerprecompiledheaders.h"

#include "llpanelgeneral.h"

// linden library includes
#include "llerror.h"
#include "llrect.h"
#include "llfontgl.h"
#include "message.h"
#include "lluictrlfactory.h"

// project includes
#include "llagent.h"
#include "llviewerwindow.h"
#include "llcolorswatch.h"
#include "llcombobox.h"
#include "llconsole.h"
#include "lllineeditor.h"
#include "llpanellogin.h"
#include "llnetmap.h"
#include "llresmgr.h"
#include "llspinctrl.h"
#include "lltextbox.h"
#include "llui.h"
#include "llurlsimstring.h"
#include "llviewercontrol.h"
#include "llurlsimstring.h"

#include "llcheckboxctrl.h"
#include "llradiogroup.h"
//
// Imported globals
//

void set_crash_behavior(LLUICtrl* ctrl, void* data);
void set_start_location(LLUICtrl* ctrl, void* data);


//
// Globals
//

//
// Static functions
//
static void set_render_name_fade_out(LLUICtrl* ctrl, void* data)
{
	LLComboBox* combo = (LLComboBox*)ctrl;
	if (!combo) return;
	gSavedSettings.setS32("RenderName", combo->getCurrentIndex() );
}

void set_crash_behavior(LLUICtrl* ctrl, void* data)
{
	gCrashSettings.setS32(CRASH_BEHAVIOR_SETTING, ((LLComboBox*) ctrl)->getCurrentIndex());
}

void set_language(LLUICtrl* ctrl, void* data)
{
    gSavedSettings.setString("Language", ctrl->getValue().asString());
}

void LLPanelGeneral::set_start_location(LLUICtrl* ctrl, void* data)
{
    LLURLSimString::setString(ctrl->getValue().asString());
}

void LLPanelGeneral::set_specific_start_location(LLLineEditor* line_editor, void* data)
{
    LLURLSimString::setString(line_editor->getValue().asString());
}

LLPanelGeneral::LLPanelGeneral()
{
	LLUICtrlFactory::getInstance()->buildPanel(this, "panel_preferences_general.xml");
}

BOOL LLPanelGeneral::postBuild()
{
	childSetCommitCallback("fade_out_combobox", set_render_name_fade_out);

	std::string region_name_prompt = getString("region_name_prompt");


	// location combobox
	LLComboBox* combo = getChild<LLComboBox>( "location_combobox");
	if (combo)
	{
		if (!LLURLSimString::sInstance.mSimString.empty())
		{
			combo->setTextEntry(LLURLSimString::sInstance.mSimString);
		}
	
		BOOL login_last = gSavedSettings.getBOOL("LoginLastLocation");
		if (!LLURLSimString::sInstance.mSimString.empty())
		{
			combo->add( LLURLSimString::sInstance.mSimString );
			combo->setCurrentByIndex( 2 );
		}
		else
		{
			combo->add( region_name_prompt );
			combo->setCurrentByIndex( login_last ? 1 : 0 );
		}
		combo->setCommitCallback( &set_start_location );
		combo->setTextEntryCallback( &set_specific_start_location );
	}
	
	// Show location on login screen
	childSetCommitCallback("show_location_checkbox", &LLPanelGeneral::clickShowStartLocation);

	combo = getChild<LLComboBox>( "crash_behavior_combobox");
	if (combo)
	{
		combo->setCurrentByIndex( gCrashSettings.getS32(CRASH_BEHAVIOR_SETTING) );
		combo->setCommitCallback( &set_crash_behavior );
	}
	
	childSetCommitCallback("language_combobox", set_language );
	childSetValue("language_combobox", 	gSavedSettings.getString("Language"));

	refresh();

	return TRUE;
}

LLPanelGeneral::~LLPanelGeneral()
{
	// Children all cleaned up by default view destructor.
}

void LLPanelGeneral::refresh()
{
	LLPanel::refresh();
	BOOL login_last = gSavedSettings.getBOOL("LoginLastLocation");
	LLComboBox* combo = getChild<LLComboBox>( "location_combobox");
	if (combo)
	{
		if (!LLURLSimString::sInstance.mSimString.empty())
		{
			combo->setCurrentByIndex( 2 );
		}
		else
		{
			combo->setCurrentByIndex( login_last ? 1 : 0 );
		}
		//save current settings in case cancel is clicked
		mLoginLocation = combo->getValue().asString();
	}
	
	mOldCrashBehavior = gCrashSettings.getS32(CRASH_BEHAVIOR_SETTING);
	combo = getChild<LLComboBox>( "crash_behavior_combobox");
	if (combo)
	{
		combo->setCurrentByIndex( mOldCrashBehavior );
	}
	
	mRenderName = gSavedSettings.getS32("RenderName");
	combo = getChild<LLComboBox>("fade_out_combobox");
	if (combo)
	{
		combo->setCurrentByIndex( mRenderName );
	}

	mRenderNameHideSelf = gSavedSettings.getBOOL("RenderNameHideSelf");
	mSmallAvatarNames = gSavedSettings.getBOOL("SmallAvatarNames");
	mRenderHideGroupTitle = gSavedSettings.getBOOL("RenderHideGroupTitle");
	mChatOnlineNotification = gSavedSettings.getBOOL("ChatOnlineNotification");
	mAFKTimeout = gSavedSettings.getF32("AFKTimeout");
	mMiniMapRotate = gSavedSettings.getBOOL("MiniMapRotate");
	mNotifyMoney = gSavedSettings.getBOOL("NotifyMoneyChange");
	mUseDefaultColor = gSavedSettings.getBOOL("UseDefaultColorPicker");
	mEffectColor = gSavedSettings.getColor4("EffectColor");
	mShowSearch = gSavedSettings.getBOOL("ShowSearchBar");

	mUIScaleFactor = gSavedSettings.getF32("UIScaleFactor");
	mUIAutoScale = gSavedSettings.getBOOL("UIAutoScale");

	mLanguage = gSavedSettings.getString("Language");
}

void LLPanelGeneral::apply()
{
}

void LLPanelGeneral::cancel()
{
	gSavedSettings.setS32("RenderName", mRenderName);
	gSavedSettings.setBOOL("RenderNameHideSelf", mRenderNameHideSelf );
	gSavedSettings.setBOOL("SmallAvatarNames", mSmallAvatarNames );
	gSavedSettings.setBOOL("RenderHideGroupTitle", mRenderHideGroupTitle );
	gSavedSettings.setBOOL("ChatOnlineNotification", mChatOnlineNotification );
	gSavedSettings.setF32("AFKTimeout", mAFKTimeout );
	gSavedSettings.setBOOL("MiniMapRotate", mMiniMapRotate );
	gSavedSettings.setBOOL("NotifyMoneyChange", mNotifyMoney );
	gSavedSettings.setBOOL("UseDefaultColorPicker", mUseDefaultColor );
	gSavedSettings.setBOOL("ShowSearchBar", mShowSearch);
	gSavedSettings.setColor4("EffectColor", mEffectColor );
	gSavedSettings.setF32("UIScaleFactor", mUIScaleFactor);
	gSavedSettings.setBOOL("UIAutoScale", mUIAutoScale);
	gSavedSettings.setString("Language", mLanguage);
	
	LLURLSimString::setString(mLoginLocation);

	gCrashSettings.setS32(CRASH_BEHAVIOR_SETTING, mOldCrashBehavior);
}

void LLPanelGeneral::clickShowStartLocation(LLUICtrl*, void* user_data)
{
	LLPanelLogin::refreshLocation( false ); // in case LLPanelLogin is visible
}