LibreOffice Module sc (master)
1
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
sc
inc
listenercalls.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 <vector>
23
#include <com/sun/star/uno/Reference.hxx>
24
#include <com/sun/star/lang/EventObject.hpp>
25
26
namespace
com::sun::star
{
27
namespace
util
{
28
class
XModifyListener;
29
}
30
}
31
32
struct
ScUnoListenerEntry
33
{
34
css::uno::Reference<
35
css::util::XModifyListener >
xListener
;
36
css::lang::EventObject
aEvent
;
37
38
ScUnoListenerEntry
(
const
css::uno::Reference< css::util::XModifyListener >& rL,
39
const
css::lang::EventObject& rE ) :
40
xListener( rL ),
41
aEvent( rE )
42
{}
43
};
44
48
class
ScUnoListenerCalls
49
{
50
private
:
51
::std::vector<ScUnoListenerEntry>
aEntries
;
52
53
public
:
54
ScUnoListenerCalls
();
55
~ScUnoListenerCalls
();
56
57
void
Add
(
const
css::uno::Reference< css::util::XModifyListener >& rListener,
58
const
css::lang::EventObject& rEvent );
59
void
ExecuteAndClear
();
60
};
61
62
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
util
exports com.sun.star.lib. util
com::sun::star
ScUnoListenerCalls
ScUnoListenerCalls stores notifications to XModifyListener that can't be processed during BroadcastUn...
Definition:
listenercalls.hxx:48
ScUnoListenerCalls::Add
void Add(const css::uno::Reference< css::util::XModifyListener > &rListener, const css::lang::EventObject &rEvent)
Definition:
listenercalls.cxx:34
ScUnoListenerCalls::ScUnoListenerCalls
ScUnoListenerCalls()
Definition:
listenercalls.cxx:27
ScUnoListenerCalls::~ScUnoListenerCalls
~ScUnoListenerCalls()
Definition:
listenercalls.cxx:29
ScUnoListenerEntry::aEvent
css::lang::EventObject aEvent
Definition:
listenercalls.hxx:36
ScUnoListenerCalls::ExecuteAndClear
void ExecuteAndClear()
Definition:
listenercalls.cxx:41
ScUnoListenerEntry
Definition:
listenercalls.hxx:32
ScUnoListenerEntry::xListener
css::uno::Reference< css::util::XModifyListener > xListener
Definition:
listenercalls.hxx:35
ScUnoListenerCalls::aEntries
::std::vector< ScUnoListenerEntry > aEntries
Definition:
listenercalls.hxx:51
ScUnoListenerEntry::ScUnoListenerEntry
ScUnoListenerEntry(const css::uno::Reference< css::util::XModifyListener > &rL, const css::lang::EventObject &rE)
Definition:
listenercalls.hxx:38
Generated on Tue May 10 2022 11:50:24 for LibreOffice Module sc (master) by
1.8.10