summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterregioninfo.cpp
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2018-08-06 15:37:09 -0700
committerRider Linden <rider@lindenlab.com>2018-08-06 15:37:09 -0700
commitcd5f7b2c03e87cc5d236eaa5b8c025530571376a (patch)
treecb44c4ccbd71fc71265cbbc86eeb94207507f799 /indra/newview/llfloaterregioninfo.cpp
parent21c6e6063f52398802fd63a81914eb42b76f3ff3 (diff)
MAINT-7703: Estate and region flags for parcel environmests (not written to DB yet)
Diffstat (limited to 'indra/newview/llfloaterregioninfo.cpp')
-rw-r--r--indra/newview/llfloaterregioninfo.cpp48
1 files changed, 42 insertions, 6 deletions
diff --git a/indra/newview/llfloaterregioninfo.cpp b/indra/newview/llfloaterregioninfo.cpp
index 6719e6ed3b..5112ff11bf 100644
--- a/indra/newview/llfloaterregioninfo.cpp
+++ b/indra/newview/llfloaterregioninfo.cpp
@@ -184,6 +184,7 @@ public:
void refresh();
bool refreshFromRegion(LLViewerRegion* region);
+ void refreshFromEstate();
virtual BOOL postBuild();
@@ -191,6 +192,7 @@ protected:
virtual void doApply();
virtual void doEditCommited(LLSettingsDay::ptr_t &newday);
+ BOOL sendUpdate();
private:
LLViewerRegion * mLastRegion;
@@ -2388,8 +2390,6 @@ bool LLPanelEstateInfo::callbackChangeLindenEstate(const LLSD& notification, con
estate_info.setDenyAgeUnverified(getChild<LLUICtrl>("limit_age_verified")->getValue().asBoolean());
estate_info.setAllowVoiceChat(getChild<LLUICtrl>("voice_chat_check")->getValue().asBoolean());
estate_info.setAllowAccessOverride(getChild<LLUICtrl>("parcel_access_override")->getValue().asBoolean());
- // JIGGLYPUFF
- //estate_info.setAllowAccessOverride(getChild<LLUICtrl>("")->getValue().asBoolean());
// send the update to sim
estate_info.sendEstateInfo();
}
@@ -3370,6 +3370,9 @@ LLPanelRegionEnvironment::LLPanelRegionEnvironment():
LLPanelEnvironmentInfo(),
mLastRegion(NULL)
{
+ LLEstateInfoModel& estate_info = LLEstateInfoModel::instance();
+ estate_info.setCommitCallback(boost::bind(&LLPanelRegionEnvironment::refreshFromEstate, this));
+ estate_info.setUpdateCallback(boost::bind(&LLPanelRegionEnvironment::refreshFromEstate, this));
}
@@ -3385,6 +3388,7 @@ BOOL LLPanelRegionEnvironment::postBuild()
void LLPanelRegionEnvironment::refresh()
{
refreshFromRegion(mLastRegion);
+ refreshFromEstate();
}
bool LLPanelRegionEnvironment::refreshFromRegion(LLViewerRegion* region)
@@ -3403,9 +3407,6 @@ bool LLPanelRegionEnvironment::refreshFromRegion(LLViewerRegion* region)
mDayLengthSlider->setValue(daylength.value());
mDayOffsetSlider->setValue(dayoffset.value());
-
- //mRegionSettingsRadioGroup->setSelectedIndex(region->getIsDefaultDayCycle() ? 0 : 1);
- mRegionSettingsRadioGroup->setSelectedIndex(1);
setControlsEnabled(owner_or_god_or_manager);
mLastRegion = region;
@@ -3413,11 +3414,26 @@ bool LLPanelRegionEnvironment::refreshFromRegion(LLViewerRegion* region)
LLSettingsDay::ptr_t pday = LLEnvironment::instance().getEnvironmentDay(LLEnvironment::ENV_REGION);
if (pday)
- mEditingDayCycle = pday->buildClone();
+ {
+ mRegionSettingsRadioGroup->setSelectedIndex((pday->getAssetId() == LLSettingsDay::GetDefaultAssetId()) ? 0 : 1);
+ mEditingDayCycle = std::static_pointer_cast<LLSettingsDay>(pday->buildDerivedClone());
+ }
+ else
+ {
+ mRegionSettingsRadioGroup->setSelectedIndex(1);
+ }
return true;
}
+void LLPanelRegionEnvironment::refreshFromEstate()
+{
+ const LLEstateInfoModel& estate_info = LLEstateInfoModel::instance();
+
+ getChild<LLUICtrl>("allow_override_chk")->setValue(estate_info.getAllowEnvironmentOverride());
+
+}
+
void LLPanelRegionEnvironment::doApply()
{
if (mRegionSettingsRadioGroup->getSelectedIndex() == 0)
@@ -3447,3 +3463,23 @@ void LLPanelRegionEnvironment::doEditCommited(LLSettingsDay::ptr_t &newday)
{
mEditingDayCycle = newday;
}
+
+BOOL LLPanelRegionEnvironment::sendUpdate()
+{
+// LL_INFOS() << "LLPanelEsateInfo::sendUpdate()" << LL_ENDL;
+//
+// LLNotification::Params params("ChangeLindenEstate");
+// params.functor.function(boost::bind(&LLPanelEstateInfo::callbackChangeLindenEstate, this, _1, _2));
+//
+// if (isLindenEstate())
+// {
+// // trying to change reserved estate, warn
+// LLNotifications::instance().add(params);
+// }
+// else
+// {
+// // for normal estates, just make the change
+// LLNotifications::instance().forceResponse(params, 0);
+// }
+ return TRUE;
+}