phonebookui/cntcommonui/collections/cntgroupmemberview.h
changeset 75 4ecbe3571b5a
equal deleted inserted replaced
71:7cc7d74059f9 75:4ecbe3571b5a
       
     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:
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef CNTGROUPMEMBERVIEW_H
       
    19 #define CNTGROUPMEMBERVIEW_H
       
    20 
       
    21 #include <QObject>
       
    22 #include <cntabstractview.h>
       
    23 #include "cntglobal.h"
       
    24 
       
    25 class CntGroupMemberViewPrivate;
       
    26 class HbView;
       
    27 class CntAbstractEngine;
       
    28 
       
    29 class QTPBK_EXPORT CntGroupMemberView : public QObject, public CntAbstractView
       
    30 {
       
    31     Q_OBJECT
       
    32 
       
    33 public:
       
    34     CntGroupMemberView();
       
    35     ~CntGroupMemberView();
       
    36     
       
    37 public: // From CntAbstractView
       
    38     void activate( const CntViewParameters aArgs );
       
    39     void deactivate();
       
    40     bool isDefault() const;
       
    41     HbView* view() const;
       
    42     int viewId() const;
       
    43     void setEngine( CntAbstractEngine& aEngine );
       
    44     
       
    45 signals:
       
    46     void backPressed();
       
    47         
       
    48 private:
       
    49     friend class TestCntGroupMemberView;
       
    50     CntGroupMemberViewPrivate* const d_ptr;
       
    51     Q_DECLARE_PRIVATE_D(d_ptr, CntGroupMemberView)
       
    52     Q_DISABLE_COPY(CntGroupMemberView)
       
    53 };
       
    54 
       
    55 #endif // CNTGROUPMEMBERVIEW_H
       
    56 
       
    57 // EOF