|
|
|
@ -44,9 +44,21 @@
|
|
|
|
|
|
|
|
|
|
#include "daemon.h"
|
|
|
|
|
|
|
|
|
|
TDEPassivePopupStackContainer* GTKNotifierContainer = NULL;
|
|
|
|
|
NotificationContainer* GTKNotifierContainer = NULL;
|
|
|
|
|
void real_handleGTKMain();
|
|
|
|
|
|
|
|
|
|
NotificationContainer::NotificationContainer() : TDEPassivePopupStackContainer() {
|
|
|
|
|
//
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NotificationContainer::~NotificationContainer() {
|
|
|
|
|
//
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NotificationContainer::handleGTKMain() {
|
|
|
|
|
real_handleGTKMain();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#undef signals
|
|
|
|
|
|
|
|
|
|
#include <dbus/dbus.h>
|
|
|
|
@ -287,7 +299,7 @@ main(int argc, char **argv)
|
|
|
|
|
TDECmdLineArgs::init(argc, argv, &aboutData);
|
|
|
|
|
|
|
|
|
|
TDEApplication app;
|
|
|
|
|
TDEPassivePopupStackContainer nc;
|
|
|
|
|
NotificationContainer nc;
|
|
|
|
|
app.setMainWidget(&nc);
|
|
|
|
|
GTKNotifierContainer = &nc;
|
|
|
|
|
TQTimer *gtkEventProcessor = new TQTimer( &app );
|
|
|
|
|