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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llsliderctrl.h
  3.  * @brief Decorated wrapper for a LLSlider.
  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_LLSLIDERCTRL_H
  33. #define LL_LLSLIDERCTRL_H
  34. #include "lluictrl.h"
  35. #include "v4color.h"
  36. #include "llslider.h"
  37. #include "lltextbox.h"
  38. #include "llrect.h"
  39. #include "lllineeditor.h"
  40. class LLSliderCtrl : public LLF32UICtrl
  41. {
  42. public:
  43. struct Params : public LLInitParam::Block<Params, LLF32UICtrl::Params>
  44. {
  45. Optional<std::string>   orientation;
  46. Optional<S32> label_width;
  47. Optional<S32> text_width;
  48. Optional<bool> show_text;
  49. Optional<bool> can_edit_text;
  50. Optional<bool> is_volume_slider;
  51. Optional<S32> decimal_digits;
  52. Optional<LLUIColor> text_color,
  53. text_disabled_color;
  54. Optional<CommitCallbackParam> mouse_down_callback,
  55. mouse_up_callback;
  56. Optional<LLSlider::Params> slider_bar;
  57. Optional<LLLineEditor::Params> value_editor;
  58. Optional<LLTextBox::Params> value_text;
  59. Optional<LLTextBox::Params> slider_label;
  60. Params()
  61. : text_width("text_width"),
  62. label_width("label_width"),
  63. show_text("show_text"),
  64. can_edit_text("can_edit_text"),
  65. is_volume_slider("volume"),
  66. decimal_digits("decimal_digits", 3),
  67. text_color("text_color"),
  68. text_disabled_color("text_disabled_color"),
  69. slider_bar("slider_bar"),
  70. value_editor("value_editor"),
  71. value_text("value_text"),
  72. slider_label("slider_label"),
  73. mouse_down_callback("mouse_down_callback"),
  74. mouse_up_callback("mouse_up_callback"),
  75. orientation("orientation", std::string ("horizontal"))
  76. {}
  77. };
  78. protected:
  79. LLSliderCtrl(const Params&);
  80. friend class LLUICtrlFactory;
  81. public:
  82. virtual ~LLSliderCtrl() {} // Children all cleaned up by default view destructor.
  83. /*virtual*/ F32 getValueF32() const { return mSlider->getValueF32(); }
  84. void setValue(F32 v, BOOL from_event = FALSE);
  85. /*virtual*/ void setValue(const LLSD& value) { setValue((F32)value.asReal(), TRUE); }
  86. /*virtual*/ LLSD getValue() const { return LLSD(getValueF32()); }
  87. /*virtual*/ BOOL setLabelArg( const std::string& key, const LLStringExplicit& text );
  88. BOOL isMouseHeldDown() const { return mSlider->hasMouseCapture(); }
  89. virtual void setPrecision(S32 precision);
  90. /*virtual*/ void    setEnabled( BOOL b );
  91. /*virtual*/ void clear();
  92. /*virtual*/ void setMinValue(const LLSD& min_value)  { setMinValue((F32)min_value.asReal()); }
  93. /*virtual*/ void setMaxValue(const LLSD& max_value)  { setMaxValue((F32)max_value.asReal()); }
  94. /*virtual*/ void setMinValue(F32 min_value)  { mSlider->setMinValue(min_value); updateText(); }
  95. /*virtual*/ void setMaxValue(F32 max_value)  { mSlider->setMaxValue(max_value); updateText(); }
  96. /*virtual*/ void setIncrement(F32 increment) { mSlider->setIncrement(increment);}
  97. F32 getMinValue() const { return mSlider->getMinValue(); }
  98. F32 getMaxValue() const { return mSlider->getMaxValue(); }
  99. void setLabel(const LLStringExplicit& label) { if (mLabelBox) mLabelBox->setText(label); }
  100. void setLabelColor(const LLColor4& c) { mTextEnabledColor = c; }
  101. void setDisabledLabelColor(const LLColor4& c) { mTextDisabledColor = c; }
  102. boost::signals2::connection setSliderMouseDownCallback( const commit_signal_t::slot_type& cb );
  103. boost::signals2::connection setSliderMouseUpCallback( const commit_signal_t::slot_type& cb );
  104. /*virtual*/ void onTabInto();
  105. /*virtual*/ void setTentative(BOOL b); // marks value as tentative
  106. /*virtual*/ void onCommit(); // mark not tentative, then commit
  107. /*virtual*/ void setControlName(const std::string& control_name, LLView* context)
  108. {
  109. LLUICtrl::setControlName(control_name, context);
  110. mSlider->setControlName(control_name, context);
  111. }
  112. static void onSliderCommit(LLUICtrl* caller, const LLSD& userdata);
  113. static void onEditorCommit(LLUICtrl* ctrl, const LLSD& userdata);
  114. static void onEditorGainFocus(LLFocusableElement* caller, void *userdata);
  115. static void onEditorChangeFocus(LLUICtrl* caller, S32 direction, void *userdata);
  116. private:
  117. void updateText();
  118. void reportInvalidData();
  119. const LLFontGL* mFont;
  120. BOOL mShowText;
  121. BOOL mCanEditText;
  122. S32 mPrecision;
  123. LLTextBox* mLabelBox;
  124. S32 mLabelWidth;
  125. F32 mValue;
  126. LLSlider* mSlider;
  127. class LLLineEditor* mEditor;
  128. LLTextBox* mTextBox;
  129. LLUIColor mTextEnabledColor;
  130. LLUIColor mTextDisabledColor;
  131. };
  132. #endif  // LL_LLSLIDERCTRL_H