From e64503b8c2584763f1b717dcada532d956a82d03 Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Fri, 21 Jun 2002 17:16:35 +0000 Subject: [PATCH] Virtual code for the splash screen and a suggestion that this isn't the best way to proceed after all. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4460 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/screen.C | 47 ++++++++++++++++++++++++++++++++---------- 1 file changed, 36 insertions(+), 11 deletions(-) diff --git a/src/frontends/screen.C b/src/frontends/screen.C index 05e67252c3..ba7af87588 100644 --- a/src/frontends/screen.C +++ b/src/frontends/screen.C @@ -26,7 +26,8 @@ using std::min; using std::max; using std::endl; - + + LyXScreen::LyXScreen() : force_clear_(true), cursor_visible_(false) { @@ -296,18 +297,42 @@ void LyXScreen::greyOut() workarea().workHeight(), LColor::bottomarea); -/* FIXME: pending GUIIzation / cleanup of graphics cache -We should be using : - - static GImage splash(LibFileSearch(...)); - workarea().getPainter().image(splash); - -or similar. -*/ +// FIXME: pending GUIIzation / cleanup of graphics cache. +// We should be using something like this. #if 0 + static bool first = true; + if (first) { + first = false; + + splash_file_ = (lyxrc.show_banner) ? + LibFileSearch("images", "banner", "xpm") : string(); + if (splash_file_) { + grfx::GCache & gc = grfx::GCache::get(); + gc.add(splash_file_); + gc.startLoading(splash_file_); + } + } + // Add a splash screen to the centre of the work area - string const splash_file = LibFileSearch("images", "banner", "xpm"); -#endif + grfx::GCache & gc = grfx::GCache::get(); + grfx::ImagePtr const splash = gc.image(splash_file_); + if (splash.get()) { + int const w = splash->getWidth(); + int const h = splash->getHeight(); + + int const x = 0.5 * (workarea().workWidth() - w); + int const y = 0.5 * (workarea().workHeight() - h); + + workarea().getPainter().image(x, y, w, h, splash->getPixmap()); + } +#endif +// Alternatively, we should compile this into the code. +// I think that that is better here (so that the pixmap is displayed on +// start-up). +// Would need a new method +// virtual Pixmap splashPixmap() = 0; +// or some such. +// Angus 21 June 2002 } -- 2.39.2