blob: 16014e6d5e5a22b6192fde893eb542112347d488 (
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
|
/*
Copyright (c) 2006 by Olivier Goffart <ogoffart at kde.org>
Kopete (c) 2006 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* 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 JABBERBOOKMARKS_H
#define JABBERBOOKMARKS_H
#include <tqobject.h>
#include <tqdom.h>
#include <tqstringlist.h>
namespace XMPP { class Jid; }
class JabberAccount;
class JabberProtocol;
class TDEAction;
/**
* This is a class that hanlde the bookmark collection (JEP-0048)
* There is one instance of that class by accounts.
* @author Olivier Goffart
*/
class JabberBookmarks : public TQObject
{
Q_OBJECT
public:
/**
* Constructor
*/
JabberBookmarks(JabberAccount *parent);
~JabberBookmarks(){}
/**
* update or create en entry with the given jid.
* the jid ressource is the nickname
*/
void insertGroupChat(const XMPP::Jid &jid);
/**
* return an action that will be added in the jabber popup menu
*/
TDEAction *bookmarksAction(TQObject * parent);
private slots:
void accountConnected();
void slotReceivedBookmarks();
void slotJoinChatBookmark(const TQString&);
private:
JabberAccount *m_account;
TQDomDocument m_storage;
TQStringList m_conferencesJID;
};
#endif
|