Solving issue 1206: "Caveats file handling". May also solve issue 1089: "About RT: version window disappears". This patch also cleanup the Gamma tool a little bite. The CAVEATS.txt is optional and may be deleted in future release.

This commit is contained in:
natureh
2012-01-18 00:20:19 +01:00
parent 8703bcd103
commit 66f1376131
17 changed files with 240 additions and 145 deletions

View File

@@ -39,13 +39,17 @@ class Splash : public Gtk::Dialog {
private:
SplashImage* splashImage;
Gtk::Notebook* nb;
Gtk::ScrolledWindow* caveatsSW;
public:
Splash (int maxtime);
Splash ();
Splash (Gtk::Window& parent, int maxtime);
Splash (Gtk::Window& parent);
bool hasCaveats() { return caveatsSW != NULL; };
void showCaveats();
bool on_timer ();
virtual bool on_button_release_event (GdkEventButton* event);
//virtual bool on_button_release_event (GdkEventButton* event);
};
#endif