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