Edit hideMenu
From TrillWiki
The edit_hideMenu notification is sent when an edit menu is done being used.
Compatibility: 2.0 and higher
Contents |
Syntax
callback(int window_id, char *icontrol, "edit_hideMenu", edit_event_t *data, void *userData);
Note that all Trillian functions and notifications begin with a lower-case letter, despite the Wiki requirement that all pages start with a capital letter.
Parameters
Edit hideMenu utilitizes the edit_event_t structure.
struct edit_event_t {
unsigned int struct_size;
int window_id;
int edit_event_id;
char *event;
ttkCallback callback;
void *data;
};
- window_id
- The window id associated with this event.
- edit_event_id
- The edit event id.
- event
- This is NULL for this event.
- data
- A char* representing the text within the edit box at this time.
Return Value
Must return 0.
Remarks
None.
See also: editEventRegister
