00001 #ifndef HEADER_RADIOBOX_H
00002 #define HEADER_RADIOBOX_H
00003
00004 class Path;
00005
00006 #include "WiContainer.h"
00007
00008
00009
00010
00011 class RadioBox : public WiContainer {
00012 private:
00013 static const int BORDER = 4;
00014 std::string m_param;
00015 std::string m_value;
00016 protected:
00017 virtual void own_mouseButton(const MouseStroke &stroke);
00018 public:
00019 RadioBox(const std::string ¶m, const std::string &value,
00020 const Path &picture);
00021
00022 virtual void drawOn(SDL_Surface *screen);
00023 };
00024
00025 #endif