2014-07-07 00:19:45 +08:00
|
|
|
/*
|
|
|
|
Copyright (C) 2014 by Project Tox <https://tox.im>
|
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
This program is libre 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 3 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 COPYING file for more details.
|
|
|
|
*/
|
|
|
|
|
2014-06-27 06:32:08 +08:00
|
|
|
#include "widget/widget.h"
|
2014-09-30 02:28:59 +08:00
|
|
|
#include "misc/settings.h"
|
2014-06-25 04:11:11 +08:00
|
|
|
#include <QApplication>
|
2014-06-30 08:24:27 +08:00
|
|
|
#include <QFontDatabase>
|
2014-09-11 21:44:34 +08:00
|
|
|
#include <QDebug>
|
2014-06-25 04:11:11 +08:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
2014-07-12 00:05:18 +08:00
|
|
|
a.setApplicationName("qTox");
|
2014-06-25 04:11:11 +08:00
|
|
|
a.setOrganizationName("Tox");
|
2014-06-30 08:24:27 +08:00
|
|
|
|
2014-10-01 22:49:54 +08:00
|
|
|
// Windows platform plugins DLL hell fix
|
|
|
|
QCoreApplication::addLibraryPath(QCoreApplication::applicationDirPath());
|
|
|
|
a.addLibraryPath("platforms");
|
2014-10-18 15:47:42 +08:00
|
|
|
|
|
|
|
qDebug() << "built on: " << __TIME__ << __DATE__;
|
|
|
|
qDebug() << "commit: " << GIT_VERSION << "\n";
|
2014-10-01 22:49:54 +08:00
|
|
|
|
2014-07-04 21:30:47 +08:00
|
|
|
// Install Unicode 6.1 supporting font
|
2014-06-30 08:24:27 +08:00
|
|
|
QFontDatabase::addApplicationFont("://DejaVuSans.ttf");
|
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
Widget* w = Widget::getInstance();
|
|
|
|
|
|
|
|
int errorcode = a.exec();
|
|
|
|
|
|
|
|
delete w;
|
|
|
|
|
|
|
|
return errorcode;
|
|
|
|
}
|