mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
24 lines
446 B
C++
24 lines
446 B
C++
#ifndef RECENTDOCUMENTNOTIFIER_H
|
|
#define RECENTDOCUMENTNOTIFIER_H
|
|
|
|
#include <KDEDModule>
|
|
#include <QtDBus/QtDBus>
|
|
|
|
class KDirWatch;
|
|
|
|
class RecentDocumentsNotifier : public KDEDModule
|
|
{
|
|
Q_OBJECT
|
|
Q_CLASSINFO("D-Bus Interface", "org.kde.RecentDocumentsNotifier")
|
|
|
|
public:
|
|
RecentDocumentsNotifier(QObject* parent, const QList<QVariant>&);
|
|
|
|
private slots:
|
|
void dirty(const QString &path);
|
|
|
|
private:
|
|
KDirWatch *dirWatch;
|
|
};
|
|
|
|
#endif
|