QTfrontend/about.cpp
author displacer
Sun, 19 Nov 2006 14:36:13 +0000
changeset 254 6bdb58eff749
parent 248 aab204fe5061
child 268 88809d92e504
permissions -rw-r--r--
Special thanks size fixed with large font on linux (workaround)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
187
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
     1
/*
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a worms-like game
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2006 Andrey Korotaev <unC0Rr@gmail.com>
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
     4
 *
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
     8
 *
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    12
 * GNU General Public License for more details.
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    13
 *
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    17
 */
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    18
221
0f451dae4251 Hedgehog on About page
unc0rr
parents: 187
diff changeset
    19
#include <QGridLayout>
0f451dae4251 Hedgehog on About page
unc0rr
parents: 187
diff changeset
    20
#include <QSvgWidget>
235
28903e620258 About page
unc0rr
parents: 221
diff changeset
    21
#include <QLabel>
248
aab204fe5061 Place QLabel with developers info on the QScrollArea
unc0rr
parents: 243
diff changeset
    22
#include <QScrollArea>
187
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    23
#include "about.h"
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    24
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    25
About::About(QWidget * parent) :
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    26
  QWidget(parent)
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    27
{
221
0f451dae4251 Hedgehog on About page
unc0rr
parents: 187
diff changeset
    28
	QGridLayout *mainLayout = new QGridLayout(this);
0f451dae4251 Hedgehog on About page
unc0rr
parents: 187
diff changeset
    29
	QSvgWidget *hedgehog = new QSvgWidget(":/res/Hedgehog.svg", this);
0f451dae4251 Hedgehog on About page
unc0rr
parents: 187
diff changeset
    30
	hedgehog->setFixedSize(300, 329);
235
28903e620258 About page
unc0rr
parents: 221
diff changeset
    31
	mainLayout->addWidget(hedgehog, 0, 0, 2, 1);
28903e620258 About page
unc0rr
parents: 221
diff changeset
    32
28903e620258 About page
unc0rr
parents: 221
diff changeset
    33
	QLabel *lbl1 = new QLabel(this);
28903e620258 About page
unc0rr
parents: 221
diff changeset
    34
28903e620258 About page
unc0rr
parents: 221
diff changeset
    35
	lbl1->setOpenExternalLinks(true);
28903e620258 About page
unc0rr
parents: 221
diff changeset
    36
	lbl1->setText(
236
7ca605677704 Russian translations
unc0rr
parents: 235
diff changeset
    37
			"<div align=\"center\"><h1>Hedgewars</h1>" +
7ca605677704 Russian translations
unc0rr
parents: 235
diff changeset
    38
			QLabel::tr("<h3>Version 0.8</h3>") +
7ca605677704 Russian translations
unc0rr
parents: 235
diff changeset
    39
			"<p><a href=\"http://www.hedgewars.org/\">http://www.hedgewars.org/</a></p><br>" +
7ca605677704 Russian translations
unc0rr
parents: 235
diff changeset
    40
			QLabel::tr("This program is distributed under the GNU General Public License") +
235
28903e620258 About page
unc0rr
parents: 221
diff changeset
    41
			"</div>"
28903e620258 About page
unc0rr
parents: 221
diff changeset
    42
			);
28903e620258 About page
unc0rr
parents: 221
diff changeset
    43
	lbl1->setWordWrap(true);
28903e620258 About page
unc0rr
parents: 221
diff changeset
    44
	mainLayout->addWidget(lbl1, 0, 1);
28903e620258 About page
unc0rr
parents: 221
diff changeset
    45
248
aab204fe5061 Place QLabel with developers info on the QScrollArea
unc0rr
parents: 243
diff changeset
    46
	QScrollArea *sa = new QScrollArea(this);
aab204fe5061 Place QLabel with developers info on the QScrollArea
unc0rr
parents: 243
diff changeset
    47
	sa->setWidgetResizable(true);
aab204fe5061 Place QLabel with developers info on the QScrollArea
unc0rr
parents: 243
diff changeset
    48
	sa->setFrameStyle(QFrame::NoFrame);
235
28903e620258 About page
unc0rr
parents: 221
diff changeset
    49
	QLabel *lbl2 = new QLabel(this);
28903e620258 About page
unc0rr
parents: 221
diff changeset
    50
28903e620258 About page
unc0rr
parents: 221
diff changeset
    51
	lbl2->setOpenExternalLinks(true);
28903e620258 About page
unc0rr
parents: 221
diff changeset
    52
	lbl2->setText(
236
7ca605677704 Russian translations
unc0rr
parents: 235
diff changeset
    53
			QLabel::tr("<h2>Developers:</h2>") +
7ca605677704 Russian translations
unc0rr
parents: 235
diff changeset
    54
			"<p>"
235
28903e620258 About page
unc0rr
parents: 221
diff changeset
    55
			"Andrey Korotaev &lt;<a href=\"mailto:unC0Rr@gmail.com\">unC0Rr@gmail.com</a>&gt;<br>"
28903e620258 About page
unc0rr
parents: 221
diff changeset
    56
			"Igor Ulyanov &lt;<a href=\"mailto:iulyanov@gmail.com\">iulyanov@gmail.com</a>&gt;"
236
7ca605677704 Russian translations
unc0rr
parents: 235
diff changeset
    57
			"</p>" +
243
556b40fbd28c Add special thanks to about page
unc0rr
parents: 236
diff changeset
    58
			QLabel::tr("<h2>Translations:</h2><p>") +
235
28903e620258 About page
unc0rr
parents: 221
diff changeset
    59
			"english: Andrey Korotaev &lt;<a href=\"mailto:unC0Rr@gmail.com\">unC0Rr@gmail.com</a>&gt;<br>"
28903e620258 About page
unc0rr
parents: 221
diff changeset
    60
			"russian: Andrey Korotaev &lt;<a href=\"mailto:unC0Rr@gmail.com\">unC0Rr@gmail.com</a>&gt;"
243
556b40fbd28c Add special thanks to about page
unc0rr
parents: 236
diff changeset
    61
			"</p>" +
556b40fbd28c Add special thanks to about page
unc0rr
parents: 236
diff changeset
    62
			QLabel::tr("<h2>Special thanks:</h2><p>") +
556b40fbd28c Add special thanks to about page
unc0rr
parents: 236
diff changeset
    63
			"Aleksey Andreev &lt;<a href=\"mailto:blaknayabr@gmail.com\">blaknayabr@gmail.com</a>&gt;<br>"
556b40fbd28c Add special thanks to about page
unc0rr
parents: 236
diff changeset
    64
			"Natasha Stafeeva &lt;<a href=\"mailto:layout@pisem.net\">layout@pisem.net</a>&gt;"
254
6bdb58eff749 Special thanks size fixed with large font on linux (workaround)
displacer
parents: 248
diff changeset
    65
			"</p>" +
6bdb58eff749 Special thanks size fixed with large font on linux (workaround)
displacer
parents: 248
diff changeset
    66
			QLabel::tr("<h2></h2><p></p>")
235
28903e620258 About page
unc0rr
parents: 221
diff changeset
    67
			);
28903e620258 About page
unc0rr
parents: 221
diff changeset
    68
	lbl2->setWordWrap(true);
248
aab204fe5061 Place QLabel with developers info on the QScrollArea
unc0rr
parents: 243
diff changeset
    69
	sa->setWidget(lbl2);
aab204fe5061 Place QLabel with developers info on the QScrollArea
unc0rr
parents: 243
diff changeset
    70
	mainLayout->addWidget(sa, 1, 1);
187
96c3154efee5 "About" page, not yet filled with content
unc0rr
parents:
diff changeset
    71
}