diff options
author | Andrew Dyukov <adyukov@productengine.com> | 2009-10-26 19:30:46 +0200 |
---|---|---|
committer | Andrew Dyukov <adyukov@productengine.com> | 2009-10-26 19:30:46 +0200 |
commit | ff37134a405e81899b4d9e7d07be7e3da85c8278 (patch) | |
tree | cf95274815881c1fb85b08f18f72ec7bff5a7f85 /indra/newview/llavatarlist.h | |
parent | cc7d1c8f69880d649a9e652f74b9b5048420d669 (diff) |
Implemented low task EXT-1156(Implement option to show/hide avatar icon in the friend list)
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llavatarlist.h')
-rw-r--r-- | indra/newview/llavatarlist.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llavatarlist.h b/indra/newview/llavatarlist.h index a83a72b26c..f60f1f00f3 100644 --- a/indra/newview/llavatarlist.h +++ b/indra/newview/llavatarlist.h @@ -70,7 +70,11 @@ public: void setContextMenu(LLAvatarListItem::ContextMenu* menu) { mContextMenu = menu; } + void toggleIcons(); void sortByName(); + void setShowIcons(std::string param_name); + bool getIconsVisible() const { return mShowIcons; } + const std::string getIconParamName() const{return mIconParamName;} virtual BOOL handleRightMouseDown(S32 x, S32 y, MASK mask); protected: @@ -86,7 +90,9 @@ private: bool mIgnoreOnlineStatus; bool mDirty; + bool mShowIcons; + std::string mIconParamName; std::string mNameFilter; uuid_vector_t mIDs; |