Startup make some noise :)

Crash dialog will cleanup generated data. Also will
check availability to write/read data it generates.
This commit is contained in:
Sanel Zukan
2007-09-03 12:24:01 +00:00
parent 8c57ce3e43
commit df0031d9dd
10 changed files with 78 additions and 236 deletions

View File

@ -22,6 +22,7 @@ class Splash : public Fl_Double_Window {
private:
ClientList* clist;
const edelib::String* bkg;
const edelib::String* sound;
unsigned int counter;
bool no_splash;
bool dry_run;
@ -41,6 +42,7 @@ class Splash : public Fl_Double_Window {
*/
void set_clients(ClientList* cl) { clist = cl; }
void set_background(const edelib::String* s) { bkg = s; }
void set_sound(const edelib::String* s) { sound = s; }
const ClientList* get_clients(void) const { return clist; }
bool next_client(void);