]> git.lyx.org Git - lyx.git/blob - src/frontends/screen.C
some tabular fixes for the problems reported by Helge
[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 "coordcache.h"
25 #include "cursor.h"
26 #include "debug.h"
27 #include "language.h"
28 #include "LColor.h"
29 #include "lyxfont.h"
30 #include "lyxrc.h"
31 #include "lyxrow.h"
32 #include "lyxtext.h"
33 #include "metricsinfo.h"
34 #include "paragraph.h"
35 #include "rowpainter.h"
36 #include "version.h"
37
38 #include "insets/updatableinset.h"
39
40 #include "graphics/GraphicsImage.h"
41 #include "graphics/GraphicsLoader.h"
42
43 #include "support/filetools.h" // LibFileSearch
44
45 #include <boost/utility.hpp>
46 #include <boost/bind.hpp>
47 #include <boost/signals/trackable.hpp>
48
49 using lyx::support::LibFileSearch;
50
51 using std::endl;
52 using std::min;
53 using std::max;
54 using std::string;
55
56
57 namespace {
58
59 class SplashScreen : boost::noncopyable, boost::signals::trackable {
60 public:
61         /// This is a singleton class. Get the instance.
62         static SplashScreen const & get();
63         ///
64         lyx::graphics::Image const * image() const { return loader_.image(); }
65         ///
66         string const & text() const { return text_; }
67         ///
68         LyXFont const & font() const { return font_; }
69         ///
70         void connect(lyx::graphics::Loader::slot_type const & slot) const {
71                 loader_.connect(slot);
72         }
73         ///
74         void startLoading() const {
75                 if (loader_.status() == lyx::graphics::WaitingToLoad)
76                         loader_.startLoading();
77         }
78
79 private:
80         /** Make the c-tor private so we can control how many objects
81          *  are instantiated.
82          */
83         SplashScreen();
84
85         ///
86         lyx::graphics::Loader loader_;
87         /// The text to be written on top of the pixmap
88         string const text_;
89         /// in this font...
90         LyXFont font_;
91 };
92
93
94 SplashScreen const & SplashScreen::get()
95 {
96         static SplashScreen singleton;
97         return singleton;
98 }
99
100
101 SplashScreen::SplashScreen()
102         : text_(lyx_version ? lyx_version : "unknown")
103 {
104         if (!lyxrc.show_banner)
105                 return;
106
107         string const file = LibFileSearch("images", "banner", "ppm");
108         if (file.empty())
109                 return;
110
111         // The font used to display the version info
112         font_.setFamily(LyXFont::SANS_FAMILY);
113         font_.setSeries(LyXFont::BOLD_SERIES);
114         font_.setSize(LyXFont::SIZE_NORMAL);
115         font_.setColor(LColor::yellow);
116
117         // Load up the graphics file
118         loader_.reset(file);
119 }
120
121 } // namespace anon
122
123
124 LyXScreen::LyXScreen()
125         : greyed_out_(true), cursor_visible_(false)
126 {
127         // Start loading the pixmap as soon as possible
128         if (lyxrc.show_banner) {
129                 SplashScreen const & splash = SplashScreen::get();
130                 splash.connect(boost::bind(&LyXScreen::checkAndGreyOut, this));
131                 splash.startLoading();
132         }
133 }
134
135
136 LyXScreen::~LyXScreen()
137 {
138 }
139
140
141 void LyXScreen::checkAndGreyOut()
142 {
143         if (greyed_out_)
144                 greyOut();
145 }
146
147
148 void LyXScreen::showCursor(BufferView & bv)
149 {
150         // You are not expected to understand this. This forces Qt
151         // (the problem case) to deal with its event queue. This is
152         // necessary when holding down a key such as 'page down' or
153         // just typing: without this processing of the event queue,
154         // the cursor gets ahead of itself without a selection or
155         // workarea redraw having a chance to keep up. If you think
156         // you can remove this, try selecting text with the mouse
157         // in Qt, or holding Page Down on the User's Guide.
158         lyx_gui::sync_events();
159
160         if (cursor_visible_)
161                 return;
162
163         if (!bv.available())
164                 return;
165
166         Cursor_Shape shape = BAR_SHAPE;
167
168         LyXText const & text = *bv.getLyXText();
169         LyXFont const & realfont = text.real_current_font;
170         BufferParams const & bp = bv.buffer()->params();
171         bool const samelang = realfont.language() == bp.language;
172         bool const isrtl = realfont.isVisibleRightToLeft();
173
174         if (!samelang || isrtl != bp.language->RightToLeft()) {
175                 shape = L_SHAPE;
176                 if (isrtl)
177                         shape = REVERSED_L_SHAPE;
178         }
179
180         // The ERT language hack needs fixing up
181         if (realfont.language() == latex_language)
182                 shape = BAR_SHAPE;
183
184         LyXFont const font = bv.cursor().getFont();
185         int const asc = font_metrics::maxAscent(font);
186         int const des = font_metrics::maxDescent(font);
187         int h = asc + des;
188         int x = 0;
189         int y = 0;
190         bv.cursor().getPos(x, y);
191         y -= asc;
192         //lyxerr << "LyXScreen::showCursor x: " << x << " y: " << y << endl;
193
194         // if it doesn't touch the screen, don't try to show it
195         if (y + h < 0 || y >= workarea().workHeight())
196                 return;
197
198         cursor_visible_ = true;
199         showCursor(x, y, h, shape);
200 }
201
202
203 void LyXScreen::hideCursor()
204 {
205         if (!cursor_visible_)
206                 return;
207
208         cursor_visible_ = false;
209         removeCursor();
210 }
211
212
213 void LyXScreen::toggleCursor(BufferView & bv)
214 {
215         if (cursor_visible_)
216                 hideCursor();
217         else
218                 showCursor(bv);
219 }
220
221
222 void LyXScreen::redraw(BufferView & bv, ViewMetricsInfo const & vi)
223 {
224         greyed_out_ = false;
225         workarea().getPainter().start();
226         hideCursor();
227         paintText(bv, vi);
228         lyxerr[Debug::DEBUG] << "Redraw screen" << endl;
229         expose(0, 0, workarea().workWidth(), workarea().workHeight());
230         workarea().getPainter().end();
231         theCoords.doneUpdating();
232         showCursor(bv);
233 }
234
235
236 void LyXScreen::greyOut()
237 {
238         greyed_out_ = true;
239         workarea().getPainter().start();
240
241         workarea().getPainter().fillRectangle(0, 0,
242                 workarea().workWidth(),
243                 workarea().workHeight(),
244                 LColor::bottomarea);
245
246         // Add a splash screen to the centre of the work area
247         SplashScreen const & splash = SplashScreen::get();
248         lyx::graphics::Image const * const splash_image = splash.image();
249         if (splash_image) {
250                 int const w = splash_image->getWidth();
251                 int const h = splash_image->getHeight();
252
253                 int x = (workarea().workWidth() - w) / 2;
254                 int y = (workarea().workHeight() - h) / 2;
255
256                 workarea().getPainter().image(x, y, w, h, *splash_image);
257
258                 x += 260;
259                 y += 265;
260
261                 workarea().getPainter().text(x, y, splash.text(), splash.font());
262         }
263         expose(0, 0, workarea().workWidth(), workarea().workHeight());
264         workarea().getPainter().end();
265 }