summaryrefslogtreecommitdiff
path: root/gtk2_ardour/splash.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-01-19 05:06:33 +0000
committerDavid Robillard <d@drobilla.net>2008-01-19 05:06:33 +0000
commit7295d8e9f675f4441ab626c0655b2d2e6663e47e (patch)
tree50a1bf7d6b736c02591de3904909dda5cdd625d4 /gtk2_ardour/splash.h
parent4ca1fe7993adf63ea3f35958f63dd20ee546e7ae (diff)
Merge with 2.0-ongoing R2943.
git-svn-id: svn://localhost/ardour2/branches/3.0@2944 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/splash.h')
-rw-r--r--gtk2_ardour/splash.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/gtk2_ardour/splash.h b/gtk2_ardour/splash.h
index 3ef717d08d..5ba5478941 100644
--- a/gtk2_ardour/splash.h
+++ b/gtk2_ardour/splash.h
@@ -21,6 +21,9 @@
#define __ardour_gtk_splash_h__
#include <gtkmm/window.h>
+#include <gtkmm/drawingarea.h>
+#include <gtkmm/box.h>
+#include <gtkmm/label.h>
#include <gdkmm/pixbuf.h>
class ARDOUR_UI;
@@ -31,11 +34,16 @@ class Splash : public Gtk::Window
Splash ();
~Splash () {}
- bool on_expose_event (GdkEventExpose*);
+ bool expose (GdkEventExpose*);
bool on_button_release_event (GdkEventButton*);
+ void on_realize ();
+ void message (const std::string& msg);
+
private:
Glib::RefPtr<Gdk::Pixbuf> pixbuf;
+ Gtk::DrawingArea darea;
+ Glib::RefPtr<Pango::Layout> layout;
};
#endif /* __ardour_gtk_splash_h__ */