1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/**
* @author Felix Morgner (felix.morgner@gmail.com)
* @copyright Copyright (c) 2025
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "adwaitamm/windowtitle.hpp"
#include "adwaitamm/private/windowtitle_p.hpp"
#include <glibmm/object.h>
#include <glibmm/objectbase.h>
#include <glibmm/propertyproxy.h>
#include <glibmm/ustring.h>
#include <glibmm/wrap.h>
#include <gtkmm/widget.h>
#include <glib-object.h>
#include <gtk/gtk.h>
namespace Adwaita
{
namespace
{
auto constinit _class = WindowTitle_Class{};
namespace property_name
{
auto constexpr subtitle = "subtitle";
auto constexpr title = "title";
} // namespace property_name
} // namespace
WindowTitle::WindowTitle(Glib::ustring const & title, Glib::ustring const & subtitle)
: Glib::ObjectBase{nullptr}
, Gtk::Widget{Glib::ConstructParams{_class.init(), "title", title.c_str(), "subtitle", subtitle.c_str(), nullptr}}
{
}
auto WindowTitle::get_type() -> GType
{
return _class.init().get_type();
}
auto WindowTitle::get_base_type() -> GType
{
return adw_window_title_get_type();
}
auto WindowTitle::get_subtitle() const -> Glib::ustring
{
return adw_window_title_get_subtitle(const_cast<BaseObjectType *>(unwrap(this)));
}
auto WindowTitle::get_title() const -> Glib::ustring
{
return adw_window_title_get_title(const_cast<BaseObjectType *>(unwrap(this)));
}
auto WindowTitle::set_subtitle(Glib::ustring const & value) -> void
{
return adw_window_title_set_subtitle(unwrap(this), value.c_str());
}
auto WindowTitle::set_title(Glib::ustring const & value) -> void
{
return adw_window_title_set_title(unwrap(this), value.c_str());
}
auto WindowTitle::property_subtitle() -> Glib::PropertyProxy<Glib::ustring>
{
return {this, property_name::subtitle};
}
auto WindowTitle::property_subtitle() const -> Glib::PropertyProxy_ReadOnly<Glib::ustring>
{
return {this, property_name::subtitle};
}
auto WindowTitle::property_title() -> Glib::PropertyProxy<Glib::ustring>
{
return {this, property_name::title};
}
auto WindowTitle::property_title() const -> Glib::PropertyProxy_ReadOnly<Glib::ustring>
{
return {this, property_name::title};
}
WindowTitle::WindowTitle(Glib::ConstructParams const & params)
: Gtk::Widget{params}
{
}
WindowTitle::WindowTitle(BaseObjectType * gobj)
: Gtk::Widget(GTK_WIDGET(gobj))
{
}
} // namespace Adwaita
namespace Glib
{
auto wrap(AdwWindowTitle * object, bool copy) -> Adwaita::WindowTitle *
{
return dynamic_cast<Adwaita::WindowTitle *>(Glib::wrap_auto(G_OBJECT(object), copy));
}
} // namespace Glib
|