2013-11-30 17:58:00 +01: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/.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-04-18 19:10:04 +02:00
|
|
|
#ifndef INCLUDED_SC_SOURCE_UI_INC_TTESTDIALOG_HXX
|
|
|
|
#define INCLUDED_SC_SOURCE_UI_INC_TTESTDIALOG_HXX
|
2013-11-30 17:58:00 +01:00
|
|
|
|
|
|
|
#include "StatisticsTwoVariableDialog.hxx"
|
|
|
|
|
2019-04-10 11:57:11 +01:00
|
|
|
class ScTTestDialog : public ScStatisticsTwoVariableDialogController
|
2013-11-30 17:58:00 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ScTTestDialog(
|
|
|
|
SfxBindings* pB, SfxChildWindow* pCW,
|
2019-04-10 11:57:11 +01:00
|
|
|
weld::Window* pParent, ScViewData* pViewData );
|
2013-11-30 17:58:00 +01:00
|
|
|
|
2016-09-13 13:09:01 +02:00
|
|
|
virtual ~ScTTestDialog() override;
|
2013-11-30 17:58:00 +01:00
|
|
|
|
2019-04-10 11:57:11 +01:00
|
|
|
virtual void Close() override;
|
2013-11-30 17:58:00 +01:00
|
|
|
|
|
|
|
protected:
|
2017-06-11 20:56:30 +01:00
|
|
|
virtual const char* GetUndoNameId() override;
|
2015-10-12 16:04:04 +02:00
|
|
|
virtual ScRange ApplyOutput(ScDocShell* pDocShell) override;
|
2013-11-30 17:58:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|