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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llchatbar.h
  3.  * @brief LLChatBar 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_LLCHATBAR_H
  33. #define LL_LLCHATBAR_H
  34. #include "llpanel.h"
  35. #include "llframetimer.h"
  36. #include "llchat.h"
  37. class LLLineEditor;
  38. class LLMessageSystem;
  39. class LLUICtrl;
  40. class LLUUID;
  41. class LLFrameTimer;
  42. class LLChatBarGestureObserver;
  43. class LLComboBox;
  44. class LLChatBar
  45. : public LLPanel
  46. {
  47. public:
  48. // constructor for inline chat-bars (e.g. hosted in chat history window)
  49. LLChatBar();
  50. ~LLChatBar();
  51. virtual BOOL postBuild();
  52. virtual BOOL handleKeyHere(KEY key, MASK mask);
  53. void refresh();
  54. void refreshGestures();
  55. // Move cursor into chat input field.
  56. void setKeyboardFocus(BOOL b);
  57. // Ignore arrow keys for chat bar
  58. void setIgnoreArrowKeys(BOOL b);
  59. BOOL inputEditorHasFocus();
  60. std::string getCurrentChat();
  61. // since chat bar logic is reused for chat history
  62. // gesture combo box might not be a direct child
  63. void setGestureCombo(LLComboBox* combo);
  64. // Send a chat (after stripping /20foo channel chats).
  65. // "Animate" means the nodding animation for regular text.
  66. void sendChatFromViewer(const LLWString &wtext, EChatType type, BOOL animate);
  67. void sendChatFromViewer(const std::string &utf8text, EChatType type, BOOL animate);
  68. // If input of the form "/20foo" or "/20 foo", returns "foo" and channel 20.
  69. // Otherwise returns input and channel 0.
  70. LLWString stripChannelNumber(const LLWString &mesg, S32* channel);
  71. // callbacks
  72. void onClickSay(LLUICtrl* ctrl);
  73. static void onTabClick( void* userdata );
  74. static void onInputEditorKeystroke(LLLineEditor* caller, void* userdata);
  75. static void onInputEditorFocusLost();
  76. static void onInputEditorGainFocus();
  77. void onCommitGesture(LLUICtrl* ctrl);
  78. static void startChat(const char* line);
  79. static void stopChat();
  80. protected:
  81. void sendChat(EChatType type);
  82. void updateChat();
  83. protected:
  84. LLLineEditor* mInputEditor;
  85. LLFrameTimer mGestureLabelTimer;
  86. // Which non-zero channel did we last chat on?
  87. S32 mLastSpecialChatChannel;
  88. BOOL mIsBuilt;
  89. LLComboBox* mGestureCombo;
  90. LLChatBarGestureObserver* mObserver;
  91. };
  92. extern LLChatBar *gChatBar;
  93. #endif