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_TRENDLINE_HXX
|
|
|
|
#define INCLUDED_CHART2_SOURCE_CONTROLLER_DIALOGS_TP_TRENDLINE_HXX
|
2008-02-18 14:52:36 +00:00
|
|
|
|
|
|
|
#include "res_Trendline.hxx"
|
|
|
|
|
|
|
|
#include <sfx2/tabdlg.hxx>
|
|
|
|
|
|
|
|
namespace chart
|
|
|
|
{
|
|
|
|
|
|
|
|
class TrendlineTabPage : public SfxTabPage
|
|
|
|
{
|
|
|
|
public:
|
2018-11-14 15:44:08 +00:00
|
|
|
TrendlineTabPage(TabPageParent pParent, const SfxItemSet& rInAttrs);
|
2008-02-18 14:52:36 +00:00
|
|
|
|
2018-04-20 11:06:07 +01:00
|
|
|
static VclPtr<SfxTabPage> Create( TabPageParent pParent, const SfxItemSet* rInAttrs );
|
2015-10-12 16:04:04 +02:00
|
|
|
virtual bool FillItemSet( SfxItemSet* rOutAttrs ) override;
|
|
|
|
virtual void Reset( const SfxItemSet* rInAttrs ) override;
|
2008-02-18 14:52:36 +00:00
|
|
|
|
2015-10-12 16:04:04 +02:00
|
|
|
virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
|
2013-12-02 09:54:21 +01:00
|
|
|
void SetNumFormatter( SvNumberFormatter* pFormatter );
|
2014-04-21 22:03:23 +02:00
|
|
|
void SetNbPoints( sal_Int32 nNbPoints );
|
2008-02-18 14:52:36 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
TrendlineResources m_aTrendlineResources;
|
|
|
|
};
|
|
|
|
|
|
|
|
} //namespace chart
|
|
|
|
|
|
|
|
#endif
|
2010-10-27 12:43:08 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|