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 |
// CWsWindowRedraw and associated classes definitions
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __BACKEDUPWINDOW_H__
|
sl@0
|
19 |
#define __BACKEDUPWINDOW_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "wnredraw.h"
|
sl@0
|
22 |
#include "window.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
class CWsBackedUpWindow : public CWsWindowRedraw
|
sl@0
|
25 |
{
|
sl@0
|
26 |
public:
|
sl@0
|
27 |
static void StaticInitL();
|
sl@0
|
28 |
static void StaticDestroy();
|
sl@0
|
29 |
public:
|
sl@0
|
30 |
CWsBackedUpWindow(CWsWindow *aWin, TDisplayMode aDisplayMode);
|
sl@0
|
31 |
void ConstructL();
|
sl@0
|
32 |
~CWsBackedUpWindow();
|
sl@0
|
33 |
TBool CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd);
|
sl@0
|
34 |
void Resize(const TSize &aSize, const TSize &aOldSize);
|
sl@0
|
35 |
inline TDisplayMode DisplayMode() const;
|
sl@0
|
36 |
void PrepareForResizeL(const TSize &aSize, TSize &aOldSize);
|
sl@0
|
37 |
void DrawWindow();
|
sl@0
|
38 |
virtual CFbsDevice* OutputDevice() const;
|
sl@0
|
39 |
virtual TBool DrawCommand(CWsGc*,const TAny*);
|
sl@0
|
40 |
|
sl@0
|
41 |
private:
|
sl@0
|
42 |
void ActivateGc();
|
sl@0
|
43 |
void SetSizeInTwips();
|
sl@0
|
44 |
|
sl@0
|
45 |
//from CWsWindowRedraw
|
sl@0
|
46 |
TRgb BackColor() const;
|
sl@0
|
47 |
TBool NeedsRedraw() const;
|
sl@0
|
48 |
TBool GetRedrawRect(TRect &aRect) const;
|
sl@0
|
49 |
CWsBackedUpWindow *Backup() const;
|
sl@0
|
50 |
void Scroll(const TRect &aClipRect, const TPoint &aOffset,const TRect &aRect);
|
sl@0
|
51 |
|
sl@0
|
52 |
private:
|
sl@0
|
53 |
static CFbsBitGc *iBitGc;
|
sl@0
|
54 |
TBool iGcActive;
|
sl@0
|
55 |
CFbsBitmapDevice *iBitmapDevice;
|
sl@0
|
56 |
CFbsBitmap *iBitmap;
|
sl@0
|
57 |
TDisplayMode iDisplayMode;
|
sl@0
|
58 |
};
|
sl@0
|
59 |
|
sl@0
|
60 |
inline TDisplayMode CWsBackedUpWindow::DisplayMode() const
|
sl@0
|
61 |
{
|
sl@0
|
62 |
return iDisplayMode;
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
#endif
|