Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : */
10 :
11 : #include "docsh.hxx"
12 : #include "reffact.hxx"
13 : #include "strload.hxx"
14 : #include "StatisticsDialogs.hrc"
15 :
16 : #include "CovarianceDialog.hxx"
17 :
18 : static const char strCovarianceTemplate[] = "=COVAR(%VAR1%; %VAR2%)";
19 :
20 0 : ScCovarianceDialog::ScCovarianceDialog(
21 : SfxBindings* pSfxBindings, SfxChildWindow* pChildWindow,
22 : vcl::Window* pParent, ScViewData* pViewData ) :
23 : ScMatrixComparisonGenerator(
24 : pSfxBindings, pChildWindow, pParent, pViewData,
25 0 : "CovarianceDialog", "modules/scalc/ui/covariancedialog.ui" )
26 0 : {}
27 :
28 0 : sal_Int16 ScCovarianceDialog::GetUndoNameId()
29 : {
30 0 : return STR_COVARIANCE_UNDO_NAME;
31 : }
32 :
33 0 : bool ScCovarianceDialog::Close()
34 : {
35 0 : return DoClose( ScCovarianceDialogWrapper::GetChildWindowId() );
36 : }
37 :
38 0 : const OUString ScCovarianceDialog::getLabel()
39 : {
40 0 : return SC_STRLOAD(RID_STATISTICS_DLGS, STR_COVARIANCE_LABEL);
41 : }
42 :
43 0 : const OUString ScCovarianceDialog::getTemplate()
44 : {
45 0 : return OUString(strCovarianceTemplate);
46 156 : }
47 :
48 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|