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\include\e32twin.h
|
sl@0
|
15 |
//
|
sl@0
|
16 |
// WARNING: This file contains some APIs which are internal and are subject
|
sl@0
|
17 |
// to change without notice. Such APIs should therefore not be used
|
sl@0
|
18 |
// outside the Kernel and Hardware Services package.
|
sl@0
|
19 |
//
|
sl@0
|
20 |
|
sl@0
|
21 |
#ifndef __E32TWIN_H__
|
sl@0
|
22 |
#define __E32TWIN_H__
|
sl@0
|
23 |
#include <e32cons.h>
|
sl@0
|
24 |
//
|
sl@0
|
25 |
|
sl@0
|
26 |
/** @internalComponent */
|
sl@0
|
27 |
_LIT(KE32WindowServer,"!E32WindowServer");
|
sl@0
|
28 |
|
sl@0
|
29 |
/** @internalTechnology */
|
sl@0
|
30 |
enum TEventType
|
sl@0
|
31 |
{
|
sl@0
|
32 |
EKeyPress,
|
sl@0
|
33 |
EMouseClick
|
sl@0
|
34 |
};
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
@publishedPartner
|
sl@0
|
38 |
@released
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
enum TVideoMode
|
sl@0
|
41 |
{
|
sl@0
|
42 |
EMono=1,
|
sl@0
|
43 |
EGray4=2,
|
sl@0
|
44 |
EGray16=4,
|
sl@0
|
45 |
EColor256=8,
|
sl@0
|
46 |
EColor4K=12,
|
sl@0
|
47 |
EColor64K=16,
|
sl@0
|
48 |
EColor16M=24
|
sl@0
|
49 |
|
sl@0
|
50 |
};
|
sl@0
|
51 |
|
sl@0
|
52 |
/** @internalTechnology */
|
sl@0
|
53 |
struct SConsoleKey
|
sl@0
|
54 |
{
|
sl@0
|
55 |
TKeyCode iCode;
|
sl@0
|
56 |
TUint iModifiers;
|
sl@0
|
57 |
TPoint iMousePos;
|
sl@0
|
58 |
TInt iType;
|
sl@0
|
59 |
};
|
sl@0
|
60 |
|
sl@0
|
61 |
/** @internalTechnology */
|
sl@0
|
62 |
class TConsoleKey : public TPckgBuf<SConsoleKey>
|
sl@0
|
63 |
{
|
sl@0
|
64 |
public:
|
sl@0
|
65 |
IMPORT_C TKeyCode Code() const;
|
sl@0
|
66 |
IMPORT_C TInt Modifiers() const;
|
sl@0
|
67 |
IMPORT_C TInt Type() const;
|
sl@0
|
68 |
IMPORT_C TPoint MousePos() const;
|
sl@0
|
69 |
};
|
sl@0
|
70 |
|
sl@0
|
71 |
/** @internalTechnology */
|
sl@0
|
72 |
class RConsole : public RSessionBase
|
sl@0
|
73 |
{
|
sl@0
|
74 |
public:
|
sl@0
|
75 |
IMPORT_C TVersion Version();
|
sl@0
|
76 |
TInt Connect();
|
sl@0
|
77 |
IMPORT_C TInt Create();
|
sl@0
|
78 |
IMPORT_C TInt Init(const TDesC &aName,const TSize &aSize);
|
sl@0
|
79 |
IMPORT_C TInt Write(const TDesC &aDes);
|
sl@0
|
80 |
IMPORT_C TInt ClearScreen();
|
sl@0
|
81 |
IMPORT_C TInt ClearToEndOfLine();
|
sl@0
|
82 |
IMPORT_C TInt Destroy();
|
sl@0
|
83 |
IMPORT_C TInt SetTitle(const TDesC &aName);
|
sl@0
|
84 |
IMPORT_C TInt SetSize(const TSize &aSize);
|
sl@0
|
85 |
IMPORT_C TInt SetWindowPosAbs(const TPoint &aPosition);
|
sl@0
|
86 |
IMPORT_C TInt SetCursorHeight(TInt aPercentage);
|
sl@0
|
87 |
IMPORT_C TInt SetCursorPosAbs(const TPoint &aPosition);
|
sl@0
|
88 |
IMPORT_C TInt SetCursorPosRel(const TPoint &aVector);
|
sl@0
|
89 |
IMPORT_C TInt Size(TSize &aSize) const;
|
sl@0
|
90 |
IMPORT_C TInt ScreenSize(TSize &aSize) const;
|
sl@0
|
91 |
IMPORT_C TInt CursorPos(TPoint &aPosition) const;
|
sl@0
|
92 |
IMPORT_C TInt Control(const TDesC &aDes);
|
sl@0
|
93 |
IMPORT_C TInt Read(TConsoleKey &aKeystroke);
|
sl@0
|
94 |
IMPORT_C void Read(TConsoleKey &aKeystroke,TRequestStatus &aStatus);
|
sl@0
|
95 |
IMPORT_C TInt ReadCancel();
|
sl@0
|
96 |
IMPORT_C TInt SetMode(TVideoMode aMode);
|
sl@0
|
97 |
IMPORT_C void SetPaletteEntry(TUint anIndex,TUint8 aRed,TUint8 aGreen,TUint8 aBlue);
|
sl@0
|
98 |
IMPORT_C void GetPaletteEntry(TUint anIndex,TUint8 &aRed,TUint8 &aGreen,TUint8 &aBlue);
|
sl@0
|
99 |
IMPORT_C void SetTextColors(TUint anFgColor,TUint aBgColor);
|
sl@0
|
100 |
IMPORT_C void SetUIColors(TUint aWindowBgColor,TUint aBorderColor,TUint aScreenColor);
|
sl@0
|
101 |
IMPORT_C void SetTextAttribute(TTextAttribute anAttribute);
|
sl@0
|
102 |
};
|
sl@0
|
103 |
|
sl@0
|
104 |
/** @internalComponent */
|
sl@0
|
105 |
NONSHARABLE_CLASS(CConsoleTextWin) : public CConsoleBase
|
sl@0
|
106 |
{
|
sl@0
|
107 |
public:
|
sl@0
|
108 |
static CConsoleTextWin *NewL(const TDesC &aTitle,TSize aSize);
|
sl@0
|
109 |
CConsoleTextWin();
|
sl@0
|
110 |
virtual ~CConsoleTextWin();
|
sl@0
|
111 |
virtual TInt Create(const TDesC &aTitle,TSize aSize);
|
sl@0
|
112 |
virtual void Read(TRequestStatus &aStatus);
|
sl@0
|
113 |
virtual void ReadCancel();
|
sl@0
|
114 |
virtual void Write(const TDesC &aDes);
|
sl@0
|
115 |
virtual TPoint CursorPos() const;
|
sl@0
|
116 |
virtual void SetCursorPosAbs(const TPoint &aPoint);
|
sl@0
|
117 |
virtual void SetCursorPosRel(const TPoint &aPoint);
|
sl@0
|
118 |
virtual void SetCursorHeight(TInt aPercentage);
|
sl@0
|
119 |
virtual void SetTitle(const TDesC &aTitle);
|
sl@0
|
120 |
virtual void ClearScreen();
|
sl@0
|
121 |
virtual void ClearToEndOfLine();
|
sl@0
|
122 |
virtual TSize ScreenSize() const;
|
sl@0
|
123 |
virtual TKeyCode KeyCode() const;
|
sl@0
|
124 |
virtual TUint KeyModifiers() const;
|
sl@0
|
125 |
virtual void SetTextAttribute(TTextAttribute anAttribute);
|
sl@0
|
126 |
RConsole &Console();
|
sl@0
|
127 |
private:
|
sl@0
|
128 |
TConsoleKey iKey;
|
sl@0
|
129 |
RConsole iConsole;
|
sl@0
|
130 |
};
|
sl@0
|
131 |
#endif
|
sl@0
|
132 |
|