Table of Contents

Efl.Ui.Spin_Button.widget_input_event_handler

Description

Virtual function handling input events on the widget.

This method should return true if the event has been processed. Only key down, key up and pointer wheel events will be propagated through this function.

It is common for the event to be also marked as processed as in Efl.Input.Event.processed, if this operation was successful. This makes sure other widgets will not also process this input event.

Since 1.22

Overridden from Efl.Ui.Widget.widget_input_event_handler.

Signature

widget_input_event_handler @protected {
    params {
        @in eo_event: const(event);
        @in source: Efl.Canvas.Object;
    }
    return: bool;
}

C signature

Eina_Bool efl_ui_widget_input_event_handler(Eo *obj, const Efl_Event *eo_event, Efl_Canvas_Object *source);

Parameters

Implemented by