os/kernelhwsrv/kernel/eka/ewsrv/ws_dat.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/kernelhwsrv/kernel/eka/ewsrv/ws_dat.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,65 @@
     1.4 +// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of the License "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// e32\ewsrv\ws_dat.cpp
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include "ws_std.h"
    1.22 +
    1.23 +GLDEF_D CCaptureKeys *CEvent::CaptureKeys;
    1.24 +
    1.25 +GLDEF_D CKeyTranslator *KeyTranslator;
    1.26 +GLDEF_D CKeyRepeat *KeyRepeat;
    1.27 +
    1.28 +GLDEF_D CScreenDriver *CWsWindow::ScreenDriver;
    1.29 +GLDEF_D CPeriodic *CWsWindow::CursorPeriodic;
    1.30 +GLDEF_D TSize CWsWindow::ScreenSize;
    1.31 +GLDEF_D TSize CWsWindow::FontSize;
    1.32 +GLDEF_D CBitMapAllocator *CWsWindow::Numbers;
    1.33 +GLDEF_D TDblQue<CWsWindow> CWsWindow::WQueue(_FOFF(CWsWindow,iLink));
    1.34 +GLDEF_D TInt8 *CWsWindow::VisibilityMap;
    1.35 +GLDEF_D TText *CWsWindow::BlankLineText;
    1.36 +GLDEF_D ColorInformation *CWsWindow::BlankLineAttributes;
    1.37 +GLDEF_D RMutex CWsWindow::MouseMutex;
    1.38 +GLDEF_D RMutex CWsWindow::ServiceMutex;
    1.39 +GLDEF_D RSemaphore CNotifierSession::NotifierSemaphore;
    1.40 +GLDEF_D TPoint CWsWindow::MousePos(0,0);
    1.41 +GLDEF_D TPoint CWsWindow::ScrollWithMouse(-1,-1);
    1.42 +GLDEF_D TPoint CWsWindow::MoveWithMouse(-1,-1);
    1.43 +GLDEF_D TPoint CWsWindow::ResizeWithMouse(-1,-1);
    1.44 +GLDEF_D TInt CWsWindow::ScrollSpeed=0;
    1.45 +GLDEF_D TBool CWsWindow::MouseIsCaptured=EFalse;
    1.46 +GLDEF_D TInt CWsWindow::Count=0;
    1.47 +GLDEF_D CWsWindow* CWsWindow::RawEventWindow=NULL;
    1.48 +GLDEF_D TColorIndex CWsWindow::ScreenColor;
    1.49 +GLDEF_D TColorIndex CWsWindow::BorderColor;
    1.50 +GLDEF_D TColorIndex CWsWindow::WindowBgColor;
    1.51 +GLDEF_D TColorIndex CWsWindow::IndexOf[8];
    1.52 +GLDEF_D const TText CWsWindow::Cursors[101] =
    1.53 +	{
    1.54 +    0,
    1.55 +	220, 220, 220, 220, 220, 220, 220, 220, 220, 220,
    1.56 +	220, 220, 220, 220, 220, 220, 220, 220, 220, 220,
    1.57 +	220, 220, 220, 220, 220, 220, 220, 220, 220, 220,
    1.58 +	220, 220, 220, 220, 220, 220, 220, 220, 220, 220,
    1.59 +	220, 220, 220, 220, 220, 220, 220, 220, 220, 220,
    1.60 +	219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
    1.61 +	219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
    1.62 +	219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
    1.63 +	219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
    1.64 +	219, 219, 219, 219, 219, 219, 219, 219, 219, 219
    1.65 +	};
    1.66 +
    1.67 +
    1.68 +