~zctgbhu/lotus/lotus-raring

« back to all changes in this revision

Viewing changes to include/roomfavoritecache.h

  • Committer: zhang chao
  • Date: 2013-08-08 09:36:27 UTC
  • Revision ID: zctgbhu@163.com-20130808093627-7dpz6h6i2m32032e
Beta Release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 National University of Defense Technology(NUDT) & Kylin Ltd.
 
3
 *
 
4
 * Authors:
 
5
 *      Zhang Chao      zctgbhu@163.com
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; version 3.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef ROOMFAVORITECACHE_H
 
21
#define ROOMFAVORITECACHE_H
 
22
#include <QStringList>
 
23
#include <QDomElement>
 
24
#include <QDir>
 
25
#include <QFile>
 
26
#include <QDesktopServices>
 
27
#include <QTextStream>
 
28
class RoomFavoriteCache
 
29
{
 
30
public:
 
31
    RoomFavoriteCache();
 
32
    void removeRoomFavorite(const QString& roomJid);
 
33
    void addRoomFavorite(const QString& roomJid);
 
34
    QStringList getRoomFavoriteList();
 
35
    void loadFromFile(const QString& Account);
 
36
private:
 
37
    void saveToFile();
 
38
    QDomDocument RoomFavoriteDocument;
 
39
    QString dir ;
 
40
    QString account;
 
41
};
 
42
 
 
43
#endif // ROOMFAVORITECACHE_H