/********* * * This file is part of BibleTime's source code, http://www.bibletime.info/. * * Copyright 1999-2011 by the BibleTime developers. * The BibleTime source code is licensed under the GNU General Public License version 2.0. * **********/ #ifndef BTFONTSETTINGS_H #define BTFONTSETTINGS_H #include "frontend/bookshelfmanager/btconfigdialog.h" #include #include #include "backend/config/cbtconfig.h" class CFontChooser; class QCheckBox; class QComboBox; class QGroupBox; /** @author The BibleTime team */ class BtFontSettingsPage : public BtConfigPage { Q_OBJECT public: BtFontSettingsPage(QWidget *parent = 0); ~BtFontSettingsPage(); void save(); /** Reimplemented from BtConfigPage. */ virtual const QIcon &icon() const; /** Reimplemented from BtConfigPage. */ virtual QString header() const; 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: QGroupBox *m_fontsGroupBox; QLabel *m_languageLabel; QComboBox *m_languageComboBox; QCheckBox *m_languageCheckBox; CFontChooser* m_fontChooser; QMap m_fontMap; }; #endif