window: Move move_resize_wayland to window-wayland.c

The move/resize logic is still busted for top/left resizes... sigh.
This commit is contained in:
Jasper St. Pierre
2014-04-28 17:44:45 -04:00
parent 9b760dbbab
commit 8461b2c910
5 changed files with 61 additions and 60 deletions

View File

@@ -619,11 +619,6 @@ void meta_window_move_resize_request(MetaWindow *window,
int y,
int width,
int height);
void meta_window_move_resize_wayland (MetaWindow *window,
int width,
int height,
int dx,
int dy);
void meta_window_set_focused_internal (MetaWindow *window,
gboolean focused);
@@ -755,4 +750,13 @@ void meta_window_update_resize (MetaWindow *window,
int x, int y,
gboolean force);
void meta_window_move_resize_internal (MetaWindow *window,
MetaMoveResizeFlags flags,
int gravity,
int root_x_nw,
int root_y_nw,
int w,
int h);
void meta_window_save_user_window_placement (MetaWindow *window);
#endif