diff options
author | leyla_linden <none@none> | 2010-12-21 17:01:03 -0800 |
---|---|---|
committer | leyla_linden <none@none> | 2010-12-21 17:01:03 -0800 |
commit | 6175e8147ff85073c67de89f08e5ecea891e1ef8 (patch) | |
tree | d374000efbbb2e866123d68d883c3fcdaa718fd3 /indra/newview/llfloatermodelwizard.h | |
parent | 4e98895719d963a72346a7bf59323cdb602f98dd (diff) |
fixed wizard model not previewing issues and added pan/zoom
Diffstat (limited to 'indra/newview/llfloatermodelwizard.h')
-rw-r--r-- | indra/newview/llfloatermodelwizard.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llfloatermodelwizard.h b/indra/newview/llfloatermodelwizard.h index ab69d93b63..b7fd28aa9d 100644 --- a/indra/newview/llfloatermodelwizard.h +++ b/indra/newview/llfloatermodelwizard.h @@ -36,6 +36,11 @@ public: /*virtual*/ BOOL postBuild(); void draw(); + BOOL handleMouseDown(S32 x, S32 y, MASK mask); + BOOL handleMouseUp(S32 x, S32 y, MASK mask); + BOOL handleHover(S32 x, S32 y, MASK mask); + BOOL handleScrollWheel(S32 x, S32 y, S32 clicks); + private: enum EWizardState { @@ -62,6 +67,8 @@ private: LLRect mPreviewRect; int mState; + S32 mLastMouseX; + S32 mLastMouseY; }; |