~ubuntu-branches/ubuntu/oneiric/kdeplasma-addons/oneiric

« back to all changes in this revision

Viewing changes to containments/groupingdesktop/lib/groupexplorer/groupexplorer.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-11-26 13:35:18 UTC
  • mto: (0.4.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 84.
  • Revision ID: james.westby@ubuntu.com-20101126133518-remqkgqjafk2a4jc
Tags: upstream-4.5.80
ImportĀ upstreamĀ versionĀ 4.5.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *   Copyright 2010 by Giulio Camuffo <giuliocamuffo@gmail.com>
 
3
 *
 
4
 *   This program is free software; you can redistribute it and/or modify
 
5
 *   it under the terms of the GNU Library General Public License as
 
6
 *   published by the Free Software Foundation; either version 2, or
 
7
 *   (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 Library General Public
 
15
 *   License along with this program; if not, write to the
 
16
 *   Free Software Foundation, Inc.,
 
17
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
18
 */
 
19
 
 
20
#ifndef GROUPEXPLORER_H
 
21
#define GROUPEXPLORER_H
 
22
 
 
23
#include <QGraphicsWidget>
 
24
#include <Plasma/Plasma>
 
25
 
 
26
namespace Plasma
 
27
{
 
28
class Corona;
 
29
class Containment;
 
30
}
 
31
class GroupExplorerPrivate;
 
32
 
 
33
class GroupExplorer : public QGraphicsWidget
 
34
{
 
35
    Q_OBJECT
 
36
    public:
 
37
        GroupExplorer(Plasma::Location location);
 
38
        ~GroupExplorer();
 
39
 
 
40
        /**
 
41
        * Changes the current containment
 
42
        * you've got to call this at least once so that it can access the corona
 
43
        * FIXME if you can use scene() as corona, get rid of this
 
44
        */
 
45
        void setContainment(Plasma::Containment *containment);
 
46
 
 
47
        /**
 
48
        * set orientation
 
49
        */
 
50
        void setLocation(Plasma::Location location);
 
51
 
 
52
        /**
 
53
        * Sets the icon size
 
54
        */
 
55
        void setIconSize(int size);
 
56
 
 
57
    Q_SIGNALS:
 
58
        void closeClicked();
 
59
 
 
60
    public Q_SLOTS:
 
61
        void immutabilityChanged(Plasma::ImmutabilityType type);
 
62
 
 
63
    protected:
 
64
        void showEvent(QShowEvent *e);
 
65
 
 
66
    private:
 
67
        Q_PRIVATE_SLOT(d, void containmentDestroyed())
 
68
 
 
69
        GroupExplorerPrivate *const d;
 
70
 
 
71
};
 
72
 
 
73
#endif