/usr/include/elementary-1/elc_popup_common.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 | /**
* @brief Possible orient values for popup.
*
* These values should be used in conjunction to elm_popup_orient_set() to
* set the position in which the popup should appear(relative to its parent)
* and in conjunction with elm_popup_orient_get() to know where the popup
* is appearing.
*
* @ingroup Popup
*/
typedef enum
{
ELM_POPUP_ORIENT_TOP = 0, /**< Popup should appear in the top of parent, default */
ELM_POPUP_ORIENT_CENTER, /**< Popup should appear in the center of parent */
ELM_POPUP_ORIENT_BOTTOM, /**< Popup should appear in the bottom of parent */
ELM_POPUP_ORIENT_LEFT, /**< Popup should appear in the left of parent */
ELM_POPUP_ORIENT_RIGHT, /**< Popup should appear in the right of parent */
ELM_POPUP_ORIENT_TOP_LEFT, /**< Popup should appear in the top left of parent */
ELM_POPUP_ORIENT_TOP_RIGHT, /**< Popup should appear in the top right of parent */
ELM_POPUP_ORIENT_BOTTOM_LEFT, /**< Popup should appear in the bottom left of parent */
ELM_POPUP_ORIENT_BOTTOM_RIGHT, /**< Notify should appear in the bottom right of parent */
ELM_POPUP_ORIENT_LAST /**< Sentinel value, @b don't use */
} Elm_Popup_Orient;
|