2010-10-27 12:43:08 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-21 14:30:25 +01:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2013-10-23 22:48:59 +02:00
|
|
|
#ifndef INCLUDED_CHART2_SOURCE_CONTROLLER_DIALOGS_TP_DATASOURCECONTROLS_HXX
|
|
|
|
#define INCLUDED_CHART2_SOURCE_CONTROLLER_DIALOGS_TP_DATASOURCECONTROLS_HXX
|
2007-05-22 16:45:40 +00:00
|
|
|
|
|
|
|
#include <com/sun/star/chart2/XChartType.hpp>
|
|
|
|
#include <com/sun/star/chart2/XDataSeries.hpp>
|
|
|
|
#include <com/sun/star/chart2/data/XLabeledDataSequence.hpp>
|
|
|
|
|
|
|
|
#include <svtools/svtabbx.hxx>
|
2012-10-11 16:13:12 -04:00
|
|
|
#include <svtools/treelistbox.hxx>
|
2012-11-16 16:14:53 -05:00
|
|
|
#include "svtools/treelistentry.hxx"
|
2007-05-22 16:45:40 +00:00
|
|
|
|
|
|
|
namespace chart
|
|
|
|
{
|
|
|
|
|
2012-10-18 16:28:20 +02:00
|
|
|
class SeriesEntry : public ::SvTreeListEntry
|
2007-05-22 16:45:40 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~SeriesEntry();
|
|
|
|
|
|
|
|
/// the corresponding data series
|
2014-01-17 12:48:14 -05:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries > m_xDataSeries;
|
2007-05-22 16:45:40 +00:00
|
|
|
|
|
|
|
/// the chart type that contains the series (via XDataSeriesContainer)
|
2014-01-01 22:59:27 -02:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType > m_xChartType;
|
2007-05-22 16:45:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class SeriesListBox : public ::SvTreeListBox
|
|
|
|
{
|
|
|
|
public:
|
2014-01-01 22:59:27 -02:00
|
|
|
explicit SeriesListBox(Window* pParent, WinBits nStyle);
|
2007-05-22 16:45:40 +00:00
|
|
|
|
2014-03-27 18:12:18 +01:00
|
|
|
virtual SvTreeListEntry* CreateEntry() const SAL_OVERRIDE;
|
2007-05-22 16:45:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace chart
|
|
|
|
|
2013-10-23 22:48:59 +02:00
|
|
|
// INCLUDED_CHART2_SOURCE_CONTROLLER_DIALOGS_TP_DATASOURCECONTROLS_HXX
|
2007-05-22 16:45:40 +00:00
|
|
|
#endif
|
2010-10-27 12:43:08 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|