diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /svx/source/unodialogs/textconversiondlgs/chinese_translation_unodialog.cxx | |
parent | Initial commit. (diff) | |
download | libreoffice-upstream.tar.xz libreoffice-upstream.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'svx/source/unodialogs/textconversiondlgs/chinese_translation_unodialog.cxx')
-rw-r--r-- | svx/source/unodialogs/textconversiondlgs/chinese_translation_unodialog.cxx | 227 |
1 files changed, 227 insertions, 0 deletions
diff --git a/svx/source/unodialogs/textconversiondlgs/chinese_translation_unodialog.cxx b/svx/source/unodialogs/textconversiondlgs/chinese_translation_unodialog.cxx new file mode 100644 index 000000000..466a4efca --- /dev/null +++ b/svx/source/unodialogs/textconversiondlgs/chinese_translation_unodialog.cxx @@ -0,0 +1,227 @@ +/* -*- 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 . + */ + + +#include "chinese_translation_unodialog.hxx" +#include "chinese_translationdialog.hxx" +#include <vcl/svapp.hxx> +#include <cppuhelper/supportsservice.hxx> +#include <com/sun/star/beans/PropertyValue.hpp> +#include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp> + +namespace textconversiondlgs +{ +using namespace ::com::sun::star; + +ChineseTranslation_UnoDialog::ChineseTranslation_UnoDialog() + : m_bDisposed(false) + , m_bInDispose(false) +{ +} + +ChineseTranslation_UnoDialog::~ChineseTranslation_UnoDialog() +{ + SolarMutexGuard aSolarGuard; + impl_DeleteDialog(); +} + +void ChineseTranslation_UnoDialog::impl_DeleteDialog() +{ + if (m_xDialog) + { + m_xDialog->response(RET_CANCEL); + m_xDialog.reset(); + } +} + +// lang::XServiceInfo +OUString SAL_CALL ChineseTranslation_UnoDialog::getImplementationName() +{ + return "com.sun.star.comp.linguistic2.ChineseTranslationDialog"; +} + +sal_Bool SAL_CALL ChineseTranslation_UnoDialog::supportsService( const OUString& ServiceName ) +{ + return cppu::supportsService(this, ServiceName); +} + +uno::Sequence< OUString > SAL_CALL ChineseTranslation_UnoDialog::getSupportedServiceNames() +{ + return { "com.sun.star.linguistic2.ChineseTranslationDialog" }; +} + +// ui::dialogs::XExecutableDialog +void SAL_CALL ChineseTranslation_UnoDialog::setTitle( const OUString& ) +{ + //not implemented - fell free to do so, if you do need this +} + + +void SAL_CALL ChineseTranslation_UnoDialog::initialize( const uno::Sequence< uno::Any >& aArguments ) +{ + SolarMutexGuard aSolarGuard; + if( m_bDisposed || m_bInDispose ) + return; + + for(const uno::Any& rArgument : aArguments) + { + beans::PropertyValue aProperty; + if(rArgument >>= aProperty) + { + if( aProperty.Name == "ParentWindow" ) + { + aProperty.Value >>= m_xParentWindow; + } + } + } +} + +sal_Int16 SAL_CALL ChineseTranslation_UnoDialog::execute() +{ + sal_Int16 nRet = ui::dialogs::ExecutableDialogResults::CANCEL; + { + SolarMutexGuard aSolarGuard; + if (m_bDisposed || m_bInDispose) + return nRet; + if (!m_xDialog) + m_xDialog.reset(new ChineseTranslationDialog(Application::GetFrameWeld(m_xParentWindow))); + nRet = m_xDialog->run(); + if (nRet == RET_OK) + nRet=ui::dialogs::ExecutableDialogResults::OK; + } + return nRet; +} + +// lang::XComponent +void SAL_CALL ChineseTranslation_UnoDialog::dispose() +{ + lang::EventObject aEvt; + { + SolarMutexGuard aSolarGuard; + if( m_bDisposed || m_bInDispose ) + return; + m_bInDispose = true; + + impl_DeleteDialog(); + m_xParentWindow = nullptr; + m_bDisposed = true; + + aEvt.Source = static_cast< XComponent * >( this ); + } + std::unique_lock aGuard(m_aContainerMutex); + m_aDisposeEventListeners.disposeAndClear( aGuard, aEvt ); +} + +void SAL_CALL ChineseTranslation_UnoDialog::addEventListener( const uno::Reference< lang::XEventListener > & xListener ) +{ + SolarMutexGuard aSolarGuard; + if( m_bDisposed || m_bInDispose ) + return; + std::unique_lock aGuard(m_aContainerMutex); + m_aDisposeEventListeners.addInterface( aGuard, xListener ); +} + +void SAL_CALL ChineseTranslation_UnoDialog::removeEventListener( const uno::Reference< lang::XEventListener > & xListener ) +{ + SolarMutexGuard aSolarGuard; + if( m_bDisposed || m_bInDispose ) + return; + std::unique_lock aGuard(m_aContainerMutex); + m_aDisposeEventListeners.removeInterface( aGuard, xListener ); +} + + +// XPropertySet + +uno::Reference< beans::XPropertySetInfo > SAL_CALL ChineseTranslation_UnoDialog::getPropertySetInfo( ) +{ + return nullptr; +} + +void SAL_CALL ChineseTranslation_UnoDialog::setPropertyValue( const OUString&, const uno::Any& ) +{ + //only read only properties + throw beans::PropertyVetoException(); +} + +uno::Any SAL_CALL ChineseTranslation_UnoDialog::getPropertyValue( const OUString& rPropertyName ) +{ + uno::Any aRet; + + bool bDirectionToSimplified = true; + bool bTranslateCommonTerms = false; + + { + SolarMutexGuard aSolarGuard; + if (m_bDisposed || m_bInDispose || !m_xDialog) + return aRet; + m_xDialog->getSettings(bDirectionToSimplified, bTranslateCommonTerms); + } + + if( rPropertyName == "IsDirectionToSimplified" ) + { + aRet <<= bDirectionToSimplified; + } + else if( rPropertyName == "IsUseCharacterVariants" ) + { + aRet <<= false; + } + else if( rPropertyName == "IsTranslateCommonTerms" ) + { + aRet <<= bTranslateCommonTerms; + } + else + { + throw beans::UnknownPropertyException( rPropertyName, static_cast<cppu::OWeakObject*>(this)); + } + return aRet; + +} + +void SAL_CALL ChineseTranslation_UnoDialog::addPropertyChangeListener( const OUString& , const uno::Reference< beans::XPropertyChangeListener >& ) +{ + //only not bound properties -> ignore listener +} + +void SAL_CALL ChineseTranslation_UnoDialog::removePropertyChangeListener( const OUString& , const uno::Reference< beans::XPropertyChangeListener >& ) +{ + //only not bound properties -> ignore listener +} + +void SAL_CALL ChineseTranslation_UnoDialog::addVetoableChangeListener( const OUString& , const uno::Reference< beans::XVetoableChangeListener >& ) +{ + //only not bound properties -> ignore listener +} + +void SAL_CALL ChineseTranslation_UnoDialog::removeVetoableChangeListener( const OUString& , const uno::Reference< beans::XVetoableChangeListener >& ) +{ + //only not bound properties -> ignore listener +} + +} //end namespace + + +extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface* +svx_ChineseTranslation_UnoDialog_get_implementation( + css::uno::XComponentContext* , css::uno::Sequence<css::uno::Any> const&) +{ + return cppu::acquire(new textconversiondlgs::ChineseTranslation_UnoDialog()); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |