2002-06-22 19:20:21 +00:00
|
|
|
#ifndef CXWINDOWSSCREENSAVER_H
|
|
|
|
#define CXWINDOWSSCREENSAVER_H
|
|
|
|
|
|
|
|
#include "IScreenSaver.h"
|
2002-06-23 15:43:40 +00:00
|
|
|
#include "stdmap.h"
|
2002-06-22 19:20:21 +00:00
|
|
|
#if defined(X_DISPLAY_MISSING)
|
|
|
|
# error X11 is required to build synergy
|
|
|
|
#else
|
|
|
|
# include <X11/Xlib.h>
|
|
|
|
#endif
|
|
|
|
|
2002-06-23 15:43:40 +00:00
|
|
|
class IJob;
|
|
|
|
class CXWindowsScreen;
|
|
|
|
|
2002-06-22 19:20:21 +00:00
|
|
|
class CXWindowsScreenSaver : public IScreenSaver {
|
|
|
|
public:
|
|
|
|
// note -- the caller must ensure that Display* passed to c'tor isn't
|
|
|
|
// being used in another call to Xlib when calling any method on this
|
|
|
|
// object (including during the c'tor and d'tor) except processEvent().
|
2002-06-23 15:43:40 +00:00
|
|
|
CXWindowsScreenSaver(CXWindowsScreen*, Display*);
|
2002-06-22 19:20:21 +00:00
|
|
|
virtual ~CXWindowsScreenSaver();
|
|
|
|
|
|
|
|
// process X event. returns true if the event was handled.
|
|
|
|
bool processEvent(XEvent*);
|
|
|
|
|
|
|
|
// tells this object to send a ClientMessage to the given window
|
|
|
|
// when the screen saver activates or deactivates. only one
|
|
|
|
// window can be notified. the message type is the "SCREENSAVER"
|
|
|
|
// atom, the format is 32, and the data.l[0] member is non-zero
|
|
|
|
// if activated, zero if deactivated. pass in None to disable
|
|
|
|
// notification;
|
|
|
|
void setNotify(Window);
|
|
|
|
|
|
|
|
// IScreenSaver overrides
|
|
|
|
virtual void enable();
|
|
|
|
virtual void disable();
|
|
|
|
virtual void activate();
|
|
|
|
virtual void deactivate();
|
|
|
|
virtual bool isActive() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// send a notification
|
|
|
|
void sendNotify(bool activated);
|
|
|
|
|
2002-06-23 15:43:40 +00:00
|
|
|
// find and set the running xscreensaver's window. returns true iff
|
|
|
|
// found.
|
|
|
|
bool findXScreenSaver();
|
|
|
|
|
|
|
|
// set the xscreensaver's window, updating the activation state flag
|
|
|
|
void setXScreenSaver(Window);
|
|
|
|
|
|
|
|
// returns true if the window appears to be the xscreensaver window
|
|
|
|
bool isXScreenSaver(Window) const;
|
|
|
|
|
2002-06-22 19:20:21 +00:00
|
|
|
// set xscreensaver's activation state flag. sends notification
|
|
|
|
// if the state has changed.
|
2002-06-23 15:43:40 +00:00
|
|
|
void setXScreenSaverActive(bool activated);
|
2002-06-22 19:20:21 +00:00
|
|
|
|
|
|
|
// send a command to xscreensaver
|
2002-06-22 20:29:59 +00:00
|
|
|
void sendXScreenSaverCommand(Atom, long = 0, long = 0);
|
2002-06-22 19:20:21 +00:00
|
|
|
|
2002-06-23 15:43:40 +00:00
|
|
|
// watch all windows that could potentially be the xscreensaver for
|
|
|
|
// the events that will confirm it.
|
|
|
|
void watchForXScreenSaver();
|
|
|
|
|
|
|
|
// stop watching all watched windows
|
|
|
|
void clearWatchForXScreenSaver();
|
|
|
|
|
|
|
|
// add window to the watch list
|
|
|
|
void addWatchXScreenSaver(Window window);
|
|
|
|
|
|
|
|
// called periodically to prevent the screen saver from starting
|
|
|
|
void disableCallback(void*);
|
|
|
|
|
2002-06-22 19:20:21 +00:00
|
|
|
private:
|
2002-06-23 15:43:40 +00:00
|
|
|
typedef std::map<Window, long> CWatchList;
|
|
|
|
|
|
|
|
// the event loop object
|
|
|
|
CXWindowsScreen* m_screen;
|
|
|
|
|
2002-06-22 19:20:21 +00:00
|
|
|
// the X display
|
|
|
|
Display* m_display;
|
|
|
|
|
|
|
|
// old event mask on root window
|
|
|
|
long m_rootEventMask;
|
|
|
|
|
|
|
|
// window to notify on screen saver activation/deactivation
|
|
|
|
Window m_notify;
|
|
|
|
|
|
|
|
// xscreensaver's window
|
|
|
|
Window m_xscreensaver;
|
|
|
|
|
|
|
|
// xscreensaver activation state
|
|
|
|
bool m_xscreensaverActive;
|
|
|
|
|
2002-06-22 20:29:59 +00:00
|
|
|
// dummy window to receive xscreensaver repsonses
|
|
|
|
Window m_xscreensaverSink;
|
|
|
|
|
2002-06-23 15:43:40 +00:00
|
|
|
// potential xscreensaver windows being watched
|
|
|
|
CWatchList m_watchWindows;
|
|
|
|
|
2002-06-22 19:20:21 +00:00
|
|
|
// atoms used to communicate with xscreensaver's window
|
|
|
|
Atom m_atomScreenSaver;
|
|
|
|
Atom m_atomScreenSaverVersion;
|
|
|
|
Atom m_atomScreenSaverActivate;
|
|
|
|
Atom m_atomScreenSaverDeactivate;
|
|
|
|
|
|
|
|
// built-in screen saver settings
|
|
|
|
int m_timeout;
|
|
|
|
int m_interval;
|
|
|
|
int m_preferBlanking;
|
|
|
|
int m_allowExposures;
|
2002-06-23 15:43:40 +00:00
|
|
|
|
|
|
|
// the job used to invoke disableCallback
|
|
|
|
IJob* m_disableJob;
|
2002-06-22 19:20:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|