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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llmultisliderctrl.h
  3.  * @brief LLMultiSliderCtrl base class
  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_SLIDERCTRL_H
  33. #define LL_MULTI_SLIDERCTRL_H
  34. #include "llf32uictrl.h"
  35. #include "v4color.h"
  36. #include "llmultislider.h"
  37. #include "lltextbox.h"
  38. #include "llrect.h"
  39. //
  40. // Classes
  41. //
  42. class LLFontGL;
  43. class LLLineEditor;
  44. class LLSlider;
  45. class LLMultiSliderCtrl : public LLF32UICtrl
  46. {
  47. public:
  48. struct Params : public LLInitParam::Block<Params, LLF32UICtrl::Params>
  49. {
  50. Optional<S32> label_width,
  51. text_width;
  52. Optional<bool> show_text,
  53. can_edit_text;
  54. Optional<S32> decimal_digits;
  55. Optional<S32> max_sliders;
  56. Optional<bool> allow_overlap,
  57. draw_track,
  58. use_triangle;
  59. Optional<LLUIColor> text_color,
  60. text_disabled_color;
  61. Optional<CommitCallbackParam> mouse_down_callback,
  62. mouse_up_callback;
  63. Multiple<LLMultiSlider::SliderParams> sliders;
  64. Params();
  65. };
  66. protected:
  67. LLMultiSliderCtrl(const Params&);
  68. friend class LLUICtrlFactory;
  69. public:
  70. virtual ~LLMultiSliderCtrl();
  71. F32 getSliderValue(const std::string& name) const;
  72. void setSliderValue(const std::string& name, F32 v, BOOL from_event = FALSE);
  73. virtual void setValue(const LLSD& value );
  74. virtual LLSD getValue() const { return mMultiSlider->getValue(); }
  75. virtual BOOL setLabelArg( const std::string& key, const LLStringExplicit& text );
  76. const std::string& getCurSlider() const { return mMultiSlider->getCurSlider(); }
  77. F32 getCurSliderValue() const { return mCurValue; }
  78. void setCurSlider(const std::string& name);
  79. void setCurSliderValue(F32 val, BOOL from_event = false) { setSliderValue(mMultiSlider->getCurSlider(), val, from_event); }
  80. virtual void setMinValue(const LLSD& min_value) { setMinValue((F32)min_value.asReal()); }
  81. virtual void setMaxValue(const LLSD& max_value) { setMaxValue((F32)max_value.asReal());  }
  82. BOOL isMouseHeldDown();
  83. virtual void    setEnabled( BOOL b );
  84. virtual void clear();
  85. virtual void setPrecision(S32 precision);
  86. void setMinValue(F32 min_value) {mMultiSlider->setMinValue(min_value);}
  87. void setMaxValue(F32 max_value) {mMultiSlider->setMaxValue(max_value);}
  88. void setIncrement(F32 increment) {mMultiSlider->setIncrement(increment);}
  89. /// for adding and deleting sliders
  90. const std::string& addSlider();
  91. const std::string& addSlider(F32 val);
  92. void deleteSlider(const std::string& name);
  93. void deleteCurSlider() { deleteSlider(mMultiSlider->getCurSlider()); }
  94. F32 getMinValue() const { return mMultiSlider->getMinValue(); }
  95. F32 getMaxValue() const { return mMultiSlider->getMaxValue(); }
  96. void setLabel(const std::string& label) { if (mLabelBox) mLabelBox->setText(label); }
  97. void setLabelColor(const LLColor4& c) { mTextEnabledColor = c; }
  98. void setDisabledLabelColor(const LLColor4& c) { mTextDisabledColor = c; }
  99. boost::signals2::connection setSliderMouseDownCallback( const commit_signal_t::slot_type& cb );
  100. boost::signals2::connection setSliderMouseUpCallback( const commit_signal_t::slot_type& cb );
  101. virtual void onTabInto();
  102. virtual void setTentative(BOOL b); // marks value as tentative
  103. virtual void onCommit(); // mark not tentative, then commit
  104. virtual void setControlName(const std::string& control_name, LLView* context);
  105. static void onSliderCommit(LLUICtrl* caller, const LLSD& userdata);
  106. static void onEditorCommit(LLUICtrl* ctrl, const LLSD& userdata);
  107. static void onEditorGainFocus(LLFocusableElement* caller, void *userdata);
  108. static void onEditorChangeFocus(LLUICtrl* caller, S32 direction, void *userdata);
  109. private:
  110. void updateText();
  111. void reportInvalidData();
  112. private:
  113. const LLFontGL* mFont;
  114. BOOL mShowText;
  115. BOOL mCanEditText;
  116. S32 mPrecision;
  117. LLTextBox* mLabelBox;
  118. S32 mLabelWidth;
  119. F32 mCurValue;
  120. LLMultiSlider* mMultiSlider;
  121. LLLineEditor* mEditor;
  122. LLTextBox* mTextBox;
  123. LLUIColor mTextEnabledColor;
  124. LLUIColor mTextDisabledColor;
  125. };
  126. #endif  // LL_MULTI_SLIDERCTRL_H