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/lltoolindividual.h |
Print done when done.
Diffstat (limited to 'indra/newview/lltoolindividual.h')
-rw-r--r-- | indra/newview/lltoolindividual.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/indra/newview/lltoolindividual.h b/indra/newview/lltoolindividual.h new file mode 100644 index 0000000000..b5fe789d50 --- /dev/null +++ b/indra/newview/lltoolindividual.h @@ -0,0 +1,41 @@ +/** + * @file lltoolindividual.h + * @brief LLToolIndividual class header file + * + * Copyright (c) 2002-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +#ifndef LL_LLTOOLINDIVIDUAL_H +#define LL_LLTOOLINDIVIDUAL_H + +#include "lltool.h" + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// Class lltoolindividual +// +// A tool to select individual objects rather than linked sets. +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +class LLToolIndividual : public LLTool +{ +public: + LLToolIndividual(); + virtual ~LLToolIndividual(); + + virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask); + virtual BOOL handleDoubleClick(S32 x, S32 y, MASK mask); + virtual void handleSelect(); + //virtual void handleDeselect(); + //virtual void render(); + + static void pickCallback(S32 x, S32 y, MASK mask); + +protected: + +}; + +extern LLToolIndividual* gToolIndividual; + + +#endif // LL_LLTOOLINDIVIDUAL_H |