From 420b91db29485df39fd6e724e782c449158811cb Mon Sep 17 00:00:00 2001 From: James Cook Date: Tue, 2 Jan 2007 08:33:20 +0000 Subject: Print done when done. --- indra/newview/llfloateravatartextures.h | 59 +++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 indra/newview/llfloateravatartextures.h (limited to 'indra/newview/llfloateravatartextures.h') diff --git a/indra/newview/llfloateravatartextures.h b/indra/newview/llfloateravatartextures.h new file mode 100644 index 0000000000..1366b21534 --- /dev/null +++ b/indra/newview/llfloateravatartextures.h @@ -0,0 +1,59 @@ +/** + * @file llfloateravatartextures.h + * @brief Debugging view showing underlying avatar textures and baked textures. + * + * Copyright (c) 2006-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +#ifndef LL_LLFLOATERAVATARTEXTURES_H +#define LL_LLFLOATERAVATARTEXTURES_H + +#include "llfloater.h" +#include "lluuid.h" +#include "llstring.h" + +class LLTextureCtrl; + +class LLFloaterAvatarTextures : public LLFloater +{ +public: + LLFloaterAvatarTextures(const LLUUID& id); + virtual ~LLFloaterAvatarTextures(); + + /*virtual*/ BOOL postBuild(); + /*virtual*/ void draw(); + + void refresh(); + + static LLFloaterAvatarTextures* show(const LLUUID& id); + +private: + static void onClickDump(void*); + +private: + LLUUID mID; + LLString mTitle; + LLTextureCtrl* mBakedHead; + LLTextureCtrl* mBakedEyes; + LLTextureCtrl* mBakedUpper; + LLTextureCtrl* mBakedLower; + LLTextureCtrl* mBakedSkirt; + LLTextureCtrl* mHair; + LLTextureCtrl* mMakeup; + LLTextureCtrl* mEye; + LLTextureCtrl* mShirt; + LLTextureCtrl* mUpperTattoo; + LLTextureCtrl* mUpperJacket; + LLTextureCtrl* mGloves; + LLTextureCtrl* mUndershirt; + LLTextureCtrl* mPants; + LLTextureCtrl* mLowerTattoo; + LLTextureCtrl* mShoes; + LLTextureCtrl* mSocks; + LLTextureCtrl* mJacket; + LLTextureCtrl* mUnderpants; + LLTextureCtrl* mSkirt; +}; + +#endif -- cgit v1.2.3