LibreOffice Module dbaccess (master) 1
documentevents.hxx
Go to the documentation of this file.
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#pragma once
21
22#include <com/sun/star/container/XNameReplace.hpp>
23#include <com/sun/star/beans/PropertyValue.hpp>
24
26
27#include <map>
28
29namespace dbaccess
30{
31
32 typedef std::map< OUString, css::uno::Sequence< css::beans::PropertyValue > >
34
35 typedef ::cppu::WeakImplHelper< css::container::XNameReplace
37
39 {
40 public:
41 DocumentEvents( ::cppu::OWeakObject& _rParent, ::osl::Mutex& _rMutex, DocumentEventsData& _rEventsData );
42 virtual ~DocumentEvents() override;
43
45 const DocumentEvents& operator=(const DocumentEvents&) = delete;
46
47 static bool needsSynchronousNotification( std::u16string_view _rEventName );
48
49 // XInterface
50 virtual void SAL_CALL acquire() noexcept override;
51 virtual void SAL_CALL release() noexcept override;
52
53 // XNameReplace
54 virtual void SAL_CALL replaceByName( const OUString& aName, const css::uno::Any& aElement ) override;
55
56 // XNameAccess
57 virtual css::uno::Any SAL_CALL getByName( const OUString& aName ) override;
58 virtual css::uno::Sequence< OUString > SAL_CALL getElementNames( ) override;
59 virtual sal_Bool SAL_CALL hasByName( const OUString& aName ) override;
60
61 // XElementAccess
62 virtual css::uno::Type SAL_CALL getElementType( ) override;
63 virtual sal_Bool SAL_CALL hasElements( ) override;
64
65 private:
66 ::cppu::OWeakObject& mrParent;
67 ::osl::Mutex& mrMutex;
69 };
70
71} // namespace dbaccess
72
73/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
static bool needsSynchronousNotification(std::u16string_view _rEventName)
virtual sal_Bool SAL_CALL hasElements() override
virtual void SAL_CALL acquire() noexcept override
virtual css::uno::Sequence< OUString > SAL_CALL getElementNames() override
virtual void SAL_CALL release() noexcept override
DocumentEvents(const DocumentEvents &)=delete
virtual sal_Bool SAL_CALL hasByName(const OUString &aName) override
DocumentEventsData & mrEventsData
::cppu::OWeakObject & mrParent
virtual css::uno::Any SAL_CALL getByName(const OUString &aName) override
virtual ~DocumentEvents() override
virtual css::uno::Type SAL_CALL getElementType() override
const DocumentEvents & operator=(const DocumentEvents &)=delete
virtual void SAL_CALL replaceByName(const OUString &aName, const css::uno::Any &aElement) override
DocumentEvents(::cppu::OWeakObject &_rParent, ::osl::Mutex &_rMutex, DocumentEventsData &_rEventsData)
Type
std::map< OUString, css::uno::Sequence< css::beans::PropertyValue > > DocumentEventsData
::cppu::WeakImplHelper< css::container::XNameReplace > DocumentEvents_Base
unsigned char sal_Bool