phonebookui/Phonebook2/GroupExtension/inc/CPguGroupNameQueryDlg.h
changeset 0 e686773b3f54
child 26 0d28c1c5b6dd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookui/Phonebook2/GroupExtension/inc/CPguGroupNameQueryDlg.h	Tue Feb 02 10:12:17 2010 +0200
@@ -0,0 +1,86 @@
+/*
+* Copyright (c) 2005-2007 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:  Phonebook 2 group name query dialog.
+*
+*/
+
+
+#ifndef CPGUGROUPNAMEQUERYDLG_H
+#define CPGUGROUPNAMEQUERYDLG_H
+
+// INCLUDES
+#include <AknQueryDialog.h>
+
+// FORWARD DECLARATIONS
+class MVPbkContactViewBase;
+class MPbk2ContactNameFormatter;
+
+// CLASS DECLARATION
+
+/**
+ * Phonebook 2 group name query dialog.
+ * Responsible for quering group name.
+ */
+class CPguGroupNameQueryDlg : public CAknTextQueryDialog
+    {
+    public:  // Constructors and destructor
+
+        /**
+         * Creates a new instance of this class.
+         *
+         * @param aDataText         Original name of the group.
+         * @param aGroupsView       Groups list view.
+         * @param aNameGeneration   Indicates whether to generate
+         *                          group name.
+         * @return  A new instance of this class.
+         */
+        static CPguGroupNameQueryDlg* NewL(
+                TDes& aDataText,
+                MVPbkContactViewBase& aGroupsView,
+                MPbk2ContactNameFormatter& aNameFormatter,
+                TBool aNameGeneration );
+
+        /**
+         * Destructor.
+         */
+        ~CPguGroupNameQueryDlg();
+
+    public: // From CAknTextQueryDialog
+        TBool OkToExitL(
+                TInt aButtonId );
+
+    private: // Implementation
+        CPguGroupNameQueryDlg(
+                TDes& aDataText,
+                MVPbkContactViewBase& aGroupsView,
+                MPbk2ContactNameFormatter& aNameFormatter );
+        void ConstructL(
+                TDes& aDataText,
+                TBool aNameGeneration );
+        void UpdateGroupTitleL();
+        TBool ContainsL(
+                const TDesC& aText );
+
+    private: // Data
+        /// Ref: Groups view
+        MVPbkContactViewBase& iGroupsListView;
+        /// Ref: Contact name formatter
+        MPbk2ContactNameFormatter& iNameFormatter;
+        /// Own: Copy of original group name
+        HBufC* iOriginalName;
+    };
+
+#endif // CPGUGROUPNAMEQUERYDLG_H
+
+// End of File