Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / sc / source / ui / inc / MatrixComparisonGenerator.hxx
blobc00f83e771435398722ba8d4aa414d958a8b1e43
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 */
11 #ifndef INCLUDED_SC_SOURCE_UI_INC_MATRIXCOMPARISONGENERATOR_HXX
12 #define INCLUDED_SC_SOURCE_UI_INC_MATRIXCOMPARISONGENERATOR_HXX
14 #include "global.hxx"
15 #include "address.hxx"
16 #include "anyrefdg.hxx"
18 #include <vcl/fixed.hxx>
19 #include <vcl/group.hxx>
20 #include <vcl/lstbox.hxx>
22 #include "StatisticsInputOutputDialog.hxx"
24 class ScMatrixComparisonGenerator : public ScStatisticsInputOutputDialog
26 public:
27 ScMatrixComparisonGenerator(
28 SfxBindings* pSfxBindings, SfxChildWindow* pChildWindow,
29 vcl::Window* pParent, ScViewData* pViewData,
30 const OUString& rID, const OUString& rUiXmlDescription );
32 virtual ~ScMatrixComparisonGenerator();
34 protected:
35 virtual sal_Int16 GetUndoNameId() override;
36 virtual ScRange ApplyOutput(ScDocShell* pDocShell) override;
38 virtual const OUString getLabel() = 0;
39 virtual const OUString getTemplate() = 0;
42 #endif
44 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */