00001 #ifndef HWSTATUSBAR_H_ 00002 #define HWSTATUSBAR_H_ 00003 00004 #include <hwWidget.h> 00005 #include <vector> 00006 00007 class hwLabel; 00008 00009 class hwStatusbar : public hwWidget 00010 { 00011 00012 public: 00013 00014 hwStatusbar(); 00015 00016 ~hwStatusbar(); 00017 00018 string draw(); 00019 00020 void add(hwLabel* label) 00021 { 00022 myLabels.push_back(label); 00023 } 00024 00025 private: 00026 00027 vector<hwLabel*> myLabels; 00028 00029 }; 00030 00031 #endif 00032