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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llsidepaneltaskinfo.h
  3.  * @brief LLSidepanelTaskInfo class header file
  4.  *
  5.  * $LicenseInfo:firstyear=2002&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2002-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_LLSIDEPANELTASKINFO_H
  33. #define LL_LLSIDEPANELTASKINFO_H
  34. #include "llsidepanelinventorysubpanel.h"
  35. #include "lluuid.h"
  36. #include "llselectmgr.h"
  37. //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  38. // Class LLSidepanelTaskInfo
  39. //
  40. // Panel for permissions of an object.
  41. //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  42. class LLNameBox;
  43. class LLCheckBoxCtrl;
  44. class LLViewerObject;
  45. class LLSidepanelTaskInfo : public LLSidepanelInventorySubpanel
  46. {
  47. public:
  48. LLSidepanelTaskInfo();
  49. virtual ~LLSidepanelTaskInfo();
  50. /*virtual*/ BOOL postBuild();
  51. /*virtual*/ void setVisible(BOOL visible);
  52. void setObjectSelection(LLObjectSelectionHandle selection);
  53. const LLUUID& getSelectedUUID();
  54. LLViewerObject* getFirstSelectedObject();
  55. static LLSidepanelTaskInfo *getActivePanel();
  56. protected:
  57. /*virtual*/ void refresh(); // refresh all labels as needed
  58. /*virtual*/ void save();
  59. /*virtual*/ void updateVerbs();
  60. // statics
  61. static void onClickClaim(void*);
  62. static void onClickRelease(void*);
  63.    void onClickGroup();
  64.    void cbGroupID(LLUUID group_id);
  65. static void onClickDeedToGroup(void*);
  66. static void onCommitPerm(LLUICtrl *ctrl, void *data, U8 field, U32 perm);
  67. static void onCommitGroupShare(LLUICtrl *ctrl, void *data);
  68. static void onCommitEveryoneMove(LLUICtrl *ctrl, void *data);
  69. static void onCommitEveryoneCopy(LLUICtrl *ctrl, void *data);
  70. static void onCommitNextOwnerModify(LLUICtrl* ctrl, void* data);
  71. static void onCommitNextOwnerCopy(LLUICtrl* ctrl, void* data);
  72. static void onCommitNextOwnerTransfer(LLUICtrl* ctrl, void* data);
  73. static void onCommitName(LLUICtrl* ctrl, void* data);
  74. static void onCommitDesc(LLUICtrl* ctrl, void* data);
  75. static void onCommitSaleInfo(LLUICtrl* ctrl, void* data);
  76. static void onCommitSaleType(LLUICtrl* ctrl, void* data);
  77. void setAllSaleInfo();
  78. static void onCommitClickAction(LLUICtrl* ctrl, void* data);
  79. static void onCommitIncludeInSearch(LLUICtrl* ctrl, void*);
  80. static void doClickAction(U8 click_action);
  81. void disableAll();
  82. private:
  83. LLNameBox* mLabelGroupName; // group name
  84. LLUUID mCreatorID;
  85. LLUUID mOwnerID;
  86. LLUUID mLastOwnerID;
  87. protected:
  88. void  onOpenButtonClicked();
  89. void  onPayButtonClicked();
  90. void  onBuyButtonClicked();
  91. private:
  92. LLButton* mOpenBtn;
  93. LLButton* mPayBtn;
  94. LLButton* mBuyBtn;
  95. protected:
  96. LLViewerObject* getObject();
  97. private:
  98. LLViewerObject* mObject;
  99. LLObjectSelectionHandle mObjectSelection;
  100. static LLSidepanelTaskInfo* sActivePanel;
  101. };
  102. #endif // LL_LLSIDEPANELTASKINFO_H