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