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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llpanelgroupgeneral.h
  3.  * @brief General information about a group.
  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_LLPANELGROUPGENERAL_H
  33. #define LL_LLPANELGROUPGENERAL_H
  34. #include "llpanelgroup.h"
  35. class LLLineEditor;
  36. class LLTextBox;
  37. class LLTextureCtrl;
  38. class LLTextEditor;
  39. class LLButton;
  40. class LLNameListCtrl;
  41. class LLCheckBoxCtrl;
  42. class LLComboBox;
  43. class LLNameBox;
  44. class LLSpinCtrl;
  45. class LLPanelGroupGeneral : public LLPanelGroupTab
  46. {
  47. public:
  48. LLPanelGroupGeneral();
  49. virtual ~LLPanelGroupGeneral();
  50. // LLPanelGroupTab
  51. virtual void activate();
  52. virtual bool needsApply(std::string& mesg);
  53. virtual bool apply(std::string& mesg);
  54. virtual void cancel();
  55. bool createGroupCallback(const LLSD& notification, const LLSD& response);
  56. virtual void update(LLGroupChange gc);
  57. virtual BOOL postBuild();
  58. virtual void draw();
  59. virtual void setGroupID(const LLUUID& id);
  60. virtual void setupCtrls (LLPanel* parent);
  61. private:
  62. void reset();
  63. void resetDirty();
  64. static void onFocusEdit(LLFocusableElement* ctrl, void* data);
  65. static void onCommitAny(LLUICtrl* ctrl, void* data);
  66. static void onCommitUserOnly(LLUICtrl* ctrl, void* data);
  67. static void onCommitTitle(LLUICtrl* ctrl, void* data);
  68. static void onCommitEnrollment(LLUICtrl* ctrl, void* data);
  69. static void onClickInfo(void* userdata);
  70. static void onReceiveNotices(LLUICtrl* ctrl, void* data);
  71. static void openProfile(void* data);
  72.     static bool joinDlgCB(const LLSD& notification, const LLSD& response);
  73. void updateMembers();
  74. void updateChanged();
  75. bool confirmMatureApply(const LLSD& notification, const LLSD& response);
  76. BOOL mPendingMemberUpdate;
  77. BOOL mChanged;
  78. BOOL mFirstUse;
  79. std::string mIncompleteMemberDataStr;
  80. LLUUID mDefaultIconID;
  81. // Group information (include any updates in updateChanged)
  82. LLLineEditor *mGroupNameEditor;
  83. LLNameBox *mFounderName;
  84. LLTextureCtrl *mInsignia;
  85. LLTextEditor *mEditCharter;
  86. LLNameListCtrl *mListVisibleMembers;
  87. // Options (include any updates in updateChanged)
  88. LLCheckBoxCtrl *mCtrlShowInGroupList;
  89. LLCheckBoxCtrl *mCtrlOpenEnrollment;
  90. LLCheckBoxCtrl *mCtrlEnrollmentFee;
  91. LLSpinCtrl      *mSpinEnrollmentFee;
  92. LLCheckBoxCtrl *mCtrlReceiveNotices;
  93. LLCheckBoxCtrl  *mCtrlListGroup;
  94. LLTextBox       *mActiveTitleLabel;
  95. LLComboBox *mComboActiveTitle;
  96. LLComboBox *mComboMature;
  97. LLGroupMgrGroupData::member_list_t::iterator mMemberProgress;
  98. };
  99. #endif