MiniGUI API Reference (MiniGUI-Processes)
v3.2.0
A mature and proven cross-platform GUI system for embedded and smart IoT devices
|
Macros | |
#define | NAME_SELF_LAYER "" |
The name of the self layer. More... | |
#define | NAME_TOPMOST_LAYER "" |
The name of the topmost layer. More... | |
#define | NAME_DEF_LAYER "mginit" |
The default name of the layer. More... | |
Functions | |
MG_EXPORT GHANDLE GUIAPI | JoinLayer (const char *layer_name, const char *client_name, int max_nr_topmosts, int max_nr_normals) |
Joins to a layer. More... | |
MG_EXPORT GHANDLE GUIAPI | GetLayerInfo (const char *layer_name, int *nr_clients, BOOL *is_topmost, int *cli_active) |
Gets information of a layer by a client. More... | |
MG_EXPORT BOOL GUIAPI | SetTopmostLayer (BOOL handle_name, GHANDLE handle, const char *name) |
Brings a layer to be the topmost one. More... | |
MG_EXPORT BOOL GUIAPI | DeleteLayer (BOOL handle_name, GHANDLE handle, const char *layer_name) |
Deletes a specific layer. More... | |
A client in MiniGUI-Processes can create a new layer or join an existed layer.
Example:
#define NAME_DEF_LAYER "mginit" |
#define NAME_TOPMOST_LAYER "" |
Deletes a specific layer.
handle_name | The way specifing the layer; TRUE for handle of the layer, FALSE for name. |
handle | The handle to the layer. |
layer_name | The name of the layer. You can use NAME_SELF_LAYER to specify the layer to which the calling client belongs. |
GHANDLE GUIAPI GetLayerInfo | ( | const char * | layer_name, |
int * | nr_clients, | ||
BOOL * | is_topmost, | ||
int * | cli_active | ||
) |
Gets information of a layer by a client.
You can get the information of a layer through this function. The information will be returned through the pointer arguments if the specific pointer is not NULL.
layer_name | The name of the layer. You can use NAME_SELF_LAYER to specify the layer the calling client belongs to. |
nr_clients | The number of clients in the layer will be returned through this pointer. |
is_topmost | A boolean which indicates whether the layer is the topmost layer will be returned. |
cli_active | The identifier of the active client in the layer. |
GHANDLE GUIAPI JoinLayer | ( | const char * | layer_name, |
const char * | client_name, | ||
int | max_nr_topmosts, | ||
int | max_nr_normals | ||
) |
Joins to a layer.
This function should be called by clients before calling any other MiniGUI functions. You can call GetLayerInfo to get the layer information. If the layer to be joined does not exist, the server, i.e. mginit, will try to create a new one. If you passed a NULL pointer or a null string for layer_name, the client will join to the default layer.
If the client want to create a new layer, you should specify the maximal number of topmost frame objects (max_nr_topmosts) and the maximal number of normal frame objects (max_nr_normals) in the new layer. Passing zero to max_nr_topmosts and max_nr_normals will use the default values, and the default values are specified by ServerStartup.
Note that the server will create a default layer named "mginit".
layer_name | The name of the layer.You can use NAME_TOPMOST_LAYER to specify the current topmost layer. |
client_name | The name of the client. |
max_nr_topmosts | The maximal number of topmost z-order nodes in the new layer. |
max_nr_normals | The maximal number of normal z-order nodes in the new layer. |
Brings a layer to be the topmost one.
This function brings the specified layer handle to be the topmost layer.
handle_name | The way specifing the layer; TRUE for handle of the layer, FALSE for name. |
handle | The handle to the layer. |
name | The name of the layer. You can use NAME_SELF_LAYER to specify the layer to which the calling client belongs. |