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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llpanelplaceinfo.h
  3.  * @brief Base class for place information in Side Tray.
  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_LLPANELPLACEINFO_H
  33. #define LL_LLPANELPLACEINFO_H
  34. #include "llpanel.h"
  35. #include "v3dmath.h"
  36. #include "lluuid.h"
  37. #include "llremoteparcelrequest.h"
  38. class LLExpandableTextBox;
  39. class LLIconCtrl;
  40. class LLInventoryItem;
  41. class LLPanelPickEdit;
  42. class LLParcel;
  43. class LLScrollContainer;
  44. class LLTextBox;
  45. class LLTextureCtrl;
  46. class LLViewerRegion;
  47. class LLViewerInventoryCategory;
  48. class LLPanelPlaceInfo : public LLPanel, LLRemoteParcelInfoObserver
  49. {
  50. public:
  51. enum EInfoType
  52. {
  53. UNKNOWN,
  54. AGENT,
  55. CREATE_LANDMARK,
  56. LANDMARK,
  57. PLACE,
  58. TELEPORT_HISTORY
  59. };
  60. LLPanelPlaceInfo();
  61. /*virtual*/ ~LLPanelPlaceInfo();
  62. /*virtual*/ BOOL postBuild();
  63. // Ignore all old location information, useful if you are 
  64. // recycling an existing dialog and need to clear it.
  65. virtual void resetLocation();
  66. // Sends a request for data about the given parcel, which will
  67. // only update the location if there is none already available.
  68. /*virtual*/ void setParcelID(const LLUUID& parcel_id);
  69. // Depending on how the panel was triggered
  70. // (from landmark or current location, or other)
  71. // sets a corresponding title and contents.
  72. virtual void setInfoType(EInfoType type);
  73. // Requests remote parcel info by parcel ID.
  74. void sendParcelInfoRequest();
  75. // Displays information about a remote parcel.
  76. // Sends a request to the server.
  77. void displayParcelInfo(const LLUUID& region_id,
  78.    const LLVector3d& pos_global);
  79. /*virtual*/ void setErrorStatus(U32 status, const std::string& reason);
  80. /*virtual*/ void processParcelInfo(const LLParcelData& parcel_data);
  81. /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE);
  82. // Create a pick for the location specified
  83. // by global_pos.
  84. void createPick(const LLVector3d& pos_global, LLPanelPickEdit* pick_panel);
  85. protected:
  86. static void nameUpdatedCallback(LLTextBox* text,
  87. const std::string& first,
  88. const std::string& last);
  89. /**
  90.  * mParcelID is valid only for remote places, in other cases it's null. See resetLocation() 
  91.  */
  92. LLUUID mParcelID;
  93. LLUUID mRequestedID;
  94. LLVector3 mPosRegion;
  95. std::string mParcelTitle; // used for pick title without coordinates
  96. std::string mCurrentTitle;
  97. S32 mScrollingPanelMinHeight;
  98. S32 mScrollingPanelWidth;
  99. EInfoType  mInfoType;
  100. LLScrollContainer* mScrollContainer;
  101. LLPanel* mScrollingPanel;
  102. LLTextBox* mTitle;
  103. LLTextureCtrl* mSnapshotCtrl;
  104. LLTextBox* mRegionName;
  105. LLTextBox* mParcelName;
  106. LLExpandableTextBox* mDescEditor;
  107. LLIconCtrl* mMaturityRatingIcon;
  108. LLTextBox* mMaturityRatingText;
  109. };
  110. #endif // LL_LLPANELPLACEINFO_H