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/llmemoryview.h |
Print done when done.
Diffstat (limited to 'indra/newview/llmemoryview.h')
-rw-r--r-- | indra/newview/llmemoryview.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/indra/newview/llmemoryview.h b/indra/newview/llmemoryview.h new file mode 100644 index 0000000000..f32242d06c --- /dev/null +++ b/indra/newview/llmemoryview.h @@ -0,0 +1,31 @@ +/** + * @file llmemoryview.h + * @brief LLMemoryView class definition + * + * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +#ifndef LL_LLMEMORYVIEW_H +#define LL_LLMEMORYVIEW_H + +#include "llview.h" + +class LLMemoryView : public LLView +{ +public: + LLMemoryView(const std::string& name, const LLRect& rect); + virtual ~LLMemoryView(); + + virtual EWidgetType getWidgetType() const; + virtual LLString getWidgetTag() const; + + virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask); + virtual BOOL handleMouseUp(S32 x, S32 y, MASK mask); + virtual BOOL handleHover(S32 x, S32 y, MASK mask); + virtual void draw(); + +private: +}; + +#endif |