blob: 933a5b11f650bb8f85c73ce43843b790019bc2ec (
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
|
/*
Kopete Utils.
Copyright (c) 2005 Duncan Mac-Vicar Prett <duncan@kde.org>
Kopete (c) 2002-2005 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
*************************************************************************
*/
#include <tqmap.h>
#include <kmessagebox.h>
#include <kdebug.h>
#include "knotification.h"
#include "kopeteutils_private.h"
#include "kopeteuiglobal.h"
namespace Kopete
{
namespace Utils
{
NotifyHelper* NotifyHelper::s_self = 0L;
NotifyHelper::NotifyHelper()
{
}
NotifyHelper::~NotifyHelper()
{
}
NotifyHelper* NotifyHelper::self()
{
if (!s_self)
s_self = new NotifyHelper();
return s_self;
}
void NotifyHelper::slotEventActivated(unsigned int action)
{
const KNotification *n = dynamic_cast<const KNotification *>(TQObject::sender());
if (n)
{
ErrorNotificationInfo info = m_events[n];
if ( info.debugInfo.isEmpty() )
KMessageBox::queuedMessageBox( Kopete::UI::Global::mainWidget(), KMessageBox::Information, info.explanation, info.caption);
else
KMessageBox::queuedDetailedError( Kopete::UI::Global::mainWidget(), info.explanation, info.debugInfo, info.caption);
unregisterNotification(n);
}
}
void NotifyHelper::slotEventClosed()
{
const KNotification *n = dynamic_cast<const KNotification *>(TQObject::sender());
if (n)
unregisterNotification(n);
}
void NotifyHelper::registerNotification(const KNotification* event, ErrorNotificationInfo error)
{
m_events.insert( event, error);
}
void NotifyHelper::unregisterNotification(const KNotification* event)
{
m_events.remove(event);
}
} // end ns ErrorNotifier
} // end ns Kopete
#include "kopeteutils_private.moc"
|