Added copyright information to about dialog.
[medard] / src / aboutdialog.cpp
1 /*
2  *  Medard for Maemo.
3  *  Copyright (C) 2011 Roman Moravcik
4  *
5  *  This program 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  *  This program 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 this program; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include <QtGui>
21
22 #include "aboutdialog.h"
23
24 AboutDialog::AboutDialog(QDialog *parent) : QDialog(parent)
25 {
26     setWindowTitle(tr("About"));
27
28     QVBoxLayout *layout = new QVBoxLayout();
29     layout->setMargin(16);
30     layout->setSpacing(16);
31     setLayout(layout);
32
33     QLabel *application = new QLabel();
34     QFont font = application->font();
35     font.setBold(true);
36     font.setPointSize(32);
37     application->setFont(font);
38     application->setText("Medard 0.1");
39     application->setAlignment(Qt::AlignCenter);
40     layout->addWidget(application);
41
42     QLabel *applicationCopyright = new QLabel();
43     applicationCopyright->setText(tr("Copyright(c) 2011 Roman Moravcik"));
44     applicationCopyright->setAlignment(Qt::AlignCenter);
45     layout->addWidget(applicationCopyright);
46
47     QLabel *weatherDataCopyright = new QLabel();
48     weatherDataCopyright->setText(tr("\n"
49                                   "Weather data:\n"
50                                   "Project MEDARD, Institute of Computer Science,\n"
51                                   "Academy of Sciences of the Czech Republic, Prague\n"
52                                   "\n"
53                                   "Copyright(c) Institute of Computer Science AS CR 2003-2009.\n"
54                                   "MM5: PSU/NCAR, USA © CAMx: EVNIRON Corp., USA"));
55     layout->addWidget(weatherDataCopyright);
56
57 }