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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llpanelplacestab.cpp
  3.  * @brief Tabs interface for 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. #include "llviewerprecompiledheaders.h"
  33. #include "llpanelplacestab.h"
  34. #include "llbutton.h"
  35. #include "llnotificationsutil.h"
  36. #include "llwindow.h"
  37. #include "llpanelplaces.h"
  38. #include "llslurl.h"
  39. #include "llworldmap.h"
  40. std::string LLPanelPlacesTab::sFilterSubString = LLStringUtil::null;
  41. bool LLPanelPlacesTab::isTabVisible()
  42. {
  43. LLUICtrl* parent = getParentUICtrl();
  44. if (!parent) return false;
  45. if (!parent->getVisible()) return false;
  46. return true;
  47. }
  48. void LLPanelPlacesTab::setPanelPlacesButtons(LLPanelPlaces* panel)
  49. {
  50. mTeleportBtn = panel->getChild<LLButton>("teleport_btn");
  51. mShowOnMapBtn = panel->getChild<LLButton>("map_btn");
  52. }
  53. void LLPanelPlacesTab::onRegionResponse(const LLVector3d& landmark_global_pos,
  54. U64 region_handle,
  55. const std::string& url,
  56. const LLUUID& snapshot_id,
  57. bool teleport)
  58. {
  59. std::string sim_name;
  60. bool gotSimName = LLWorldMap::getInstance()->simNameFromPosGlobal( landmark_global_pos, sim_name );
  61. std::string sl_url;
  62. if ( gotSimName )
  63. {
  64. F32 region_x = (F32)fmod( landmark_global_pos.mdV[VX], (F64)REGION_WIDTH_METERS );
  65. F32 region_y = (F32)fmod( landmark_global_pos.mdV[VY], (F64)REGION_WIDTH_METERS );
  66. sl_url = LLSLURL::buildSLURL(sim_name, llround(region_x), llround(region_y), llround((F32)landmark_global_pos.mdV[VZ]));
  67. }
  68. else
  69. {
  70. sl_url = "";
  71. }
  72. LLView::getWindow()->copyTextToClipboard(utf8str_to_wstring(sl_url));
  73. LLSD args;
  74. args["SLURL"] = sl_url;
  75. LLNotificationsUtil::add("CopySLURL", args);
  76. }