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_twin.cpp
21 EXPORT_C TAny* NewConsole()
23 // Create a new console window.
26 return new CConsoleTextWin;
29 CConsoleTextWin *CConsoleTextWin::NewL(const TDesC &aTitle,TSize aSize)
31 // Create a new console window. Leave on any error.
35 CConsoleTextWin *pC=new(ELeave) CConsoleTextWin;
36 User::LeaveIfError(pC->iConsole.Init(aTitle,aSize));
40 CConsoleTextWin::CConsoleTextWin()
46 CConsoleTextWin::~CConsoleTextWin()
55 TInt CConsoleTextWin::Create(const TDesC &aTitle,TSize aSize)
57 // Create a new console window.
61 TInt r=iConsole.Init(aTitle,aSize);
64 r=iConsole.Control(_L("+Maximize +NewLine -Lock -Wrap"));
69 void CConsoleTextWin::Read(TRequestStatus &aStatus)
71 // Asynchronous get keystroke from window
75 iConsole.Read(iKey,aStatus);
79 void ConsServerCheck(TInt aResult, TInt aLine)
84 RDebug::Printf("EConsServerFailed with %d at line %d",aResult,aLine);
87 Panic(EConsServerFailed);
92 void CConsoleTextWin::ReadCancel()
94 // Cancel asynchronous read request
98 TInt r=iConsole.ReadCancel();
99 ConsServerCheck(r,__LINE__);
102 void CConsoleTextWin::Write(const TDesC &aDes)
104 // Write to the console.
108 TInt r=iConsole.Write(aDes);
109 ConsServerCheck(r,__LINE__);
112 TPoint CConsoleTextWin::CursorPos() const
114 // Read current cursor position relative to the window
119 TInt r=iConsole.CursorPos(p);
120 ConsServerCheck(r,__LINE__);
124 void CConsoleTextWin::SetCursorPosAbs(const TPoint &aPosition)
126 // Position the cursor in the window buffer
130 TInt r=iConsole.SetCursorPosAbs(aPosition);
131 ConsServerCheck(r,__LINE__);
134 void CConsoleTextWin::SetCursorPosRel(const TPoint &aVector)
136 // Position the cursor in the window buffer
140 TInt r=iConsole.SetCursorPosRel(aVector);
141 ConsServerCheck(r,__LINE__);
144 void CConsoleTextWin::SetCursorHeight(TInt aPercentage)
146 // Set the percentage height of the cursor
150 TInt r=iConsole.SetCursorHeight(aPercentage);
151 ConsServerCheck(r,__LINE__);
154 void CConsoleTextWin::SetTitle(const TDesC &aTitle)
156 // Set the console window title
160 TInt r=iConsole.SetTitle(aTitle);
161 ConsServerCheck(r,__LINE__);
164 void CConsoleTextWin::ClearScreen()
170 TInt r=iConsole.ClearScreen();
171 ConsServerCheck(r,__LINE__);
174 void CConsoleTextWin::ClearToEndOfLine()
176 // Clear window from current cursor position to the end of the line
180 TInt r=iConsole.ClearToEndOfLine();
181 ConsServerCheck(r,__LINE__);
184 TSize CConsoleTextWin::ScreenSize() const
186 // Return the current screen size
191 TInt r=iConsole.Size(s);
192 ConsServerCheck(r,__LINE__);
196 TKeyCode CConsoleTextWin::KeyCode() const
198 // Return the current keycode
205 TUint CConsoleTextWin::KeyModifiers() const
207 // Return the current key modifiers
211 return(iKey.Modifiers());
214 void CConsoleTextWin::SetTextAttribute(TTextAttribute anAttribute)
216 // Set text attribute
220 iConsole.SetTextAttribute(anAttribute);
223 RConsole &CConsoleTextWin::Console()
225 // Return the console object.