]> git.lyx.org Git - features.git/blob - src/frontends/qt3/GuiClipboard.h
Split clipboard and X selection
[features.git] / src / frontends / qt3 / GuiClipboard.h
1 // -*- C++ -*-
2 /**
3  * \file qt3/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 Abdelrazak Younes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef CLIPBOARD_H
13 #define CLIPBOARD_H
14
15 #include "frontends/Clipboard.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 /**
21  * The Qt3 version of the Clipboard.
22  */
23 class GuiClipboard: public lyx::frontend::Clipboard
24 {
25 public:
26         virtual ~GuiClipboard() {}
27
28         /** Clipboard overloaded methods
29          */
30         //@{
31
32         std::string const get() const;
33
34         void put(std::string const & str);
35         //@}
36 };
37
38 } // namespace frontend
39 } // namespace lyx
40
41 #endif // CLIPBOARD_H