summaryrefslogtreecommitdiff
path: root/adw/src/windowtitle.cpp
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2025-04-28 09:58:10 +0200
committerFelix Morgner <felix.morgner@gmail.com>2025-04-28 10:00:26 +0200
commit3fe6119b93141d74c9f34f69d2b3b6ae016c2abf (patch)
tree383abae15bacfbf5f7c3a63fb8d5ab1c0cbec55c /adw/src/windowtitle.cpp
parent33d8a352eca90a530d560175f5406a5bde5e2861 (diff)
downloadturns-3fe6119b93141d74c9f34f69d2b3b6ae016c2abf.tar.xz
turns-3fe6119b93141d74c9f34f69d2b3b6ae016c2abf.zip
adw: implement WindowTitle
Diffstat (limited to 'adw/src/windowtitle.cpp')
-rw-r--r--adw/src/windowtitle.cpp110
1 files changed, 110 insertions, 0 deletions
diff --git a/adw/src/windowtitle.cpp b/adw/src/windowtitle.cpp
new file mode 100644
index 0000000..5433f14
--- /dev/null
+++ b/adw/src/windowtitle.cpp
@@ -0,0 +1,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 \ No newline at end of file