os/ossrv/lowlevellibsandfws/pluginfw/TestExecute/EComSWITests/src/tui.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include "tui.h"
    17 
    18 TBool TUI::DisplayTextL(const CAppInfo&, TFileTextOption, const TDesC&)
    19 	{
    20 	return ETrue;
    21 	}
    22 
    23 void TUI::DisplayErrorL(const CAppInfo&, TErrorDialog, const TDesC&)
    24 	{
    25 	}
    26 
    27 TBool TUI::DisplayDependencyBreakL(const CAppInfo&, const RPointerArray<TDesC>&)
    28 	{
    29 	return ETrue;
    30 	}
    31 
    32 TBool TUI::DisplayApplicationsInUseL(const CAppInfo&, const RPointerArray<TDesC>&)
    33 	{
    34 	return ETrue;
    35 	}
    36 
    37 TBool TUI::DisplayQuestionL(const CAppInfo&, TQuestionDialog, const TDesC&)
    38 	{
    39 	return ETrue;
    40 	}
    41 
    42 TBool TUI::DisplayUninstallL(const CAppInfo&)
    43 	{
    44 	return ETrue;
    45 	}
    46 
    47 TBool TUI::DisplayInstallL(const CAppInfo&, const CApaMaskedBitmap*, const RPointerArray<CCertificateInfo>&)
    48 	{
    49 	return ETrue;
    50 	}
    51 
    52 TBool TUI::DisplayGrantCapabilitiesL(const CAppInfo&, const TCapabilitySet&)
    53 	{
    54 	return ETrue;
    55 	}
    56 
    57 TInt TUI::DisplayLanguageL(const CAppInfo&, const RArray<TLanguage>&)
    58 	{
    59 	return 0;
    60 	}
    61 
    62 TInt TUI::DisplayDriveL(const CAppInfo&, TInt64, const RArray<TChar>&, const RArray<TInt64>&)
    63 	{
    64 	return 0;
    65 	}
    66 
    67 TBool TUI::DisplayUpgradeL(const CAppInfo&, const CAppInfo&)
    68 	{
    69 	return ETrue;
    70 	}
    71 
    72 TBool TUI::DisplayOptionsL(const CAppInfo&, const RPointerArray<TDesC>&, RArray<TBool>&)
    73 	{
    74 	return ETrue;
    75 	}
    76 
    77 TBool TUI::HandleInstallEventL(const CAppInfo&, TInstallEvent, TInt, const TDesC&)
    78 	{
    79 	return ETrue;
    80 	}
    81 
    82 void TUI::HandleCancellableInstallEventL(const CAppInfo&, TInstallCancellableEvent, MCancelHandler&, TInt, const TDesC&)
    83 	{
    84 	}
    85 
    86 TBool TUI::DisplaySecurityWarningL(const CAppInfo&, TSignatureValidationResult, RPointerArray<CPKIXValidationResultBase>&, RPointerArray<CCertificateInfo>&, TBool)
    87 	{
    88 	return ETrue;
    89 	}
    90 
    91 TBool TUI::DisplayOcspResultL(const CAppInfo&, TRevocationDialogMessage, RPointerArray<TOCSPOutcome>&, RPointerArray<CCertificateInfo>&, TBool)
    92 	{
    93 	return ETrue;
    94 	}
    95 
    96 void TUI::DisplayCannotOverwriteFileL(const CAppInfo&, const CAppInfo&, const TDesC&)
    97 	{
    98 	}
    99 
   100 TBool TUI::DisplayMissingDependencyL( const CAppInfo&, const TDesC&, TVersion, TVersion, TVersion)
   101 	{
   102 	return ETrue;
   103 	}