]> git.lyx.org Git - lyx.git/blob - src/frontends/WorkArea.C
ensure that theLyXFunc is set to the proper LyXView.
[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 #include "version.h"
42
43 #include "graphics/GraphicsImage.h"
44 #include "graphics/GraphicsLoader.h"
45
46 #include "gettext.h"
47 #include "support/filetools.h" // LibFileSearch
48 #include "support/forkedcontr.h"
49
50 #include <boost/utility.hpp>
51 #include <boost/bind.hpp>
52 #include <boost/current_function.hpp>
53
54 using lyx::support::libFileSearch;
55 using lyx::support::ForkedcallsController;
56
57 using std::endl;
58 using std::min;
59 using std::max;
60 using std::string;
61
62
63 namespace lyx {
64 namespace frontend {
65
66 // FIXME: The SplashScreen should be transfered to the
67 // LyXView and create a WorkArea only when a new buffer exists. This
68 // will allow to call WorkArea::redraw() in the constructor.
69 class SplashScreen : boost::noncopyable, boost::signals::trackable {
70 public:
71         /// This is a singleton class. Get the instance.
72         static SplashScreen const & get();
73         ///
74         lyx::graphics::Image const * image() const { return loader_.image(); }
75         ///
76         string const & text() const { return text_; }
77         ///
78         LyXFont const & font() const { return font_; }
79         ///
80         void connect(lyx::graphics::Loader::slot_type const & slot) const {
81                 loader_.connect(slot);
82         }
83         ///
84         void startLoading() const {
85                 if (loader_.status() == lyx::graphics::WaitingToLoad)
86                         loader_.startLoading();
87         }
88
89 private:
90         /** Make the c-tor private so we can control how many objects
91          *  are instantiated.
92          */
93         SplashScreen();
94
95         ///
96         lyx::graphics::Loader loader_;
97         /// The text to be written on top of the pixmap
98         string const text_;
99         /// in this font...
100         LyXFont font_;
101 };
102
103
104 SplashScreen const & SplashScreen::get()
105 {
106         static SplashScreen singleton;
107         return singleton;
108 }
109
110
111 SplashScreen::SplashScreen()
112         : text_(lyx_version ? lyx_version : "unknown")
113 {
114         if (!lyxrc.show_banner)
115                 return;
116
117         string const file = libFileSearch("images", "banner", "ppm");
118         if (file.empty())
119                 return;
120
121         // The font used to display the version info
122         font_.setFamily(LyXFont::SANS_FAMILY);
123         font_.setSeries(LyXFont::BOLD_SERIES);
124         font_.setSize(LyXFont::SIZE_NORMAL);
125         font_.setColor(LColor::yellow);
126
127         // Load up the graphics file
128         loader_.reset(file);
129 }
130
131 namespace {
132
133 // All the below connection objects are needed because of a bug in some
134 // versions of GCC (<=2.96 are on the suspects list.) By having and assigning
135 // to these connections we avoid a segfault upon startup, and also at exit.
136 // (Lgb)
137
138 boost::signals::connection timecon;
139
140 } // anon namespace
141
142 WorkArea::WorkArea(LyXView & lyx_view)
143         :  buffer_view_(0), lyx_view_(lyx_view), greyed_out_(true),
144         cursor_visible_(false), cursor_timeout_(400)
145 {
146         // Start loading the pixmap as soon as possible
147         if (lyxrc.show_banner) {
148                 SplashScreen const & splash = SplashScreen::get();
149                 splash.connect(boost::bind(&WorkArea::checkAndGreyOut, this));
150                 splash.startLoading();
151         }
152
153         // Setup the signals
154         timecon = cursor_timeout_.timeout
155                 .connect(boost::bind(&WorkArea::toggleCursor, this));
156
157         cursor_timeout_.start();
158 }
159
160
161 void WorkArea::setBufferView(BufferView * buffer_view)
162 {
163         if (buffer_view_) {
164                 message_connection_.disconnect();
165                 lyx_view_.disconnectBufferView();
166         }
167
168         theApp->setBufferView(buffer_view);
169
170         hideCursor();
171         buffer_view_ = buffer_view;
172         toggleCursor();
173
174         message_connection_ = buffer_view_->message.connect(
175                         boost::bind(&WorkArea::displayMessage, this, _1));
176
177         lyx_view_.connectBufferView(*buffer_view);
178 }
179
180
181 BufferView & WorkArea::bufferView()
182 {
183         return *buffer_view_;
184 }
185
186
187 BufferView const & WorkArea::bufferView() const
188 {
189         return *buffer_view_;
190 }
191
192
193 void WorkArea::checkAndGreyOut()
194 {
195         if (greyed_out_)
196                 greyOut();
197 }
198
199
200 void WorkArea::redraw()
201 {
202         if (!buffer_view_)
203                 return;
204
205         if (!buffer_view_->buffer()) {
206                 greyOut();
207                 updateScrollbar();
208                 return;
209         }
210
211         buffer_view_->updateMetrics(false);
212
213         updateScrollbar();
214
215         ViewMetricsInfo const & vi = buffer_view_->viewMetricsInfo();
216         greyed_out_ = false;
217         getPainter().start();
218         paintText(*buffer_view_, vi, getPainter());
219         lyxerr[Debug::DEBUG] << "Redraw screen" << endl;
220         int const ymin = std::max(vi.y1, 0);
221         int const ymax =
222                 ( vi.p2 < vi.size - 1 ?  vi.y2 : height() );
223         expose(0, ymin, width(), ymax - ymin);
224         getPainter().end();
225
226         lyxerr[Debug::DEBUG]
227         << "  ymin = " << ymin << "  width() = " << width()
228                 << "  ymax-ymin = " << ymax-ymin << std::endl;
229 }
230
231
232 void WorkArea::processKeySym(LyXKeySymPtr key,
233                                                          key_modifier::state state)
234 {
235         hideCursor();
236         theLyXFunc().processKeySym(key, state);
237
238         /* This is perhaps a bit of a hack. When we move
239          * around, or type, it's nice to be able to see
240          * the cursor immediately after the keypress. So
241          * we reset the toggle timeout and force the visibility
242          * of the cursor. Note we cannot do this inside
243          * dispatch() itself, because that's called recursively.
244          */
245 //      if (buffer_view_->buffer())
246         toggleCursor();
247         
248         // uneeded "redraw()" call commented out for now.
249         // When/if the call to LyXView::redrawWorkArea() in "lyxfunc.C:1610"
250         // is not needed anymore, this line should be uncommented out
251         //redraw();
252 }
253
254
255 void WorkArea::dispatch(FuncRequest const & cmd0)
256 {
257         // Handle drag&drop
258         if (cmd0.action == LFUN_FILE_OPEN) {
259                 lyx_view_.dispatch(cmd0);
260                 return;
261         }
262
263         theLyXFunc().setLyXView(&lyx_view_);
264
265         buffer_view_->workAreaDispatch(cmd0);
266
267         // Skip these when selecting
268         if (cmd0.action != LFUN_MOUSE_MOTION) {
269                 lyx_view_.updateLayoutChoice();
270                 lyx_view_.updateMenubar();
271                 lyx_view_.updateToolbars();
272         }
273
274         // Slight hack: this is only called currently when we
275         // clicked somewhere, so we force through the display
276         // of the new status here.
277         lyx_view_.clearMessage();
278
279         redraw();
280 }
281
282
283 void WorkArea::resizeBufferView()
284 {
285         lyx_view_.busy(true);
286         lyx_view_.message(_("Formatting document..."));
287         buffer_view_->workAreaResize(width(), height());
288         lyx_view_.updateLayoutChoice();
289         redraw();
290         lyx_view_.busy(false);
291         lyx_view_.clearMessage();
292 }
293
294
295 void WorkArea::updateScrollbar()
296 {
297         buffer_view_->updateScrollbar(); 
298         ScrollbarParameters const & scroll_ = buffer_view_->scrollbarParameters();
299         setScrollbarParams(scroll_.height, scroll_.position,
300                 scroll_.lineScrollHeight);
301 }
302
303
304 void WorkArea::scrollBufferView(int position)
305 {
306         buffer_view_->scrollDocView(position);
307         redraw();
308         hideCursor();
309         if (lyxrc.cursor_follows_scrollbar) {
310                 buffer_view_->setCursorFromScrollbar();
311                 lyx_view_.updateLayoutChoice();
312         }
313         toggleCursor();
314 }
315
316
317 void WorkArea::greyOut()
318 {
319         greyed_out_ = true;
320         getPainter().start();
321
322         getPainter().fillRectangle(0, 0,
323                 width(),
324                 height(),
325                 LColor::bottomarea);
326
327         // Add a splash screen to the centre of the work area
328         SplashScreen const & splash = SplashScreen::get();
329         lyx::graphics::Image const * const splash_image = splash.image();
330         if (splash_image) {
331                 int const w = splash_image->getWidth();
332                 int const h = splash_image->getHeight();
333
334                 int x = (width() - w) / 2;
335                 int y = (height() - h) / 2;
336
337                 getPainter().image(x, y, w, h, *splash_image);
338
339                 x += 260;
340                 y += 265;
341
342                 string stext = splash.text();
343                 docstring dstext(stext.begin(), stext.end());
344                 getPainter().text(x, y, dstext, splash.font());
345         }
346         expose(0, 0, width(), height());
347         getPainter().end();
348 }
349
350
351 void WorkArea::showCursor()
352 {
353         if (cursor_visible_)
354                 return;
355
356         if (!buffer_view_->buffer())
357                 return;
358
359         CursorShape shape = BAR_SHAPE;
360
361         LyXText const & text = *buffer_view_->getLyXText();
362         LyXFont const & realfont = text.real_current_font;
363         BufferParams const & bp = buffer_view_->buffer()->params();
364         bool const samelang = realfont.language() == bp.language;
365         bool const isrtl = realfont.isVisibleRightToLeft();
366
367         if (!samelang || isrtl != bp.language->rightToLeft()) {
368                 shape = L_SHAPE;
369                 if (isrtl)
370                         shape = REVERSED_L_SHAPE;
371         }
372
373         // The ERT language hack needs fixing up
374         if (realfont.language() == latex_language)
375                 shape = BAR_SHAPE;
376
377         LyXFont const font = buffer_view_->cursor().getFont();
378         FontMetrics const & fm = theFontMetrics(font);
379         int const asc = fm.maxAscent();
380         int const des = fm.maxDescent();
381         int h = asc + des;
382         int x = 0;
383         int y = 0;
384         buffer_view_->cursor().getPos(x, y);
385         y -= asc;
386
387         // if it doesn't touch the screen, don't try to show it
388         if (y + h < 0 || y >= height())
389                 return;
390
391         cursor_visible_ = true;
392         showCursor(x, y, h, shape);
393 }
394
395
396 void WorkArea::hideCursor()
397 {
398         if (!cursor_visible_)
399                 return;
400
401         cursor_visible_ = false;
402         removeCursor();
403 }
404
405
406 void WorkArea::toggleCursor()
407 {
408         if (buffer_view_->buffer()) {
409
410                 if (cursor_visible_)
411                         hideCursor();
412                 else
413                         showCursor();
414
415                 // Use this opportunity to deal with any child processes that
416                 // have finished but are waiting to communicate this fact
417                 // to the rest of LyX.
418                 ForkedcallsController & fcc = ForkedcallsController::get();
419                 fcc.handleCompletedProcesses();
420         }
421
422         cursor_timeout_.restart();
423 }
424
425
426 void WorkArea::displayMessage(lyx::docstring const & message)
427 {
428         lyx_view_.message(message);
429 }
430
431 } // namespace frontend
432 } // namespace lyx