diff options
author | Rider Linden <rider@lindenlab.com> | 2019-01-07 10:24:55 -0800 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2019-01-07 10:24:55 -0800 |
commit | 1badfb0e96959725fbe2895994607a088f4a808b (patch) | |
tree | 03d8169b2e0762a5e1447c49bcb3165cd9d3130e /indra/newview/llpanelenvironment.h | |
parent | 64e45b5b6ef8ded7bbea1b376e5bf2cbb0d6f5a4 (diff) |
SL-9883: Hide controls and display message if parcel < 128m
Diffstat (limited to 'indra/newview/llpanelenvironment.h')
-rw-r--r-- | indra/newview/llpanelenvironment.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/newview/llpanelenvironment.h b/indra/newview/llpanelenvironment.h index 6690386b92..dd3a309780 100644 --- a/indra/newview/llpanelenvironment.h +++ b/indra/newview/llpanelenvironment.h @@ -89,6 +89,9 @@ protected: static const std::string STR_CROSS_REGION; static const std::string STR_LEGACY; static const std::string STR_DISALLOWED; + static const std::string STR_TOO_SMALL; + + static const S32 MINIMUM_PARCEL_SIZE; static const U32 DIRTY_FLAG_DAYCYCLE; static const U32 DIRTY_FLAG_DAYLENGTH; @@ -98,7 +101,6 @@ protected: static const U32 DIRTY_FLAG_MASK; bool setControlsEnabled(bool enabled); - void setApplyProgress(bool started); void setDirtyFlag(U32 flag); void clearDirtyFlag(U32 flag); bool getIsDirty() const { return (mDirtyFlag != 0); } @@ -126,7 +128,7 @@ protected: void onEnvironmentReceived(S32 parcel_id, LLEnvironment::EnvironmentInfo::ptr_t envifo); static void _onEnvironmentReceived(LLHandle<LLPanel> that_h, S32 parcel_id, LLEnvironment::EnvironmentInfo::ptr_t envifo); - + virtual bool isLargeEnough() = 0; virtual void refreshFromSource() = 0; std::string getInventoryNameForAssetId(LLUUID asset_id); |