os/graphics/windowing/windowserver/nga/SERVER/rootwin.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) 2006-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 "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
// CWsRootWindow and associated classes definitions
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __ROOTWIN_H__
sl@0
    19
#define __ROOTWIN_H__
sl@0
    20
sl@0
    21
#include "server.h"
sl@0
    22
#include "window.h"
sl@0
    23
sl@0
    24
class CWsRootWindow : public CWsWindow
sl@0
    25
	{
sl@0
    26
public:
sl@0
    27
	CWsRootWindow(CWsClient* aOwner, CScreen* aScreen);
sl@0
    28
	~CWsRootWindow();
sl@0
    29
	void ConstructL();
sl@0
    30
	const CWsWindow *PointerWindow(const TPoint &inPos,TPoint *outPos, TPoint *parentPos, const CWsWindow *grabWin,
sl@0
    31
											const CWsWindow *&aOriginalWinItIsIn,const CWsWindowGroup *aForceInGroup);
sl@0
    32
	CWsWindowGroup *Child() const;
sl@0
    33
	inline CWsWindowBase *PrevSibling() const;
sl@0
    34
	inline CWsWindowBase *NextSibling() const;
sl@0
    35
	CWsWindowBase *Parent() const;
sl@0
    36
	virtual void GenerateWindowRegion(RWsRegion &aRegion) const;
sl@0
    37
	void SetColor(TRgb aColor);
sl@0
    38
	void SetColorIfClear();
sl@0
    39
	void InvalidateWholeScreen();
sl@0
    40
	void Invalidate(RWsRegion* aRegion);
sl@0
    41
	void AdjustCoordsDueToRotation();
sl@0
    42
	void ClearDisplay();
sl@0
    43
	void SetSystemFaded(TBool aFaded, TUint8 aBlackMap, TUint8 aWhiteMap);
sl@0
    44
	CWsWindowGroup* WindowGroup(TInt aWindowGroup);
sl@0
    45
	CWsTopClientWindow *FirstTopClientWindow() const;
sl@0
    46
	inline TRgb DefaultBackgroundColor() const;
sl@0
    47
public:	// from CWsObject
sl@0
    48
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
    49
public: // from MWsWindowTreeNode
sl@0
    50
	const MWsWindow* Window() const;	
sl@0
    51
public: // from MWsWindow
sl@0
    52
	const TRegion& WindowArea() const;
sl@0
    53
public: // from CWsWindowBase
sl@0
    54
	void SendState(MWsWindowTreeObserver& aWindowTreeObserver) const;
sl@0
    55
private:
sl@0
    56
	inline CWsBlankWindow* BlankRedraw();
sl@0
    57
private:
sl@0
    58
	TRegionFix<1> iArea;
sl@0
    59
	TRgb iDefaultBackgroundColor;
sl@0
    60
	};
sl@0
    61
	
sl@0
    62
inline CWsBlankWindow* CWsRootWindow::BlankRedraw()
sl@0
    63
	{
sl@0
    64
	return STATIC_CAST(CWsBlankWindow*,iRedraw);
sl@0
    65
	}
sl@0
    66
sl@0
    67
inline CWsWindowGroup *CWsRootWindow::Child() const
sl@0
    68
	{
sl@0
    69
	return (CWsWindowGroup *)iChild;
sl@0
    70
	}
sl@0
    71
sl@0
    72
inline CWsWindowBase *CWsRootWindow::NextSibling() const
sl@0
    73
	{
sl@0
    74
	return iSibling;
sl@0
    75
	}
sl@0
    76
sl@0
    77
inline CWsWindowBase *CWsRootWindow::PrevSibling() const
sl@0
    78
	{
sl@0
    79
	return GetPrevSibling();
sl@0
    80
	}
sl@0
    81
sl@0
    82
inline CWsWindowBase *CWsRootWindow::Parent() const
sl@0
    83
	{
sl@0
    84
	return iParent;
sl@0
    85
	}
sl@0
    86
inline TRgb CWsRootWindow::DefaultBackgroundColor() const
sl@0
    87
	{
sl@0
    88
	return iDefaultBackgroundColor;
sl@0
    89
	}	
sl@0
    90
sl@0
    91
#endif