iaupdate/IAD/ui/src/iaupdateresultsdialog.cpp
branchRCL_3
changeset 66 8b7f4e561641
parent 65 7333d7932ef7
child 70 e8965914fac7
--- a/iaupdate/IAD/ui/src/iaupdateresultsdialog.cpp	Tue Aug 31 15:21:33 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,132 +0,0 @@
-/*
-* 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:    
-*
-*/
-
-
-
-// INCLUDE FILES
-
-#include <hbmessagebox.h>
-#include <hblabel.h>
-
-#include "iaupdateresultsdialog.h"
-#include "iaupdateresultsinfo.h"
-#include "iaupdatedebug.h"
-
-
-IAUpdateResultsDialog::IAUpdateResultsDialog(QObject *parent)
-    : QObject(parent)
-{
-    
-}
-
-IAUpdateResultsDialog::~IAUpdateResultsDialog()
-{
-}
-
-void IAUpdateResultsDialog::showResults(const TIAUpdateResultsInfo &param, QObject *receiver, const char *member)
-{
-    HbMessageBox *messageBox = new HbMessageBox(HbMessageBox::MessageTypeInformation);
-    
-    HbLabel *label = new HbLabel(messageBox);
-    label->setHtml(QString("Update results"));
-    messageBox->setHeadingWidget(label);
-    
-    messageBox->setIconVisible(false);
-            
-    QString buf;
-    constructText(param,buf);
-    messageBox->setText(buf);
-    messageBox->setTimeout(HbPopup::NoTimeout);
-    messageBox->setAttribute(Qt::WA_DeleteOnClose);
-    messageBox->open(receiver, member);
-    return;  
-}
-
-// -----------------------------------------------------------------------------
-// IAUpdateResultsDialog::constructText
-//
-// -----------------------------------------------------------------------------
-//
-void IAUpdateResultsDialog::constructText(const TIAUpdateResultsInfo &param, QString &buf)
-{ 
-    if (param.iCountSuccessfull == 0 && param.iCountCancelled == 0 &&
-        param.iCountFailed == 0)
-    {
-        QString stringCount;
-        stringCount.setNum(param.iCountSuccessfull);    
-        buf.append(stringCount);
-        buf.append(" updates successful");
-        buf.append("<br />");
-        return;
-    } 
-  
-    if (param.iCountSuccessfull != 0)
-    {
-        QString stringCount;
-        stringCount.setNum(param.iCountSuccessfull);    
-        buf.append(stringCount);
-        if (param.iCountSuccessfull == 1)
-        {
-            buf.append(" application updated"); 
-        }
-        else
-        {
-            buf.append(" applications updated"); 
-        }
-        buf.append("<br />");
-    }
-    
-    if (param.iCountCancelled != 0)
-    {
-        QString stringCount;
-        stringCount.setNum(param.iCountCancelled);    
-        buf.append(stringCount);
-        if (param.iCountCancelled == 1)
-        {
-            buf.append(" update cancelled");
-        }
-        else
-        {
-            buf.append(" updates cancelled");
-        }
-        buf.append("<br />");
-    }
-
-    if (param.iCountFailed != 0)
-    {
-        QString stringCount;
-        stringCount.setNum(param.iCountFailed);    
-        buf.append(stringCount);
-        if (param.iCountFailed == 1)
-        {
-            buf.append(" update failed");
-        }
-        else
-        {
-            buf.append(" updates failed");
-        }
-        buf.append("<br />");
-    }
-    
-    if (param.iFileInUseError)
-    {
-    	buf.append("Close all applications and try again.");
-    	buf.append("<br />");
-    }
-} 
-
-//  End of File