testdrive new doxygen commands
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
9b2a5be57f
commit
0422266818
22
mouse.c
22
mouse.c
|
@ -717,8 +717,11 @@ mouse_client_resize(client_t *c, corner_t corner)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Set mouse coordinates.
|
/** Set mouse coordinates.
|
||||||
* \param The x coordinates.
|
* \param L The Lua VM state.
|
||||||
* \param The y coordinates.
|
*
|
||||||
|
* \luastack
|
||||||
|
* \lparam The x coordinate.
|
||||||
|
* \lparam The y coordinate.
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
luaA_mouse_coords_set(lua_State *L)
|
luaA_mouse_coords_set(lua_State *L)
|
||||||
|
@ -733,7 +736,10 @@ luaA_mouse_coords_set(lua_State *L)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Resize a client with mouse.
|
/** Resize a client with mouse.
|
||||||
* \param An optionnal corner, such as bottomleft, topright, etc.
|
* \param L The Lua VM state.
|
||||||
|
*
|
||||||
|
* \luastack
|
||||||
|
* \lparam An optionnal corner, such as bottomleft, topright, etc.
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
luaA_client_mouse_resize(lua_State *L)
|
luaA_client_mouse_resize(lua_State *L)
|
||||||
|
@ -749,7 +755,10 @@ luaA_client_mouse_resize(lua_State *L)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Move a client with mouse.
|
/** Move a client with mouse.
|
||||||
* \param The pixel to snap.
|
* \param L The Lua VM state.
|
||||||
|
*
|
||||||
|
* \luastack
|
||||||
|
* \lparam The pixel to snap.
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
luaA_client_mouse_move(lua_State *L)
|
luaA_client_mouse_move(lua_State *L)
|
||||||
|
@ -761,7 +770,10 @@ luaA_client_mouse_move(lua_State *L)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Get the screen number where the mouse ic.
|
/** Get the screen number where the mouse ic.
|
||||||
* \return The screen number.
|
* \param L The Lua VM state.
|
||||||
|
*
|
||||||
|
* \luastack
|
||||||
|
* \lreturn The screen number.
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
luaA_mouse_screen_get(lua_State *L)
|
luaA_mouse_screen_get(lua_State *L)
|
||||||
|
|
Loading…
Reference in New Issue