Public Methods |
struct cFrameForm* | cFrameForm_ctor (struct cFrameForm *ptr_frame_form, char *text, struct cWinApp *ptr_win_app) |
void | cFrameForm_dtor (struct cFrameForm *ptr_frame_form) |
int | cFrameForm_ShowModal (struct cFrameForm *ptr_frame_form) |
bool | cFrameForm_proc (struct cFrameForm *ptr_frame_form, struct Message *ptr_message) |
void | cFrameForm_Disconnect (struct cFrameForm *ptr_frame_form) |
bool | cFrameForm_Select (struct cFrameForm *ptr_frame_form) |
void | cFrameForm_update (struct cFrameForm *ptr_frame_form) |
struct cClip* | cFrameForm_GetParent (struct cFrameForm *ptr_frame_form) |
void | cFrameForm_Hide (struct cFrameForm *ptr_frame_form) |
void | cFrameForm_Show (struct cFrameForm *ptr_frame_form) |
void | cFrameForm_Disable (struct cFrameForm *ptr_frame_form) |
void | cFrameForm_Enable (struct cFrameForm *ptr_frame_form) |
void | cFrameForm_AddObj (struct cFrameForm *ptr_frame_form, struct cObject *ptr_object, int x, int y) |
void | cFrameForm_InsObj (struct cFrameForm *ptr_frame_form, struct cObject *ptr_object, int x, int y, int index) |
void | cFrameForm_RemObj (struct cClip *ptr_frame_form, struct cObject *ptr_object) |
bool | cFrameForm_SelectFirst (struct cFrameForm *ptr_frame_form) |
bool | cFrameForm_SelectPrev (struct cFrameForm *ptr_frame_form, bool round) |
bool | cFrameForm_SelectNext (struct cFrameForm *ptr_frame_form, bool round) |
void | cFrameForm_Scroll (struct cFrameForm *ptr_frame_form, struct rect_t *rectangle) |
void | cFrameForm_Scroll_Ex (struct cFrameForm *ptr_frame_form, int x, int y) |
void | cFrameForm_SendScroll (struct cFrameForm *ptr_frame_form) |
int | cFrameForm_GetShifty (struct cFrameForm *ptr_frame_form) |
int | cFrameForm_GetShiftx (struct cFrameForm *ptr_frame_form) |
int | cFrameForm_GetCount (struct cFrameForm *ptr_frame_form) |
struct cObject* | cFrameForm_get_by_index (struct cFrameForm *ptr_frame_form, int index) |
int | cFrameForm_FindObj (struct cFrameForm *ptr_frame_form, struct cObject *ptr_object) |
struct cObject* | cFrameForm_GetSelectedObject (struct cFrameForm *ptr_frame_form) |
This is the structure for creating a full-screen window with a frame.
After creating the form, you can show it (see cFrameForm_ShowModal) and then when a message comes in, you can process it by calling the cDialog_proc function.
You must call the cFrameForm_ctor function before use and cFrameForm_dtor function after use.