+BUILT_SOURCES += \
+ lib/efl/interfaces/efl_interface_color.eo.c \
+ lib/efl/interfaces/efl_interface_color.eo.h \
+ lib/efl/interfaces/efl_interface_file.eo.c \
+ lib/efl/interfaces/efl_interface_file.eo.h \
+ lib/efl/interfaces/efl_interface_gui_object.eo.c \
+ lib/efl/interfaces/efl_interface_gui_object.eo.h \
+ lib/efl/interfaces/efl_interface_image.eo.c \
+ lib/efl/interfaces/efl_interface_image.eo.h \
+ lib/efl/interfaces/efl_interface_text.eo.c \
+ lib/efl/interfaces/efl_interface_text.eo.h \
+ lib/efl/interfaces/efl_interface_text_properties.eo.c \
+ lib/efl/interfaces/efl_interface_text_properties.eo.h
+
+efleolianfilesdir = $(datadir)/eolian/include/efl-@VMAJ@
+efleolianfiles_DATA = \
+ lib/efl/interfaces/efl_interface_color.eo \
+ lib/efl/interfaces/efl_interface_file.eo \
+ lib/efl/interfaces/efl_interface_gui_object.eo \
+ lib/efl/interfaces/efl_interface_image.eo \
+ lib/efl/interfaces/efl_interface_text.eo \
+ lib/efl/interfaces/efl_interface_text_properties.eo
+
+EXTRA_DIST += \
+ ${efleolianfiles_DATA}
+
installed_eflheadersdir = $(includedir)/efl-@VMAJ@
dist_installed_eflheaders_DATA = \
lib/efl/Efl_Config.h
+interface Efl_Interface_Part
+{
+ legacy_prefix: null;
+}
+
interface Efl_Interface_Color_Enum_Part (Efl_Interface_Part)
{
+ legacy_prefix: null;
}
interface Efl_Interface_Color_Text_Part (Efl_Interface_Part)
{
+ legacy_prefix: null;
}
interface Efl_Interface_Color {
+ legacy_prefix: null;
properties {
color {
set {
interface Efl_Interface_Gui_Object {
+ legacy_prefix: null;
properties {
size {
set {
return Evas_Object * @warn_unused;
}
}
+ visibility {
+ set {
+ /*@ Makes the given Evas object visible or invisible. */
+ legacy null;
+ }
+ get {
+ /*@ Retrieves whether or not the given Evas object is visible. */
+ legacy null;
+ }
+ values {
+ Eina_Bool v; /*@ @c EINA_TRUE if to make the object visible, @c EINA_FALSE otherwise */
+ }
+ }
+ }
+ methods {
stack_above {
/*@
Stack @p obj immediately above @p above
@see evas_object_raise() */
}
- visibility {
- set {
- /*@ Makes the given Evas object visible or invisible. */
- legacy null;
- }
- get {
- /*@ Retrieves whether or not the given Evas object is visible. */
- legacy evas_object_visible_get;
- }
- values {
- Eina_Bool v; /*@ @c EINA_TRUE if to make the object visible, @c EINA_FALSE otherwise */
- }
- }
}
}