]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiSelection.C
* src/frontends/qt4/GuiSelection.C
[lyx.git] / src / frontends / qt4 / GuiSelection.C
1 // -*- C++ -*-
2 /**
3  * \file qt4/GuiSelection.C
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  * \author Abdelrazak Younes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "GuiSelection.h"
16 #include "qt_helpers.h"
17
18 #include "debug.h"
19
20 #include <QApplication>
21 #include <QClipboard>
22 #include <QString>
23
24 #include "support/lstrings.h"
25 using lyx::support::internalLineEnding;
26 using lyx::support::externalLineEnding;
27
28 using std::endl;
29
30 namespace lyx {
31 namespace frontend {
32
33 void GuiSelection::haveSelection(bool own)
34 {
35         if (!qApp->clipboard()->supportsSelection())
36                 return;
37
38         // Tell qt that we have a selection by setting a dummy selection.
39         // We don't use the interface provided by Qt for setting the
40         // selection for performance reasons (see documentation of
41         // Selection::put()). Instead we only tell here that we have a
42         // selection by setting the selection to the empty string.
43         // The real selection is set in GuiApplication::x11EventFilter when
44         // an application actually requests it.
45         // This way calling Selection::have() is cheap and we can do it as
46         // often as we want.
47         if (own)
48                 qApp->clipboard()->setText(QString(), QClipboard::Selection);
49         // We don't need to do anything if own = false, as this case is
50         // handled by QT.
51 }
52
53
54 docstring const GuiSelection::get() const
55 {
56         QString const str = qApp->clipboard()->text(QClipboard::Selection);
57         lyxerr[Debug::ACTION] << "GuiSelection::get: " << fromqstr(str)
58                               << endl;
59         if (str.isNull())
60                 return docstring();
61
62         return internalLineEnding(qstring_to_ucs4(str));
63 }
64
65
66 void GuiSelection::put(docstring const & str)
67 {
68         lyxerr[Debug::ACTION] << "GuiSelection::put: " << lyx::to_utf8(str) << endl;
69
70         qApp->clipboard()->setText(toqstr(externalLineEnding(str)),
71                                    QClipboard::Selection);
72 }
73
74 } // namespace frontend
75 } // namespace lyx