2231bd0f198075625d3933307d5753be91463264
[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) : MApplicationPage(parent)
30 {
31     setAttribute(Qt::WA_LockPortraitOrientation, true);
32     setWindowTitle(tr("About"));
33     setPannable(false);
34
35     QGraphicsLinearLayout *layout = new QGraphicsLinearLayout(Qt::Vertical);
36     centralWidget()->setLayout(layout);
37
38     MLabel *application = new MLabel();
39     application->setText("Medard 0.1");
40 //    application->setAlignment(Qt::AlignCenter);
41     layout->addItem(application);
42
43     MLabel *applicationCopyright = new MLabel();
44     applicationCopyright->setText(tr("Copyright(c) 2011 Roman Moravcik"));
45 //    applicationCopyright->setAlignment(Qt::AlignCenter);
46     layout->addItem(applicationCopyright);
47
48     MLabel *weatherDataCopyright = new MLabel();
49     weatherDataCopyright->setText(tr("\n"
50                                   "Weather data:\n"
51                                   "Project MEDARD, Institute of Computer Science,\n"
52                                   "Academy of Sciences of the Czech Republic, Prague\n"
53                                   "\n"
54                                   "Copyright(c) Institute of Computer Science AS CR 2003-2009.\n"
55                                   "MM5: PSU/NCAR, USA (c) CAMx: EVNIRON Corp., USA"));
56     layout->addItem(weatherDataCopyright);
57 }
58 #else
59 AboutDialog::AboutDialog(QDialog *parent) : QDialog(parent)
60 {
61     setWindowTitle(tr("About"));
62
63     QVBoxLayout *layout = new QVBoxLayout();
64     layout->setMargin(16);
65     layout->setSpacing(16);
66     setLayout(layout);
67
68     QLabel *application = new QLabel();
69     QFont font = application->font();
70     font.setBold(true);
71     font.setPointSize(32);
72     application->setFont(font);
73     application->setText("Medard 0.1");
74     application->setAlignment(Qt::AlignCenter);
75     layout->addWidget(application);
76
77     QLabel *applicationCopyright = new QLabel();
78     applicationCopyright->setText(tr("Copyright(c) 2011 Roman Moravcik"));
79     applicationCopyright->setAlignment(Qt::AlignCenter);
80     layout->addWidget(applicationCopyright);
81
82     QLabel *weatherDataCopyright = new QLabel();
83     weatherDataCopyright->setText(tr("\n"
84                                   "Weather data:\n"
85                                   "Project MEDARD, Institute of Computer Science,\n"
86                                   "Academy of Sciences of the Czech Republic, Prague\n"
87                                   "\n"
88                                   "Copyright(c) Institute of Computer Science AS CR 2003-2009.\n"
89                                   "MM5: PSU/NCAR, USA (c) CAMx: EVNIRON Corp., USA"));
90     layout->addWidget(weatherDataCopyright);
91
92 }
93 #endif