-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnsrnewsdialog.cpp
77 lines (68 loc) · 2.2 KB
/
nsrnewsdialog.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
70
71
72
73
74
75
76
77
/*
* 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 "nsrnewsdialog.h"
#include "nsrsettings.h"
#include "nsrlanguage.h"
#include "ui_nsrnewsdialog.h"
NSRNewsDialog::NSRNewsDialog(QWidget *parent) :
NSRTouchDialog(parent),
ui(new Ui::NSRNewsDialog)
{
const NSRLanguageData *lang = NSRLanguage::instance()->getLanguage();
QWidget *widget = new QWidget (this);
ui->setupUi (widget);
setTitleIcon (QPixmap(":/icons/icons/nsrlogo-title.png"));
setTitle (lang->newsTitle);
setContentsWidget (widget);
QString style = "QLabel { "
"background-color: white; "
"border: 1px solid rgbs(180, 180, 180, 255); "
"border-right:none; "
"border-left:none; "
"border-top:none; "
"color: rgb(255, 0, 0); "
#ifdef Q_OS_SYMBIAN
"font: bold 16px; "
#else
"font-size: 21px; "
#endif
"}";
QString style2 = "QLabel { "
"background-color: white; "
"border: 1px solid rgbs(180, 180, 180, 255); "
"border-right:none; "
"border-left:none; "
"border-top:none; "
"color: rgb(0, 0, 0); "
#ifdef Q_OS_SYMBIAN
"font: bold 16px; "
#else
"font-size: 21px; "
#endif
"}";
ui->welcomeLabel->setStyleSheet (style);
ui->newsTitleLabel->setStyleSheet (style2);
ui->newsLabel1->setStyleSheet (style2);
ui->welcomeLabel->setText ((lang->newsWelcome + " NSR Reader %1!").arg (NSRSettings::getVersion()));
ui->newsTitleLabel->setText (lang->newsTitleLabel);
ui->newsLabel1->setText (lang->newsFeature1);
}
NSRNewsDialog::~NSRNewsDialog()
{
delete ui;
}