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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llscrollingpanelparam.h
  3.  * @brief the scrolling panel containing a list of visual param 
  4.  *     panels
  5.  *
  6.  * $LicenseInfo:firstyear=2009&license=viewergpl$
  7.  * 
  8.  * Copyright (c) 2009-2010, Linden Research, Inc.
  9.  * 
  10.  * Second Life Viewer Source Code
  11.  * The source code in this file ("Source Code") is provided by Linden Lab
  12.  * to you under the terms of the GNU General Public License, version 2.0
  13.  * ("GPL"), unless you have obtained a separate licensing agreement
  14.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  15.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  16.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  17.  * 
  18.  * There are special exceptions to the terms and conditions of the GPL as
  19.  * it is applied to this Source Code. View the full text of the exception
  20.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  21.  * online at
  22.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  23.  * 
  24.  * By copying, modifying or distributing this software, you acknowledge
  25.  * that you have read and understood your obligations described above,
  26.  * and agree to abide by those obligations.
  27.  * 
  28.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  29.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  30.  * COMPLETENESS OR PERFORMANCE.
  31.  * $/LicenseInfo$
  32.  */
  33. #ifndef LL_SCROLLINGPANELPARAM_H
  34. #define LL_SCROLLINGPANELPARAM_H
  35. #include "llpanel.h"
  36. #include "llscrollingpanellist.h"
  37. class LLViewerJointMesh;
  38. class LLViewerVisualParam;
  39. class LLWearable;
  40. class LLVisualParamHint;
  41. class LLViewerVisualParam;
  42. class LLScrollingPanelParam : public LLScrollingPanel
  43. {
  44. public:
  45. LLScrollingPanelParam( const LLPanel::Params& panel_params,
  46.    LLViewerJointMesh* mesh, LLViewerVisualParam* param, BOOL allow_modify, LLWearable* wearable );
  47. virtual ~LLScrollingPanelParam();
  48. virtual void draw();
  49. virtual void setVisible( BOOL visible );
  50. virtual void updatePanel(BOOL allow_modify);
  51. static void onSliderMouseDown(LLUICtrl* ctrl, void* userdata);
  52. static void onSliderMoved(LLUICtrl* ctrl, void* userdata);
  53. static void onSliderMouseUp(LLUICtrl* ctrl, void* userdata);
  54. static void onHintMinMouseDown(void* userdata);
  55. static void onHintMinHeldDown(void* userdata);
  56. static void onHintMaxMouseDown(void* userdata);
  57. static void onHintMaxHeldDown(void* userdata);
  58. static void onHintMinMouseUp(void* userdata);
  59. static void onHintMaxMouseUp(void* userdata);
  60. void onHintMouseDown( LLVisualParamHint* hint );
  61. void onHintHeldDown( LLVisualParamHint* hint );
  62. F32 weightToPercent( F32 weight );
  63. F32 percentToWeight( F32 percent );
  64. public:
  65. // Constants for LLPanelVisualParam
  66. const static F32 PARAM_STEP_TIME_THRESHOLD;
  67. const static S32 BTN_BORDER;
  68. const static S32 PARAM_HINT_WIDTH;
  69. const static S32 PARAM_HINT_HEIGHT;
  70. const static S32 PARAM_HINT_LABEL_HEIGHT;
  71. const static S32 PARAM_PANEL_WIDTH;
  72. const static S32 PARAM_PANEL_HEIGHT; 
  73. public:
  74. LLViewerVisualParam* mParam;
  75. LLPointer<LLVisualParamHint> mHintMin;
  76. LLPointer<LLVisualParamHint> mHintMax;
  77. static S32  sUpdateDelayFrames;
  78. protected:
  79. LLTimer mMouseDownTimer; // timer for how long mouse has been held down on a hint.
  80. F32 mLastHeldTime;
  81. BOOL mAllowModify;
  82. LLWearable *mWearable;
  83. }; 
  84. #endif