/* -*- 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 . */ #pragma once #include #include #include #include #include "ChartSidebarModifyListener.hxx" #include #include #include namespace com::sun::star::util { class XModifyListener; } namespace weld { class CustomWeld; } namespace chart { class ChartController; class Dim3DLookResourceGroup; class StackingResourceGroup; class SplineResourceGroup; class GeometryResourceGroup; class ChartTypeParameter; class SortByXValuesResourceGroup; namespace sidebar { class ChartTypePanel : public ResourceChangeListener, public PanelLayout, public ::sfx2::sidebar::IContextChangeReceiver, public sfx2::sidebar::SidebarModelUpdate, public ChartSidebarModifyListenerParent, public ChartTypeTemplateProvider { public: virtual void DataChanged(const DataChangedEvent& rEvent) override; virtual void HandleContextChange(const vcl::EnumContext& rContext) override; // constructor/destructor ChartTypePanel(weld::Widget* pParent, ::chart::ChartController* pController); virtual ~ChartTypePanel() override; virtual void updateData() override; virtual void modelInvalid() override; virtual void updateModel(css::uno::Reference xModel) override; virtual rtl::Reference<::chart::ChartTypeTemplate> getCurrentTemplate() const override; private: ChartTypeDialogController* getSelectedMainType(); void showAllControls(ChartTypeDialogController& rTypeController); void fillAllControls(const ChartTypeParameter& rParameter, bool bAlsoResetSubTypeList = true); ChartTypeParameter getCurrentParameter() const; virtual void stateChanged() override; void commitToModel(const ChartTypeParameter& rParameter); void selectMainType(); DECL_LINK(SelectMainTypeHdl, weld::ComboBox&, void); DECL_LINK(SelectSubTypeHdl, ValueSet*, void); vcl::EnumContext maContext; css::uno::Reference mxListener; bool mbModelValid; void Initialize(); void doUpdateModel(rtl::Reference<::chart::ChartModel> xModel); std::unique_ptr m_pDim3DLookResourceGroup; std::unique_ptr m_pStackingResourceGroup; std::unique_ptr m_pSplineResourceGroup; std::unique_ptr m_pGeometryResourceGroup; std::unique_ptr m_pSortByXValuesResourceGroup; rtl::Reference<::chart::ChartModel> m_xChartModel; std::vector> m_aChartTypeDialogControllerList; ChartTypeDialogController* m_pCurrentMainType; sal_Int32 m_nChangingCalls; TimerTriggeredControllerLock m_aTimerTriggeredControllerLock; std::unique_ptr m_xMainTypeList; std::unique_ptr m_xSubTypeList; std::unique_ptr m_xSubTypeListWin; }; } } // end of namespace ::chart::sidebar /* vim:set shiftwidth=4 softtabstop=4 expandtab: */