public void fireOnActivate(boolean activate_or_deactivate) { // fire Window.onActivate or Window.onDeactivate event TVP.EventManager.postInputEvent( new WindowEvents.OnWindowActivateEvent(this, activate_or_deactivate), EventManager.EPT_REMOVE_POST); // to discard redundant events }
public void postReleaseCaptureEvent() { TVP.EventManager.postInputEvent(new WindowEvents.OnReleaseCaptureInputEvent(this), 0); }
/** 画面の向きが変更された時、イベントを発行する */ public void fireOnOrientationChanged() { // fire Window.onOrientationChanged TVP.EventManager.postInputEvent( new WindowEvents.OnOrientationChangedEvent(this), EventManager.EPT_REMOVE_POST); }