2006-06-20 08:39:16 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
2006-07-08 13:27:43 +00:00
|
|
|
* \file qt4/GuiClipboard.h
|
2006-06-20 08:39:16 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author unknown
|
|
|
|
* \author John Levon
|
|
|
|
* \author Abdelrazak Younes
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CLIPBOARD_H
|
|
|
|
#define CLIPBOARD_H
|
|
|
|
|
|
|
|
#include "frontends/Clipboard.h"
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Qt4 version of the Clipboard.
|
|
|
|
*/
|
|
|
|
class GuiClipboard: public Clipboard
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~GuiClipboard() {}
|
|
|
|
|
2006-07-08 13:27:43 +00:00
|
|
|
/** Clipboard overloaded methods
|
2006-06-20 08:39:16 +00:00
|
|
|
*/
|
|
|
|
//@{
|
|
|
|
std::string const get() const;
|
|
|
|
void put(std::string const & str);
|
|
|
|
//@}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif // CLIPBOARD_H
|