/** * @author Felix Morgner (felix.morgner@gmail.com) * @copyright Copyright (c) 2025 * SPDX-License-Identifier: LGPL-2.1-or-later */ #ifndef LIBADWAITAMM_PRIVATE_APPLICATION_WINDOW_P_HPP #define LIBADWAITAMM_PRIVATE_APPLICATION_WINDOW_P_HPP #include #include #include #define _ADWAITA_INSIDE #include #undef _ADWAITA_INSIDE namespace Adwaita { struct ApplicationWindow_Class : Glib::Class { using BaseClassParent = GtkApplicationWindowClass; using BaseClassType = AdwApplicationWindowClass; using BaseObjectType = AdwApplicationWindow; using CppClassParent = Gtk::ApplicationWindow_Class; using CppObjectType = struct ApplicationWindow; auto init() -> Glib::Class const &; auto static class_init_function(void * gclass, void * data) -> void; auto static wrap_new(GObject * object) -> Glib::ObjectBase *; }; } // namespace Adwaita #endif