#ifndef __SD_SPLASH_H__ #define __SD_SPLASH_H__ #include #include class splash_screen { public: splash_screen(); void display_action(const std::string& actname); void show(); private: GtkLabel *text; GtkProgressBar *progress; }; extern splash_screen stardict_splash; #endif