/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
/* The class utl::detail::Options provides a kind of multiplexer. It implements a ConfigurationListener that is usually registered at a ConfigItem class. At the same time it implements a ConfigurationBroadcaster that allows further ("external") listeners to register. Once the class deriving from Options is notified about configuration changes by the ConfigItem if its content has been changed by calling some of its methods, a call of the Options::NotifyListeners() method will send out notifications to all external listeners.
*/
namespace utl {
class ConfigurationBroadcaster;
// interface for configuration listener class UNOTOOLS_DLLPUBLIC ConfigurationListener
{ public: virtual ~ConfigurationListener();
// complete broadcasting implementation class UNOTOOLS_DLLPUBLIC ConfigurationBroadcaster
{
std::unique_ptr<IMPL_ConfigurationListenerList> mpList;
sal_Int32 m_nBroadcastBlocked; // broadcast only if this is 0
ConfigurationHints m_nBlockedHint;
// notify listeners; nHint is an implementation detail of the particular class deriving from ConfigurationBroadcaster void NotifyListeners( ConfigurationHints nHint );
ConfigurationBroadcaster();
ConfigurationBroadcaster(ConfigurationBroadcaster const & ); virtual ~ConfigurationBroadcaster();
ConfigurationBroadcaster & operator =(ConfigurationBroadcaster const & other); virtualvoid BlockBroadcasts( bool bBlock );
};
namespace detail {
// A base class for the various option classes supported by // unotools/source/config/itemholderbase.hxx (which must be public, as it is // shared between unotools, svl and svt) // It also provides an implementation for a Configuration Listener and inherits a broadcaster implementation
class SAL_WARN_UNUSED UNOTOOLS_DLLPUBLIC Options
: public utl::ConfigurationBroadcaster, public utl::ConfigurationListener
{ public:
Options();
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.