]> git.lyx.org Git - lyx.git/blob - src/frontends/screen.C
The deed is done.
[lyx.git] / src / frontends / screen.C
1 /**
2  * \file screen.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  *
8  * Full author contact details are available in file CREDITS.
9  *
10  * Splash screen code added by Angus Leeming
11  */
12
13 #include <config.h>
14
15 #include "screen.h"
16 #include "font_metrics.h"
17 #include "lyx_gui.h"
18 #include "Painter.h"
19 #include "WorkArea.h"
20
21 #include "BufferView.h"
22 #include "buffer.h"
23 #include "bufferparams.h"
24 #include "cursor.h"
25 #include "debug.h"
26 #include "language.h"
27 #include "LColor.h"
28 #include "lyxfont.h"
29 #include "lyxrc.h"
30 #include "lyxrow.h"
31 #include "lyxtext.h"
32 #include "metricsinfo.h"
33 #include "paragraph.h"
34 #include "rowpainter.h"
35 #include "version.h"
36
37 #include "insets/updatableinset.h"
38
39 #include "graphics/GraphicsImage.h"
40 #include "graphics/GraphicsLoader.h"
41
42 #include "support/filetools.h" // LibFileSearch
43
44 #include <boost/utility.hpp>
45 #include <boost/bind.hpp>
46 #include <boost/signals/trackable.hpp>
47
48 using lyx::support::LibFileSearch;
49
50 using std::endl;
51 using std::min;
52 using std::max;
53 using std::string;
54
55
56 namespace {
57
58 class SplashScreen : boost::noncopyable, boost::signals::trackable {
59 public:
60         /// This is a singleton class. Get the instance.
61         static SplashScreen const & get();
62         ///
63         lyx::graphics::Image const * image() const { return loader_.image(); }
64         ///
65         string const & text() const { return text_; }
66         ///
67         LyXFont const & font() const { return font_; }
68         ///
69         void connect(lyx::graphics::Loader::slot_type const & slot) const {
70                 loader_.connect(slot);
71         }
72         ///
73         void startLoading() const {
74                 if (loader_.status() == lyx::graphics::WaitingToLoad)
75                         loader_.startLoading();
76         }
77
78 private:
79         /** Make the c-tor private so we can control how many objects
80          *  are instantiated.
81          */
82         SplashScreen();
83
84         ///
85         lyx::graphics::Loader loader_;
86         /// The text to be written on top of the pixmap
87         string const text_;
88         /// in this font...
89         LyXFont font_;
90 };
91
92
93 SplashScreen const & SplashScreen::get()
94 {
95         static SplashScreen singleton;
96         return singleton;
97 }
98
99
100 SplashScreen::SplashScreen()
101         : text_(lyx_version ? lyx_version : "unknown")
102 {
103         if (!lyxrc.show_banner)
104                 return;
105
106         string const file = LibFileSearch("images", "banner", "ppm");
107         if (file.empty())
108                 return;
109
110         // The font used to display the version info
111         font_.setFamily(LyXFont::SANS_FAMILY);
112         font_.setSeries(LyXFont::BOLD_SERIES);
113         font_.setSize(LyXFont::SIZE_NORMAL);
114         font_.setColor(LColor::yellow);
115
116         // Load up the graphics file
117         loader_.reset(file);
118 }
119
120 } // namespace anon
121
122
123 LyXScreen::LyXScreen()
124         : cursor_visible_(false), greyed_out_(true)
125 {
126         // Start loading the pixmap as soon as possible
127         if (lyxrc.show_banner) {
128                 SplashScreen const & splash = SplashScreen::get();
129                 splash.connect(boost::bind(&LyXScreen::greyOut, this));
130                 splash.startLoading();
131         }
132 }
133
134
135 LyXScreen::~LyXScreen()
136 {
137 }
138
139
140 void LyXScreen::showCursor(BufferView & bv)
141 {
142         // this is needed to make sure we copy back the right
143         // pixmap on the hide for the Qt frontend
144         lyx_gui::sync_events();
145
146         if (cursor_visible_)
147                 return;
148
149         if (!bv.available())
150                 return;
151
152         Cursor_Shape shape = BAR_SHAPE;
153
154         LyXText const & text = *bv.getLyXText();
155         LyXFont const & realfont = text.real_current_font;
156         BufferParams const & bp = bv.buffer()->params();
157         bool const samelang = realfont.language() == bp.language;
158         bool const isrtl = realfont.isVisibleRightToLeft();
159
160         if (!samelang || isrtl != bp.language->RightToLeft()) {
161                 shape = L_SHAPE;
162                 if (isrtl)
163                         shape = REVERSED_L_SHAPE;
164         }
165
166         // The ERT language hack needs fixing up
167         if (realfont.language() == latex_language)
168                 shape = BAR_SHAPE;
169
170         int ascent = font_metrics::maxAscent(realfont);
171         int descent = font_metrics::maxDescent(realfont);
172         int h = ascent + descent;
173         int x = 0;
174         int y = 0;
175         bv.cursor().getPos(x, y);
176         y -= ascent;
177         //lyxerr << "LyXScreen::showCursor x: " << x << " y: " << y << endl;
178
179         // if it doesn't fit entirely on the screen, don't try to show it
180         if (y < 0 || y + h > workarea().workHeight())
181                 return;
182
183         cursor_visible_ = true;
184         showCursor(x, y, h, shape);
185 }
186
187
188 void LyXScreen::hideCursor()
189 {
190         if (!cursor_visible_)
191                 return;
192
193         cursor_visible_ = false;
194         removeCursor();
195 }
196
197
198 void LyXScreen::toggleCursor(BufferView & bv)
199 {
200         if (cursor_visible_)
201                 hideCursor();
202         else
203                 showCursor(bv);
204 }
205
206
207 bool LyXScreen::fitManualCursor(BufferView * bv, LyXText *,
208         int x, int y, int asc, int desc)
209 {
210         lyxerr << "LyXScreen::fitManualCursor x: " << x << " y: " << y << std::endl;
211         int const vheight = workarea().workHeight();
212         int const topy = bv->top_y();
213         int newtop = topy;
214
215         if (y + desc - topy >= vheight)
216                 newtop = y - 3 * vheight / 4;  // the scroll region must be so big!!
217         else if (y - asc < topy && topy > 0)
218                 newtop = y - vheight / 4;
219
220         newtop = max(newtop, 0); // can newtop ever be < 0? (Lgb)
221
222         if (newtop == topy)
223                 return false;
224
225         bv->top_y(newtop);
226         return true;
227 }
228
229
230 unsigned int LyXScreen::topCursorVisible(LyXText * text)
231 {
232         LyXCursor const & cursor = text->cursor;
233         int top_y = text->bv()->top_y();
234         int newtop = top_y;
235         unsigned int const vheight = workarea().workHeight();
236
237         Row & row = *text->cursorPar()->getRow(cursor.pos());
238
239         if (int(cursor.y() - row.baseline() + row.height() - top_y) >= vheight) {
240                 if (row.height() < vheight
241                     && row.height() > vheight / 4) {
242                         newtop = cursor.y()
243                                 + row.height()
244                                 - row.baseline() - vheight;
245                 } else {
246                         // scroll down, the scroll region must be so big!!
247                         newtop = cursor.y() - vheight / 2;
248                 }
249
250         } else if (int(cursor.y() - row.baseline()) < top_y && top_y > 0) {
251                 if (row.height() < vheight && row.height() > vheight / 4) {
252                         newtop = cursor.y() - row.baseline();
253                 } else {
254                         // scroll up
255                         newtop = cursor.y() - vheight / 2;
256                         newtop = min(newtop, top_y);
257                 }
258         }
259
260         return max(newtop, 0);
261 }
262
263
264 bool LyXScreen::fitCursor(LyXText * text, BufferView * bv)
265 {
266         // Is a change necessary?
267         int const newtop = topCursorVisible(text);
268         bool const result = (newtop != bv->top_y());
269         bv->top_y(newtop);
270         return result;
271 }
272
273
274 void LyXScreen::redraw(BufferView & bv)
275 {
276         greyed_out_ = !bv.text;
277
278         if (greyed_out_) {
279                 greyOut();
280                 return;
281         }
282
283         workarea().getPainter().start();
284
285         hideCursor();
286
287         int const y = paintText(bv);
288
289         // maybe we have to clear the screen at the bottom
290         int const y2 = workarea().workHeight();
291         if (y < y2 && !bv.text->isInInset()) {
292                 workarea().getPainter().fillRectangle(0, y,
293                         workarea().workWidth(), y2 - y,
294                         LColor::bottomarea);
295         }
296
297         lyxerr << "Redraw screen" << endl;
298
299         expose(0, 0, workarea().workWidth(), workarea().workHeight());
300
301         workarea().getPainter().end();
302 }
303
304
305 void LyXScreen::greyOut()
306 {
307         if (!greyed_out_)
308                 return;
309
310         workarea().getPainter().start();
311
312         workarea().getPainter().fillRectangle(0, 0,
313                 workarea().workWidth(),
314                 workarea().workHeight(),
315                 LColor::bottomarea);
316
317         // Add a splash screen to the centre of the work area
318         SplashScreen const & splash = SplashScreen::get();
319         lyx::graphics::Image const * const splash_image = splash.image();
320         if (splash_image) {
321                 int const w = splash_image->getWidth();
322                 int const h = splash_image->getHeight();
323
324                 int x = (workarea().workWidth() - w) / 2;
325                 int y = (workarea().workHeight() - h) / 2;
326
327                 workarea().getPainter().image(x, y, w, h, *splash_image);
328
329                 x += 260;
330                 y += 265;
331
332                 workarea().getPainter().text(x, y, splash.text(), splash.font());
333         }
334         expose(0, 0, workarea().workWidth(), workarea().workHeight());
335         workarea().getPainter().end();
336 }