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

« back to all changes in this revision

Viewing changes to plasma/generic/tools/plasmoidviewer/fullview.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 2007 Aaron Seigo <aseigo@kde.org
 
3
 *
 
4
 * Redistribution and use in source and binary forms, with or without
 
5
 * modification, are permitted provided that the following conditions
 
6
 * are met:
 
7
 *
 
8
 * 1. Redistributions of source code must retain the above copyright
 
9
 *    notice, this list of conditions and the following disclaimer.
 
10
 * 2. Redistributions in binary form must reproduce the above copyright
 
11
 *    notice, this list of conditions and the following disclaimer in the
 
12
 *    documentation and/or other materials provided with the distribution.
 
13
 *
 
14
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 
15
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
16
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 
17
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 
18
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 
19
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
20
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
21
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 
23
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
24
 */
 
25
 
 
26
#ifndef FULLVIEW_H
 
27
#define FULLVIEW_H
 
28
 
 
29
#include <Plasma/Applet>
 
30
 
 
31
#include <Plasma/Corona>
 
32
 
 
33
#include <QGraphicsView>
 
34
 
 
35
class QTimer;
 
36
 
 
37
namespace Plasma
 
38
{
 
39
    class AccessAppletJob;
 
40
}
 
41
 
 
42
class FullView : public QGraphicsView
 
43
{
 
44
    Q_OBJECT
 
45
 
 
46
public:
 
47
    explicit FullView(const QString &formfactor = "planar", const QString &location = "floating", QWidget *parent = 0);
 
48
    ~FullView();
 
49
 
 
50
    void addApplet(const QString &name, const QString& containment,
 
51
                   const QString& wallpaper, const QVariantList &args = QVariantList());
 
52
    void screenshotAll();
 
53
 
 
54
protected:
 
55
    void showEvent(QShowEvent *event);
 
56
 
 
57
private Q_SLOTS:
 
58
    void appletTransformedItself();
 
59
    void sceneRectChanged(const QRectF &rect);
 
60
    void resizeEvent(QResizeEvent *event);
 
61
    void closeEvent(QCloseEvent *event);
 
62
    void appletRemoved(Plasma::Applet *applet);
 
63
    void plasmoidAccessFinished(Plasma::AccessAppletJob *job);
 
64
    void screenshotPlasmoid();
 
65
 
 
66
private:
 
67
    void shootNextPlasmoid();
 
68
    bool checkShotTimer();
 
69
    KConfigGroup storageGroup(Plasma::Applet *applet) const;
 
70
    bool hasStorageGroupFor(Plasma::Applet *applet) const;
 
71
    void storeCurrentApplet();
 
72
 
 
73
    Plasma::Corona m_corona;
 
74
    Plasma::FormFactor m_formfactor;
 
75
    Plasma::Location m_location;
 
76
    Plasma::Containment *m_containment;
 
77
    Plasma::Applet *m_applet;
 
78
    QStringList m_appletsToShoot;
 
79
    QTimer *m_appletShotTimer;
 
80
};
 
81
 
 
82
#endif
 
83