File: MyApplication.h

package info (click to toggle)
fatrat 1.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,816 kB
  • ctags: 2,033
  • sloc: cpp: 18,093; xml: 102; makefile: 7; sh: 3
file content (71 lines) | stat: -rw-r--r-- 2,064 bytes parent folder | download | duplicates (2)
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
/*
FatRat download manager
http://fatrat.dolezel.info

Copyright (C) 2006-2008 Lubos Dolezel <lubos a dolezel.info>

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
version 2 as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

In addition, as a special exemption, Luboš Doležel gives permission
to link the code of FatRat with the OpenSSL project's
"OpenSSL" library (or with modified versions of it that use the; same
license as the "OpenSSL" library), and distribute the linked
executables. You must obey the GNU General Public License in all
respects for all of the code used other than "OpenSSL".
*/

#ifndef MYAPPLICATION_H
#define MYAPPLICATION_H
#include <QApplication>
#include <QMessageBox>
#include <typeinfo>
#include "RuntimeException.h"

class MyApplication : public QApplication
{
Q_OBJECT
public:
	MyApplication(int& argc, char** argv, bool gui)
		: QApplication(argc, argv, gui)
	{
	}

	virtual bool notify(QObject* receiver, QEvent* e)
	{
		try
		{
			QApplication::notify(receiver, e);
		}
		catch(const std::exception& e)
		{
			reportException(QString::fromUtf8(e.what()), typeid(e).name());
		}
		catch(const RuntimeException& e)
		{
			reportException(e.what(), "RuntimeException");
		}
		
		return false;
	}
private:
	static void reportException(QString text, QString type)
	{
		QMessageBox::critical(0, tr("Unhandled exception"),
				tr("The main handler has caught the following exception."
				" This is a bug and should be reported as such.\n\n"
				"Type of exception: %1\nMessage: %2").arg(type).arg(text));
	}
};

#endif