summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@protonmail.com>2022-08-27 16:29:23 -0500
committerLeonardo Hernández Hernández <leohdz172@protonmail.com>2022-08-27 16:33:46 -0500
commitb9295e8cee8d3e057f92a9fea1523c379c298f03 (patch)
tree10a5a1b6c4b5a0df8847c52fa3deaa6b7c41c89f
parent406aebcbd2d9526834ad4131ac8b454a9f27c0d9 (diff)
sort client.h functions
-rw-r--r--client.h132
1 files changed, 64 insertions, 68 deletions
diff --git a/client.h b/client.h
index c54a2f3..5988db3 100644
--- a/client.h
+++ b/client.h
@@ -16,16 +16,6 @@ client_is_x11(Client *c)
#endif
}
-static inline struct wlr_surface *
-client_surface(Client *c)
-{
-#ifdef XWAYLAND
- if (client_is_x11(c))
- return c->surface.xwayland->surface;
-#endif
- return c->surface.xdg->surface;
-}
-
static inline Client *
client_from_wlr_surface(struct wlr_surface *s)
{
@@ -48,6 +38,56 @@ client_from_wlr_surface(struct wlr_surface *s)
return NULL;
}
+static inline Client *
+client_get_parent(Client *c)
+{
+ Client *p;
+#ifdef XWAYLAND
+ if (client_is_x11(c) && c->surface.xwayland->parent)
+ return client_from_wlr_surface(c->surface.xwayland->parent->surface);
+#endif
+ if (c->surface.xdg->toplevel->parent)
+ return client_from_wlr_surface(c->surface.xdg->toplevel->parent->surface);
+
+ return NULL;
+}
+
+static inline void
+client_get_size_hints(Client *c, struct wlr_box *max, struct wlr_box *min)
+{
+ struct wlr_xdg_toplevel *toplevel;
+ struct wlr_xdg_toplevel_state *state;
+#ifdef XWAYLAND
+ if (client_is_x11(c)) {
+ struct wlr_xwayland_surface_size_hints *size_hints;
+ size_hints = c->surface.xwayland->size_hints;
+ if (size_hints) {
+ max->width = size_hints->max_width;
+ max->height = size_hints->max_height;
+ min->width = size_hints->min_width;
+ min->height = size_hints->min_height;
+ }
+ return;
+ }
+#endif
+ toplevel = c->surface.xdg->toplevel;
+ state = &toplevel->current;
+ max->width = state->max_width;
+ max->height = state->max_height;
+ min->width = state->min_width;
+ min->height = state->min_height;
+}
+
+static inline struct wlr_surface *
+client_surface(Client *c)
+{
+#ifdef XWAYLAND
+ if (client_is_x11(c))
+ return c->surface.xwayland->surface;
+#endif
+ return c->surface.xdg->surface;
+}
+
/* The others */
static inline void
client_activate_surface(struct wlr_surface *s, int activated)
@@ -103,32 +143,6 @@ client_get_geometry(Client *c, struct wlr_box *geom)
wlr_xdg_surface_get_geometry(c->surface.xdg, geom);
}
-static inline void
-client_get_size_hints(Client *c, struct wlr_box *max, struct wlr_box *min)
-{
- struct wlr_xdg_toplevel *toplevel;
- struct wlr_xdg_toplevel_state *state;
-#ifdef XWAYLAND
- if (client_is_x11(c)) {
- struct wlr_xwayland_surface_size_hints *size_hints;
- size_hints = c->surface.xwayland->size_hints;
- if (size_hints) {
- max->width = size_hints->max_width;
- max->height = size_hints->max_height;
- min->width = size_hints->min_width;
- min->height = size_hints->min_height;
- }
- return;
- }
-#endif
- toplevel = c->surface.xdg->toplevel;
- state = &toplevel->current;
- max->width = state->max_width;
- max->height = state->max_height;
- min->width = state->min_width;
- min->height = state->min_height;
-}
-
static inline const char *
client_get_title(Client *c)
{
@@ -139,19 +153,6 @@ client_get_title(Client *c)
return c->surface.xdg->toplevel->title;
}
-static inline Client *
-client_get_parent(Client *c)
-{
- Client *p;
-#ifdef XWAYLAND
- if (client_is_x11(c) && c->surface.xwayland->parent)
- return client_from_wlr_surface(c->surface.xwayland->parent->surface);
-#endif
- if (c->surface.xdg->toplevel->parent)
- return client_from_wlr_surface(c->surface.xdg->toplevel->parent->surface);
-
- return NULL;
-}
static inline int
client_is_float_type(Client *c)
@@ -171,16 +172,11 @@ client_is_float_type(Client *c)
|| surface->window_type[i] == netatom[NetWMWindowTypeToolbar]
|| surface->window_type[i] == netatom[NetWMWindowTypeUtility])
return 1;
-
- return ((min.width > 0 || min.height > 0 || max.width > 0 || max.height > 0)
- && (min.width == max.width || min.height == max.height))
- || c->surface.xwayland->parent;
}
#endif
-
return ((min.width > 0 || min.height > 0 || max.width > 0 || max.height > 0)
&& (min.width == max.width || min.height == max.height))
- || c->surface.xdg->toplevel->parent;
+ || client_get_parent(c);
}
static inline int
@@ -194,22 +190,23 @@ client_is_mapped(Client *c)
}
static inline int
-client_wants_fullscreen(Client *c)
+client_is_unmanaged(Client *c)
{
#ifdef XWAYLAND
- if (client_is_x11(c))
- return c->surface.xwayland->fullscreen;
+ return c->type == X11Unmanaged;
#endif
- return c->surface.xdg->toplevel->requested.fullscreen;
+ return 0;
}
-static inline int
-client_is_unmanaged(Client *c)
+static inline void
+client_restack_surface(Client *c)
{
#ifdef XWAYLAND
- return c->type == X11Unmanaged;
+ if (client_is_x11(c))
+ wlr_xwayland_surface_restack(c->surface.xwayland, NULL,
+ XCB_STACK_MODE_ABOVE);
#endif
- return 0;
+ return;
}
static inline void
@@ -270,15 +267,14 @@ client_surface_at(Client *c, double cx, double cy, double *sx, double *sy)
return wlr_xdg_surface_surface_at(c->surface.xdg, cx, cy, sx, sy);
}
-static inline void
-client_restack_surface(Client *c)
+static inline int
+client_wants_fullscreen(Client *c)
{
#ifdef XWAYLAND
if (client_is_x11(c))
- wlr_xwayland_surface_restack(c->surface.xwayland, NULL,
- XCB_STACK_MODE_ABOVE);
+ return c->surface.xwayland->fullscreen;
#endif
- return;
+ return c->surface.xdg->toplevel->requested.fullscreen;
}
static inline void *