summaryrefslogtreecommitdiff
path: root/indra/newview/llcallfloater.h
diff options
context:
space:
mode:
authorMike Antipov <mantipov@productengine.com>2009-11-25 14:52:39 +0200
committerMike Antipov <mantipov@productengine.com>2009-11-25 14:52:39 +0200
commit9d941cf1193eaaf333dd1c9427256786b1bc60c8 (patch)
tree48a307bca41f935bfda9e4e5e722395c99ac9de5 /indra/newview/llcallfloater.h
parentcdd9c57b2c9f02167e78322e5631822b0cd0521b (diff)
Work on major sub-task EXT-2790 (Complete Voice Control Panel (floater) started by Lynx (LLVoiceControlPanel))
-- Implemented speakers list for local chat. --HG-- branch : product-engine
Diffstat (limited to 'indra/newview/llcallfloater.h')
-rw-r--r--indra/newview/llcallfloater.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/newview/llcallfloater.h b/indra/newview/llcallfloater.h
index dde4085d00..3e672eec79 100644
--- a/indra/newview/llcallfloater.h
+++ b/indra/newview/llcallfloater.h
@@ -36,6 +36,10 @@
#include "llfloater.h"
+class LLAvatarList;
+class LLParticipantList;
+class LLSpeakerMgr;
+
/**
* The Voice Control Panel is an ambient window summoned by clicking the flyout chevron on the Speak button.
* It can be torn-off and freely positioned onscreen.
@@ -53,7 +57,13 @@ public:
LLCallFloater();
~LLCallFloater();
+ /*virtual*/ BOOL postBuild();
+
+private:
+ LLSpeakerMgr* mSpeakerManager;
+ LLParticipantList* mPaticipants;
+ LLAvatarList* mAvatarList;
};