diff options
Diffstat (limited to 'src/daemon/main.cpp')
-rw-r--r-- | src/daemon/main.cpp | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/src/daemon/main.cpp b/src/daemon/main.cpp new file mode 100644 index 0000000..dbed5ef --- /dev/null +++ b/src/daemon/main.cpp @@ -0,0 +1,71 @@ +/* + * main.cpp + * + * Created on: May 11, 2021 + * Author: emanoil + * + * kdbusnotification Copyright (C) 2009 kdbusnotification development team + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 + * as published by the Free Software Foundation. + * + * 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 <iostream> + +#include <tdecmdlineargs.h> +#include <tdeaboutdata.h> +#include <tdemessagebox.h> + +#include "NotificationDaemon.h" + +int +main(int argc, char **argv) +{ + TDEAboutData aboutData( + "notification-daemon-tde", + I18N_NOOP("TDE DBUS Notification Daemon"), + "0.1", + I18N_NOOP("A DBUS notification to TDE interface."), // description + TDEAboutData::License_GPL, + "(c) 2021, Emanoil Kotsev", + I18N_NOOP("TDE DBUS Notification Daemon"), // message + 0 /* TODO: Website */, + "[email protected]"); + + TDECmdLineArgs::init( argc, argv, &aboutData ); +// TODO handle options if needed +// TDECmdLineArgs::addCmdLineOptions( options ); +// KUniqueApplication::addCmdLineOptions(); + + if (!KUniqueApplication::start()) + { + std::cerr << i18n("notification-daemon-tde is already running.\n").local8Bit(); + return 0; + } + + NotificationDaemon app; + app.disableSessionManagement(); + + if (!app.isConnectedToDBUS()) + { + KMessageBox::error(NULL,i18n("Can't connect to DBus!")); + // debug message for testing + std::cerr << i18n("Can't connect to DBus!\n").local8Bit(); + KUniqueApplication::kApplication()->quit(); + return 0; + } + else + { + return app.exec(); + } +} |