sl@0: // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of the License "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // e32\ewsrv\ws_dat.cpp sl@0: // sl@0: // sl@0: sl@0: #include "ws_std.h" sl@0: sl@0: GLDEF_D CCaptureKeys *CEvent::CaptureKeys; sl@0: sl@0: GLDEF_D CKeyTranslator *KeyTranslator; sl@0: GLDEF_D CKeyRepeat *KeyRepeat; sl@0: sl@0: GLDEF_D CScreenDriver *CWsWindow::ScreenDriver; sl@0: GLDEF_D CPeriodic *CWsWindow::CursorPeriodic; sl@0: GLDEF_D TSize CWsWindow::ScreenSize; sl@0: GLDEF_D TSize CWsWindow::FontSize; sl@0: GLDEF_D CBitMapAllocator *CWsWindow::Numbers; sl@0: GLDEF_D TDblQue CWsWindow::WQueue(_FOFF(CWsWindow,iLink)); sl@0: GLDEF_D TInt8 *CWsWindow::VisibilityMap; sl@0: GLDEF_D TText *CWsWindow::BlankLineText; sl@0: GLDEF_D ColorInformation *CWsWindow::BlankLineAttributes; sl@0: GLDEF_D RMutex CWsWindow::MouseMutex; sl@0: GLDEF_D RMutex CWsWindow::ServiceMutex; sl@0: GLDEF_D RSemaphore CNotifierSession::NotifierSemaphore; sl@0: GLDEF_D TPoint CWsWindow::MousePos(0,0); sl@0: GLDEF_D TPoint CWsWindow::ScrollWithMouse(-1,-1); sl@0: GLDEF_D TPoint CWsWindow::MoveWithMouse(-1,-1); sl@0: GLDEF_D TPoint CWsWindow::ResizeWithMouse(-1,-1); sl@0: GLDEF_D TInt CWsWindow::ScrollSpeed=0; sl@0: GLDEF_D TBool CWsWindow::MouseIsCaptured=EFalse; sl@0: GLDEF_D TInt CWsWindow::Count=0; sl@0: GLDEF_D CWsWindow* CWsWindow::RawEventWindow=NULL; sl@0: GLDEF_D TColorIndex CWsWindow::ScreenColor; sl@0: GLDEF_D TColorIndex CWsWindow::BorderColor; sl@0: GLDEF_D TColorIndex CWsWindow::WindowBgColor; sl@0: GLDEF_D TColorIndex CWsWindow::IndexOf[8]; sl@0: GLDEF_D const TText CWsWindow::Cursors[101] = sl@0: { sl@0: 0, sl@0: 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, sl@0: 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, sl@0: 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, sl@0: 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, sl@0: 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, sl@0: 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, sl@0: 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, sl@0: 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, sl@0: 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, sl@0: 219, 219, 219, 219, 219, 219, 219, 219, 219, 219 sl@0: }; sl@0: sl@0: sl@0: