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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llcolorswatch.h
  3.  * @brief LLColorSwatch class definition
  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_LLCOLORSWATCH_H
  33. #define LL_LLCOLORSWATCH_H
  34. #include "lluictrl.h"
  35. #include "v4color.h"
  36. #include "llfloater.h"
  37. #include "llviewertexture.h"
  38. #include "lltextbox.h"
  39. //
  40. // Classes
  41. //
  42. class LLColor4;
  43. class LLTextBox;
  44. class LLFloaterColorPicker;
  45. class LLViewerTexture;
  46. class LLColorSwatchCtrl
  47. : public LLUICtrl
  48. {
  49. public:
  50. typedef enum e_color_pick_op
  51. {
  52. COLOR_CHANGE,
  53. COLOR_SELECT,
  54. COLOR_CANCEL
  55. } EColorPickOp;
  56. struct Params : public LLInitParam::Block<Params, LLUICtrl::Params>
  57. {
  58. Optional<LLColor4> color;
  59. Optional<bool> can_apply_immediately;
  60. Optional<LLUIImage*> alpha_background_image;
  61. Optional<commit_callback_t>  cancel_callback;
  62. Optional<commit_callback_t>  select_callback;
  63. Optional<LLUIColor> border_color;
  64. Optional<S32> label_width;
  65. Optional<LLTextBox::Params> caption_text;
  66. Optional<LLViewBorder::Params> border;
  67. Params();
  68. };
  69. protected:
  70. LLColorSwatchCtrl(const Params& p);
  71. friend class LLUICtrlFactory;
  72. public:
  73. ~LLColorSwatchCtrl ();
  74. /*virtual*/ void setValue(const LLSD& value);
  75. /*virtual*/ LLSD getValue() const { return mColor.getValue(); }
  76. const LLColor4& get() { return mColor; }
  77. void set(const LLColor4& color, BOOL update_picker = FALSE, BOOL from_event = FALSE);
  78. void setOriginal(const LLColor4& color);
  79. void setValid(BOOL valid);
  80. void setLabel(const std::string& label);
  81. void setLabelWidth(S32 label_width) {mLabelWidth =label_width;}
  82. void setCanApplyImmediately(BOOL apply) { mCanApplyImmediately = apply; }
  83. void setOnCancelCallback(commit_callback_t cb) { mOnCancelCallback = cb; }
  84. void setOnSelectCallback(commit_callback_t cb) { mOnSelectCallback = cb; }
  85. void setFallbackImageName(const std::string& name) { mFallbackImageName = name; }
  86. void showPicker(BOOL take_focus);
  87. /*virtual*/ BOOL handleMouseDown(S32 x, S32 y, MASK mask);
  88. /*virtual*/ BOOL handleMouseUp(S32 x, S32 y, MASK mask);
  89. /*virtual*/ BOOL handleDoubleClick(S32 x,S32 y,MASK mask);
  90. /*virtual*/ BOOL handleHover(S32 x, S32 y, MASK mask);
  91. /*virtual*/ BOOL handleUnicodeCharHere(llwchar uni_char);
  92. /*virtual*/ void draw();
  93. /*virtual*/ void setEnabled( BOOL enabled );
  94. static void onColorChanged ( void* data, EColorPickOp pick_op = COLOR_CHANGE );
  95. void onParentFloaterClosed();
  96. protected:
  97. BOOL mValid;
  98. LLColor4 mColor;
  99. LLUIColor mBorderColor;
  100. LLTextBox* mCaption;
  101. LLHandle<LLFloater> mPickerHandle;
  102. LLViewBorder* mBorder;
  103. BOOL mCanApplyImmediately;
  104. commit_callback_t mOnCancelCallback;
  105. commit_callback_t mOnSelectCallback;
  106. S32             mLabelWidth;
  107. LLPointer<LLUIImage> mAlphaGradientImage;
  108. std::string mFallbackImageName;
  109. };
  110. #endif  // LL_LLBUTTON_H