blob: 72bf660505ead16b58e1be1f688eef0a8fe63980 (
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
|
/*
* Copyright (C) 2003-2005 Helge Deller <deller@kde.org>
*/
#ifndef _KMOBILECLIENT_H_
#define _KMOBILECLIENT_H_
#include <dcopclient.h>
#include <tdepimmacros.h>
class KDE_EXPORT KMobileClient : public DCOPClient
{
Q_OBJECT
public:
KMobileClient();
virtual ~KMobileClient();
TQCString appId() const { return m_clientAppId; };
bool isKMobileAvailable();
bool startKMobileApplication();
/**
* DCOP implementation
*/
TQStringList deviceNames();
void removeDevice( TQString deviceName );
void configDevice( TQString deviceName );
bool connectDevice( TQString deviceName );
bool disconnectDevice( TQString deviceName );
bool connected( TQString deviceName );
TQString deviceClassName( TQString deviceName );
TQString deviceName( TQString deviceName );
TQString revision( TQString deviceName );
int classType( TQString deviceName );
int capabilities( TQString deviceName );
TQString nameForCap( TQString deviceName, int cap );
TQString iconFileName( TQString deviceName );
int numAddresses( TQString deviceName );
TQString readAddress( TQString deviceName, int index );
bool storeAddress( TQString deviceName, int index, TQString vcard, bool append );
int numCalendarEntries( TQString deviceName );
int numNotes( TQString deviceName );
TQString readNote( TQString deviceName, int index );
bool storeNote( TQString deviceName, int index, TQString note );
private:
TQCString m_clientAppId;
TQCString m_kmobileApp;
TQCString m_kmobileObj;
};
#endif // _KMOBILECLIENT_H_
|