diff options
author | Ira Rice <irarice@gmail.com> | 2009-03-14 14:28:26 -0600 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-03-14 14:28:26 -0600 |
commit | 20ad38045482254b9875ee80de44a9b6f9367d2d (patch) | |
tree | d49324d952c6c4197464d98bda1043919594cd13 /src/gui/widgets/textpreview.h | |
parent | 3575c7a606c2d24c0d444e9999892c0390fa5ae8 (diff) | |
download | mana-20ad38045482254b9875ee80de44a9b6f9367d2d.tar.gz mana-20ad38045482254b9875ee80de44a9b6f9367d2d.tar.bz2 mana-20ad38045482254b9875ee80de44a9b6f9367d2d.tar.xz mana-20ad38045482254b9875ee80de44a9b6f9367d2d.zip |
Exposed the progress bar colors to the color management tab.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/widgets/textpreview.h')
-rw-r--r-- | src/gui/widgets/textpreview.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/gui/widgets/textpreview.h b/src/gui/widgets/textpreview.h index a73eb638..8e116262 100644 --- a/src/gui/widgets/textpreview.h +++ b/src/gui/widgets/textpreview.h @@ -45,6 +45,16 @@ class TextPreview : public gcn::Widget } /** + * Sets the text to use the set alpha value. + * + * @param alpha whether to use alpha values for the text or not + */ + inline void useTextAlpha(bool alpha) + { + mTextAlpha = alpha; + } + + /** * Sets the color the text background is drawn in. This is only the * rectangle directly behind the text, not to full widget. * @@ -123,6 +133,7 @@ class TextPreview : public gcn::Widget const gcn::Color* mBGColor; const gcn::Color* mTextBGColor; static float mAlpha; + bool mTextAlpha; bool mOpaque; bool mShadow; bool mOutline; |