~ubuntu-branches/ubuntu/utopic/psi/utopic

« back to all changes in this revision

Viewing changes to src/activeprofiles.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
 * activeprofiles.h - 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
#ifndef ACTIVEPSIPROFILES_H
 
23
#define ACTIVEPSIPROFILES_H
 
24
 
 
25
#include <QUrl>
 
26
#include <QStringList>
 
27
 
 
28
class ActiveProfiles: public QObject
 
29
{
 
30
        Q_OBJECT
 
31
public:
 
32
        static ActiveProfiles* instance();
 
33
 
 
34
        bool setThisProfile(const QString &profile);
 
35
        void unsetThisProfile();
 
36
 
 
37
        QString thisProfile() const;
 
38
        bool isActive(const QString &profile) const;
 
39
 
 
40
        QString pickProfile() const;
 
41
 
 
42
        bool raiseOther(QString profile, bool withUI) const;
 
43
 
 
44
        bool sendOpenUri(const QUrl &uri, const QString &profile = QString::null) const;
 
45
        bool sendOpenUri(const QString &uri, const QString &profile = QString::null) const;
 
46
 
 
47
        ~ActiveProfiles();
 
48
 
 
49
signals:
 
50
        void openUri(const QUrl &uri);
 
51
        void raiseMainWindow();
 
52
 
 
53
protected:
 
54
        static ActiveProfiles *instance_;
 
55
 
 
56
private:
 
57
        class Private;
 
58
        Private *d;
 
59
 
 
60
        ActiveProfiles();
 
61
};
 
62
 
 
63
#endif