summaryrefslogtreecommitdiff
path: root/inc/dpdimension.hxx
blob: a641437d614b69503ea297987542e48002195cfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#ifndef __DPDIMENSION_HXX__
#define __DPDIMENSION_HXX__

#include <cppuhelper/implbase3.hxx>

#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/container/XNamed.hpp>
#include <com/sun/star/sheet/XHierarchiesSupplier.hpp>

namespace dpsource {

class SourceProvider;

class DPDimension : public cppu::WeakImplHelper3<
                            ::com::sun::star::beans::XPropertySet,
                            ::com::sun::star::sheet::XHierarchiesSupplier,
                            ::com::sun::star::container::XNamed >
{
public:
    DPDimension(SourceProvider* pSrc);
    ~DPDimension();

    // XNamed

    ::rtl::OUString SAL_CALL getName() throw (::com::sun::star::uno::RuntimeException);

    void SAL_CALL setName(const ::rtl::OUString& aName) 
        throw (::com::sun::star::uno::RuntimeException);

    // XHierarchiesSupplier

    virtual ::com::sun::star::uno::Reference< 
        ::com::sun::star::container::XNameAccess > SAL_CALL 
            getHierarchies() throw (::com::sun::star::uno::RuntimeException);

    // XPropertySet

    virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > 
        SAL_CALL getPropertySetInfo() throw (::com::sun::star::uno::RuntimeException);

    virtual void SAL_CALL setPropertyValue(
        const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue)
            throw (::com::sun::star::beans::UnknownPropertyException, 
                   ::com::sun::star::beans::PropertyVetoException, 
                   ::com::sun::star::lang::IllegalArgumentException, 
                   ::com::sun::star::lang::WrappedTargetException, 
                   ::com::sun::star::uno::RuntimeException);

    virtual ::com::sun::star::uno::Any SAL_CALL 
        getPropertyValue(const ::rtl::OUString& aPropertyName)
            throw (::com::sun::star::beans::UnknownPropertyException, 
                   ::com::sun::star::lang::WrappedTargetException,
                   ::com::sun::star::uno::RuntimeException);

    virtual void SAL_CALL addPropertyChangeListener(
        const ::rtl::OUString& aPropertyName, 
        const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& xListener)
            throw (::com::sun::star::beans::UnknownPropertyException, 
                   ::com::sun::star::lang::WrappedTargetException, 
                   ::com::sun::star::uno::RuntimeException);

    virtual void SAL_CALL removePropertyChangeListener(
        const ::rtl::OUString& aPropertyName, 
        const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& aListener) 
            throw (::com::sun::star::beans::UnknownPropertyException, 
                   ::com::sun::star::lang::WrappedTargetException, 
                   ::com::sun::star::uno::RuntimeException);

    virtual void SAL_CALL addVetoableChangeListener(
        const ::rtl::OUString& PropertyName, 
        const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& aListener)
            throw (::com::sun::star::beans::UnknownPropertyException,
                   ::com::sun::star::lang::WrappedTargetException,
                   ::com::sun::star::uno::RuntimeException);

    virtual void SAL_CALL removeVetoableChangeListener(
        const ::rtl::OUString& PropertyName, 
        const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& aListener)
            throw (::com::sun::star::beans::UnknownPropertyException,
                   ::com::sun::star::lang::WrappedTargetException,
                   ::com::sun::star::uno::RuntimeException);

private:
    ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >
        mxHierarchies;
    ::rtl::OUString maName;
    SourceProvider* mpSource;
};

}

#endif