Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/GHOST_Types.h
| Show First 20 Lines • Show All 490 Lines • ▼ Show 20 Lines | typedef struct { | ||||
| /** char * utf8 encoding */ | /** char * utf8 encoding */ | ||||
| GHOST_TUserDataPtr result, composite; | GHOST_TUserDataPtr result, composite; | ||||
| /** Cursor position in the IME composition. */ | /** Cursor position in the IME composition. */ | ||||
| int cursor_position; | int cursor_position; | ||||
| /** Represents the position of the beginning of the selection */ | /** Represents the position of the beginning of the selection */ | ||||
| int target_start; | int target_start; | ||||
| /** Represents the position of the end of the selection */ | /** Represents the position of the end of the selection */ | ||||
| int target_end; | int target_end; | ||||
| /** custom temporal data */ | |||||
| GHOST_TUserDataPtr tmp; | |||||
| } GHOST_TEventImeData; | } GHOST_TEventImeData; | ||||
| typedef struct { | typedef struct { | ||||
| int count; | int count; | ||||
| uint8_t **strings; | uint8_t **strings; | ||||
| } GHOST_TStringArray; | } GHOST_TStringArray; | ||||
| typedef enum { | typedef enum { | ||||
| ▲ Show 20 Lines • Show All 276 Lines • Show Last 20 Lines | |||||