diff options
author | Merov Linden <merov@lindenlab.com> | 2013-06-25 15:49:39 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2013-06-25 15:49:39 -0700 |
commit | ec09ce526b477869aa76dddaa8e11eecca57989d (patch) | |
tree | d1ace9a1f76b62e47e2c69bd6ee96d8426bb8008 /indra/newview/llfloatersocial.cpp | |
parent | fa48ae87415d7e5d5bf7549af30832a14d6a7de2 (diff) |
ACME-612 : Implemented a loading indicator for the map tile when it's loading, also disable the checkbox during that time
Diffstat (limited to 'indra/newview/llfloatersocial.cpp')
-rw-r--r-- | indra/newview/llfloatersocial.cpp | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/indra/newview/llfloatersocial.cpp b/indra/newview/llfloatersocial.cpp index 92a291e51c..e164ea8155 100644 --- a/indra/newview/llfloatersocial.cpp +++ b/indra/newview/llfloatersocial.cpp @@ -34,6 +34,7 @@ #include "llfacebookconnect.h" #include "llfloaterreg.h" #include "lliconctrl.h" +#include "llloadingindicator.h" #include "llslurl.h" #include "llviewerregion.h" #include "llviewercontrol.h" @@ -453,8 +454,12 @@ void LLFloaterSocial::draw() mMapTexture->setBoostLevel(LLGLTexture::BOOST_MAP); mReloadingMapTexture = true; // In the meantime, put back the "loading" placeholder in the map widget - getChild<LLIconCtrl>("map_placeholder")->setImage(mMapPlaceholder); - } + getChild<LLLoadingIndicator>("map_loading_indicator")->setVisible(true); + getChild<LLIconCtrl>("map_placeholder")->setVisible(false); + mMapCheckBoxValue = getChild<LLCheckBoxCtrl>("add_place_view_cb")->get(); + getChild<LLCheckBoxCtrl>("add_place_view_cb")->set(false); + getChild<LLCheckBoxCtrl>("add_place_view_cb")->setEnabled(false); + } // Are we done loading the map tile? if (mReloadingMapTexture && mMapTexture->isFullyLoaded()) { @@ -464,6 +469,11 @@ void LLFloaterSocial::draw() LLPointer<LLUIImage> ui_image = new LLUIImage(mMapUrl, mMapTexture); // Point map widget to correct map tile getChild<LLIconCtrl>("map_placeholder")->setImage(ui_image); + // Switch visibility + getChild<LLLoadingIndicator>("map_loading_indicator")->setVisible(false); + getChild<LLIconCtrl>("map_placeholder")->setVisible(true); + getChild<LLCheckBoxCtrl>("add_place_view_cb")->setEnabled(true); + getChild<LLCheckBoxCtrl>("add_place_view_cb")->set(mMapCheckBoxValue); } LLFloater::draw(); } |