mirror of
https://github.com/WayfireWM/wf-osk.git
synced 2025-04-05 04:46:45 +02:00
* proto: added layer-shell support * added clara header file helper for parsing the cli options. * cli: added command line options * style: fixed style issues * exiting main loop on close * port to gtk-layer-shell * fixup! port to gtk-layer-shell * implement custom header-bar * update wayfire-shell-v2
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <gtkmm/hvbox.h>
|
|
#include <gtkmm/button.h>
|
|
#include <gtkmm/window.h>
|
|
#include <gtkmm/eventbox.h>
|
|
#include <gtkmm/gesturedrag.h>
|
|
#include <gtkmm/headerbar.h>
|
|
#include <wayfire-shell-unstable-v2-client-protocol.h>
|
|
#include <virtual-keyboard-unstable-v1-client-protocol.h>
|
|
|
|
#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<Gtk::GestureDrag> 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);
|
|
};
|
|
}
|