1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_EXTENSIONS_SOURCE_PROPCTRLR_XSDVALIDATIONPROPERTYHANDLER_HXX
21 #define INCLUDED_EXTENSIONS_SOURCE_PROPCTRLR_XSDVALIDATIONPROPERTYHANDLER_HXX
23 #include "propertyhandler.hxx"
32 class XSDValidationHelper
;
34 //= XSDValidationPropertyHandler
36 class XSDValidationPropertyHandler
;
37 typedef HandlerComponentBase
< XSDValidationPropertyHandler
> XSDValidationPropertyHandler_Base
;
38 class XSDValidationPropertyHandler
: public XSDValidationPropertyHandler_Base
41 std::unique_ptr
< XSDValidationHelper
> m_pHelper
;
44 explicit XSDValidationPropertyHandler(
45 const css::uno::Reference
< css::uno::XComponentContext
>& _rxContext
48 /// @throws css::uno::RuntimeException
49 static OUString
getImplementationName_static( );
50 /// @throws css::uno::RuntimeException
51 static css::uno::Sequence
< OUString
> getSupportedServiceNames_static( );
54 virtual ~XSDValidationPropertyHandler() override
;
57 // XPropertyHandler overriables
58 virtual css::uno::Any SAL_CALL
getPropertyValue( const OUString
& _rPropertyName
) override
;
59 virtual void SAL_CALL
setPropertyValue( const OUString
& _rPropertyName
, const css::uno::Any
& _rValue
) override
;
60 virtual css::uno::Sequence
< OUString
>
61 SAL_CALL
getSupersededProperties( ) override
;
62 virtual css::uno::Sequence
< OUString
>
63 SAL_CALL
getActuatingProperties( ) override
;
64 virtual css::inspection::LineDescriptor
65 SAL_CALL
describePropertyLine( const OUString
& _rPropertyName
, const css::uno::Reference
< css::inspection::XPropertyControlFactory
>& _rxControlFactory
) override
;
66 virtual css::inspection::InteractiveSelectionResult
67 SAL_CALL
onInteractivePropertySelection( const OUString
& _rPropertyName
, sal_Bool _bPrimary
, css::uno::Any
& _rData
, const css::uno::Reference
< css::inspection::XObjectInspectorUI
>& _rxInspectorUI
) override
;
68 virtual void SAL_CALL
actuatingPropertyChanged( const OUString
& _rActuatingPropertyName
, const css::uno::Any
& _rNewValue
, const css::uno::Any
& _rOldValue
, const css::uno::Reference
< css::inspection::XObjectInspectorUI
>& _rxInspectorUI
, sal_Bool
) override
;
69 virtual void SAL_CALL
addPropertyChangeListener( const css::uno::Reference
< css::beans::XPropertyChangeListener
>& _rxListener
) override
;
70 virtual void SAL_CALL
removePropertyChangeListener( const css::uno::Reference
< css::beans::XPropertyChangeListener
>& _rxListener
) override
;
72 // PropertyHandler overridables
73 virtual css::uno::Sequence
< css::beans::Property
>
74 doDescribeSupportedProperties() const override
;
75 virtual void onNewComponent() override
;
78 bool implPrepareRemoveCurrentDataType();
79 bool implDoRemoveCurrentDataType();
81 bool implPrepareCloneDataCurrentType( OUString
& _rNewName
);
82 void implDoCloneCurrentDataType( const OUString
& _rNewName
);
84 /** retrieves the names of the data types which our introspectee can be validated against
86 void implGetAvailableDataTypeNames( std::vector
< OUString
>& /* [out] */ _rNames
) const;
93 #endif // INCLUDED_EXTENSIONS_SOURCE_PROPCTRLR_XSDVALIDATIONPROPERTYHANDLER_HXX
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */