Update contrib.
1 // Copyright (c) 1995-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 the License "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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\ewsrv\co_cli.cpp
20 TInt RConsole::Connect()
22 return CreateSession(KE32WindowServer,Version(),KMessageSlots);
25 EXPORT_C TInt RConsole::Create()
27 // Connect with the window server if connection not already made,
28 // then create a default console window without displaying it
32 if (Handle()==KNullHandle)
38 return SendReceive(CWsSession::EConsoleCreate, TIpcArgs());
41 EXPORT_C TInt RConsole::Init(const TDesC &aName,const TSize &aSize)
43 // Connect with the window server if connection not already made,
44 // then open/display a console window on with the specified title.
48 if (Handle()==KNullHandle)
54 TPckgC<TSize> size(aSize);
55 return SendReceive(CWsSession::EConsoleSet, TIpcArgs(&aName, &size));
58 EXPORT_C TInt RConsole::SetTitle(const TDesC &aName)
60 // Change the title of the window
64 return SendReceive(CWsSession::EConsoleSetTitle, TIpcArgs(&aName));
67 EXPORT_C TInt RConsole::SetSize(const TSize &aSize)
69 // Change the underlying size of the window
73 TPckgC<TSize> size(aSize);
74 return SendReceive(CWsSession::EConsoleSetSize, TIpcArgs(&size));
77 EXPORT_C TInt RConsole::Size(TSize &aSize) const
79 // Read the current window size
83 TPckg<TSize> size(aSize);
84 return SendReceive(CWsSession::EConsoleSize, TIpcArgs( (TDes8*)&size ));
87 EXPORT_C TInt RConsole::ScreenSize(TSize &aSize) const
89 // Read the screen size in characters
93 TPckg<TSize> size(aSize);
94 return SendReceive(CWsSession::EConsoleScreenSize, TIpcArgs( (TDes8*)&size ));
97 EXPORT_C TVersion RConsole::Version()
99 // Return the client side version number.
103 return TVersion(KW32MajorVersionNumber,KW32MinorVersionNumber,KE32BuildVersionNumber);
106 EXPORT_C TInt RConsole::Write(const TDesC &aDes)
108 // Write to the console.
112 return SendReceive(CWsSession::EConsoleWrite, TIpcArgs(&aDes));
115 EXPORT_C TInt RConsole::ClearScreen()
121 return SendReceive(CWsSession::EConsoleClearScreen, TIpcArgs());
124 EXPORT_C TInt RConsole::ClearToEndOfLine()
126 // Clear window from current cursor position to the end of the line
130 return SendReceive(CWsSession::EConsoleClearToEndOfLine, TIpcArgs());
133 EXPORT_C TInt RConsole::Destroy()
135 // Remove and close down the window
139 return SendReceive(CWsSession::EConsoleDestroy, TIpcArgs());
142 EXPORT_C TInt RConsole::SetWindowPosAbs(const TPoint &aPosition)
144 // Position the window
148 TPckgC<TPoint> point(aPosition);
149 return SendReceive(CWsSession::EConsoleSetWindowPosAbs, TIpcArgs(&point));
152 EXPORT_C TInt RConsole::SetCursorHeight(TInt aPercentage)
154 // Set the percentage height of the cursor
158 return SendReceive(CWsSession::EConsoleSetCursorHeight, TIpcArgs(aPercentage));
161 EXPORT_C TInt RConsole::SetCursorPosAbs(const TPoint &aPosition)
163 // Position the cursor in the window buffer
167 TPckgC<TPoint> point(aPosition);
168 return SendReceive(CWsSession::EConsoleSetCursorPosAbs, TIpcArgs(&point));
171 EXPORT_C TInt RConsole::SetCursorPosRel(const TPoint &aVector)
173 // Position the cursor in the window buffer
177 TPckg<TPoint> point(aVector);
178 return SendReceive(CWsSession::EConsoleSetCursorPosRel, TIpcArgs(&point));
181 EXPORT_C TInt RConsole::CursorPos(TPoint &aPosition) const
183 // Read current cursor position relative to the window
187 TPckg<TPoint> point(aPosition);
188 return SendReceive(CWsSession::EConsoleCursorPos, TIpcArgs( (TDes8*)&point ));
191 EXPORT_C TInt RConsole::Control(const TDesC &aDes)
193 // Control window properties
197 return SendReceive(CWsSession::EConsoleControl, TIpcArgs(&aDes));
200 EXPORT_C TInt RConsole::Read(TConsoleKey &aKeystroke)
202 // Synchronous get keystroke from window
206 return SendReceive(CWsSession::EConsoleRead, TIpcArgs( (TDes8*)&aKeystroke ));
209 EXPORT_C void RConsole::Read(TConsoleKey &aKeystroke,TRequestStatus &aStatus)
211 // Asynchronous get keystroke from window
215 SendReceive(CWsSession::EConsoleRead, TIpcArgs( (TDes8*)&aKeystroke ), aStatus);
218 EXPORT_C TInt RConsole::ReadCancel()
220 // Cancel asynchronous read request
224 return SendReceive(CWsSession::EConsoleReadCancel, TIpcArgs());
227 EXPORT_C TInt RConsole::SetMode(TVideoMode aMode)
233 if (Handle()==KNullHandle)
239 return SendReceive(CWsSession::EConsoleSetMode, TIpcArgs(aMode));
242 EXPORT_C void RConsole::SetPaletteEntry(TUint aIndex,TUint8 aRed,TUint8 aGreen,TUint8 aBlue)
248 if (Handle()==KNullHandle)
254 SendReceive(CWsSession::EConsoleSetPaletteEntry, TIpcArgs(aIndex,aRed,aGreen,aBlue));
257 EXPORT_C void RConsole::GetPaletteEntry(TUint aIndex,TUint8 &aRed,TUint8 &aGreen,TUint8 &aBlue)
263 if (Handle()==KNullHandle)
269 TPckg<TUint8> r(aRed);
270 TPckg<TUint8> g(aGreen);
271 TPckg<TUint8> b(aBlue);
272 SendReceive(CWsSession::EConsoleGetPaletteEntry, TIpcArgs(aIndex, &r, &g, &b));
275 EXPORT_C void RConsole::SetTextColors(TUint aFgColor,TUint aBgColor)
281 if (Handle()==KNullHandle)
287 SendReceive(CWsSession::EConsoleSetTextColors, TIpcArgs(aFgColor, aBgColor));
290 EXPORT_C void RConsole::SetUIColors(TUint aWindowBgColor,TUint aBorderColor,TUint aScreenColor)
296 if (Handle()==KNullHandle)
302 SendReceive(CWsSession::EConsoleSetUIColors, TIpcArgs(aWindowBgColor, aBorderColor, aScreenColor));
305 EXPORT_C void RConsole::SetTextAttribute(TTextAttribute aAttr)
311 if (Handle()==KNullHandle)
317 SendReceive(CWsSession::EConsoleSetTextAttribute, TIpcArgs(aAttr));