os/kernelhwsrv/kernel/eka/ewsrv/ws_dat.cpp
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\ewsrv\ws_dat.cpp
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "ws_std.h"
sl@0
    19
sl@0
    20
GLDEF_D CCaptureKeys *CEvent::CaptureKeys;
sl@0
    21
sl@0
    22
GLDEF_D CKeyTranslator *KeyTranslator;
sl@0
    23
GLDEF_D CKeyRepeat *KeyRepeat;
sl@0
    24
sl@0
    25
GLDEF_D CScreenDriver *CWsWindow::ScreenDriver;
sl@0
    26
GLDEF_D CPeriodic *CWsWindow::CursorPeriodic;
sl@0
    27
GLDEF_D TSize CWsWindow::ScreenSize;
sl@0
    28
GLDEF_D TSize CWsWindow::FontSize;
sl@0
    29
GLDEF_D CBitMapAllocator *CWsWindow::Numbers;
sl@0
    30
GLDEF_D TDblQue<CWsWindow> CWsWindow::WQueue(_FOFF(CWsWindow,iLink));
sl@0
    31
GLDEF_D TInt8 *CWsWindow::VisibilityMap;
sl@0
    32
GLDEF_D TText *CWsWindow::BlankLineText;
sl@0
    33
GLDEF_D ColorInformation *CWsWindow::BlankLineAttributes;
sl@0
    34
GLDEF_D RMutex CWsWindow::MouseMutex;
sl@0
    35
GLDEF_D RMutex CWsWindow::ServiceMutex;
sl@0
    36
GLDEF_D RSemaphore CNotifierSession::NotifierSemaphore;
sl@0
    37
GLDEF_D TPoint CWsWindow::MousePos(0,0);
sl@0
    38
GLDEF_D TPoint CWsWindow::ScrollWithMouse(-1,-1);
sl@0
    39
GLDEF_D TPoint CWsWindow::MoveWithMouse(-1,-1);
sl@0
    40
GLDEF_D TPoint CWsWindow::ResizeWithMouse(-1,-1);
sl@0
    41
GLDEF_D TInt CWsWindow::ScrollSpeed=0;
sl@0
    42
GLDEF_D TBool CWsWindow::MouseIsCaptured=EFalse;
sl@0
    43
GLDEF_D TInt CWsWindow::Count=0;
sl@0
    44
GLDEF_D CWsWindow* CWsWindow::RawEventWindow=NULL;
sl@0
    45
GLDEF_D TColorIndex CWsWindow::ScreenColor;
sl@0
    46
GLDEF_D TColorIndex CWsWindow::BorderColor;
sl@0
    47
GLDEF_D TColorIndex CWsWindow::WindowBgColor;
sl@0
    48
GLDEF_D TColorIndex CWsWindow::IndexOf[8];
sl@0
    49
GLDEF_D const TText CWsWindow::Cursors[101] =
sl@0
    50
	{
sl@0
    51
    0,
sl@0
    52
	220, 220, 220, 220, 220, 220, 220, 220, 220, 220,
sl@0
    53
	220, 220, 220, 220, 220, 220, 220, 220, 220, 220,
sl@0
    54
	220, 220, 220, 220, 220, 220, 220, 220, 220, 220,
sl@0
    55
	220, 220, 220, 220, 220, 220, 220, 220, 220, 220,
sl@0
    56
	220, 220, 220, 220, 220, 220, 220, 220, 220, 220,
sl@0
    57
	219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
sl@0
    58
	219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
sl@0
    59
	219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
sl@0
    60
	219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
sl@0
    61
	219, 219, 219, 219, 219, 219, 219, 219, 219, 219
sl@0
    62
	};
sl@0
    63
sl@0
    64
sl@0
    65