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-07-05 01:22:43 +08:00
|
|
|
#include "settings.h"
|
2014-06-25 04:11:11 +08:00
|
|
|
#include <QApplication>
|
2014-06-30 08:24:27 +08:00
|
|
|
#include <QFontDatabase>
|
2014-07-04 21:30:47 +08:00
|
|
|
#include <QTranslator>
|
2014-06-25 04:11:11 +08:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
a.setApplicationName("Toxgui");
|
|
|
|
a.setOrganizationName("Tox");
|
2014-06-30 08:24:27 +08:00
|
|
|
|
2014-07-04 21:30:47 +08:00
|
|
|
// Load translations
|
|
|
|
QTranslator translator;
|
2014-07-05 01:22:43 +08:00
|
|
|
if (Settings::getInstance().getUseTranslations())
|
|
|
|
{
|
|
|
|
QString locale = QLocale::system().name().section('_', 0, 0);
|
|
|
|
if (translator.load(locale,":translations/"))
|
|
|
|
qDebug() << "Loaded translation "+locale;
|
|
|
|
else
|
|
|
|
qDebug() << "Error loading translation "+locale;
|
|
|
|
a.installTranslator(&translator);
|
|
|
|
}
|
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();
|
|
|
|
w->show();
|
|
|
|
|
|
|
|
int errorcode = a.exec();
|
|
|
|
|
|
|
|
delete w;
|
|
|
|
|
|
|
|
return errorcode;
|
|
|
|
}
|
2014-06-27 01:45:47 +08:00
|
|
|
|
|
|
|
/** TODO
|
2014-06-27 06:32:08 +08:00
|
|
|
* ">using a dedicated tool to maintain a TODO list" edition
|
2014-06-27 01:45:47 +08:00
|
|
|
*
|
2014-07-01 06:36:48 +08:00
|
|
|
* QRC FILES DO YOU EVEN INTO THEM ? Fix it soon for packaging and Urras.
|
2014-06-30 22:17:20 +08:00
|
|
|
* Most cameras use YUYV, implement YUYV -> YUV240
|
2014-06-29 03:00:11 +08:00
|
|
|
* Sending large files (~380MB) "restarts" after ~10MB. Goes back to 0%, consumes twice as much ram (reloads the file?)
|
|
|
|
* => Don't load the whole file at once, load small chunks (25MB?) when needed, then free them and load the next
|
2014-06-27 01:45:47 +08:00
|
|
|
* Sort the friend list by status, online first then busy then offline
|
|
|
|
* Don't do anything if a friend is disconnected, don't print to the chat
|
2014-06-29 05:24:56 +08:00
|
|
|
* Changing online/away/busy/offline by clicking the bubble
|
|
|
|
* /me action messages
|
|
|
|
* Popup windows for adding friends and changing settings
|
|
|
|
* And logging of the chat
|
2014-06-27 06:32:08 +08:00
|
|
|
* Show the picture's size between name and size after transfer completion if it's a pic
|
|
|
|
* Adjust all status icons to match the mockup, including scooting the friendslist ones to the left and making the user one the same size
|
|
|
|
* Sidepanel (friendlist) should be resizeable
|
|
|
|
* An extra side panel for groupchats, like Venom does (?)
|
2014-06-27 01:45:47 +08:00
|
|
|
*
|
2014-06-29 05:14:11 +08:00
|
|
|
* In the file transfer widget:
|
|
|
|
* >There is more padding on the left side compared to the right.
|
|
|
|
* >Maybe put the file size should be in the same row as the name.
|
|
|
|
* >Right-align the ETA.
|
|
|
|
*
|
2014-06-27 01:45:47 +08:00
|
|
|
*/
|
2014-06-28 02:24:00 +08:00
|
|
|
|
|
|
|
/** NAMES :
|
|
|
|
Botox
|
|
|
|
Ricin
|
|
|
|
Anthrax
|
|
|
|
Sarin
|
|
|
|
Cyanide
|
|
|
|
Polonium
|
|
|
|
Mercury
|
|
|
|
Arsenic
|
|
|
|
qTox
|
|
|
|
plague
|
|
|
|
Britney
|
|
|
|
Nightshade
|
|
|
|
Belladonna
|
|
|
|
toxer
|
|
|
|
GoyIM
|
|
|
|
*/
|