Select event input mask

SVN revision: 8609
This commit is contained in:
xcomputerman 2004-01-22 05:23:33 +00:00 committed by xcomputerman
parent 7917201960
commit c132e33f2d
2 changed files with 8 additions and 0 deletions

View File

@ -592,6 +592,8 @@ void ecore_x_io_error_handler_set(void (*func) (void *data), const v
int ecore_x_error_request_get(void);
int ecore_x_error_code_get(void);
void ecore_x_event_mask_set(Ecore_X_Window w, long mask);
int ecore_x_selection_primary_set(Ecore_X_Window w, char *data, int size);
int ecore_x_selection_primary_clear(void);
int ecore_x_selection_secondary_set(Ecore_X_Window w, char *data, int size);

View File

@ -15,6 +15,12 @@ static void _ecore_x_event_free_key_down(void *data, void *ev);
static void _ecore_x_event_free_key_up(void *data, void *ev);
static void _ecore_x_event_free_generic(void *data, void *ev);
void
ecore_x_event_mask_set(Ecore_X_Window w, long mask)
{
XSelectInput(_ecore_x_disp, w, mask);
}
static void
_ecore_x_event_free_window_prop_name_class_change(void *data, void *ev)
{