summaryrefslogtreecommitdiff
path: root/src/gui/widgets/button.h
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-07-05 00:52:39 +0200
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-08-11 02:39:48 +0200
commit2de4411e9b2b81986f4b9e7c645894e59842590e (patch)
tree6b67b700991efa739abea72a08c813770405e0e2 /src/gui/widgets/button.h
parent7115ac62eb2069d378d67758a3cd221e6620975d (diff)
downloadMana-2de4411e9b2b81986f4b9e7c645894e59842590e.tar.gz
Mana-2de4411e9b2b81986f4b9e7c645894e59842590e.tar.bz2
Mana-2de4411e9b2b81986f4b9e7c645894e59842590e.tar.xz
Mana-2de4411e9b2b81986f4b9e7c645894e59842590e.zip
Changed the Social button to an image one.
I also made the client able to keep the old behaviour, and i changed the button api to not require the icon frames size as it could easily guess them.
Diffstat (limited to 'src/gui/widgets/button.h')
-rw-r--r--src/gui/widgets/button.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/widgets/button.h b/src/gui/widgets/button.h
index cfc5043e..39b3eb75 100644
--- a/src/gui/widgets/button.h
+++ b/src/gui/widgets/button.h
@@ -72,15 +72,14 @@ class Button : public gcn::Button
* Standard, Highlighted, Pressed, and Disabled.
* If the image is too short, the missing states won't be loaded.
*/
- void setButtonIcon(const std::string& iconFile = std::string(),
- int frameHeight = 0, int frameWidth = 0);
+ void setButtonIcon(const std::string& iconFile = std::string());
/**
* Set the button popup text when hovering it for a few seconds.
*
* @note: An empty text will disable the popup.
*/
- void setButtonPopupText(const std::string& text = "");
+ void setButtonPopupText(const std::string& text = std::string());
void logic();
void mouseMoved(gcn::MouseEvent &event);