--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/wlanutilities/wlanwizard/inc/wlanwizardpageprocessingsettings.h Mon May 24 21:11:39 2010 +0300
@@ -0,0 +1,95 @@
+/*
+ * Copyright (c) 2010 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:
+ * WLAN Wizard Page: Processing settings, connection and running ict.
+ *
+ */
+
+#ifndef WLANWIZARDPAGEPROCESSINGSETTINGS_H
+#define WLANWIZARDPAGEPROCESSINGSETTINGS_H
+
+// System includes
+
+// User includes
+#include "wlanwizardpageinternal.h"
+#ifdef ICT_RESULT_ENUM
+#include "wlanqtutils.h"
+#endif
+
+// Forward declarations
+class HbDocumentLoader;
+class HbLabel;
+class WlanWizardPrivate;
+
+// External data types
+
+// Constants
+
+/*!
+ @addtogroup group_wlan_wizard
+ @{
+ */
+
+class WlanWizardPageProcessingSettings: public WlanWizardPageInternal
+{
+ Q_OBJECT
+public:
+ explicit WlanWizardPageProcessingSettings(WlanWizardPrivate* parent);
+ virtual ~WlanWizardPageProcessingSettings();
+
+public: // From WlanWizardPage
+ HbWidget* initializePage();
+ int nextId(bool &removeFromStack) const;
+ bool showPage();
+ bool requiresStartOperation();
+ void startOperation();
+
+signals:
+
+public slots:
+ void loadDocmlSection(Qt::Orientation orientation);
+ void wlanNetworkClosed(int iapId, int reason);
+#ifdef ICT_RESULT_ENUM
+ void ictResult(int iapId, WlanLoginIctsResultType result);
+#else
+ void ictResult(int iapId, bool result);
+#endif
+ void wlanNetworkOpened(int iapId);
+
+protected:
+
+protected slots:
+
+private:
+ Q_DISABLE_COPY(WlanWizardPageProcessingSettings)
+
+private slots:
+
+private: // data
+ // OWNED
+ //! Docml document loader
+ HbDocumentLoader *mDocLoader;
+
+ // NOT OWNED
+ //! Visualization of the page
+ HbWidget *mWidget;
+ //! Title for text in the page
+ HbLabel *mLabel;
+ //! PageId for next wizard page
+ int mNextPageId;
+};
+
+/*! @} */
+
+#endif // WLANWIZARDPAGEPROCESSINGSETTINGS_H