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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llsyswellwindow.h
  3.  * @brief                                    // TODO
  4.  *
  5.  * $LicenseInfo:firstyear=2003&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2003-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_LLSYSWELLWINDOW_H
  33. #define LL_LLSYSWELLWINDOW_H
  34. #include "llsyswellitem.h"
  35. #include "lltransientdockablefloater.h"
  36. #include "llbutton.h"
  37. #include "llscreenchannel.h"
  38. #include "llscrollcontainer.h"
  39. #include "llimview.h"
  40. #include "boost/shared_ptr.hpp"
  41. class LLFlatListView;
  42. class LLChiclet;
  43. class LLIMChiclet;
  44. class LLScriptChiclet;
  45. class LLSysWellChiclet;
  46. class LLSysWellWindow : public LLTransientDockableFloater
  47. {
  48. public:
  49.     LLSysWellWindow(const LLSD& key);
  50.     ~LLSysWellWindow();
  51. BOOL postBuild();
  52. // other interface functions
  53. // check is window empty
  54. bool isWindowEmpty();
  55. // Operating with items
  56. void removeItemByID(const LLUUID& id);
  57. // Operating with outfit
  58. virtual void setVisible(BOOL visible);
  59. void adjustWindowPosition();
  60. /*virtual*/ void setDocked(bool docked, bool pop_on_undock = true);
  61. // override LLFloater's minimization according to EXT-1216
  62. /*virtual*/ void setMinimized(BOOL minimize);
  63. void onStartUpToastClick(S32 x, S32 y, MASK mask);
  64. void setSysWellChiclet(LLSysWellChiclet* chiclet);
  65. // size constants for the window and for its elements
  66. static const S32 MAX_WINDOW_HEIGHT = 200;
  67. static const S32 MIN_WINDOW_WIDTH = 318;
  68. protected:
  69. typedef enum{
  70. IT_NOTIFICATION,
  71. IT_INSTANT_MESSAGE
  72. }EItemType; 
  73. // gets a rect that bounds possible positions for the SysWellWindow on a screen (EXT-1111)
  74. void getAllowedRect(LLRect& rect);
  75. // init Window's channel
  76. virtual void initChannel();
  77. void handleItemAdded(EItemType added_item_type);
  78. void handleItemRemoved(EItemType removed_item_type);
  79. bool anotherTypeExists(EItemType item_type) ;
  80. const std::string NOTIFICATION_WELL_ANCHOR_NAME;
  81. const std::string IM_WELL_ANCHOR_NAME;
  82. virtual const std::string& getAnchorViewName() = 0;
  83. void reshapeWindow();
  84. void releaseNewMessagesState();
  85. // pointer to a corresponding channel's instance
  86. LLNotificationsUI::LLScreenChannel* mChannel;
  87. LLFlatListView* mMessageList;
  88. /**
  89.  * Reference to an appropriate Well chiclet to release "new message" state. EXT-3147
  90.  */
  91. LLSysWellChiclet* mSysWellChiclet;
  92. /**
  93.  * Special panel which is used as separator of Notifications & IM Rows.
  94.  * It is always presents in the list and shown when it is necessary.
  95.  * It should be taken into account when reshaping and checking list size
  96.  */
  97. LLPanel* mSeparator;
  98. typedef std::map<EItemType, S32> typed_items_count_t;
  99. typed_items_count_t mTypedItemsCount;
  100. };
  101. /**
  102.  * Class intended to manage incoming notifications.
  103.  * 
  104.  * It contains a list of notifications that have not been responded to.
  105.  */
  106. class LLNotificationWellWindow : public LLSysWellWindow
  107. {
  108. public:
  109. LLNotificationWellWindow(const LLSD& key);
  110. static LLNotificationWellWindow* getInstance(const LLSD& key = LLSD());
  111. /*virtual*/ BOOL postBuild();
  112. /*virtual*/ void setVisible(BOOL visible);
  113. // Operating with items
  114. void addItem(LLSysWellItem::Params p);
  115. // Closes all notifications and removes them from the Notification Well
  116. void closeAll();
  117. protected:
  118. /*virtual*/ const std::string& getAnchorViewName() { return NOTIFICATION_WELL_ANCHOR_NAME; }
  119. private:
  120. // init Window's channel
  121. void initChannel();
  122. void clearScreenChannels();
  123. void onStoreToast(LLPanel* info_panel, LLUUID id);
  124. // connect counter and list updaters to the corresponding signals
  125. void connectListUpdaterToSignal(std::string notification_type);
  126. // Handlers
  127. void onItemClick(LLSysWellItem* item);
  128. void onItemClose(LLSysWellItem* item);
  129. // ID of a toast loaded by user (by clicking notification well item)
  130. LLUUID mLoadedToastId;
  131. };
  132. /**
  133.  * Class intended to manage incoming messages in IM chats.
  134.  * 
  135.  * It contains a list list of all active IM sessions.
  136.  */
  137. class LLIMWellWindow : public LLSysWellWindow, LLIMSessionObserver, LLInitClass<LLIMWellWindow>
  138. {
  139. public:
  140. LLIMWellWindow(const LLSD& key);
  141. ~LLIMWellWindow();
  142. static LLIMWellWindow* getInstance(const LLSD& key = LLSD());
  143. static void initClass() { getInstance(); }
  144. /*virtual*/ BOOL postBuild();
  145. // LLIMSessionObserver observe triggers
  146. /*virtual*/ void sessionAdded(const LLUUID& session_id, const std::string& name, const LLUUID& other_participant_id);
  147. /*virtual*/ void sessionRemoved(const LLUUID& session_id);
  148. /*virtual*/ void sessionIDUpdated(const LLUUID& old_session_id, const LLUUID& new_session_id);
  149. void addObjectRow(const LLUUID& notification_id, bool new_message = false);
  150. void removeObjectRow(const LLUUID& notification_id);
  151. void addIMRow(const LLUUID& session_id);
  152. bool hasIMRow(const LLUUID& session_id);
  153. void closeAll();
  154. protected:
  155. /*virtual*/ const std::string& getAnchorViewName() { return IM_WELL_ANCHOR_NAME; }
  156. private:
  157. LLChiclet * findIMChiclet(const LLUUID& sessionId);
  158. LLChiclet* findObjectChiclet(const LLUUID& notification_id);
  159. void addIMRow(const LLUUID& sessionId, S32 chicletCounter, const std::string& name, const LLUUID& otherParticipantId);
  160. void delIMRow(const LLUUID& sessionId);
  161. bool confirmCloseAll(const LLSD& notification, const LLSD& response);
  162. void closeAllImpl();
  163. /**
  164.  * Scrolling row panel.
  165.  */
  166. class RowPanel: public LLPanel
  167. {
  168. public:
  169. RowPanel(const LLSysWellWindow* parent, const LLUUID& sessionId, S32 chicletCounter,
  170. const std::string& name, const LLUUID& otherParticipantId);
  171. virtual ~RowPanel();
  172. void onMouseEnter(S32 x, S32 y, MASK mask);
  173. void onMouseLeave(S32 x, S32 y, MASK mask);
  174. BOOL handleMouseDown(S32 x, S32 y, MASK mask);
  175. BOOL handleRightMouseDown(S32 x, S32 y, MASK mask);
  176. private:
  177. static const S32 CHICLET_HPAD = 10;
  178. void onChicletSizeChanged(LLChiclet* ctrl, const LLSD& param);
  179. void onClosePanel();
  180. public:
  181. LLIMChiclet* mChiclet;
  182. private:
  183. LLButton* mCloseBtn;
  184. const LLSysWellWindow* mParent;
  185. };
  186. class ObjectRowPanel: public LLPanel
  187. {
  188. public:
  189. ObjectRowPanel(const LLUUID& notification_id, bool new_message = false);
  190. virtual ~ObjectRowPanel();
  191. /*virtual*/ void onMouseEnter(S32 x, S32 y, MASK mask);
  192. /*virtual*/ void onMouseLeave(S32 x, S32 y, MASK mask);
  193. /*virtual*/ BOOL handleMouseDown(S32 x, S32 y, MASK mask);
  194. /*virtual*/ BOOL handleRightMouseDown(S32 x, S32 y, MASK mask);
  195. private:
  196. void onClosePanel();
  197. void initChiclet(const LLUUID& notification_id, bool new_message = false);
  198. public:
  199. LLIMChiclet* mChiclet;
  200. private:
  201. LLButton* mCloseBtn;
  202. };
  203. };
  204. #endif // LL_LLSYSWELLWINDOW_H