/usr/include/elementary-1/elm_table_eo.h is in libelementary-dev 1.8.5-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | #define ELM_OBJ_TABLE_CLASS elm_obj_table_class_get()
const Eo_Class *elm_obj_table_class_get(void) EINA_CONST;
extern EAPI Eo_Op ELM_OBJ_TABLE_BASE_ID;
enum
{
ELM_OBJ_TABLE_SUB_ID_HOMOGENEOUS_SET,
ELM_OBJ_TABLE_SUB_ID_HOMOGENEOUS_GET,
ELM_OBJ_TABLE_SUB_ID_PADDING_SET,
ELM_OBJ_TABLE_SUB_ID_PADDING_GET,
ELM_OBJ_TABLE_SUB_ID_PACK,
ELM_OBJ_TABLE_SUB_ID_UNPACK,
ELM_OBJ_TABLE_SUB_ID_PACK_SET,
ELM_OBJ_TABLE_SUB_ID_PACK_GET,
ELM_OBJ_TABLE_SUB_ID_CLEAR,
ELM_OBJ_TABLE_SUB_ID_CHILD_GET,
ELM_OBJ_TABLE_SUB_ID_LAST
};
#define ELM_OBJ_TABLE_ID(sub_id) (ELM_OBJ_TABLE_BASE_ID + sub_id)
/**
* @def elm_obj_table_homogeneous_set
* @since 1.8
*
* @brief Set the homogeneous layout in the table
*
* @param[in] homogeneous
*
* @see elm_table_homogeneous_set
*
* @ingroup Table
*/
#define elm_obj_table_homogeneous_set(homogeneous) ELM_OBJ_TABLE_ID(ELM_OBJ_TABLE_SUB_ID_HOMOGENEOUS_SET), EO_TYPECHECK(Eina_Bool, homogeneous)
/**
* @def elm_obj_table_homogeneous_get
* @since 1.8
*
* @brief Get the current table homogeneous mode.
*
* @param[out] ret
*
* @see elm_table_homogeneous_get
*
* @ingroup Table
*/
#define elm_obj_table_homogeneous_get(ret) ELM_OBJ_TABLE_ID(ELM_OBJ_TABLE_SUB_ID_HOMOGENEOUS_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_table_padding_set
* @since 1.8
*
* @brief Set padding between cells.
*
* @param[in] horizontal
* @param[in] vertical
*
* @see elm_table_padding_set
*
* @ingroup Table
*/
#define elm_obj_table_padding_set(horizontal, vertical) ELM_OBJ_TABLE_ID(ELM_OBJ_TABLE_SUB_ID_PADDING_SET), EO_TYPECHECK(Evas_Coord, horizontal), EO_TYPECHECK(Evas_Coord, vertical)
/**
* @def elm_obj_table_padding_get
* @since 1.8
*
* @brief Get padding between cells.
*
* @param[out] horizontal
* @param[out] vertical
*
* @see elm_table_padding_get
*
* @ingroup Table
*/
#define elm_obj_table_padding_get(horizontal, vertical) ELM_OBJ_TABLE_ID(ELM_OBJ_TABLE_SUB_ID_PADDING_GET), EO_TYPECHECK(Evas_Coord *, horizontal), EO_TYPECHECK(Evas_Coord *, vertical)
/**
* @def elm_obj_table_pack
* @since 1.8
*
* @brief Add a subobject on the table with the coordinates passed
*
* @param[in] subobj
* @param[in] column
* @param[in] row
* @param[in] colspan
* @param[in] rowspan
*
* @see elm_table_pack
*
* @ingroup Table
*/
#define elm_obj_table_pack(subobj, column, row, colspan, rowspan) ELM_OBJ_TABLE_ID(ELM_OBJ_TABLE_SUB_ID_PACK), EO_TYPECHECK(Evas_Object *, subobj), EO_TYPECHECK(int, column), EO_TYPECHECK(int, row), EO_TYPECHECK(int, colspan), EO_TYPECHECK(int, rowspan)
/**
* @def elm_obj_table_unpack
* @since 1.8
*
* @brief Remove child from table.
*
* @param[in] subobj
*
* @see elm_table_unpack
*
* @ingroup Table
*/
#define elm_obj_table_unpack(subobj) ELM_OBJ_TABLE_ID(ELM_OBJ_TABLE_SUB_ID_UNPACK), EO_TYPECHECK(Evas_Object *, subobj)
/**
* @def elm_obj_table_pack_set
* @since 1.8
*
* @brief Set the packing location of an existing child of the table
*
* @param[in] subobj
* @param[in] column
* @param[in] row
* @param[in] colspan
* @param[in] rowspan
*
* @see elm_table_pack_set
*
* @ingroup Table
*/
#define elm_obj_table_pack_set(subobj, column, row, colspan, rowspan) ELM_OBJ_TABLE_ID(ELM_OBJ_TABLE_SUB_ID_PACK_SET), EO_TYPECHECK(Evas_Object *, subobj), EO_TYPECHECK(int, column), EO_TYPECHECK(int, row), EO_TYPECHECK(int, colspan), EO_TYPECHECK(int, rowspan)
/**
* @def elm_obj_table_pack_get
* @since 1.8
*
* @brief Get the packing location of an existing child of the table
*
* @param[in] subobj
* @param[out] column
* @param[out] row
* @param[out] colspan
* @param[out] rowspan
*
* @see elm_table_pack_get
*
* @ingroup Table
*/
#define elm_obj_table_pack_get(subobj, column, row, colspan, rowspan) ELM_OBJ_TABLE_ID(ELM_OBJ_TABLE_SUB_ID_PACK_GET), EO_TYPECHECK(Evas_Object *, subobj), EO_TYPECHECK(int *, column), EO_TYPECHECK(int *, row), EO_TYPECHECK(int *, colspan), EO_TYPECHECK(int *, rowspan)
/**
* @def elm_obj_table_clear
* @since 1.8
*
* @brief Faster way to remove all child objects from a table object.
*
* @param[in] clear
*
* @see elm_table_clear
*
* @ingroup Table
*/
#define elm_obj_table_clear(clear) ELM_OBJ_TABLE_ID(ELM_OBJ_TABLE_SUB_ID_CLEAR), EO_TYPECHECK(Eina_Bool, clear)
/**
* @def elm_obj_table_child_get
* @since 1.8
*
* @brief Get child object of table at given coordinates.
*
* @param[in] col column number of child object
* @param[in] row row number of child object
* @param[out] ret object at given col and row
*
* @ingroup Table
*/
#define elm_obj_table_child_get(col, row, ret) ELM_OBJ_TABLE_ID(ELM_OBJ_TABLE_SUB_ID_CHILD_GET), EO_TYPECHECK(int, col), EO_TYPECHECK(int, row), EO_TYPECHECK(Evas_Object **, ret)
|