]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiSelection.cpp
typo
[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         schedule_check_(true)
37 {
38         connect(qApp->clipboard(), SIGNAL(selectionChanged()),
39                 this, SLOT(on_dataChanged()));
40 }
41
42
43 void GuiSelection::haveSelection(bool own)
44 {
45         if (!qApp->clipboard()->supportsSelection())
46                 return;
47
48         // Tell qt that we have a selection by setting a dummy selection.
49         // We don't use the interface provided by Qt for setting the
50         // selection for performance reasons (see documentation of
51         // Selection::put()). Instead we only tell here that we have a
52         // selection by setting the selection to the empty string.
53         // The real selection is set in GuiApplication::x11EventFilter when
54         // an application actually requests it.
55         // This way calling Selection::have() is cheap and we can do it as
56         // often as we want.
57         //LYXERR(Debug::SELECTION, "GuiSelection: setting dummy selection");
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::SELECTION, "GuiSelection::get: " << 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::SELECTION, "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         schedule_check_ = true;
94         LYXERR(Debug::SELECTION, "GuiSelection::on_dataChanged");
95 }
96
97
98 bool GuiSelection::empty() const
99 {
100         if (!selection_supported_)
101                 return true;
102
103         // Cache which is to speed up selection-status read
104         // (4 calls when open Edit menu).
105         static bool text_selection_empty;
106         if (schedule_check_) {
107                 text_selection_empty = qApp->clipboard()->
108                         text(QClipboard::Selection).isEmpty();
109                 schedule_check_ = false;
110         }
111
112         LYXERR(Debug::SELECTION, "GuiSelection::filled: " << !text_selection_empty);
113         return text_selection_empty;
114 }
115
116 } // namespace frontend
117 } // namespace lyx
118
119 #include "GuiSelection_moc.cpp"