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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llnearbychatbar.h
  3.  * @brief LLNearbyChatBar class definition
  4.  *
  5.  * $LicenseInfo:firstyear=2002&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2002-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_LLNEARBYCHATBAR_H
  33. #define LL_LLNEARBYCHATBAR_H
  34. #include "llpanel.h"
  35. #include "llcombobox.h"
  36. #include "llgesturemgr.h"
  37. #include "llchat.h"
  38. #include "llvoiceclient.h"
  39. #include "lloutputmonitorctrl.h"
  40. #include "llspeakers.h"
  41. class LLGestureComboList
  42. : public LLGestureManagerObserver
  43. , public LLUICtrl
  44. {
  45. public:
  46. struct Params : public LLInitParam::Block<Params, LLUICtrl::Params>
  47. {
  48. Optional<LLButton::Params> combo_button;
  49. Optional<LLScrollListCtrl::Params> combo_list;
  50. Params();
  51. };
  52. protected:
  53. friend class LLUICtrlFactory;
  54. LLGestureComboList(const Params&);
  55. std::vector<LLMultiGesture*> mGestures;
  56. std::string mLabel;
  57. LLSD::Integer mViewAllItemIndex;
  58. public:
  59. ~LLGestureComboList();
  60. LLCtrlListInterface* getListInterface() { return (LLCtrlListInterface*)mList; };
  61. virtual void showList();
  62. virtual void hideList();
  63. virtual BOOL handleKey(KEY key, MASK mask, BOOL called_from_parent);
  64. S32 getCurrentIndex() const;
  65. void onItemSelected(const LLSD& data);
  66. void sortByName(bool ascending = true);
  67. void refreshGestures();
  68. void onCommitGesture();
  69. void onButtonCommit();
  70. virtual LLSD getValue() const;
  71. // LLGestureManagerObserver trigger
  72. virtual void changed() { refreshGestures(); }
  73. private:
  74. LLButton* mButton;
  75. LLScrollListCtrl* mList;
  76. S32                 mLastSelectedIndex;
  77. };
  78. class LLNearbyChatBar
  79. : public LLPanel
  80. {
  81. public:
  82. // constructor for inline chat-bars (e.g. hosted in chat history window)
  83. LLNearbyChatBar();
  84. ~LLNearbyChatBar() {}
  85. virtual BOOL postBuild();
  86. static LLNearbyChatBar* getInstance();
  87. static bool instanceExists();
  88. LLLineEditor* getChatBox() { return mChatBox; }
  89. virtual void draw();
  90. std::string getCurrentChat();
  91. virtual BOOL handleKeyHere( KEY key, MASK mask );
  92. static void startChat(const char* line);
  93. static void stopChat();
  94. static void sendChatFromViewer(const std::string &utf8text, EChatType type, BOOL animate);
  95. static void sendChatFromViewer(const LLWString &wtext, EChatType type, BOOL animate);
  96. S32 getMinWidth() const;
  97. S32 getMaxWidth() const;
  98. protected:
  99. static BOOL matchChatTypeTrigger(const std::string& in_str, std::string* out_str);
  100. static void onChatBoxKeystroke(LLLineEditor* caller, void* userdata);
  101. static void onChatBoxFocusLost(LLFocusableElement* caller, void* userdata);
  102. void sendChat( EChatType type );
  103. void onChatBoxCommit();
  104. static LLWString stripChannelNumber(const LLWString &mesg, S32* channel);
  105. EChatType processChatTypeTriggers(EChatType type, std::string &str);
  106. void displaySpeakingIndicator();
  107. // Which non-zero channel did we last chat on?
  108. static S32 sLastSpecialChatChannel;
  109. LLLineEditor* mChatBox;
  110. LLOutputMonitorCtrl* mOutputMonitor;
  111. LLLocalSpeakerMgr*  mSpeakerMgr;
  112. };
  113. #endif