efl/legacy/elementary/src/lib/elm_bg.eo

110 lines
3.5 KiB
Plaintext

class Elm_Bg (Elm_Layout, Efl.File)
{
eo_prefix: elm_obj_bg;
properties {
option {
set {
/*@
Set the mode of display for a given background widget's image
This sets how the background widget will display its image. This
will only work if the elm_bg_file_set() was previously called with
an image file on @a obj. The image can be display tiled, scaled,
centered or stretched. #ELM_BG_OPTION_SCALE by default.
@see elm_bg_option_get()
@ingroup Bg */
}
get {
/*@
Get the mode of display for a given background widget's image
@return The image displaying mode in use for @a obj or #ELM_BG_OPTION_LAST,
on errors.
@see elm_bg_option_set() for more details
@ingroup Bg */
}
values {
Elm_Bg_Option option; /*@ The desired background option (see #Elm_Bg_Option) */
}
}
color {
set {
/*@
Set the color on a given background widget
This sets the color used for the background rectangle, in RGB
format. Each color component's range is from 0 to 255.
@note You probably only want to use this function if you haven't
previously called elm_bg_file_set(), so that you just want a solid
color background.
@note You can reset the color by setting @p r, @p g, @p b as -1, -1, -1.
@see elm_bg_color_get()
@ingroup Bg */
legacy: null; /* legacy doesn't have 'a' param */
}
get {
/*@
Get the color set on a given background widget
@note Use @c NULL pointers on the file components you're not
interested in: they'll be ignored by the function.
@see elm_bg_color_get() for more details
@ingroup Bg */
legacy: null; /* legacy doesn't have 'a' param */
}
values {
int r; /*@ The red color component's value */
int g; /*@ The green color component's value */
int b; /*@ The blue color component's value */
int a; /*@ The blue color component's value */
}
}
load_size {
set {
/*@
Set the size of the pixmap representation of the image set on a
given background widget.
@warning This function just makes sense if an image file was set on
@p obj, with elm_bg_file_set().
This function sets a new size for pixmap representation of the
given bg image. It allows for the image to be loaded already in the
specified size, reducing the memory usage and load time (for
example, when loading a big image file with its load size set to a
smaller size)
@note This is just a hint for the underlying system. The real size
of the pixmap may differ depending on the type of image being
loaded, being bigger than requested.
@ingroup Bg */
}
values {
Evas_Coord w; /*@ The new width of the image pixmap representation. */
Evas_Coord h; /*@ The new height of the image pixmap representation. */
}
}
}
implements {
class.constructor;
Eo.Base.constructor;
Evas.Object_Smart.add;
Elm_Layout.content_aliases.get;
Elm_Layout.sizing_eval;
Efl.File.file.set;
Efl.File.file.get;
}
}