os/kernelhwsrv/kernel/eka/ewsrv/co_cli.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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_cli.cpp
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "ws_std.h"
sl@0
    19
sl@0
    20
TInt RConsole::Connect()
sl@0
    21
	{
sl@0
    22
	return CreateSession(KE32WindowServer,Version(),KMessageSlots);
sl@0
    23
	}
sl@0
    24
sl@0
    25
EXPORT_C TInt RConsole::Create()
sl@0
    26
//
sl@0
    27
// Connect with the window server if connection not already made,
sl@0
    28
// then create a default console window without displaying it
sl@0
    29
//
sl@0
    30
	{
sl@0
    31
sl@0
    32
	if (Handle()==KNullHandle)
sl@0
    33
		{
sl@0
    34
		TInt r = Connect();
sl@0
    35
		if (r!=KErrNone)
sl@0
    36
			return r;
sl@0
    37
		}
sl@0
    38
	return SendReceive(CWsSession::EConsoleCreate, TIpcArgs());
sl@0
    39
	}
sl@0
    40
sl@0
    41
EXPORT_C TInt RConsole::Init(const TDesC &aName,const TSize &aSize)
sl@0
    42
//
sl@0
    43
// Connect with the window server if connection not already made,
sl@0
    44
// then open/display a console window on with the specified title.
sl@0
    45
//
sl@0
    46
	{
sl@0
    47
sl@0
    48
	if (Handle()==KNullHandle)
sl@0
    49
		{
sl@0
    50
		TInt r = Connect();
sl@0
    51
		if (r!=KErrNone)
sl@0
    52
			return r;
sl@0
    53
		}
sl@0
    54
	TPckgC<TSize> size(aSize);
sl@0
    55
	return SendReceive(CWsSession::EConsoleSet, TIpcArgs(&aName, &size));
sl@0
    56
	}
sl@0
    57
sl@0
    58
EXPORT_C TInt RConsole::SetTitle(const TDesC &aName)
sl@0
    59
//
sl@0
    60
// Change the title of the window
sl@0
    61
//
sl@0
    62
	{
sl@0
    63
sl@0
    64
	return SendReceive(CWsSession::EConsoleSetTitle, TIpcArgs(&aName));
sl@0
    65
	}
sl@0
    66
sl@0
    67
EXPORT_C TInt RConsole::SetSize(const TSize &aSize)
sl@0
    68
//
sl@0
    69
// Change the underlying size of the window
sl@0
    70
//
sl@0
    71
	{
sl@0
    72
sl@0
    73
	TPckgC<TSize> size(aSize);
sl@0
    74
	return SendReceive(CWsSession::EConsoleSetSize, TIpcArgs(&size));
sl@0
    75
	}
sl@0
    76
sl@0
    77
EXPORT_C TInt RConsole::Size(TSize &aSize) const
sl@0
    78
//
sl@0
    79
// Read the current window size
sl@0
    80
//
sl@0
    81
	{
sl@0
    82
sl@0
    83
	TPckg<TSize> size(aSize);
sl@0
    84
	return SendReceive(CWsSession::EConsoleSize, TIpcArgs( (TDes8*)&size ));
sl@0
    85
	}
sl@0
    86
sl@0
    87
EXPORT_C TInt RConsole::ScreenSize(TSize &aSize) const
sl@0
    88
//
sl@0
    89
// Read the screen size in characters
sl@0
    90
//
sl@0
    91
	{
sl@0
    92
	
sl@0
    93
	TPckg<TSize> size(aSize);
sl@0
    94
	return SendReceive(CWsSession::EConsoleScreenSize, TIpcArgs( (TDes8*)&size ));
sl@0
    95
	}
sl@0
    96
sl@0
    97
EXPORT_C TVersion RConsole::Version()
sl@0
    98
//
sl@0
    99
// Return the client side version number.
sl@0
   100
//
sl@0
   101
	{
sl@0
   102
sl@0
   103
	return TVersion(KW32MajorVersionNumber,KW32MinorVersionNumber,KE32BuildVersionNumber);
sl@0
   104
	}
sl@0
   105
sl@0
   106
EXPORT_C TInt RConsole::Write(const TDesC &aDes)
sl@0
   107
//
sl@0
   108
// Write to the console.
sl@0
   109
//
sl@0
   110
	{
sl@0
   111
sl@0
   112
	return SendReceive(CWsSession::EConsoleWrite, TIpcArgs(&aDes));
sl@0
   113
	}
sl@0
   114
sl@0
   115
EXPORT_C TInt RConsole::ClearScreen()
sl@0
   116
//
sl@0
   117
// Clear window
sl@0
   118
//
sl@0
   119
	{
sl@0
   120
sl@0
   121
	return SendReceive(CWsSession::EConsoleClearScreen, TIpcArgs());
sl@0
   122
	}
sl@0
   123
sl@0
   124
EXPORT_C TInt RConsole::ClearToEndOfLine()
sl@0
   125
//
sl@0
   126
// Clear window from current cursor position to the end of the line
sl@0
   127
//
sl@0
   128
	{
sl@0
   129
sl@0
   130
	return SendReceive(CWsSession::EConsoleClearToEndOfLine, TIpcArgs());
sl@0
   131
	}
sl@0
   132
sl@0
   133
EXPORT_C TInt RConsole::Destroy()
sl@0
   134
//
sl@0
   135
// Remove and close down the window
sl@0
   136
//
sl@0
   137
	{
sl@0
   138
sl@0
   139
	return SendReceive(CWsSession::EConsoleDestroy, TIpcArgs());
sl@0
   140
	}
sl@0
   141
sl@0
   142
EXPORT_C TInt RConsole::SetWindowPosAbs(const TPoint &aPosition)
sl@0
   143
//
sl@0
   144
// Position the window
sl@0
   145
//
sl@0
   146
	{
sl@0
   147
	
sl@0
   148
	TPckgC<TPoint> point(aPosition);
sl@0
   149
	return SendReceive(CWsSession::EConsoleSetWindowPosAbs, TIpcArgs(&point));
sl@0
   150
	}
sl@0
   151
sl@0
   152
EXPORT_C TInt RConsole::SetCursorHeight(TInt aPercentage)
sl@0
   153
//
sl@0
   154
// Set the percentage height of the cursor
sl@0
   155
//
sl@0
   156
	{
sl@0
   157
sl@0
   158
	return SendReceive(CWsSession::EConsoleSetCursorHeight, TIpcArgs(aPercentage));
sl@0
   159
	}
sl@0
   160
		
sl@0
   161
EXPORT_C TInt RConsole::SetCursorPosAbs(const TPoint &aPosition)
sl@0
   162
//
sl@0
   163
// Position the cursor in the window buffer
sl@0
   164
//
sl@0
   165
	{
sl@0
   166
sl@0
   167
	TPckgC<TPoint> point(aPosition);
sl@0
   168
	return SendReceive(CWsSession::EConsoleSetCursorPosAbs, TIpcArgs(&point));
sl@0
   169
	}
sl@0
   170
sl@0
   171
EXPORT_C TInt RConsole::SetCursorPosRel(const TPoint &aVector)
sl@0
   172
//
sl@0
   173
// Position the cursor in the window buffer
sl@0
   174
//
sl@0
   175
	{
sl@0
   176
sl@0
   177
	TPckg<TPoint> point(aVector);
sl@0
   178
	return SendReceive(CWsSession::EConsoleSetCursorPosRel, TIpcArgs(&point));
sl@0
   179
	}
sl@0
   180
sl@0
   181
EXPORT_C TInt RConsole::CursorPos(TPoint &aPosition) const
sl@0
   182
//
sl@0
   183
// Read current cursor position relative to the window
sl@0
   184
//
sl@0
   185
	{
sl@0
   186
sl@0
   187
	TPckg<TPoint> point(aPosition);
sl@0
   188
	return SendReceive(CWsSession::EConsoleCursorPos, TIpcArgs( (TDes8*)&point ));
sl@0
   189
	}
sl@0
   190
sl@0
   191
EXPORT_C TInt RConsole::Control(const TDesC &aDes)
sl@0
   192
//
sl@0
   193
// Control window properties
sl@0
   194
//
sl@0
   195
	{
sl@0
   196
sl@0
   197
	return SendReceive(CWsSession::EConsoleControl, TIpcArgs(&aDes));
sl@0
   198
	}
sl@0
   199
sl@0
   200
EXPORT_C TInt RConsole::Read(TConsoleKey &aKeystroke)
sl@0
   201
//
sl@0
   202
// Synchronous get keystroke from window
sl@0
   203
//
sl@0
   204
	{
sl@0
   205
sl@0
   206
	return SendReceive(CWsSession::EConsoleRead, TIpcArgs( (TDes8*)&aKeystroke ));
sl@0
   207
	}
sl@0
   208
sl@0
   209
EXPORT_C void RConsole::Read(TConsoleKey &aKeystroke,TRequestStatus &aStatus)
sl@0
   210
//
sl@0
   211
// Asynchronous get keystroke from window
sl@0
   212
//
sl@0
   213
	{
sl@0
   214
sl@0
   215
	SendReceive(CWsSession::EConsoleRead, TIpcArgs( (TDes8*)&aKeystroke ), aStatus);
sl@0
   216
	}
sl@0
   217
sl@0
   218
EXPORT_C TInt RConsole::ReadCancel()
sl@0
   219
//
sl@0
   220
// Cancel asynchronous read request
sl@0
   221
//
sl@0
   222
	{
sl@0
   223
sl@0
   224
	return SendReceive(CWsSession::EConsoleReadCancel, TIpcArgs());
sl@0
   225
	}
sl@0
   226
sl@0
   227
EXPORT_C TInt RConsole::SetMode(TVideoMode aMode)
sl@0
   228
//
sl@0
   229
//
sl@0
   230
//
sl@0
   231
	{
sl@0
   232
	
sl@0
   233
	if (Handle()==KNullHandle)
sl@0
   234
		{
sl@0
   235
		TInt r = Connect();
sl@0
   236
		if (r!=KErrNone)
sl@0
   237
			return r;
sl@0
   238
		}
sl@0
   239
	return SendReceive(CWsSession::EConsoleSetMode, TIpcArgs(aMode));
sl@0
   240
	}
sl@0
   241
sl@0
   242
EXPORT_C void RConsole::SetPaletteEntry(TUint aIndex,TUint8 aRed,TUint8 aGreen,TUint8 aBlue)
sl@0
   243
//
sl@0
   244
//
sl@0
   245
//
sl@0
   246
	{
sl@0
   247
	
sl@0
   248
	if (Handle()==KNullHandle)
sl@0
   249
		{
sl@0
   250
		TInt r = Connect();
sl@0
   251
		if (r!=KErrNone)
sl@0
   252
			return;
sl@0
   253
		}
sl@0
   254
	SendReceive(CWsSession::EConsoleSetPaletteEntry, TIpcArgs(aIndex,aRed,aGreen,aBlue));
sl@0
   255
	}
sl@0
   256
sl@0
   257
EXPORT_C void RConsole::GetPaletteEntry(TUint aIndex,TUint8 &aRed,TUint8 &aGreen,TUint8 &aBlue)
sl@0
   258
//
sl@0
   259
//
sl@0
   260
//
sl@0
   261
	{
sl@0
   262
	
sl@0
   263
	if (Handle()==KNullHandle)
sl@0
   264
		{
sl@0
   265
		TInt r = Connect();
sl@0
   266
		if (r!=KErrNone)
sl@0
   267
			return;
sl@0
   268
		}
sl@0
   269
	TPckg<TUint8> r(aRed);
sl@0
   270
	TPckg<TUint8> g(aGreen);
sl@0
   271
	TPckg<TUint8> b(aBlue);
sl@0
   272
	SendReceive(CWsSession::EConsoleGetPaletteEntry, TIpcArgs(aIndex, &r, &g, &b));
sl@0
   273
	}
sl@0
   274
sl@0
   275
EXPORT_C void RConsole::SetTextColors(TUint aFgColor,TUint aBgColor)
sl@0
   276
//
sl@0
   277
//
sl@0
   278
//
sl@0
   279
	{
sl@0
   280
	
sl@0
   281
	if (Handle()==KNullHandle)
sl@0
   282
		{
sl@0
   283
		TInt r = Connect();
sl@0
   284
		if (r!=KErrNone)
sl@0
   285
			return;
sl@0
   286
		}
sl@0
   287
	SendReceive(CWsSession::EConsoleSetTextColors, TIpcArgs(aFgColor, aBgColor));
sl@0
   288
	}
sl@0
   289
sl@0
   290
EXPORT_C void RConsole::SetUIColors(TUint aWindowBgColor,TUint aBorderColor,TUint aScreenColor)
sl@0
   291
//
sl@0
   292
//
sl@0
   293
//
sl@0
   294
	{
sl@0
   295
	
sl@0
   296
	if (Handle()==KNullHandle)
sl@0
   297
		{
sl@0
   298
		TInt r = Connect();
sl@0
   299
		if (r!=KErrNone)
sl@0
   300
			return;
sl@0
   301
		}
sl@0
   302
	SendReceive(CWsSession::EConsoleSetUIColors, TIpcArgs(aWindowBgColor, aBorderColor, aScreenColor));
sl@0
   303
	}
sl@0
   304
sl@0
   305
EXPORT_C void RConsole::SetTextAttribute(TTextAttribute aAttr)
sl@0
   306
//
sl@0
   307
//
sl@0
   308
//
sl@0
   309
	{
sl@0
   310
sl@0
   311
	if (Handle()==KNullHandle)
sl@0
   312
		{
sl@0
   313
		TInt r = Connect();
sl@0
   314
		if (r!=KErrNone)
sl@0
   315
			return;
sl@0
   316
		}
sl@0
   317
	SendReceive(CWsSession::EConsoleSetTextAttribute, TIpcArgs(aAttr));
sl@0
   318
	}