aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llprogressview.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llprogressview.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/linden/indra/newview/llprogressview.h b/linden/indra/newview/llprogressview.h
index 2573bd1..853bab7 100644
--- a/linden/indra/newview/llprogressview.h
+++ b/linden/indra/newview/llprogressview.h
@@ -44,12 +44,12 @@ public:
44 LLProgressView(const std::string& name, const LLRect& rect); 44 LLProgressView(const std::string& name, const LLRect& rect);
45 virtual ~LLProgressView(); 45 virtual ~LLProgressView();
46 46
47 virtual EWidgetType getWidgetType() const;
48 virtual LLString getWidgetTag() const;
49
50 /*virtual*/ void draw(); 47 /*virtual*/ void draw();
48 /*virtual*/ BOOL handleMouseDown(S32 x, S32 y, MASK mask);
49 /*virtual*/ BOOL handleMouseUp(S32 x, S32 y, MASK mask);
50
51 /*virtual*/ BOOL handleHover(S32 x, S32 y, MASK mask); 51 /*virtual*/ BOOL handleHover(S32 x, S32 y, MASK mask);
52 /*virtual*/ BOOL handleKeyHere(KEY key, MASK mask, BOOL called_from_parent); 52 /*virtual*/ BOOL handleKeyHere(KEY key, MASK mask);
53 /*virtual*/ void setVisible(BOOL visible); 53 /*virtual*/ void setVisible(BOOL visible);
54 54
55 void setText(const LLString& text); 55 void setText(const LLString& text);
@@ -63,13 +63,14 @@ public:
63 static void onCancelButtonClicked( void* ); 63 static void onCancelButtonClicked( void* );
64 64
65protected: 65protected:
66 BOOL mDrawBackground;
67 F32 mPercentDone; 66 F32 mPercentDone;
68 LLString mText; 67 LLString mText;
69 LLString mMessage; 68 LLString mMessage;
70 LLButton* mCancelBtn; 69 LLButton* mCancelBtn;
71 LLFrameTimer mFadeTimer; 70 LLFrameTimer mFadeTimer;
72 LLFrameTimer mProgressTimer; 71 LLFrameTimer mProgressTimer;
72 LLRect mOutlineRect;
73 bool mMouseDownInActiveArea;
73 74
74 static LLProgressView* sInstance; 75 static LLProgressView* sInstance;
75}; 76};