forked from amazingfate/loongoffice
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
/* -*- 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/.
|
|
*
|
|
*/
|
|
|
|
#ifndef INCLUDED_SC_SOURCE_UI_INC_MATRIXCOMPARISONGENERATOR_HXX
|
|
#define INCLUDED_SC_SOURCE_UI_INC_MATRIXCOMPARISONGENERATOR_HXX
|
|
|
|
#include "global.hxx"
|
|
#include "address.hxx"
|
|
#include "anyrefdg.hxx"
|
|
|
|
#include <vcl/fixed.hxx>
|
|
#include <vcl/group.hxx>
|
|
#include <vcl/lstbox.hxx>
|
|
|
|
#include "StatisticsInputOutputDialog.hxx"
|
|
|
|
class ScMatrixComparisonGenerator : public ScStatisticsInputOutputDialog
|
|
{
|
|
public:
|
|
ScMatrixComparisonGenerator(
|
|
SfxBindings* pSfxBindings, SfxChildWindow* pChildWindow,
|
|
Window* pParent, ScViewData* pViewData,
|
|
const OString& rID, const OUString& rUiXmlDescription );
|
|
|
|
virtual ~ScMatrixComparisonGenerator();
|
|
|
|
protected:
|
|
virtual sal_Int16 GetUndoNameId() SAL_OVERRIDE;
|
|
virtual ScRange ApplyOutput(ScDocShell* pDocShell) SAL_OVERRIDE;
|
|
|
|
virtual const OUString getLabel() = 0;
|
|
virtual const OUString getTemplate() = 0;
|
|
};
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|