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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llstyle.h
  3.  * @brief Text style class
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-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_LLSTYLE_H
  33. #define LL_LLSTYLE_H
  34. #include "v4color.h"
  35. #include "llui.h"
  36. #include "llinitparam.h"
  37. class LLFontGL;
  38. class LLStyle : public LLRefCount
  39. {
  40. public:
  41. struct Params : public LLInitParam::Block<Params>
  42. {
  43. Optional<bool> visible;
  44. Optional<LLFontGL::ShadowType> drop_shadow;
  45. Optional<LLUIColor> color,
  46. readonly_color;
  47. Optional<const LLFontGL*> font;
  48. Optional<LLUIImage*> image;
  49. Optional<std::string> link_href;
  50. Params();
  51. };
  52. LLStyle(const Params& p = Params());
  53. public:
  54. const LLColor4& getColor() const { return mColor; }
  55. void setColor(const LLColor4 &color) { mColor = color; }
  56. const LLColor4& getReadOnlyColor() const { return mReadOnlyColor; }
  57. void setReadOnlyColor(const LLColor4& color) { mReadOnlyColor = color; }
  58. BOOL isVisible() const;
  59. void setVisible(BOOL is_visible);
  60. LLFontGL::ShadowType getShadowType() const { return mDropShadow; }
  61. void setFont(const LLFontGL* font);
  62. const LLFontGL* getFont() const;
  63. const std::string& getLinkHREF() const { return mLink; }
  64. void setLinkHREF(const std::string& href);
  65. BOOL isLink() const;
  66. LLUIImagePtr getImage() const;
  67. void setImage(const LLUUID& src);
  68. void setImage(const std::string& name);
  69. BOOL isImage() const { return mImagep.notNull(); }
  70. // inlined here to make it easier to compare to member data below. -MG
  71. bool operator==(const LLStyle &rhs) const
  72. {
  73. return 
  74. mVisible == rhs.mVisible
  75. && mColor == rhs.mColor
  76. && mReadOnlyColor == rhs.mReadOnlyColor
  77. && mFont == rhs.mFont
  78. && mLink == rhs.mLink
  79. && mImagep == rhs.mImagep
  80. && mItalic == rhs.mItalic
  81. && mBold == rhs.mBold
  82. && mUnderline == rhs.mUnderline
  83. && mDropShadow == rhs.mDropShadow;
  84. }
  85. bool operator!=(const LLStyle& rhs) const { return !(*this == rhs); }
  86. public:
  87. BOOL        mItalic;
  88. BOOL        mBold;
  89. BOOL        mUnderline;
  90. LLFontGL::ShadowType mDropShadow;
  91. protected:
  92. ~LLStyle() { }
  93. private:
  94. BOOL mVisible;
  95. LLUIColor mColor;
  96. LLUIColor   mReadOnlyColor;
  97. std::string mFontName;
  98. const LLFontGL*   mFont; // cached for performance
  99. std::string mLink;
  100. LLUIImagePtr mImagep;
  101. };
  102. typedef LLPointer<LLStyle> LLStyleSP;
  103. typedef LLPointer<const LLStyle> LLStyleConstSP;
  104. #endif  // LL_LLSTYLE_H