From da9beb729c58ca2d91f67ab85a6728b628c27cf2 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 5 Oct 2008 19:03:25 +0000 Subject: user interface library --- src/ui/button.cc | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/ui/button.cc (limited to 'src/ui/button.cc') diff --git a/src/ui/button.cc b/src/ui/button.cc new file mode 100644 index 0000000..09e8695 --- /dev/null +++ b/src/ui/button.cc @@ -0,0 +1,29 @@ +/* + ui/button.cc + This file is part of the Osirion project and is distributed under + the terms of the GNU General Public License version 2 +*/ + +#include "ui/button.h" + +namespace ui { + +Button::Button (Widget *parent, char const *text, char const *command) : Label(parent, text) +{ + set_label("button"); + if (command) + button_command.assign(command); +} + +Button::~Button() +{ +} + +void Button::draw() +{ + Label::draw(); +} + +} + + -- cgit v1.2.3