mirror of
https://github.com/labwc/labwc.git
synced 2026-02-22 01:40:25 -05:00
view: view_move() s/double/int/ for x and y
This commit is contained in:
parent
46fb3c3dec
commit
52d1e32b59
4 changed files with 6 additions and 6 deletions
|
|
@ -272,7 +272,7 @@ struct view_impl {
|
||||||
void (*close)(struct view *view);
|
void (*close)(struct view *view);
|
||||||
const char *(*get_string_prop)(struct view *view, const char *prop);
|
const char *(*get_string_prop)(struct view *view, const char *prop);
|
||||||
void (*map)(struct view *view);
|
void (*map)(struct view *view);
|
||||||
void (*move)(struct view *view, double x, double y);
|
void (*move)(struct view *view, int x, int y);
|
||||||
void (*set_activated)(struct view *view, bool activated);
|
void (*set_activated)(struct view *view, bool activated);
|
||||||
void (*set_fullscreen)(struct view *view, bool fullscreen);
|
void (*set_fullscreen)(struct view *view, bool fullscreen);
|
||||||
void (*unmap)(struct view *view);
|
void (*unmap)(struct view *view);
|
||||||
|
|
@ -326,7 +326,7 @@ struct view {
|
||||||
|
|
||||||
struct view_pending_move_resize {
|
struct view_pending_move_resize {
|
||||||
bool update_x, update_y;
|
bool update_x, update_y;
|
||||||
double x, y;
|
int x, y;
|
||||||
uint32_t width, height;
|
uint32_t width, height;
|
||||||
uint32_t configure_serial;
|
uint32_t configure_serial;
|
||||||
} pending_move_resize;
|
} pending_move_resize;
|
||||||
|
|
@ -418,7 +418,7 @@ void view_close(struct view *view);
|
||||||
* For move only, use view_move()
|
* For move only, use view_move()
|
||||||
*/
|
*/
|
||||||
void view_move_resize(struct view *view, struct wlr_box geo);
|
void view_move_resize(struct view *view, struct wlr_box geo);
|
||||||
void view_move(struct view *view, double x, double y);
|
void view_move(struct view *view, int x, int y);
|
||||||
void view_moved(struct view *view);
|
void view_moved(struct view *view);
|
||||||
void view_minimize(struct view *view, bool minimized);
|
void view_minimize(struct view *view, bool minimized);
|
||||||
/* view_wlr_output - return the output that a view is mostly on */
|
/* view_wlr_output - return the output that a view is mostly on */
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@ view_close(struct view *view)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
view_move(struct view *view, double x, double y)
|
view_move(struct view *view, int x, int y)
|
||||||
{
|
{
|
||||||
if (view->impl->move) {
|
if (view->impl->move) {
|
||||||
view->impl->move(view, x, y);
|
view->impl->move(view, x, y);
|
||||||
|
|
|
||||||
|
|
@ -186,7 +186,7 @@ xdg_toplevel_view_configure(struct view *view, struct wlr_box geo)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
xdg_toplevel_view_move(struct view *view, double x, double y)
|
xdg_toplevel_view_move(struct view *view, int x, int y)
|
||||||
{
|
{
|
||||||
view->x = x;
|
view->x = x;
|
||||||
view->y = y;
|
view->y = y;
|
||||||
|
|
|
||||||
|
|
@ -204,7 +204,7 @@ handle_set_class(struct wl_listener *listener, void *data)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
move(struct view *view, double x, double y)
|
move(struct view *view, int x, int y)
|
||||||
{
|
{
|
||||||
assert(view->xwayland_surface);
|
assert(view->xwayland_surface);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue