1 | /*
|
---|
2 | * vcardfactory.h - class for caching vCards
|
---|
3 | * Copyright (C) 2003 Michail Pishchagin
|
---|
4 | *
|
---|
5 | * This program is free software; you can redistribute it and/or
|
---|
6 | * modify it under the terms of the GNU General Public License
|
---|
7 | * as published by the Free Software Foundation; either version 2
|
---|
8 | * of the License, or (at your option) any later version.
|
---|
9 | *
|
---|
10 | * This program is distributed in the hope that it will be useful,
|
---|
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
13 | * GNU General Public License for more details.
|
---|
14 | *
|
---|
15 | * You should have received a copy of the GNU General Public License
|
---|
16 | * along with this library; if not, write to the Free Software
|
---|
17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
18 | *
|
---|
19 | */
|
---|
20 |
|
---|
21 | #ifndef VCARDFACTORY_H
|
---|
22 | #define VCARDFACTORY_H
|
---|
23 |
|
---|
24 | #include <qobject.h>
|
---|
25 |
|
---|
26 | #include "im.h"
|
---|
27 | #include "xmpp_vcard.h"
|
---|
28 | #include "xmpp_tasks.h"
|
---|
29 |
|
---|
30 | using namespace XMPP;
|
---|
31 |
|
---|
32 | class VCardFactory
|
---|
33 | {
|
---|
34 | public:
|
---|
35 | // call this, when you need a cached vCard
|
---|
36 | static const VCard *vcard(const Jid &);
|
---|
37 |
|
---|
38 | // call this when you need to update vCard in cache
|
---|
39 | static void setVCard(const Jid &, const VCard &);
|
---|
40 |
|
---|
41 | // call this when you need to retrieve fresh vCard from server (and store it in cache afterwards)
|
---|
42 | static JT_VCard *getVCard(const Jid &, Task *rootTask, const QObject *, const char *slot, bool cacheVCard = true);
|
---|
43 |
|
---|
44 | // Register for updates to vcard changes
|
---|
45 | static void registerVCardChanged(const QObject*, const char* slot);
|
---|
46 | };
|
---|
47 |
|
---|
48 | #endif
|
---|