mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-18 16:31:44 +03:00
fee4095624
synergy.cpp and server.cpp into cmd/synergyd as synergyd.cpp. Moved and renamed related files. Moved remaining source files into lib/.... Modified and added makefiles as appropriate. Result is that library files are under lib with each library in its own directory and program files are under cmd with each command in its own directory.
36 lines
823 B
C++
Executable File
36 lines
823 B
C++
Executable File
#ifndef IMSWINDOWSSCREENEVENTHANDLER_H
|
|
#define IMSWINDOWSSCREENEVENTHANDLER_H
|
|
|
|
#include "IScreenEventHandler.h"
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
|
|
//! MS Windows screen event handler interface
|
|
class IMSWindowsScreenEventHandler : public IScreenEventHandler {
|
|
public:
|
|
//! @name manipulators
|
|
//@{
|
|
|
|
//! Notify of window creation
|
|
/*!
|
|
This is called after the window is created.
|
|
*/
|
|
virtual void postCreateWindow(HWND) = 0;
|
|
|
|
//! Notify of window destruction
|
|
/*!
|
|
This is called before the window is destroyed.
|
|
*/
|
|
virtual void preDestroyWindow(HWND) = 0;
|
|
|
|
//@}
|
|
|
|
// IScreenEventHandler overrides
|
|
virtual void onScreensaver(bool activated) = 0;
|
|
virtual bool onPreDispatch(const CEvent* event) = 0;
|
|
virtual bool onEvent(CEvent* event) = 0;
|
|
virtual SInt32 getJumpZoneSize() const = 0;
|
|
};
|
|
|
|
#endif
|