mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-02 08:19:57 +03:00
854d2c7fbf
be accessed now between open()/close(). ownership of the clipboard is asserted via the empty() method. this parallels the win32 model (but the win32 code hasn't been updated yet). refactored X11 clipboard code. moved the bulk of it into CXWindowsClipboard and moved some comment event handling into CXWindowsScreen. changed how requests are processed into a hopefully easier to understand model. added support for getting clipboard from and sending clipboard to motif (or at least lesstif) clients. sending to lesstif required a hack to work around an apparent bug in lesstif.
61 lines
2.0 KiB
C++
61 lines
2.0 KiB
C++
#ifndef ICLIPBOARD_H
|
|
#define ICLIPBOARD_H
|
|
|
|
#include "IInterface.h"
|
|
#include "BasicTypes.h"
|
|
|
|
class CString;
|
|
|
|
class IClipboard : public IInterface {
|
|
public:
|
|
// timestamp type. timestamps are in milliseconds from some
|
|
// arbitrary starting time. timestamps will wrap around to 0
|
|
// after about 49 3/4 days.
|
|
typedef UInt32 Time;
|
|
|
|
// known clipboard formats. kNumFormats must be last and
|
|
// formats must be sequential starting from zero.
|
|
enum EFormat { kText, kNumFormats };
|
|
|
|
// manipulators
|
|
|
|
// take ownership of the clipboard and clear all data from it.
|
|
// must be called between an open() and close(). if returns
|
|
// false then the clipboard ownership could not be taken; the
|
|
// clipboard should not be emptied in this case.
|
|
virtual bool empty() = 0;
|
|
|
|
// add data in the given format to the clipboard. data is
|
|
// passed as a string but the contents are generally not
|
|
// interpreted. may only be called after a successful empty().
|
|
virtual void add(EFormat, const CString& data) = 0;
|
|
|
|
// accessors
|
|
|
|
// open the clipboard. return true iff the clipboard could
|
|
// be opened. if open() returns true then it must be followed
|
|
// by a close() at some later time; if it returns false then
|
|
// close() must not be called.
|
|
virtual bool open(Time) const = 0;
|
|
|
|
// close the clipboard. close() must match a preceding open().
|
|
// this signals that the clipboard has been filled with all the
|
|
// necessary data. it does not mean the clipboard ownership
|
|
// should be released.
|
|
virtual void close() const = 0;
|
|
|
|
// returns the timestamp passed to the last successful open().
|
|
virtual Time getTime() const = 0;
|
|
|
|
// returns true iff the clipboard contains data in the given
|
|
// format. must be called between an open() and close().
|
|
virtual bool has(EFormat) const = 0;
|
|
|
|
// returns data in the given format. rturns the empty string
|
|
// if there is no data in that format. must be called between
|
|
// an open() and close().
|
|
virtual CString get(EFormat) const = 0;
|
|
};
|
|
|
|
#endif
|