~ubuntu-branches/ubuntu/vivid/psi/vivid

« back to all changes in this revision

Viewing changes to src/activeprofiles_stub.cpp

  • 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
 * activeprofiles_stub.cpp - Class for interacting with other psi instances
 
3
 * Copyright (C) 2006  Maciej Niedzielski
 
4
 * Copyright (C) 2006-2007  Martin Hostettler
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU General Public License
 
8
 * as published by the Free Software Foundation; either version 2
 
9
 * of the License, or (at your option) any later version.
 
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 library; if not, write to the Free Software
 
18
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
 *
 
20
 */
 
21
 
 
22
#include "activeprofiles.h"
 
23
 
 
24
#include <QCoreApplication>
 
25
#include <QString>
 
26
 
 
27
bool ActiveProfiles::isActive(const QString &profile) const
 
28
{
 
29
        Q_UNUSED(profile);
 
30
        return false;
 
31
}
 
32
 
 
33
bool ActiveProfiles::setThisProfile(const QString &profile)
 
34
{
 
35
        Q_UNUSED(profile);
 
36
        return true;
 
37
}
 
38
 
 
39
void ActiveProfiles::unsetThisProfile()
 
40
{
 
41
}
 
42
 
 
43
QString ActiveProfiles::thisProfile() const
 
44
{
 
45
        return QString();
 
46
}
 
47
 
 
48
ActiveProfiles::ActiveProfiles()
 
49
        : QObject(QCoreApplication::instance())
 
50
{
 
51
}
 
52
 
 
53
ActiveProfiles::~ActiveProfiles()
 
54
{
 
55
}
 
56
 
 
57
bool ActiveProfiles::raiseOther(QString profile, bool withUI) const
 
58
{
 
59
        // FIXME stub
 
60
        Q_UNUSED(profile);
 
61
        Q_UNUSED(withUI);
 
62
        return true;
 
63
}
 
64
 
 
65
bool ActiveProfiles::sendOpenUri(const QString &uri, const QString &profile) const
 
66
{
 
67
        Q_UNUSED(uri);
 
68
        Q_UNUSED(profile);
 
69
        return true;
 
70
}