Added custom style for bible readings with bible background (which isn't in repo)
[kworship.git] / kworship / KwApplication.h
blobcd33acf1ab5556f6cfe7ea7c661da828b5ee79ea
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 _KwApplication_h_
21 #define _KwApplication_h_
23 /**
24 * @file KwApplication.h
25 * @brief Application global data.
26 * @author James Hogan <james@albanarts.com>
29 #include <KApplication>
31 class KwPluginManager;
32 class kworship;
34 /// Application global data.
35 class KwApplication
37 public:
40 * Singletonhood
43 /// Get the singleton application object.
44 static KwApplication* self();
47 * Constructors + destructor
50 /// Primary constructor.
51 KwApplication();
53 /// Destructor.
54 virtual ~KwApplication();
57 * Main interface
60 /// Execute the application.
61 int exec();
64 * Accessors
67 /// Get the main window widget.
68 kworship* mainWindow();
70 /// Get the plugin manager.
71 KwPluginManager* pluginManager();
73 private:
76 * Static singleton data
79 /// Singleton application.
80 static KwApplication* s_self;
83 * Variables
86 /// KApplication object.
87 KApplication m_app;
89 /// Main window widget.
90 kworship* m_mainWindow;
92 /// Plugin manager.
93 KwPluginManager* m_pluginManager;
96 #endif // _KwApplication_h_