blob: 1e1d289ecfa8bf8556961453ce614cb69a1c2824 (
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
|
#ifndef CKITCALLPROVIDER_H
#define CKITCALLPROVIDER_H
#include <sowatch.h>
class ContextProperty;
namespace sowatch
{
class CKitCallNotification;
class CKitCallProvider : public NotificationProvider
{
Q_OBJECT
public:
explicit CKitCallProvider(QObject *parent = 0);
~CKitCallProvider();
signals:
void incomingNotification(Notification *notification);
protected:
ContextProperty *_activeCall;
CKitCallNotification *_notification;
protected slots:
void activeCallChanged();
};
}
#endif // CKITCALLPROVIDER_H
|