Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #include "WrappedDefaultProperty.hxx"
22 : #include "macros.hxx"
23 :
24 : using namespace ::com::sun::star;
25 :
26 : using ::com::sun::star::uno::Reference;
27 : using ::com::sun::star::uno::Sequence;
28 : using ::rtl::OUString;
29 :
30 : namespace chart
31 : {
32 :
33 0 : WrappedDefaultProperty::WrappedDefaultProperty(
34 : const OUString& rOuterName, const OUString& rInnerName,
35 : const uno::Any& rNewOuterDefault ) :
36 : WrappedProperty( rOuterName, rInnerName ),
37 0 : m_aOuterDefaultValue( rNewOuterDefault )
38 0 : {}
39 :
40 0 : WrappedDefaultProperty::~WrappedDefaultProperty()
41 0 : {}
42 :
43 0 : void WrappedDefaultProperty::setPropertyToDefault(
44 : const Reference< beans::XPropertyState >& xInnerPropertyState ) const
45 : throw (beans::UnknownPropertyException,
46 : uno::RuntimeException)
47 : {
48 0 : Reference< beans::XPropertySet > xInnerPropSet( xInnerPropertyState, uno::UNO_QUERY );
49 0 : if( xInnerPropSet.is())
50 0 : this->setPropertyValue( m_aOuterDefaultValue, xInnerPropSet );
51 0 : }
52 :
53 0 : uno::Any WrappedDefaultProperty::getPropertyDefault(
54 : const Reference< beans::XPropertyState >& /* xInnerPropertyState */ ) const
55 : throw (beans::UnknownPropertyException,
56 : lang::WrappedTargetException,
57 : uno::RuntimeException)
58 : {
59 0 : return m_aOuterDefaultValue;
60 : }
61 :
62 0 : beans::PropertyState WrappedDefaultProperty::getPropertyState(
63 : const Reference< beans::XPropertyState >& xInnerPropertyState ) const
64 : throw (beans::UnknownPropertyException,
65 : uno::RuntimeException)
66 : {
67 0 : beans::PropertyState aState = beans::PropertyState_DIRECT_VALUE;
68 : try
69 : {
70 0 : Reference< beans::XPropertySet > xInnerProp( xInnerPropertyState, uno::UNO_QUERY_THROW );
71 0 : uno::Any aValue = this->getPropertyValue( xInnerProp );
72 0 : if( m_aOuterDefaultValue == this->convertInnerToOuterValue( aValue ))
73 0 : aState = beans::PropertyState_DEFAULT_VALUE;
74 : }
75 0 : catch( const beans::UnknownPropertyException& ex )
76 : {
77 : ASSERT_EXCEPTION( ex );
78 : }
79 0 : return aState;
80 : }
81 :
82 : } // namespace chart
83 :
84 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|