--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookui/pbkcommonui/inc/cntgroupeditormodel.h Tue Aug 31 15:05:21 2010 +0300
@@ -0,0 +1,50 @@
+/*
+* 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 CNTGROUPEDITORMODEL_H_
+#define CNTGROUPEDITORMODEL_H_
+#include "cntdetaileditormodel.h"
+#include <qtcontacts.h>
+
+class HbDataFormModelItem;
+QTM_BEGIN_NAMESPACE
+class QContact;
+class QContactDetail;
+QTM_END_NAMESPACE
+
+QTM_USE_NAMESPACE
+
+class CntGroupEditorModel : public CntDetailEditorModel
+ {
+ Q_OBJECT
+
+public:
+ CntGroupEditorModel( QContact* aContact );
+ ~CntGroupEditorModel();
+
+ void saveContactDetails();
+ QContactDetail detail() const;
+ bool isConferenceNumber( const QModelIndex& aIndex );
+private:
+
+ QContactName iGroupName;
+ QContactPhoneNumber iGroupConfCallNumber;
+
+ HbDataFormModelItem* iNameItem;
+ HbDataFormModelItem* iNumberItem;
+ };
+#endif /* CNTGROUPEDITORMODEL_H_ */