Implementation of about dialog using MMessageBox.
[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 #ifdef Q_WS_MAEMO_6
21 #include <MLabel>
22 #endif
23
24 #include <QtGui>
25
26 #include "aboutdialog.h"
27
28 #ifdef Q_WS_MAEMO_6
29 AboutDialog::AboutDialog(QGraphicsItem *parent) : MMessageBox("", M::OkButton)
30 {
31     Q_UNUSED(parent);
32
33     setObjectName("messageBox");
34
35     setTitle("Medard 0.2\n");
36     setText(tr("Copyright(c) 2011 Roman Moravcik\n"
37                "\n"
38                "Weather data:\n"
39                "Project MEDARD, Institute of Computer Science,\n"
40                "Academy of Sciences of the Czech Republic, Prague\n"
41                "\n"
42                "Copyright(c) Institute of Computer Science AS CR 2003-2009.\n"
43                "MM5: PSU/NCAR, USA (c) CAMx: EVNIRON Corp., USA"));
44 }
45 #else
46 AboutDialog::AboutDialog(QDialog *parent) : QDialog(parent)
47 {
48     setWindowTitle(tr("About"));
49
50     QVBoxLayout *layout = new QVBoxLayout();
51     layout->setMargin(16);
52     layout->setSpacing(16);
53     setLayout(layout);
54
55     QLabel *application = new QLabel();
56     QFont font = application->font();
57     font.setBold(true);
58     font.setPointSize(32);
59     application->setFont(font);
60     application->setText("Medard 0.1");
61     application->setAlignment(Qt::AlignCenter);
62     layout->addWidget(application);
63
64     QLabel *applicationCopyright = new QLabel();
65     applicationCopyright->setText(tr("Copyright(c) 2011 Roman Moravcik"));
66     applicationCopyright->setAlignment(Qt::AlignCenter);
67     layout->addWidget(applicationCopyright);
68
69     QLabel *weatherDataCopyright = new QLabel();
70     weatherDataCopyright->setText(tr("\n"
71                                   "Weather data:\n"
72                                   "Project MEDARD, Institute of Computer Science,\n"
73                                   "Academy of Sciences of the Czech Republic, Prague\n"
74                                   "\n"
75                                   "Copyright(c) Institute of Computer Science AS CR 2003-2009.\n"
76                                   "MM5: PSU/NCAR, USA (c) CAMx: EVNIRON Corp., USA"));
77     layout->addWidget(weatherDataCopyright);
78
79 }
80 #endif