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