#include "about.h" #include "ui_about.h" About::About(QWidget *parent) : QDialog(parent), ui(new Ui::About) { ui->setupUi(this); this->setAttribute(Qt::WA_DeleteOnClose,true ); //destroy itself once finished. ui->lbAbout->setText("" "

Vago GUI " + GlobalVars::AppVersion + "

" "

" "Written by s10k

" "Build Date " + __DATE__ + " " + __TIME__ + "

" "Thanks to:
" "Neo for OniSplit
" "EdT for testing, suggestions and icon
" "Iritscen for testing, bugfixing and suggestions
" "demos_kratos for original OniSplit GUI
" "Samer/Mukade/EdT for allow me to use Jubei as icon
" "Alloc for AIE2 and support
" "Paradox for Sound documentation and testing
" "Wiki contributors for the documentation
" "AE contributors
" "and in general to all OniCentral Community

" "Also thanks to:
" "StackOverflow Community
" "Sergey A. Tachenov for the QuaZIP library
" "Antonio Borondo for the documentation how to setup QuaZIP
" "Arseny Kapoulkine (and contributors)for pugixml library
" "smashingmagazine for the folder icon :)
" "Freepik and Flaticon by the background image wizard and text editing icons
" "qtiplot authors for line numbers in QTextEdit
" "d1vanov for basic-xml-syntax-highlighter class
" "

" ""); // Don't use rich text in qtdesigner because it generates platform dependent code ui->lbOniCommunity->setText("" "

" "

" "Visit us at:
" "" "oni.bungie.org" "" "
" "

" "" ); } About::~About() { delete ui; } void About::on_pushButton_clicked() { this->close(); }