Skip to content
Snippets Groups Projects
Commit 7a674fc9 authored by Vadim ProductEngine's avatar Vadim ProductEngine
Browse files

STORM-698 FIXED Icon control can now respect floater transparency (if its...

STORM-698 FIXED Icon control can now respect floater transparency (if its "use_draw_context_alpha" param set to false).
parent d4d292bb
No related branches found
No related tags found
No related merge requests found
...@@ -41,6 +41,7 @@ static LLDefaultChildRegistry::Register<LLIconCtrl> r("icon"); ...@@ -41,6 +41,7 @@ static LLDefaultChildRegistry::Register<LLIconCtrl> r("icon");
LLIconCtrl::Params::Params() LLIconCtrl::Params::Params()
: image("image_name"), : image("image_name"),
color("color"), color("color"),
use_draw_context_alpha("use_draw_context_alpha", true),
scale_image("scale_image") scale_image("scale_image")
{ {
tab_stop = false; tab_stop = false;
...@@ -51,6 +52,7 @@ LLIconCtrl::LLIconCtrl(const LLIconCtrl::Params& p) ...@@ -51,6 +52,7 @@ LLIconCtrl::LLIconCtrl(const LLIconCtrl::Params& p)
: LLUICtrl(p), : LLUICtrl(p),
mColor(p.color()), mColor(p.color()),
mImagep(p.image), mImagep(p.image),
mUseDrawContextAlpha(p.use_draw_context_alpha),
mPriority(0), mPriority(0),
mDrawWidth(0), mDrawWidth(0),
mDrawHeight(0) mDrawHeight(0)
...@@ -71,7 +73,8 @@ void LLIconCtrl::draw() ...@@ -71,7 +73,8 @@ void LLIconCtrl::draw()
{ {
if( mImagep.notNull() ) if( mImagep.notNull() )
{ {
mImagep->draw(getLocalRect(), mColor.get() % getDrawContext().mAlpha ); const F32 alpha = mUseDrawContextAlpha ? getDrawContext().mAlpha : getCurrentTransparency();
mImagep->draw(getLocalRect(), mColor.get() % alpha );
} }
LLUICtrl::draw(); LLUICtrl::draw();
......
...@@ -48,6 +48,7 @@ class LLIconCtrl ...@@ -48,6 +48,7 @@ class LLIconCtrl
{ {
Optional<LLUIImage*> image; Optional<LLUIImage*> image;
Optional<LLUIColor> color; Optional<LLUIColor> color;
Optional<bool> use_draw_context_alpha;
Ignored scale_image; Ignored scale_image;
Params(); Params();
}; };
...@@ -79,6 +80,10 @@ class LLIconCtrl ...@@ -79,6 +80,10 @@ class LLIconCtrl
S32 mDrawWidth ; S32 mDrawWidth ;
S32 mDrawHeight ; S32 mDrawHeight ;
// If set to true (default), use the draw context transparency.
// If false, will use transparency returned by getCurrentTransparency(). See STORM-698.
bool mUseDrawContextAlpha;
private: private:
LLUIColor mColor; LLUIColor mColor;
LLPointer<LLUIImage> mImagep; LLPointer<LLUIImage> mImagep;
......
<?xml version="1.0" encoding="utf-8" standalone="yes" ?> <?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<avatar_icon default_icon_name="Generic_Person_Large"> <avatar_icon
default_icon_name="Generic_Person_Large"
use_draw_context_alpha="false">
</avatar_icon> </avatar_icon>
...@@ -3,5 +3,6 @@ ...@@ -3,5 +3,6 @@
tab_stop="false" tab_stop="false"
mouse_opaque="false" mouse_opaque="false"
name="icon" name="icon"
use_draw_context_alpha="true"
follows="left|top"> follows="left|top">
</icon> </icon>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment