25 lines
466 B
C++
25 lines
466 B
C++
|
|
#ifndef PEDESTAL_H
|
|
#define PEDESTAL_H
|
|
|
|
#include "LogoBox.h"
|
|
#include "Mode.h"
|
|
#include "GnomeScreensaver.h"
|
|
|
|
class Pedestal : public Mode
|
|
{
|
|
public:
|
|
Pedestal();
|
|
~Pedestal();
|
|
bool expose (GnomeScreensaver & gs);
|
|
bool configure (GnomeScreensaver & gs);
|
|
bool update (GnomeScreensaver & gs);
|
|
protected:
|
|
LogoBox m_logobox;
|
|
uint64_t m_last_ticks;
|
|
uint64_t m_start_ticks;
|
|
};
|
|
|
|
#endif /* PEDESTAL_H */
|
|
|