merged tag ooo/OOO330_m14
[LibreOffice.git] / chart2 / source / model / main / LayoutContainer.hxx
blobea645dcff53687c68f15d9a241878c6b4279f1c0
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
27 #ifndef CHART_LAYOUTCONTAINER_HXX
28 #define CHART_LAYOUTCONTAINER_HXX
30 #include <cppuhelper/implbase2.hxx>
31 #include <com/sun/star/lang/XServiceInfo.hpp>
32 #include <com/sun/star/layout/XLayoutContainer.hpp>
34 #include "ServiceMacros.hxx"
36 #include <vector>
37 #include <map>
39 namespace chart
42 class LayoutContainer : public
43 ::cppu::WeakImplHelper2<
44 ::com::sun::star::lang::XServiceInfo,
45 ::com::sun::star::layout::XLayoutContainer >
47 public:
48 LayoutContainer();
49 virtual ~LayoutContainer();
51 /// XServiceInfo declarations
52 APPHELPER_XSERVICEINFO_DECL()
54 protected:
55 // ____ XLayoutContainer ____
56 virtual void SAL_CALL addConstrainedElementByIdentifier( const ::rtl::OUString& aIdentifier, const ::com::sun::star::layout::Constraint& Constraint )
57 throw (::com::sun::star::layout::IllegalConstraintException,
58 ::com::sun::star::lang::IllegalArgumentException,
59 ::com::sun::star::uno::RuntimeException);
60 virtual void SAL_CALL addElementByIdentifier( const ::rtl::OUString& aIdentifier )
61 throw (::com::sun::star::lang::IllegalArgumentException,
62 ::com::sun::star::uno::RuntimeException);
63 virtual void SAL_CALL removeElementByIdentifier( const ::rtl::OUString& aIdentifier )
64 throw (::com::sun::star::container::NoSuchElementException,
65 ::com::sun::star::uno::RuntimeException);
66 virtual void SAL_CALL setConstraintByIdentifier( const ::rtl::OUString& aIdentifier, const ::com::sun::star::layout::Constraint& Constraint )
67 throw (::com::sun::star::container::NoSuchElementException,
68 ::com::sun::star::uno::RuntimeException);
69 virtual ::com::sun::star::layout::Constraint SAL_CALL getConstraintByIdentifier( const ::rtl::OUString& aIdentifier )
70 throw (::com::sun::star::container::NoSuchElementException,
71 ::com::sun::star::uno::RuntimeException);
72 virtual ::com::sun::star::uno::Sequence<
73 ::rtl::OUString > SAL_CALL getElementIdentifiers()
74 throw (::com::sun::star::uno::RuntimeException);
76 private:
77 typedef ::std::vector< ::rtl::OUString > tLayoutElements;
79 typedef ::std::map<
80 ::rtl::OUString,
81 ::com::sun::star::layout::Constraint > tConstraintsMap;
83 tLayoutElements m_aLayoutElements;
84 tConstraintsMap m_aConstraints;
87 } // namespace chart
89 // CHART_LAYOUTCONTAINER_HXX
90 #endif