cid#1607171 Data race condition
[LibreOffice.git] / framework / inc / classes / rootactiontriggercontainer.hxx
blobadfa01d59014034f3c631c50f1fcfcd0c664ceb3
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 <helper/propertysetcontainer.hxx>
23 #include <cppuhelper/compbase.hxx>
24 #include <com/sun/star/awt/XPopupMenu.hpp>
25 #include <com/sun/star/container/XNamed.hpp>
26 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
27 #include <com/sun/star/lang/XServiceInfo.hpp>
28 #include <com/sun/star/lang/XTypeProvider.hpp>
30 inline constexpr OUString IMPLEMENTATIONNAME_ROOTACTIONTRIGGERCONTAINER = u"com.sun.star.comp.ui.RootActionTriggerContainer"_ustr;
32 namespace framework
35 class RootActionTriggerContainer final : public cppu::ImplInheritanceHelper<PropertySetContainer,
36 css::lang::XMultiServiceFactory,
37 css::lang::XServiceInfo,
38 css::container::XNamed>
40 public:
41 RootActionTriggerContainer(css::uno::Reference<css::awt::XPopupMenu> xMenu, const OUString* pMenuIdentifier);
42 virtual ~RootActionTriggerContainer() override;
44 // XMultiServiceFactory
45 virtual css::uno::Reference< css::uno::XInterface > SAL_CALL createInstance( const OUString& aServiceSpecifier ) override;
46 virtual css::uno::Reference< css::uno::XInterface > SAL_CALL createInstanceWithArguments( const OUString& ServiceSpecifier, const css::uno::Sequence< css::uno::Any >& Arguments ) override;
47 virtual css::uno::Sequence< OUString > SAL_CALL getAvailableServiceNames() override;
49 // XIndexContainer
50 virtual void SAL_CALL insertByIndex( sal_Int32 Index, const css::uno::Any& Element ) override;
52 virtual void SAL_CALL removeByIndex( sal_Int32 Index ) override;
54 // XIndexReplace
55 virtual void SAL_CALL replaceByIndex( sal_Int32 Index, const css::uno::Any& Element ) override;
57 // XIndexAccess
58 virtual sal_Int32 SAL_CALL getCount() override;
60 virtual css::uno::Any SAL_CALL getByIndex( sal_Int32 Index ) override;
62 // XElementAccess
63 virtual css::uno::Type SAL_CALL getElementType() override;
65 virtual sal_Bool SAL_CALL hasElements() override;
67 // XServiceInfo
68 virtual OUString SAL_CALL getImplementationName( ) override;
69 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
70 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
72 // XNamed
73 virtual OUString SAL_CALL getName( ) override;
74 virtual void SAL_CALL setName( const OUString& aName ) override;
76 private:
77 void FillContainer();
79 bool m_bContainerCreated;
80 css::uno::Reference<css::awt::XPopupMenu> m_xMenu;
81 const OUString* m_pMenuIdentifier;
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */