summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: 0163fb95ac5f66f739b0d3f72b2779c1794b78c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/***************************************************************************
 *   Copyright (C) 2004 by Hans Oischinger                                 *
 *   hans.oischinger@kde-mail.net                                                 *
 *                                                                         *
 *   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.             *
 ***************************************************************************/

#include "kompose.h"
#include "komposeglobal.h"

#include <stdlib.h>

#include <tdeaboutdata.h>
#include <tdecmdlineargs.h>
#include <tdelocale.h>


static const char description[] = 
  I18N_NOOP("A fullscreen task manager for KDE");

static const char version[] = "0.5.3";

static TDECmdLineOptions options[] =
  {
    { "nosystray", I18N_NOOP( "Do not show the systray icon" ), 0 },
    { "singleshot", I18N_NOOP( "Display the default view and exit (non daemon mode)" ), 0 },
    TDECmdLineLastOption
  };

void myMessageOutput( TQtMsgType type, const char *msg )
{
  return;
  switch ( type )
  {
  case TQtDebugMsg:
    fprintf( stderr, "Debug: %s\n", msg );
    break;
  case TQtWarningMsg:
    fprintf( stderr, "Warning: %s\n", msg );
    break;
  case TQtFatalMsg:
    fprintf( stderr, "Fatal: %s\n", msg );
    abort();                    // deliberately core dump
  }
}

int main(int argc, char **argv)
{
//   qInstallMsgHandler( myMessageOutput );
  
  TDEAboutData about("kompose", I18N_NOOP("Kompose"), version, description,
                   TDEAboutData::License_GPL, "(C) 2005 Hans Oischinger", "", "http://developer.berlios.de/projects/kompose", "hans.oischinger@kde-mail.net");
  about.addAuthor( "Hans Oischinger", 0, "hans.oischinger@kde-mail.net" );
  TDECmdLineArgs::init(argc, argv, &about);
  TDECmdLineArgs::addCmdLineOptions( options );

  Kompose *app = new Kompose();

  // no session.. just start up normally
  TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
  
  if ( !args->isSet("systray") )
  {
    KomposeGlobal::instance()->setHideSystray(true);
  }
  if ( args->isSet("singleshot") )
  {
    KomposeGlobal::instance()->setHideSystray(true);
    KomposeGlobal::instance()->setSingleShot(true);
  }

  KomposeGlobal::instance()->initGui();
  
  //app.setMainWidget( mainWin );

  args->clear();

  // mainWin has WDestructiveClose flag by default, so it will delete itself.
  return app->exec();
}