~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to plasma/generic/shells/plasma-windowed/plasmaapp.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *   Copyright 2006-2008 Aaron Seigo <aseigo@kde.org>
 
3
 *   Copyright 2009 Marco Martin <notmart@gmail.com>
 
4
 *
 
5
 *   This program is free software; you can redistribute it and/or modify
 
6
 *   it under the terms of the GNU General Public License as
 
7
 *   published by the Free Software Foundation; either version 2,
 
8
 *   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 Library General Public
 
16
 *   License along with this program; if not, write to the
 
17
 *   Free Software Foundation, Inc.,
 
18
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
19
 */
 
20
 
 
21
#ifndef PLASMA_APP_H
 
22
#define PLASMA_APP_H
 
23
 
 
24
#include <QList>
 
25
#include <QMultiHash>
 
26
 
 
27
#include <KConfigGroup>
 
28
#include <KUniqueApplication>
 
29
 
 
30
#include <plasma/plasma.h>
 
31
 
 
32
#ifdef Q_WS_X11
 
33
#include <X11/Xlib.h>
 
34
#include <fixx11h.h>
 
35
#endif
 
36
 
 
37
namespace Plasma
 
38
{
 
39
    class Corona;
 
40
    class View;
 
41
    class Applet;
 
42
} // namespace Plasma
 
43
 
 
44
class SingleView;
 
45
 
 
46
class PlasmaApp : public KUniqueApplication
 
47
{
 
48
    Q_OBJECT
 
49
public:
 
50
    ~PlasmaApp();
 
51
 
 
52
    int newInstance();
 
53
 
 
54
    static PlasmaApp* self();
 
55
    static bool hasComposite();
 
56
 
 
57
    Plasma::Corona* corona();
 
58
 
 
59
 
 
60
private:
 
61
    PlasmaApp();
 
62
 
 
63
private Q_SLOTS:
 
64
    void cleanup();
 
65
    void syncConfig();
 
66
    void themeChanged();
 
67
    void storeApplet(Plasma::Applet *view);
 
68
    void viewDestroyed(QObject *view);
 
69
 
 
70
private:
 
71
    KConfigGroup storedConfig(int appletId);
 
72
 
 
73
    Plasma::Corona *m_corona;
 
74
    QMultiHash<QString, int> m_storedApplets;
 
75
 
 
76
    int m_maxId;
 
77
 
 
78
    QHash<QString, SingleView *> m_viewForPlugin;
 
79
    QHash<SingleView *, QString> m_pluginForView;
 
80
};
 
81
 
 
82
#endif // multiple inclusion guard
 
83