From db22b940e59c816d7105428c40a6f56a2a197071 Mon Sep 17 00:00:00 2001 From: fgerlits Date: Thu, 30 Nov 2006 14:11:09 +0000 Subject: [PATCH] fixed #2023 --- .../gLiveSupport/src/GLiveSupport.cxx | 18 ++++++++++--- .../products/gLiveSupport/src/GLiveSupport.h | 6 +++++ .../gLiveSupport/src/LiveModeWindow.cxx | 27 ++++++++++++++++--- .../gLiveSupport/src/LiveModeWindow.h | 20 ++++++++++++++ .../products/gLiveSupport/src/LoginWindow.cxx | 11 ++++++++ .../src/MasterPanelUserInfoWidget.cxx | 8 ------ .../gLiveSupport/src/MasterPanelWindow.cxx | 7 +++-- 7 files changed, 80 insertions(+), 17 deletions(-) diff --git a/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx b/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx index 990deb178..6e8b46895 100644 --- a/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx +++ b/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx @@ -602,10 +602,6 @@ GLiveSupport :: login(const std::string & login, loadWindowPositions(); - if (masterPanel) { - masterPanel->createScratchpadWindow(); - } - return true; } @@ -1759,3 +1755,17 @@ GLiveSupport :: refreshPlaylistInLiveMode(Ptr::Ref playlist) masterPanel->refreshPlaylistInLiveMode(playlist); } + +/*------------------------------------------------------------------------------ + * Preload the Scratchpad window during login. + *----------------------------------------------------------------------------*/ +void +LiveSupport :: GLiveSupport :: +GLiveSupport :: createScratchpadWindow(void) + throw () +{ + if (masterPanel) { + masterPanel->createScratchpadWindow(); + } +} + diff --git a/campcaster/src/products/gLiveSupport/src/GLiveSupport.h b/campcaster/src/products/gLiveSupport/src/GLiveSupport.h index e60b2494a..9ba2ae03e 100644 --- a/campcaster/src/products/gLiveSupport/src/GLiveSupport.h +++ b/campcaster/src/products/gLiveSupport/src/GLiveSupport.h @@ -1266,6 +1266,12 @@ class GLiveSupport : public LocalizedConfigurable, Gtk::Main::iteration(); } } + + /** + * Preload the Scratchpad window during login. + */ + void + createScratchpadWindow(void) throw (); }; /* ================================================= external data structures */ diff --git a/campcaster/src/products/gLiveSupport/src/LiveModeWindow.cxx b/campcaster/src/products/gLiveSupport/src/LiveModeWindow.cxx index 7f61ac9cb..06de98497 100644 --- a/campcaster/src/products/gLiveSupport/src/LiveModeWindow.cxx +++ b/campcaster/src/products/gLiveSupport/src/LiveModeWindow.cxx @@ -132,12 +132,10 @@ LiveModeWindow :: LiveModeWindow (Ptr::Ref gLiveSupport, ImageButton * outputPlayButton = Gtk::manage(wf->createButton( WidgetConstants::hugePlayButton )); - Button * clearListButton; - Button * removeButton; Gtk::VBox * cueAudioBox = Gtk::manage(new Gtk::VBox); Gtk::HBox * cueAudioLabelBox = Gtk::manage(new Gtk::HBox); - Gtk::Label * cueAudioLabel; + try { cueAudioLabel = Gtk::manage(new Gtk::Label( *getResourceUstring("cuePlayerLabel") )); @@ -685,6 +683,29 @@ LiveModeWindow :: onTreeModelChanged(void) throw () } +/*------------------------------------------------------------------------------ + * Update the strings in the widget. + *----------------------------------------------------------------------------*/ +void +LiveModeWindow :: updateStrings(void) throw () +{ + try { + setBundle(gLiveSupport->getBundle("liveModeWindow")); + + set_title(*getResourceUstring("windowTitle")); + cueAudioLabel->set_label(*getResourceUstring("cuePlayerLabel")); + clearListButton->set_label(*getResourceUstring("clearListButtonLabel")); + removeButton->set_label(*getResourceUstring("removeButtonLabel")); + + } catch (std::invalid_argument &e) { + std::cerr << e.what() << std::endl; + std::exit(1); + } + + show_all_children(); +} + + /*------------------------------------------------------------------------------ * Event handler called when the the window gets hidden. *----------------------------------------------------------------------------*/ diff --git a/campcaster/src/products/gLiveSupport/src/LiveModeWindow.h b/campcaster/src/products/gLiveSupport/src/LiveModeWindow.h index 8ad76305a..0c5b7ee59 100644 --- a/campcaster/src/products/gLiveSupport/src/LiveModeWindow.h +++ b/campcaster/src/products/gLiveSupport/src/LiveModeWindow.h @@ -106,6 +106,21 @@ class LiveModeWindow : public GuiWindow */ CuePlayer * cueAudioButtons; + /** + * The label for the cue player. + */ + Gtk::Label * cueAudioLabel; + + /** + * The button for removing every item from the window. + */ + Button * clearListButton; + + /** + * The button for removing the selected items from the window. + */ + Button * removeButton; + /** * Construct the right-click context menu for local audio clips. * @@ -389,6 +404,11 @@ class LiveModeWindow : public GuiWindow return (treeModel->children().size() != 0); } + /** + * Update the localized strings in the widget. + */ + void + updateStrings(void) throw (); }; /* ================================================= external data structures */ diff --git a/campcaster/src/products/gLiveSupport/src/LoginWindow.cxx b/campcaster/src/products/gLiveSupport/src/LoginWindow.cxx index 5fc0de2fc..9b4fe4062 100644 --- a/campcaster/src/products/gLiveSupport/src/LoginWindow.cxx +++ b/campcaster/src/products/gLiveSupport/src/LoginWindow.cxx @@ -255,6 +255,17 @@ LoginWindow :: onOkButtonClicked (void) throw () } loggedIn = gLiveSupport->login(*getLogin(), *getPassword()); + + if (loggedIn) { + if (selectedLocale->size() > 0) { + gLiveSupport->changeLanguage(selectedLocale); + } else { + // TODO: get and set default locale for user + } + + gLiveSupport->createScratchpadWindow(); + } + hide(); } diff --git a/campcaster/src/products/gLiveSupport/src/MasterPanelUserInfoWidget.cxx b/campcaster/src/products/gLiveSupport/src/MasterPanelUserInfoWidget.cxx index 2ec9afb90..ae646e6d7 100644 --- a/campcaster/src/products/gLiveSupport/src/MasterPanelUserInfoWidget.cxx +++ b/campcaster/src/products/gLiveSupport/src/MasterPanelUserInfoWidget.cxx @@ -202,14 +202,6 @@ MasterPanelUserInfoWidget :: onLoginButtonClicked (void) throw () logInOutButton->signal_clicked().connect(sigc::mem_fun(*this, &MasterPanelUserInfoWidget::onLogoutButtonClicked)); - // update the UI to the possibly selected locale - Ptr::Ref locale = loginWindow->getSelectedLocale(); - if (locale->size() > 0) { - gLiveSupport->changeLanguage(locale); - } else { - // TODO: get and set default locale for user - } - // remove the close button remove(*closeButton); diff --git a/campcaster/src/products/gLiveSupport/src/MasterPanelWindow.cxx b/campcaster/src/products/gLiveSupport/src/MasterPanelWindow.cxx index 94a5bfb00..6a8ed17f2 100644 --- a/campcaster/src/products/gLiveSupport/src/MasterPanelWindow.cxx +++ b/campcaster/src/products/gLiveSupport/src/MasterPanelWindow.cxx @@ -756,8 +756,11 @@ MasterPanelWindow :: showLoggedInUI(void) throw () setSchedulerAvailable(gLiveSupport->isSchedulerAvailable()); - if (liveModeWindow && liveModeWindow->isNotEmpty()) { - liveModeWindow->present(); + if (liveModeWindow) { + liveModeWindow->updateStrings(); + if (liveModeWindow->isNotEmpty()) { + liveModeWindow->present(); + } } }