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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llpanelplaces.h
  3.  * @brief Side Bar "Places" panel
  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_LLPANELPLACES_H
  33. #define LL_LLPANELPLACES_H
  34. #include "lltimer.h"
  35. #include "llpanel.h"
  36. class LLInventoryItem;
  37. class LLFilterEditor;
  38. class LLLandmark;
  39. class LLPanelLandmarkInfo;
  40. class LLPanelPlaceProfile;
  41. class LLPanelPickEdit;
  42. class LLPanelPlaceInfo;
  43. class LLPanelPlacesTab;
  44. class LLParcelSelection;
  45. class LLPlacesInventoryObserver;
  46. class LLPlacesParcelObserver;
  47. class LLRemoteParcelInfoObserver;
  48. class LLTabContainer;
  49. class LLToggleableMenu;
  50. typedef std::pair<LLUUID, std::string> folder_pair_t;
  51. class LLPanelPlaces : public LLPanel
  52. {
  53. public:
  54. LLPanelPlaces();
  55. virtual ~LLPanelPlaces();
  56. /*virtual*/ BOOL postBuild();
  57. /*virtual*/ void onOpen(const LLSD& key);
  58. // Called on parcel selection change to update place information.
  59. void changedParcelSelection();
  60. // Called once on agent inventory first change to find out when inventory gets usable
  61. // and to create "My Landmarks" and "Teleport History" tabs.
  62. void createTabs();
  63. // Called when we receive the global 3D position of a parcel.
  64. void changedGlobalPos(const LLVector3d &global_pos);
  65. // Opens landmark info panel when agent creates or receives landmark.
  66. void showAddedLandmarkInfo(const std::vector<LLUUID>& items);
  67. void setItem(LLInventoryItem* item);
  68. LLInventoryItem* getItem() { return mItem; }
  69. std::string getPlaceInfoType() { return mPlaceInfoType; }
  70. /*virtual*/ S32 notifyParent(const LLSD& info);
  71. private:
  72. void onLandmarkLoaded(LLLandmark* landmark);
  73. void onFilterEdit(const std::string& search_string, bool force_filter);
  74. void onTabSelected();
  75. void onTeleportButtonClicked();
  76. void onShowOnMapButtonClicked();
  77. void onEditButtonClicked();
  78. void onSaveButtonClicked();
  79. void onCancelButtonClicked();
  80. void onOverflowButtonClicked();
  81. void onOverflowMenuItemClicked(const LLSD& param);
  82. bool onOverflowMenuItemEnable(const LLSD& param);
  83. void onCreateLandmarkButtonClicked(const LLUUID& folder_id);
  84. void onBackButtonClicked();
  85. void toggleMediaPanel();
  86. void togglePickPanel(BOOL visible);
  87. void togglePlaceInfoPanel(BOOL visible);
  88. /*virtual*/ void handleVisibilityChange(BOOL new_visibility);
  89. void updateVerbs();
  90. LLPanelPlaceInfo* getCurrentInfoPanel();
  91. LLFilterEditor* mFilterEditor;
  92. LLPanelPlacesTab* mActivePanel;
  93. LLTabContainer* mTabContainer;
  94. LLPanelPlaceProfile* mPlaceProfile;
  95. LLPanelLandmarkInfo* mLandmarkInfo;
  96. LLPanelPickEdit* mPickPanel;
  97. LLToggleableMenu* mPlaceMenu;
  98. LLToggleableMenu* mLandmarkMenu;
  99. LLButton* mPlaceProfileBackBtn;
  100. LLButton* mLandmarkInfoBackBtn;
  101. LLButton* mTeleportBtn;
  102. LLButton* mShowOnMapBtn;
  103. LLButton* mEditBtn;
  104. LLButton* mSaveBtn;
  105. LLButton* mCancelBtn;
  106. LLButton* mCloseBtn;
  107. LLButton* mOverflowBtn;
  108. LLPlacesInventoryObserver* mInventoryObserver;
  109. LLPlacesParcelObserver* mParcelObserver;
  110. LLRemoteParcelInfoObserver* mRemoteParcelObserver;
  111. // Pointer to a landmark item or to a linked landmark
  112. LLPointer<LLInventoryItem> mItem;
  113. // Absolute position of the location for teleport, may not
  114. // be available (hence zero)
  115. LLVector3d mPosGlobal;
  116. // Sets a period of time during which the requested place information
  117. // is expected to be updated and doesn't need to be reset.
  118. LLTimer mResetInfoTimer;
  119. // Information type currently shown in Place Information panel
  120. std::string mPlaceInfoType;
  121. bool isLandmarkEditModeOn;
  122. LLSafeHandle<LLParcelSelection> mParcel;
  123. };
  124. #endif //LL_LLPANELPLACES_H