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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llurlaction.h
  3.  * @author Martin Reddy
  4.  * @brief A set of actions that can performed on Urls
  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_LLURLACTION_H
  34. #define LL_LLURLACTION_H
  35. #include <string>
  36. ///
  37. /// The LLUrlAction class provides a number of static functions that
  38. /// let you open Urls in web browsers, execute SLURLs, and copy Urls
  39. /// to the clipboard. Many of these functions are not available at
  40. /// the llui level, and must be supplied via a set of callbacks.
  41. ///
  42. /// N.B. The action functions specifically do not use const ref
  43. /// strings so that a url parameter can be used into a boost::bind()
  44. /// call under situations when that input string is deallocated before
  45. /// the callback is executed.
  46. ///
  47. class LLUrlAction
  48. {
  49. public:
  50. LLUrlAction();
  51. /// load a Url in the user's preferred web browser
  52. static void openURL(std::string url);
  53. /// load a Url in the internal Second Life web browser
  54. static void openURLInternal(std::string url);
  55. /// load a Url in the operating system's default web browser
  56. static void openURLExternal(std::string url);
  57. /// execute the given secondlife: SLURL
  58. static void executeSLURL(std::string url);
  59. /// if the Url specifies an SL location, teleport there
  60. static void teleportToLocation(std::string url);
  61. /// if the Url specifies an SL location, show it on a map
  62. static void showLocationOnMap(std::string url);
  63. /// perform the appropriate action for left-clicking on a Url
  64. static void clickAction(std::string url);
  65. /// copy the label for a Url to the clipboard
  66. static void copyLabelToClipboard(std::string url);
  67. /// copy a Url to the clipboard
  68. static void copyURLToClipboard(std::string url);
  69. /// specify the callbacks to enable this class's functionality
  70. static void setOpenURLCallback(void (*cb) (const std::string& url));
  71. static void setOpenURLInternalCallback(void (*cb) (const std::string& url));
  72. static void setOpenURLExternalCallback(void (*cb) (const std::string& url));
  73. static void setExecuteSLURLCallback(bool (*cb) (const std::string& url));
  74. private:
  75. // callbacks for operations we can perform on Urls
  76. static void (*sOpenURLCallback) (const std::string& url);
  77. static void (*sOpenURLInternalCallback) (const std::string& url);
  78. static void (*sOpenURLExternalCallback) (const std::string& url);
  79. static bool (*sExecuteSLURLCallback) (const std::string& url);
  80. };
  81. #endif