ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/s10k/Vago/about.cpp
Revision: 1039
Committed: Sat Apr 2 15:58:07 2016 UTC (9 years, 6 months ago) by s10k
Content type: text/x-c++src
Original Path: Vago/trunk/Vago/about.cpp
File size: 2146 byte(s)
Log Message:
9.0c

File Contents

# Content
1 #include "about.h"
2 #include "ui_about.h"
3
4 About::About(QWidget *parent) :
5 QDialog(parent),
6 ui(new Ui::About)
7 {
8 ui->setupUi(this);
9 this->setAttribute(Qt::WA_DeleteOnClose,true ); //destroy itself once finished.
10 this->layout()->setSizeConstraint( QLayout::SetFixedSize ); //fixed size
11 ui->lbAbout->setOpenExternalLinks(true); //allow navigate to oni central
12 ui->lbAbout->setText("<html>"
13 "<b>Vago GUI "+GlobalVars::AppVersion+"</b>"
14 "<p style='font-size:small;'>"
15 "Written by s10k<br /><br/>"
16 "Thanks to:<br/>"
17 "Neo for OniSplit<br />"
18 "EdT for testing, suggestions and icon<br />"
19 "Iritscen for testing, bugfixing and suggestions<br />"
20 "demos_kratos for original OniSplit GUI<br />"
21 "Samer/Mukade/EdT for allow me to use Jubei as icon<br />"
22 "Alloc for AIE2 and support<br />"
23 "Paradox for Sound documentation and testing<br />"
24 "Wiki contributors for the documentation<br />"
25 "AE contributors<br />"
26 "and in general to all OniCentral Community<br /><br/>"
27 "Also thanks to: <br />"
28 "StackOverflow Community<br />"
29 "Fabrizio Angius for PKZIP 2.0 for zip handling<br />"
30 "smashingmagazine for the folder icon :)<br />"
31 "<center>"
32 "Visit us at:<br />"
33 "<a href='http://oni.bungie.org'>"
34 "oni.bungie.org"
35 "</center>"
36 "</a>"
37 "</p>"
38 "</html>"); // Don't use rich text in qtdesigner because it generates platform dependent code
39 }
40
41 About::~About()
42 {
43 delete ui;
44 }
45
46 void About::on_pushButton_clicked()
47 {
48 this->close();
49 }