]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiClipboard.h
Split clipboard and X selection
[lyx.git] / src / frontends / qt4 / GuiClipboard.h
1 // -*- C++ -*-
2 /**
3  * \file qt4/GuiClipboard.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author unknown
8  * \author John Levon
9  * \author Abdelrazak Younes
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef CLIPBOARD_H
15 #define CLIPBOARD_H
16
17 #include "frontends/Clipboard.h"
18
19 namespace lyx {
20 namespace frontend {
21
22 /**
23  * The Qt4 version of the Clipboard.
24  */
25 class GuiClipboard: public Clipboard
26 {
27 public:
28         virtual ~GuiClipboard() {}
29
30         /** Clipboard overloaded methods
31          */
32         //@{
33         std::string const get() const;
34         void put(std::string const & str);
35         //@}
36 };
37
38 } // namespace frontend
39 } // namespace lyx
40
41 #endif // CLIPBOARD_H