os/mm/mmtestenv/mmtestfw/Source/TestFrameworkServer/ServerConsole.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmtestenv/mmtestfw/Source/TestFrameworkServer/ServerConsole.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,121 @@
     1.4 +// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include "ServerConsole.h"
    1.20 +
    1.21 +
    1.22 +/**
    1.23 + *
    1.24 + * Static constructor for CServerConsole.
    1.25 + *
    1.26 + * @param	"const TDesC& aName"
    1.27 + *			Display name for console
    1.28 + *
    1.29 + * @return	"CServerConsole*"
    1.30 + *			The constructed CServerConsole
    1.31 + *
    1.32 + * @xxxx 
    1.33 + *
    1.34 + */
    1.35 +CServerConsole* CServerConsole::NewL(const TDesC& aName)
    1.36 +	{
    1.37 +	CServerConsole* s = new(ELeave) CServerConsole;
    1.38 +	CleanupStack::PushL(s);
    1.39 +	s->ConstructL(aName);
    1.40 +	CleanupStack::Pop();
    1.41 +	return s;
    1.42 +	}
    1.43 +
    1.44 +/**
    1.45 + *
    1.46 + * Destructor for CServerConsole.
    1.47 + * Destroys display console and its reader
    1.48 + *
    1.49 + * @xxxx
    1.50 + *
    1.51 + */
    1.52 +CServerConsole::~CServerConsole()
    1.53 +	{
    1.54 +	delete iWindowName;
    1.55 +	delete iInstructions;
    1.56 +	delete iConsole;
    1.57 +	}
    1.58 +
    1.59 +/**
    1.60 + *
    1.61 + * First-phase constructor for CServerConsole.
    1.62 + * Adds itself to the Active Scheduler.
    1.63 + *
    1.64 + * @xxxx
    1.65 + *
    1.66 + */
    1.67 +CServerConsole::CServerConsole()
    1.68 +	{
    1.69 +	}
    1.70 +
    1.71 +/**
    1.72 + *
    1.73 + * Second-phase constructor for CServerConsole.
    1.74 + * Creates the display console and its reader.
    1.75 + *
    1.76 + * @param	"const TDesC& aName"
    1.77 + *			Display name of console.
    1.78 + *
    1.79 + * @xxxx
    1.80 + *
    1.81 + */
    1.82 +void CServerConsole::ConstructL(const TDesC& aName)
    1.83 +	{
    1.84 +	iWindowName = aName.AllocL();
    1.85 +	iConsole =  Console::NewL(*iWindowName, TSize(KConsFullScreen,KConsFullScreen));
    1.86 +	}
    1.87 +
    1.88 +/**
    1.89 + *
    1.90 + * Accessor for base console.
    1.91 + *
    1.92 + * @return	"CConsoleBase*"
    1.93 + *			The base console.
    1.94 + *
    1.95 + * @xxxx 
    1.96 + *
    1.97 + */
    1.98 +CConsoleBase* CServerConsole::Console() const
    1.99 +	{
   1.100 +	return iConsole;
   1.101 +	}
   1.102 +
   1.103 +/**
   1.104 + *
   1.105 + * Sets and shows displayable instructions.
   1.106 + *
   1.107 + * @param	"const TDesC& aInstructions"
   1.108 + *			Displayable instruction string.
   1.109 + *
   1.110 + * @xxxx 
   1.111 + *
   1.112 + */
   1.113 +void CServerConsole::SetInstructionsL(const TDesC& aInstructions)
   1.114 +	{
   1.115 +	if (iInstructions)
   1.116 +		{
   1.117 +		delete iInstructions;
   1.118 +		iInstructions = NULL;
   1.119 +		}
   1.120 +	iInstructions = aInstructions.AllocL();
   1.121 +	iConsole->ClearScreen();
   1.122 +	iConsole->Write(*iInstructions);
   1.123 +	}
   1.124 +