diff options
author | Seth ProductEngine <slitovchuk@productengine.com> | 2012-09-10 20:12:27 +0300 |
---|---|---|
committer | Seth ProductEngine <slitovchuk@productengine.com> | 2012-09-10 20:12:27 +0300 |
commit | be06bebffcc1a08c3018ab3712048599455e025b (patch) | |
tree | 534921492c215067be5d93de1669f5b78343b2b6 /indra/newview/llconversationview.h | |
parent | d79037017e3a1627be848b9162f28ae16fcb6004 (diff) |
CHUI-282 WIP Modified conversation view item and IM floater container so that the folder view handles the positioning of items in conversations list.
Diffstat (limited to 'indra/newview/llconversationview.h')
-rw-r--r-- | indra/newview/llconversationview.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/indra/newview/llconversationview.h b/indra/newview/llconversationview.h index a3755d9722..ec99b2eb9b 100644 --- a/indra/newview/llconversationview.h +++ b/indra/newview/llconversationview.h @@ -29,6 +29,7 @@ #include "llfolderviewitem.h" +class LLTextBox; class LLIMFloaterContainer; class LLConversationViewSession; class LLConversationViewParticipant; @@ -53,11 +54,21 @@ protected: public: virtual ~LLConversationViewSession( void ) { } - virtual void selectItem(); + virtual void selectItem(); + + /*virtual*/ BOOL postBuild(); + /*virtual*/ void draw(); + + /*virtual*/ S32 arrange(S32* width, S32* height); + void setVisibleIfDetached(BOOL visible); LLConversationViewParticipant* findParticipant(const LLUUID& participant_id); virtual void refresh(); + +private: + LLPanel* mItemPanel; + LLTextBox* mSessionTitle; }; // Implementation of conversations list participant (avatar) widgets |