/usr/include/elementary-1/elm_panes.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 | /**
* @defgroup Panes Panes
* @ingroup Elementary
*
* @image html panes_inheritance_tree.png
* @image latex panes_inheritance_tree.eps
*
* @image html img/widget/panes/preview-00.png
* @image latex img/widget/panes/preview-00.eps width=\textwidth
*
* @image html img/panes.png
* @image latex img/panes.eps width=\textwidth
*
* The panes widget adds a draggable bar between two contents. When dragged
* this bar will resize contents' size.
*
* Panes can be split vertically or horizontally, and contents
* size proportion can be customized (homogeneous by default).
*
* This widget inherits from the @ref Layout one, so that all the
* functions acting on it also work for panes objects.
*
* This widget emits the following signals, besides the ones sent from
* @ref Layout:
* - @c "press" - The panes has been pressed (button wasn't released yet).
* - @c "unpress" - The panes was released after being pressed.
* - @c "clicked" - The panes has been clicked>
* - @c "clicked,double" - The panes has been double clicked
*
* Available styles for it:
* - @c "default"
*
* Default content parts of the panes widget that you can use are:
* @li "left" - A leftside content of the panes
* @li "right" - A rightside content of the panes
* @li "top" - A top content of the vertical panes
* @li "bottom" - A bottom content of the vertical panes
*
* If panes are displayed vertically, left content will be displayed on
* top.
*
* Supported elm_object common APIs.
* @li @ref elm_object_part_content_set
* @li @ref elm_object_part_content_get
* @li @ref elm_object_part_content_unset
*
* Here is an example on its usage:
* @li @ref panes_example
*/
/**
* @addtogroup Panes
* @{
*/
#ifdef EFL_EO_API_SUPPORT
#include "elm_panes_eo.h"
#endif
#ifndef EFL_NOLEGACY_API_SUPPORT
#include "elm_panes_legacy.h"
#endif
/**
* @}
*/
|