X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;ds=sidebyside;f=cinelerra-5.1%2Fcinelerra%2Fsplashgui.C;h=e9e1840ad4d29477174fb5e7be2e861535906ba4;hb=2e48b660e37eb5c661264d601211e16cb6cd6e89;hp=3d9c451592ccfb6325ffe17d0411a3b5b5742cfc;hpb=21c2e6b36d6a96c2f662a89459d607b5a387f4eb;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/splashgui.C b/cinelerra-5.1/cinelerra/splashgui.C index 3d9c4515..e9e1840a 100644 --- a/cinelerra-5.1/cinelerra/splashgui.C +++ b/cinelerra-5.1/cinelerra/splashgui.C @@ -30,19 +30,8 @@ SplashGUI::SplashGUI(VFrame *bg, int x, int y) - : BC_Window(_(PROGRAM_NAME ": Loading"), - x, - y, - bg->get_w(), - bg->get_h(), - -1, - -1, - 0, - 0, - 1, - -1, - "", - 0) + : BC_Window(_(PROGRAM_NAME ": Loading"), x, y, bg->get_w(), bg->get_h(), + -1, -1, 0, 0, 1, -1, "", 0) { this->bg = bg; } @@ -54,13 +43,21 @@ SplashGUI::~SplashGUI() void SplashGUI::create_objects() { + lock_window("SplashGUI::create_objects"); draw_vframe(bg, 0, 0); flash(); show_window(); - add_subwindow(operation = - new BC_Title(5, + operation = new BC_Title(5, get_h() - get_text_height(MEDIUMFONT) - 5, - _("Loading..."))); + _("Loading..."), MEDIUMFONT, GREEN); + add_subwindow(operation); + unlock_window(); } +void SplashGUI::update_status(const char *text) +{ + lock_window("SplashGUI::update_status"); + operation->update(text); + unlock_window(); +}