fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / ui / inc / PivotLayoutTreeList.hxx
blob858d9afa1dcfaf3fa36905e3567b97a591759f81
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_PIVOTLAYOUTTREELIST_HXX
12 #define INCLUDED_SC_SOURCE_UI_INC_PIVOTLAYOUTTREELIST_HXX
14 #include "PivotLayoutTreeListBase.hxx"
16 class ScPivotLayoutTreeList : public ScPivotLayoutTreeListBase
18 public:
19 ScPivotLayoutTreeList(vcl::Window* pParent, WinBits nBits);
20 virtual ~ScPivotLayoutTreeList();
21 virtual bool DoubleClickHdl() SAL_OVERRIDE;
23 void Setup(ScPivotLayoutDialog* pParent, SvPivotTreeListType eType);
24 void FillFields(ScPivotFieldVector& rFieldVector);
26 protected:
27 virtual void InsertEntryForSourceTarget(SvTreeListEntry* pSource, SvTreeListEntry* pTarget) SAL_OVERRIDE;
28 virtual void InsertEntryForItem(ScItemValue* pItemValue, sal_uLong nPosition) SAL_OVERRIDE;
30 virtual void KeyInput(const KeyEvent& rKeyEvent) SAL_OVERRIDE;
33 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
35 #endif