os/mm/devsoundextensions/globalaudiosettings/src/AudioClientsListManagerAO.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). 
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:   This file contains definitions of Audio Clients List Manager.
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
sl@0
    20
sl@0
    21
#ifndef AUDIOCLIENTSLISTMANAGERAO_H
sl@0
    22
#define AUDIOCLIENTSLISTMANAGERAO_H
sl@0
    23
sl@0
    24
#include <e32base.h>
sl@0
    25
#include <GlobalAudioSettings.h>
sl@0
    26
#include <e32property.h>
sl@0
    27
sl@0
    28
/**
sl@0
    29
*  Defines audio clients list manager class.
sl@0
    30
*
sl@0
    31
*  @lib GlobalAudioSettings.lib
sl@0
    32
*  @since Series 60 3.2
sl@0
    33
*/
sl@0
    34
class CAudioClientsListManagerAO: public CActive
sl@0
    35
    {
sl@0
    36
    public:
sl@0
    37
        // 2 Phase constructor
sl@0
    38
        static CAudioClientsListManagerAO* NewL(
sl@0
    39
                                            CGlobalAudioSettings& aGlobalAudioSettings,
sl@0
    40
                                            RPointerArray<MAudioClientsListObserver>& aArray,
sl@0
    41
                                            TUint32 aKey );
sl@0
    42
        // Destructor
sl@0
    43
        ~CAudioClientsListManagerAO();
sl@0
    44
        // Starts monitoring audio clients list
sl@0
    45
        TInt MonitorStart();
sl@0
    46
        // Stops monitoring audio clients list
sl@0
    47
        TInt MonitorStop();
sl@0
    48
        // Returns the audio clients list
sl@0
    49
        TInt GetAudioClientsList(
sl@0
    50
                    CGlobalAudioSettings::TAudioClientListType aType,
sl@0
    51
                    RArray<TProcessId>& aList );
sl@0
    52
sl@0
    53
    protected:
sl@0
    54
        // From CActive begins
sl@0
    55
        void RunL();
sl@0
    56
        void DoCancel();
sl@0
    57
        TInt RunError(TInt aError);
sl@0
    58
        // From CActive ends
sl@0
    59
    
sl@0
    60
    private:
sl@0
    61
        // Constructor
sl@0
    62
         CAudioClientsListManagerAO(CGlobalAudioSettings& aGlobalAudioSettings,
sl@0
    63
                					RPointerArray<MAudioClientsListObserver>& aArray,
sl@0
    64
                					TUint32 aKey );
sl@0
    65
        // 2nd phase constructor
sl@0
    66
        void ConstructL();
sl@0
    67
sl@0
    68
    private:
sl@0
    69
        // Handle to property
sl@0
    70
        RProperty iActiveAudioClients;
sl@0
    71
        // Reference to CGlobalAudioSettings
sl@0
    72
        CGlobalAudioSettings& iGlobalAudioSettings;
sl@0
    73
        // List of Audio Clients List Observer objects
sl@0
    74
        RPointerArray<MAudioClientsListObserver>& iAudioClientsListObserverArray;        
sl@0
    75
        //P&S key
sl@0
    76
        TUint32 iKey;
sl@0
    77
    };
sl@0
    78
sl@0
    79
#endif  // AUDIOCLIENTSLISTMANAGERAO_H
sl@0
    80
sl@0
    81
// End of file