46
|
1 |
/*
|
|
2 |
* Copyright (c) 2003 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description: SVG Implementation header file
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
#ifndef __INC_MSVGLOCATABLE__
|
|
21 |
#define __INC_MSVGLOCATABLE__
|
|
22 |
|
|
23 |
#if !defined(__E32BASE_H__)
|
|
24 |
#include <e32base.h>
|
|
25 |
#endif
|
|
26 |
|
|
27 |
|
|
28 |
#include "GfxAffineTransform.h"
|
|
29 |
#include "GfxRectangle2D.h"
|
|
30 |
|
|
31 |
|
|
32 |
/**
|
|
33 |
* Class description goes here.
|
|
34 |
*
|
|
35 |
* @lib SVGEngine.lib
|
|
36 |
* @since 1.0
|
|
37 |
*/
|
|
38 |
class MSvgLocatable
|
|
39 |
{
|
|
40 |
public:
|
|
41 |
|
|
42 |
/**
|
|
43 |
* Need method description
|
|
44 |
*
|
|
45 |
* @since 1.0
|
|
46 |
* @param
|
|
47 |
* @return
|
|
48 |
*/
|
|
49 |
virtual const TGfxAffineTransform& GetCTM() = 0;
|
|
50 |
|
|
51 |
/**
|
|
52 |
* Need method description
|
|
53 |
*
|
|
54 |
* @since 1.0
|
|
55 |
* @param
|
|
56 |
* @return
|
|
57 |
*/
|
|
58 |
virtual void SetCTM( TGfxAffineTransform& aTr ) = 0;
|
|
59 |
|
|
60 |
|
|
61 |
/**
|
|
62 |
* Need method description
|
|
63 |
*
|
|
64 |
* @since 1.0
|
|
65 |
* @param
|
|
66 |
* @return
|
|
67 |
*/
|
|
68 |
virtual void GetBBox( TGfxRectangle2D& aBbox ) = 0;
|
|
69 |
};
|
|
70 |
|
|
71 |
#endif /* __INC_MSVGLOCATABLE__ */
|