summaryrefslogtreecommitdiff
path: root/src/frontend/settingsdialogs/clanguagesettings.h
blob: 4d55cda89e90249037bc3c616c23f04db67d5a60 (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
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2009 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/

#ifndef CLANGUAGESETTINGS_H
#define CLANGUAGESETTINGS_H

#include "frontend/bookshelfmanager/btconfigdialog.h"
#include "util/cpointers.h"

#include <QMap>
#include <QWidget>
#include "backend/config/cbtconfig.h"


class CFontChooser;
class QCheckBox;
class QComboBox;

/**
    @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