/usr/include/elementary-1/elm_conform.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 | /**
* @defgroup Conformant Conformant
* @ingroup Elementary
*
* @image html conformant_inheritance_tree.png
* @image latex conformant_inheritance_tree.eps
*
* @image html img/widget/conformant/preview-00.png
* @image latex img/widget/conformant/preview-00.eps width=\textwidth
*
* @image html img/conformant.png
* @image latex img/conformant.eps width=\textwidth
*
* The aim is to provide a widget that can be used in elementary apps to
* account for space taken up by the indicator, virtual keypad & softkey
* windows when running the illume2 module of E17.
*
* So conformant content will be sized and positioned considering the
* space required for such stuff, and when they popup, as a keyboard
* shows when an entry is selected, conformant content won't change.
*
* This widget inherits from the @ref Layout one, so that all the
* functions acting on it also work for conformant objects.
*
* This widget emits the following signals, besides the ones sent from
* @ref Layout:
* @li "virtualkeypad,state,on": if virtualkeypad state is switched to "on".
* (@since 1.8)
* @li "virtualkeypad,state,off": if virtualkeypad state is switched to "off".
* (@since 1.8)
* @li "clipboard,state,on": if clipboard state is switched to "on".
* (@since 1.8)
* @li "clipboard,state,off": if clipboard state is switched to "off".
* (@since 1.8)
* In all cases, the @c event parameter of the callback will be
* @c NULL.
*
* Available styles for it:
* - @c "default"
*
* Default content parts of the conformant widget that you can use for are:
* @li "default" - A content of the conformant
*
* See how to use this widget in this example:
* @ref conformant_example
*/
/**
* @addtogroup Conformant
* @{
*/
#ifdef EFL_EO_API_SUPPORT
#include "elm_conform_eo.h"
#endif
#ifndef EFL_NOLEGACY_API_SUPPORT
#include "elm_conform_legacy.h"
#endif
/**
* @}
*/
|