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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llpanelteleporthistory.h
  3.  * @brief Teleport history represented by a scrolling list
  4.  * class definition
  5.  *
  6.  * $LicenseInfo:firstyear=2009&license=viewergpl$
  7.  * 
  8.  * Copyright (c) 2009-2010, Linden Research, Inc.
  9.  * 
  10.  * Second Life Viewer Source Code
  11.  * The source code in this file ("Source Code") is provided by Linden Lab
  12.  * to you under the terms of the GNU General Public License, version 2.0
  13.  * ("GPL"), unless you have obtained a separate licensing agreement
  14.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  15.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  16.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  17.  * 
  18.  * There are special exceptions to the terms and conditions of the GPL as
  19.  * it is applied to this Source Code. View the full text of the exception
  20.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  21.  * online at
  22.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  23.  * 
  24.  * By copying, modifying or distributing this software, you acknowledge
  25.  * that you have read and understood your obligations described above,
  26.  * and agree to abide by those obligations.
  27.  * 
  28.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  29.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  30.  * COMPLETENESS OR PERFORMANCE.
  31.  * $/LicenseInfo$
  32.  */
  33. #ifndef LL_LLPANELTELEPORTHISTORY_H
  34. #define LL_LLPANELTELEPORTHISTORY_H
  35. #include "lluictrlfactory.h"
  36. #include "llpanelplacestab.h"
  37. #include "llteleporthistory.h"
  38. #include "llmenugl.h"
  39. class LLTeleportHistoryStorage;
  40. class LLAccordionCtrl;
  41. class LLAccordionCtrlTab;
  42. class LLFlatListView;
  43. class LLTeleportHistoryPanel : public LLPanelPlacesTab
  44. {
  45. public:
  46. class ContextMenu
  47. {
  48. public:
  49. ContextMenu();
  50. void show(LLView* spawning_view, S32 index, S32 x, S32 y);
  51. private:
  52. LLContextMenu* createMenu();
  53. void onTeleport();
  54. void onInfo();
  55. void onCopyToClipboard();
  56. static void gotSLURLCallback(const std::string& slurl);
  57. LLContextMenu* mMenu;
  58. S32 mIndex;
  59. };
  60. LLTeleportHistoryPanel();
  61. virtual ~LLTeleportHistoryPanel();
  62. /*virtual*/ BOOL postBuild();
  63. /*virtual*/ void draw();
  64. /*virtual*/ void onSearchEdit(const std::string& string);
  65. /*virtual*/ void onShowOnMap();
  66. /*virtual*/ void onTeleport();
  67. ///*virtual*/ void onCopySLURL();
  68. /*virtual*/ void updateVerbs();
  69. private:
  70. void onDoubleClickItem();
  71. void onReturnKeyPressed();
  72. void onAccordionTabRightClick(LLView *view, S32 x, S32 y, MASK mask);
  73. void onAccordionTabOpen(LLAccordionCtrlTab *tab);
  74. void onAccordionTabClose(LLAccordionCtrlTab *tab);
  75. void onExpandAllFolders();
  76. void onCollapseAllFolders();
  77. void onClearTeleportHistory();
  78. bool onClearTeleportHistoryDialog(const LLSD& notification, const LLSD& response);
  79. void refresh();
  80. void getNextTab(const LLDate& item_date, S32& curr_tab, LLDate& tab_date);
  81. void onTeleportHistoryChange(S32 removed_index);
  82. void replaceItem(S32 removed_index);
  83. void showTeleportHistory();
  84. void handleItemSelect(LLFlatListView* );
  85. LLFlatListView* getFlatListViewFromTab(LLAccordionCtrlTab *);
  86. void onGearButtonClicked();
  87. bool isActionEnabled(const LLSD& userdata) const;
  88. void setAccordionCollapsedByUser(LLUICtrl* acc_tab, bool collapsed);
  89. bool isAccordionCollapsedByUser(LLUICtrl* acc_tab);
  90. void onAccordionExpand(LLUICtrl* ctrl, const LLSD& param);
  91. LLTeleportHistoryStorage* mTeleportHistory;
  92. LLAccordionCtrl* mHistoryAccordion;
  93. LLFlatListView* mLastSelectedFlatlList;
  94. S32 mLastSelectedItemIndex;
  95. bool mDirty;
  96. S32 mCurrentItem;
  97. typedef LLDynamicArray<LLAccordionCtrlTab*> item_containers_t;
  98. item_containers_t mItemContainers;
  99. ContextMenu mContextMenu;
  100. LLContextMenu* mAccordionTabMenu;
  101. LLHandle<LLView> mGearMenuHandle;
  102. };
  103. #endif //LL_LLPANELTELEPORTHISTORY_H