]> git.lyx.org Git - lyx.git/blob - src/frontends/WorkArea.cpp
small simplification
[lyx.git] / src / frontends / WorkArea.cpp
1 /**
2  * \file WorkArea.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  * \author Abdelrazak Younes
8  *
9  * Full author contact details are available in file CREDITS.
10  *
11  * Splash screen code added by Angus Leeming
12  */
13
14 #include <config.h>
15
16 #include "frontends/WorkArea.h"
17
18 #include "frontends/Application.h"
19 #include "frontends/FontMetrics.h"
20 #include "frontends/LyXView.h"
21 #include "frontends/WorkAreaManager.h"
22
23 #include "BufferView.h"
24 #include "Buffer.h"
25 #include "BufferParams.h"
26 #include "Color.h"
27 #include "CoordCache.h"
28 #include "Cursor.h"
29 #include "debug.h"
30 #include "Font.h"
31 #include "FuncRequest.h"
32 #include "KeySymbol.h"
33 #include "Language.h"
34 #include "LyXFunc.h"
35 #include "LyXRC.h"
36 #include "MetricsInfo.h"
37
38 #include "gettext.h"
39 #include "support/ForkedcallsController.h"
40 #include "support/FileName.h"
41
42 #include <boost/noncopyable.hpp>
43 #include <boost/bind.hpp>
44 #include <boost/current_function.hpp>
45
46 using lyx::support::ForkedcallsController;
47
48 using std::endl;
49 using std::min;
50 using std::max;
51 using std::string;
52
53
54 namespace {
55
56 // All the below connection objects are needed because of a bug in some
57 // versions of GCC (<=2.96 are on the suspects list.) By having and assigning
58 // to these connections we avoid a segfault upon startup, and also at exit.
59 // (Lgb)
60
61 boost::signals::connection timecon;
62
63 } // anon namespace
64
65 namespace lyx {
66 namespace frontend {
67
68 WorkArea::WorkArea(Buffer & buffer, LyXView & lv)
69         : buffer_view_(new BufferView(buffer)), lyx_view_(&lv),
70         cursor_visible_(false), cursor_timeout_(400)
71 {
72         buffer.workAreaManager().add(this);
73         // Setup the signals
74         timecon = cursor_timeout_.timeout
75                 .connect(boost::bind(&WorkArea::toggleCursor, this));
76
77         cursor_timeout_.start();
78 }
79
80
81 WorkArea::~WorkArea()
82 {
83         buffer_view_->buffer().workAreaManager().remove(this);
84         delete buffer_view_;
85 }
86
87
88 void WorkArea::close()
89 {
90         lyx_view_->removeWorkArea(this);
91 }
92
93 //void WorkArea::setLyXView(LyXView * lyx_view)
94 //{
95 //      lyx_view_ = lyx_view;
96 //}
97
98
99 BufferView & WorkArea::bufferView()
100 {
101         return *buffer_view_;
102 }
103
104
105 BufferView const & WorkArea::bufferView() const
106 {
107         return *buffer_view_;
108 }
109
110
111 void WorkArea::stopBlinkingCursor()
112 {
113         cursor_timeout_.stop();
114         hideCursor();
115 }
116
117
118 void WorkArea::startBlinkingCursor()
119 {
120         showCursor();
121         cursor_timeout_.restart();
122 }
123
124
125 void WorkArea::redraw()
126 {
127         if (!isVisible())
128                 // No need to redraw in this case.
129                 return;
130
131         // No need to do anything if this is the current view. The BufferView
132         // metrics are already up to date.
133         if (lyx_view_ != theApp()->currentView()) {
134                 // FIXME: it would be nice to optimize for the off-screen case.
135                 buffer_view_->updateMetrics(false);
136                 buffer_view_->cursor().fixIfBroken();
137         }
138
139         updateScrollbar();
140
141         // update cursor position, because otherwise it has to wait until
142         // the blinking interval is over
143         if (cursor_visible_) {
144                 hideCursor();
145                 showCursor();
146         }
147         
148         ViewMetricsInfo const & vi = buffer_view_->viewMetricsInfo();
149
150         LYXERR(Debug::WORKAREA) << "WorkArea::redraw screen" << endl;
151
152         int const ymin = std::max(vi.y1, 0);
153         int const ymax = vi.p2 < vi.size - 1 ? vi.y2 : height();
154
155         expose(0, ymin, width(), ymax - ymin);
156
157         //LYXERR(Debug::WORKAREA)
158         //<< "  ymin = " << ymin << "  width() = " << width()
159 //              << "  ymax-ymin = " << ymax-ymin << std::endl;
160
161         if (lyxerr.debugging(Debug::WORKAREA))
162                 buffer_view_->coordCache().dump();
163 }
164
165
166 void WorkArea::processKeySym(KeySymbol const & key, KeyModifier mod)
167 {
168         // In order to avoid bad surprise in the middle of an operation, we better stop
169         // the blinking cursor.
170         stopBlinkingCursor();
171
172         theLyXFunc().setLyXView(lyx_view_);
173         theLyXFunc().processKeySym(key, mod);
174 }
175
176
177 void WorkArea::dispatch(FuncRequest const & cmd0, KeyModifier mod)
178 {
179         // Handle drag&drop
180         if (cmd0.action == LFUN_FILE_OPEN) {
181                 lyx_view_->dispatch(cmd0);
182                 return;
183         }
184
185         theLyXFunc().setLyXView(lyx_view_);
186
187         FuncRequest cmd;
188
189         if (cmd0.action == LFUN_MOUSE_PRESS) {
190                 if (mod == ShiftModifier)
191                         cmd = FuncRequest(cmd0, "region-select");
192                 else if (mod == ControlModifier)
193                         cmd = FuncRequest(cmd0, "paragraph-select");
194                 else
195                         cmd = cmd0;
196         }
197         else
198                 cmd = cmd0;
199
200         // In order to avoid bad surprise in the middle of an operation, we better stop
201         // the blinking cursor.
202         if (!(cmd.action == LFUN_MOUSE_MOTION
203                 && cmd.button() == mouse_button::none))
204                 stopBlinkingCursor();
205
206         bool const needRedraw = buffer_view_->workAreaDispatch(cmd);
207
208         if (needRedraw)
209                 buffer_view_->buffer().changed();
210
211         // Skip these when selecting
212         if (cmd.action != LFUN_MOUSE_MOTION) {
213                 lyx_view_->updateLayoutChoice();
214                 lyx_view_->updateToolbars();
215         }
216
217         // GUI tweaks except with mouse motion with no button pressed.
218         if (!(cmd.action == LFUN_MOUSE_MOTION
219                 && cmd.button() == mouse_button::none)) {
220                 // Slight hack: this is only called currently when we
221                 // clicked somewhere, so we force through the display
222                 // of the new status here.
223                 lyx_view_->clearMessage();
224
225                 // Show the cursor immediately after any operation.
226                 startBlinkingCursor();
227         }
228 }
229
230
231 void WorkArea::resizeBufferView()
232 {
233         // WARNING: Please don't put any code that will trigger a repaint here!
234         // We are already inside a paint event.
235         lyx_view_->busy(true);
236         buffer_view_->resize(width(), height());
237         lyx_view_->updateLayoutChoice();
238         lyx_view_->busy(false);
239 }
240
241
242 void WorkArea::updateScrollbar()
243 {
244         buffer_view_->updateScrollbar();
245         ScrollbarParameters const & scroll_ = buffer_view_->scrollbarParameters();
246         setScrollbarParams(scroll_.height, scroll_.position,
247                 scroll_.lineScrollHeight);
248 }
249
250
251 void WorkArea::showCursor()
252 {
253         if (cursor_visible_)
254                 return;
255
256         CursorShape shape = BAR_SHAPE;
257
258         Font const & realfont = buffer_view_->cursor().real_current_font;
259         BufferParams const & bp = buffer_view_->buffer().params();
260         bool const samelang = realfont.language() == bp.language;
261         bool const isrtl = realfont.isVisibleRightToLeft();
262
263         if (!samelang || isrtl != bp.language->rightToLeft()) {
264                 shape = L_SHAPE;
265                 if (isrtl)
266                         shape = REVERSED_L_SHAPE;
267         }
268
269         // The ERT language hack needs fixing up
270         if (realfont.language() == latex_language)
271                 shape = BAR_SHAPE;
272
273         Font const font = buffer_view_->cursor().getFont();
274         FontMetrics const & fm = theFontMetrics(font);
275         int const asc = fm.maxAscent();
276         int const des = fm.maxDescent();
277         int h = asc + des;
278         int x = 0;
279         int y = 0;
280         buffer_view_->cursor().getPos(x, y);
281         y -= asc;
282
283         // if it doesn't touch the screen, don't try to show it
284         if (y + h < 0 || y >= height())
285                 return;
286
287         cursor_visible_ = true;
288         showCursor(x, y, h, shape);
289 }
290
291
292 void WorkArea::hideCursor()
293 {
294         if (!cursor_visible_)
295                 return;
296
297         cursor_visible_ = false;
298         removeCursor();
299 }
300
301
302 void WorkArea::toggleCursor()
303 {
304         if (cursor_visible_)
305                 hideCursor();
306         else
307                 showCursor();
308
309         // Use this opportunity to deal with any child processes that
310         // have finished but are waiting to communicate this fact
311         // to the rest of LyX.
312         ForkedcallsController & fcc = ForkedcallsController::get();
313         fcc.handleCompletedProcesses();
314
315         cursor_timeout_.restart();
316 }
317
318 } // namespace frontend
319 } // namespace lyx