1 /*
2  * Button.cpp
3  * Copyright (C) 2007 by Bryan Duff <duff0097@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20 
21 #include "Button.h"
22 
Button()23 Button::Button()
24 {
25   xpos = ypos = xwidth = yheight = 0;
26 }
27 
Button(float xpos,float ypos,float xwidth,float yheight)28 Button::Button(float xpos, float ypos, float xwidth, float yheight)
29 {
30   setButton(xpos, ypos, xwidth, yheight);
31 }
32 
setButton(float _xpos,float _ypos,float _xwidth,float _yheight)33 void Button::setButton(float _xpos, float _ypos, float _xwidth, float _yheight)
34 {
35   xpos = _xpos;
36   ypos = _ypos;
37   xwidth = _xwidth;
38   yheight = _yheight;
39 }
40 
isMouseOver(bool recalc,float _xpos,float _ypos)41 bool Button::isMouseOver(bool recalc, float _xpos, float _ypos)
42 {
43   if(!recalc) {
44     return mouseover;
45   }
46 
47   if(_xpos > xpos && _ypos > ypos &&
48      _xpos < xwidth+xpos && _ypos < yheight+ypos) {
49     mouseover = true;
50   } else {
51     mouseover = false;
52   }
53   return mouseover;
54 }
55 
56