~ubuntu-branches/ubuntu/wily/psi/wily-proposed

« back to all changes in this revision

Viewing changes to src/privacy/guitest/mockprivacymanager.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-08-28 18:46:52 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080828184652-iiik12dl91nq7cdi
Tags: 0.12-2
Uploading to unstable (Closes: Bug#494352)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2006  Remko Troncon
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation; either version 2
 
7
 * of the License, or (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this library; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef MOCKPRIVACYMANAGER_H
 
21
#define MOCKPRIVACYMANAGER_H
 
22
 
 
23
#include <QObject>
 
24
#include <QStringList>
 
25
 
 
26
#include "privacymanager.h"
 
27
#include "privacylistitem.h"
 
28
 
 
29
class MockPrivacyManager : public PrivacyManager
 
30
{
 
31
        Q_OBJECT
 
32
 
 
33
public:
 
34
        MockPrivacyManager();
 
35
 
 
36
        virtual void requestListNames();
 
37
        virtual void changeDefaultList(const QString& name);
 
38
        virtual void changeActiveList(const QString& name);
 
39
        virtual void changeList(const PrivacyList& list);
 
40
        virtual void getDefaultList();
 
41
        virtual void requestList(const QString& name);
 
42
 
 
43
private:
 
44
        PrivacyListItem createItem(PrivacyListItem::Type type, const QString& value, PrivacyListItem::Action action, bool message, bool presence_in, bool presence_out, bool iq);
 
45
 
 
46
};
 
47
 
 
48
#endif