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 .
22 #include "propertyhandler.hxx"
28 /** a property handler for any virtual string properties
30 class ButtonNavigationHandler
: public PropertyHandlerComponent
33 css::uno::Reference
< css::inspection::XPropertyHandler
>
37 explicit ButtonNavigationHandler(
38 const css::uno::Reference
< css::uno::XComponentContext
>& _rxContext
42 virtual ~ButtonNavigationHandler() override
;
44 static bool isNavigationCapableButton( const css::uno::Reference
< css::beans::XPropertySet
>& _rxComponent
);
48 virtual OUString SAL_CALL
getImplementationName() override
;
49 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames () override
;
51 // XPropertyHandler overriables
52 virtual void SAL_CALL
inspect( const css::uno::Reference
< css::uno::XInterface
>& _rxIntrospectee
) override
;
53 virtual css::uno::Any SAL_CALL
getPropertyValue( const OUString
& _rPropertyName
) override
;
54 virtual void SAL_CALL
setPropertyValue( const OUString
& _rPropertyName
, const css::uno::Any
& _rValue
) override
;
55 virtual css::beans::PropertyState SAL_CALL
getPropertyState( const OUString
& _rPropertyName
) override
;
56 virtual css::uno::Sequence
< OUString
> SAL_CALL
getActuatingProperties( ) override
;
57 virtual css::inspection::InteractiveSelectionResult
58 SAL_CALL
onInteractivePropertySelection( const OUString
& _rPropertyName
, sal_Bool _bPrimary
, css::uno::Any
& _rData
, const css::uno::Reference
< css::inspection::XObjectInspectorUI
>& _rxInspectorUI
) override
;
59 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 _bFirstTimeInit
) override
;
60 virtual css::inspection::LineDescriptor SAL_CALL
describePropertyLine( const OUString
& _rPropertyName
, const css::uno::Reference
< css::inspection::XPropertyControlFactory
>& _rxControlFactory
) override
;
62 // PropertyHandler overridables
63 virtual css::uno::Sequence
< css::beans::Property
>
64 doDescribeSupportedProperties() const override
;
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */