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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llchathistory.h
  3.  * @brief LLTextEditor base class
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-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 LLCHATHISTORY_H_
  33. #define LLCHATHISTORY_H_
  34. #include "lltexteditor.h"
  35. #include "lltextbox.h"
  36. #include "llviewerchat.h"
  37. //Chat log widget allowing addition of a message as a widget 
  38. class LLChatHistory : public LLUICtrl
  39. {
  40. public:
  41. struct Params : public LLInitParam::Block<Params, LLTextEditor::Params>
  42. {
  43. //Message header filename
  44. Optional<std::string> message_header;
  45. //Message separator filename
  46. Optional<std::string> message_separator;
  47. //Text left padding from the scroll rect
  48. Optional<S32> left_text_pad;
  49. //Text right padding from the scroll rect
  50. Optional<S32> right_text_pad;
  51. //Widget left padding from the scroll rect
  52. Optional<S32> left_widget_pad;
  53. //Widget right padding from the scroll rect
  54. Optional<S32> right_widget_pad;
  55. //Separator top padding
  56. Optional<S32> top_separator_pad;
  57. //Separator bottom padding
  58. Optional<S32> bottom_separator_pad;
  59. //Header top padding
  60. Optional<S32> top_header_pad;
  61. //Header bottom padding
  62. Optional<S32> bottom_header_pad;
  63. Optional<LLTextBox::Params> more_chat_text;
  64. Params()
  65. : message_header("message_header"),
  66. message_separator("message_separator"),
  67. left_text_pad("left_text_pad"),
  68. right_text_pad("right_text_pad"),
  69. left_widget_pad("left_widget_pad"),
  70. right_widget_pad("right_widget_pad"),
  71. top_separator_pad("top_separator_pad"),
  72. bottom_separator_pad("bottom_separator_pad"),
  73. top_header_pad("top_header_pad"),
  74. bottom_header_pad("bottom_header_pad"),
  75. more_chat_text("more_chat_text")
  76. {}
  77. };
  78. protected:
  79. LLChatHistory(const Params&);
  80. friend class LLUICtrlFactory;
  81. /*virtual*/ void draw();
  82. /**
  83.  * Redefinition of LLTextEditor::updateTextRect() to considerate text
  84.  * left/right padding params.
  85.  */
  86. //virtual void updateTextRect();
  87. /**
  88.  * Builds a message separator.
  89.  * @return pointer to LLView separator object.
  90.  */
  91. LLView* getSeparator();
  92. /**
  93.  * Builds a message header.
  94.  * @return pointer to LLView header object.
  95.  */
  96. LLView* getHeader(const LLChat& chat,const LLStyle::Params& style_params);
  97. void onClickMoreText();
  98. public:
  99. ~LLChatHistory();
  100. void initFromParams(const Params&);
  101. /**
  102.  * Appends a widget message.
  103.  * If last user appended message, concurs with current user,
  104.  * separator is added before the message, otherwise header is added.
  105.  * The args LLSD contains:
  106.  * - use_plain_text_chat_history (bool) - whether to add message as plain text.
  107.  * - owner_id (LLUUID) - the owner ID for object chat
  108.  * @param chat - base chat message.
  109.  * @param args - additional arguments
  110.  * @param input_append_params - font style.
  111.  */
  112. void appendMessage(const LLChat& chat, const LLSD &args = LLSD(), const LLStyle::Params& input_append_params = LLStyle::Params());
  113. /*virtual*/ void clear();
  114. /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE);
  115. private:
  116. std::string mLastFromName;
  117. LLUUID mLastFromID;
  118. LLDate mLastMessageTime;
  119. std::string mLastMessageTimeStr;
  120. std::string mMessageHeaderFilename;
  121. std::string mMessageSeparatorFilename;
  122. S32 mLeftTextPad;
  123. S32 mRightTextPad;
  124. S32 mLeftWidgetPad;
  125. S32 mRightWidgetPad;
  126. S32 mTopSeparatorPad;
  127. S32 mBottomSeparatorPad;
  128. S32 mTopHeaderPad;
  129. S32 mBottomHeaderPad;
  130. LLPanel* mMoreChatPanel;
  131. LLTextBox* mMoreChatText;
  132. LLTextEditor* mEditor;
  133. typedef std::set<std::string> unread_chat_source_t;
  134. unread_chat_source_t mUnreadChatSources;
  135. };
  136. #endif /* LLCHATHISTORY_H_ */