merge the formfield patch from ooo-build
[ooovba.git] / xmloff / inc / VisAreaExport.hxx
blob5acc5c7925f5a3df5ff8b48787bc382d5c00db68
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: VisAreaExport.hxx,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _XMLOFF_VISAREAEXPORT_HXX
32 #define _XMLOFF_VISAREAEXPORT_HXX
34 #include <vcl/mapunit.hxx>
35 #include <sal/types.h>
37 class SvXMLExport;
38 class Rectangle;
40 namespace com { namespace sun { namespace star { namespace awt {
41 struct Rectangle;
42 } } } }
44 class XMLVisAreaExport
46 public:
47 // the complete export is done in the constructor
48 XMLVisAreaExport(SvXMLExport& rExport, const sal_Char *pName,
49 const Rectangle& aRect, const MapUnit aMapUnit);
51 XMLVisAreaExport(SvXMLExport& rExport, const sal_Char *pName,
52 const com::sun::star::awt::Rectangle& aRect, const sal_Int16 nMeasureUnit );
54 ~XMLVisAreaExport();
57 #endif