diff options
Diffstat (limited to 'gui/widget.h')
| -rw-r--r-- | gui/widget.h | 7 | 
1 files changed, 1 insertions, 6 deletions
| diff --git a/gui/widget.h b/gui/widget.h index 4f181954b5..7f6f0c0533 100644 --- a/gui/widget.h +++ b/gui/widget.h @@ -201,17 +201,12 @@ public:  	void handleMouseDown(int x, int y, int button, int clickCount);  	void handleMouseEntered(int button)	{ if (_duringPress) { setFlags(WIDGET_PRESSED); } else { setFlags(WIDGET_HILITED); } draw(); }  	void handleMouseLeft(int button)	{ clearFlags(WIDGET_HILITED | WIDGET_PRESSED); draw(); } -	void handleTickle();  	void setHighLighted(bool enable);  	void setPressedState(); -	void startAnimatePressedState(); -	void stopAnimatePressedState(); - -	void lostFocusWidget() { stopAnimatePressedState(); } +	void setUnpressedState();  protected:  	void drawWidget(); -	void wantTickle(bool tickled);  	bool _duringPress;  private:  	uint32 _lastTime; | 
