ardour/gtk2_ardour/splash.cc

94 lines
1.8 KiB
C++
Raw Normal View History

#include <string>
#include <pbd/failed_constructor.h>
#include <pbd/file_utils.h>
#include <ardour/ardour.h>
#include <ardour/filesystem_paths.h>
#include "splash.h"
#include "i18n.h"
using namespace Gtk;
using namespace Glib;
using namespace std;
using namespace ARDOUR;
Splash::Splash ()
{
sys::path splash_file;
if (!find_file_in_search_path (ardour_search_path(), "splash.png", splash_file)) {
throw failed_constructor();
}
try {
pixbuf = Gdk::Pixbuf::create_from_file (splash_file.to_string());
}
catch (...) {
throw failed_constructor();
}
darea.set_size_request (pixbuf->get_width(), pixbuf->get_height());
set_type_hint (Gdk::WINDOW_TYPE_HINT_SPLASHSCREEN);
set_keep_above (true);
set_position (WIN_POS_CENTER);
darea.add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
layout = create_pango_layout ("");
darea.show ();
darea.signal_expose_event().connect (mem_fun (*this, &Splash::expose));
add (darea);
}
void
Splash::on_realize ()
{
Window::on_realize ();
layout->set_font_description (get_style()->get_font());
}
bool
Splash::on_button_release_event (GdkEventButton* ev)
{
hide ();
return true;
}
bool
Splash::expose (GdkEventExpose* ev)
{
#if 0
RefPtr<Gdk::Window> window = darea.get_window();
Glib::RefPtr<Gtk::Style> style = darea.get_style();
window->draw_pixbuf (darea.get_style()->get_bg_gc (STATE_NORMAL), pixbuf,
ev->area.x, ev->area.y,
ev->area.x, ev->area.y,
ev->area.width, ev->area.height,
Gdk::RGB_DITHER_NONE, 0, 0);
Glib::RefPtr<Gdk::GC> white = style->get_white_gc();
window->draw_layout (white, 10, pixbuf->get_height() - 30, layout);
#endif
return true;
}
void
Splash::message (const string& msg)
{
string str ("<b>");
str += msg;
str += "</b>";
layout->set_markup (str);
darea.queue_draw ();
get_window()->process_updates (true);
}