]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/WorkArea.C
Extracted from r14281
[lyx.git] / src / frontends / WorkArea.C
index cae78a718d8af72ef8654bddd9dc4512f34efa24..21fa3fb9b0036661fd0b55bf0b27ef3f573139a6 100644 (file)
 /**
  * \file WorkArea.C
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Asger and Juergen
+ * \author John Levon
+ * \author Abdelrazak Younes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
+ *
+ * Splash screen code added by Angus Leeming
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "WorkArea.h"
+
+#include "font_metrics.h"
+#include "lyx_gui.h"
+#include "Painter.h"
+
+#include "BufferView.h"
+#include "buffer.h"
+#include "bufferparams.h"
+#include "coordcache.h"
+#include "cursor.h"
+#include "debug.h"
+#include "language.h"
+#include "LColor.h"
+#include "lyxfont.h"
+#include "lyxrc.h"
+#include "lyxrow.h"
+#include "lyxtext.h"
+#include "metricsinfo.h"
+#include "paragraph.h"
+#include "rowpainter.h"
+#include "version.h"
+
+#include "graphics/GraphicsImage.h"
+#include "graphics/GraphicsLoader.h"
+
+#include "support/filetools.h" // LibFileSearch
+#include "support/forkedcontr.h"
+
+#include <boost/utility.hpp>
+#include <boost/bind.hpp>
+#include <boost/signals/trackable.hpp>
+
+using lyx::support::libFileSearch;
+using lyx::support::ForkedcallsController;
+
+using std::endl;
+using std::min;
+using std::max;
+using std::string;
+
+
+namespace {
+
+// All the below connection objects are needed because of a bug in some
+// versions of GCC (<=2.96 are on the suspects list.) By having and assigning
+// to these connections we avoid a segfault upon startup, and also at exit.
+// (Lgb)
+
+boost::signals::connection timecon;
+
+} // anon namespace
+
+namespace lyx {
+namespace frontend {
+
+class SplashScreen : boost::noncopyable, boost::signals::trackable {
+public:
+       /// This is a singleton class. Get the instance.
+       static SplashScreen const & get();
+       ///
+       lyx::graphics::Image const * image() const { return loader_.image(); }
+       ///
+       string const & text() const { return text_; }
+       ///
+       LyXFont const & font() const { return font_; }
+       ///
+       void connect(lyx::graphics::Loader::slot_type const & slot) const {
+               loader_.connect(slot);
+       }
+       ///
+       void startLoading() const {
+               if (loader_.status() == lyx::graphics::WaitingToLoad)
+                       loader_.startLoading();
+       }
+
+private:
+       /** Make the c-tor private so we can control how many objects
+        *  are instantiated.
+        */
+       SplashScreen();
+
+       ///
+       lyx::graphics::Loader loader_;
+       /// The text to be written on top of the pixmap
+       string const text_;
+       /// in this font...
+       LyXFont font_;
+};
+
+
+SplashScreen const & SplashScreen::get()
+{
+       static SplashScreen singleton;
+       return singleton;
+}
+
+
+SplashScreen::SplashScreen()
+       : text_(lyx_version ? lyx_version : "unknown")
+{
+       if (!lyxrc.show_banner)
+               return;
+
+       string const file = libFileSearch("images", "banner", "ppm");
+       if (file.empty())
+               return;
+
+       // The font used to display the version info
+       font_.setFamily(LyXFont::SANS_FAMILY);
+       font_.setSeries(LyXFont::BOLD_SERIES);
+       font_.setSize(LyXFont::SIZE_NORMAL);
+       font_.setColor(LColor::yellow);
+
+       // Load up the graphics file
+       loader_.reset(file);
+}
+
+WorkArea::WorkArea(BufferView * buffer_view)
+       : buffer_view_(buffer_view), greyed_out_(true),
+         cursor_visible_(false), cursor_timeout_(400)
+{
+       // Start loading the pixmap as soon as possible
+       if (lyxrc.show_banner) {
+               SplashScreen const & splash = SplashScreen::get();
+               splash.connect(boost::bind(&WorkArea::checkAndGreyOut, this));
+               splash.startLoading();
+       }
+
+       // Setup the signals
+       timecon = cursor_timeout_.timeout
+               .connect(boost::bind(&WorkArea::toggleCursor, this));
+
+       cursor_timeout_.start();
+}
+
+
+void WorkArea::setBufferView(BufferView * buffer_view)
+{
+       buffer_view_ = buffer_view;
+}
+
+
+BufferView & WorkArea::bufferView()
+{
+       return *buffer_view_;
+}
+
+
+BufferView const & WorkArea::bufferView() const
+{
+       return *buffer_view_;
+}
+
+
+void WorkArea::checkAndGreyOut()
+{
+       if (greyed_out_)
+               greyOut();
+}
+
+
+void WorkArea::redraw()
+{
+       BOOST_ASSERT(buffer_view_);
+
+       if (!buffer_view_->buffer()) {
+               greyOut();
+               return;
+       }
+
+       if (!buffer_view_->needsRedraw())
+               return;
+
+       greyed_out_ = false;
+       ViewMetricsInfo const & vi = buffer_view_->viewMetricsInfo();
+
+       Painter & pain = getPainter();
+
+       pain.start();
+       paintText(*buffer_view_, vi, pain);
+       lyxerr[Debug::DEBUG] << "Redraw screen" << endl;
+       int const ymin = std::max(vi.y1, 0);
+       int const ymax =
+               ( vi.p2 < vi.size - 1 ?  vi.y2 : height() );
+       expose(0, ymin, width(), ymax - ymin);
+       pain.end();
+       //theCoords.doneUpdating();
+       buffer_view_->needsRedraw(false);
+
+       if (lyxerr.debugging(Debug::DEBUG)) {
+               lyxerr[Debug::DEBUG]
+                       << "  ymin = " << ymin << "  width() = " << width()
+                       << "  ymax-ymin = " << ymax-ymin << std::endl;
+       }
+}
+
+
+void WorkArea::processKeySym(LyXKeySymPtr key, key_modifier::state state)
+{
+       hideCursor();
+
+       buffer_view_->workAreaKeyPress(key, state);
+       /* This is perhaps a bit of a hack. When we move
+        * around, or type, it's nice to be able to see
+        * the cursor immediately after the keypress. So
+        * we reset the toggle timeout and force the visibility
+        * of the cursor. Note we cannot do this inside
+        * dispatch() itself, because that's called recursively.
+        */
+       //     if (buffer_view_->available())
+       toggleCursor();
+
+}
+
+
+void WorkArea::greyOut()
+{
+       greyed_out_ = true;
+       getPainter().start();
+
+       getPainter().fillRectangle(0, 0,
+               width(),
+               height(),
+               LColor::bottomarea);
+
+       // Add a splash screen to the centre of the work area
+       SplashScreen const & splash = SplashScreen::get();
+       lyx::graphics::Image const * const splash_image = splash.image();
+       if (splash_image) {
+               int const w = splash_image->getWidth();
+               int const h = splash_image->getHeight();
+
+               int x = (width() - w) / 2;
+               int y = (height() - h) / 2;
+
+               getPainter().image(x, y, w, h, *splash_image);
+
+               x += 260;
+               y += 265;
+
+               getPainter().text(x, y, splash.text(), splash.font());
+       }
+       expose(0, 0, width(), height());
+       getPainter().end();
+}
+
+
+void WorkArea::showCursor()
+{
+       if (cursor_visible_)
+               return;
+
+       if (!buffer_view_->available())
+               return;
+
+       CursorShape shape = BAR_SHAPE;
+
+       LyXText const & text = *buffer_view_->getLyXText();
+       LyXFont const & realfont = text.real_current_font;
+       BufferParams const & bp = buffer_view_->buffer()->params();
+       bool const samelang = realfont.language() == bp.language;
+       bool const isrtl = realfont.isVisibleRightToLeft();
+
+       if (!samelang || isrtl != bp.language->rightToLeft()) {
+               shape = L_SHAPE;
+               if (isrtl)
+                       shape = REVERSED_L_SHAPE;
+       }
+
+       // The ERT language hack needs fixing up
+       if (realfont.language() == latex_language)
+               shape = BAR_SHAPE;
+
+       LyXFont const font = buffer_view_->cursor().getFont();
+       int const asc = font_metrics::maxAscent(font);
+       int const des = font_metrics::maxDescent(font);
+       int h = asc + des;
+       int x = 0;
+       int y = 0;
+       buffer_view_->cursor().getPos(x, y);
+       y -= asc;
+
+       // if it doesn't touch the screen, don't try to show it
+       if (y + h < 0 || y >= height())
+               return;
+
+       cursor_visible_ = true;
+       showCursor(x, y, h, shape);
+}
+
+
+void WorkArea::hideCursor()
+{
+       if (!cursor_visible_)
+               return;
+
+       cursor_visible_ = false;
+       removeCursor();
+}
+
+
+void WorkArea::toggleCursor()
+{
+       if (buffer_view_->buffer()) {
+
+               if (cursor_visible_)
+                       hideCursor();
+               else
+                       showCursor();
+
+               // Use this opportunity to deal with any child processes that
+               // have finished but are waiting to communicate this fact
+               // to the rest of LyX.
+               ForkedcallsController & fcc = ForkedcallsController::get();
+               fcc.handleCompletedProcesses();
+       }
+
+       cursor_timeout_.restart();
+}
+
+
+} // namespace frontend
+} // namespace lyx