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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llpanelgroupnotices.h
  3.  * @brief A panel to display group notices.
  4.  *
  5.  * $LicenseInfo:firstyear=2006&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2006-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_LLPANELGROUPNOTICES_H
  33. #define LL_LLPANELGROUPNOTICES_H
  34. #include "llpanelgroup.h"
  35. #include "llpointer.h"
  36. #include "llinventory.h"
  37. class LLLineEditor;
  38. class LLTextEditor;
  39. class LLButton;
  40. class LLIconCtrl;
  41. class LLCheckBoxCtrl;
  42. class LLScrollListCtrl;
  43. class LLPanelGroupNotices : public LLPanelGroupTab
  44. {
  45. public:
  46. LLPanelGroupNotices();
  47. virtual ~LLPanelGroupNotices();
  48. // LLPanelGroupTab
  49. virtual void activate();
  50. //virtual bool needsApply(std::string& mesg);
  51. //virtual bool apply(std::string& mesg);
  52. //virtual void update();
  53. virtual BOOL postBuild();
  54. virtual BOOL isVisibleByAgent(LLAgent* agentp);
  55. void setItem(LLPointer<LLInventoryItem> inv_item);
  56. static void processGroupNoticesListReply(LLMessageSystem* msg, void** data);
  57. void showNotice(const std::string& subject,
  58. const std::string& message,
  59. const bool& has_inventory,
  60. const std::string& inventory_name,
  61. LLOfferInfo* inventory_offer);
  62. void refreshNotices();
  63. virtual void setGroupID(const LLUUID& id);
  64. private:
  65. static void onClickRemoveAttachment(void* data);
  66. static void onClickOpenAttachment(void* data);
  67. static void onClickSendMessage(void* data);
  68. static void onClickNewMessage(void* data);
  69. static void onClickRefreshNotices(void* data);
  70. void processNotices(LLMessageSystem* msg);
  71. static void onSelectNotice(LLUICtrl* ctrl, void* data);
  72. enum ENoticeView
  73. {
  74. VIEW_PAST_NOTICE,
  75. CREATE_NEW_NOTICE
  76. };
  77. void arrangeNoticeView(ENoticeView view_type);
  78. LLPointer<LLInventoryItem> mInventoryItem;
  79. LLLineEditor *mCreateSubject;
  80.     LLLineEditor *mCreateInventoryName;
  81. LLTextEditor *mCreateMessage;
  82. LLLineEditor *mViewSubject;
  83.     LLLineEditor *mViewInventoryName;
  84. LLTextEditor *mViewMessage;
  85. LLButton *mBtnSendMessage;
  86. LLButton *mBtnNewMessage;
  87. LLButton *mBtnRemoveAttachment;
  88. LLButton *mBtnOpenAttachment;
  89. LLButton *mBtnGetPastNotices;
  90. LLPanel *mPanelCreateNotice;
  91. LLPanel *mPanelViewNotice;
  92. LLIconCtrl  *mCreateInventoryIcon;
  93. LLIconCtrl  *mViewInventoryIcon;
  94. LLScrollListCtrl *mNoticesList;
  95. std::string mNoNoticesStr;
  96. LLOfferInfo* mInventoryOffer;
  97. static std::map<LLUUID,LLPanelGroupNotices*> sInstances;
  98. };
  99. #endif