Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / sc / source / ui / inc / PivotLayoutTreeListData.hxx
blobc5a3fb07ce444dbd8e0078d8dba91008b50f64ac
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_PIVOTLAYOUTTREELISTDATA_HXX
12 #define INCLUDED_SC_SOURCE_UI_INC_PIVOTLAYOUTTREELISTDATA_HXX
14 #include "PivotLayoutTreeListBase.hxx"
15 #include <tools/solar.h>
16 #include <vector>
17 #include <memory>
19 class ScPivotLayoutTreeListData final : public ScPivotLayoutTreeListBase
21 private:
22 DECL_LINK(KeyInputHdl, const KeyEvent&, bool);
23 DECL_LINK(DoubleClickHdl, weld::TreeView&, bool);
25 public:
26 ScPivotLayoutTreeListData(std::unique_ptr<weld::TreeView> xControl);
27 virtual ~ScPivotLayoutTreeListData() override;
29 void FillDataField(ScPivotFieldVector& rDataFields);
30 void PushDataFieldNames(std::vector<ScDPName>& rDataFieldNames);
31 virtual void InsertEntryForSourceTarget(weld::TreeView& rSource, int nTarget) override;
33 private:
34 void InsertEntryForItem(ScItemValue* pItemValue, int nPosition);
36 void AdjustDuplicateCount(ScItemValue* pInputItemValue);
38 std::vector<std::unique_ptr<ScItemValue> > maDataItemValues;
41 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
43 #endif