]> git.lyx.org Git - lyx.git/blob - src/frontends/gtk/GuiClipboard.h
enable Font cache only for MacOSX and inline width() for other platform.
[lyx.git] / src / frontends / gtk / GuiClipboard.h
1 // -*- C++ -*-
2 /**
3  * \file gtk/Clipboard.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 GTK 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         docstring const get() const;
33
34         void put(docstring const & str);
35         //@}
36 };
37
38 } // namespace frontend
39 } // namespace lyx
40
41 #endif // CLIPBOARD_H