[screen] s/move_client_to_screen/screen_client_moveto/

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-06-08 11:02:34 +02:00
parent b3bb0faf36
commit 75cb6b81af
4 changed files with 13 additions and 13 deletions

View File

@ -360,7 +360,7 @@ client_manage(xcb_window_t w, xcb_get_geometry_reply_t *wgeom, int screen)
/* Try to load props if any */
if(!(retloadprops = client_loadprops(c, screen)))
move_client_to_screen(c, screen, true);
screen_client_moveto(c, screen, true);
/* Then check clients hints */
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);
if(c->screen != new_screen)
move_client_to_screen(c, new_screen, false);
screen_client_moveto(c, new_screen, false);
resized = true;
}
@ -951,7 +951,7 @@ luaA_client_screen_set(lua_State *L)
client_t **c = luaA_checkudata(L, 1, "client");
int screen = luaL_checknumber(L, 2) - 1;
luaA_checkscreen(screen);
move_client_to_screen(*c, screen, true);
screen_client_moveto(*c, screen, true);
return 0;
}

View File

@ -357,7 +357,7 @@ mouse_client_move(client_t *c, int snap)
mquery_pointer_r->root_x,
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[newscreen].need_arrange = true;
layout_refresh();

View File

@ -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
* screen if Xinerama is active.
* \param screen the logical screen
* \return the X screen
* \param screen The logical screen.
* \return The X screen.
*/
int
screen_virttophys(int screen)
@ -119,14 +119,14 @@ screen_virttophys(int screen)
return screen;
}
/** Move a client to a virtual screen
* \param c the client
* \param new_screen The destinatiuon screen
* \param doresize set to true if we also move the client to the new x and
* y of the new screen
/** Move a client to a virtual screen.
* \param c The client to move.
* \param new_screen The destinatiuon screen number.
* \param doresize Set to true if we also move the client to the new x and
* y of the new screen.
*/
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;
int old_screen = c->screen;

View File

@ -27,7 +27,7 @@
area_t screen_area_get(int, statusbar_t *, padding_t *);
area_t display_area_get(int, statusbar_t *, padding_t *);
int screen_virttophys(int);
void move_client_to_screen(client_t *, int, bool);
void screen_client_moveto(client_t *, int, bool);
#endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80