]> git.lyx.org Git - lyx.git/blob - src/frontends/WorkArea.C
This commit should hopefully fix all scrolling issues. As an added bonus, mouse scrol...
[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 "support/filetools.h" // LibFileSearch
46 #include "support/forkedcontr.h"
47
48 #include <boost/utility.hpp>
49 #include <boost/bind.hpp>
50 #include <boost/current_function.hpp>
51 #include <boost/signals/trackable.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         hideCursor();
163         buffer_view_ = buffer_view;
164         toggleCursor();
165 }
166
167
168 BufferView & WorkArea::bufferView()
169 {
170         return *buffer_view_;
171 }
172
173
174 BufferView const & WorkArea::bufferView() const
175 {
176         return *buffer_view_;
177 }
178
179
180 void WorkArea::checkAndGreyOut()
181 {
182         if (greyed_out_)
183                 greyOut();
184 }
185
186
187 void WorkArea::redraw()
188 {
189         if (!buffer_view_)
190                 return;
191
192         if (!buffer_view_->buffer()) {
193                 greyOut();
194                 return;
195         }
196
197         buffer_view_->updateMetrics(false);
198
199         updateScrollbar();
200
201         ViewMetricsInfo const & vi = buffer_view_->viewMetricsInfo();
202         greyed_out_ = false;
203         getPainter().start();
204         paintText(*buffer_view_, vi, getPainter());
205         lyxerr[Debug::DEBUG] << "Redraw screen" << endl;
206         int const ymin = std::max(vi.y1, 0);
207         int const ymax =
208                 ( vi.p2 < vi.size - 1 ?  vi.y2 : height() );
209         expose(0, ymin, width(), ymax - ymin);
210         getPainter().end();
211
212         lyxerr[Debug::DEBUG]
213         << "  ymin = " << ymin << "  width() = " << width()
214                 << "  ymax-ymin = " << ymax-ymin << std::endl;
215 }
216
217
218 void WorkArea::processKeySym(LyXKeySymPtr key,
219                                                          key_modifier::state state)
220 {
221         hideCursor();
222         lyx_view_.getLyXFunc().processKeySym(key, state);
223
224         /* This is perhaps a bit of a hack. When we move
225          * around, or type, it's nice to be able to see
226          * the cursor immediately after the keypress. So
227          * we reset the toggle timeout and force the visibility
228          * of the cursor. Note we cannot do this inside
229          * dispatch() itself, because that's called recursively.
230          */
231 //      if (buffer_view_->available())
232         toggleCursor();
233         
234         // uneeded "redraw()" call commented out for now.
235         // When/if the call to LyXView::redrawWorkArea() in "lyxfunc.C:1610"
236         // is not needed anymore, this line should be uncommented out
237         //redraw();
238 }
239
240
241 void WorkArea::dispatch(FuncRequest const & cmd0)
242 {
243         // Handle drag&drop
244         if (cmd0.action == LFUN_FILE_OPEN) {
245                 lyx_view_.dispatch(cmd0);
246                 return;
247         }
248
249         buffer_view_->workAreaDispatch(cmd0);
250
251         // Skip these when selecting
252         if (cmd0.action != LFUN_MOUSE_MOTION) {
253                 lyx_view_.updateLayoutChoice();
254                 lyx_view_.updateToolbars();
255         }
256
257         // Slight hack: this is only called currently when we
258         // clicked somewhere, so we force through the display
259         // of the new status here.
260         lyx_view_.clearMessage();
261
262         redraw();
263 }
264
265
266 void WorkArea::resizeBufferView()
267 {
268         buffer_view_->workAreaResize(width(), height());
269         lyx_view_.updateLayoutChoice();
270         redraw();
271 }
272
273
274 void WorkArea::updateScrollbar()
275 {
276         buffer_view_->updateScrollbar(); 
277         ScrollbarParameters const & scroll_ = buffer_view_->scrollbarParameters();
278         setScrollbarParams(scroll_.height, scroll_.position,
279                 scroll_.lineScrollHeight);
280 }
281
282
283 void WorkArea::scrollBufferView(int position)
284 {
285         buffer_view_->scrollDocView(position);
286         redraw();
287         hideCursor();
288         if (lyxrc.cursor_follows_scrollbar) {
289                 buffer_view_->setCursorFromScrollbar();
290                 lyx_view_.updateLayoutChoice();
291         }
292         toggleCursor();
293 }
294
295
296 void WorkArea::greyOut()
297 {
298         greyed_out_ = true;
299         getPainter().start();
300
301         getPainter().fillRectangle(0, 0,
302                 width(),
303                 height(),
304                 LColor::bottomarea);
305
306         // Add a splash screen to the centre of the work area
307         SplashScreen const & splash = SplashScreen::get();
308         lyx::graphics::Image const * const splash_image = splash.image();
309         if (splash_image) {
310                 int const w = splash_image->getWidth();
311                 int const h = splash_image->getHeight();
312
313                 int x = (width() - w) / 2;
314                 int y = (height() - h) / 2;
315
316                 getPainter().image(x, y, w, h, *splash_image);
317
318                 x += 260;
319                 y += 265;
320
321                 string stext = splash.text();
322                 docstring dstext(stext.begin(), stext.end());
323                 getPainter().text(x, y, dstext, splash.font());
324         }
325         expose(0, 0, width(), height());
326         getPainter().end();
327 }
328
329
330 void WorkArea::showCursor()
331 {
332         if (cursor_visible_)
333                 return;
334
335         if (!buffer_view_->available())
336                 return;
337
338         CursorShape shape = BAR_SHAPE;
339
340         LyXText const & text = *buffer_view_->getLyXText();
341         LyXFont const & realfont = text.real_current_font;
342         BufferParams const & bp = buffer_view_->buffer()->params();
343         bool const samelang = realfont.language() == bp.language;
344         bool const isrtl = realfont.isVisibleRightToLeft();
345
346         if (!samelang || isrtl != bp.language->rightToLeft()) {
347                 shape = L_SHAPE;
348                 if (isrtl)
349                         shape = REVERSED_L_SHAPE;
350         }
351
352         // The ERT language hack needs fixing up
353         if (realfont.language() == latex_language)
354                 shape = BAR_SHAPE;
355
356         LyXFont const font = buffer_view_->cursor().getFont();
357         int const asc = font_metrics::maxAscent(font);
358         int const des = font_metrics::maxDescent(font);
359         int h = asc + des;
360         int x = 0;
361         int y = 0;
362         buffer_view_->cursor().getPos(x, y);
363         y -= asc;
364
365         // if it doesn't touch the screen, don't try to show it
366         if (y + h < 0 || y >= height())
367                 return;
368
369         cursor_visible_ = true;
370         showCursor(x, y, h, shape);
371 }
372
373
374 void WorkArea::hideCursor()
375 {
376         if (!cursor_visible_)
377                 return;
378
379         cursor_visible_ = false;
380         removeCursor();
381 }
382
383
384 void WorkArea::toggleCursor()
385 {
386         if (buffer_view_->buffer()) {
387
388                 if (cursor_visible_)
389                         hideCursor();
390                 else
391                         showCursor();
392
393                 // Use this opportunity to deal with any child processes that
394                 // have finished but are waiting to communicate this fact
395                 // to the rest of LyX.
396                 ForkedcallsController & fcc = ForkedcallsController::get();
397                 fcc.handleCompletedProcesses();
398         }
399
400         cursor_timeout_.restart();
401 }
402
403 } // namespace frontend
404 } // namespace lyx