summaryrefslogtreecommitdiff
path: root/src/frontend/settingsdialogs/clanguagesettings.h
blob: 9dccc8525da16054a072b2adbaa8d7f32d97d4b3 (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
//
// C++ Interface: clanguagesettings
//
// Description: 
//
//
// Author: The BibleTime team <info@bibletime.info>, (C) 1999-2008
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef CLANGUAGESETTINGS_H
#define CLANGUAGESETTINGS_H


#include "util/cpointers.h"
#include "backend/config/cbtconfig.h"
#include "frontend/bookshelfmanager/btconfigdialog.h"

#include <QWidget>
#include <QMap>

class QComboBox;
class QCheckBox;
class CFontChooser;


/**
	@author The BibleTime team <info@bibletime.info>
*/
class CLanguageSettingsPage : public BtConfigPage, CPointers
{
Q_OBJECT
public:
    CLanguageSettingsPage(QWidget *parent);
    ~CLanguageSettingsPage();
	void save();
	QString iconName();
	QString label();
	QString header();

protected slots:

	// This slot is called when the "Use own font for language" button was clicked.
	void useOwnFontClicked(bool);

	// Called when a new font in the fonts page was selected.
	void newDisplayWindowFontSelected(const QFont &);

	// Called when the combobox contents is changed
	void newDisplayWindowFontAreaSelected(const QString&);

private:
	QComboBox* m_swordLocaleCombo;
	QComboBox* m_usageCombo;
	QCheckBox* m_useOwnFontCheck;
	CFontChooser* m_fontChooser;

	QMap<QString,CBTConfig::FontSettingsPair> m_fontMap;
};

#endif