diff options
Diffstat (limited to 'indra/newview/llprogressview.h')
-rw-r--r-- | indra/newview/llprogressview.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/newview/llprogressview.h b/indra/newview/llprogressview.h index b284e20c9e..8f242b865a 100644 --- a/indra/newview/llprogressview.h +++ b/indra/newview/llprogressview.h @@ -48,6 +48,9 @@ public: virtual LLString getWidgetTag() const; /*virtual*/ void draw(); + /*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*/ BOOL handleKeyHere(KEY key, MASK mask, BOOL called_from_parent); /*virtual*/ void setVisible(BOOL visible); @@ -70,8 +73,10 @@ protected: LLButton* mCancelBtn; LLFrameTimer mFadeTimer; LLFrameTimer mProgressTimer; - + LLRect mOutlineRect; + bool mMouseDownInActiveArea; static LLProgressView* sInstance; + }; #endif // LL_LLPROGRESSVIEW_H |