2010-10-12 23:29:58 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-10-12 23:29:58 +02:00
|
|
|
|
|
|
|
Clementine is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine 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 General Public License
|
|
|
|
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2016-01-08 16:09:07 +01:00
|
|
|
#ifndef DBUSSCREENSAVER_H
|
|
|
|
#define DBUSSCREENSAVER_H
|
2010-10-12 23:27:31 +02:00
|
|
|
|
2016-01-08 16:09:07 +01:00
|
|
|
#include "screensaver.h"
|
2010-10-12 23:27:31 +02:00
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
2016-01-08 16:09:07 +01:00
|
|
|
class DBusScreensaver : public Screensaver {
|
2010-10-12 23:27:31 +02:00
|
|
|
public:
|
2016-01-08 16:09:07 +01:00
|
|
|
DBusScreensaver(const QString& service, const QString& path,
|
2010-10-12 23:27:31 +02:00
|
|
|
const QString& interface);
|
|
|
|
|
2016-01-08 16:09:07 +01:00
|
|
|
void Inhibit();
|
|
|
|
void Uninhibit();
|
2010-10-12 23:27:31 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2010-10-12 23:27:31 +02:00
|
|
|
QString service_;
|
|
|
|
QString path_;
|
|
|
|
QString interface_;
|
|
|
|
|
|
|
|
quint32 cookie_;
|
|
|
|
};
|
|
|
|
|
2016-01-08 16:09:07 +01:00
|
|
|
#endif
|