X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fsplash.cc;h=756749c6e617729709a3b182c391a96c19915d67;hb=f974ff594a132fe651a6e620bab3e6f913d697a3;hp=2b28ff4953d6d262373db4e5566e6aaf55f07ebe;hpb=4dc63966f0872efe768dad61eb9b8785d06b92d1;p=ardour.git diff --git a/gtk2_ardour/splash.cc b/gtk2_ardour/splash.cc index 2b28ff4953..756749c6e6 100644 --- a/gtk2_ardour/splash.cc +++ b/gtk2_ardour/splash.cc @@ -21,10 +21,13 @@ #include "pbd/failed_constructor.h" #include "pbd/file_utils.h" +#include "pbd/stacktrace.h" #include "ardour/ardour.h" #include "ardour/filesystem_paths.h" +#include "gtkmm2ext/utils.h" + #ifdef check #undef check #endif @@ -32,7 +35,7 @@ #include "gui_thread.h" #include "splash.h" -#include "i18n.h" +#include "pbd/i18n.h" using namespace Gtk; using namespace Glib; @@ -45,11 +48,14 @@ Splash* Splash::the_splash = 0; Splash::Splash () { assert (the_splash == 0); - + std::string splash_file; - if (!find_file (ardour_data_search_path(), "splash.png", splash_file)) { - cerr << "Cannot find splash screen image file\n"; + Searchpath rc (ARDOUR::ardour_data_search_path()); + rc.add_subdirectory_to_paths ("resources"); + + if (!find_file (rc, PROGRAM_NAME "-splash.png", splash_file)) { + cerr << "Cannot find splash screen image file\n"; throw failed_constructor(); } @@ -58,7 +64,7 @@ Splash::Splash () } catch (...) { - cerr << "Cannot construct splash screen image\n"; + cerr << "Cannot construct splash screen image\n"; throw failed_constructor(); } @@ -86,14 +92,17 @@ Splash::Splash () set_type_hint(Gdk::WINDOW_TYPE_HINT_SPLASHSCREEN); the_splash = this; - expose_done = false; - expose_is_the_one = false; + expose_done = false; + expose_is_the_one = false; ARDOUR::BootMessage.connect (msg_connection, invalidator (*this), boost::bind (&Splash::boot_message, this, _1), gui_context()); } Splash::~Splash () { + idle_connection.disconnect (); + expose_done = true; + hide (); the_splash = 0; } @@ -101,20 +110,20 @@ void Splash::pop_back_for (Gtk::Window& win) { #if defined __APPLE__ || defined PLATFORM_WINDOWS - /* April 2013: window layering on OS X is a bit different to X Window. at present, - the "restack()" functionality in GDK will only operate on windows in the same - "level" (e.g. two normal top level windows, or two utility windows) and will not - work across them. The splashscreen is on its own "StatusWindowLevel" so restacking - is not going to work. - - So for OS X, we just hide ourselves. - - Oct 2014: The Windows situation is similar, although it should be possible - to play tricks with gdk's set_type_hint() or directly hack things using - SetWindowLong() and UpdateLayeredWindow() - */ - (void) win; - hide(); + /* April 2013: window layering on OS X is a bit different to X Window. at present, + * the "restack()" functionality in GDK will only operate on windows in the same + * "level" (e.g. two normal top level windows, or two utility windows) and will not + * work across them. The splashscreen is on its own "StatusWindowLevel" so restacking + * is not going to work. + * + * So for OS X, we just hide ourselves. + * + * Oct 2014: The Windows situation is similar, although it should be possible + * to play tricks with gdk's set_type_hint() or directly hack things using + * SetWindowLong() and UpdateLayeredWindow() + */ + (void) win; + hide(); #else set_keep_above (false); get_window()->restack (win.get_window(), false); @@ -124,12 +133,19 @@ Splash::pop_back_for (Gtk::Window& win) void Splash::pop_front () { - + if (get_window()) { #if defined __APPLE__ || defined PLATFORM_WINDOWS - if (get_window()) { - show (); - } + show (); +#else + gdk_window_restack(get_window()->gobj(), NULL, true); #endif + } +} + +void +Splash::hide () +{ + Gtk::Window::hide(); } void @@ -145,9 +161,9 @@ Splash::on_button_release_event (GdkEventButton* ev) { RefPtr window = get_window(); - if (!window || ev->window != window->gobj()) { - return false; - } + if (!window || ev->window != window->gobj()) { + return false; + } hide (); return true; @@ -178,8 +194,9 @@ Splash::expose (GdkEventExpose* ev) */ if (expose_is_the_one) { - Glib::signal_idle().connect (sigc::mem_fun (this, &Splash::idle_after_expose), - GDK_PRIORITY_REDRAW+2); + idle_connection = Glib::signal_idle().connect ( + sigc::mem_fun (this, &Splash::idle_after_expose), + GDK_PRIORITY_REDRAW+2); } return true; @@ -194,7 +211,7 @@ Splash::boot_message (std::string msg) bool Splash::idle_after_expose () { - expose_done = true; + expose_done = true; return false; } @@ -202,7 +219,7 @@ void Splash::display () { bool was_mapped = is_mapped (); - + if (!was_mapped) { expose_done = false; expose_is_the_one = false; @@ -210,9 +227,9 @@ Splash::display () pop_front (); present (); - + if (!was_mapped) { - while (!expose_done) { + while (!expose_done && gtk_events_pending()) { gtk_main_iteration (); } gdk_display_flush (gdk_display_get_default()); @@ -223,22 +240,23 @@ void Splash::message (const string& msg) { string str (""); - str += Glib::Markup::escape_text (msg).c_str(); + str += Gtkmm2ext::markup_escape_text (msg); str += ""; - show (); + show (); layout->set_markup (str); Glib::RefPtr win = darea.get_window(); - - if (win) { - expose_done = false; + if (win) { if (win->is_visible ()) { win->invalidate_rect (Gdk::Rectangle (0, darea.get_height() - 30, darea.get_width(), 30), true); } else { darea.queue_draw (); } + if (expose_done) { + ARDOUR::GUIIdle (); + } } }