blob: 88df4443eebd2a3383233afad4b636871245aed2 (
plain)
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
|
/* Copyright 2013 Endless Mobile, Inc. */
#ifndef EOS_ENUMS_H
#define EOS_ENUMS_H
#if !(defined(_EOS_SDK_INSIDE_ENDLESS_H) || defined(COMPILING_EOS_SDK))
#error "Please do not include this header file directly."
#endif
/* Shared typedefs for enumerations */
/**
* SECTION:eosenum
* @Short_description: Public enumerated types used throughout the Endless SDK
* @Title: Standard Enumerations
*/
/**
* EosActionButtonSize:
*
* Built-in sizes for @EosActionButton
*/
typedef enum
{
EOS_ACTION_BUTTON_SIZE_PRIMARY = 0,
EOS_ACTION_BUTTON_SIZE_SECONDARY,
EOS_ACTION_BUTTON_SIZE_TERTIARY,
EOS_ACTION_BUTTON_SIZE_QUATERNARY,
EOS_ACTION_BUTTON_SIZE_NUM_SIZES
} EosActionButtonSize;
#endif /* EOS_ENUMS_H */
|