1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
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/.
12 #include <vcl/InterimItemWindow.hxx>
13 #include <svx/svxdllapi.h>
15 enum class LabelItemWindowType
21 class UNLESS_MERGELIBS(SVXCORE_DLLPUBLIC
) LabelItemWindow final
: public InterimItemWindow
24 std::unique_ptr
<weld::Box
> m_xBox
;
25 std::unique_ptr
<weld::Label
> m_xLabel
;
26 std::unique_ptr
<weld::Image
> m_xImage
;
29 LabelItemWindow(vcl::Window
* pParent
, const OUString
& rLabel
);
30 void set_label(const OUString
& rLabel
,
31 const LabelItemWindowType eType
= LabelItemWindowType::Text
);
32 OUString
get_label() const;
34 void SetOptimalSize();
35 virtual void dispose() override
;
36 virtual ~LabelItemWindow() override
;
39 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */