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/.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-03-06 09:49:30 +01:00
|
|
|
#pragma once
|
2013-11-30 17:58:00 +01:00
|
|
|
|
|
|
|
#include "StatisticsTwoVariableDialog.hxx"
|
|
|
|
|
2019-04-10 12:18:23 +01:00
|
|
|
class ScTTestDialog : public ScStatisticsTwoVariableDialog
|
2013-11-30 17:58:00 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ScTTestDialog(
|
|
|
|
SfxBindings* pB, SfxChildWindow* pCW,
|
2020-09-26 09:43:41 +01:00
|
|
|
weld::Window* pParent, ScViewData& rViewData );
|
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:
|
2021-07-19 13:18:49 +02:00
|
|
|
virtual TranslateId GetUndoNameId() override;
|
2015-10-12 16:04:04 +02:00
|
|
|
virtual ScRange ApplyOutput(ScDocShell* pDocShell) override;
|
2013-11-30 17:58:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|