24 lines
558 B
C
24 lines
558 B
C
|
#ifndef ISCREENRECEIVER_H
|
||
|
#define ISCREENRECEIVER_H
|
||
|
|
||
|
#include "IInterface.h"
|
||
|
#include "ClipboardTypes.h"
|
||
|
#include "ProtocolTypes.h"
|
||
|
#include "CString.h"
|
||
|
|
||
|
class IScreenReceiver : public IInterface {
|
||
|
public:
|
||
|
// notify of client info change
|
||
|
virtual void onInfoChanged(const CClientInfo&) = 0;
|
||
|
|
||
|
// notify of clipboard grab. returns true if the grab was honored,
|
||
|
// false otherwise.
|
||
|
virtual bool onGrabClipboard(ClipboardID) = 0;
|
||
|
|
||
|
// notify of new clipboard data
|
||
|
virtual void onClipboardChanged(ClipboardID,
|
||
|
const CString& data) = 0;
|
||
|
};
|
||
|
|
||
|
#endif
|