docs: efl_text_style: document color components in styles

RGBA should be pretty clear for most cases but it does not cost us much
to document these values as well and make the documentation maybe easier
to understand for some people.
This commit is contained in:
Stefan Schmidt 2017-08-31 14:42:26 +02:00
parent 299a507319
commit 6dd83b3034
1 changed files with 40 additions and 40 deletions

View File

@ -68,10 +68,10 @@ interface Efl.Text.Style {
[[Color of text, excluding style]]
values
{
r: ubyte;
g: ubyte;
b: ubyte;
a: ubyte;
r: ubyte; [[Red component]]
g: ubyte; [[Green component]]
b: ubyte; [[Blue component]]
a: ubyte; [[Alpha component]]
}
}
@ -85,10 +85,10 @@ interface Efl.Text.Style {
@property backing_color {
values
{
r: ubyte;
g: ubyte;
b: ubyte;
a: ubyte;
r: ubyte; [[Red component]]
g: ubyte; [[Green component]]
b: ubyte; [[Blue component]]
a: ubyte; [[Alpha component]]
}
}
@ -105,10 +105,10 @@ interface Efl.Text.Style {
[[Color of normal underline style]]
values
{
r: ubyte;
g: ubyte;
b: ubyte;
a: ubyte;
r: ubyte; [[Red component]]
g: ubyte; [[Green component]]
b: ubyte; [[Blue component]]
a: ubyte; [[Alpha component]]
}
}
@ -126,10 +126,10 @@ interface Efl.Text.Style {
[[Color of dashed underline style]]
values
{
r: ubyte;
g: ubyte;
b: ubyte;
a: ubyte;
r: ubyte; [[Red component]]
g: ubyte; [[Green component]]
b: ubyte; [[Blue component]]
a: ubyte; [[Alpha component]]
}
}
@ -165,10 +165,10 @@ interface Efl.Text.Style {
[[Color of underline2 style]]
values
{
r: ubyte;
g: ubyte;
b: ubyte;
a: ubyte;
r: ubyte; [[Red component]]
g: ubyte; [[Green component]]
b: ubyte; [[Blue component]]
a: ubyte; [[Alpha component]]
}
}
@ -185,10 +185,10 @@ interface Efl.Text.Style {
[[Color of strikethrough_style]]
values
{
r: ubyte;
g: ubyte;
b: ubyte;
a: ubyte;
r: ubyte; [[Red component]]
g: ubyte; [[Green component]]
b: ubyte; [[Blue component]]
a: ubyte; [[Alpha component]]
}
}
@ -203,10 +203,10 @@ interface Efl.Text.Style {
[[Color of outline effect]]
values
{
r: ubyte;
g: ubyte;
b: ubyte;
a: ubyte;
r: ubyte; [[Red component]]
g: ubyte; [[Green component]]
b: ubyte; [[Blue component]]
a: ubyte; [[Alpha component]]
}
}
@ -224,10 +224,10 @@ interface Efl.Text.Style {
[[Color of shadow effect]]
values
{
r: ubyte;
g: ubyte;
b: ubyte;
a: ubyte;
r: ubyte; [[Red component]]
g: ubyte; [[Green component]]
b: ubyte; [[Blue component]]
a: ubyte; [[Alpha component]]
}
}
@ -236,10 +236,10 @@ interface Efl.Text.Style {
[[Color of glow effect]]
values
{
r: ubyte;
g: ubyte;
b: ubyte;
a: ubyte;
r: ubyte; [[Red component]]
g: ubyte; [[Green component]]
b: ubyte; [[Blue component]]
a: ubyte; [[Alpha component]]
}
}
@ -248,10 +248,10 @@ interface Efl.Text.Style {
[[Second color of the glow effect]]
values
{
r: ubyte;
g: ubyte;
b: ubyte;
a: ubyte;
r: ubyte; [[Red component]]
g: ubyte; [[Green component]]
b: ubyte; [[Blue component]]
a: ubyte; [[Alpha component]]
}
}