X-Git-Url: http://git.cinelerra-gg.org/git/?p=goodguy%2Fhistory.git;a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fsplashgui.C;h=e91d640d8d980e39c301ae3b69dc458e24e35960;hp=3d9c451592ccfb6325ffe17d0411a3b5b5742cfc;hb=7e5a0760f40ff787cc3d93cb7768a901ebe52809;hpb=21c2e6b36d6a96c2f662a89459d607b5a387f4eb diff --git a/cinelerra-5.1/cinelerra/splashgui.C b/cinelerra-5.1/cinelerra/splashgui.C index 3d9c4515..e91d640d 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...")); + add_subwindow(operation); + unlock_window(); } +void SplashGUI::update_status(const char *text) +{ + lock_window("SplashGUI::update_status"); + operation->update(text); + unlock_window(); +}