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"
|
|
|
|
|
|
|
|
class ScTTestDialog : public ScStatisticsTwoVariableDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ScTTestDialog(
|
|
|
|
SfxBindings* pB, SfxChildWindow* pCW,
|
2014-09-23 11:20:40 +02:00
|
|
|
vcl::Window* pParent, ScViewData* pViewData );
|
2013-11-30 17:58:00 +01:00
|
|
|
|
|
|
|
virtual ~ScTTestDialog();
|
|
|
|
|
2014-03-27 18:12:18 +01:00
|
|
|
virtual bool Close() SAL_OVERRIDE;
|
2013-11-30 17:58:00 +01:00
|
|
|
|
|
|
|
protected:
|
2014-03-27 18:12:18 +01:00
|
|
|
virtual sal_Int16 GetUndoNameId() SAL_OVERRIDE;
|
|
|
|
virtual ScRange ApplyOutput(ScDocShell* pDocShell) SAL_OVERRIDE;
|
2013-11-30 17:58:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|