Open3D (C++ API)  0.16.0
Label.h
Go to the documentation of this file.
1// ----------------------------------------------------------------------------
2// - Open3D: www.open3d.org -
3// ----------------------------------------------------------------------------
4// The MIT License (MIT)
5//
6// Copyright (c) 2018-2021 www.open3d.org
7//
8// Permission is hereby granted, free of charge, to any person obtaining a copy
9// of this software and associated documentation files (the "Software"), to deal
10// in the Software without restriction, including without limitation the rights
11// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12// copies of the Software, and to permit persons to whom the Software is
13// furnished to do so, subject to the following conditions:
14//
15// The above copyright notice and this permission notice shall be included in
16// all copies or substantial portions of the Software.
17//
18// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24// IN THE SOFTWARE.
25// ----------------------------------------------------------------------------
26
27#pragma once
28
30
31namespace open3d {
32namespace visualization {
33namespace gui {
34
35class Label : public Widget {
36 using Super = Widget;
37
38public:
40 explicit Label(const char* text = nullptr);
41 ~Label();
42
43 const char* GetText() const;
45 void SetText(const char* text);
46
47 Color GetTextColor() const;
48 void SetTextColor(const Color& color);
49
50 FontId GetFontId() const;
51 void SetFontId(const FontId font_id);
52
54 const Constraints& constraints) const override;
55
56 DrawResult Draw(const DrawContext& context) override;
57
58private:
59 struct Impl;
60 std::unique_ptr<Impl> impl_;
61};
62
63} // namespace gui
64} // namespace visualization
65} // namespace open3d
math::float4 color
Definition: LineSetBuffers.cpp:64
ImGuiContext * context
Definition: Window.cpp:95
Definition: Color.h:35
Definition: Label.h:35
~Label()
Definition: Label.cpp:67
DrawResult Draw(const DrawContext &context) override
Definition: Label.cpp:134
void SetFontId(const FontId font_id)
Definition: Label.cpp:82
Size CalcPreferredSize(const LayoutContext &context, const Constraints &constraints) const override
Definition: Label.cpp:84
void SetText(const char *text)
Sets the text of the label (copies text)
Definition: Label.cpp:71
const char * GetText() const
Definition: Label.cpp:69
Color GetTextColor() const
Definition: Label.cpp:76
void SetTextColor(const Color &color)
Definition: Label.cpp:78
Label(const char *text=nullptr)
Copies text.
Definition: Label.cpp:61
FontId GetFontId() const
Definition: Label.cpp:80
Definition: Widget.h:68
Widget()
Definition: Widget.cpp:53
DrawResult
Definition: Widget.h:114
unsigned int FontId
Definition: Gui.h:87
Definition: PinholeCameraIntrinsic.cpp:35