aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/impprefsfonts.h
diff options
context:
space:
mode:
authorJacek Antonelli2010-08-31 05:54:55 -0500
committerMcCabe Maxsted2010-09-10 19:23:06 -0700
commit7460b677c3979b9ec5b913dee3abfcd4272bd297 (patch)
tree406bc0c3ce68962090fe2ca4a29cd3b9b4d002d3 /linden/indra/newview/impprefsfonts.h
parentChanged the 'bundle identifier' to org.imprudenceviewer.viewer. (diff)
downloadmeta-impy-7460b677c3979b9ec5b913dee3abfcd4272bd297.zip
meta-impy-7460b677c3979b9ec5b913dee3abfcd4272bd297.tar.gz
meta-impy-7460b677c3979b9ec5b913dee3abfcd4272bd297.tar.bz2
meta-impy-7460b677c3979b9ec5b913dee3abfcd4272bd297.tar.xz
Added Preferences > Fonts tab, with basic font chooser.
Choosing a font sets FontChoice setting, but no real effect yet.
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/impprefsfonts.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/linden/indra/newview/impprefsfonts.h b/linden/indra/newview/impprefsfonts.h
new file mode 100644
index 0000000..12aa0bb
--- /dev/null
+++ b/linden/indra/newview/impprefsfonts.h
@@ -0,0 +1,45 @@
1/**
2 * @file impprefsfonts.h
3 * @brief Font preferences panel
4 *
5 * Copyright (c) 2010, Jacek Antonelli
6 *
7 * The source code in this file ("Source Code") is provided to you
8 * under the terms of the GNU General Public License, version 2.0
9 * ("GPL"). Terms of the GPL can be found in doc/GPL-license.txt in
10 * this distribution, or online at
11 * http://secondlifegrid.net/programs/open_source/licensing/gplv2
12 *
13 * There are special exceptions to the terms and conditions of the GPL as
14 * it is applied to this Source Code. View the full text of the exception
15 * in the file doc/FLOSS-exception.txt in this software distribution, or
16 * online at
17 * http://secondlifegrid.net/programs/open_source/licensing/flossexception
18 *
19 * By copying, modifying or distributing this software, you acknowledge
20 * that you have read and understood your obligations described above,
21 * and agree to abide by those obligations.
22 *
23 * ALL SOURCE CODE IS PROVIDED "AS IS." THE AUTHOR MAKES NO
24 * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
25 * COMPLETENESS OR PERFORMANCE.
26 */
27
28#ifndef IMP_PREFSFONTS_H
29#define IMP_PREFSFONTS_H
30
31#include "llpanel.h"
32
33class ImpPrefsFonts : public LLPanel
34{
35public:
36 ImpPrefsFonts();
37 virtual ~ImpPrefsFonts();
38
39 virtual BOOL postBuild();
40 void refresh();
41 void apply();
42 void cancel();
43};
44
45#endif // IMP_PREFSFONTS_H