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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llurlmatch.h
  3.  * @author Martin Reddy
  4.  * @brief Specifies a matched Url in a string, as returned by LLUrlRegistry
  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_LLURLMATCH_H
  34. #define LL_LLURLMATCH_H
  35. #include "linden_common.h"
  36. #include <string>
  37. #include <vector>
  38. #include "lluicolor.h"
  39. ///
  40. /// LLUrlMatch describes a single Url that was matched within a string by 
  41. /// the LLUrlRegistry::findUrl() method. It includes the actual Url that
  42. /// was matched along with its first/last character offset in the string.
  43. /// An alternate label is also provided for creating a hyperlink, as well
  44. /// as tooltip/status text, an icon, and a XUI file for a context menu
  45. /// that can be used in a popup for a Url (e.g., Open, Copy URL, etc.)
  46. ///
  47. class LLUrlMatch
  48. {
  49. public:
  50. LLUrlMatch();
  51. /// return true if this object does not contain a valid Url match yet
  52. bool empty() const { return mUrl.empty(); }
  53. /// return the offset in the string for the first character of the Url
  54. U32 getStart() const { return mStart; }
  55. /// return the offset in the string for the last character of the Url
  56. U32 getEnd() const { return mEnd; }
  57. /// return the Url that has been matched in the input string
  58. std::string getUrl() const { return mUrl; }
  59. /// return a label that can be used for the display of this Url
  60. std::string getLabel() const { return mLabel; }
  61. /// return a message that could be displayed in a tooltip or status bar
  62. std::string getTooltip() const { return mTooltip; }
  63. /// return the filename for an icon that can be displayed next to this Url
  64. std::string getIcon() const { return mIcon; }
  65. /// Return the color to render the displayed text
  66. LLUIColor getColor() const { return mColor; }
  67. /// Return the name of a XUI file containing the context menu items
  68. std::string getMenuName() const { return mMenuName; }
  69. /// return the SL location that this Url describes, or "" if none.
  70. std::string getLocation() const { return mLocation; }
  71. /// is this a match for a URL that should not be hyperlinked?
  72. bool isLinkDisabled() const { return mDisabledLink; }
  73. /// Change the contents of this match object (used by LLUrlRegistry)
  74. void setValues(U32 start, U32 end, const std::string &url, const std::string &label,
  75.                const std::string &tooltip, const std::string &icon,
  76.    const LLUIColor& color, const std::string &menu, 
  77.    const std::string &location, bool disabled_link);
  78. private:
  79. U32         mStart;
  80. U32         mEnd;
  81. std::string mUrl;
  82. std::string mLabel;
  83. std::string mTooltip;
  84. std::string mIcon;
  85. std::string mMenuName;
  86. std::string mLocation;
  87. LLUIColor mColor;
  88. bool        mDisabledLink;
  89. };
  90. #endif