diff options
author | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
commit | 420b91db29485df39fd6e724e782c449158811cb (patch) | |
tree | b471a94563af914d3ed3edd3e856d21cb1b69945 /indra/newview/llfloateravatartextures.h |
Print done when done.
Diffstat (limited to 'indra/newview/llfloateravatartextures.h')
-rw-r--r-- | indra/newview/llfloateravatartextures.h | 59 |
1 files changed, 59 insertions, 0 deletions
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 |