diff options
Diffstat (limited to 'gui/widget.h')
| -rw-r--r-- | gui/widget.h | 8 | 
1 files changed, 0 insertions, 8 deletions
| diff --git a/gui/widget.h b/gui/widget.h index e57f3cde51..f87816b2e3 100644 --- a/gui/widget.h +++ b/gui/widget.h @@ -123,7 +123,6 @@ public:  	virtual int16	getAbsX() const	{ return _x + _boss->getChildX(); }  	virtual int16	getAbsY() const	{ return _y + _boss->getChildY(); } -	virtual Common::Rect getBossClipRect() const;  	virtual void setPos(int x, int y) { _x = x; _y = y; }  	virtual void setSize(int w, int h) { _w = w; _h = h; } @@ -240,7 +239,6 @@ public:  	~PicButtonWidget();  	void setGfx(const Graphics::Surface *gfx, int statenum = kPicButtonStateEnabled); -	void setAGfx(const Graphics::TransparentSurface *gfx, int statenum = kPicButtonStateEnabled, ThemeEngine::AutoScaleMode mode = ThemeEngine::kAutoScaleNone);  	void setGfx(int w, int h, int r, int g, int b, int statenum = kPicButtonStateEnabled);  	void useAlpha(int alpha) { _alpha = alpha; } @@ -251,12 +249,9 @@ protected:  	void drawWidget();  	Graphics::Surface _gfx[kPicButtonStateMax + 1]; -	Graphics::TransparentSurface _agfx[kPicButtonStateMax + 1];  	int _alpha;  	bool _transparency;  	bool _showButton; -	bool _isAlpha; -	ThemeEngine::AutoScaleMode _mode;  };  /* CheckboxWidget */ @@ -375,7 +370,6 @@ public:  	void setGfx(const Graphics::Surface *gfx);  	void setGfx(int w, int h, int r, int g, int b); -	void setAGfx(const Graphics::TransparentSurface *gfx, ThemeEngine::AutoScaleMode mode = ThemeEngine::kAutoScaleNone);  	void useAlpha(int alpha) { _alpha = alpha; }  	void useThemeTransparency(bool enable) { _transparency = enable; } @@ -384,10 +378,8 @@ protected:  	void drawWidget();  	Graphics::Surface _gfx; -	Graphics::TransparentSurface _agfx;  	int _alpha;  	bool _transparency; -	ThemeEngine::AutoScaleMode _mode;  };  /* ContainerWidget */ | 
