os/kernelhwsrv/kernel/eka/ewsrv/co_twin.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// e32\ewsrv\co_twin.cpp
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "ws_std.h"
sl@0
    19
sl@0
    20
extern "C"
sl@0
    21
EXPORT_C TAny* NewConsole()
sl@0
    22
//
sl@0
    23
// Create a new console window.
sl@0
    24
//
sl@0
    25
	{
sl@0
    26
	return new CConsoleTextWin;
sl@0
    27
	}
sl@0
    28
sl@0
    29
CConsoleTextWin *CConsoleTextWin::NewL(const TDesC &aTitle,TSize aSize)
sl@0
    30
//
sl@0
    31
// Create a new console window. Leave on any error.
sl@0
    32
//
sl@0
    33
	{
sl@0
    34
sl@0
    35
	CConsoleTextWin *pC=new(ELeave) CConsoleTextWin;
sl@0
    36
	User::LeaveIfError(pC->iConsole.Init(aTitle,aSize));
sl@0
    37
	return(pC);
sl@0
    38
	}
sl@0
    39
sl@0
    40
CConsoleTextWin::CConsoleTextWin()
sl@0
    41
//
sl@0
    42
// Constrcutor
sl@0
    43
//
sl@0
    44
	{}
sl@0
    45
sl@0
    46
CConsoleTextWin::~CConsoleTextWin()
sl@0
    47
//
sl@0
    48
// Destructor
sl@0
    49
//
sl@0
    50
	{
sl@0
    51
sl@0
    52
	iConsole.Close();
sl@0
    53
	}
sl@0
    54
sl@0
    55
TInt CConsoleTextWin::Create(const TDesC &aTitle,TSize aSize)
sl@0
    56
//
sl@0
    57
// Create a new console window.
sl@0
    58
//
sl@0
    59
	{
sl@0
    60
sl@0
    61
	TInt r=iConsole.Init(aTitle,aSize);
sl@0
    62
	if (r==KErrNone)
sl@0
    63
		{
sl@0
    64
		r=iConsole.Control(_L("+Maximize +NewLine -Lock -Wrap"));
sl@0
    65
		}
sl@0
    66
	return(r);
sl@0
    67
	}
sl@0
    68
sl@0
    69
void CConsoleTextWin::Read(TRequestStatus &aStatus)
sl@0
    70
//
sl@0
    71
// Asynchronous get keystroke from window
sl@0
    72
//
sl@0
    73
	{
sl@0
    74
sl@0
    75
	iConsole.Read(iKey,aStatus);
sl@0
    76
	}
sl@0
    77
sl@0
    78
sl@0
    79
void ConsServerCheck(TInt aResult, TInt aLine)
sl@0
    80
	{
sl@0
    81
	if(aResult!=KErrNone)
sl@0
    82
		{
sl@0
    83
#ifdef _DEBUG
sl@0
    84
		RDebug::Printf("EConsServerFailed with %d at line %d",aResult,aLine);
sl@0
    85
#endif
sl@0
    86
		(void)aLine;
sl@0
    87
		Panic(EConsServerFailed);
sl@0
    88
		}
sl@0
    89
	}
sl@0
    90
sl@0
    91
sl@0
    92
void CConsoleTextWin::ReadCancel()
sl@0
    93
//
sl@0
    94
// Cancel asynchronous read request
sl@0
    95
//
sl@0
    96
	{
sl@0
    97
sl@0
    98
	TInt r=iConsole.ReadCancel();
sl@0
    99
	ConsServerCheck(r,__LINE__);
sl@0
   100
	}
sl@0
   101
sl@0
   102
void CConsoleTextWin::Write(const TDesC &aDes)
sl@0
   103
//
sl@0
   104
// Write to the console.
sl@0
   105
//
sl@0
   106
	{
sl@0
   107
sl@0
   108
	TInt r=iConsole.Write(aDes);
sl@0
   109
	ConsServerCheck(r,__LINE__);
sl@0
   110
	}
sl@0
   111
sl@0
   112
TPoint CConsoleTextWin::CursorPos() const
sl@0
   113
//
sl@0
   114
// Read current cursor position relative to the window
sl@0
   115
//
sl@0
   116
	{
sl@0
   117
sl@0
   118
	TPoint p;
sl@0
   119
	TInt r=iConsole.CursorPos(p);
sl@0
   120
	ConsServerCheck(r,__LINE__);
sl@0
   121
	return(p);
sl@0
   122
	}
sl@0
   123
sl@0
   124
void CConsoleTextWin::SetCursorPosAbs(const TPoint &aPosition)
sl@0
   125
//
sl@0
   126
// Position the cursor in the window buffer
sl@0
   127
//
sl@0
   128
	{
sl@0
   129
sl@0
   130
	TInt r=iConsole.SetCursorPosAbs(aPosition);
sl@0
   131
	ConsServerCheck(r,__LINE__);
sl@0
   132
	}
sl@0
   133
sl@0
   134
void CConsoleTextWin::SetCursorPosRel(const TPoint &aVector)
sl@0
   135
//
sl@0
   136
// Position the cursor in the window buffer
sl@0
   137
//
sl@0
   138
	{
sl@0
   139
sl@0
   140
	TInt r=iConsole.SetCursorPosRel(aVector);
sl@0
   141
	ConsServerCheck(r,__LINE__);
sl@0
   142
	}
sl@0
   143
sl@0
   144
void CConsoleTextWin::SetCursorHeight(TInt aPercentage)
sl@0
   145
//
sl@0
   146
// Set the percentage height of the cursor
sl@0
   147
//
sl@0
   148
	{
sl@0
   149
sl@0
   150
	TInt r=iConsole.SetCursorHeight(aPercentage);
sl@0
   151
	ConsServerCheck(r,__LINE__);
sl@0
   152
	}
sl@0
   153
		
sl@0
   154
void CConsoleTextWin::SetTitle(const TDesC &aTitle)
sl@0
   155
//
sl@0
   156
// Set the console window title
sl@0
   157
//
sl@0
   158
	{
sl@0
   159
sl@0
   160
	TInt r=iConsole.SetTitle(aTitle);
sl@0
   161
	ConsServerCheck(r,__LINE__);
sl@0
   162
	}
sl@0
   163
sl@0
   164
void CConsoleTextWin::ClearScreen()
sl@0
   165
//
sl@0
   166
// Clear screen
sl@0
   167
//
sl@0
   168
	{
sl@0
   169
sl@0
   170
	TInt r=iConsole.ClearScreen();
sl@0
   171
	ConsServerCheck(r,__LINE__);
sl@0
   172
	}
sl@0
   173
sl@0
   174
void CConsoleTextWin::ClearToEndOfLine()
sl@0
   175
//
sl@0
   176
// Clear window from current cursor position to the end of the line
sl@0
   177
//
sl@0
   178
	{
sl@0
   179
sl@0
   180
	TInt r=iConsole.ClearToEndOfLine();
sl@0
   181
	ConsServerCheck(r,__LINE__);
sl@0
   182
	}
sl@0
   183
sl@0
   184
TSize CConsoleTextWin::ScreenSize() const
sl@0
   185
//
sl@0
   186
// Return the current screen size
sl@0
   187
//
sl@0
   188
	{
sl@0
   189
sl@0
   190
	TSize s;
sl@0
   191
	TInt r=iConsole.Size(s);
sl@0
   192
	ConsServerCheck(r,__LINE__);
sl@0
   193
	return(s);
sl@0
   194
	}
sl@0
   195
sl@0
   196
TKeyCode CConsoleTextWin::KeyCode() const
sl@0
   197
//
sl@0
   198
// Return the current keycode
sl@0
   199
//
sl@0
   200
	{
sl@0
   201
sl@0
   202
	return(iKey.Code());
sl@0
   203
	}
sl@0
   204
sl@0
   205
TUint CConsoleTextWin::KeyModifiers() const
sl@0
   206
//
sl@0
   207
// Return the current key modifiers
sl@0
   208
//
sl@0
   209
	{
sl@0
   210
sl@0
   211
	return(iKey.Modifiers());
sl@0
   212
	}
sl@0
   213
sl@0
   214
void CConsoleTextWin::SetTextAttribute(TTextAttribute anAttribute)
sl@0
   215
//
sl@0
   216
// Set text attribute
sl@0
   217
//
sl@0
   218
	{
sl@0
   219
sl@0
   220
	iConsole.SetTextAttribute(anAttribute);
sl@0
   221
	}
sl@0
   222
sl@0
   223
RConsole &CConsoleTextWin::Console()
sl@0
   224
//
sl@0
   225
// Return the console object.
sl@0
   226
//
sl@0
   227
	{
sl@0
   228
sl@0
   229
	return(iConsole);
sl@0
   230
	}