Lines Matching defs:event
119 * @brief Responds to a physical key event.
121 * @param view Indicates the view displayed upon a physical key event.
122 * @param event Indicates the physical key event to respond to.
124 * event; returns <b> false</b> otherwise.
128 virtual bool OnKeyAct(UIView& view, const KeyEvent& event) = 0;
144 * @brief Executes a physical key event.
146 * @param event Indicates the physical key event to execute.
150 virtual void OnKeyEvent(const KeyEvent& event)
153 onKeyActListener_->OnKeyAct(*this, event);
158 * @brief Sets the listener that contains a callback to be invoked upon a physical key event.
190 * @brief Responds to an input event triggered by a virtual device.
192 * @param view Indicates the view displayed upon an input event triggered by a virtual device.
193 * @param event Indicates the input event to respond to.
194 * @return Returns <b>true</b> if this view is normally displayed upon an input event triggered by a
199 virtual bool OnVirtualDeviceEvent(UIView& view, VirtualDeviceEvent event) = 0;
203 * @brief Executes an input event triggered by a virtual device.
205 * @param event Indicates the input event to respond to.
209 virtual void OnVirtualDeviceEvent(const VirtualDeviceEvent& event)
212 onVirtualEventListener_->OnVirtualDeviceEvent(*this, event);