]> git.lyx.org Git - lyx.git/blob - src/frontends/WorkArea.C
whitespace
[lyx.git] / src / frontends / WorkArea.C
1 /**
2  * \file WorkArea.C
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
21 #include "funcrequest.h"
22 #include "lyxfunc.h"
23 #include "Painter.h"
24
25 #include "BufferView.h"
26 #include "buffer.h"
27 #include "bufferparams.h"
28 #include "coordcache.h"
29 #include "cursor.h"
30 #include "debug.h"
31 #include "language.h"
32 #include "LColor.h"
33 #include "lyxfont.h"
34 #include "lyxrc.h"
35 #include "lyxrow.h"
36 #include "lyxtext.h"
37 #include "LyXView.h"
38 #include "metricsinfo.h"
39 #include "paragraph.h"
40 #include "rowpainter.h"
41
42 #include "gettext.h"
43 #include "support/forkedcontr.h"
44
45 #include <boost/utility.hpp>
46 #include <boost/bind.hpp>
47 #include <boost/current_function.hpp>
48
49 using lyx::support::ForkedcallsController;
50
51 using std::endl;
52 using std::min;
53 using std::max;
54 using std::string;
55
56
57 namespace {
58
59 // All the below connection objects are needed because of a bug in some
60 // versions of GCC (<=2.96 are on the suspects list.) By having and assigning
61 // to these connections we avoid a segfault upon startup, and also at exit.
62 // (Lgb)
63
64 boost::signals::connection timecon;
65
66 } // anon namespace
67
68 namespace lyx {
69 namespace frontend {
70
71 WorkArea::WorkArea(int id, LyXView & lyx_view)
72         : buffer_view_(0), lyx_view_(lyx_view), greyed_out_(true),
73           id_(id), cursor_visible_(false), cursor_timeout_(400)
74 {
75         // Start loading the pixmap as soon as possible
76         //if (lyxrc.show_banner) {
77         //      showBanner();
78         //}
79
80         // Setup the signals
81         timecon = cursor_timeout_.timeout
82                 .connect(boost::bind(&WorkArea::toggleCursor, this));
83
84         cursor_timeout_.start();
85 }
86
87
88 void WorkArea::setBufferView(BufferView * buffer_view)
89 {
90         if (buffer_view_) {
91                 message_connection_.disconnect();
92                 lyx_view_.disconnectBufferView();
93         }
94
95         hideCursor();
96         buffer_view_ = buffer_view;
97         toggleCursor();
98
99         message_connection_ = buffer_view_->message.connect(
100                         boost::bind(&WorkArea::displayMessage, this, _1));
101
102         lyx_view_.connectBufferView(*buffer_view);
103 }
104
105
106 BufferView & WorkArea::bufferView()
107 {
108         return *buffer_view_;
109 }
110
111
112 BufferView const & WorkArea::bufferView() const
113 {
114         return *buffer_view_;
115 }
116
117
118 void WorkArea::stopBlinkingCursor()
119 {
120         cursor_timeout_.stop();
121         hideCursor();
122 }
123
124
125 void WorkArea::startBlinkingCursor()
126 {
127         showCursor();
128         cursor_timeout_.restart();
129 }
130
131
132 void WorkArea::redraw()
133 {
134         if (!buffer_view_ || !buffer_view_->buffer()) {
135                 greyed_out_ = true;
136                 // The argument here are meaningless.
137                 expose(1,1,1,1);
138                 return;
139         }
140
141         // No need to do anything if this is the current view. The BufferView 
142         // metrics are already up to date.
143         if (&lyx_view_ != theApp()->currentView())
144                 // FIXME: it would be nice to optimize for the off-screen case.
145                 buffer_view_->updateMetrics(false);
146
147         updateScrollbar();
148
149         ViewMetricsInfo const & vi = buffer_view_->viewMetricsInfo();
150         greyed_out_ = false;
151
152         if (lyxerr.debugging(Debug::WORKAREA)) {
153                 lyxerr[Debug::WORKAREA] << "WorkArea::redraw screen" << endl;
154         }
155         int const ymin = std::max(vi.y1, 0);
156         int const ymax = vi.p2 < vi.size - 1 ? vi.y2 : height();
157
158         expose(0, ymin, width(), ymax - ymin);
159
160         //lyxerr[Debug::WORKAREA]
161         //<< "  ymin = " << ymin << "  width() = " << width()
162 //              << "  ymax-ymin = " << ymax-ymin << std::endl;
163
164         if (lyxerr.debugging(Debug::WORKAREA))
165                 buffer_view_->coordCache().dump();
166 }
167
168
169 void WorkArea::processKeySym(LyXKeySymPtr key, key_modifier::state state)
170 {
171         // In order to avoid bad surprise in the middle of an operation, we better stop
172         // the blinking cursor.
173         stopBlinkingCursor();
174
175         theLyXFunc().setLyXView(&lyx_view_);
176         theLyXFunc().processKeySym(key, state);
177
178         /* When we move around, or type, it's nice to be able to see
179          * the cursor immediately after the keypress.
180          */
181         startBlinkingCursor();
182 }
183
184
185 void WorkArea::dispatch(FuncRequest const & cmd0)
186 {
187         // Handle drag&drop
188         if (cmd0.action == LFUN_FILE_OPEN) {
189                 lyx_view_.dispatch(cmd0);
190                 return;
191         }
192
193         theLyXFunc().setLyXView(&lyx_view_);
194
195         bool needRedraw = buffer_view_->workAreaDispatch(cmd0);
196
197         // Skip these when selecting
198         if (cmd0.action != LFUN_MOUSE_MOTION) {
199                 lyx_view_.updateLayoutChoice();
200                 lyx_view_.updateMenubar();
201                 lyx_view_.updateToolbars();
202         }
203
204         
205         // GUI tweaks except with mouse motion with no button pressed.
206         if (!(cmd0.action == LFUN_MOUSE_MOTION 
207                 && cmd0.button() == mouse_button::none)) {
208                 // Slight hack: this is only called currently when we
209                 // clicked somewhere, so we force through the display
210                 // of the new status here.
211                 lyx_view_.clearMessage();
212
213                 // Show the cursor immediately after any operation.
214                 hideCursor();
215                 toggleCursor();
216         }
217
218         if (needRedraw)
219                 redraw();
220 }
221
222
223 void WorkArea::resizeBufferView()
224 {
225         lyx_view_.busy(true);
226         lyx_view_.message(_("Formatting document..."));
227         buffer_view_->workAreaResize(width(), height());
228         lyx_view_.updateLayoutChoice();
229         lyx_view_.busy(false);
230         lyx_view_.clearMessage();
231 }
232
233
234 void WorkArea::updateScrollbar()
235 {
236         buffer_view_->updateScrollbar(); 
237         ScrollbarParameters const & scroll_ = buffer_view_->scrollbarParameters();
238         setScrollbarParams(scroll_.height, scroll_.position,
239                 scroll_.lineScrollHeight);
240 }
241
242
243 void WorkArea::scrollBufferView(int position)
244 {
245         buffer_view_->scrollDocView(position);
246         redraw();
247         hideCursor();
248         if (lyxrc.cursor_follows_scrollbar) {
249                 buffer_view_->setCursorFromScrollbar();
250                 lyx_view_.updateLayoutChoice();
251         }
252         toggleCursor();
253 }
254
255
256 void WorkArea::showCursor()
257 {
258         if (cursor_visible_)
259                 return;
260
261         if (!buffer_view_->buffer())
262                 return;
263
264         CursorShape shape = BAR_SHAPE;
265
266         LyXText const & text = *buffer_view_->getLyXText();
267         LyXFont const & realfont = text.real_current_font;
268         BufferParams const & bp = buffer_view_->buffer()->params();
269         bool const samelang = realfont.language() == bp.language;
270         bool const isrtl = realfont.isVisibleRightToLeft();
271
272         if (!samelang || isrtl != bp.language->rightToLeft()) {
273                 shape = L_SHAPE;
274                 if (isrtl)
275                         shape = REVERSED_L_SHAPE;
276         }
277
278         // The ERT language hack needs fixing up
279         if (realfont.language() == latex_language)
280                 shape = BAR_SHAPE;
281
282         LyXFont const font = buffer_view_->cursor().getFont();
283         FontMetrics const & fm = theFontMetrics(font);
284         int const asc = fm.maxAscent();
285         int const des = fm.maxDescent();
286         int h = asc + des;
287         int x = 0;
288         int y = 0;
289         buffer_view_->cursor().getPos(x, y);
290         y -= asc;
291
292         // if it doesn't touch the screen, don't try to show it
293         if (y + h < 0 || y >= height())
294                 return;
295
296         cursor_visible_ = true;
297         showCursor(x, y, h, shape);
298 }
299
300
301 void WorkArea::hideCursor()
302 {
303         if (!cursor_visible_)
304                 return;
305
306         cursor_visible_ = false;
307         removeCursor();
308 }
309
310
311 void WorkArea::toggleCursor()
312 {
313         if (buffer_view_->buffer()) {
314
315                 if (cursor_visible_)
316                         hideCursor();
317                 else
318                         showCursor();
319
320                 // Use this opportunity to deal with any child processes that
321                 // have finished but are waiting to communicate this fact
322                 // to the rest of LyX.
323                 ForkedcallsController & fcc = ForkedcallsController::get();
324                 fcc.handleCompletedProcesses();
325         }
326
327         cursor_timeout_.restart();
328 }
329
330
331 void WorkArea::displayMessage(lyx::docstring const & message)
332 {
333         lyx_view_.message(message);
334 }
335
336 } // namespace frontend
337 } // namespace lyx