llfloateractivespeakers.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:5k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llfloateractivespeakers.h
  3.  * @brief Management interface for muting and controlling volume of residents currently speaking
  4.  *
  5.  * $LicenseInfo:firstyear=2005&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2005-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_LLFLOATERACTIVESPEAKERS_H
  33. #define LL_LLFLOATERACTIVESPEAKERS_H
  34. #include "llfloater.h"
  35. #include "llpanel.h"
  36. #include "llscrolllistctrl.h"
  37. #include "llspeakers.h"
  38. #include "llvoiceclient.h"
  39. class LLPanelActiveSpeakers;
  40. class LLFloaterActiveSpeakers : 
  41. public LLFloater, 
  42. public LLVoiceClientParticipantObserver
  43. {
  44. friend class LLFloaterReg;
  45. public:
  46. /*virtual*/ BOOL postBuild();
  47. /*virtual*/ void draw();
  48. /*virtual*/ void onChange();
  49. static void* createSpeakersPanel(void* data);
  50. private:
  51. LLFloaterActiveSpeakers(const LLSD& seed);
  52. virtual ~LLFloaterActiveSpeakers();
  53. protected:
  54. LLPanelActiveSpeakers* mPanel;
  55. };
  56. class LLPanelActiveSpeakers : public LLPanel
  57. {
  58. public:
  59. LLPanelActiveSpeakers(LLSpeakerMgr* data_source, BOOL show_text_chatters);
  60. /*virtual*/ BOOL postBuild();
  61. void handleSpeakerSelect(const LLSD& data = LLSD());
  62. void refreshSpeakers();
  63. void setSpeaker(const LLUUID& id, 
  64. const std::string& name = LLStringUtil::null, 
  65. LLSpeaker::ESpeakerStatus status = LLSpeaker::STATUS_TEXT_ONLY, 
  66. LLSpeaker::ESpeakerType = LLSpeaker::SPEAKER_AGENT);
  67. void setVoiceModerationCtrlMode(const BOOL& moderated_voice);
  68. void onClickMuteVoiceCommit(const LLSD& data);
  69. void onClickMuteTextCommit(const LLSD& data);
  70. void onVolumeChange(const LLSD& data);
  71. static void onClickProfile(void* user_data);
  72. static void onDoubleClickSpeaker(void* user_data);
  73. void onSortChanged();
  74. void onModeratorMuteVoice(LLUICtrl* ctrl);
  75. void onModeratorMuteText(LLUICtrl* ctrl);
  76. void onChangeModerationMode(LLUICtrl* ctrl);
  77. protected:
  78. class SpeakerMuteListener : public LLOldEvents::LLSimpleListener
  79. {
  80. public:
  81. SpeakerMuteListener(LLPanelActiveSpeakers* panel) : mPanel(panel) {}
  82. /*virtual*/ bool handleEvent(LLPointer<LLOldEvents::LLEvent> event, const LLSD& userdata);
  83. LLPanelActiveSpeakers* mPanel;
  84. };
  85. friend class SpeakerAddListener;
  86. class SpeakerAddListener : public LLOldEvents::LLSimpleListener
  87. {
  88. public:
  89. SpeakerAddListener(LLPanelActiveSpeakers* panel) : mPanel(panel) {}
  90. /*virtual*/ bool handleEvent(LLPointer<LLOldEvents::LLEvent> event, const LLSD& userdata);
  91. LLPanelActiveSpeakers* mPanel;
  92. };
  93. friend class SpeakerRemoveListener;
  94. class SpeakerRemoveListener : public LLOldEvents::LLSimpleListener
  95. {
  96. public:
  97. SpeakerRemoveListener(LLPanelActiveSpeakers* panel) : mPanel(panel) {}
  98. /*virtual*/ bool handleEvent(LLPointer<LLOldEvents::LLEvent> event, const LLSD& userdata);
  99. LLPanelActiveSpeakers* mPanel;
  100. };
  101. friend class SpeakerClearListener;
  102. class SpeakerClearListener : public LLOldEvents::LLSimpleListener
  103. {
  104. public:
  105. SpeakerClearListener(LLPanelActiveSpeakers* panel) : mPanel(panel) {}
  106. /*virtual*/ bool handleEvent(LLPointer<LLOldEvents::LLEvent> event, const LLSD& userdata);
  107. LLPanelActiveSpeakers* mPanel;
  108. };
  109. void addSpeaker(const LLUUID& id);
  110. void removeSpeaker(const LLUUID& id);
  111. LLScrollListCtrl* mSpeakerList;
  112. LLUICtrl* mMuteVoiceCtrl;
  113. LLUICtrl* mMuteTextCtrl;
  114. LLTextBox* mNameText;
  115. LLButton* mProfileBtn;
  116. BOOL mShowTextChatters;
  117. LLSpeakerMgr* mSpeakerMgr;
  118. LLFrameTimer mIconAnimationTimer;
  119. LLPointer<SpeakerMuteListener> mSpeakerMuteListener;
  120. LLPointer<SpeakerAddListener> mSpeakerAddListener;
  121. LLPointer<SpeakerRemoveListener> mSpeakerRemoveListener;
  122. LLPointer<SpeakerClearListener> mSpeakerClearListener;
  123. };
  124. #endif // LL_LLFLOATERACTIVESPEAKERS_H