Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2009-08-18 09:24:15 +0000
committerStijn Buys <ingar@osirion.org>2009-08-18 09:24:15 +0000
commitf030154fe727e25a2afe1f78b3998c2d2dba95e4 (patch)
treecd92baf9e4fa8a136523b9eb570e9811846c9250 /src/ui/button.h
parent5636fad174f0bcff857c357c394c4cc8d424b302 (diff)
astyle cleanup, corrects not loading of material textures
Diffstat (limited to 'src/ui/button.h')
-rw-r--r--src/ui/button.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/ui/button.h b/src/ui/button.h
index 24097ae..a0aac72 100644
--- a/src/ui/button.h
+++ b/src/ui/button.h
@@ -16,39 +16,39 @@ namespace ui
class Button : public Label
{
public:
- Button(Widget *parent, const char *text=0, const char *command=0);
+ Button(Widget *parent, const char *text = 0, const char *command = 0);
~Button();
-
+
/// set the command this button will execute
void set_command(const std::string &command);
-
+
/// set the command this button will execute
void set_command(const char *command);
-
+
/// the command this button executes
inline const std::string & command() const {
return button_command;
}
-
+
/// print button description
virtual void print(const size_t indent) const;
-
+
/// called when the mouse enters the widget
virtual void on_mouseover(const math::Vector2f &cursor);
-
+
/// called when the widget receives a key press
virtual bool on_keypress(const int key, const unsigned int modifier);
-
+
/// called when the widget receives a key release
virtual bool on_keyrelease(const int key, const unsigned int modifier);
-
+
protected:
/// draw the button border
virtual void draw_border();
-
+
/// draw the button
virtual void draw();
-
+
private:
std::string button_command;
};