-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnsraboutdialog.cpp
69 lines (61 loc) · 2.26 KB
/
nsraboutdialog.cpp
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
/*
* Copyright (C) 2011-2015 Alexander Saprykin <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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.
*/
#include "nsraboutdialog.h"
#include "nsrsettings.h"
#include "nsrlanguage.h"
#include "ui_nsraboutdialog.h"
NSRAboutDialog::NSRAboutDialog (QWidget *parent) :
NSRTouchDialog (parent),
ui (new Ui::NSRAboutDialog)
{
const NSRLanguageData *lang = NSRLanguage::instance()->getLanguage();
QWidget *widget = new QWidget (this);
ui->setupUi (widget);
setTitleIcon (QPixmap(":/icons/icons/about.png"));
setTitle (NSRLanguage::instance()->getLanguage()->frameAbout);
setContentsWidget (widget);
ui->developerLabel->setText (lang->aboutDeveloperName);
ui->contactsLabel->setText (lang->aboutContacts + " <[email protected]>");
ui->iconsCreditLabel->setText (lang->aboutIconsNote + " Stuttgart pack, Axialis Team");
ui->licenseLabel->setText (lang->aboutLicense);
ui->facebookLabel->setText (lang->aboutFacebookNote);
ui->versionLabel->setText (QString("NSR Reader %1").arg(NSRSettings::getVersion()));
QString style = "QLabel {"
"background-color: white; "
"border: 1px solid rgba(180, 180, 180, 255); "
"border-right: none; "
"border-left: none; "
"border-top: none; "
"color: rgb(0, 0, 0); "
#ifdef Q_OS_SYMBIAN
"font-size: 16px; "
"font-weight: bold; "
#else
"font-size: 22px; "
#endif
"}";
ui->developerLabel->setStyleSheet (style);
ui->contactsLabel->setStyleSheet (style);
ui->iconsCreditLabel->setStyleSheet (style);
ui->facebookLabel->setStyleSheet (style);
ui->versionLabel->setStyleSheet (style);
}
NSRAboutDialog::~NSRAboutDialog ()
{
delete ui;
}