#pragma once #include #include #include #include #include #include #include #include #define OSK_SPACING 8 namespace wf { class WaylandDisplay { WaylandDisplay(); public: static WaylandDisplay& get(); zwf_shell_manager_v2 *zwf_manager = nullptr; zwp_virtual_keyboard_manager_v1 *vk_manager = nullptr; }; class WaylandWindow : public Gtk::Window { zwf_surface_v2 *wf_surface = nullptr; Gtk::Widget* current_widget = nullptr; Glib::RefPtr headerbar_drag; Gtk::EventBox drag_box; Gtk::Button close_button; Gtk::HBox headerbar_box; Gtk::VBox layout_box; int32_t check_anchor(std::string anchor); void init(int width, int height, std::string anchor); public: WaylandWindow(int width, int height, std::string anchor); void set_widget(Gtk::Widget& w); }; }