SDL
2.0
|
Data Structures | |
enum | NativeState |
class | SDLCommandHandler |
class | ShowTextInputTask |
Public Member Functions | |
void | loadLibraries () |
void | onWindowFocusChanged (boolean hasFocus) |
void | onLowMemory () |
void | onBackPressed () |
void | pressBackButton () |
void | superOnBackPressed () |
boolean | dispatchKeyEvent (KeyEvent event) |
void | setOrientationBis (int w, int h, boolean resizable, String hint) |
int | messageboxShowMessageBox (final int flags, final String title, final String message, final int[] buttonFlags, final int[] buttonIds, final String[] buttonTexts, final int[] colors) |
void | onSystemUiVisibilityChange (int visibility) |
Static Public Member Functions | |
static void | initialize () |
static int | getCurrentOrientation () |
static void | manualBackButton () |
static void | handleNativeState () |
static void | handleNativeExit () |
static native int | nativeSetupJNI () |
static native int | nativeRunMain (String library, String function, Object arguments) |
static native void | nativeLowMemory () |
static native void | nativeQuit () |
static native void | nativePause () |
static native void | nativeResume () |
static native void | onNativeDropFile (String filename) |
static native void | onNativeResize (int surfaceWidth, int surfaceHeight, int deviceWidth, int deviceHeight, int format, float rate) |
static native void | onNativeKeyDown (int keycode) |
static native void | onNativeKeyUp (int keycode) |
static native void | onNativeKeyboardFocusLost () |
static native void | onNativeMouse (int button, int action, float x, float y, boolean relative) |
static native void | onNativeTouch (int touchDevId, int pointerFingerId, int action, float x, float y, float p) |
static native void | onNativeAccel (float x, float y, float z) |
static native void | onNativeClipboardChanged () |
static native void | onNativeSurfaceChanged () |
static native void | onNativeSurfaceDestroyed () |
static native String | nativeGetHint (String name) |
static native void | nativeSetenv (String name, String value) |
static native void | onNativeOrientationChanged (int orientation) |
static boolean | setActivityTitle (String title) |
static void | setWindowStyle (boolean fullscreen) |
static void | setOrientation (int w, int h, boolean resizable, String hint) |
static boolean | isScreenKeyboardShown () |
static boolean | supportsRelativeMouse () |
static boolean | setRelativeMouseEnabled (boolean enabled) |
static boolean | sendMessage (int command, int param) |
static Context | getContext () |
static boolean | isAndroidTV () |
static boolean | isTablet () |
static boolean | isChromebook () |
static boolean | isDeXMode () |
static DisplayMetrics | getDisplayDPI () |
static boolean | getManifestEnvironmentVariables () |
static View | getContentView () |
static boolean | showTextInput (int x, int y, int w, int h) |
static boolean | isTextInputEvent (KeyEvent event) |
static Surface | getNativeSurface () |
static int [] | inputGetInputDeviceIds (int sources) |
static InputStream | openAPKExpansionInputStream (String fileName) throws IOException |
static boolean | clipboardHasText () |
static String | clipboardGetText () |
static void | clipboardSetText (String string) |
static int | createCustomCursor (int[] colors, int width, int height, int hotSpotX, int hotSpotY) |
static boolean | setCustomCursor (int cursorID) |
static boolean | setSystemCursor (int cursorID) |
Static Public Attributes | |
static boolean | mIsResumedCalled |
static NativeState | mNextNativeState |
static NativeState | mCurrentNativeState |
static boolean | mExitCalledFromJava |
static boolean | mBrokenLibraries |
static boolean | mSeparateMouseAndTouch |
Protected Member Functions | |
String | getMainSharedObject () |
String | getMainFunction () |
String [] | getLibraries () |
String [] | getArguments () |
void | onCreate (Bundle savedInstanceState) |
void | onPause () |
void | onResume () |
void | onDestroy () |
boolean | onUnhandledMessage (int command, Object param) |
Dialog | onCreateDialog (int ignore, Bundle args) |
Static Protected Member Functions | |
static SDLGenericMotionListener_API12 | getMotionListener () |
Protected Attributes | |
final int [] | messageboxSelection = new int[1] |
int | dialogs = 0 |
Static Protected Attributes | |
static final int | SDL_ORIENTATION_UNKNOWN = 0 |
static final int | SDL_ORIENTATION_LANDSCAPE = 1 |
static final int | SDL_ORIENTATION_LANDSCAPE_FLIPPED = 2 |
static final int | SDL_ORIENTATION_PORTRAIT = 3 |
static final int | SDL_ORIENTATION_PORTRAIT_FLIPPED = 4 |
static int | mCurrentOrientation |
static SDLActivity | mSingleton |
static SDLSurface | mSurface |
static View | mTextEdit |
static boolean | mScreenKeyboardShown |
static ViewGroup | mLayout |
static SDLClipboardHandler | mClipboardHandler |
static Hashtable< Integer, Object > | mCursors |
static int | mLastCursorID |
static SDLGenericMotionListener_API12 | mMotionListener |
static HIDDeviceManager | mHIDDeviceManager |
static Thread | mSDLThread |
static final int | COMMAND_USER = 0x8000 |
static boolean | mFullscreenModeActive |
Private Attributes | |
final Runnable | rehideSystemUi |
Static Private Attributes | |
static final String | TAG = "SDL" |
static final int | SDL_SYSTEM_CURSOR_NONE = -1 |
static final int | SDL_SYSTEM_CURSOR_ARROW = 0 |
static final int | SDL_SYSTEM_CURSOR_IBEAM = 1 |
static final int | SDL_SYSTEM_CURSOR_WAIT = 2 |
static final int | SDL_SYSTEM_CURSOR_CROSSHAIR = 3 |
static final int | SDL_SYSTEM_CURSOR_WAITARROW = 4 |
static final int | SDL_SYSTEM_CURSOR_SIZENWSE = 5 |
static final int | SDL_SYSTEM_CURSOR_SIZENESW = 6 |
static final int | SDL_SYSTEM_CURSOR_SIZEWE = 7 |
static final int | SDL_SYSTEM_CURSOR_SIZENS = 8 |
static final int | SDL_SYSTEM_CURSOR_SIZEALL = 9 |
static final int | SDL_SYSTEM_CURSOR_NO = 10 |
static final int | SDL_SYSTEM_CURSOR_HAND = 11 |
static Object | expansionFile |
static Method | expansionFileMethod |
SDL Activity
Definition at line 37 of file SDLActivity.java.
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 1365 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 1358 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 1372 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 1379 of file SDLActivity.java.
References e, and org.libsdl.app.SDLActivity.mLastCursorID.
|
inline |
Definition at line 457 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.mBrokenLibraries.
|
inlineprotected |
This method is called by SDL before starting the native application thread. It can be overridden to provide the arguments after the application name. The default implementation returns an empty array. It never returns null.
Definition at line 167 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
inlinestatic |
Definition at line 959 of file SDLActivity.java.
References org.libsdl.app.SDL.getContext(), and org.libsdl.app.SDLActivity.mLayout.
Referenced by org.libsdl.app.SDLControllerManager.isDeviceSDLJoystick().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 862 of file SDLActivity.java.
References org.libsdl.app.SDL.getContext().
Referenced by org.libsdl.app.SDLActivity.getCurrentOrientation(), org.libsdl.app.SDLActivity.getDisplayDPI(), org.libsdl.app.SDLActivity.getMainSharedObject(), org.libsdl.app.SDLActivity.getManifestEnvironmentVariables(), org.libsdl.app.SDLActivity.SDLCommandHandler.handleMessage(), org.libsdl.app.SDLActivity.isAndroidTV(), org.libsdl.app.SDLActivity.isChromebook(), org.libsdl.app.SDLActivity.isDeXMode(), org.libsdl.app.SDLActivity.isTablet(), and org.libsdl.app.SDLActivity.setSystemCursor().
|
inlinestatic |
Definition at line 319 of file SDLActivity.java.
References context, org.libsdl.app.SDLActivity.getContext(), org.libsdl.app.SDLActivity.SDL_ORIENTATION_LANDSCAPE, org.libsdl.app.SDLActivity.SDL_ORIENTATION_LANDSCAPE_FLIPPED, org.libsdl.app.SDLActivity.SDL_ORIENTATION_PORTRAIT, org.libsdl.app.SDLActivity.SDL_ORIENTATION_PORTRAIT_FLIPPED, and org.libsdl.app.SDLActivity.SDL_ORIENTATION_UNKNOWN.
Referenced by org.libsdl.app.SDLActivity.onCreate().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 927 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.getContext().
|
inlineprotected |
This method is called by SDL before loading the native shared libraries. It can be overridden to provide names of shared libraries to be loaded. The default implementation returns the defaults. It never returns null. An array returned by a new implementation must at least contain "SDL2". Also keep in mind that the order the libraries are loaded may matter.
Definition at line 143 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.getMainSharedObject(), and org.libsdl.app.SDLActivity.loadLibraries().
|
inlineprotected |
This method returns the name of the application entry point It can be overridden by derived classes.
Definition at line 131 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
inlineprotected |
This method returns the name of the shared object with the application entry point It can be overridden by derived classes.
Definition at line 116 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.getContext(), org.libsdl.app.SDLActivity.getLibraries(), and org.libsdl.app.SDLActivity.mSingleton.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 934 of file SDLActivity.java.
References e, org.libsdl.app.SDLActivity.getContext(), and org.libsdl.app.SDLActivity.nativeSetenv().
|
inlinestaticprotected |
Definition at line 97 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.mMotionListener.
Referenced by org.libsdl.app.SDLActivity.onWindowFocusChanged(), org.libsdl.app.SDLActivity.setRelativeMouseEnabled(), org.libsdl.app.SDLActivity.setSystemCursor(), and org.libsdl.app.SDLActivity.supportsRelativeMouse().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 1028 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.mSurface.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
inlinestatic |
Definition at line 521 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.mSDLThread.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
inlinestatic |
Definition at line 477 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.NativeState.INIT, org.libsdl.app.SDLActivity.mNextNativeState, org.libsdl.app.SDLActivity.nativePause(), org.libsdl.app.SDLActivity.nativeResume(), org.libsdl.app.SDLActivity.NativeState.PAUSED, and org.libsdl.app.SDLActivity.NativeState.RESUMED.
Referenced by org.libsdl.app.SDLActivity.onDestroy(), org.libsdl.app.SDLActivity.onPause(), org.libsdl.app.SDLActivity.onResume(), org.libsdl.app.SDLActivity.onWindowFocusChanged(), and org.libsdl.app.SDLActivity.setSystemCursor().
|
inlinestatic |
Definition at line 171 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.NativeState.INIT.
Referenced by org.libsdl.app.SDL.initialize(), and org.libsdl.app.SDLActivity.onDestroy().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 1041 of file SDLActivity.java.
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 869 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.getContext().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 903 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.getContext().
Referenced by org.libsdl.app.SDLActivity.supportsRelativeMouse().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 910 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.getContext().
Referenced by org.libsdl.app.SDLControllerManager.isDeviceSDLJoystick(), and org.libsdl.app.SDLActivity.supportsRelativeMouse().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 798 of file SDLActivity.java.
References org.libsdl.app.SDL.getContext().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 886 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.getContext().
|
inlinestatic |
Definition at line 1013 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
inline |
Definition at line 155 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.getLibraries(), and org.libsdl.app.SDL.loadLibrary().
Referenced by org.libsdl.app.SDLActivity.onCreate().
|
inlinestatic |
Definition at line 437 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.pressBackButton().
|
inline |
This method is called by SDL using JNI. Shows the messagebox from UI thread and block calling thread. buttonFlags, buttonIds and buttonTexts must have same length.
buttonFlags | array containing flags for every button. |
buttonIds | array containing id for every button. |
buttonTexts | array containing text for every button. |
colors | null for default or array of length 5 containing colors. |
Definition at line 1142 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.messageboxSelection.
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
inline |
Definition at line 420 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.nativeGetHint().
|
inlineprotected |
Definition at line 193 of file SDLActivity.java.
References org.libsdl.app.HIDDeviceManager.acquire(), e, sort_controllers.filename, org.libsdl.app.SDLActivity.getCurrentOrientation(), org.libsdl.app.SDL.initialize(), org.libsdl.app.SDLActivity.loadLibraries(), org.libsdl.app.SDLActivity.mSingleton, org.libsdl.app.SDLActivity.onNativeDropFile(), org.libsdl.app.SDLActivity.onNativeOrientationChanged(), org.libsdl.app.SDL.setContext(), org.libsdl.app.SDL.setupJNI(), and org.libsdl.app.SDLActivity.setWindowStyle().
|
inlineprotected |
Definition at line 1196 of file SDLActivity.java.
References buttons, colors, d, i, org.libsdl.app.SDLActivity.messageboxSelection, and textColor.
|
inlineprotected |
Definition at line 379 of file SDLActivity.java.
References e, org.libsdl.app.SDLActivity.handleNativeState(), org.libsdl.app.SDLActivity.initialize(), org.libsdl.app.SDLActivity.mBrokenLibraries, org.libsdl.app.SDLActivity.mExitCalledFromJava, org.libsdl.app.SDLActivity.mSDLThread, org.libsdl.app.SDLActivity.nativeQuit(), org.libsdl.app.SDLActivity.NativeState.PAUSED, and org.libsdl.app.HIDDeviceManager.release().
|
inline |
Definition at line 367 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.mBrokenLibraries, and org.libsdl.app.SDLActivity.nativeLowMemory().
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
inlineprotected |
Definition at line 284 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.handleNativeState(), org.libsdl.app.SDLActivity.mBrokenLibraries, org.libsdl.app.SDLActivity.NativeState.PAUSED, and org.libsdl.app.HIDDeviceManager.setFrozen().
|
inlineprotected |
Definition at line 302 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.handleNativeState(), org.libsdl.app.SDLActivity.mBrokenLibraries, org.libsdl.app.SDLActivity.NativeState.RESUMED, and org.libsdl.app.HIDDeviceManager.setFrozen().
|
inline |
Definition at line 1343 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.mFullscreenModeActive.
|
inlineprotected |
This method is called by SDL if SDL did not handle a message itself. This happens if a received message contains an unsupported command. Method can be overwritten to handle Messages in a different class.
command | the command of the message. |
param | the parameter of the message. May be null. |
Definition at line 547 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.SDLCommandHandler.handleMessage().
|
inline |
Definition at line 347 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.getMotionListener(), org.libsdl.app.SDLActivity.handleNativeState(), org.libsdl.app.SDLActivity.mBrokenLibraries, org.libsdl.app.SDLActivity.NativeState.PAUSED, and org.libsdl.app.SDLActivity.NativeState.RESUMED.
|
inlinestatic |
This method is called by SDL using JNI.
IOException | on errors. Message is set for the SDL error message. |
Definition at line 1067 of file SDLActivity.java.
References org.libsdl.app.SDL.getContext(), and org.libsdl.app.SDLActivity.nativeGetHint().
|
inline |
Definition at line 442 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.superOnBackPressed().
Referenced by org.libsdl.app.SDLActivity.manualBackButton().
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 1397 of file SDLActivity.java.
References e.
|
inlinestatic |
This method is called by SDL using JNI. This is a static method for JNI convenience, it calls a non-static method so that is can be overridden
Definition at line 748 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.setOrientationBis().
|
inline |
This can be overridden
Definition at line 758 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setOrientation().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 840 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.getMotionListener(), and org.libsdl.app.SDLActivity.supportsRelativeMouse().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 1412 of file SDLActivity.java.
References button, org.libsdl.app.SDLActivity.clipboardGetText(), org.libsdl.app.SDLActivity.clipboardHasText(), org.libsdl.app.SDLActivity.clipboardSetText(), context, e, org.libsdl.app.SDLActivity.getArguments(), org.libsdl.app.SDL.getContext(), org.libsdl.app.SDLActivity.getContext(), org.libsdl.app.SDLActivity.getMainFunction(), org.libsdl.app.SDLActivity.getMainSharedObject(), org.libsdl.app.SDLActivity.getMotionListener(), org.libsdl.app.SDLActivity.getNativeSurface(), org.libsdl.app.SDLActivity.handleNativeExit(), org.libsdl.app.SDLActivity.handleNativeState(), i, org.libsdl.app.SDLControllerManager.isDeviceSDLJoystick(), org.libsdl.app.SDLActivity.isTextInputEvent(), org.libsdl.app.SDLActivity.mCurrentOrientation, org.libsdl.app.SDLActivity.mExitCalledFromJava, org.libsdl.app.SDLActivity.mNextNativeState, org.libsdl.app.SDLActivity.mSeparateMouseAndTouch, org.libsdl.app.SDLActivity.mSingleton, org.libsdl.app.SDLActivity.mTextEdit, org.libsdl.app.SDLActivity.nativeGetHint(), org.libsdl.app.SDLActivity.nativeRunMain(), org.libsdl.app.SDLActivity.onNativeAccel(), org.libsdl.app.SDLActivity.onNativeClipboardChanged(), org.libsdl.app.SDLActivity.onNativeKeyboardFocusLost(), org.libsdl.app.SDLActivity.onNativeKeyDown(), org.libsdl.app.SDLActivity.onNativeKeyUp(), org.libsdl.app.SDLActivity.onNativeMouse(), org.libsdl.app.SDLActivity.onNativeOrientationChanged(), org.libsdl.app.SDLControllerManager.onNativePadDown(), org.libsdl.app.SDLControllerManager.onNativePadUp(), org.libsdl.app.SDLActivity.onNativeResize(), org.libsdl.app.SDLActivity.onNativeSurfaceChanged(), org.libsdl.app.SDLActivity.onNativeSurfaceDestroyed(), org.libsdl.app.SDLActivity.onNativeTouch(), org.libsdl.app.SDLActivity.NativeState.PAUSED, org.libsdl.app.SDLActivity.SDL_ORIENTATION_LANDSCAPE, org.libsdl.app.SDLActivity.SDL_ORIENTATION_LANDSCAPE_FLIPPED, org.libsdl.app.SDLActivity.SDL_ORIENTATION_PORTRAIT, org.libsdl.app.SDLActivity.SDL_ORIENTATION_PORTRAIT_FLIPPED, org.libsdl.app.SDLActivity.SDL_ORIENTATION_UNKNOWN, org.libsdl.app.SDLActivity.SDL_SYSTEM_CURSOR_ARROW, org.libsdl.app.SDLActivity.SDL_SYSTEM_CURSOR_CROSSHAIR, org.libsdl.app.SDLActivity.SDL_SYSTEM_CURSOR_HAND, org.libsdl.app.SDLActivity.SDL_SYSTEM_CURSOR_IBEAM, org.libsdl.app.SDLActivity.SDL_SYSTEM_CURSOR_NO, org.libsdl.app.SDLActivity.SDL_SYSTEM_CURSOR_SIZEALL, org.libsdl.app.SDLActivity.SDL_SYSTEM_CURSOR_SIZENESW, org.libsdl.app.SDLActivity.SDL_SYSTEM_CURSOR_SIZENS, org.libsdl.app.SDLActivity.SDL_SYSTEM_CURSOR_SIZENWSE, org.libsdl.app.SDLActivity.SDL_SYSTEM_CURSOR_SIZEWE, org.libsdl.app.SDLActivity.SDL_SYSTEM_CURSOR_WAIT, org.libsdl.app.SDLActivity.SDL_SYSTEM_CURSOR_WAITARROW, and text.
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 738 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.onCreate().
|
inlinestatic |
|
inline |
Definition at line 452 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.pressBackButton().
|
inlinestatic |
This method is called by SDL using JNI.
Definition at line 816 of file SDLActivity.java.
References org.libsdl.app.SDLActivity.getMotionListener(), org.libsdl.app.SDLActivity.isChromebook(), and org.libsdl.app.SDLActivity.isDeXMode().
Referenced by org.libsdl.app.SDLActivity.setRelativeMouseEnabled().
|
staticprotected |
Definition at line 535 of file SDLActivity.java.
|
protected |
Id of current dialog.
Definition at line 1130 of file SDLActivity.java.
|
staticprivate |
com.android.vending.expansion.zipfile.ZipResourceFile object or null.
Definition at line 1057 of file SDLActivity.java.
|
staticprivate |
com.android.vending.expansion.zipfile.ZipResourceFile's getInputStream() or null.
Definition at line 1060 of file SDLActivity.java.
|
static |
If shared libraries (e.g. SDL or the native application) could not be loaded.
Definition at line 76 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.dispatchKeyEvent(), org.libsdl.app.SDLActivity.onDestroy(), org.libsdl.app.SDLActivity.onLowMemory(), org.libsdl.app.SDLActivity.onPause(), org.libsdl.app.SDLActivity.onResume(), and org.libsdl.app.SDLActivity.onWindowFocusChanged().
|
staticprotected |
Definition at line 88 of file SDLActivity.java.
|
static |
Definition at line 71 of file SDLActivity.java.
|
staticprotected |
Definition at line 63 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprotected |
Definition at line 89 of file SDLActivity.java.
|
protected |
Result of current messagebox. Also used for blocking the calling thread.
Definition at line 1127 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.messageboxShowMessageBox(), and org.libsdl.app.SDLActivity.onCreateDialog().
|
static |
Definition at line 73 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.onDestroy(), and org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprotected |
Definition at line 537 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.SDLCommandHandler.handleMessage(), and org.libsdl.app.SDLActivity.onSystemUiVisibilityChange().
|
staticprotected |
Definition at line 92 of file SDLActivity.java.
|
static |
Definition at line 40 of file SDLActivity.java.
|
staticprotected |
Definition at line 90 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.createCustomCursor().
|
staticprotected |
Definition at line 87 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.getContentView().
|
staticprotected |
Definition at line 91 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.getMotionListener().
|
static |
Definition at line 70 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.handleNativeState(), and org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprotected |
Definition at line 86 of file SDLActivity.java.
|
staticprotected |
Definition at line 95 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.handleNativeExit(), and org.libsdl.app.SDLActivity.onDestroy().
|
static |
Definition at line 80 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLControllerManager.isDeviceSDLJoystick(), and org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprotected |
Definition at line 83 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.getMainSharedObject(), org.libsdl.app.SDLActivity.onCreate(), and org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprotected |
Definition at line 84 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.getNativeSurface().
|
staticprotected |
Definition at line 85 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
private |
Definition at line 1329 of file SDLActivity.java.
|
staticprotected |
Definition at line 58 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.getCurrentOrientation(), and org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprotected |
Definition at line 59 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.getCurrentOrientation(), and org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprotected |
Definition at line 60 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.getCurrentOrientation(), and org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprotected |
Definition at line 61 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.getCurrentOrientation(), and org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprotected |
Definition at line 57 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.getCurrentOrientation(), and org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprivate |
Definition at line 44 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprivate |
Definition at line 47 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprivate |
Definition at line 55 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprivate |
Definition at line 45 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprivate |
Definition at line 54 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprivate |
Definition at line 43 of file SDLActivity.java.
|
staticprivate |
Definition at line 53 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprivate |
Definition at line 50 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprivate |
Definition at line 52 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprivate |
Definition at line 49 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprivate |
Definition at line 51 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprivate |
Definition at line 46 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprivate |
Definition at line 48 of file SDLActivity.java.
Referenced by org.libsdl.app.SDLActivity.setSystemCursor().
|
staticprivate |
Definition at line 38 of file SDLActivity.java.