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
86
|
#pragma once
#undef OCSP_REQUEST
#undef OCSP_RESPONSE
#include <skype-embedded_2.h>
struct CSkypeProto;
class CConversation : public Conversation
{
public:
typedef DRef<CConversation, Conversation> Ref;
typedef DRefs<CConversation, Conversation> Refs;
CConversation(unsigned int oid, SERootObject* root);// : Conversation(oid, root) {};
protected:
void OnMessage(const MessageRef & message);
};
class CContact : public Contact
{
public:
typedef void (CSkypeProto::* OnContactChanged)(CContact::Ref contact, int);
typedef DRef<CContact, Contact> Ref;
typedef DRefs<CContact, Contact> Refs;
CContact(unsigned int oid, SERootObject* root);
void SetOnContactChangedCallback(OnContactChanged callback, CSkypeProto* proto);
private:
CSkypeProto* proto;
OnContactChanged callback;
void OnChange(int prop);
};
class CContactGroup : public ContactGroup
{
public:
typedef void (CSkypeProto::* OnContactListChanged)(const ContactRef& contact);
typedef DRef<CContactGroup, ContactGroup> Ref;
typedef DRefs<CContactGroup, ContactGroup> Refs;
CContactGroup(unsigned int oid, SERootObject* root);
CContact::Refs ContactList;
void SetOnContactListChangedCallback(OnContactListChanged callback, CSkypeProto* proto);
bool Contains(const ContactRef& contact);
private:
CSkypeProto* proto;
OnContactListChanged callback;
void OnChange(const ContactRef& contact);
};
class CAccount : public Account
{
public:
typedef DRef<CAccount, Account> Ref;
typedef DRefs<CAccount, Account> Refs;
bool isLoggedOut;
CAccount(unsigned int oid, SERootObject* root);
void BlockWhileLoggingIn();
void BlockWhileLoggingOut();
private:
void OnChange(int prop);
};
class CSkype : public Skype
{
public:
CAccount* newAccount(int oid);
CContactGroup* newContactGroup(int oid);
CConversation* newConversation(int oid);
CContact* newContact(int oid);
};
|