--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/javauis/mmapi_qt/baseline/src/controlcontainer.cpp Tue Aug 31 15:09:22 2010 +0300
@@ -0,0 +1,97 @@
+/*
+* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description: This file contains ControlContainer JNI functions
+*
+*/
+
+#include <logger.h>
+#include "com_nokia_microedition_media_ControlContainer.h"
+
+#include "cmmaplayer.h"
+#include "cmmacontrol.h"
+#include "s60commonutils.h"
+
+using namespace java::util;
+
+//#include "mmapiutils.h"
+//#include "jutils.h"
+
+
+/**
+ * JNI function
+ */
+JNIEXPORT jstring JNICALL Java_com_nokia_microedition_media_ControlContainer__1getControlClassName
+(JNIEnv* aJni, jclass,
+ jint aControlHandle)
+{
+ CMMAControl* control =
+ reinterpret_cast< CMMAControl* >(aControlHandle);
+
+ const TDesC& className = control->ClassName();
+
+ LOG1(EJavaMMAPI, EInfo, "MMA::ControlContainer.cpp::getControlClassName name = %S",
+ className.Ptr());
+
+ // Create Java String from class name and return it
+ return (className == KNullDesC) ? NULL : S60CommonUtils::NativeToJavaString(*aJni, className);
+}
+
+/**
+ * JNI function
+ */
+JNIEXPORT jstring JNICALL Java_com_nokia_microedition_media_ControlContainer__1getPublicControlClassName
+(JNIEnv* aJni, jclass,
+ jint aControlHandle)
+{
+ CMMAControl* control =
+ reinterpret_cast< CMMAControl* >(aControlHandle);
+
+ const TDesC& className = control->PublicClassName();
+
+ LOG1(EJavaMMAPI, EInfo, "MMA::ControlContainer.cpp::getPublicControlClassName name = %S",
+ className.Ptr());
+
+ // Create Java String from class name and return it
+ return (className == KNullDesC) ? NULL : S60CommonUtils::NativeToJavaString(*aJni, className);
+}
+
+/**
+ * JNI function
+ */
+JNIEXPORT jint JNICALL Java_com_nokia_microedition_media_ControlContainer__1getControlsCount
+(JNIEnv*, jclass,
+ jint aPlayerHandle)
+{
+ CMMAPlayer* player =
+ reinterpret_cast< CMMAPlayer *>(aPlayerHandle);
+ LOG1(EJavaMMAPI, EInfo, "MMA::ControlContainer.cpp::getControlsCount count = %d",
+ player->ControlCount());
+ return player->ControlCount();
+}
+
+/**
+ * JNI function
+ */
+JNIEXPORT jint JNICALL Java_com_nokia_microedition_media_ControlContainer__1getControlHandle
+(JNIEnv*, jclass,
+ jint aPlayerHandle, jint aControlIndex)
+{
+ CMMAPlayer* player =
+ reinterpret_cast< CMMAPlayer *>(aPlayerHandle);
+
+ // Get control and make Java handle
+ return reinterpret_cast<TInt>(player->Control(aControlIndex));
+}
+
+// END OF FILE