/* -*- 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 . */ #ifndef INCLUDED_SVL_SOURCE_NUMBERS_NUMFMUNO_HXX #define INCLUDED_SVL_SOURCE_NUMBERS_NUMFMUNO_HXX #include #include #include #include #include #include #include #include #include class SvNumberFormatsSupplierObj; /** * SvNumberFormatterServiceObj is registered globally as a Service */ class SvNumberFormatterServiceObj : public cppu::WeakImplHelper< css::util::XNumberFormatter2, css::lang::XServiceInfo> { private: ::rtl::Reference< SvNumberFormatsSupplierObj > xSupplier; mutable ::comphelper::SharedMutex m_aMutex; public: SvNumberFormatterServiceObj(); virtual ~SvNumberFormatterServiceObj() override; // XNumberFormatter virtual void SAL_CALL attachNumberFormatsSupplier( const css::uno::Reference< css::util::XNumberFormatsSupplier >& xSupplier ) override; virtual css::uno::Reference< css::util::XNumberFormatsSupplier > SAL_CALL getNumberFormatsSupplier() override; virtual sal_Int32 SAL_CALL detectNumberFormat( sal_Int32 nKey, const OUString& aString ) override; virtual double SAL_CALL convertStringToNumber( sal_Int32 nKey, const OUString& aString ) override; virtual OUString SAL_CALL convertNumberToString( sal_Int32 nKey, double fValue ) override; virtual sal_Int32 SAL_CALL queryColorForNumber( sal_Int32 nKey, double fValue, sal_Int32 aDefaultColor ) override; virtual OUString SAL_CALL formatString( sal_Int32 nKey, const OUString& aString ) override; virtual sal_Int32 SAL_CALL queryColorForString( sal_Int32 nKey, const OUString& aString, sal_Int32 aDefaultColor ) override; virtual OUString SAL_CALL getInputString( sal_Int32 nKey, double fValue ) override; // XNumberFormatPreviewer virtual OUString SAL_CALL convertNumberToPreviewString( const OUString& aFormat, double fValue, const css::lang::Locale& nLocale, sal_Bool bAllowEnglish ) override; virtual sal_Int32 SAL_CALL queryPreviewColorForNumber( const OUString& aFormat, double fValue, const css::lang::Locale& nLocale, sal_Bool bAllowEnglish, sal_Int32 aDefaultColor ) override; // XServiceInfo 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; }; class SvNumberFormatsObj : public cppu::WeakImplHelper< css::util::XNumberFormats, css::util::XNumberFormatTypes, css::lang::XServiceInfo> { private: rtl::Reference m_xSupplier; mutable ::comphelper::SharedMutex m_aMutex; public: SvNumberFormatsObj(SvNumberFormatsSupplierObj& pParent, ::comphelper::SharedMutex _aMutex); virtual ~SvNumberFormatsObj() override; // XNumberFormats virtual css::uno::Reference< css::beans::XPropertySet > SAL_CALL getByKey( sal_Int32 nKey ) override; virtual css::uno::Sequence< sal_Int32 > SAL_CALL queryKeys( sal_Int16 nType, const css::lang::Locale& nLocale, sal_Bool bCreate ) override; virtual sal_Int32 SAL_CALL queryKey( const OUString& aFormat, const css::lang::Locale& nLocale, sal_Bool bScan ) override; virtual sal_Int32 SAL_CALL addNew( const OUString& aFormat, const css::lang::Locale& nLocale ) override; virtual sal_Int32 SAL_CALL addNewConverted( const OUString& aFormat, const css::lang::Locale& nLocale, const css::lang::Locale& nNewLocale ) override; virtual void SAL_CALL removeByKey( sal_Int32 nKey ) override; virtual OUString SAL_CALL generateFormat( sal_Int32 nBaseKey, const css::lang::Locale& nLocale, sal_Bool bThousands, sal_Bool bRed, sal_Int16 nDecimals, sal_Int16 nLeading ) override; // XNumberFormatTypes virtual sal_Int32 SAL_CALL getStandardIndex( const css::lang::Locale& nLocale ) override; virtual sal_Int32 SAL_CALL getStandardFormat( sal_Int16 nType, const css::lang::Locale& nLocale ) override; virtual sal_Int32 SAL_CALL getFormatIndex( sal_Int16 nIndex, const css::lang::Locale& nLocale ) override; virtual sal_Bool SAL_CALL isTypeCompatible( sal_Int16 nOldType, sal_Int16 nNewType ) override; virtual sal_Int32 SAL_CALL getFormatForLocale( sal_Int32 nKey, const css::lang::Locale& nLocale ) override; // XServiceInfo 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; }; class SvNumberFormatObj : public cppu::WeakImplHelper< css::beans::XPropertySet, css::beans::XPropertyAccess, css::lang::XServiceInfo> { private: rtl::Reference m_xSupplier; sal_uLong nKey; mutable ::comphelper::SharedMutex m_aMutex; public: SvNumberFormatObj( SvNumberFormatsSupplierObj& rParent, sal_uLong nK, ::comphelper::SharedMutex _aMutex ); virtual ~SvNumberFormatObj() override; // XPropertySet virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) override; virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) override; virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override; virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override; virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override; virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override; virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override; // XPropertyAccess virtual css::uno::Sequence< css::beans::PropertyValue > SAL_CALL getPropertyValues() override; virtual void SAL_CALL setPropertyValues( const css::uno::Sequence< css::beans::PropertyValue >& aProps ) override; // XServiceInfo 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; }; class SvNumberFormatSettingsObj : public cppu::WeakImplHelper< css::beans::XPropertySet, css::lang::XServiceInfo> { private: rtl::Reference m_xSupplier; mutable ::comphelper::SharedMutex m_aMutex; public: SvNumberFormatSettingsObj( SvNumberFormatsSupplierObj& rParent, ::comphelper::SharedMutex _aMutex); virtual ~SvNumberFormatSettingsObj() override; // XPropertySet virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) override; virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) override; virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override; virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override; virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override; virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override; virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override; // XServiceInfo 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; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ing2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-03-23tdf#124176 Use pragma once in s*Vincent LE GARREC
2020-08-21Fix typosAndrea Gelmini
2020-05-29Related: tdf#131423 CHOOSE() supports only 30 jump targets, limit in dialogEike Rathke
2020-03-12Revert "loplugin:constfields in sc"Noel Grandin
2020-03-09improve loplugin:unusedfieldsNoel Grandin
2020-02-21Drop o3tl::optional wrapperStephan Bergmann
2019-12-01Introduce o3tl::optional as an alias for std::optionalStephan Bergmann
2019-11-01loplugin:finalclasses in sc/incNoel Grandin
2018-11-09loplugin:singlevalfields in scNoel Grandin
2018-10-15loplugin:constfields in scNoel Grandin
2018-06-26loplugin:useuniqueptr in ScFuncDescNoel Grandin
2018-05-21loplugin:unusedfields in scNoel Grandin
2018-05-18tdf#42949 Fix IWYU warnings in sc/inc/f*Gabor Kelemen
2018-01-29Fix typosAndrea Gelmini
2017-08-25loplugin:useuniqueptr in scNoel Grandin
2017-07-21migrate to boost::gettextCaolán McNamara
2017-03-29loplugin:singlevalfieldsNoel Grandin
2017-02-17move formula description extra data out of .srcCaolán McNamara
2017-02-03TyposJulien Nabet
2016-01-09prepare for hidden flag in function description for Function WizardEike Rathke
2015-12-17handle varargs with first required and subsequent optional, tdf#71459 relatedEike Rathke
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
2015-08-05loplugin:unusedmethodsNoel Grandin
2015-07-30loplugin:unusedmethodsNoel Grandin
2015-07-21loplugin:unusedmethods formulaNoel Grandin
2015-06-11Resolves: tdf#89643 report builder function wizard segfaultsCaolán McNamara
2014-04-19fixincludeguards.sh: scThomas Arnhold
2014-04-14typo: postion -> positionThomas Arnhold
2014-04-06whitespace cleanup in scMarkus Mohrhard
2014-03-27Second batch of adding SAL_OVERRIDE to overriding function declarationsStephan Bergmann
2014-02-03xub_StrLen and tools/string.hxx final strawNorbert Thiebaud
2013-12-12Convert OUString** to std::vector<OUString> in ScFuncDescNoel Grandin
2013-12-03convert getSuppressedArgumentCount from xub_StrLen -> sal_Int32Noel Grandin