From 71d28bdbf0baab9302c8f458e3bdbcfc60d656d4 Mon Sep 17 00:00:00 2001 From: Steven Bennetts Date: Wed, 17 Jan 2007 23:02:00 +0000 Subject: merge release@56803 release-candidate@56833 --- indra/newview/llfloaterinspect.h | 47 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 indra/newview/llfloaterinspect.h (limited to 'indra/newview/llfloaterinspect.h') diff --git a/indra/newview/llfloaterinspect.h b/indra/newview/llfloaterinspect.h new file mode 100644 index 0000000000..68c4f729bb --- /dev/null +++ b/indra/newview/llfloaterinspect.h @@ -0,0 +1,47 @@ +/** +* @file llfloaterfriends.h +* @author Cube +* @date 2006-12-16 +* @brief Declaration of class for displaying object attributes +* +* Copyright (c) 2005-$CurrentYear$, Linden Research, Inc. +* $License$ +*/ + +#ifndef LL_LLFLOATERINSPECT_H +#define LL_LLFLOATERINSPECT_H + +#include "llfloater.h" + +//class LLTool; +class LLScrollListCtrl; +class LLUICtrl; + +class LLFloaterInspect : public LLFloater +{ +public: + virtual ~LLFloaterInspect(void); + static void show(void* ignored = NULL); + virtual BOOL postBuild(); + static void dirty(); + static LLUUID getSelectedUUID(); + virtual void draw(); + virtual void refresh(); + static BOOL isVisible(); + virtual void onFocusReceived(); + static void onClickCreatorProfile(void* ctrl); + static void onClickOwnerProfile(void* ctrl); + static void onSelectObject(LLUICtrl* ctrl, void* user_data); + LLScrollListCtrl* mObjectList; +protected: + // protected members + LLFloaterInspect(); + void setDirty() { mDirty = TRUE; } + bool mDirty; + +private: + // static data + static LLFloaterInspect* sInstance; +}; + +#endif //LL_LLFLOATERINSPECT_H \ No newline at end of file -- cgit v1.2.3