2002-08-02 19:57:46 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
|
|
|
* Copyright (C) 2002 Chris Schoeneman
|
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* found in the file COPYING that should have accompanied this file.
|
|
|
|
*
|
|
|
|
* This package is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2001-11-25 18:32:41 +00:00
|
|
|
#ifndef CCLIPBOARD_H
|
|
|
|
#define CCLIPBOARD_H
|
|
|
|
|
|
|
|
#include "IClipboard.h"
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Memory buffer clipboard
|
|
|
|
/*!
|
|
|
|
This class implements a clipboard that stores data in memory.
|
|
|
|
*/
|
2001-11-25 18:32:41 +00:00
|
|
|
class CClipboard : public IClipboard {
|
2002-04-29 14:40:01 +00:00
|
|
|
public:
|
2001-11-25 18:32:41 +00:00
|
|
|
CClipboard();
|
|
|
|
virtual ~CClipboard();
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! @name manipulators
|
|
|
|
//@{
|
2001-11-25 18:32:41 +00:00
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Unmarshall clipboard data
|
|
|
|
/*!
|
|
|
|
Extract marshalled clipboard data and store it in this clipboard.
|
|
|
|
Sets the clipboard time to \c time.
|
|
|
|
*/
|
|
|
|
void unmarshall(const CString& data, Time time);
|
2001-11-25 18:32:41 +00:00
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//@}
|
|
|
|
//! @name accessors
|
|
|
|
//@{
|
2001-11-25 18:32:41 +00:00
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Marshall clipboard data
|
|
|
|
/*!
|
|
|
|
Merge this clipboard's data into a single buffer that can be later
|
|
|
|
unmarshalled to restore the clipboard and return the buffer.
|
|
|
|
*/
|
2001-11-25 18:32:41 +00:00
|
|
|
CString marshall() const;
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Copy clipboard
|
|
|
|
/*!
|
|
|
|
Transfers all the data in one clipboard to another. The
|
|
|
|
clipboards can be of any concrete clipboard type (and
|
|
|
|
they don't have to be the same type). This also sets
|
|
|
|
the destination clipboard's timestamp to source clipboard's
|
|
|
|
timestamp. Returns true iff the copy succeeded.
|
|
|
|
*/
|
2002-06-10 22:06:45 +00:00
|
|
|
static bool copy(IClipboard* dst, const IClipboard* src);
|
2002-07-29 16:07:26 +00:00
|
|
|
|
|
|
|
//! Copy clipboard
|
|
|
|
/*!
|
|
|
|
Transfers all the data in one clipboard to another. The
|
|
|
|
clipboards can be of any concrete clipboard type (and they
|
|
|
|
don't have to be the same type). This also sets the
|
|
|
|
timestamp to \c time. Returns true iff the copy succeeded.
|
|
|
|
*/
|
2002-06-10 22:06:45 +00:00
|
|
|
static bool copy(IClipboard* dst, const IClipboard* src, Time);
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//@}
|
|
|
|
|
2001-11-25 18:32:41 +00:00
|
|
|
// IClipboard overrides
|
2002-05-27 16:22:59 +00:00
|
|
|
virtual bool empty();
|
2001-11-25 18:32:41 +00:00
|
|
|
virtual void add(EFormat, const CString& data);
|
2002-05-27 16:22:59 +00:00
|
|
|
virtual bool open(Time) const;
|
|
|
|
virtual void close() const;
|
2002-04-29 13:31:44 +00:00
|
|
|
virtual Time getTime() const;
|
2001-11-25 18:32:41 +00:00
|
|
|
virtual bool has(EFormat) const;
|
|
|
|
virtual CString get(EFormat) const;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
private:
|
2001-11-25 18:32:41 +00:00
|
|
|
UInt32 readUInt32(const char*) const;
|
|
|
|
void writeUInt32(CString*, UInt32) const;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
private:
|
2002-05-27 16:22:59 +00:00
|
|
|
mutable bool m_open;
|
|
|
|
mutable Time m_time;
|
|
|
|
bool m_owner;
|
|
|
|
Time m_timeOwned;
|
2001-11-25 18:32:41 +00:00
|
|
|
bool m_added[kNumFormats];
|
|
|
|
CString m_data[kNumFormats];
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|