2007-01-13 02:40:33 +00:00
|
|
|
/***************************************************************************
|
|
|
|
|
* Copyright (C) 2006 by FThauer FHammer *
|
|
|
|
|
* f.thauer@web.de *
|
|
|
|
|
* *
|
|
|
|
|
* 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., *
|
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
|
|
***************************************************************************/
|
2007-01-16 22:42:02 +00:00
|
|
|
|
2007-01-17 00:39:20 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
|
2007-01-16 22:42:02 +00:00
|
|
|
/////// can be removed for non-qt-guis ////////////
|
2007-01-13 02:40:33 +00:00
|
|
|
#include <qapplication.h>
|
2007-01-16 22:42:02 +00:00
|
|
|
///////////////////////////////////////////////////
|
2007-01-13 02:40:33 +00:00
|
|
|
|
|
|
|
|
#include "session.h"
|
|
|
|
|
#include "guiwrapper.h"
|
2007-02-18 16:04:00 +00:00
|
|
|
#include <net/socket_startup.h>
|
2007-01-13 02:40:33 +00:00
|
|
|
|
2007-01-19 23:25:42 +00:00
|
|
|
#include <cstdlib>
|
|
|
|
|
#include <ctime>
|
|
|
|
|
|
2007-02-19 00:39:44 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
|
#define _CRTDBG_MAP_ALLOC
|
|
|
|
|
#include <crtdbg.h>
|
|
|
|
|
|
|
|
|
|
#define ENABLE_LEAK_CHECK() \
|
|
|
|
|
{ \
|
|
|
|
|
int tmpFlag = _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG); \
|
|
|
|
|
tmpFlag |= _CRTDBG_LEAK_CHECK_DF; \
|
|
|
|
|
_CrtSetDbgFlag(tmpFlag); \
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef ENABLE_LEAK_CHECK
|
|
|
|
|
#define ENABLE_LEAK_CHECK()
|
|
|
|
|
#endif
|
|
|
|
|
|
2007-01-19 23:25:42 +00:00
|
|
|
using namespace std;
|
|
|
|
|
|
2007-01-13 02:40:33 +00:00
|
|
|
class GuiWrapper;
|
|
|
|
|
|
|
|
|
|
int main( int argc, char **argv )
|
|
|
|
|
{
|
2007-02-25 23:16:26 +00:00
|
|
|
//ENABLE_LEAK_CHECK();
|
2007-02-19 00:39:44 +00:00
|
|
|
|
|
|
|
|
//_CrtSetBreakAlloc(49937);
|
|
|
|
|
|
2007-02-18 16:04:00 +00:00
|
|
|
socket_startup();
|
2007-01-16 23:08:39 +00:00
|
|
|
|
2007-01-16 22:42:02 +00:00
|
|
|
/////// can be removed for non-qt-guis ////////////
|
2007-01-13 02:40:33 +00:00
|
|
|
QApplication a( argc, argv );
|
2007-02-01 02:18:59 +00:00
|
|
|
a.setStyle(new QPlastiqueStyle);
|
2007-03-03 00:11:26 +00:00
|
|
|
Q_INIT_RESOURCE(resources);
|
2007-01-16 22:42:02 +00:00
|
|
|
///////////////////////////////////////////////////
|
|
|
|
|
|
2007-01-13 17:20:12 +00:00
|
|
|
GuiInterface *myGuiInterface = new GuiWrapper();
|
2007-01-13 14:27:56 +00:00
|
|
|
Session theFirst(myGuiInterface);
|
2007-02-18 13:45:56 +00:00
|
|
|
myGuiInterface->setSession(&theFirst);
|
2007-01-13 02:40:33 +00:00
|
|
|
|
2007-02-18 16:04:00 +00:00
|
|
|
int retVal = a.exec();
|
|
|
|
|
|
|
|
|
|
socket_cleanup();
|
|
|
|
|
return retVal;
|
2007-01-13 02:40:33 +00:00
|
|
|
}
|