1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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
24 #include "anyrefdg.hxx"
31 class ScConsolidateDlg
: public ScAnyRefDlgController
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
;
47 OUString aStrUndefined
;
49 ScConsolidateParam theConsData
;
50 ScViewData
& rViewData
;
52 std::unique_ptr
<ScAreaData
[]> pAreaData
;
53 size_t nAreaDataCount
;
54 sal_uInt16 nWhichCons
;
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
;
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: */