00001 #ifndef __GLICT_PROGRESSBAR_H 00002 #define __GLICT_PROGRESSBAR_H 00003 #include <GLICT/container.h> 00004 00005 class glictProgressBar : public glictContainer { 00006 public: 00007 glictProgressBar(); 00008 ~glictProgressBar(); 00009 00010 void Paint(); 00011 00012 void SetValue(float newpcnt); 00013 void AddValue(float pcnt); 00014 float GetValue(); 00015 00016 private: 00017 float percent; 00018 }; 00019 00020 #endif