mirror of
https://github.com/WayfireWM/wf-osk.git
synced 2025-04-06 05:16:43 +02:00
style: fixed style issues
This commit is contained in:
parent
5d26011ccc
commit
4592b3208b
16
src/main.cpp
16
src/main.cpp
@ -181,12 +181,16 @@ int main(int argc, char **argv)
|
|||||||
bool show_help = false;
|
bool show_help = false;
|
||||||
|
|
||||||
auto cli = clara::detail::Help(show_help) |
|
auto cli = clara::detail::Help(show_help) |
|
||||||
clara::detail::Opt(wf::osk::default_x, "int")["-x"]("x position (wf-shell only)") |
|
clara::detail::Opt(wf::osk::default_x, "int")["-x"]
|
||||||
clara::detail::Opt(wf::osk::default_y, "int")["-y"]("y position (wf-shell only)") |
|
("x position (wf-shell only)") |
|
||||||
clara::detail::Opt(wf::osk::default_width, "int")["-w"]["--width"]("keyboard width") |
|
clara::detail::Opt(wf::osk::default_y, "int")["-y"]
|
||||||
clara::detail::Opt(wf::osk::default_height, "int")["-h"]["--height"]("keyboard height") |
|
("y position (wf-shell only)") |
|
||||||
clara::detail::Opt(wf::osk::anchor, "top|left|bottom|right")["-a"]["--anchor"]
|
clara::detail::Opt(wf::osk::default_width, "int")["-w"]["--width"]
|
||||||
("where the keyboard should anchor in the screen");
|
("keyboard width") |
|
||||||
|
clara::detail::Opt(wf::osk::default_height, "int")["-h"]["--height"]
|
||||||
|
("keyboard height") |
|
||||||
|
clara::detail::Opt(wf::osk::anchor, "top|left|bottom|right")["-a"]
|
||||||
|
["--anchor"]("where the keyboard should anchor in the screen");
|
||||||
|
|
||||||
auto res = cli.parse(clara::detail::Args(argc, argv));
|
auto res = cli.parse(clara::detail::Args(argc, argv));
|
||||||
if (!res) {
|
if (!res) {
|
||||||
|
@ -51,13 +51,15 @@ namespace wf
|
|||||||
®istry_remove_object
|
®istry_remove_object
|
||||||
};
|
};
|
||||||
|
|
||||||
static void layer_shell_handle_configure(void *data, struct zwlr_layer_surface_v1 *zwlr_layer_surface,
|
static void layer_shell_handle_configure(void *data,
|
||||||
uint32_t serial, uint32_t width, uint32_t height)
|
struct zwlr_layer_surface_v1 *zwlr_layer_surface, uint32_t serial,
|
||||||
|
uint32_t width, uint32_t height)
|
||||||
{
|
{
|
||||||
zwlr_layer_surface_v1_ack_configure(zwlr_layer_surface, serial);
|
zwlr_layer_surface_v1_ack_configure(zwlr_layer_surface, serial);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void layer_shell_handle_close(void *data, struct zwlr_layer_surface_v1 *surface)
|
static void layer_shell_handle_close(void *data,
|
||||||
|
struct zwlr_layer_surface_v1 *surface)
|
||||||
{
|
{
|
||||||
zwlr_layer_surface_v1_destroy(surface);
|
zwlr_layer_surface_v1_destroy(surface);
|
||||||
}
|
}
|
||||||
@ -99,7 +101,8 @@ namespace wf
|
|||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t WaylandWindow::checkAnchorForWayfireShell(int width, int height, std::string anchor)
|
uint32_t WaylandWindow::check_anchor_for_wayfire_shell(int width,
|
||||||
|
int height, std::string anchor)
|
||||||
{
|
{
|
||||||
if (anchor.empty())
|
if (anchor.empty())
|
||||||
{
|
{
|
||||||
@ -126,7 +129,8 @@ namespace wf
|
|||||||
return parsed_anchor;
|
return parsed_anchor;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t WaylandWindow::checkAnchorForLayerShell(int width, int height, std::string anchor)
|
uint32_t WaylandWindow::check_anchor_for_layer_shell(int width, int height,
|
||||||
|
std::string anchor)
|
||||||
{
|
{
|
||||||
if (anchor.empty())
|
if (anchor.empty())
|
||||||
{
|
{
|
||||||
@ -153,8 +157,8 @@ namespace wf
|
|||||||
return parsed_anchor;
|
return parsed_anchor;
|
||||||
}
|
}
|
||||||
|
|
||||||
void WaylandWindow::initWayfireShell(WaylandDisplay display, int x, int y, int width,
|
void WaylandWindow::init_wayfire_shell(WaylandDisplay display, int x, int y,
|
||||||
int height, std::string anchor)
|
int width, int height, std::string anchor)
|
||||||
{
|
{
|
||||||
this->show_all();
|
this->show_all();
|
||||||
auto gdk_window = this->get_window()->gobj();
|
auto gdk_window = this->get_window()->gobj();
|
||||||
@ -166,17 +170,20 @@ namespace wf
|
|||||||
std::exit(-1);
|
std::exit(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
wf_surface = zwf_shell_manager_v1_get_wm_surface(display.wf_manager, surface,
|
wf_surface = zwf_shell_manager_v1_get_wm_surface(display.wf_manager,
|
||||||
ZWF_WM_SURFACE_V1_ROLE_DESKTOP_WIDGET, nullptr);
|
surface, ZWF_WM_SURFACE_V1_ROLE_DESKTOP_WIDGET, nullptr);
|
||||||
zwf_wm_surface_v1_set_keyboard_mode(wf_surface, ZWF_WM_SURFACE_V1_KEYBOARD_FOCUS_MODE_NO_FOCUS);
|
zwf_wm_surface_v1_set_keyboard_mode(wf_surface,
|
||||||
|
ZWF_WM_SURFACE_V1_KEYBOARD_FOCUS_MODE_NO_FOCUS);
|
||||||
|
|
||||||
uint32_t parsed_anchor = checkAnchorForWayfireShell(width, height, anchor);
|
uint32_t parsed_anchor = check_anchor_for_wayfire_shell(width,
|
||||||
|
height, anchor);
|
||||||
zwf_wm_surface_v1_set_anchor(wf_surface, parsed_anchor);
|
zwf_wm_surface_v1_set_anchor(wf_surface, parsed_anchor);
|
||||||
zwf_wm_surface_v1_configure(wf_surface, x, y);
|
zwf_wm_surface_v1_configure(wf_surface, x, y);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void WaylandWindow::initLayerShell(WaylandDisplay display, int width, int height, std::string anchor)
|
void WaylandWindow::init_layer_shell(WaylandDisplay display, int width,
|
||||||
|
int height, std::string anchor)
|
||||||
{
|
{
|
||||||
auto gtk_window = this->gobj();
|
auto gtk_window = this->gobj();
|
||||||
auto gtk_widget = GTK_WIDGET(gtk_window);
|
auto gtk_widget = GTK_WIDGET(gtk_window);
|
||||||
@ -193,19 +200,21 @@ namespace wf
|
|||||||
}
|
}
|
||||||
|
|
||||||
uint32_t layer = ZWLR_LAYER_SHELL_V1_LAYER_TOP;
|
uint32_t layer = ZWLR_LAYER_SHELL_V1_LAYER_TOP;
|
||||||
layer_surface = zwlr_layer_shell_v1_get_layer_surface(display.layer_shell,
|
layer_surface = zwlr_layer_shell_v1_get_layer_surface(
|
||||||
surface, NULL, layer, "wf-osk");
|
display.layer_shell, surface, NULL, layer, "wf-osk");
|
||||||
if (!layer_surface)
|
if (!layer_surface)
|
||||||
{
|
{
|
||||||
std::cerr << "Error: could not create layer surface" << std::endl;
|
std::cerr << "Error: could not create layer surface" << std::endl;
|
||||||
std::exit(-1);
|
std::exit(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
zwlr_layer_surface_v1_add_listener(layer_surface, &layer_surface_listener, nullptr);
|
zwlr_layer_surface_v1_add_listener(layer_surface,
|
||||||
|
&layer_surface_listener, nullptr);
|
||||||
zwlr_layer_surface_v1_set_keyboard_interactivity(layer_surface, 0);
|
zwlr_layer_surface_v1_set_keyboard_interactivity(layer_surface, 0);
|
||||||
zwlr_layer_surface_v1_set_size(layer_surface, width, height);
|
zwlr_layer_surface_v1_set_size(layer_surface, width, height);
|
||||||
|
|
||||||
uint32_t parsed_anchor = checkAnchorForLayerShell(width, height, anchor);
|
uint32_t parsed_anchor = check_anchor_for_layer_shell(width,
|
||||||
|
height, anchor);
|
||||||
zwlr_layer_surface_v1_set_anchor(layer_surface, parsed_anchor);
|
zwlr_layer_surface_v1_set_anchor(layer_surface, parsed_anchor);
|
||||||
|
|
||||||
wl_surface_commit(surface);
|
wl_surface_commit(surface);
|
||||||
@ -216,7 +225,8 @@ namespace wf
|
|||||||
this->show_all();
|
this->show_all();
|
||||||
}
|
}
|
||||||
|
|
||||||
WaylandWindow::WaylandWindow(int x, int y, int width, int height, std::string anchor)
|
WaylandWindow::WaylandWindow(int x, int y, int width, int height,
|
||||||
|
std::string anchor)
|
||||||
: Gtk::Window()
|
: Gtk::Window()
|
||||||
{
|
{
|
||||||
auto display = WaylandDisplay::get();
|
auto display = WaylandDisplay::get();
|
||||||
@ -228,10 +238,10 @@ namespace wf
|
|||||||
|
|
||||||
if (display.wf_manager)
|
if (display.wf_manager)
|
||||||
{
|
{
|
||||||
initWayfireShell(display, x, y, width, height, anchor);
|
init_wayfire_shell(display, x, y, width, height, anchor);
|
||||||
} else if (display.layer_shell)
|
} else if (display.layer_shell)
|
||||||
{
|
{
|
||||||
initLayerShell(display, width, height, anchor);
|
init_layer_shell(display, width, height, anchor);
|
||||||
} else {
|
} else {
|
||||||
std::cerr << "Error: cannot find any supported shell protocol" << std::endl;
|
std::cerr << "Error: cannot find any supported shell protocol" << std::endl;
|
||||||
std::exit(-1);
|
std::exit(-1);
|
||||||
|
@ -25,11 +25,15 @@ namespace wf
|
|||||||
zwf_wm_surface_v1 *wf_surface;
|
zwf_wm_surface_v1 *wf_surface;
|
||||||
zwlr_layer_surface_v1 *layer_surface;
|
zwlr_layer_surface_v1 *layer_surface;
|
||||||
|
|
||||||
uint32_t checkAnchorForWayfireShell(int width, int height, std::string anchor);
|
uint32_t check_anchor_for_wayfire_shell(int width, int height,
|
||||||
uint32_t checkAnchorForLayerShell(int width, int height, std::string anchor);
|
std::string anchor);
|
||||||
|
uint32_t check_anchor_for_layer_shell(int width, int height,
|
||||||
|
std::string anchor);
|
||||||
|
|
||||||
void initWayfireShell(WaylandDisplay display, int x, int y, int width, int height, std::string anchor);
|
void init_wayfire_shell(WaylandDisplay display, int x, int y,
|
||||||
void initLayerShell(WaylandDisplay display, int width, int height, std::string anchor);
|
int width, int height, std::string anchor);
|
||||||
|
void init_layer_shell(WaylandDisplay display, int width, int height,
|
||||||
|
std::string anchor);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
WaylandWindow(int x, int y, int width, int height, std::string anchor);
|
WaylandWindow(int x, int y, int width, int height, std::string anchor);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user