summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLButtonEventMode.h
blob: 5facb9f73b641cad7d13464b8e7c071959f77f11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//  SDLButtonEventMode.h
//


#import "SDLEnum.h"

/**
 * Indicates whether the button was depressed or released. A BUTTONUP event will always be preceded by a BUTTONDOWN event.
 *
 * @since SDL 1.0
 */
typedef SDLEnum SDLButtonEventMode SDL_SWIFT_ENUM;

/**
 * The button was released
 */
extern SDLButtonEventMode const SDLButtonEventModeButtonUp;

/**
 * The button was depressed
 */
extern SDLButtonEventMode const SDLButtonEventModeButtonDown;