diff options
author | prep <prep@lindenlab.com> | 2012-02-16 10:49:07 -0500 |
---|---|---|
committer | prep <prep@lindenlab.com> | 2012-02-16 10:49:07 -0500 |
commit | 70f8225a30c80d26ca349a8f63fa8f5189ae4f2b (patch) | |
tree | bbb75212a2f065c240990c5af91dfdf1c41bab8d /indra/newview/llfloaterpathfindingbasic.h | |
parent | 40f928fc6ac2a24f23afa2e12475534274a67069 (diff) | |
parent | f43939f6bc94230103b158519bf3049582d892f4 (diff) |
merge
Diffstat (limited to 'indra/newview/llfloaterpathfindingbasic.h')
-rw-r--r-- | indra/newview/llfloaterpathfindingbasic.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/indra/newview/llfloaterpathfindingbasic.h b/indra/newview/llfloaterpathfindingbasic.h index 888d06c521..cd51964339 100644 --- a/indra/newview/llfloaterpathfindingbasic.h +++ b/indra/newview/llfloaterpathfindingbasic.h @@ -32,6 +32,8 @@ #include "llhandle.h" class LLSD; +class LLTextBase; +class LLButton; class LLFloaterPathfindingBasic : public LLFloater @@ -39,8 +41,8 @@ class LLFloaterPathfindingBasic friend class LLFloaterReg; public: - virtual BOOL postBuild(); + virtual void onOpen(const LLSD& key); protected: @@ -52,6 +54,17 @@ private: void onUnfreezeClicked(); void onFreezeClicked(); + + std::string getCapabilityURL() const; + + void updateOnFrozenState(); + + LLTextBase *mRegionNotEnabledText; + LLTextBase *mUnfreezeLabel; + LLButton *mUnfreezeButton; + LLTextBase *mFreezeLabel; + LLButton *mFreezeButton; + bool mIsRegionFrozenXXX; // XXX stinson : Feb 15, 2012 : I think this will be unneeded with the service }; #endif // LL_LLFLOATERPATHFINDINGBASIC_H |