diff options
author | Steve Bennetts <steve@lindenlab.com> | 2009-11-30 19:15:29 -0800 |
---|---|---|
committer | Steve Bennetts <steve@lindenlab.com> | 2009-11-30 19:15:29 -0800 |
commit | c760220b00e5a6dfc495623830365efab22384cf (patch) | |
tree | a07458551008f6c7208ede2c2742957417004fe7 /indra/newview/llcallfloater.h | |
parent | 948af3093c93461d11ab6a76a8aab7ea10e377c6 (diff) | |
parent | 7c0eac93e7444bc1896f8ed0ee26888ff54a33bf (diff) |
Merge from product-engine
Diffstat (limited to 'indra/newview/llcallfloater.h')
-rw-r--r-- | indra/newview/llcallfloater.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/indra/newview/llcallfloater.h b/indra/newview/llcallfloater.h index bfaa1075c4..8a440873ff 100644 --- a/indra/newview/llcallfloater.h +++ b/indra/newview/llcallfloater.h @@ -61,6 +61,14 @@ public: /*virtual*/ void onOpen(const LLSD& key); private: + typedef enum e_voice_controls_type + { + VC_LOCAL_CHAT, + VC_GROUP_CHAT, + VC_AD_HOC_CHAT, + VC_PEER_TO_PEER + }EVoiceControls; + /** * Updates mSpeakerManager and list according to current Voice Channel * @@ -74,11 +82,14 @@ private: */ void refreshPartisipantList(); void onCurrentChannelChanged(const LLUUID& session_id); + void updateTitle(); + void initAgentData(); private: LLSpeakerMgr* mSpeakerManager; LLParticipantList* mPaticipants; LLAvatarList* mAvatarList; + EVoiceControls mVoiceType; }; |