Home | History | Annotate | Download | only in android

Lines Matching refs:window

159      * Focus has changed in this NativeActivity's window.  This is often used,
165 * The drawing window for this native activity has been created. You
166 * can use the given native window object to start drawing.
168 void (*onNativeWindowCreated)(ANativeActivity* activity, ANativeWindow* window);
171 * The drawing window for this native activity has been resized. You should
172 * retrieve the new size from the window and ensure that your rendering in
175 void (*onNativeWindowResized)(ANativeActivity* activity, ANativeWindow* window);
178 * The drawing window for this native activity needs to be redrawn. To avoid
181 * drawing their window in its current state.
183 void (*onNativeWindowRedrawNeeded)(ANativeActivity* activity, ANativeWindow* window);
186 * The drawing window for this native activity is going to be destroyed.
187 * You MUST ensure that you do not touch the window object after returning
188 * from this function: in the common case of drawing to the window from
193 void (*onNativeWindowDestroyed)(ANativeActivity* activity, ANativeWindow* window);
196 * The input queue for this native activity's window has been created.
202 * The input queue for this native activity's window is being destroyed.
209 * The rectangle in the window in which content should be placed has changed.
255 * Change the window format of the given activity. Calls getWindow().setFormat()
263 * Change the window flags of the given activity. Calls getWindow().setFlags()
266 * where the Java finish call will take place. See window.h for flag constants.