X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fsplash.h;h=5f0b9e74b5f1674b4fe7215b54646f0831d8f322;hb=1b2d22f4dd360e69d25d4cb8df830650b353e9fe;hp=2af5ceb2038d2b9d4779457f1e7e23bd3d5d9803;hpb=3e2b43e46d5e65edf081565e7a56d193ef716efd;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/splash.h b/synfig-studio/trunk/src/gtkmm/splash.h index 2af5ceb..5f0b9e7 100644 --- a/synfig-studio/trunk/src/gtkmm/splash.h +++ b/synfig-studio/trunk/src/gtkmm/splash.h @@ -1,5 +1,5 @@ /* === S Y N F I G ========================================================= */ -/*! \file about.h +/*! \file splash.h ** \brief Header File ** ** $Id$ @@ -24,14 +24,12 @@ /* === S T A R T =========================================================== */ -#ifndef __SYNFIG_GTKMM_ABOUT_H -#define __SYNFIG_GTKMM_ABOUT_H +#ifndef __SYNFIG_GTKMM_SPLASH_H +#define __SYNFIG_GTKMM_SPLASH_H /* === H E A D E R S ======================================================= */ -//#include #include -#include #include #include #include @@ -46,32 +44,25 @@ namespace synfig { class ProgressCallback; }; namespace studio { -class AboutProgress; +class SplashProgress; -class About : public Gtk::Window +class Splash : public Gtk::Window { - friend class AboutProgress; + friend class SplashProgress; - AboutProgress *cb; - - Gtk::Tooltips _tooltips; + SplashProgress *cb; Gtk::Label *tasklabel; Gtk::ProgressBar *progressbar; - Gtk::Button *CloseButton; - - void close(); - - bool can_self_destruct; public: synfig::ProgressCallback *get_callback(); - void set_can_self_destruct(bool x); + void enable_startup_notification(); - About(); - ~About(); + Splash(); + ~Splash(); }; }