author | zautrix <zautrix> | 2004-06-26 19:01:18 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-06-26 19:01:18 (UTC) |
commit | b9aad1f15dc600e4dbe4c62d3fcced6363188ba3 (patch) (side-by-side diff) | |
tree | 2c3d4004fb21c72cba65793859f9bcd8ffd3a49c /korganizer/main.cpp | |
download | kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.zip kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.gz kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.bz2 |
Initial revision
-rw-r--r-- | korganizer/main.cpp | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/korganizer/main.cpp b/korganizer/main.cpp new file mode 100644 index 0000000..6843595 --- a/dev/null +++ b/korganizer/main.cpp @@ -0,0 +1,107 @@ + + +#ifndef DESKTOP_VERSION +#include <qpe/qpeapplication.h> +#include <qpe/global.h> +#include <stdlib.h> +#else +#include <qapplication.h> +#include <qstring.h> +#include <qwindowsstyle.h> +#include <qplatinumstyle.h> +#include <qsgistyle.h> +#endif + +#include <qdir.h> +#include <kstandarddirs.h> +#include <kglobal.h> +#include <stdio.h> +#include "mainwindow.h" + +int main( int argc, char **argv ) +{ +#ifndef DESKTOP_VERSION + QPEApplication a( argc, argv ); + a.setKeepRunning (); +#else + QApplication a( argc, argv ); + QApplication::setStyle( new QPlatinumStyle ()); +#endif + bool exitHelp = false; + if ( argc > 1 ) { + QString command = argv[1]; + if ( command == "-help" ){ + printf("KO/Pi command line commands:\n"); + printf(" no command: Start KO/Pi in usual way\n"); + printf(" -help: This output\n"); + printf("Next Option: Open or Show after start:\n"); + printf(" -newTodo: New Todo dialog\n"); + printf(" -newEvent: New Event dialog\n"); + printf(" -showList: List view\n"); + printf(" -showDay: Day view\n"); + printf(" -showWWeek: Work Week view\n"); + printf(" -showWeek: Week view\n"); + printf(" -showTodo: Todo view\n"); + printf(" -showJournal: Journal view\n"); + printf(" -showKO: Next Days view\n"); + printf(" -showWNext: What's Next view\n"); + printf(" -showNextXView: Next X View\n"); + printf(" -new[Y] and -show[X] may be used togehther\n"); + printf(" KO/Pi is exiting now. Bye!\n"); + exitHelp = true; + } + } + if ( ! exitHelp ) { + KGlobal::setAppName( "korganizer" ); + + + QString fileName ; +#ifndef DESKTOP_VERSION + KStandardDirs::setAppDir( Global::applicationFileName( "korganizer", "" ) ); + fileName = getenv("QPEDIR"); + KGlobal::iconLoader()->setIconPath( fileName +"/pics/kdepim/korganizer/"); +#else + +#ifndef _WIN32_ + fileName = qApp->applicationDirPath () + "/kdepim/korganizer/"; +#else + fileName = qApp->applicationDirPath () + "\\kdepim\\korganizer\\"; +#endif + + KGlobal::iconLoader()->setIconPath(fileName); + + QString appdir = QDir::homeDirPath(); + //appdir = "C:\\"; + if ( appdir.right(1) == "\\" || appdir.right(1) == "/" ) + appdir += "korganizer"; + else + appdir += "/korganizer"; + KStandardDirs::setAppDir( QDir::convertSeparators( appdir )); + // qDebug(" %s ",KStandardDirs::appDir().latin1() ); +#endif + QDir app_dir; + if ( !app_dir.exists(KStandardDirs::appDir()) ) + app_dir.mkdir (KStandardDirs::appDir()); + MainWindow m; +#ifndef DESKTOP_VERSION + QObject::connect( &a, SIGNAL (appMessage ( const QCString &, const QByteArray & )),&m, SLOT(recieve( const QCString&, const QByteArray& ))); + a.showMainWidget(&m ); +#else + a.setMainWidget(&m ); + m.show(); + //m.resize( 800, 600 ); + QObject::connect(&a, SIGNAL(lastWindowClosed()), &a, SLOT(quit())); +#endif + if ( argc > 1 ) { + QCString command = argv[1]; + if ( argc > 2 ) + command += argv[2]; + qApp->processEvents(); + m.recieve(command, QByteArray() ); + + } + a.exec(); + + } + qDebug("KO: Bye! "); +} |