]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiSelection.cpp
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[lyx.git] / src / frontends / qt4 / GuiSelection.cpp
1 // -*- C++ -*-
2 /**
3  * \file qt4/GuiSelection.cpp
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
17 #include "qt_helpers.h"
18
19 #include "support/debug.h"
20 #include "support/lstrings.h"
21
22 #include <QApplication>
23 #include <QClipboard>
24 #include <QString>
25
26
27 namespace lyx {
28 namespace frontend {
29
30 using support::internalLineEnding;
31 using support::externalLineEnding;
32
33
34 GuiSelection::GuiSelection()
35         : selection_supported_(qApp->clipboard()->supportsSelection())
36 {
37         connect(qApp->clipboard(), SIGNAL(selectionChanged()),
38                 this, SLOT(on_dataChanged()));
39         // initialize clipboard status.
40         on_dataChanged();
41 }
42
43
44 void GuiSelection::haveSelection(bool own)
45 {
46         if (!qApp->clipboard()->supportsSelection())
47                 return;
48
49         // Tell qt that we have a selection by setting a dummy selection.
50         // We don't use the interface provided by Qt for setting the
51         // selection for performance reasons (see documentation of
52         // Selection::put()). Instead we only tell here that we have a
53         // selection by setting the selection to the empty string.
54         // The real selection is set in GuiApplication::x11EventFilter when
55         // an application actually requests it.
56         // This way calling Selection::have() is cheap and we can do it as
57         // often as we want.
58         if (own)
59                 qApp->clipboard()->setText(QString(), QClipboard::Selection);
60         // We don't need to do anything if own = false, as this case is
61         // handled by QT.
62         // FIXME (gb): This is wrong. What is missing here is rather a call of
63         //else
64         //      qApp->clipboard()->clear(QClipboard::Selection);
65         // Since we do not issue this call we rather implement
66         // "persistent selections" as far as X is concerned.
67 }
68
69
70 docstring const GuiSelection::get() const
71 {
72         QString const str = qApp->clipboard()->text(QClipboard::Selection)
73                                 .normalized(QString::NormalizationForm_C);
74         LYXERR(Debug::ACTION, "GuiSelection::get: " << fromqstr(str));
75         if (str.isNull())
76                 return docstring();
77
78         return internalLineEnding(qstring_to_ucs4(str));
79 }
80
81
82 void GuiSelection::put(docstring const & str)
83 {
84         LYXERR(Debug::ACTION, "GuiSelection::put: " << to_utf8(str));
85
86         qApp->clipboard()->setText(toqstr(externalLineEnding(str)),
87                                    QClipboard::Selection);
88 }
89
90
91 void GuiSelection::on_dataChanged()
92 {
93         text_selection_empty_ = qApp->clipboard()->
94                 text(QClipboard::Selection).isEmpty();
95 }
96
97
98 bool GuiSelection::empty() const
99 {
100         if (!selection_supported_)
101                 return true;
102
103         LYXERR(Debug::ACTION, "GuiSelection::empty: " << text_selection_empty_);
104
105         return text_selection_empty_;
106 }
107
108 } // namespace frontend
109 } // namespace lyx
110
111 #include "GuiSelection_moc.cpp"