00001 #ifndef HWBUTTONBAR_H_ 00002 #define HWBUTTONBAR_H_ 00003 00004 #include <hwWidget.h> 00005 #include <vector> 00006 00007 using namespace std; 00008 00009 class hwButtonbar : public hwWidget 00010 { 00011 00012 public: 00013 00014 hwButtonbar(); 00015 00016 ~hwButtonbar(); 00017 00018 void add(const string& button); 00019 00020 string draw(); 00021 00022 string getStringValue(); 00023 00024 private: 00025 00026 vector<string> myButtons; 00027 }; 00028 00029 #endif 00030