2010-10-27 12:33:13 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-10-01 16:08:38 +01:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2007-07-09 10:56:41 +00:00
|
|
|
|
2014-04-18 18:54:04 +02:00
|
|
|
#ifndef INCLUDED_REPORTDESIGN_SOURCE_UI_INC_REPORTCOMPONENTHANDLER_HXX
|
|
|
|
#define INCLUDED_REPORTDESIGN_SOURCE_UI_INC_REPORTCOMPONENTHANDLER_HXX
|
2007-07-09 10:56:41 +00:00
|
|
|
|
2014-05-14 21:04:19 +02:00
|
|
|
#include <sal/config.h>
|
|
|
|
#include <com/sun/star/uno/XComponentContext.hpp>
|
2015-08-25 17:01:11 +09:00
|
|
|
#include <cppuhelper/compbase.hxx>
|
2014-05-14 21:04:19 +02:00
|
|
|
#include <cppuhelper/basemutex.hxx>
|
|
|
|
#include <com/sun/star/inspection/XPropertyHandler.hpp>
|
|
|
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
2007-07-09 10:56:41 +00:00
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
2014-02-25 19:49:46 +01:00
|
|
|
|
2007-07-09 10:56:41 +00:00
|
|
|
namespace rptui
|
|
|
|
{
|
2014-02-25 19:49:46 +01:00
|
|
|
|
2007-07-09 10:56:41 +00:00
|
|
|
|
|
|
|
class OPropertyInfoService;
|
|
|
|
|
2015-10-23 15:43:36 +02:00
|
|
|
typedef ::cppu::WeakComponentImplHelper< css::inspection::XPropertyHandler
|
|
|
|
, css::lang::XServiceInfo> ReportComponentHandler_Base;
|
2007-07-09 10:56:41 +00:00
|
|
|
|
|
|
|
class ReportComponentHandler:
|
|
|
|
private ::cppu::BaseMutex,
|
|
|
|
public ReportComponentHandler_Base
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// XServiceInfo - static versions
|
2017-01-19 17:54:38 +01:00
|
|
|
/// @throws css::uno::RuntimeException
|
2017-01-26 12:28:58 +01:00
|
|
|
static OUString getImplementationName_Static( );
|
2017-01-19 17:54:38 +01:00
|
|
|
/// @throws css::uno::RuntimeException
|
2017-01-26 12:28:58 +01:00
|
|
|
static css::uno::Sequence< OUString > getSupportedServiceNames_static( );
|
No need to keep these whitelisted functions decorated with SAL_CALL
The only effect SAL_CALL effectively has on LO-internal code is to change non-
static member functions from __thiscall to __cdecl in MSVC (where all other
functions are __cdecl by default, anyway). (For 3rd-party code, it could be
argued that SAL_CALL is useful on function declarations in the URE stable
interface other than non-static member functions, too, in case 3rd-party code
uses a compiler switch to change the default calling convention to something
other than __cdecl. But loplugin:salcall exempts the URE stable interface,
anyway.)
One could argue that SAL_CALL, even if today it effectively only affects non-
static member functions in MSVC, could be extended in the future to affect more
functions on more platforms. However, the current code would already not
support that. For example, 3af500580b1c82eabd60335c9ebc458a3f68850c
"loplugin:salcall fix functions" changed FrameControl_createInstance in
UnoControls/source/base/registercontrols.cxx to no longer be SAL_CALL, even
though its address (in ctl_component_getFacrory, in the same file) is passed to
cppuhelper::createSingleFactory as an argument of type
cppu::ComponentInstantiation, which is a pointer to SAL_CALL function.
Change-Id: I3acbf7314a3d7868ed70e35bb5c47bc11a0b7ff6
Reviewed-on: https://gerrit.libreoffice.org/46436
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2017-12-14 08:45:02 +01:00
|
|
|
static css::uno::Reference< css::uno::XInterface >
|
2015-10-23 15:43:36 +02:00
|
|
|
create(const css::uno::Reference< css::uno::XComponentContext >&);
|
2007-07-09 10:56:41 +00:00
|
|
|
|
|
|
|
public:
|
2015-10-23 15:43:36 +02:00
|
|
|
explicit ReportComponentHandler(css::uno::Reference< css::uno::XComponentContext > const & context);
|
2007-07-09 10:56:41 +00:00
|
|
|
|
|
|
|
// XServiceInfo
|
2017-01-26 12:28:58 +01:00
|
|
|
virtual OUString SAL_CALL getImplementationName( ) override;
|
|
|
|
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
|
|
|
|
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
|
2015-10-23 15:43:36 +02:00
|
|
|
|
|
|
|
// css::lang::XComponent:
|
2017-01-26 12:28:58 +01:00
|
|
|
virtual void SAL_CALL addEventListener(const css::uno::Reference< css::lang::XEventListener > & xListener) override;
|
|
|
|
virtual void SAL_CALL removeEventListener(const css::uno::Reference< css::lang::XEventListener > & aListener) override;
|
2015-10-23 15:43:36 +02:00
|
|
|
|
|
|
|
// css::inspection::XPropertyHandler:
|
2017-01-26 12:28:58 +01:00
|
|
|
virtual void SAL_CALL inspect(const css::uno::Reference< css::uno::XInterface > & Component) override;
|
|
|
|
virtual css::uno::Any SAL_CALL getPropertyValue(const OUString & PropertyName) override;
|
|
|
|
virtual void SAL_CALL setPropertyValue(const OUString & PropertyName, const css::uno::Any & Value) override;
|
|
|
|
virtual css::beans::PropertyState SAL_CALL getPropertyState(const OUString & PropertyName) override;
|
|
|
|
virtual css::inspection::LineDescriptor SAL_CALL describePropertyLine(const OUString& PropertyName, const css::uno::Reference< css::inspection::XPropertyControlFactory >& ControlFactory ) override;
|
|
|
|
virtual css::uno::Any SAL_CALL convertToPropertyValue(const OUString & PropertyName, const css::uno::Any & ControlValue) override;
|
|
|
|
virtual css::uno::Any SAL_CALL convertToControlValue(const OUString & PropertyName, const css::uno::Any & PropertyValue, const css::uno::Type & ControlValueType) override;
|
|
|
|
virtual void SAL_CALL addPropertyChangeListener(const css::uno::Reference< css::beans::XPropertyChangeListener > & Listener) override;
|
|
|
|
virtual void SAL_CALL removePropertyChangeListener(const css::uno::Reference< css::beans::XPropertyChangeListener > & _rxListener) override;
|
|
|
|
virtual css::uno::Sequence< css::beans::Property > SAL_CALL getSupportedProperties() override;
|
|
|
|
virtual css::uno::Sequence< OUString > SAL_CALL getSupersededProperties() override;
|
|
|
|
virtual css::uno::Sequence< OUString > SAL_CALL getActuatingProperties() override;
|
|
|
|
virtual sal_Bool SAL_CALL isComposable(const OUString & PropertyName) override;
|
|
|
|
virtual css::inspection::InteractiveSelectionResult SAL_CALL onInteractivePropertySelection(const OUString & PropertyName, sal_Bool Primary, css::uno::Any & out_Data, const css::uno::Reference< css::inspection::XObjectInspectorUI > & InspectorUI) override;
|
|
|
|
virtual void SAL_CALL actuatingPropertyChanged(const OUString & ActuatingPropertyName, const css::uno::Any & NewValue, const css::uno::Any & OldValue, const css::uno::Reference< css::inspection::XObjectInspectorUI > & InspectorUI, sal_Bool FirstTimeInit) override;
|
|
|
|
virtual sal_Bool SAL_CALL suspend(sal_Bool Suspend) override;
|
2007-07-09 10:56:41 +00:00
|
|
|
|
|
|
|
protected:
|
2016-09-13 13:09:01 +02:00
|
|
|
virtual ~ReportComponentHandler() override {}
|
2007-07-09 10:56:41 +00:00
|
|
|
private:
|
2018-11-01 09:48:16 +02:00
|
|
|
ReportComponentHandler(ReportComponentHandler const &) = delete;
|
|
|
|
void operator =(ReportComponentHandler const &) = delete;
|
2007-07-09 10:56:41 +00:00
|
|
|
|
|
|
|
|
2015-01-08 23:08:34 +01:00
|
|
|
// override WeakComponentImplHelperBase::disposing()
|
2007-07-09 10:56:41 +00:00
|
|
|
// This function is called upon disposing the component,
|
|
|
|
// if your component needs special work when it becomes
|
|
|
|
// disposed, do it here.
|
2015-10-12 16:04:04 +02:00
|
|
|
virtual void SAL_CALL disposing() override;
|
2007-07-09 10:56:41 +00:00
|
|
|
|
2015-10-23 15:43:36 +02:00
|
|
|
css::uno::Reference< css::uno::XComponentContext > m_xContext;
|
|
|
|
css::uno::Reference< css::inspection::XPropertyHandler > m_xFormComponentHandler; /// delegatee
|
|
|
|
css::uno::Reference< css::uno::XInterface > m_xFormComponent; /// inspectee
|
2007-07-09 10:56:41 +00:00
|
|
|
};
|
2014-02-25 19:49:46 +01:00
|
|
|
|
2007-07-09 10:56:41 +00:00
|
|
|
} // namespace rptui
|
2014-02-25 19:49:46 +01:00
|
|
|
|
2007-07-09 10:56:41 +00:00
|
|
|
|
2014-04-18 18:54:04 +02:00
|
|
|
#endif // INCLUDED_REPORTDESIGN_SOURCE_UI_INC_REPORTCOMPONENTHANDLER_HXX
|
2010-10-27 12:33:13 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|