Update contrib.
1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This Process called with the argument KThemeServerPropertyDefineCmdDefine, defines
15 // the theme server RProperty catagory to be the same as the theme servers process ID.
16 // Called with the argument KThemeServerPropertyDefineCmdDelete, it will delete the
17 // theme server RProperty. This is because an RProperty can only be defined and deleted
18 // from within a process with the same UID3 as the RProperty catogory you are trying to
25 @internalComponent - Internal Nokia test code
30 #include <e32property.h>
31 #include "..\..\nga\server\renderorientationtracker.h" //for KThemeOrientationCatagory and KThemeOrientationKey
32 #include "themeserverpropertydefine.h"
34 void DefineThemeServerPropertyL()
36 RProperty themeServerOrientationProperty;
37 const TSecurityPolicy KThemeOrientationReadSecurityPolicy(
38 TSecurityPolicy::EAlwaysPass);
39 const TSecurityPolicy KThemeOrientationWriteSecurityPolicy(
40 TSecurityPolicy::EAlwaysPass);
41 User::LeaveIfError(RProperty::Define( KThemeOrientationCategory,
44 KThemeOrientationReadSecurityPolicy,
45 KThemeOrientationWriteSecurityPolicy));
46 themeServerOrientationProperty.Close();
49 void DeleteThemeServerPropertyL()
52 RProperty themeServerOrientationProperty;
53 User::LeaveIfError(themeServerOrientationProperty.Delete(
54 KThemeOrientationCategory, KThemeOrientationKey));
55 themeServerOrientationProperty.Close();
60 CCommandLineArguments* args = CCommandLineArguments::NewLC();
61 TPtrC argumentPrt(args->Arg(1));
62 if (argumentPrt == KThemeServerPropertyDefineCmdDefine)
64 DefineThemeServerPropertyL();
66 else if (argumentPrt == KThemeServerPropertyDefineCmdDelete)
68 DeleteThemeServerPropertyL();
72 User::Leave(KErrNotSupported);
74 CleanupStack::PopAndDestroy(args);
77 GLDEF_C TInt E32Main()
79 CTrapCleanup* cleanUpStack = CTrapCleanup::New();
80 if (cleanUpStack == NULL)