mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 03:12:51 +00:00
51 lines
1.5 KiB
C++
51 lines
1.5 KiB
C++
/*
|
|
* Copyright (C) 2008 Alex Merry <alex.merry@kdemail.net>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Library General Public License version 2 as
|
|
* published by the Free Software Foundation
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this program; if not, write to the
|
|
* Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef PLACESENGINE_H
|
|
#define PLACESENGINE_H
|
|
|
|
#include <Plasma/DataEngine>
|
|
|
|
#include <kfileplacesmodel.h>
|
|
|
|
class PlacesEngine : public Plasma::DataEngine
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PlacesEngine(QObject* parent, const QVariantList& args);
|
|
~PlacesEngine();
|
|
|
|
Plasma::Service *serviceForSource(const QString &source);
|
|
|
|
private Q_SLOTS:
|
|
// KFilePlacesModel
|
|
void modelReset();
|
|
void placesAdded(const QModelIndex& parent, int start, int end);
|
|
void placesRemoved(const QModelIndex& parent, int start, int end);
|
|
void dataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight);
|
|
|
|
private:
|
|
void sendData(int start, int end);
|
|
void sendAllData();
|
|
|
|
KFilePlacesModel m_placesModel;
|
|
};
|
|
|
|
|
|
#endif // PLACESENGINE_H
|