diff options
author | Yohann Ferreira <bertram@cegetel.net> | 2008-04-26 00:13:11 +0000 |
---|---|---|
committer | Yohann Ferreira <bertram@cegetel.net> | 2008-04-26 00:13:11 +0000 |
commit | a6731dd30a4ab7b2b19af18295293c13895b664d (patch) | |
tree | 44a6bd6b34e9995298d19a44b6019ab3235b7563 /src/gui/progressbar.h | |
parent | ba366046e31523664b2deab4d48d9962aa8bac7e (diff) | |
download | mana-a6731dd30a4ab7b2b19af18295293c13895b664d.tar.gz mana-a6731dd30a4ab7b2b19af18295293c13895b664d.tar.bz2 mana-a6731dd30a4ab7b2b19af18295293c13895b664d.tar.xz mana-a6731dd30a4ab7b2b19af18295293c13895b664d.zip |
Made smooth color changing and smooth progress optional.
Diffstat (limited to 'src/gui/progressbar.h')
-rw-r--r-- | src/gui/progressbar.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/gui/progressbar.h b/src/gui/progressbar.h index eb0795fa..ddabbb77 100644 --- a/src/gui/progressbar.h +++ b/src/gui/progressbar.h @@ -98,10 +98,28 @@ class ProgressBar : public gcn::Widget { Uint8 getBlue() { return mBlue; } + /** + * Set wether the progress is moved smoothly + */ + void + setSmoothProgress(bool smoothProgress) + { mSmoothProgress = smoothProgress; } + + /** + * Set wether the color changing is made smoothly + */ + void + setSmoothColorChange(bool smoothColorChange) + { mSmoothColorChange = smoothColorChange; } + + private: float mProgress, mProgressToGo; + bool mSmoothProgress; + Uint8 mRed, mGreen, mBlue; Uint8 mRedToGo, mGreenToGo, mBlueToGo; + bool mSmoothColorChange; static ImageRect mBorder; static int mInstances; |