os/kernelhwsrv/kernel/eka/include/e32cons.h
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\include\e32cons.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __E32CONS_H__
sl@0
    19
#define __E32CONS_H__
sl@0
    20
#include <e32base.h>
sl@0
    21
#include <e32keys.h>
sl@0
    22
//
sl@0
    23
sl@0
    24
/**
sl@0
    25
@publishedAll
sl@0
    26
@released
sl@0
    27
sl@0
    28
Defines a default console width that can be used when creating a console.
sl@0
    29
sl@0
    30
@see CConsoleBase::Create()
sl@0
    31
*/
sl@0
    32
const TInt KDefaultConsWidth=78;
sl@0
    33
sl@0
    34
/**
sl@0
    35
@publishedAll
sl@0
    36
@released
sl@0
    37
sl@0
    38
Defines a default console height that can be used when creating a console.
sl@0
    39
sl@0
    40
@see CConsoleBase::Create()
sl@0
    41
*/
sl@0
    42
const TInt KDefaultConsHeight=18;
sl@0
    43
sl@0
    44
/**
sl@0
    45
@publishedAll
sl@0
    46
@released
sl@0
    47
sl@0
    48
Implies a full size screen console when passed as the width and height
sl@0
    49
values when creating a console.
sl@0
    50
sl@0
    51
@see CConsoleBase::Create()
sl@0
    52
*/
sl@0
    53
const TInt KConsFullScreen=-1;
sl@0
    54
sl@0
    55
sl@0
    56
/**
sl@0
    57
@publishedAll
sl@0
    58
@released
sl@0
    59
sl@0
    60
Defines a set of text attributes used for consoles that support colour.
sl@0
    61
sl@0
    62
@see CColorConsoleBase::SetTextAttribute().
sl@0
    63
*/
sl@0
    64
enum TTextAttribute
sl@0
    65
	{
sl@0
    66
	ETextAttributeNormal,  /**< Defines the normal text attribute.   */
sl@0
    67
	ETextAttributeBold,    /**< Defines the bold text attribute.     */
sl@0
    68
	ETextAttributeInverse, /**< Defines the inverse text attribute.  */
sl@0
    69
	ETextAttributeHighlight/**< Defines the highlight text attribute.*/
sl@0
    70
	};
sl@0
    71
sl@0
    72
sl@0
    73
/**
sl@0
    74
@publishedAll
sl@0
    75
@released
sl@0
    76
sl@0
    77
A base class that defines a console interface.
sl@0
    78
*/
sl@0
    79
class CConsoleBase : public CBase
sl@0
    80
	{
sl@0
    81
public:
sl@0
    82
	IMPORT_C virtual ~CConsoleBase();
sl@0
    83
	IMPORT_C TKeyCode Getch();
sl@0
    84
	IMPORT_C void Printf(TRefByValue<const TDesC> aFmt,...);
sl@0
    85
	IMPORT_C void SetPos(TInt aX);
sl@0
    86
	IMPORT_C void SetPos(TInt aX,TInt aY);
sl@0
    87
	IMPORT_C TInt WhereX() const;
sl@0
    88
	IMPORT_C TInt WhereY() const;
sl@0
    89
// Pure virtual
sl@0
    90
sl@0
    91
sl@0
    92
    /**
sl@0
    93
    Creates a new console window.
sl@0
    94
    
sl@0
    95
    @param aTitle The title text for the console.
sl@0
    96
                  This should not be longer than 256 characters.
sl@0
    97
    @param aSize  The size of the console window.
sl@0
    98
    
sl@0
    99
    @return KErrNone, if successful; otherwise one of the other
sl@0
   100
                      system wide error codes.
sl@0
   101
    */
sl@0
   102
	virtual TInt Create(const TDesC &aTitle,TSize aSize) =0;
sl@0
   103
sl@0
   104
	
sl@0
   105
    /**
sl@0
   106
    Gets a keystroke from the console window, asynchronously.
sl@0
   107
    
sl@0
   108
    @param aStatus The request status object.
sl@0
   109
    */
sl@0
   110
	virtual void Read(TRequestStatus &aStatus) =0;
sl@0
   111
	
sl@0
   112
	
sl@0
   113
	/**
sl@0
   114
	Cancels any outstanding request to get a keystroke from the console window.
sl@0
   115
	*/
sl@0
   116
	virtual void ReadCancel() =0;
sl@0
   117
	
sl@0
   118
	
sl@0
   119
	/**
sl@0
   120
	Writes the content of the specified descriptor to the console window.
sl@0
   121
	
sl@0
   122
	@param aDes Descriptor containing the characters to be written to
sl@0
   123
	            the console window.
sl@0
   124
	*/
sl@0
   125
	virtual void Write(const TDesC &aDes) =0;
sl@0
   126
	
sl@0
   127
	
sl@0
   128
	/**
sl@0
   129
	Gets the current cursor position relative to the console window.
sl@0
   130
	
sl@0
   131
	@return  The current cursor position.
sl@0
   132
	*/
sl@0
   133
	virtual TPoint CursorPos() const =0;
sl@0
   134
	
sl@0
   135
	
sl@0
   136
	/**
sl@0
   137
    Puts the cursor at the absolute position in the window.
sl@0
   138
    
sl@0
   139
    @param aPoint The cursor position.
sl@0
   140
	*/
sl@0
   141
	virtual void SetCursorPosAbs(const TPoint &aPoint) =0;
sl@0
   142
	
sl@0
   143
	
sl@0
   144
	/**
sl@0
   145
	Puts the cursor at the specified position relative
sl@0
   146
	to the current cursor position.
sl@0
   147
	
sl@0
   148
	@param aPoint The cursor position.
sl@0
   149
	*/
sl@0
   150
	virtual void SetCursorPosRel(const TPoint &aPoint) =0;
sl@0
   151
	
sl@0
   152
	
sl@0
   153
	/**
sl@0
   154
	Sets the percentage height of the cursor.
sl@0
   155
	
sl@0
   156
    @param aPercentage The percentage height. This is a value from 0 to 100.
sl@0
   157
                       If 0 is specified, then no cursor is displayed.
sl@0
   158
	*/
sl@0
   159
	virtual void SetCursorHeight(TInt aPercentage) =0;
sl@0
   160
sl@0
   161
	
sl@0
   162
	/**
sl@0
   163
	Sets a new console title.
sl@0
   164
	
sl@0
   165
	@param aTitle The title text for the console.
sl@0
   166
                  This should not be longer than 256 characters.
sl@0
   167
	*/
sl@0
   168
	virtual void SetTitle(const TDesC &aTitle) =0;
sl@0
   169
sl@0
   170
	
sl@0
   171
	/**
sl@0
   172
	Clears the console.
sl@0
   173
	*/
sl@0
   174
	virtual void ClearScreen() =0;
sl@0
   175
	
sl@0
   176
	
sl@0
   177
	/**
sl@0
   178
	Clears the console from the current cursor position to
sl@0
   179
	the end of the line.
sl@0
   180
	*/
sl@0
   181
	virtual void ClearToEndOfLine() =0;
sl@0
   182
	
sl@0
   183
	
sl@0
   184
	/**
sl@0
   185
	Gets the size of the console.
sl@0
   186
	*/
sl@0
   187
	virtual TSize ScreenSize() const =0;
sl@0
   188
	
sl@0
   189
	
sl@0
   190
	/**
sl@0
   191
	Gets the current key code value.
sl@0
   192
	
sl@0
   193
	@return The key code value.
sl@0
   194
	*/
sl@0
   195
	virtual TKeyCode KeyCode() const =0;
sl@0
   196
	
sl@0
   197
	/**
sl@0
   198
	Gets the current key modifiers.
sl@0
   199
	
sl@0
   200
	@return The key modifiers.
sl@0
   201
	*/
sl@0
   202
	virtual TUint KeyModifiers() const =0;
sl@0
   203
protected:
sl@0
   204
	IMPORT_C CConsoleBase();
sl@0
   205
protected:
sl@0
   206
	IMPORT_C virtual TInt Extension_(TUint aExtensionId, TAny*& a0, TAny* a1);
sl@0
   207
	};
sl@0
   208
sl@0
   209
sl@0
   210
class CProxyConsole;
sl@0
   211
sl@0
   212
/**
sl@0
   213
@publishedAll
sl@0
   214
@released
sl@0
   215
sl@0
   216
Adds colour support to the basic console interface.
sl@0
   217
*/
sl@0
   218
class CColorConsoleBase : public CConsoleBase
sl@0
   219
	{
sl@0
   220
public:
sl@0
   221
sl@0
   222
    /**
sl@0
   223
    Sets the text attribute as defined by TTextAttribute.
sl@0
   224
    
sl@0
   225
    @param anAttribute The text attribute to be set.
sl@0
   226
    */
sl@0
   227
	virtual void SetTextAttribute(TTextAttribute /*anAttribute*/); 
sl@0
   228
protected:
sl@0
   229
	IMPORT_C virtual TInt Extension_(TUint aExtensionId, TAny*& a0, TAny* a1);
sl@0
   230
sl@0
   231
	friend class CProxyConsole;
sl@0
   232
	};
sl@0
   233
//
sl@0
   234
sl@0
   235
/**
sl@0
   236
@publishedAll
sl@0
   237
@released
sl@0
   238
*/
sl@0
   239
extern "C" {
sl@0
   240
IMPORT_C TAny *NewConsole();
sl@0
   241
}
sl@0
   242
#endif
sl@0
   243