Public Methods | |
struct cText* | cText_ctor (struct cText *ptr_text, char *text, struct Font *ptr_font, color_t color) |
void | cText_dtor (struct cText *ptr_text, int memory_flag) |
void | cText_SetText (struct cText *ptr_text, char *text) |
bool | cText_proc (struct cText *ptr_text, struct Message *ptr_message) |
void | cText_Disconnect (struct cText *ptr_text) |
bool | cText_Select (struct cText *ptr_text) |
void | cText_update (struct cText *ptr_text) |
struct cClip* | cText_GetParent (struct cText *ptr_text) |
void | cText_Hide (struct cText *ptr_text) |
void | cText_Show (struct cText *ptr_text) |
void | cText_Disable (struct cText *ptr_text) |
void | cText_Enable (struct cText *ptr_text) |
A static, transparent text line. Use this structure to place text on the Cybiko computer's screen.
To place a cText object created by the cText_ctor function onto the Cybiko screen, use the cWinApp_AddObj function. If you want to replace the onscreen text, you should first clear it with the cWinApp_clear_screen function. Then use the cText_SetText function to place new text.
You must call the cText_ctor function before use and the cText_dtor function after use.
|
Disables a cText object so that it cannot be selected.
|
|
Disconnects a cText object from its parent object.
|
|
Enables a cText object so that it may be selected.
|
|
Returns a pointer to the parent object.
|
|
Hides a cText object.
|
|
Selects a cText object.
|
|
Sets a new text line.
|
|
Shows a cText object.
|
|
Initializes a cText object.
|
|
Deletes a cText object.
|
|
The message-processing function.
|
|
Updates a cText object.
|
Copyright © 2001 Cybiko, Inc. All rights reserved. | More information... |