1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/textrendering/texthandling/inc/CONPICS.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,152 @@
1.4 +/*
1.5 +* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#ifndef __CONPICS_H__
1.23 +#define __CONPICS_H__
1.24 +
1.25 +#include <e32std.h>
1.26 +#include <e32base.h>
1.27 +#include <s32stor.h>
1.28 +#include <gdi.h>
1.29 +#include <fldbltin.h>
1.30 +
1.31 +//
1.32 +// Classes declared in this file
1.33 +class CXzePicture;
1.34 +class CTestPicture;
1.35 +class CDummyField;
1.36 +
1.37 +/**
1.38 +@internalTechnology
1.39 +*/
1.40 +const TUid KUidXzePictureType={268435508};
1.41 +
1.42 +/**
1.43 +@internalComponent
1.44 +*/
1.45 +const TUid KUidXzeDoorType={268435509};
1.46 +
1.47 +/**
1.48 +@internalComponent
1.49 +*/
1.50 +const TInt KWidthInTwips=360;
1.51 +const TInt KHeightInTwips=360;
1.52 +
1.53 +class MDemPictureFactory : public MPictureFactory
1.54 +/**
1.55 +@internalComponent
1.56 +*/
1.57 + {
1.58 + // Instantiates new CDemPictureHeaders.
1.59 +public:
1.60 + IMPORT_C MDemPictureFactory(); // Force GCC to export vtable.
1.61 + IMPORT_C virtual void NewPictureL(TPictureHeader& aHeader,const CStreamStore& aDeferredPictureStore)const;
1.62 + };
1.63 +
1.64 +
1.65 +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1.66 +
1.67 +class CXzePicture : public CPicture
1.68 +/**
1.69 +@internalTechnology
1.70 +*/
1.71 + {
1.72 + // A simple test picture, that is store aware, and has state.
1.73 + //
1.74 +public:
1.75 + IMPORT_C static CXzePicture* NewL(TChar aLabel);
1.76 + IMPORT_C static CXzePicture* NewL(const CStreamStore& aStore,TStreamId aId);
1.77 + IMPORT_C virtual ~CXzePicture();
1.78 + //
1.79 + IMPORT_C void ExternalizeL(RWriteStream& aStream)const;
1.80 + IMPORT_C void InternalizeL(RReadStream& aStream);
1.81 + IMPORT_C void RestoreL(const CStreamStore& aStore,TStreamId aId);
1.82 + //
1.83 + IMPORT_C void GetOriginalSizeInTwips(TSize& aSize) const;
1.84 + //
1.85 + IMPORT_C virtual void Draw(CGraphicsContext& aGc,const TPoint& aTopLeft,const TRect& aClipRect,MGraphicsDeviceMap* aMap=NULL)const;
1.86 +protected:
1.87 + IMPORT_C CXzePicture(TChar aLabel);
1.88 + IMPORT_C CXzePicture();
1.89 +public:
1.90 + TSize iOriginalSizeInTwips;
1.91 + TChar iLabel; // Provides object state.
1.92 + };
1.93 +
1.94 +
1.95 +class CXzeDoor : public CXzePicture
1.96 +/**
1.97 +@internalComponent
1.98 +*/
1.99 + {
1.100 + // A sample door, that has emulates 2 states of presence. An iconic representation
1.101 + // and a deep representation.
1.102 + //
1.103 +public:
1.104 + IMPORT_C static CXzeDoor* NewL(TChar aLabel,TBool aAlwaysFailToDetach=EFalse);
1.105 + IMPORT_C static CXzeDoor* NewL(const CStreamStore& aStore,TStreamId aId);
1.106 + //
1.107 + IMPORT_C virtual void DetachFromStoreL(TDetach aDegree);
1.108 + //
1.109 + IMPORT_C void ExternalizeL(RWriteStream& aStream)const;
1.110 + IMPORT_C void InternalizeL(RReadStream& aStream);
1.111 + IMPORT_C void RestoreL(const CStreamStore& aStore,TStreamId aId);
1.112 +protected:
1.113 + IMPORT_C CXzeDoor(TChar aLabel,TBool aAlwaysFailToDetach);
1.114 + IMPORT_C CXzeDoor(TBool aAlwaysFailToDetach);
1.115 +public:
1.116 + TBool iAlwaysFailToDetach;
1.117 + };
1.118 +
1.119 +
1.120 +class CTestPicture : public CPicture
1.121 +/**
1.122 +@internalTechnology
1.123 +*/
1.124 + {
1.125 +public:
1.126 + IMPORT_C static CTestPicture* NewL();
1.127 + //
1.128 + IMPORT_C void ExternalizeL(RWriteStream& aStream)const;
1.129 + //
1.130 + IMPORT_C void GetOriginalSizeInTwips(TSize& aSize) const;
1.131 + //
1.132 + IMPORT_C virtual void Draw(CGraphicsContext& aGc,const TPoint& aTopLeft,const TRect& aClipRect,MGraphicsDeviceMap* aMap=NULL) const;
1.133 +protected:
1.134 + IMPORT_C CTestPicture();
1.135 +public:
1.136 + TSize iOriginalSizeInTwips;
1.137 + };
1.138 +
1.139 +///////////////////////////////////////////////////////////////////////
1.140 +
1.141 +
1.142 +class CDummyField : public CTextField
1.143 +/**
1.144 +@internalTechnology
1.145 +*/
1.146 + {
1.147 +public:
1.148 + IMPORT_C CDummyField();
1.149 + IMPORT_C virtual TInt Value(TPtr& aValueText); // value is always "XXX"
1.150 + IMPORT_C virtual void InternalizeL(RReadStream& aStream);
1.151 + IMPORT_C virtual void ExternalizeL(RWriteStream& aStream)const;
1.152 + IMPORT_C virtual TUid Type() const;
1.153 + };
1.154 +
1.155 +#endif