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 MACSCREENSAVER_H
|
|
|
|
#define MACSCREENSAVER_H
|
2010-10-12 18:02:23 +02:00
|
|
|
|
2012-10-24 16:45:00 +02:00
|
|
|
#include <IOKit/pwr_mgt/IOPMLib.h>
|
2010-10-12 18:02:23 +02:00
|
|
|
|
2020-09-18 16:15:19 +02:00
|
|
|
#include "screensaver.h"
|
|
|
|
|
2016-01-08 16:09:07 +01:00
|
|
|
class MacScreensaver : public Screensaver {
|
2010-10-12 18:02:23 +02:00
|
|
|
public:
|
2016-01-08 16:09:07 +01:00
|
|
|
MacScreensaver();
|
2010-10-12 18:02:23 +02:00
|
|
|
|
2016-01-08 16:09:07 +01:00
|
|
|
void Inhibit();
|
|
|
|
void Uninhibit();
|
2010-10-12 18:02:23 +02:00
|
|
|
|
|
|
|
private:
|
2012-10-24 16:45:00 +02:00
|
|
|
IOPMAssertionID assertion_id_;
|
2010-10-12 18:02:23 +02:00
|
|
|
};
|
|
|
|
|
2016-01-08 16:09:07 +01:00
|
|
|
#endif
|