mpviewplugins/mpcollectionviewplugin/inc/mpcollectioncontainerplaylists.h
changeset 19 4e84c994a771
child 20 82baf59ce8dd
equal deleted inserted replaced
5:2a40e88564c8 19:4e84c994a771
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: Music Player collection container definition - Playlists.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MPCOLLECTIONCONTAINERPLAYLISTS_H
       
    19 #define MPCOLLECTIONCONTAINERPLAYLISTS_H
       
    20 
       
    21 #include "mpcollectionlistcontainer.h"
       
    22 
       
    23 class MpCollectionInfoBar;
       
    24 
       
    25 class MpCollectionContainerPlaylists : public MpCollectionListContainer
       
    26 {
       
    27     Q_OBJECT
       
    28 
       
    29 public:
       
    30 
       
    31     explicit MpCollectionContainerPlaylists( HbDocumentLoader *loader, QGraphicsItem *parent=0 );
       
    32     virtual ~MpCollectionContainerPlaylists();
       
    33 
       
    34 private:
       
    35 
       
    36     void setupContainer();
       
    37 
       
    38 private:
       
    39 
       
    40     MpCollectionInfoBar     *mInfoBar;
       
    41     bool                    mListInitialized;
       
    42 
       
    43 };
       
    44 
       
    45 #endif  // MPCOLLECTIONCONTAINERPLAYLISTS_H
       
    46