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/.
15 #include <vcl/weld.hxx>
19 std::unique_ptr
<weld::Builder
> m_xBuilder
;
21 std::unique_ptr
<weld::Frame
> m_xFrame
;
22 std::unique_ptr
<weld::ComboBox
> m_xLbSort
;
23 std::unique_ptr
<weld::RadioButton
> m_xBtnUp
;
24 std::unique_ptr
<weld::RadioButton
> m_xBtnDown
;
25 std::unique_ptr
<weld::Label
> m_xLabel
;
26 weld::Container
* m_pParent
;
28 ScSortKeyItem(weld::Container
* pParent
);
35 typedef std::vector
<std::unique_ptr
<ScSortKeyItem
>> ScSortKeyItems
;
40 ScSortKeyItems m_aSortKeyItems
;
43 weld::Container
* m_pBox
;
46 ScSortKeyWindow(weld::Container
* pBox
);
49 void AddSortKey(sal_uInt16 nItem
);
52 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */