SQLite compatibility and related fixes
[kworship.git] / kworship / bible / biblegateway / KwBibleManagerBibleGateway.h
blobd036181b4e57092280dbe1e79c9809c125bf7f4e
1 /***************************************************************************
2 * This file is part of KWorship. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
4 * *
5 * KWorship is free software: you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation, either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * KWorship is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with KWorship. If not, write to the Free Software Foundation, *
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
20 #ifndef _KwBibleManagerBibleGateway_h_
21 #define _KwBibleManagerBibleGateway_h_
23 /**
24 * @file KwBibleManagerBibleGateway.h
25 * @brief A bible manager for BibleGateway.com.
26 * @author James Hogan <james@albanarts.com>
29 #include "KwBibleManager.h"
31 #include <QString>
32 #include <QStringList>
33 #include <QList>
34 #include <QHash>
36 class KwBibleModuleBibleGateway;
38 /// A bible manager for BibleGateway.com.
39 class KwBibleManagerBibleGateway : public KwBibleManager
41 KW_BIBLE_MANAGER(KwBibleManagerBibleGateway, "BibleGateway.com")
43 public:
46 * Constructors + destructor
49 /// Default constructor.
50 KwBibleManagerBibleGateway(QObject* parent = 0, const QStringList& params = QStringList());
52 /// Destructor.
53 virtual ~KwBibleManagerBibleGateway();
56 * Main interface
59 // Reimplemented
60 virtual QString name() const;
62 // Reimplemented
63 virtual bool isRemote() const;
65 // Reimplemented
66 virtual KwBibleModule* module(const QString& name);
68 // Reimplemented
69 virtual QStringList moduleNames();
71 // Reimplemented
72 virtual QStringList moduleNamesInLanguage(const QString& lang);
74 // Reimplemented
75 virtual QStringList languages();
77 private:
80 * Private functions
83 /// Ensure the version information is cached.
84 void ensureCached();
86 /// Clear all modules.
87 void clear();
90 * Variables
93 /// Whether the versions have already been cached.
94 bool m_cached;
96 /// Language names.
97 QStringList m_languages;
99 /// Per version data.
100 struct Version
102 QString name;
103 int id;
104 int lang;
105 KwBibleModuleBibleGateway* module;
108 /// Versions by id.
109 QHash<int, Version*> m_versionsById;
111 /// Versions by name.
112 QHash<QString, Version*> m_versionsByName;
114 /// Version ids by language id.
115 QHash<int, QList<int> > m_versionsByLanguage;
118 #endif // _KwBibleManagerBibleGateway_h_