sl@0: // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // This Process called with the argument KThemeServerPropertyDefineCmdDefine, defines sl@0: // the theme server RProperty catagory to be the same as the theme servers process ID. sl@0: // Called with the argument KThemeServerPropertyDefineCmdDelete, it will delete the sl@0: // theme server RProperty. This is because an RProperty can only be defined and deleted sl@0: // from within a process with the same UID3 as the RProperty catogory you are trying to sl@0: // define/delete. sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Nokia test code sl@0: */ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include "..\..\nga\server\renderorientationtracker.h" //for KThemeOrientationCatagory and KThemeOrientationKey sl@0: #include "themeserverpropertydefine.h" sl@0: sl@0: void DefineThemeServerPropertyL() sl@0: { sl@0: RProperty themeServerOrientationProperty; sl@0: const TSecurityPolicy KThemeOrientationReadSecurityPolicy( sl@0: TSecurityPolicy::EAlwaysPass); sl@0: const TSecurityPolicy KThemeOrientationWriteSecurityPolicy( sl@0: TSecurityPolicy::EAlwaysPass); sl@0: User::LeaveIfError(RProperty::Define( KThemeOrientationCategory, sl@0: KThemeOrientationKey, sl@0: RProperty::EInt, sl@0: KThemeOrientationReadSecurityPolicy, sl@0: KThemeOrientationWriteSecurityPolicy)); sl@0: themeServerOrientationProperty.Close(); sl@0: } sl@0: sl@0: void DeleteThemeServerPropertyL() sl@0: { sl@0: TInt err = KErrNone; sl@0: RProperty themeServerOrientationProperty; sl@0: User::LeaveIfError(themeServerOrientationProperty.Delete( sl@0: KThemeOrientationCategory, KThemeOrientationKey)); sl@0: themeServerOrientationProperty.Close(); sl@0: } sl@0: sl@0: void MainL() sl@0: { sl@0: CCommandLineArguments* args = CCommandLineArguments::NewLC(); sl@0: TPtrC argumentPrt(args->Arg(1)); sl@0: if (argumentPrt == KThemeServerPropertyDefineCmdDefine) sl@0: { sl@0: DefineThemeServerPropertyL(); sl@0: } sl@0: else if (argumentPrt == KThemeServerPropertyDefineCmdDelete) sl@0: { sl@0: DeleteThemeServerPropertyL(); sl@0: } sl@0: else sl@0: { sl@0: User::Leave(KErrNotSupported); sl@0: } sl@0: CleanupStack::PopAndDestroy(args); sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: CTrapCleanup* cleanUpStack = CTrapCleanup::New(); sl@0: if (cleanUpStack == NULL) sl@0: { sl@0: return KErrNoMemory; sl@0: } sl@0: TRAPD(err, MainL()); sl@0: delete cleanUpStack; sl@0: return (err); sl@0: } sl@0: