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/llpanelcontents.h |
Print done when done.
Diffstat (limited to 'indra/newview/llpanelcontents.h')
-rw-r--r-- | indra/newview/llpanelcontents.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/indra/newview/llpanelcontents.h b/indra/newview/llpanelcontents.h new file mode 100644 index 0000000000..273ab20bc7 --- /dev/null +++ b/indra/newview/llpanelcontents.h @@ -0,0 +1,39 @@ +/** + * @file llpanelcontents.h + * @brief Object contents panel in the tools floater. + * + * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +#ifndef LL_LLPANELCONTENTS_H +#define LL_LLPANELCONTENTS_H + +#include "v3math.h" +#include "llpanel.h" + +class LLButton; +class LLPanelInventory; +class LLViewerObject; +class LLCheckBoxCtrl; +class LLSpinCtrl; + +class LLPanelContents : public LLPanel +{ +public: + virtual BOOL LLPanelContents::postBuild(); + LLPanelContents(const std::string& name); + virtual ~LLPanelContents(); + + void refresh(); + + static void onClickNewScript( void* userdata); + +protected: + void getState(LLViewerObject *object); + +public: + LLPanelInventory* mPanelInventory; +}; + +#endif |