/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ /* * 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 #include #include #include #include #include #include StylesPreviewToolBoxControl::StylesPreviewToolBoxControl() {} StylesPreviewToolBoxControl::~StylesPreviewToolBoxControl() {} void SAL_CALL StylesPreviewToolBoxControl::initialize(const css::uno::Sequence& rArguments) { svt::ToolboxController::initialize(rArguments); if (m_xFrame.is()) { InitializeStyles(m_xFrame->getController()->getModel()); m_xDispatchProvider = css::uno::Reference( m_xFrame->getController(), css::uno::UNO_QUERY); } } void SAL_CALL StylesPreviewToolBoxControl::dispose() { svt::ToolboxController::dispose(); SolarMutexGuard aSolarMutexGuard; m_xVclBox.disposeAndClear(); m_xWeldBox.reset(); } void StylesPreviewToolBoxControl::InitializeStyles( const css::uno::Reference& xModel) { m_aDefaultStyles.clear(); //now convert the default style names to the localized names try { css::uno::Reference xStylesSupplier( xModel, css::uno::UNO_QUERY_THROW); css::uno::Reference xServices(xModel, css::uno::UNO_QUERY_THROW); if (xServices->supportsService("com.sun.star.text.TextDocument")) { css::uno::Reference xParaStyles; xStylesSupplier->getStyleFamilies()->getByName("ParagraphStyles") >>= xParaStyles; static const std::vector aWriterStyles = { "Standard", "Text body", "Heading 1", "Heading 2", "Heading 3", "Heading 4", "Title", "Subtitle", "Quotations", "Preformatted Text" }; for (const OUString& aStyle : aWriterStyles) { try { css::uno::Reference xStyle; xParaStyles->getByName(aStyle) >>= xStyle; OUString sName; xStyle->getPropertyValue("DisplayName") >>= sName; if (!sName.isEmpty()) m_aDefaultStyles.push_back(std::pair(aStyle, sName)); } catch (const css::container::NoSuchElementException&) { } catch (const css::uno::Exception&) { } } } else if (xServices->supportsService("com.sun.star.sheet.SpreadsheetDocument")) { static const char* aCalcStyles[] = { "Default", "Accent 1", "Accent 2", "Accent 3", "Heading 1", "Heading 2", "Result" }; css::uno::Reference xCellStyles; xStylesSupplier->getStyleFamilies()->getByName("CellStyles") >>= xCellStyles; for (const char* pCalcStyle : aCalcStyles) { try { const OUString sStyleName(OUString::createFromAscii(pCalcStyle)); if (xCellStyles->hasByName(sStyleName)) { css::uno::Reference xStyle( xCellStyles->getByName(sStyleName), css::uno::UNO_QUERY_THROW); OUString sName; xStyle->getPropertyValue("DisplayName") >>= sName; if (!sName.isEmpty()) { m_aDefaultStyles.push_back( std::pair(sStyleName, sName)); } } } catch (const css::uno::Exception&) { } } } } catch (const css::uno::Exception&) { OSL_FAIL("error while initializing style names"); } } void SAL_CALL StylesPreviewToolBoxControl::update() {} void StylesPreviewToolBoxControl::statusChanged(const css::frame::FeatureStateEvent& /*rEvent*/) {} css::uno::Reference StylesPreviewToolBoxControl::createItemWindow(const css::uno::Reference& rParent) { css::uno::Reference xItemWindow; /* TODO if (m_pBuilder) { SolarMutexGuard aSolarMutexGuard; std::unique_ptr xWidget(*m_pBuilder); xItemWindow = css::uno::Reference(new weld::TransportAsXWindow(xWidget.get())); m_xWeldBox.reset(new StylesPreviewWindow_Base(std::move(xWidget))); m_pBox = m_xWeldBox.get(); } else */ { VclPtr pParent = VCLUnoHelper::GetWindow(rParent); if (pParent) { SolarMutexGuard aSolarMutexGuard; m_xVclBox = VclPtr::Create( pParent, std::vector(m_aDefaultStyles), m_xDispatchProvider); xItemWindow = VCLUnoHelper::GetInterface(m_xVclBox); } } return xItemWindow; } OUString StylesPreviewToolBoxControl::getImplementationName() { return "com.sun.star.comp.svx.StylesPreviewToolBoxControl"; } sal_Bool StylesPreviewToolBoxControl::supportsService(const OUString& rServiceName) { return cppu::supportsService(this, rServiceName); } css::uno::Sequence StylesPreviewToolBoxControl::getSupportedServiceNames() { return { "com.sun.star.frame.ToolbarController" }; } extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface* com_sun_star_comp_svx_StylesPreviewToolBoxControl_get_implementation( css::uno::XComponentContext*, css::uno::Sequence const&) { return cppu::acquire(new StylesPreviewToolBoxControl()); } /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */