use insert function instead of for loop
[LibreOffice.git] / extensions / source / propctrlr / buttonnavigationhandler.hxx
blobc5e01e1df2936332ce6cf3a5d9f40b7599a26a56
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 #pragma once
22 #include "propertyhandler.hxx"
25 namespace pcr
28 /** a property handler for any virtual string properties
30 class ButtonNavigationHandler : public PropertyHandlerComponent
32 private:
33 css::uno::Reference< css::inspection::XPropertyHandler >
34 m_xSlaveHandler;
36 public:
37 explicit ButtonNavigationHandler(
38 const css::uno::Reference< css::uno::XComponentContext >& _rxContext
41 protected:
42 virtual ~ButtonNavigationHandler() override;
44 static bool isNavigationCapableButton( const css::uno::Reference< css::beans::XPropertySet >& _rxComponent );
46 protected:
47 // XServiceInfo
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;
68 } // namespace pcr
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */