Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-studio / trunk / src / gtkmm / splash.h
index 2af5ceb..5f0b9e7 100644 (file)
@@ -1,5 +1,5 @@
 /* === S Y N F I G ========================================================= */
-/*!    \file about.h
+/*!    \file splash.h
 **     \brief Header File
 **
 **     $Id$
 
 /* === 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 <gtk/gtk.h>
 #include <gtkmm/window.h>
-#include <gtkmm/tooltips.h>
 #include <gtkmm/label.h>
 #include <gtkmm/button.h>
 #include <gtkmm/progressbar.h>
@@ -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();
 };
 
 }