2007-11-14 22:18:48 -05:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare QT Gui is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006, crypton
|
|
|
|
*
|
|
|
|
* This program is free 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 2
|
|
|
|
* 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
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#include <QtGui>
|
|
|
|
#include <QObject>
|
|
|
|
#include <rshare.h>
|
|
|
|
#include <gui/MainWindow.h>
|
|
|
|
#include <gui/StartDialog.h>
|
|
|
|
#include <gui/GenCertDialog.h>
|
2009-05-09 09:38:46 -04:00
|
|
|
#include <gui/Preferences/GeneralDialog.h>
|
2008-09-18 11:15:09 -04:00
|
|
|
#include <gui/Preferences/rsharesettings.h>
|
2009-05-07 18:43:11 -04:00
|
|
|
#include <gui/connect/ConfCertDialog.h>
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/*** WINDOWS DON'T LIKE THIS - REDEFINES VER numbers.
|
|
|
|
#include <gui/qskinobject/qskinobject.h>
|
|
|
|
****/
|
|
|
|
|
2008-08-15 15:03:50 -04:00
|
|
|
//#include <util/process.h>
|
|
|
|
#include <util/stringutil.h>
|
2009-02-08 09:30:28 -05:00
|
|
|
#include "rsiface/rsinit.h"
|
2007-11-14 22:18:48 -05:00
|
|
|
#include "rsiface/rsiface.h"
|
|
|
|
#include "rsiface/notifyqt.h"
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
|
|
|
|
QStringList args = char_array_to_stringlist(argv+1, argc-1);
|
|
|
|
|
|
|
|
Q_INIT_RESOURCE(images);
|
|
|
|
|
|
|
|
rsiface = NULL;
|
|
|
|
|
|
|
|
/* RetroShare Core Objects */
|
2009-02-08 09:30:28 -05:00
|
|
|
RsInit::InitRsConfig();
|
|
|
|
bool okStart = RsInit::InitRetroShare(argc, argv);
|
2008-09-18 11:15:09 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
Function RsConfigMinimised is not available in SVN, so I commented it out.
|
2008-06-14 09:24:22 -04:00
|
|
|
bool startMinimised = RsConfigStartMinimised(config);
|
2008-09-18 11:15:09 -04:00
|
|
|
*/
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-05-09 09:38:46 -04:00
|
|
|
//bool startMinimized = false;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* Setup The GUI Stuff */
|
|
|
|
Rshare rshare(args, argc, argv,
|
2009-07-30 17:48:54 -04:00
|
|
|
QString::fromStdString(RsInit::RsConfigDirectory()));
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* Login Dialog */
|
|
|
|
if (!okStart)
|
|
|
|
{
|
2009-02-08 09:30:28 -05:00
|
|
|
/* check for existing Certificate */
|
|
|
|
std::string userName;
|
|
|
|
|
|
|
|
StartDialog *sd = NULL;
|
2007-11-14 22:18:48 -05:00
|
|
|
bool genCert = false;
|
2009-07-30 17:48:54 -04:00
|
|
|
std::list<std::string> accountIds;
|
|
|
|
if (RsInit::getAccountIds(accountIds) && (accountIds.size() > 0))
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
2009-02-08 09:30:28 -05:00
|
|
|
sd = new StartDialog();
|
|
|
|
sd->show();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
while(sd -> isVisible())
|
|
|
|
{
|
|
|
|
rshare.processEvents();
|
2007-11-14 22:18:48 -05:00
|
|
|
#ifdef WIN32
|
2009-02-08 09:30:28 -05:00
|
|
|
Sleep(10);
|
2007-11-14 22:18:48 -05:00
|
|
|
#else // __LINUX__
|
2009-02-08 09:30:28 -05:00
|
|
|
usleep(10000);
|
2007-11-14 22:18:48 -05:00
|
|
|
#endif
|
2009-02-08 09:30:28 -05:00
|
|
|
}
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
/* if we're logged in */
|
|
|
|
genCert = sd->requestedNewCert();
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-02-08 09:30:28 -05:00
|
|
|
genCert = true;
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (genCert)
|
|
|
|
{
|
2009-02-08 09:30:28 -05:00
|
|
|
GenCertDialog *gd = new GenCertDialog();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
gd->show();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
while(gd -> isVisible())
|
|
|
|
{
|
|
|
|
rshare.processEvents();
|
2007-11-14 22:18:48 -05:00
|
|
|
#ifdef WIN32
|
2009-02-08 09:30:28 -05:00
|
|
|
Sleep(10);
|
2007-11-14 22:18:48 -05:00
|
|
|
#else // __LINUX__
|
2009-02-08 09:30:28 -05:00
|
|
|
usleep(10000);
|
2007-11-14 22:18:48 -05:00
|
|
|
#endif
|
2009-02-08 09:30:28 -05:00
|
|
|
}
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* don't save auto login details */
|
2009-02-08 09:30:28 -05:00
|
|
|
RsInit::LoadCertificates(false);
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
NotifyQt *notify = new NotifyQt();
|
2009-07-30 17:48:54 -04:00
|
|
|
createRsIface(*notify);
|
|
|
|
createRsControl(*rsiface, *notify);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-07-30 17:48:54 -04:00
|
|
|
rsicontrol->StartupRetroShare();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
MainWindow *w = new MainWindow;
|
2009-01-22 16:06:54 -05:00
|
|
|
|
|
|
|
// I'm using a signal to transfer the hashing info to the mainwindow, because Qt schedules signals properly to
|
|
|
|
// avoid clashes between infos from threads.
|
|
|
|
//
|
2009-08-16 16:10:53 -04:00
|
|
|
|
|
|
|
qRegisterMetaType<FileDetail>("FileDetail") ;
|
|
|
|
|
2009-03-15 18:45:40 -04:00
|
|
|
std::cerr << "connecting signals and slots" << std::endl ;
|
2009-08-16 16:10:53 -04:00
|
|
|
QObject::connect(notify,SIGNAL(gotTurtleSearchResult(qulonglong,FileDetail)),w->searchDialog ,SLOT(updateFiles(qulonglong,FileDetail))) ;
|
|
|
|
QObject::connect(notify,SIGNAL(hashingInfoChanged(const QString&)),w ,SLOT(updateHashingInfo(const QString&))) ;
|
|
|
|
QObject::connect(notify,SIGNAL(filesPreModChanged(bool)) ,w->sharedfilesDialog ,SLOT(preModDirectories(bool) )) ;
|
|
|
|
QObject::connect(notify,SIGNAL(filesPostModChanged(bool)) ,w->sharedfilesDialog ,SLOT(postModDirectories(bool) )) ;
|
|
|
|
QObject::connect(notify,SIGNAL(transfersChanged()) ,w->transfersDialog ,SLOT(insertTransfers() )) ;
|
|
|
|
QObject::connect(notify,SIGNAL(friendsChanged()) ,w->messengerWindow ,SLOT(insertPeers() )) ;
|
|
|
|
QObject::connect(notify,SIGNAL(friendsChanged()) ,w->peersDialog ,SLOT(insertPeers() )) ;
|
|
|
|
QObject::connect(notify,SIGNAL(neighborsChanged()) ,w->networkDialog ,SLOT(insertConnect() )) ;
|
|
|
|
QObject::connect(notify,SIGNAL(messagesChanged()) ,w->messagesDialog ,SLOT(insertMessages() )) ;
|
|
|
|
QObject::connect(notify,SIGNAL(configChanged()) ,w->messagesDialog ,SLOT(displayConfig() )) ;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-09-29 16:37:20 -04:00
|
|
|
QObject::connect(notify,SIGNAL(chatStatusChanged(const QString&,const QString&,bool)),w->peersDialog,SLOT(updatePeerStatusString(const QString&,const QString&,bool)));
|
2009-09-30 16:53:18 -04:00
|
|
|
QObject::connect(notify,SIGNAL(peerHasNewAvatar(const QString&)),w->peersDialog,SLOT(updatePeersAvatar(const QString&)));
|
2009-05-05 15:50:45 -04:00
|
|
|
QObject::connect(notify,SIGNAL(logInfoChanged(const QString&)),w->networkDialog,SLOT(setLogInfo(QString))) ;
|
2009-05-05 09:18:53 -04:00
|
|
|
|
2009-05-07 18:43:11 -04:00
|
|
|
QObject::connect(ConfCertDialog::instance(),SIGNAL(configChanged()),w->networkDialog,SLOT(insertConnect())) ;
|
2009-05-15 08:07:37 -04:00
|
|
|
QObject::connect(w->peersDialog,SIGNAL(friendsUpdated()),w->networkDialog,SLOT(insertConnect())) ;
|
2009-07-13 10:01:49 -04:00
|
|
|
QObject::connect(w->peersDialog,SIGNAL(notifyGroupChat(const QString&,const QString&)),w,SLOT(displaySystrayMsg(const QString&,const QString&))) ;
|
|
|
|
|
2008-08-15 13:49:57 -04:00
|
|
|
/* only show window, if not startMinimized */
|
2009-05-09 09:38:46 -04:00
|
|
|
RshareSettings *_settings = new RshareSettings();
|
|
|
|
|
|
|
|
if(!_settings->value(QString::fromUtf8("StartMinimized"), false).toBool())
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
2009-02-08 09:30:28 -05:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
w->show();
|
2008-10-18 12:02:06 -04:00
|
|
|
}
|
2009-02-08 09:30:28 -05:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/* Startup a Timer to keep the gui's updated */
|
|
|
|
QTimer *timer = new QTimer(w);
|
|
|
|
timer -> connect(timer, SIGNAL(timeout()), notify, SLOT(UpdateGUI()));
|
2009-02-08 09:30:28 -05:00
|
|
|
timer->start(1000);
|
|
|
|
|
|
|
|
/* dive into the endless loop */
|
|
|
|
// return ret;
|
2009-03-12 11:51:19 -04:00
|
|
|
int ti = rshare.exec();
|
|
|
|
delete w ;
|
|
|
|
return ti ;
|
2008-08-15 15:03:50 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|