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
|
/*
* 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();
}
}
|