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

« back to all changes in this revision

Viewing changes to plasma/generic/tools/engineexplorer/engineexplorer.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
 *   This program is free software; you can redistribute it and/or modify
 
5
 *   it under the terms of the GNU General Public License as
 
6
 *   published by the Free Software Foundation; either version 2,
 
7
 *   or (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 ENGINEEXPLORER_H
 
21
#define ENGINEEXPLORER_H
 
22
 
 
23
class QStandardItemModel;
 
24
class QStandardItem;
 
25
 
 
26
#include <Plasma/DataEngine>
 
27
 
 
28
#include "ui_engineexplorer.h"
 
29
 
 
30
namespace Plasma
 
31
{
 
32
    class DataEngineManager;
 
33
    class DataEngine;
 
34
} // namespace Plasma
 
35
 
 
36
class EngineExplorer : public KDialog, public Ui::EngineExplorer
 
37
{
 
38
    Q_OBJECT
 
39
 
 
40
    public:
 
41
        explicit EngineExplorer(QWidget *parent = 0);
 
42
        ~EngineExplorer();
 
43
 
 
44
        void setApp(const QString &app);
 
45
        void setEngine(const QString &engine);
 
46
        void setInterval(const int interval);
 
47
        void requestSource(const QString &source);
 
48
 
 
49
        static QString convertToString(const QVariant &value);
 
50
 
 
51
    public slots:
 
52
        void dataUpdated(const QString& source, const Plasma::DataEngine::Data& data);
 
53
 
 
54
    private slots:
 
55
        void showEngine(const QString& engine);
 
56
        void addSource(const QString& source);
 
57
        void removeSource(const QString& source);
 
58
        void requestSource();
 
59
        void showDataContextMenu(const QPoint &point);
 
60
        void cleanUp();
 
61
 
 
62
    private:
 
63
        void listEngines();
 
64
        int showData(QStandardItem* parent, Plasma::DataEngine::Data data);
 
65
        void updateTitle();
 
66
 
 
67
        Plasma::DataEngineManager* m_engineManager;
 
68
        QStandardItemModel* m_dataModel;
 
69
        QString m_app;
 
70
        QString m_engineName;
 
71
        Plasma::DataEngine* m_engine;
 
72
        int m_sourceCount;
 
73
        bool m_requestingSource;
 
74
};
 
75
 
 
76
#endif // multiple inclusion guard
 
77