securitysettings/eapqtdialogs/src/eapfastinstallpacquerydialog.cpp
changeset 26 9abfd4f00d37
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/securitysettings/eapqtdialogs/src/eapfastinstallpacquerydialog.cpp	Mon May 24 20:32:47 2010 +0300
@@ -0,0 +1,230 @@
+/*
+* 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: Prompt Dialog implementation
+*
+*/
+
+#include "eapfastinstallpacquerydialog.h"
+#include "OstTraceDefinitions.h"
+#ifdef OST_TRACE_COMPILER_IN_USE
+#endif
+
+// The index numbers of the button of the dialog
+const int yesButtonIndex = 1;
+
+/**
+ * The constructor
+ */
+EapFastInstallPacQueryDialog::EapFastInstallPacQueryDialog(const QVariantMap &parameters)
+:HbMessageBox("default text...",HbMessageBox::MessageTypeQuestion),
+mActionYes(NULL),
+mTranslator(new HbTranslator("eapprompts"))
+{
+    OstTraceFunctionEntry0( EAPGTCQUERYDIALOG_EAPGTCQUERYDIALOG_ENTRY );
+    qDebug("EapFastInstallPacQueryDialog::EapFastInstallPacQueryDialog ENTER");
+        
+    createDialog( parameters );
+    
+    mClose = false;
+    mYesActionPressed = false;
+    
+    OstTraceFunctionExit0( EAPGTCQUERYDIALOG_EAPGTCQUERYDIALOG_EXIT );
+    qDebug("EapFastInstallPacQueryDialog::EapFastInstallPacQueryDialog EXIT");
+}
+    
+/**
+ * The construction of the dialog
+ */ 
+void EapFastInstallPacQueryDialog::createDialog(const QVariantMap &parameters )
+{
+    OstTraceFunctionEntry0( EAPGTCQUERYDIALOG_CREATEDIALOG_ENTRY );
+    qDebug("EapFastInstallPacQueryDialog::createDialog ENTER");
+         
+    QString servername = QString("foobar");
+    QString key = QString("pacservername");
+       
+    if ( parameters.empty() == false ) {
+        if ( parameters.contains(key) ) {
+            QVariant variant = parameters.value(key);
+            servername = variant.toString();
+            }
+        }  
+    
+    QString mainText = QString(hbTrId("txt_occ_info_install_pac_from_server_1").arg(servername));
+    
+    //Set the dialog to be on the screen until user reacts
+    //by pressing any of the Action buttons
+    this->setModal(true);
+    this->setTimeout(HbPopup::NoTimeout);
+    this->setDismissPolicy(HbPopup::NoDismiss);
+               
+    this->setText(mainText);    
+    this->setIconVisible(true);
+        
+    QList<QAction*> action_list = this->actions();
+        
+    for ( int i = 0; i < action_list.count(); i++ ) {
+        this->removeAction(action_list.at(i));
+        }
+    
+    mActionYes = new HbAction(hbTrId("txt_common_button_yes"),this); 
+    this->addAction(mActionYes);
+    
+    HbAction* actionNo = new HbAction(hbTrId("txt_common_button_no"),this);
+    this->addAction(actionNo);    
+    
+    disconnect(mActionYes, SIGNAL(triggered()),this, SLOT(close()));
+    bool connected = connect(mActionYes, SIGNAL(triggered()), this, SLOT(yesPressed()));
+    Q_ASSERT(connected == true);
+    
+    disconnect(actionNo, SIGNAL(triggered()),this, SLOT(close()));
+    connected = connect(actionNo, SIGNAL(triggered()), this, SLOT(noPressed()));
+    Q_ASSERT(connected == true);
+        
+    // Connect the about to close and hide signals, so that we are able to inform 
+    // the caller that the dialog was closed    
+    connected = connect(this, SIGNAL(aboutToClose()), this, SLOT(closingDialog()));
+    Q_ASSERT(connected == true);
+    connected = connect(this, SIGNAL(aboutToHide()), this, SLOT(closingDialog()));
+    Q_ASSERT(connected == true);
+   
+    OstTraceFunctionExit0( DUP1_EAPGTCQUERYDIALOG_CREATEDIALOG_EXIT );
+    qDebug("EapFastInstallPacQueryDialog::createDialog EXIT");
+}
+
+/**
+ * Destructor
+ */
+EapFastInstallPacQueryDialog::~EapFastInstallPacQueryDialog()
+{
+    OstTraceFunctionEntry0( EAPGTCQUERYDIALOG_DEAPGTCQUERYDIALOG_ENTRY );
+    
+    // The dialog widgets are deleted as the dialog is deleted
+    
+    OstTraceFunctionExit0( EAPGTCQUERYDIALOG_DEAPGTCQUERYDIALOG_EXIT );
+}
+
+/**
+ * Function is called when the Yes Action button is pressed
+ */
+void EapFastInstallPacQueryDialog::yesPressed()
+{
+    OstTraceFunctionEntry0( EAPFASTINSTALLPACQUERYDIALOG_YESBUTTONPRESSED_ENTRY );
+    qDebug("EapFastInstallPacQueryDialog::yesPressed ENTER");
+    
+    if ( mYesActionPressed == false ) {
+        
+         mYesActionPressed = true;
+            
+         QVariantMap data;
+         QVariant variant(yesButtonIndex);
+         data.insert("yesbutton", variant);
+         // emit the data of the selected button and close the dialog
+         qDebug("EapFastInstallPacQueryDialog::yesPressed: emit deviceDialogData");
+         emit deviceDialogData(data);   
+         closeDeviceDialog(true);
+    }
+    OstTraceFunctionExit0( EAPFASTINSTALLPACQUERYDIALOG_YESBUTTONPRESSED_EXIT );
+    qDebug("EapFastInstallPacQueryDialog::yesPressed EXIT");
+}
+
+/**
+ * Function is called when the No Action button is pressed
+ */
+void EapFastInstallPacQueryDialog::noPressed()
+{
+    OstTraceFunctionEntry0( EAPFASTINSTALLPACQUERYDIALOG_NOPRESSED_ENTRY );
+    qDebug("EapFastInstallPacQueryDialog::noPressed ENTER");
+    
+    if (!mClose) {
+        mClose = true;
+        closeDeviceDialog(true);
+    }   
+    qDebug("EapFastInstallPacQueryDialog::noPressed EXIT");
+    OstTraceFunctionExit0( EAPFASTINSTALLPACQUERYDIALOG_NOPRESSED_EXIT );
+}
+
+/**
+ * Function is called when the dialog is about to close
+ * 
+ */
+void EapFastInstallPacQueryDialog::closingDialog()
+{
+    OstTraceFunctionEntry0( EAPFASTINSTALLPACQUERYDIALOG_CLOSINGDIALOG_ENTRY );
+    qDebug("EapFastInstallPacQueryDialog::closingDialog ENTER");
+ 
+    closeDeviceDialog(false);
+    
+    qDebug("EapFastInstallPacQueryDialog::closingDialog EXIT");
+    OstTraceFunctionExit0( EAPFASTINSTALLPACQUERYDIALOG_CLOSINGDIALOG_EXIT );
+}
+
+/**
+ * Updating the dialog during its showing is not allowed.
+ */ 
+bool EapFastInstallPacQueryDialog::setDeviceDialogParameters
+                (const QVariantMap &parameters)
+{
+    OstTraceFunctionEntry0( EAPFASTINSTALLPACQUERYDIALOG_SETDEVICEDIALOGPARAMETERS_ENTRY );
+    
+    Q_UNUSED(parameters)
+    // changing the dialog after presenting it is not supported.
+    
+    OstTraceFunctionExit0( EAPFASTINSTALLPACQUERYDIALOG_SETDEVICEDIALOGPARAMETERS_EXIT );
+    return true;
+}
+
+/**
+ * Not supported, 0 always returned
+ */
+int EapFastInstallPacQueryDialog::deviceDialogError() const
+{
+    OstTraceFunctionEntry0( EAPFASTINSTALLPACQUERYDIALOG_DEVICEDIALOGERROR_ENTRY );
+    OstTraceFunctionExit0( EAPFASTINSTALLPACQUERYDIALOG_DEVICEDIALOGERROR_EXIT);
+    return 0;
+}
+
+/**
+ * Dialog is closed and the signal about closing is emitted
+ */
+void EapFastInstallPacQueryDialog::closeDeviceDialog(bool byClient)
+{   
+    OstTraceFunctionEntry0( EAPFASTINSTALLPACQUERYDIALOG_CLOSEDEVICEDIALOG_ENTRY );
+    qDebug("EapFastInstallPacQueryDialog::closeDeviceDialog ENTER");
+            
+    //If the user closes the dialog, then the deviceDialogClosed is emitted
+    if ( byClient == true )
+        {
+        qDebug("EapFastInstallPacQueryDialog::closeDeviceDialog: emit deviceDialogClosed");
+        emit deviceDialogClosed();
+        }
+    
+    qDebug("EapFastInstallPacQueryDialog::closeDeviceDialog EXIT");
+    OstTraceFunctionExit0( EAPFASTINSTALLPACQUERYDIALOG_CLOSEDEVICEDIALOG_EXIT );
+}
+
+/**
+ * This dialog widget is returned to the caller
+ */
+HbPopup *EapFastInstallPacQueryDialog::deviceDialogWidget() const
+{
+    OstTraceFunctionEntry0( EAPFASTINSTALLPACQUERYDIALOG_DEVICEDIALOGWIDGET_ENTRY );
+    qDebug("EapFastInstallPacQueryDialog::deviceDialogWidget ENTER");
+    
+    qDebug("EapFastInstallPacQueryDialog::deviceDialogWidget EXIT");
+    OstTraceFunctionExit0( EAPFASTINSTALLPACQUERYDIALOG_DEVICEDIALOGWIDGET_EXIT );
+    
+    return const_cast<EapFastInstallPacQueryDialog*>(this);
+}
+