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
|
/*
statisticsdcopiface.h
Copyright (c) 2003-2004 by Marc Cramdal <marc.cramdal@gmail.com>
*************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
*************************************************************************
*/
#ifndef STATISTICSDCOP_H
#define STATISTICSDCOP_H
#include <dcopobject.h>
class StatisticsDCOPIface : virtual public DCOPObject
{
K_DCOP
public:
k_dcop:
/**
* Shows the statistics dialog for contact which has KABC id \var contactId
*/
virtual void dcopStatisticsDialog(TQString contactId) = 0;
/**
* \returns true if contact was online at time timeStamp, false else. Returns false if contact does not exist.
*/
virtual bool dcopWasOnline(TQString id, int timeStamp) = 0;
/**
* \returns true if contact was online at dt, false else. Returns false if contact does not exist or if date is invalid.
*/
virtual bool dcopWasOnline(TQString id, TQString datetime) = 0;
/**
* \returns true if contact was away at time timeStamp, false else. Returns false if contact does not exist.
*/
virtual bool dcopWasAway(TQString id, int timeStamp) = 0;
/**
* \returns true if contact was away at dt, false else. Returns false if contact does not exist or if date is invalid.
*/
virtual bool dcopWasAway(TQString id, TQString datetime) = 0;
/**
* \returns true if contact was offline at time timeStamp, false else. Returns false if contact does not exist.
*/
virtual bool dcopWasOffline(TQString id, int timeStamp) = 0;
/**
* \returns true if contact was offline at dt, false else. Returns false if contact does not exist or if date is invalid.
*/
virtual bool dcopWasOffline(TQString id, TQString datetime) = 0;
/**
* \returns return the status of the contact at datetime.
*/
virtual TQString dcopStatus(TQString id, TQString datetime) = 0;
/**
* \returns return the status of the contact at timeStamp.
*/
virtual TQString dcopStatus(TQString id, int timeStamp) = 0;
/**
* \returns the main status (most used status) of the contact id at date (not time) timeStamp. Will take the day where timeStamp is.
*/
virtual TQString dcopMainStatus(TQString id, int timeStamp) = 0;
};
#endif // STATISTICSDCOP_H
|