This documentation describes the Prokee module interface.
Runs a test of the
icon element.
Signature:
int text::main(int argc,char **argv)
Parameters:
| int | argc | | The number of command-line parameters. |
| char ** | argv | [IN] | The command-line parameters. |
Return value:Exit status.
Creates an empty
text element.
Signature:
Element *text::create(uint16_t width,uint16_t height,const char *font_filename,long int face_index)
Parameters:
| uint16_t | width | | The width of the text in pixels. |
| uint16_t | height | | The height of the text in pixels. |
| const char * | font_filename | | |
| long int | face_index | | |
Return value:Pointer to an
Element structure.
Sets the text to be displayed on the
text.
Signature:
void text::setText(Element *elem,const char *name)
Parameters:
| Element * | elem | [IN/OUT] | Pointer to an Element structure. |
| const char * | name | | The null-terminated string to be displayed on the Text. |