[screen] s/move_client_to_screen/screen_client_moveto/
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
b3bb0faf36
commit
75cb6b81af
6
client.c
6
client.c
|
@ -360,7 +360,7 @@ client_manage(xcb_window_t w, xcb_get_geometry_reply_t *wgeom, int screen)
|
||||||
|
|
||||||
/* Try to load props if any */
|
/* Try to load props if any */
|
||||||
if(!(retloadprops = client_loadprops(c, screen)))
|
if(!(retloadprops = client_loadprops(c, screen)))
|
||||||
move_client_to_screen(c, screen, true);
|
screen_client_moveto(c, screen, true);
|
||||||
|
|
||||||
/* Then check clients hints */
|
/* Then check clients hints */
|
||||||
ewmh_check_client_hints(c);
|
ewmh_check_client_hints(c);
|
||||||
|
@ -538,7 +538,7 @@ client_resize(client_t *c, area_t geometry, bool hints)
|
||||||
window_configure(c->win, geometry, c->border);
|
window_configure(c->win, geometry, c->border);
|
||||||
|
|
||||||
if(c->screen != new_screen)
|
if(c->screen != new_screen)
|
||||||
move_client_to_screen(c, new_screen, false);
|
screen_client_moveto(c, new_screen, false);
|
||||||
|
|
||||||
resized = true;
|
resized = true;
|
||||||
}
|
}
|
||||||
|
@ -951,7 +951,7 @@ luaA_client_screen_set(lua_State *L)
|
||||||
client_t **c = luaA_checkudata(L, 1, "client");
|
client_t **c = luaA_checkudata(L, 1, "client");
|
||||||
int screen = luaL_checknumber(L, 2) - 1;
|
int screen = luaL_checknumber(L, 2) - 1;
|
||||||
luaA_checkscreen(screen);
|
luaA_checkscreen(screen);
|
||||||
move_client_to_screen(*c, screen, true);
|
screen_client_moveto(*c, screen, true);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
mouse.c
2
mouse.c
|
@ -357,7 +357,7 @@ mouse_client_move(client_t *c, int snap)
|
||||||
mquery_pointer_r->root_x,
|
mquery_pointer_r->root_x,
|
||||||
mquery_pointer_r->root_y)) != c->screen)
|
mquery_pointer_r->root_y)) != c->screen)
|
||||||
{
|
{
|
||||||
move_client_to_screen(c, newscreen, true);
|
screen_client_moveto(c, newscreen, true);
|
||||||
globalconf.screens[c->screen].need_arrange = true;
|
globalconf.screens[c->screen].need_arrange = true;
|
||||||
globalconf.screens[newscreen].need_arrange = true;
|
globalconf.screens[newscreen].need_arrange = true;
|
||||||
layout_refresh();
|
layout_refresh();
|
||||||
|
|
16
screen.c
16
screen.c
|
@ -108,8 +108,8 @@ display_area_get(int phys_screen, statusbar_t *statusbar, padding_t *padding)
|
||||||
|
|
||||||
/** This returns the real X screen number for a logical
|
/** This returns the real X screen number for a logical
|
||||||
* screen if Xinerama is active.
|
* screen if Xinerama is active.
|
||||||
* \param screen the logical screen
|
* \param screen The logical screen.
|
||||||
* \return the X screen
|
* \return The X screen.
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
screen_virttophys(int screen)
|
screen_virttophys(int screen)
|
||||||
|
@ -119,14 +119,14 @@ screen_virttophys(int screen)
|
||||||
return screen;
|
return screen;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Move a client to a virtual screen
|
/** Move a client to a virtual screen.
|
||||||
* \param c the client
|
* \param c The client to move.
|
||||||
* \param new_screen The destinatiuon screen
|
* \param new_screen The destinatiuon screen number.
|
||||||
* \param doresize set to true if we also move the client to the new x and
|
* \param doresize Set to true if we also move the client to the new x and
|
||||||
* y of the new screen
|
* y of the new screen.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
move_client_to_screen(client_t *c, int new_screen, bool doresize)
|
screen_client_moveto(client_t *c, int new_screen, bool doresize)
|
||||||
{
|
{
|
||||||
tag_t *tag;
|
tag_t *tag;
|
||||||
int old_screen = c->screen;
|
int old_screen = c->screen;
|
||||||
|
|
2
screen.h
2
screen.h
|
@ -27,7 +27,7 @@
|
||||||
area_t screen_area_get(int, statusbar_t *, padding_t *);
|
area_t screen_area_get(int, statusbar_t *, padding_t *);
|
||||||
area_t display_area_get(int, statusbar_t *, padding_t *);
|
area_t display_area_get(int, statusbar_t *, padding_t *);
|
||||||
int screen_virttophys(int);
|
int screen_virttophys(int);
|
||||||
void move_client_to_screen(client_t *, int, bool);
|
void screen_client_moveto(client_t *, int, bool);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|
||||||
|
|
Loading…
Reference in New Issue