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