Table of Contents

Efl.Gfx.Hint.hint_size_min

Description

Hints on the object's minimum size.

This is not a size enforcement in any way, it's just a hint that should be used whenever appropriate. The object container is in charge of fetching this property and placing the object accordingly.

Value 0 will be treated as unset hint components, when queried by managers.

This property is meant to be set by applications and not by EFL itself. Use this to request a specific size (treated as minimum size).
It is an error for the Efl.Gfx.Hint.hint_size_max to be smaller in either axis than Efl.Gfx.Hint.hint_size_min. In this scenario, the max size hint will be prioritized over the user min size hint.

Since 1.22

Values

Signature

@property hint_size_min @pure_virtual {
    get {}
    set {}
    values {
        sz: Eina.Size2D;
    }
}

C signature

Eina_Size2D efl_gfx_hint_size_min_get(const Eo *obj);
void efl_gfx_hint_size_min_set(Eo *obj, Eina_Size2D sz);

Implemented by