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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llslider.h
  3.  * @brief A simple slider with no label.
  4.  *
  5.  * $LicenseInfo:firstyear=2002&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2002-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_LLSLIDER_H
  33. #define LL_LLSLIDER_H
  34. #include "llf32uictrl.h"
  35. #include "v4color.h"
  36. class LLSlider : public LLF32UICtrl
  37. {
  38. public:
  39. enum ORIENTATION { HORIZONTAL, VERTICAL };
  40. struct Params : public LLInitParam::Block<Params, LLF32UICtrl::Params>
  41. {
  42. Optional<std::string> orientation;
  43. Optional<LLUIColor> track_color,
  44. thumb_outline_color,
  45. thumb_center_color;
  46. Optional<LLUIImage*> thumb_image,
  47. thumb_image_pressed,
  48. thumb_image_disabled,
  49. track_image_horizontal,
  50. track_image_vertical,
  51. track_highlight_horizontal_image,
  52. track_highlight_vertical_image;
  53. Optional<CommitCallbackParam> mouse_down_callback,
  54. mouse_up_callback;
  55. Params();
  56. };
  57. protected:
  58. LLSlider(const Params&);
  59. friend class LLUICtrlFactory;
  60. public:
  61. virtual ~LLSlider();
  62. void setValue( F32 value, BOOL from_event = FALSE );
  63.     // overrides for LLF32UICtrl methods
  64. virtual void setValue(const LLSD& value ) { setValue((F32)value.asReal(), TRUE); }
  65. virtual void  setMinValue(const LLSD& min_value) { setMinValue((F32)min_value.asReal()); }
  66. virtual void  setMaxValue(const LLSD& max_value) { setMaxValue((F32)max_value.asReal()); }
  67. virtual void setMinValue(F32 min_value) { LLF32UICtrl::setMinValue(min_value); updateThumbRect(); }
  68. virtual void setMaxValue(F32 max_value) { LLF32UICtrl::setMaxValue(max_value); updateThumbRect(); }
  69. boost::signals2::connection setMouseDownCallback( const commit_signal_t::slot_type& cb );
  70. boost::signals2::connection setMouseUpCallback( const commit_signal_t::slot_type& cb );
  71. virtual BOOL handleHover(S32 x, S32 y, MASK mask);
  72. virtual BOOL handleMouseUp(S32 x, S32 y, MASK mask);
  73. virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask);
  74. virtual BOOL handleKeyHere(KEY key, MASK mask);
  75. virtual BOOL handleScrollWheel(S32 x, S32 y, S32 clicks);
  76. virtual void draw();
  77. private:
  78. void setValueAndCommit(F32 value);
  79. void updateThumbRect();
  80. BOOL mVolumeSlider;
  81. S32 mMouseOffset;
  82. LLRect mDragStartThumbRect;
  83. LLPointer<LLUIImage> mThumbImage;
  84. LLPointer<LLUIImage> mThumbImagePressed;
  85. LLPointer<LLUIImage> mThumbImageDisabled;
  86. LLPointer<LLUIImage> mTrackImageHorizontal;
  87. LLPointer<LLUIImage> mTrackImageVertical;
  88. LLPointer<LLUIImage> mTrackHighlightHorizontalImage;
  89. LLPointer<LLUIImage> mTrackHighlightVerticalImage;
  90. const ORIENTATION mOrientation;
  91. LLRect mThumbRect;
  92. LLUIColor mTrackColor;
  93. LLUIColor mThumbOutlineColor;
  94. LLUIColor mThumbCenterColor;
  95. commit_signal_t* mMouseDownSignal;
  96. commit_signal_t* mMouseUpSignal;
  97. };
  98. #endif  // LL_LLSLIDER_H