diff -r e686773b3f54 -r 0ba2181d7c28 phonebookui/pbkcommonui/inc/cntgroupselectionpopup.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phonebookui/pbkcommonui/inc/cntgroupselectionpopup.h Fri Mar 19 09:27:18 2010 +0200 @@ -0,0 +1,68 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + +#ifndef CNTGROUPSELECTIONPOPUP_H +#define CNTGROUPSELECTIONPOPUP_H + +#include +#include +#include +#include "qmobilityglobal.h" + +class HbListView; +class MobCntModel; + +QTM_BEGIN_NAMESPACE +class QContactManager; +class QContact; +QTM_END_NAMESPACE + +QTM_USE_NAMESPACE + +class CntGroupSelectionPopup : public HbDialog +{ + Q_OBJECT + +public: + CntGroupSelectionPopup(QContactManager *manager,MobCntModel *model, QContact *contact,QGraphicsItem *parent = 0 ); + ~CntGroupSelectionPopup(); + + void saveNewGroup(); + void saveOldGroup(); + void populateListOfContact(); + void populateListOfGroup(); + void deleteGroup(); + +#ifdef PBK_UNIT_TEST +public slots: +#else +private slots: +#endif + +#ifdef PBK_UNIT_TEST +public: +#else +private: +#endif + HbListView *mListView; + QContactManager *mContactManager; + MobCntModel *mCntModel; + QContact *mContact; + +}; + +#endif // CNTGROUPSELECTIONPOPUP_H