Sha256: c8e978b2b1974406a82459b4a3dc318f069cde85ef475c0e47b66aafbea50b74

Contents?: true

Size: 761 Bytes

Versions: 32

Compression:

Stored size: 761 Bytes

Contents

#include "rhodes/jni/com_rhomobile_rhodes_SplashScreen.h"

#include "rhodes/JNIRhodes.h"

#include <common/RhodesApp.h>

namespace rc = rho::common;

RHO_GLOBAL void JNICALL Java_com_rhomobile_rhodes_SplashScreen_nativeStart
  (JNIEnv *, jobject)
{
    rc::CSplashScreen &splashScreen = RHODESAPP().getSplashScreen();
    splashScreen.start();
}

RHO_GLOBAL void JNICALL Java_com_rhomobile_rhodes_SplashScreen_nativeHide
  (JNIEnv *, jobject)
{
    rc::CSplashScreen &splashScreen = RHODESAPP().getSplashScreen();
    splashScreen.hide();
}

RHO_GLOBAL jint JNICALL Java_com_rhomobile_rhodes_SplashScreen_howLongWaitMs
  (JNIEnv *, jobject)
{
    rc::CSplashScreen &splashScreen = RHODESAPP().getSplashScreen();
    return (jint)splashScreen.howLongWaitMs();
}

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
rhodes-3.0.2 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.2.beta.1 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.1 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.1.beta.8 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.1.beta.7 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.1.beta.6 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.1.beta.5 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.1.beta.4 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.1.beta.3 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.1.beta.2 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.0 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.0.beta.7 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.0.beta.6 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.0.beta.5 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.0.beta.4 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.0.beta.3 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.0.beta.2 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-3.0.0.beta.1 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-2.4.1 platform/android/Rhodes/jni/src/splashscreen.cpp
rhodes-2.4.1.beta.1 platform/android/Rhodes/jni/src/splashscreen.cpp