eGUI alias D4D  Release 3.0
Reference Manual
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
D4D LIST BOX API Types Specification
Collaboration diagram for D4D LIST BOX API Types Specification:

Data Structures

struct  D4D_LIST_BOX_ITEM
 This is list box item variable type. More...
 

Typedefs

typedef void(* D4D_LSTBX_ON_EVENT )(D4D_OBJECT *pThis, D4D_EVENTID eventId)
 Type definition of list box on event callback function. More...
 
typedef sByte D4D_LIST_BOX_INDEX
 This is list box item index variable type. More...
 

Detailed Description

This section specifies the exact type for each typedef definition.


Data Structure Documentation

struct D4D_LIST_BOX_ITEM
Collaboration diagram for D4D_LIST_BOX_ITEM:
Collaboration graph

Data Fields

D4D_TCHARpText
 pointer to item text More...
 
void * pUser
 pointer to void (it can be retype to any other user data in size or less that is pointer size) More...
 

Field Documentation

D4D_TCHAR* pText

pointer to item text

Definition at line 133 of file d4d_list_box.h.

void* pUser

pointer to void (it can be retype to any other user data in size or less that is pointer size)

Definition at line 134 of file d4d_list_box.h.

Typedef Documentation

This is list box item index variable type.

Definition at line 128 of file d4d_list_box.h.

typedef void(* D4D_LSTBX_ON_EVENT)(D4D_OBJECT *pThis, D4D_EVENTID eventId)

Type definition of list box on event callback function.

Parameters
pThis- pointer to list box instance that call the function
eventId- event type that caused this call back function
Returns
none
Note
This is list box call back function used to notify user application about list box events (D4D_EVENT_ONCLICK, D4D_EVENT_ONCHANGE, D4D_EVENT_ONRELOAD).

Definition at line 125 of file d4d_list_box.h.