2015-07-09 20:39:06 +02:00
|
|
|
/* -*- 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 "Chart2PanelFactory.hxx"
|
|
|
|
|
|
|
|
#include <sfx2/sidebar/SidebarPanelBase.hxx>
|
|
|
|
#include <toolkit/helper/vclunohelper.hxx>
|
|
|
|
#include <vcl/window.hxx>
|
|
|
|
#include <com/sun/star/lang/WrappedTargetRuntimeException.hpp>
|
2018-05-24 15:47:30 +02:00
|
|
|
#include <cppuhelper/exc_hlp.hxx>
|
2015-07-09 20:39:06 +02:00
|
|
|
#include <comphelper/namedvaluecollection.hxx>
|
|
|
|
#include <cppuhelper/supportsservice.hxx>
|
|
|
|
|
2015-07-10 02:25:58 +02:00
|
|
|
#include "ChartElementsPanel.hxx"
|
2015-07-16 18:44:01 +02:00
|
|
|
#include "ChartSeriesPanel.hxx"
|
2017-10-23 22:44:16 +02:00
|
|
|
#include <ChartController.hxx>
|
2015-07-17 20:51:37 +02:00
|
|
|
#include "ChartAxisPanel.hxx"
|
2015-07-18 00:22:04 +02:00
|
|
|
#include "ChartErrorBarPanel.hxx"
|
2015-07-20 23:46:27 +02:00
|
|
|
#include "ChartAreaPanel.hxx"
|
2015-07-29 02:46:50 +02:00
|
|
|
#include "ChartLinePanel.hxx"
|
2015-07-10 02:25:58 +02:00
|
|
|
|
2015-07-09 20:39:06 +02:00
|
|
|
using namespace css::uno;
|
|
|
|
|
|
|
|
namespace chart { namespace sidebar {
|
|
|
|
|
|
|
|
ChartPanelFactory::ChartPanelFactory()
|
|
|
|
: PanelFactoryInterfaceBase(m_aMutex)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ChartPanelFactory::~ChartPanelFactory()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-07-15 13:01:40 +02:00
|
|
|
Reference<css::ui::XUIElement> SAL_CALL ChartPanelFactory::createUIElement (
|
2018-10-23 12:06:00 +02:00
|
|
|
const OUString& rsResourceURL,
|
2015-07-09 20:39:06 +02:00
|
|
|
const ::css::uno::Sequence<css::beans::PropertyValue>& rArguments)
|
|
|
|
{
|
2015-07-15 13:01:40 +02:00
|
|
|
Reference<css::ui::XUIElement> xElement;
|
2015-07-09 20:39:06 +02:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const ::comphelper::NamedValueCollection aArguments (rArguments);
|
2015-07-15 13:01:40 +02:00
|
|
|
Reference<css::frame::XFrame> xFrame (aArguments.getOrDefault("Frame", Reference<css::frame::XFrame>()));
|
|
|
|
Reference<css::awt::XWindow> xParentWindow (aArguments.getOrDefault("ParentWindow", Reference<css::awt::XWindow>()));
|
|
|
|
Reference<css::frame::XController> xController (aArguments.getOrDefault("Controller", Reference<css::frame::XController>()));
|
2015-07-09 20:39:06 +02:00
|
|
|
|
2016-11-10 12:53:02 +02:00
|
|
|
VclPtr<vcl::Window> pParentWindow = VCLUnoHelper::GetWindow(xParentWindow);
|
2015-11-10 10:11:17 +01:00
|
|
|
if ( ! xParentWindow.is() || pParentWindow==nullptr)
|
2015-07-09 20:39:06 +02:00
|
|
|
throw RuntimeException(
|
|
|
|
"PanelFactory::createUIElement called without ParentWindow",
|
2015-11-10 10:11:17 +01:00
|
|
|
nullptr);
|
2015-07-09 20:39:06 +02:00
|
|
|
if ( ! xFrame.is())
|
|
|
|
throw RuntimeException(
|
|
|
|
"PanelFactory::createUIElement called without Frame",
|
2015-11-10 10:11:17 +01:00
|
|
|
nullptr);
|
2015-07-15 13:01:40 +02:00
|
|
|
if (!xController.is())
|
|
|
|
throw RuntimeException(
|
|
|
|
"ChartPanelFactory::createUIElement called without Controller",
|
2015-11-10 10:11:17 +01:00
|
|
|
nullptr);
|
2015-07-15 13:01:40 +02:00
|
|
|
|
|
|
|
ChartController* pController = dynamic_cast<ChartController*>(xController.get());
|
|
|
|
if (!pController)
|
|
|
|
throw RuntimeException(
|
|
|
|
"ChartPanelFactory::createUIElement called without valid ChartController",
|
2015-11-10 10:11:17 +01:00
|
|
|
nullptr);
|
2015-07-09 20:39:06 +02:00
|
|
|
|
|
|
|
VclPtr<vcl::Window> pPanel;
|
2015-07-10 02:25:58 +02:00
|
|
|
if (rsResourceURL.endsWith("/ElementsPanel"))
|
2015-07-17 09:59:52 +02:00
|
|
|
pPanel = ChartElementsPanel::Create( pParentWindow, xFrame, pController );
|
2015-07-16 18:44:01 +02:00
|
|
|
else if (rsResourceURL.endsWith("/SeriesPanel"))
|
2015-07-17 09:59:52 +02:00
|
|
|
pPanel = ChartSeriesPanel::Create(pParentWindow, xFrame, pController);
|
2015-07-17 20:51:37 +02:00
|
|
|
else if (rsResourceURL.endsWith("/AxisPanel"))
|
|
|
|
pPanel = ChartAxisPanel::Create(pParentWindow, xFrame, pController);
|
2015-07-18 00:22:04 +02:00
|
|
|
else if (rsResourceURL.endsWith("/ErrorBarPanel"))
|
|
|
|
pPanel = ChartErrorBarPanel::Create(pParentWindow, xFrame, pController);
|
2015-07-20 23:46:27 +02:00
|
|
|
else if (rsResourceURL.endsWith("/AreaPanel"))
|
|
|
|
pPanel = ChartAreaPanel::Create(pParentWindow, xFrame, pController);
|
2015-07-29 02:46:50 +02:00
|
|
|
else if (rsResourceURL.endsWith("/LinePanel"))
|
|
|
|
pPanel = ChartLinePanel::Create(pParentWindow, xFrame, pController);
|
2015-07-09 20:39:06 +02:00
|
|
|
|
|
|
|
if (pPanel)
|
|
|
|
xElement = sfx2::sidebar::SidebarPanelBase::Create(
|
|
|
|
rsResourceURL,
|
|
|
|
xFrame,
|
|
|
|
pPanel,
|
2017-06-19 16:03:21 +02:00
|
|
|
css::ui::LayoutSize(-1,-1,-1));
|
2015-07-09 20:39:06 +02:00
|
|
|
}
|
2015-07-15 13:01:40 +02:00
|
|
|
catch (const css::uno::RuntimeException &)
|
2015-07-09 20:39:06 +02:00
|
|
|
{
|
|
|
|
throw;
|
|
|
|
}
|
2018-05-24 15:47:30 +02:00
|
|
|
catch (const css::uno::Exception&)
|
2015-07-09 20:39:06 +02:00
|
|
|
{
|
2018-05-24 15:47:30 +02:00
|
|
|
css::uno::Any anyEx = cppu::getCaughtException();
|
2015-07-15 13:01:40 +02:00
|
|
|
throw css::lang::WrappedTargetRuntimeException(
|
2017-01-27 16:09:54 +02:00
|
|
|
"ChartPanelFactory::createUIElement exception",
|
2018-05-24 15:47:30 +02:00
|
|
|
nullptr, anyEx );
|
2015-07-09 20:39:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return xElement;
|
|
|
|
}
|
|
|
|
|
|
|
|
OUString ChartPanelFactory::getImplementationName()
|
|
|
|
{
|
|
|
|
return OUString("org.libreoffice.comp.chart2.sidebar.ChartPanelFactory");
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Bool ChartPanelFactory::supportsService(OUString const & ServiceName)
|
|
|
|
{
|
|
|
|
return cppu::supportsService(this, ServiceName);
|
|
|
|
}
|
|
|
|
|
|
|
|
css::uno::Sequence<OUString> ChartPanelFactory::getSupportedServiceNames()
|
|
|
|
{
|
2016-08-05 11:49:02 +03:00
|
|
|
return { "com.sun.star.ui.UIElementFactory" };
|
2015-07-09 20:39:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} } // end of namespace chart::sidebar
|
|
|
|
|
2017-12-08 15:58:41 +02:00
|
|
|
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
|
2015-07-09 20:39:06 +02:00
|
|
|
org_libreoffice_comp_chart2_sidebar_ChartPanelFactory(css::uno::XComponentContext*, css::uno::Sequence<css::uno::Any> const &)
|
|
|
|
{
|
2015-07-12 21:28:45 +01:00
|
|
|
return cppu::acquire(new ::chart::sidebar::ChartPanelFactory());
|
2015-07-09 20:39:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|