/usr/include/elementary-1/elm_widget_table.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 | #ifndef ELM_WIDGET_TABLE_H
#define ELM_WIDGET_TABLE_H
#include "Elementary.h"
/**
* @addtogroup Widget
* @{
*
* @section elm-table-class The Elementary Table Class
*
* Elementary, besides having the @ref Table widget, exposes its
* foundation -- the Elementary Table Class -- in order to create
* other widgets which are a table with some more logic on top.
*/
/**
* @}
*/
#define ELM_TABLE_CHECK(obj) \
if (!eo_isa((obj), ELM_OBJ_TABLE_CLASS)) \
return
#endif
|