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 |
virtual const TRegion& WindowArea() 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 ScreenSizeChanged(const TBool aSwapWidthAndHeight);
|
sl@0
|
42 |
void OrientationChanged();
|
sl@0
|
43 |
void ClearDisplay();
|
sl@0
|
44 |
void SetSystemFaded(TBool aFaded, TUint8 aBlackMap, TUint8 aWhiteMap);
|
sl@0
|
45 |
CWsWindowGroup* WindowGroup(TInt aWindowGroup);
|
sl@0
|
46 |
CWsClientWindow *FirstTopClientWindow() const;
|
sl@0
|
47 |
inline TRgb DefaultBackgroundColor();
|
sl@0
|
48 |
|
sl@0
|
49 |
public: // from CWsObject
|
sl@0
|
50 |
virtual void CommandL(TInt aOpcode, const TAny *aCmdData);
|
sl@0
|
51 |
|
sl@0
|
52 |
private:
|
sl@0
|
53 |
inline CWsBlankWindow* BlankRedraw();
|
sl@0
|
54 |
private:
|
sl@0
|
55 |
TRegionFix<1> iArea;
|
sl@0
|
56 |
TRgb iDefaultBackgroundColor;
|
sl@0
|
57 |
};
|
sl@0
|
58 |
|
sl@0
|
59 |
inline CWsBlankWindow* CWsRootWindow::BlankRedraw()
|
sl@0
|
60 |
{
|
sl@0
|
61 |
return STATIC_CAST(CWsBlankWindow*,iRedraw);
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
inline CWsWindowGroup *CWsRootWindow::Child() const
|
sl@0
|
65 |
{
|
sl@0
|
66 |
return (CWsWindowGroup *)iChild;
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
inline CWsWindowBase *CWsRootWindow::NextSibling() const
|
sl@0
|
70 |
{
|
sl@0
|
71 |
return iSibling;
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
inline CWsWindowBase *CWsRootWindow::PrevSibling() const
|
sl@0
|
75 |
{
|
sl@0
|
76 |
return GetPrevSibling();
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
inline TRgb CWsRootWindow::DefaultBackgroundColor()
|
sl@0
|
80 |
{
|
sl@0
|
81 |
return iDefaultBackgroundColor;
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
#endif
|