diff options
author | Jake Simpson <jake@lindenlab.com> | 2007-06-29 01:24:26 +0000 |
---|---|---|
committer | Jake Simpson <jake@lindenlab.com> | 2007-06-29 01:24:26 +0000 |
commit | e3989d38486c4aaf4701d6239875ea4996d0963b (patch) | |
tree | 1ca0e7469ec20571aef3af85ae6622cd761a9ca4 /indra/newview/llstatusbar.h | |
parent | 010d40245600684fba056339f34dbdff0aa9a02d (diff) |
Changes to make Logitech code more LL Code Standards compliant, plus remove all the SDK code and instead just used headers and an included lib that we build ourselves from the Trunk directory.
Diffstat (limited to 'indra/newview/llstatusbar.h')
-rw-r--r-- | indra/newview/llstatusbar.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/indra/newview/llstatusbar.h b/indra/newview/llstatusbar.h index c44c7acffe..f33a5d93e1 100644 --- a/indra/newview/llstatusbar.h +++ b/indra/newview/llstatusbar.h @@ -24,6 +24,25 @@ class LLUUID; class LLFrameTimer; class LLStatGraph; +// used by LCD screen +class cLLRegionDetails +{ +public: + LLString mRegionName; + char *mParcelName; + char *mAccesString; + S32 mX; + S32 mY; + S32 mZ; + S32 mArea; + BOOL mForSale; + char mOwner[MAX_STRING]; + F32 mTraffic; + S32 mBalance; + LLString mTime; + U32 mPing; +}; + class LLStatusBar : public LLPanel { @@ -60,6 +79,7 @@ public: S32 getSquareMetersCredit() const; S32 getSquareMetersCommitted() const; S32 getSquareMetersLeft() const; + cLLRegionDetails mRegionDetails; protected: static void onClickParcelInfo(void*); |