summaryrefslogtreecommitdiff
path: root/src/frontend/settingsdialogs/cswordsettings.h
blob: 032471cf57a4e3cee62203e06aeec87c1efdc760 (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
//
// C++ Interface: cswordsettings
//
// Description: Widgets for "Sword" ("Desk") settings of configuration dialog.
//
//
// Author: The BibleTime team <info@bibletime.info>, (C) 1999-2008
//
// Copyright: See COPYING file that comes with this distribution
//
//

#ifndef CSWORDSETTINGS_H
#define CSWORDSETTINGS_H

#include "frontend/bookshelfmanager/btconfigdialog.h"

#include "util/cpointers.h"

#include <QTabWidget>


class QComboBox;
class QCheckBox;

class StandardWorksTab;
class TextFiltersTab;

class CSwordSettingsPage : public BtConfigPage {
        Q_OBJECT

    public:
        CSwordSettingsPage(QWidget* parent);
        void save();
        QString iconName();
        QString label();
        QString header();

    private:
        StandardWorksTab* m_worksTab;
        TextFiltersTab* m_filtersTab;
};

//Tab pages. To be used only in Sword settings page.

class StandardWorksTab : public QWidget, CPointers {
        Q_OBJECT

    public:
        StandardWorksTab();
        void save();

    private:
        QComboBox* m_standardBibleCombo;
        QComboBox* m_standardCommentaryCombo;
        QComboBox* m_standardLexiconCombo;
        QComboBox* m_standardDailyDevotionalCombo;
        QComboBox* m_standardHebrewStrongCombo;
        QComboBox* m_standardGreekStrongCombo;
        QComboBox* m_standardHebrewMorphCombo;
        QComboBox* m_standardGreekMorphCombo;
};

class TextFiltersTab : public QWidget {
        Q_OBJECT

    public:
        TextFiltersTab();
        void save();

    private:
        QCheckBox* m_lineBreaksCheck;
        QCheckBox* m_verseNumbersCheck;
        QCheckBox* m_headingsCheck;
        QCheckBox* m_hebrewPointsCheck;
        QCheckBox* m_hebrewCantillationCheck;
        QCheckBox* m_morphSegmentationCheck;
        QCheckBox* m_greekAccentsCheck;
        QCheckBox* m_textualVariantsCheck;
        QCheckBox* m_scriptureReferencesCheck;
};

#endif