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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llimfloater.h
  3.  * @brief LLIMFloater class definition
  4.  *
  5.  * $LicenseInfo:firstyear=2009&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2009-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_IMFLOATER_H
  33. #define LL_IMFLOATER_H
  34. #include "llinstantmessage.h"
  35. #include "lllogchat.h"
  36. #include "lltooldraganddrop.h"
  37. #include "lltransientdockablefloater.h"
  38. class LLLineEditor;
  39. class LLPanelChatControlPanel;
  40. class LLChatHistory;
  41. class LLInventoryItem;
  42. class LLInventoryCategory;
  43. /**
  44.  * Individual IM window that appears at the bottom of the screen,
  45.  * optionally "docked" to the bottom tray.
  46.  */
  47. class LLIMFloater : public LLTransientDockableFloater
  48. {
  49. public:
  50. LLIMFloater(const LLUUID& session_id);
  51. virtual ~LLIMFloater();
  52. // LLView overrides
  53. /*virtual*/ BOOL postBuild();
  54. /*virtual*/ void setVisible(BOOL visible);
  55. /*virtual*/ BOOL getVisible();
  56. // Check typing timeout timer.
  57. /*virtual*/ void draw();
  58. // LLFloater overrides
  59. /*virtual*/ void onClose(bool app_quitting);
  60. /*virtual*/ void setDocked(bool docked, bool pop_on_undock = true);
  61. // Make IM conversion visible and update the message history
  62. static LLIMFloater* show(const LLUUID& session_id);
  63. // Toggle panel specified by session_id
  64. // Returns true iff panel became visible
  65. static bool toggle(const LLUUID& session_id);
  66. static LLIMFloater* findInstance(const LLUUID& session_id);
  67. static LLIMFloater* getInstance(const LLUUID& session_id);
  68. void sessionInitReplyReceived(const LLUUID& im_session_id);
  69. // get new messages from LLIMModel
  70. void updateMessages();
  71. void reloadMessages();
  72. static void onSendMsg( LLUICtrl*, void*);
  73. void sendMsg();
  74. // callback for LLIMModel on new messages
  75. // route to specific floater if it is visible
  76. static void newIMCallback(const LLSD& data);
  77. // called when docked floater's position has been set by chiclet
  78. void setPositioned(bool b) { mPositioned = b; };
  79. void onVisibilityChange(const LLSD& new_visibility);
  80. void processIMTyping(const LLIMInfo* im_info, BOOL typing);
  81. void processAgentListUpdates(const LLSD& body);
  82. void processSessionUpdate(const LLSD& session_update);
  83. void updateChatHistoryStyle();
  84. static void processChatHistoryStyleUpdate(const LLSD& newvalue);
  85. BOOL handleDragAndDrop(S32 x, S32 y, MASK mask,
  86.    BOOL drop, EDragAndDropType cargo_type,
  87.    void *cargo_data, EAcceptance *accept,
  88.    std::string& tooltip_msg);
  89. /**
  90.  * Returns true if chat is displayed in multi tabbed floater
  91.  *         false if chat is displayed in multiple windows
  92.  */
  93. static bool isChatMultiTab();
  94. static void initIMFloater();
  95. //used as a callback on receiving new IM message
  96. static void sRemoveTypingIndicator(const LLSD& data);
  97. static void onIMChicletCreated(const LLUUID& session_id);
  98. virtual LLTransientFloaterMgr::ETransientGroup getGroup() { return LLTransientFloaterMgr::IM; }
  99. private:
  100. // process focus events to set a currently active session
  101. /* virtual */ void onFocusLost();
  102. /* virtual */ void onFocusReceived();
  103. BOOL dropCallingCard(LLInventoryItem* item, BOOL drop);
  104. BOOL dropCategory(LLInventoryCategory* category, BOOL drop);
  105. BOOL isInviteAllowed() const;
  106. BOOL inviteToSession(const std::vector<LLUUID>& agent_ids);
  107. static void onInputEditorFocusReceived( LLFocusableElement* caller, void* userdata );
  108. static void onInputEditorFocusLost(LLFocusableElement* caller, void* userdata);
  109. static void onInputEditorKeystroke(LLLineEditor* caller, void* userdata);
  110. void setTyping(bool typing);
  111. void onSlide();
  112. static void* createPanelIMControl(void* userdata);
  113. static void* createPanelGroupControl(void* userdata);
  114. static void*  createPanelAdHocControl(void* userdata);
  115. // gets a rect that bounds possible positions for the LLIMFloater on a screen (EXT-1111)
  116. void getAllowedRect(LLRect& rect);
  117. // Add the "User is typing..." indicator.
  118. void addTypingIndicator(const LLIMInfo* im_info);
  119. // Remove the "User is typing..." indicator.
  120. void removeTypingIndicator(const LLIMInfo* im_info = NULL);
  121. LLPanelChatControlPanel* mControlPanel;
  122. LLUUID mSessionID;
  123. S32 mLastMessageIndex;
  124. EInstantMessage mDialog;
  125. LLUUID mOtherParticipantUUID;
  126. LLChatHistory* mChatHistory;
  127. LLLineEditor* mInputEditor;
  128. bool mPositioned;
  129. std::string mSavedTitle;
  130. LLUIString mTypingStart;
  131. bool mMeTyping;
  132. bool mOtherTyping;
  133. bool mShouldSendTypingState;
  134. LLFrameTimer mTypingTimer;
  135. LLFrameTimer mTypingTimeoutTimer;
  136. bool mSessionInitialized;
  137. LLSD mQueuedMsgsForInit;
  138. };
  139. #endif  // LL_IMFLOATER_H