~ubuntu-branches/ubuntu/utopic/kdevplatform/utopic-proposed

« back to all changes in this revision

Viewing changes to plugins/dashboard/dashboardcorona.h

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark
  • Date: 2014-08-30 03:52:11 UTC
  • mfrom: (0.3.26)
  • Revision ID: package-import@ubuntu.com-20140830035211-wndqlc843eu2v8nk
Tags: 1.7.0-0ubuntu1
* New upstream release
* Add XS-Testsuite: autopkgtest

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of KDevelop
 
2
  Copyright 2010 Aleix Pol Gonzalez <aleixpol@kde.org>
 
3
 
 
4
  This library is free software; you can redistribute it and/or
 
5
  modify it under the terms of the GNU Library General Public
 
6
  License as published by the Free Software Foundation; either
 
7
  version 2 of the License, or (at your option) any later version.
 
8
 
 
9
  This library 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 GNU
 
12
  Library General Public License for more details.
 
13
 
 
14
  You should have received a copy of the GNU Library General Public License
 
15
  along with this library; see the file COPYING.LIB.  If not, write to
 
16
  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
  Boston, MA 02110-1301, USA.
 
18
*/
 
19
 
 
20
#ifndef KDEVPLATFORM_PLUGIN_DASHBOARDCORONA_H
 
21
#define KDEVPLATFORM_PLUGIN_DASHBOARDCORONA_H
 
22
 
 
23
#include <plasma/corona.h>
 
24
 
 
25
namespace KDevelop { class IProject; }
 
26
 
 
27
class DashboardCorona : public Plasma::Corona
 
28
{
 
29
    Q_OBJECT
 
30
    public:
 
31
        DashboardCorona(KDevelop::IProject* project, QObject* parent = 0);
 
32
        
 
33
        virtual void loadDefaultLayout();
 
34
        KDevelop::IProject* project() const;
 
35
        
 
36
    private slots:
 
37
        void containmentAddedToCorona(Plasma::Containment* c);
 
38
        void saveToProject();
 
39
 
 
40
    private:
 
41
        KDevelop::IProject* m_project;
 
42
};
 
43
 
 
44
#endif // KDEVPLATFORM_PLUGIN_DASHBOARDCORONA_H