Fix typo in code
[LibreOffice.git] / include / svx / labelitemwindow.hxx
blobf453dee742d96d43fd14d6918499c313834b0f0c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
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/.
8 */
10 #pragma once
12 #include <vcl/InterimItemWindow.hxx>
13 #include <svx/svxdllapi.h>
15 enum class LabelItemWindowType
17 Text,
18 Info,
21 class UNLESS_MERGELIBS(SVXCORE_DLLPUBLIC) LabelItemWindow final : public InterimItemWindow
23 private:
24 std::unique_ptr<weld::Box> m_xBox;
25 std::unique_ptr<weld::Label> m_xLabel;
26 std::unique_ptr<weld::Image> m_xImage;
28 public:
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: */