os/kernelhwsrv/kernel/eka/include/ws_std.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\ws_std.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalTechnology
sl@0
    21
*/
sl@0
    22
sl@0
    23
#ifndef __WS_STD_H__
sl@0
    24
#define __WS_STD_H__
sl@0
    25
sl@0
    26
#include <e32base.h>
sl@0
    27
#include <e32base_private.h>
sl@0
    28
#include <e32cons.h>
sl@0
    29
#include <e32twin.h>
sl@0
    30
#include <e32ver.h>
sl@0
    31
#include <e32svr.h>
sl@0
    32
#include <e32hal.h>
sl@0
    33
#include <e32uid.h>
sl@0
    34
//
sl@0
    35
#include <twintnotifier.h>
sl@0
    36
//
sl@0
    37
const TInt KW32MajorVersionNumber=1;
sl@0
    38
const TInt KW32MinorVersionNumber=0;
sl@0
    39
const TInt KMessageSlots=3;
sl@0
    40
//
sl@0
    41
sl@0
    42
typedef TUint8 TColorIndex;
sl@0
    43
sl@0
    44
enum TConsolePanic
sl@0
    45
	{
sl@0
    46
	EConsServerFailed,
sl@0
    47
	EConsNotSupportedYet
sl@0
    48
	};
sl@0
    49
//
sl@0
    50
enum TWsPanic
sl@0
    51
	{
sl@0
    52
	EPrematureOperation,
sl@0
    53
	ETooManyWindowsOpen,
sl@0
    54
	EWindowTooWide,
sl@0
    55
	EWindowTooThin,
sl@0
    56
	EWindowTooHigh,
sl@0
    57
	EWindowTooShort,
sl@0
    58
	EWindowOutOfMemory,
sl@0
    59
	EDoubleReadRequest,
sl@0
    60
	};
sl@0
    61
//
sl@0
    62
enum TWsFault
sl@0
    63
	{
sl@0
    64
	ECreateScheduler,
sl@0
    65
	ECreateServer,
sl@0
    66
	EStartServer,
sl@0
    67
	ECreateEvent,
sl@0
    68
	ECreateShell,
sl@0
    69
	ESchedulerError,
sl@0
    70
	EWindowsInitialisation,
sl@0
    71
	ENoKeyboardTranslator,
sl@0
    72
	ECreateNotifierSemaphore,
sl@0
    73
	ECreateNotifierThread,
sl@0
    74
	ELocaleDll,
sl@0
    75
	EChangeLocale,
sl@0
    76
	};
sl@0
    77
//
sl@0
    78
struct SWsKey
sl@0
    79
	{
sl@0
    80
	TKeyData iKeyData;
sl@0
    81
    TInt iType;
sl@0
    82
    TPoint iMousePos;
sl@0
    83
	TSglQueLink iLink;
sl@0
    84
	};
sl@0
    85
sl@0
    86
struct ColorInformation
sl@0
    87
	{
sl@0
    88
	TColorIndex iFg;
sl@0
    89
	TColorIndex iBg;	
sl@0
    90
	};
sl@0
    91
//
sl@0
    92
class CScreenDriver;
sl@0
    93
class CWsWindow : public CBase
sl@0
    94
	{
sl@0
    95
	friend class CEvent;
sl@0
    96
	friend class CWsSession;
sl@0
    97
	friend class CNotifierSession;
sl@0
    98
    friend class CKeyRepeat;
sl@0
    99
private:
sl@0
   100
	enum
sl@0
   101
		{
sl@0
   102
		EBackgroundNumber=0,
sl@0
   103
		EMaxOpenWindows=64,
sl@0
   104
		ENormalAttribute=7,
sl@0
   105
		EMouseCharacter=219,
sl@0
   106
		ECursorPeriodicPriority=2000
sl@0
   107
		};
sl@0
   108
public:
sl@0
   109
	CWsWindow();
sl@0
   110
	static void New();
sl@0
   111
	inline static void WaitOnService() {ServiceMutex.Wait();}
sl@0
   112
	inline static void SignalService() {ServiceMutex.Signal();}
sl@0
   113
	static TBool RawEventMode();
sl@0
   114
	static void QueueRawEvent(TRawEvent& anEvent);
sl@0
   115
	void CreateL(const TSize &aSize);
sl@0
   116
sl@0
   117
private:
sl@0
   118
	~CWsWindow();
sl@0
   119
	void Display();
sl@0
   120
	TBool IsTop() const;
sl@0
   121
	void MakeTopWindow();
sl@0
   122
	void SetClip();
sl@0
   123
	void Clear();
sl@0
   124
	void WriteCharacter(const TText *aCharacter);
sl@0
   125
	void CarriageReturn();
sl@0
   126
	void LineFeed();
sl@0
   127
	void Write(const TDesC &aBuffer);
sl@0
   128
	void Refresh();
sl@0
   129
	void SaveEdges();
sl@0
   130
	void RestoreEdges();
sl@0
   131
	void SetWiew();
sl@0
   132
	TBool IsInClippedTextArea(const TPoint& aPoint) const;
sl@0
   133
	void SetCursor();
sl@0
   134
	static void TextFill(TText *aBuffer, TInt aLength, const TText *aValue);
sl@0
   135
	static TInt Offset(const TPoint &aPosition,const TSize &aSize);
sl@0
   136
	static void RotateWindowsForwards();
sl@0
   137
	static void RotateWindowsBackwards();
sl@0
   138
	static void BeginUpdateScreen();
sl@0
   139
	static void EndUpdateScreen();
sl@0
   140
	static void DrainAllReadRequests();
sl@0
   141
    static void ControlInformAllMouse(TBool anIndicator);
sl@0
   142
#if defined(_UNICODE)
sl@0
   143
	static TInt IsHankaku(const TText aCode);
sl@0
   144
	static TInt FitInWidth(TText* aDest,TInt aWidth,TInt aAsciiCol,TText aCode);
sl@0
   145
	static TInt OffsetHZa(const TText* aDest,const TPoint& aPosition,const TSize& aSize,TInt& aX);
sl@0
   146
	static TInt OffsetHZwP(const TText* aDest,const TPoint& aPosition,const TSize& aSize,TPoint& aP);
sl@0
   147
	static TInt OffsetHZ(const TText* aDest,const TPoint& aPosition,const TSize& aSize);
sl@0
   148
	static TText GetCharFromOffset(const TText* aDest,const TPoint& aPosition,const TSize& aSize);
sl@0
   149
	static TText *GetCpFromOffset(const TText* aDest,const TPoint& aPosition,const TSize& aSize);
sl@0
   150
#endif
sl@0
   151
	void ScrollUp();
sl@0
   152
	void Left();
sl@0
   153
	void Right();
sl@0
   154
	void FormFeed();
sl@0
   155
	void BackSpace();
sl@0
   156
	void HorizontalTab();
sl@0
   157
	TBool IsRectVisible(TRect& aRect) const;
sl@0
   158
	void SetFrame();
sl@0
   159
	void DrainReadRequest();
sl@0
   160
	TBool EnqueReadRequest(const RMessage2& aMessage);
sl@0
   161
	void DequeReadRequest();
sl@0
   162
	void InformMouse(TPoint aPos);
sl@0
   163
	void QueueWindowKey(TKeyData &aKeystroke);
sl@0
   164
	void DoMouseLeftButton();
sl@0
   165
	void ControlMaximised(TBool anIndicator);
sl@0
   166
	void ControlOnTop(TBool anIndicator);
sl@0
   167
	static void Delete();
sl@0
   168
	static CWsWindow *TopWindow();
sl@0
   169
	static CWsWindow *BottomWindow();
sl@0
   170
	static TInt8 NewNumberL();
sl@0
   171
	static void ReleaseNumber(TInt8 aNumber);
sl@0
   172
	static void Redraw();
sl@0
   173
	static void KeyPress(TKeyData& aKeystroke);
sl@0
   174
	static void QueueTopWindowKey(TKeyData& aKeystroke);
sl@0
   175
	static void InformTopMouse(TPoint aPos);
sl@0
   176
	static TInt ChangeTopWindowSize(TSize aGrowth);
sl@0
   177
	static TInt SlideTopWindowRelative(TPoint aDirection);
sl@0
   178
	static TInt MoveTopWindowRelative(TPoint aDirection);
sl@0
   179
	static void ControlTopWindowMaximised(TBool anIndicator);
sl@0
   180
	static TInt FlashCursor(TAny *aParameter);
sl@0
   181
	static void ResetVisibilityMap();
sl@0
   182
	static void UpdateScreen(TPoint &aPosition,TInt aLength,TInt8 aNumber,TText *aTextBuffer,ColorInformation *anAttributeBuffer);
sl@0
   183
	static void Background();
sl@0
   184
	static void TurnMouseOff();
sl@0
   185
	static void TurnMouseOn();
sl@0
   186
	static void MouseMove(TPoint aGraphicsPosition);
sl@0
   187
	static void MouseLeftButton();
sl@0
   188
	static void MouseLeftButtonUp();
sl@0
   189
	static CWsWindow *MouseWindow();
sl@0
   190
	static void ChangeUIColors();
sl@0
   191
	static TInt SetMode(TVideoMode aMode);
sl@0
   192
	TSize Size();
sl@0
   193
	TPoint CursorPosition();
sl@0
   194
	void WriteDone();
sl@0
   195
	void SetView();
sl@0
   196
	void SetFull();
sl@0
   197
	void ClearToEndOfLine();
sl@0
   198
	void NewLine();
sl@0
   199
	void SetCursorHeight(TInt aPercentage);
sl@0
   200
	void SetTitle(const TDesC &aName);
sl@0
   201
	void SetSize(const TSize &aSize); 
sl@0
   202
	void SetWindowPosAbs(const TPoint &aPosition);
sl@0
   203
	void SetCursorPosAbs(const TPoint &aPosition);
sl@0
   204
	void SetCursorPosRel(const TPoint &aPosition);
sl@0
   205
	void ControlScrollBars(TBool anIndicator);
sl@0
   206
	void ControlWrapLock(TBool anIndicator);
sl@0
   207
    void ControlPointerEvents(TBool anIndicator);
sl@0
   208
	void ControlScrollLock(TBool anIndicator);
sl@0
   209
	void ControlVisibility(TBool anIndicator);
sl@0
   210
	void ControlAllowResize(TBool anIndicator);
sl@0
   211
	void ControlCursorRequired(TBool anIndicator);
sl@0
   212
	void ControlNewLineMode(TBool anIndicator);
sl@0
   213
	void ControlRawEventMode(TBool anIndicator);
sl@0
   214
    void QueueWindowRawEvent(TRawEvent& anEvent);
sl@0
   215
	void MouseSlide();
sl@0
   216
	void SetTextAttribute(TTextAttribute anAttribute);
sl@0
   217
sl@0
   218
private:
sl@0
   219
	TInt8 iNumber;
sl@0
   220
	TSize iCurrentSize;
sl@0
   221
	TSize iClippedSize;
sl@0
   222
	TBool iIsVisible;
sl@0
   223
	TPoint iViewOrigin;
sl@0
   224
	TSize iViewSize;
sl@0
   225
	TPoint iCurrentOffset;
sl@0
   226
	TText *iTextBuffer;
sl@0
   227
	ColorInformation *iAttributeBuffer;
sl@0
   228
    TUint8 iFillAttribute;
sl@0
   229
	TBool iCursorRequired;
sl@0
   230
	TBool iCursorIsOn;
sl@0
   231
	TPoint iCursorPos;
sl@0
   232
	TPoint iLastCursorPos;
sl@0
   233
	TText iCursor;
sl@0
   234
	TBool iScrollLock;
sl@0
   235
    TBool iWrapLock;
sl@0
   236
	TBool iNewLineMode;
sl@0
   237
	TBool iOnTop;
sl@0
   238
	TBool iAllowResize;
sl@0
   239
	TBool iAllowSlide;
sl@0
   240
	TBool iReadIsValid;
sl@0
   241
	TDblQueLink iLink;
sl@0
   242
    static TSize ScreenSize;
sl@0
   243
	static CScreenDriver *ScreenDriver;
sl@0
   244
	static TDblQue<CWsWindow> WQueue;
sl@0
   245
	static TInt8 *VisibilityMap;
sl@0
   246
	static TPoint MousePos;
sl@0
   247
	static TSize FontSize;
sl@0
   248
	static CBitMapAllocator *Numbers;
sl@0
   249
	static CPeriodic *CursorPeriodic;
sl@0
   250
	static TText *BlankLineText;
sl@0
   251
	static ColorInformation *BlankLineAttributes;
sl@0
   252
	static TBool MouseIsCaptured;
sl@0
   253
	static RMutex MouseMutex;
sl@0
   254
	static RMutex ServiceMutex;
sl@0
   255
	static TInt Count;
sl@0
   256
	static const TText Cursors[101];
sl@0
   257
	static CWsWindow* RawEventWindow;
sl@0
   258
	static TPoint ScrollWithMouse;
sl@0
   259
	static TPoint MoveWithMouse;
sl@0
   260
	static TPoint ResizeWithMouse;
sl@0
   261
	static TInt ScrollSpeed;
sl@0
   262
	static TColorIndex ScreenColor;
sl@0
   263
	static TColorIndex WindowBgColor;
sl@0
   264
	static TColorIndex BorderColor;
sl@0
   265
	static TColorIndex IndexOf[8];
sl@0
   266
	TSglQue<SWsKey> iKQueue;
sl@0
   267
	RMessage2 iReadRequest;
sl@0
   268
	TPoint iMaximumOrigin;
sl@0
   269
	TSize iMaximumSize;
sl@0
   270
	TPoint iMinimumOrigin;
sl@0
   271
	TSize iMinimumSize;
sl@0
   272
    TBool iHasScrollBars;
sl@0
   273
    TBool iPointerEvents;
sl@0
   274
    TFileName iTitle;
sl@0
   275
	RMessage2 iMessage;
sl@0
   276
	TColorIndex iFgColor;
sl@0
   277
	TColorIndex iBgColor;
sl@0
   278
	};
sl@0
   279
sl@0
   280
class CWsSession : public CSession2
sl@0
   281
	{
sl@0
   282
public:
sl@0
   283
	enum
sl@0
   284
		{
sl@0
   285
		EConsoleCreate,
sl@0
   286
		EConsoleSet,
sl@0
   287
		EConsoleClearScreen,
sl@0
   288
		EConsoleClearToEndOfLine,
sl@0
   289
		EConsoleSetWindowPosAbs,
sl@0
   290
		EConsoleSetCursorHeight,
sl@0
   291
		EConsoleSetCursorPosAbs,
sl@0
   292
		EConsoleSetCursorPosRel,
sl@0
   293
		EConsoleCursorPos,
sl@0
   294
		EConsoleControl,
sl@0
   295
		EConsoleWrite,
sl@0
   296
		EConsoleRead,
sl@0
   297
		EConsoleReadCancel,
sl@0
   298
		EConsoleDestroy,
sl@0
   299
		EConsoleSetTitle,
sl@0
   300
		EConsoleSetSize,
sl@0
   301
		EConsoleSize,
sl@0
   302
		EConsoleScreenSize,
sl@0
   303
		EConsoleSetMode,
sl@0
   304
		EConsoleSetPaletteEntry,
sl@0
   305
		EConsoleGetPaletteEntry,
sl@0
   306
		EConsoleSetTextColors,
sl@0
   307
		EConsoleSetUIColors,
sl@0
   308
		EConsoleSetTextAttribute
sl@0
   309
		};
sl@0
   310
public:
sl@0
   311
	CWsSession();
sl@0
   312
	~CWsSession();
sl@0
   313
	void Attach(CWsWindow* aWindow);
sl@0
   314
	virtual void ServiceL(const RMessage2& aMessage);
sl@0
   315
	virtual void ServiceError(const RMessage2& aMessage,TInt aError);
sl@0
   316
private:
sl@0
   317
	CWsWindow* iWindow;
sl@0
   318
	RMessagePtr2 iCurMsg;
sl@0
   319
	TInt iTestFast;
sl@0
   320
	};
sl@0
   321
//
sl@0
   322
class CWsServer : public CServer2
sl@0
   323
	{
sl@0
   324
public:
sl@0
   325
	enum {EPriority=1000};
sl@0
   326
public:
sl@0
   327
	static void New();
sl@0
   328
	~CWsServer();
sl@0
   329
	virtual CSession2* NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const;
sl@0
   330
private:
sl@0
   331
	CWsServer(TInt aPriority);
sl@0
   332
	};
sl@0
   333
//
sl@0
   334
class CKeyRepeat : public CTimer
sl@0
   335
    {
sl@0
   336
public:
sl@0
   337
    enum { EKeyRepeatPriority=1990 };
sl@0
   338
sl@0
   339
    CKeyRepeat(TInt aPriority);
sl@0
   340
    void ConstructL();
sl@0
   341
    void Request(TKeyData& aKeyData);
sl@0
   342
    virtual void RunL();
sl@0
   343
    void SetRepeatTime(TInt aDelay,TInt aRate);
sl@0
   344
    void RepeatTime(TInt& aDelay,TInt& aRate);
sl@0
   345
sl@0
   346
    TKeyData iKeyData;
sl@0
   347
private:
sl@0
   348
    enum { EDefaultKeyRepeatDelay=500000, EDefaultKeyRepeatRate=30000 };
sl@0
   349
sl@0
   350
    TInt iDelay;
sl@0
   351
    TInt iRate;
sl@0
   352
    };
sl@0
   353
//
sl@0
   354
class CEvent : public CActive
sl@0
   355
	{
sl@0
   356
public:
sl@0
   357
	enum {EPriority=2000};
sl@0
   358
public:
sl@0
   359
	static void New();
sl@0
   360
	~CEvent();
sl@0
   361
	void Request();
sl@0
   362
	virtual void DoCancel();
sl@0
   363
	virtual void RunL();
sl@0
   364
protected:
sl@0
   365
	CEvent(TInt aPriority);
sl@0
   366
private:
sl@0
   367
	TRawEventBuf iEvent;
sl@0
   368
	static CCaptureKeys *CaptureKeys;
sl@0
   369
    TInt iRepeatScanCode;
sl@0
   370
	};
sl@0
   371
//
sl@0
   372
class CWsActiveScheduler : public CActiveScheduler
sl@0
   373
	{
sl@0
   374
public:
sl@0
   375
	static void New();
sl@0
   376
	virtual void Error(TInt anError) const;
sl@0
   377
	};
sl@0
   378
//
sl@0
   379
#include "w32disp.h"
sl@0
   380
//
sl@0
   381
GLREF_C TInt WindowServerThread(TAny *anArg);
sl@0
   382
GLREF_C void Panic(TWsPanic aPanic);
sl@0
   383
GLREF_C void Fault(TWsFault aFault);
sl@0
   384
//
sl@0
   385
IMPORT_C void Panic(TConsolePanic aPanic);
sl@0
   386
sl@0
   387
#endif	// __WS_STD_H__