os/graphics/windowing/windowserver/test/tauto/themeserverpropertydefine.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// This Process called with the argument KThemeServerPropertyDefineCmdDefine, defines
sl@0
    15
// the theme server RProperty catagory to be the same as the theme servers process ID. 
sl@0
    16
// Called with the argument KThemeServerPropertyDefineCmdDelete, it will delete the 
sl@0
    17
// theme server RProperty. This is because an RProperty can only be defined and deleted 
sl@0
    18
// from within a process with the same UID3 as the RProperty catogory you are trying to 
sl@0
    19
// define/delete.
sl@0
    20
//
sl@0
    21
sl@0
    22
/**
sl@0
    23
 @file
sl@0
    24
 @test
sl@0
    25
 @internalComponent - Internal Nokia test code
sl@0
    26
 */
sl@0
    27
sl@0
    28
#include <BACLINE.H> 
sl@0
    29
#include <e32base.h>
sl@0
    30
#include <e32property.h>
sl@0
    31
#include "..\..\nga\server\renderorientationtracker.h" //for KThemeOrientationCatagory and KThemeOrientationKey
sl@0
    32
#include "themeserverpropertydefine.h"
sl@0
    33
sl@0
    34
void DefineThemeServerPropertyL()
sl@0
    35
    {
sl@0
    36
    RProperty themeServerOrientationProperty;
sl@0
    37
    const TSecurityPolicy KThemeOrientationReadSecurityPolicy(
sl@0
    38
            TSecurityPolicy::EAlwaysPass);
sl@0
    39
    const TSecurityPolicy KThemeOrientationWriteSecurityPolicy(
sl@0
    40
            TSecurityPolicy::EAlwaysPass);
sl@0
    41
    User::LeaveIfError(RProperty::Define(   KThemeOrientationCategory,
sl@0
    42
                                            KThemeOrientationKey, 
sl@0
    43
                                            RProperty::EInt,
sl@0
    44
                                            KThemeOrientationReadSecurityPolicy,
sl@0
    45
                                            KThemeOrientationWriteSecurityPolicy));
sl@0
    46
    themeServerOrientationProperty.Close();
sl@0
    47
    }
sl@0
    48
sl@0
    49
void DeleteThemeServerPropertyL()
sl@0
    50
    {
sl@0
    51
    TInt err = KErrNone;
sl@0
    52
    RProperty themeServerOrientationProperty;
sl@0
    53
    User::LeaveIfError(themeServerOrientationProperty.Delete(
sl@0
    54
            KThemeOrientationCategory, KThemeOrientationKey));
sl@0
    55
    themeServerOrientationProperty.Close();
sl@0
    56
    }
sl@0
    57
sl@0
    58
void MainL()
sl@0
    59
    {
sl@0
    60
    CCommandLineArguments* args = CCommandLineArguments::NewLC();
sl@0
    61
    TPtrC argumentPrt(args->Arg(1));
sl@0
    62
    if (argumentPrt == KThemeServerPropertyDefineCmdDefine)
sl@0
    63
        {
sl@0
    64
        DefineThemeServerPropertyL();
sl@0
    65
        }
sl@0
    66
    else if (argumentPrt == KThemeServerPropertyDefineCmdDelete)
sl@0
    67
        {
sl@0
    68
        DeleteThemeServerPropertyL();
sl@0
    69
        }
sl@0
    70
    else
sl@0
    71
        {
sl@0
    72
        User::Leave(KErrNotSupported);
sl@0
    73
        }
sl@0
    74
    CleanupStack::PopAndDestroy(args);
sl@0
    75
    }
sl@0
    76
sl@0
    77
GLDEF_C TInt E32Main()
sl@0
    78
    {
sl@0
    79
    CTrapCleanup* cleanUpStack = CTrapCleanup::New();
sl@0
    80
    if (cleanUpStack == NULL)
sl@0
    81
        {
sl@0
    82
        return KErrNoMemory;
sl@0
    83
        }
sl@0
    84
    TRAPD(err, MainL());
sl@0
    85
    delete cleanUpStack;
sl@0
    86
    return (err);
sl@0
    87
    }
sl@0
    88