summaryrefslogtreecommitdiff
path: root/src/bibletime.cpp
blob: c4510f69c543d04d5eb0a05c405fcb53ab3d16d2 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
/*********
*
* 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.
*
**********/
#include "bibletime.h"

#include "frontend/cmdiarea.h"
#include "frontend/mainindex/cmainindex.h"
#include "frontend/mainindex/bookshelf/cbookshelfindex.h"
#include "frontend/displaywindow/cdisplaywindow.h"
#include "frontend/displaywindow/cdisplaywindowfactory.h"
#include "frontend/displaywindow/creadwindow.h"
#include "frontend/displaywindow/cwritewindow.h"
#include "frontend/keychooser/ckeychooser.h"
#include "backend/config/cbtconfig.h"

#include "util/ctoolclass.h"
#include "util/cpointers.h"
#include "util/directoryutil.h"

#include "backend/drivers/cswordmoduleinfo.h"
#include "backend/drivers/cswordbiblemoduleinfo.h"
#include "backend/drivers/cswordcommentarymoduleinfo.h"
#include "backend/drivers/cswordlexiconmoduleinfo.h"
#include "backend/drivers/cswordbookmoduleinfo.h"
#include "backend/keys/cswordversekey.h"
#include "backend/keys/cswordldkey.h"

//Qt includes
#include <QSplitter>
#include <QDebug>
#include <QAction>
#include <QApplication>
#include <QMdiSubWindow>
#include <QCloseEvent>
#include <QSplashScreen>

#include <cstdlib>
#include <ctime>

using namespace Profile;

BibleTime::BibleTime() :
	QMainWindow(0),
	m_dock0(0),
	m_dock1(0),
	m_dock2(0),
	m_initialized(false),
	m_moduleList(0),
	m_currentProfile(0),
	m_mdi(0),
	m_profileMgr()
{
	QPixmap pm;
	if ( !pm.load( util::filesystem::DirectoryUtil::getPicsDir().canonicalPath().append( "/startuplogo.png")) ) 
	{
		qWarning("Can't load startuplogo! Check your installation.");
	}
   QSplashScreen splash(pm);
   QString splashHtml("<div style='background:transparent;color:white;font-weight:bold'>%1</div>");
   if (CBTConfig::get(CBTConfig::logo)) 
	{
       splash.show();
	}
   splash.showMessage(splashHtml.arg(tr("Initializing the SWORD engine...")), Qt::AlignCenter);
   initBackends();
   splash.showMessage(splashHtml.arg(tr("Creating BibleTime's user interface...")), Qt::AlignCenter);
   initView();
   splash.showMessage(splashHtml.arg(tr("Initializing menu- and toolbars...")), Qt::AlignCenter);
   initActions();
   initConnections();
   readSettings();
   setPlainCaption(QString());
}

BibleTime::~BibleTime() 
{
	//  delete m_dcopInterface;
	// The backend is deleted by the BibleTimeApp instance
}

/** Saves the properties of BibleTime to the application wide configfile  */
void BibleTime::saveSettings() 
{
	//TODO: how to write settings?
	//accel()->writeSettings(CBTConfig::getConfig());

	CBTConfig::set(CBTConfig::toolbar, m_viewToolbar_action->isChecked());

	// set the default to false
	/* CBTConfig::set(CBTConfig::autoTileVertical, false);
	 CBTConfig::set(CBTConfig::autoTileHorizontal, false);
	 CBTConfig::set(CBTConfig::autoCascade, false);
	*/
	CBTConfig::set(CBTConfig::autoTileVertical, m_windowAutoTileVertical_action->isChecked());
	CBTConfig::set(CBTConfig::autoTileHorizontal, m_windowAutoTileHorizontal_action->isChecked());
	CBTConfig::set(CBTConfig::autoCascade, m_windowAutoCascade_action->isChecked());

	CProfile* p = m_profileMgr.startupProfile();
	if (p) 
	{
		saveProfile(p);
	}
}

/** Reads the settings from the configfile and sets the right properties. */
void BibleTime::readSettings() 
{
	qDebug("******************BibleTime::readSettings******************************");
	//  accel()->readSettings(CBTConfig::getConfig());
// 	CBTConfig::setupAccelSettings(CBTConfig::application, actionCollection());

	m_viewToolbar_action->setChecked( CBTConfig::get(CBTConfig::toolbar) );
	slotToggleToolbar();
	
	if ( CBTConfig::get(CBTConfig::autoTileVertical) ) 
	{
		m_windowAutoTileVertical_action->setChecked( true );
		m_windowManualMode_action->setChecked(false);
		slotAutoTileVertical();
	}
	else if ( CBTConfig::get(CBTConfig::autoTileHorizontal) ) 
	{
		m_windowAutoTileHorizontal_action->setChecked( true );
		m_windowManualMode_action->setChecked(false);
		slotAutoTileHorizontal();
	}
	else if ( CBTConfig::get(CBTConfig::autoCascade) ) 
	{
		m_windowAutoCascade_action->setChecked(true);
		m_windowManualMode_action->setChecked(false);
		slotAutoCascade();
	}
	else 
	{
		m_windowManualMode_action->setChecked(true);
		slotManualArrangementMode();
	}
}

/** Creates a new presenter in the MDI area according to the type of the module. */
CDisplayWindow* BibleTime::createReadDisplayWindow(QList<CSwordModuleInfo*> modules, const QString& key) 
{
	qApp->setOverrideCursor( QCursor(Qt::WaitCursor) );
	qDebug("BibleTime::createReadDisplayWindow(QList<CSwordModuleInfo*> modules, const QString& key)");
	CDisplayWindow* displayWindow = CDisplayWindowFactory::createReadInstance(modules, m_mdi);
	if ( displayWindow ) 
	{
		displayWindow->init();
		if (m_mdi->subWindowList().count() == 0)
			displayWindow->showMaximized();
		else
			displayWindow->show();
		//   if (!key.isEmpty())
		displayWindow->lookupKey(key);
	}
	// We have to process pending events here, otherwise displayWindow is not fully painted
	qApp->processEvents();
	// Now all events, including mouse clicks for the displayWindow have been handled
	// and we can let the user click the same module again
	m_bookshelfPage->unfreezeModules(modules);
	qApp->restoreOverrideCursor();
	return displayWindow;
}


/** Creates a new presenter in the MDI area according to the type of the module. */
CDisplayWindow* BibleTime::createReadDisplayWindow(CSwordModuleInfo* module, const QString& key) 
{
	QList<CSwordModuleInfo*> list;
	list.append(module);

	return createReadDisplayWindow(list, key);
}

CDisplayWindow* BibleTime::createWriteDisplayWindow(CSwordModuleInfo* module, const QString& key, const CDisplayWindow::WriteWindowType& type) 
{
	qApp->setOverrideCursor( QCursor(Qt::WaitCursor) );

	QList<CSwordModuleInfo*> modules;
	modules.append(module);

	CDisplayWindow* displayWindow = CDisplayWindowFactory::createWriteInstance(modules, m_mdi, type);
	if ( displayWindow ) 
	{
		displayWindow->init();
		if (m_mdi->subWindowList().count() == 0)
			displayWindow->showMaximized();
		else
			displayWindow->show();
		displayWindow->lookupKey(key);
	}

	qApp->restoreOverrideCursor();
	return displayWindow;
}

/** Refreshes all presenters.*/
void BibleTime::refreshDisplayWindows() 
{
	foreach (QMdiSubWindow* subWindow, m_mdi->subWindowList()) 
	{
		if (CDisplayWindow* window = dynamic_cast<CDisplayWindow*>(subWindow->widget())) 
		{
			window->reload(CSwordBackend::OtherChange);
		}
	}
}

/** Called before quit. */
void BibleTime::slot_aboutToQuit() 
{
	saveSettings();
}

/** Called before a window is closed */
bool BibleTime::queryClose() 
{
	qDebug("BibleTime::queryClose");
	bool ret = true;

	foreach(QMdiSubWindow* subWindow, m_mdi->subWindowList())
	{
		if (CDisplayWindow* window = dynamic_cast<CDisplayWindow*>(subWindow->widget())) 
		{
			ret = ret && window->queryClose();
		}
		qDebug() << "return value:" << ret;
	}
	qDebug() << "final return value:" << ret;
	return ret;
}

/** Restores the workspace if the flag for this is set in the config. */
void BibleTime::restoreWorkspace() 
{
	if (CProfile* p = m_profileMgr.startupProfile()) 
	{
		loadProfile(p);
	}
}

/** Sets the plain caption of the main window */
void BibleTime::setPlainCaption(const QString& title) 
{
	QString suffix;
	//Watch out, subtitles must be appended with the form " - [%s]", otherwise
	//QMdiSubWindow will mess up when it is maximized
	if (!title.isEmpty()) 
	{
		suffix = QString(" - [").append(title).append("]");
	}
	QMainWindow::setWindowTitle( QString("BibleTime ").append(BT_VERSION) + suffix );
}

/** Processes the commandline options given to BibleTime. */
void BibleTime::processCommandline() 
{
	QStringList args = qApp->QCoreApplication::arguments();

	if ( !CBTConfig::get(CBTConfig::crashedTwoTimes) && 
		!args.contains("--ignore-session") )
	{
		restoreWorkspace();
	}

 	if ( args.contains("--open-default-bible") && 
		!CBTConfig::get(CBTConfig::crashedLastTime) && 
		!CBTConfig::get(CBTConfig::crashedTwoTimes)) 
	{ 
		int index = args.indexOf("--open-default-bible");
		QString bibleKey;
		if (index >= 0 && (index+1) < args.size())
		{
			bibleKey = args.at(index+1);
		}
 		CSwordModuleInfo* bible = CBTConfig::get(CBTConfig::standardBible);
 		if (bibleKey == "random") 
		{
 			CSwordVerseKey vk(0);
 			const int maxIndex = 31100;
			time_t seconds;
			seconds = time (NULL);
			srand(seconds);
			int newIndex = rand() % maxIndex;
 			vk.setPosition(sword::TOP);
 			vk.Index(newIndex);
 			bibleKey = vk.key();
 		}
 		createReadDisplayWindow(bible, bibleKey);
 		m_mdi->myTileVertical();//we are sure only one window is open, which should be displayed fullscreen in the working area
 	}
}

bool BibleTime::event(QEvent* e)
{
// /*	if (e->type() == QEvent::Polish) {
// 		qWarning("BibleTime::event type Polish");
// 		m_initialized = true;
// 	}*/
	if (e->type() == QEvent::Close) 
	{
	}
	return QMainWindow::event(e);
}

void BibleTime::closeEvent(QCloseEvent* e) 
{
	QMainWindow::closeEvent(e);
}