nss: upgrade to release 3.73
[LibreOffice.git] / sc / source / ui / inc / consdlg.hxx
blob6abcfc85599e7d69fe925cfc71be8df07143e366
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 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SC_SOURCE_UI_INC_CONSDLG_HXX
21 #define INCLUDED_SC_SOURCE_UI_INC_CONSDLG_HXX
23 #include <global.hxx>
24 #include "anyrefdg.hxx"
26 class ScViewData;
27 class ScDocument;
28 class ScRangeUtil;
29 class ScAreaData;
31 class ScConsolidateDlg : public ScAnyRefDlgController
33 public:
34 ScConsolidateDlg(SfxBindings* pB, SfxChildWindow* pCW, weld::Window* pParent,
35 const SfxItemSet& rArgSet);
36 virtual ~ScConsolidateDlg() override;
38 virtual void SetReference( const ScRange& rRef, ScDocument& rDoc ) override;
40 virtual bool IsRefInputMode() const override { return true; }
41 virtual void SetActive() override;
43 virtual void Close() override;
44 virtual void Deactivate() override;
46 private:
47 OUString aStrUndefined;
49 ScConsolidateParam theConsData;
50 ScViewData& rViewData;
51 ScDocument& rDoc;
52 std::unique_ptr<ScAreaData[]> pAreaData;
53 size_t nAreaDataCount;
54 sal_uInt16 nWhichCons;
55 bool bDlgLostFocus;
57 formula::RefEdit* m_pRefInputEdit;
59 std::unique_ptr<weld::ComboBox> m_xLbFunc;
60 std::unique_ptr<weld::TreeView> m_xLbConsAreas;
62 std::unique_ptr<weld::ComboBox> m_xLbDataArea;
63 std::unique_ptr<formula::RefEdit> m_xEdDataArea;
64 std::unique_ptr<formula::RefButton> m_xRbDataArea;
66 std::unique_ptr<weld::ComboBox> m_xLbDestArea;
67 std::unique_ptr<formula::RefEdit> m_xEdDestArea;
68 std::unique_ptr<formula::RefButton> m_xRbDestArea;
70 std::unique_ptr<weld::Expander> m_xExpander;
71 std::unique_ptr<weld::CheckButton> m_xBtnByRow;
72 std::unique_ptr<weld::CheckButton> m_xBtnByCol;
74 std::unique_ptr<weld::CheckButton> m_xBtnRefs;
76 std::unique_ptr<weld::Button> m_xBtnOk;
77 std::unique_ptr<weld::Button> m_xBtnCancel;
78 std::unique_ptr<weld::Button> m_xBtnAdd;
79 std::unique_ptr<weld::Button> m_xBtnRemove;
81 std::unique_ptr<weld::Label> m_xDataFT;
82 std::unique_ptr<weld::Label> m_xDestFT;
84 void Init ();
85 void FillAreaLists ();
86 bool VerifyEdit(formula::RefEdit* pEd);
88 DECL_LINK( OkHdl, weld::Button&, void );
89 DECL_LINK( ClickHdl, weld::Button&, void );
90 DECL_LINK( GetFocusHdl, weld::Widget&, void );
91 DECL_LINK( GetEditFocusHdl, formula::RefEdit&, void );
92 DECL_LINK( ModifyHdl, formula::RefEdit&, void );
93 DECL_LINK( SelectTVHdl, weld::TreeView&, void );
94 DECL_LINK( SelectCBHdl, weld::ComboBox&, void );
96 static ScSubTotalFunc LbPosToFunc( sal_Int32 nPos );
97 static sal_Int32 FuncToLbPos( ScSubTotalFunc eFunc );
100 #endif // INCLUDED_SC_SOURCE_UI_INC_CONSDLG_HXX
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */