webengine/osswebengine/WebKit/s60/webview/WebSurface.h
author Simon Howkins <simonh@symbian.org>
Mon, 15 Nov 2010 14:53:34 +0000
branchRCL_3
changeset 105 871af676edac
parent 94 919f36ff910f
permissions -rw-r--r--
Adjusted to avoid exports, etc, from a top-level bld.inf

/*
* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  Handles the viewing of a single frame. If the page is not frame
*                enabled, this class is used as the single view.  If frame
*                enabled, there is one instance of this class for each frame.
*
*/


#ifndef __WEBKITSURFACE_H__
#define __WEBKITSURFACE_H__

#include <browser_platform_variant.hrh>
#include <e32base.h>
#include <gdi.h>

//forward declarations
class CFbsBitmapDevice;
class CFbsBitmap;
class CBitmapContext;
class WebView;


const TDisplayMode KDisplayMode = EColor16MU;

class WebSurface : public CBase
{
public:
    static WebSurface* NewL( TDisplayMode mode = KDisplayMode );
	
	~WebSurface();
	
	void flip( const TPoint& pt, CBitmapContext& gc ) const;
	
	CFbsBitmap* offscreenBitmap() const				{ return m_offscreenbitmap;	}
	WebView* topView() const				        { return m_topview; }
	void setView(WebView* view)			{ m_topview = view; }
	TDisplayMode displayMode() const				{ return m_displaymode; }
	
private:
    WebSurface(TDisplayMode aMode);
	void ConstructL();	
			
private:
    CFbsBitmap*             m_offscreenbitmap;  	// owned
    TDisplayMode 			m_displaymode; 		// indicates the display mode that is used by the browser
    WebView*			    m_topview;
};

#endif //__WEBKITSURFACE_H__