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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llfloatercustomize.h
  3.  * @brief The customize avatar floater, triggered by "Appearance..."
  4.  *
  5.  * $LicenseInfo:firstyear=2009&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2009-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_LLPANELEDITWEARABLE_H
  33. #define LL_LLPANELEDITWEARABLE_H
  34. #include "llpanel.h"
  35. #include "llscrollingpanellist.h"
  36. #include "llmodaldialog.h"
  37. #include "llwearabledictionary.h"
  38. class LLWearable;
  39. class LLTextEditor;
  40. class LLTextBox;
  41. class LLViewerVisualParam;
  42. class LLVisualParamHint;
  43. class LLViewerJointMesh;
  44. class LLAccordionCtrlTab;
  45. class LLPanelEditWearable : public LLPanel
  46. {
  47. public:
  48. LLPanelEditWearable( );
  49. virtual ~LLPanelEditWearable();
  50. /*virtual*/ BOOL  postBuild();
  51. /*virtual*/ BOOL isDirty() const; // LLUICtrl
  52. /*virtual*/ void draw();
  53. LLWearable*  getWearable() { return mWearablePtr; }
  54. void setWearable(LLWearable *wearable);
  55. void saveChanges();
  56. void revertChanges();
  57. static void onRevertButtonClicked(void* userdata);
  58. private:
  59. typedef std::map<F32, LLViewerVisualParam*> value_map_t;
  60. void showWearable(LLWearable* wearable, BOOL show);
  61. void initializePanel();
  62. void updateScrollingPanelUI();
  63. LLPanel* getPanel(EWearableType type);
  64. void getSortedParams(value_map_t &sorted_params, const std::string &edit_group);
  65. void buildParamList(LLScrollingPanelList *panel_list, value_map_t &sorted_params, LLAccordionCtrlTab *tab);
  66. // the pointer to the wearable we're editing. NULL means we're not editing a wearable.
  67. LLWearable *mWearablePtr;
  68. // these are constant no matter what wearable we're editing
  69. LLButton *mBtnRevert;
  70. LLButton *mBtnBack;
  71. LLTextBox *mPanelTitle;
  72. LLTextBox *mDescTitle;
  73. // This text editor reference will change each time we edit a new wearable - 
  74. // it will be grabbed from the currently visible panel
  75. LLTextEditor *mTextEditor;
  76. // The following panels will be shown/hidden based on what wearable we're editing
  77. // body parts
  78. LLPanel *mPanelShape;
  79. LLPanel *mPanelSkin;
  80. LLPanel *mPanelEyes;
  81. LLPanel *mPanelHair;
  82. //clothes
  83. LLPanel *mPanelShirt;
  84. LLPanel *mPanelPants;
  85. LLPanel *mPanelShoes;
  86. LLPanel *mPanelSocks;
  87. LLPanel *mPanelJacket;
  88. LLPanel *mPanelGloves;
  89. LLPanel *mPanelUndershirt;
  90. LLPanel *mPanelUnderpants;
  91. LLPanel *mPanelSkirt;
  92. LLPanel *mPanelAlpha;
  93. LLPanel *mPanelTattoo;
  94. };
  95. #endif