Renaming Caveats to Release Notes, adding text margins to the splash screen

This commit is contained in:
Michael Ezra
2012-01-26 21:57:23 -05:00
parent 35ac9af7e3
commit 60c1d8bf92
10 changed files with 501 additions and 42 deletions

View File

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