This file is indexed.

/usr/include/elementary-1/elm_bg_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
/**
 * Identifiers on how a background widget is to display its image --
 * if it was set to use an image file.
 *
 * @see elm_bg_option_set()
 * @see elm_bg_option_get()
 *
 * @ingroup Bg
 */
typedef enum
{
   ELM_BG_OPTION_CENTER, /**< center the background image */
   ELM_BG_OPTION_SCALE, /**< scale the background image, retaining aspect ratio */
   ELM_BG_OPTION_STRETCH, /**< stretch the background image to fill the widget's area */
   ELM_BG_OPTION_TILE, /**< tile background image at its original size */
   ELM_BG_OPTION_LAST /**< sentinel value, also used to indicate errors */
} Elm_Bg_Option;