style: fixed style issues

This commit is contained in:
Matteo Sozzi 2019-07-21 16:34:33 +02:00
parent 5d26011ccc
commit 4592b3208b
5 changed files with 116 additions and 98 deletions

View File

@ -181,12 +181,16 @@ int main(int argc, char **argv)
bool show_help = false;
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_y, "int")["-y"]("y position (wf-shell only)") |
clara::detail::Opt(wf::osk::default_width, "int")["-w"]["--width"]("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");
clara::detail::Opt(wf::osk::default_x, "int")["-x"]
("x position (wf-shell only)") |
clara::detail::Opt(wf::osk::default_y, "int")["-y"]
("y position (wf-shell only)") |
clara::detail::Opt(wf::osk::default_width, "int")["-w"]["--width"]
("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));
if (!res) {

View File

@ -51,13 +51,15 @@ namespace wf
&registry_remove_object
};
static void layer_shell_handle_configure(void *data, struct zwlr_layer_surface_v1 *zwlr_layer_surface,
uint32_t serial, uint32_t width, uint32_t height)
static void layer_shell_handle_configure(void *data,
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);
}
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);
}
@ -99,7 +101,8 @@ namespace wf
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())
{
@ -126,7 +129,8 @@ namespace wf
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())
{
@ -153,8 +157,8 @@ namespace wf
return parsed_anchor;
}
void WaylandWindow::initWayfireShell(WaylandDisplay display, int x, int y, int width,
int height, std::string anchor)
void WaylandWindow::init_wayfire_shell(WaylandDisplay display, int x, int y,
int width, int height, std::string anchor)
{
this->show_all();
auto gdk_window = this->get_window()->gobj();
@ -166,17 +170,20 @@ namespace wf
std::exit(-1);
}
wf_surface = zwf_shell_manager_v1_get_wm_surface(display.wf_manager, 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);
wf_surface = zwf_shell_manager_v1_get_wm_surface(display.wf_manager,
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);
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_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_widget = GTK_WIDGET(gtk_window);
@ -193,19 +200,21 @@ namespace wf
}
uint32_t layer = ZWLR_LAYER_SHELL_V1_LAYER_TOP;
layer_surface = zwlr_layer_shell_v1_get_layer_surface(display.layer_shell,
surface, NULL, layer, "wf-osk");
layer_surface = zwlr_layer_shell_v1_get_layer_surface(
display.layer_shell, surface, NULL, layer, "wf-osk");
if (!layer_surface)
{
std::cerr << "Error: could not create layer surface" << std::endl;
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_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);
wl_surface_commit(surface);
@ -216,7 +225,8 @@ namespace wf
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()
{
auto display = WaylandDisplay::get();
@ -228,10 +238,10 @@ namespace wf
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)
{
initLayerShell(display, width, height, anchor);
init_layer_shell(display, width, height, anchor);
} else {
std::cerr << "Error: cannot find any supported shell protocol" << std::endl;
std::exit(-1);

View File

@ -25,11 +25,15 @@ namespace wf
zwf_wm_surface_v1 *wf_surface;
zwlr_layer_surface_v1 *layer_surface;
uint32_t checkAnchorForWayfireShell(int width, int height, std::string anchor);
uint32_t checkAnchorForLayerShell(int width, int height, std::string anchor);
uint32_t check_anchor_for_wayfire_shell(int width, int height,
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 initLayerShell(WaylandDisplay display, int width, int height, std::string anchor);
void init_wayfire_shell(WaylandDisplay display, int x, int y,
int width, int height, std::string anchor);
void init_layer_shell(WaylandDisplay display, int width, int height,
std::string anchor);
public:
WaylandWindow(int x, int y, int width, int height, std::string anchor);