diff options
author | Jared Adams <jaxad0127@gmail.com> | 2010-02-10 14:51:28 -0700 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-02-10 14:52:11 -0700 |
commit | 6c7bf198fa165c971565f069081c603f068014b1 (patch) | |
tree | 28056d3d94f9e8ae3477c39102e4cd5c1bd71267 /src/gui/widgets/progressbar.h | |
parent | 7ec3ae46caf310cf83ece9e90e8e0f668179144b (diff) | |
download | mana-6c7bf198fa165c971565f069081c603f068014b1.tar.gz mana-6c7bf198fa165c971565f069081c603f068014b1.tar.bz2 mana-6c7bf198fa165c971565f069081c603f068014b1.tar.xz mana-6c7bf198fa165c971565f069081c603f068014b1.zip |
Improve look and utility of the SkillDialog
Diffstat (limited to 'src/gui/widgets/progressbar.h')
-rw-r--r-- | src/gui/widgets/progressbar.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gui/widgets/progressbar.h b/src/gui/widgets/progressbar.h index 4a314690..daa872a1 100644 --- a/src/gui/widgets/progressbar.h +++ b/src/gui/widgets/progressbar.h @@ -26,6 +26,7 @@ #include <string> +class Graphics; class ImageRect; /** @@ -112,6 +113,13 @@ class ProgressBar : public gcn::Widget void setSmoothColorChange(bool smoothColorChange) { mSmoothColorChange = smoothColorChange; } + /** + * Renders a progressbar with the given properties. + */ + static void render(Graphics *graphics, const gcn::Rectangle &area, + const gcn::Color &color, float progress, + const std::string &text = ""); + private: float mProgress, mProgressToGo; bool mSmoothProgress; |