Add (and install) svg for the new krunner interface.
[kdebase/uwolfer.git] / workspace / klipper / main.cpp
blob1f8cad72f87c80a30f41e98f11c73c4778fc85f7
1 // -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 8; -*-
2 /* This file is part of the KDE project
3 Copyright (C) Andrew Stanley-Jones
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; see the file COPYING. If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
21 #include <stdio.h>
22 #include <stdlib.h>
24 #include <klocale.h>
25 #include <kcmdlineargs.h>
26 #include <kaboutdata.h>
27 #include <kuniqueapplication.h>
29 #include "tray.h"
30 #include "version.h"
31 #include "klipper.h"
33 extern "C" int KDE_EXPORT kdemain(int argc, char *argv[])
35 Klipper::createAboutData();
36 KCmdLineArgs::init( argc, argv, Klipper::aboutData());
37 KUniqueApplication::addCmdLineOptions();
39 if (!KUniqueApplication::start()) {
40 fprintf(stderr, "Klipper is already running!\n");
41 exit(0);
43 KUniqueApplication app;
44 app.disableSessionManagement();
45 app.setQuitOnLastWindowClosed( false );
47 KlipperTray klipper;
48 int ret = app.exec();
49 Klipper::destroyAboutData();
50 return ret;