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/llpanelcontents.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 indra/newview/llpanelcontents.h (limited to 'indra/newview/llpanelcontents.h') 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 -- cgit v1.2.3