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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llmultislider.h
  3.  * @brief A simple multislider
  4.  *
  5.  * $LicenseInfo:firstyear=2007&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2007-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_MULTI_SLIDER_H
  33. #define LL_MULTI_SLIDER_H
  34. #include "llf32uictrl.h"
  35. #include "v4color.h"
  36. class LLUICtrlFactory;
  37. class LLMultiSlider : public LLF32UICtrl
  38. {
  39. public:
  40. struct SliderParams : public LLInitParam::Block<SliderParams>
  41. {
  42. Optional<std::string> name;
  43. Mandatory<F32> value;
  44. SliderParams();
  45. };
  46. struct Params : public LLInitParam::Block<Params, LLF32UICtrl::Params>
  47. {
  48. Optional<S32> max_sliders;
  49. Optional<bool> allow_overlap,
  50. draw_track,
  51. use_triangle;
  52. Optional<LLUIColor> track_color,
  53. thumb_disabled_color,
  54. thumb_outline_color,
  55. thumb_center_color,
  56. thumb_center_selected_color,
  57. triangle_color;
  58. Optional<CommitCallbackParam> mouse_down_callback,
  59. mouse_up_callback;
  60. Optional<S32> thumb_width;
  61. Multiple<SliderParams> sliders;
  62. Params();
  63. };
  64. protected:
  65. LLMultiSlider(const Params&);
  66. friend class LLUICtrlFactory;
  67. public:
  68. virtual ~LLMultiSlider();
  69. void setSliderValue(const std::string& name, F32 value, BOOL from_event = FALSE);
  70. F32 getSliderValue(const std::string& name) const;
  71. const std::string& getCurSlider() const { return mCurSlider; }
  72. F32 getCurSliderValue() const { return getSliderValue(mCurSlider); }
  73. void setCurSlider(const std::string& name);
  74. void setCurSliderValue(F32 val, BOOL from_event = false) { setSliderValue(mCurSlider, val, from_event); }
  75. /*virtual*/ void setValue(const LLSD& value);
  76. /*virtual*/ LLSD getValue() const { return mValue; }
  77. boost::signals2::connection setMouseDownCallback( const commit_signal_t::slot_type& cb );
  78. boost::signals2::connection setMouseUpCallback( const commit_signal_t::slot_type& cb );
  79. bool findUnusedValue(F32& initVal);
  80. const std::string& addSlider();
  81. const std::string& addSlider(F32 val);
  82. void addSlider(F32 val, const std::string& name);
  83. void deleteSlider(const std::string& name);
  84. void deleteCurSlider() { deleteSlider(mCurSlider); }
  85. void clear();
  86. /*virtual*/ BOOL handleHover(S32 x, S32 y, MASK mask);
  87. /*virtual*/ BOOL handleMouseUp(S32 x, S32 y, MASK mask);
  88. /*virtual*/ BOOL handleMouseDown(S32 x, S32 y, MASK mask);
  89. /*virtual*/ BOOL handleKeyHere(KEY key, MASK mask);
  90. /*virtual*/ void draw();
  91. protected:
  92. LLSD mValue;
  93. std::string mCurSlider;
  94. static S32 mNameCounter;
  95. S32 mMaxNumSliders;
  96. BOOL mAllowOverlap;
  97. BOOL mDrawTrack;
  98. BOOL mUseTriangle; /// hacked in toggle to use a triangle
  99. S32 mMouseOffset;
  100. LLRect mDragStartThumbRect;
  101. S32 mThumbWidth;
  102. std::map<std::string, LLRect>
  103. mThumbRects;
  104. LLUIColor mTrackColor;
  105. LLUIColor mThumbOutlineColor;
  106. LLUIColor mThumbCenterColor;
  107. LLUIColor mThumbCenterSelectedColor;
  108. LLUIColor mDisabledThumbColor;
  109. LLUIColor mTriangleColor;
  110. commit_signal_t* mMouseDownSignal;
  111. commit_signal_t* mMouseUpSignal;
  112. };
  113. #endif  // LL_MULTI_SLIDER_H