00001 #ifndef HWBUTTON_H 00002 #define HWBUTTON_H 00003 00004 #include <hwWidget.h> 00005 00006 class hwButton : public hwWidget 00007 { 00008 public: 00009 00010 hwButton(const string& label); 00011 00012 ~hwButton(); 00013 00014 string draw(); 00015 00016 void setLabel(const string& label) 00017 { 00018 myLabel = label; 00019 } 00020 00021 private: 00022 00023 string myLabel; 00024 00025 }; 00026 00027 #endif 00028