clock/clockui/clockcityselectionlist/inc/clockcityselectionlist_p.h
changeset 18 c198609911f9
child 26 a949c2543c15
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/clock/clockui/clockcityselectionlist/inc/clockcityselectionlist_p.h	Fri Apr 16 14:57:40 2010 +0300
@@ -0,0 +1,98 @@
+/*
+* 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:
+* The header file for class ClockCitySelectionListPrivate.
+*
+*/
+
+#ifndef CLOCKCITYSELECTIONLIST_P_H
+#define CLOCKCITYSELECTIONLIST_P_H
+
+// System includes
+#include <QObject>
+#include <QPointer>
+#include <QModelIndex>
+
+#include "clockdatatypes.h"
+
+// Forward declarations
+class QStandardItemModel;
+class HbDocumentLoader;
+class HbView;
+class HbListView;
+class HbAction;
+class HbSearchPanel;
+class HbLineEdit;
+class HbDialog;
+class HbComboBox;
+class ClockCitySelectionList;
+class ClockCityListProxyModel;
+class TimezoneClient;
+
+class ClockCitySelectionListPrivate : public QObject
+{
+	Q_OBJECT
+	Q_DECLARE_PUBLIC(ClockCitySelectionList)
+
+public:
+	explicit ClockCitySelectionListPrivate(
+			TimezoneClient *client, QObject *parent);
+	virtual ~ClockCitySelectionListPrivate();
+
+private slots:
+	void populateListModel();
+	void handleItemActivated(const QModelIndex &index);
+	void handleBackAction();
+	void closeCityList();
+	void updateSearchCriteria(const QString &criteria);
+	void handleAddOwnCityAction();
+	void handleOkAction();
+	void handleCancelAction();
+	void handleTimeZoneSelection(int index);
+
+private:
+	void showCityList();
+	QStringList getOffsetTexts();
+	void addCityNameField();
+	void addTimeZoneField();
+	void addCountryListField();
+private:
+	QPointer<QStandardItemModel> mListModel;
+
+	HbDocumentLoader *mLoader;
+	QPointer<HbView> mView;
+	QPointer<HbListView> mListView;
+	HbAction *mBackAction;
+	QPointer<HbSearchPanel> mSearchBox;
+	QPointer<HbAction> mAddOwnCityAction;
+	QPointer<HbDialog> mAddOwnCityDialog;
+	QPointer<HbLineEdit> mCityNameEdit;
+	QPointer<HbComboBox> mTimeZoneComboBox;
+	QPointer<HbComboBox> mCountryComboBox;
+
+	ClockCitySelectionList *q_ptr;
+	TimezoneClient *mClient;
+	ClockCityListProxyModel *mProxyModel;
+
+	QList<int> mTimeZoneOffsetList;
+	QList<LocationInfo> mCountryList;
+
+	bool mOwnsClient;
+	int mCurrentTZOffsetIndex;
+
+};
+
+#endif // CLOCKCITYSELECTIONLIST_P_H
+
+// End of file	--Don't remove this.