mGNCS API Reference  v1.2.0
A new control set and a new framework for MiniGUI apps
Data Structures | Typedefs | Functions
Gloal InvisibleComponent Functions

Data Structures

struct  _NCS_INVSB_CREATE_INFO
 

Typedefs

typedef struct _NCS_INVSB_CREATE_INFO NCS_INVSB_CREATE_INFO
 

Functions

MGNCS_EXPORT mInvsbCompncsCreateInvsbComp (const char *class_name, mComponent *parent, int id, NCS_PROP_ENTRY *props, NCS_EVENT_HANDLER *handlers, DWORD user_data)
 create an Invisible Component More...
 
MGNCS_EXPORT mInvsbCompncsCreateInvsbCompIndirect (const char *class_name, NCS_INVSB_CREATE_INFO *create_info)
 create an Invisible Component from creating info More...
 

Detailed Description

Typedef Documentation

A struct include Invisible Component Create info

See also
ncsCreateInvsbCompIndirect

Function Documentation

mInvsbComp * ncsCreateInvsbComp ( const char *  class_name,
mComponent parent,
int  id,
NCS_PROP_ENTRY props,
NCS_EVENT_HANDLER handlers,
DWORD  user_data 
)

create an Invisible Component

Parameters
class_namethe class name of Invisible Component
parentthe parent of creating Invisible Component
idthe id of Invisible Component
propsthe properties array of Invisible Component
handlersthe event handler array of Invisible Component
user_datauser data
Returns
mInvsbComp * - the new created Invisible Component pointer, NULL or failed
See also
NCS_INVSB_CREATE_INFO, ncsCreateInvsbCompIndirect
mInvsbComp * ncsCreateInvsbCompIndirect ( const char *  class_name,
NCS_INVSB_CREATE_INFO create_info 
)

create an Invisible Component from creating info

Parameters
class_namethe class name of Invisible Component
create_infothe creating information pointer
Returns
mInvsbComp * - the Invisible Component pointer if success, NULL or failed
See also
NCS_INVSB_CREATE_INFO, ncsCreateInvsbComp