diff options
author | Seth ProductEngine <slitovchuk@productengine.com> | 2012-09-28 20:48:24 +0300 |
---|---|---|
committer | Seth ProductEngine <slitovchuk@productengine.com> | 2012-09-28 20:48:24 +0300 |
commit | d54eded93ba270402349f5f337bbe12339255ece (patch) | |
tree | 2b54bf634d259a09b076fc9e7854487d26814438 /indra/newview/llconversationview.h | |
parent | 14307b099bdb0e7c5b56d052a55e010ecd69b5c3 (diff) |
CHUI-357 FIXED moved conversation icon to prevent it being obscured when conversations list is minimized.
Added minimized mode for LLConversationViewSession: this mode is used to move the conversation icon within the item when the conversations panel is minimized.
Diffstat (limited to 'indra/newview/llconversationview.h')
-rwxr-xr-x | indra/newview/llconversationview.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llconversationview.h b/indra/newview/llconversationview.h index 064239eeb1..c81c70b456 100755 --- a/indra/newview/llconversationview.h +++ b/indra/newview/llconversationview.h @@ -67,6 +67,10 @@ public: /*virtual*/ S32 arrange(S32* width, S32* height); + /*virtual*/ void toggleOpen(); + + void toggleMinimizedMode(bool is_minimized); + void setVisibleIfDetached(BOOL visible); LLConversationViewParticipant* findParticipant(const LLUUID& participant_id); @@ -83,6 +87,8 @@ private: LLTextBox* mSessionTitle; LLOutputMonitorCtrl* mSpeakingIndicator; + bool mMinimizedMode; + LLVoiceClientStatusObserver* mVoiceClientObserver; boost::signals2::connection mActiveVoiceChannelConnection; |