javauis/amms_qt/jni/src/controlcontainer.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 31 Aug 2010 15:09:22 +0300
branchRCL_3
changeset 25 ae942d28ec0e
parent 17 0fd27995241b
permissions -rw-r--r--
Revision: v2.2.11 Kit: 201035

/*
* Copyright (c) 2005-2007 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:  JNI file for ControlContainer
*
*/


//#include <jutils.h>
#include <logger.h>

#include "com_nokia_amms_ControlContainer.h"

#include "cammscontrolgroup.h"
#include "cammsmodule.h"
#include "jstringutils.h"
#include "s60commonutils.h"
using namespace java::util;

/**
 * JNI function.
 */
JNIEXPORT jstring JNICALL Java_com_nokia_amms_ControlContainer__1getControlClassName
(JNIEnv* aJniEnv,
 jclass,
 jint /*aEventSourceHandle*/,
 jint aNativeHandle)
{
    CAMMSControlGroup* controlGroup =
        reinterpret_cast< CAMMSControlGroup* >(aNativeHandle);

    LOG1( EJavaAMMS, EInfo, "AMMS::ControlContainer.cpp::getControlClassName name = %S",
              controlGroup->ClassName().Ptr());

    return S60CommonUtils::NativeToJavaString(*aJniEnv, controlGroup->ClassName());
}

/**
 * JNI function.
 */
JNIEXPORT jint JNICALL Java_com_nokia_amms_ControlContainer__1getControlsCount
(JNIEnv*,
 jclass,
 jint /*aEventSourceHandle*/,
 jint aNativeHandle)
{
    CAMMSModule* module = reinterpret_cast< CAMMSModule* >(aNativeHandle);

    LOG1( EJavaAMMS, EInfo, "AMMS::ControlContainer.cpp::getControlsCount count = %d",
              module->Count());
    return module->Count();
}

/**
 * JNI function.
 */
JNIEXPORT jint JNICALL Java_com_nokia_amms_ControlContainer__1getControlHandle
(JNIEnv*,
 jclass,
 jint /*aEventSourceHandle*/,
 jint aNativeHandle,
 jint aIndex)
{
    LOG1( EJavaAMMS, EInfo, "AMMS::ControlContainer.cpp::getControlHandle index = %d",
              aIndex);
    CAMMSModule* module = reinterpret_cast< CAMMSModule *>(aNativeHandle);

    // Java handles must be created from CBase derived classes.
    // Casting here is safe because all groups in the modules are derived from
    // CAMMSControlGroup.
    CAMMSControlGroup* group = static_cast< CAMMSControlGroup* >(
                                   module->At(aIndex));     // CSI: 1 Wrong index means implementation error #

	return  reinterpret_cast<TInt>(group);
}

//  End of File