2 * cnode.c - client node lists management
4 * Copyright © 2008 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 /** Get the client's node focus.
25 * \param list The client list.
26 * \param c The client.
27 * \return The client node focus.
30 client_node_client_getby(client_node_t
*list
, client_t
*c
)
34 for(node
= list
; node
; node
= node
->next
)
41 /** Create a client node for focus.
42 * \param list The client list.
43 * \param c The client.
44 * \return The client focus node.
47 client_node_client_add(client_node_t
**list
, client_t
*c
)
51 /* if we don't find this node, create a new one */
52 if(!(node
= client_node_client_getby(*list
, c
)))
54 node
= p_new(client_node_t
, 1);
57 else /* if we've got a node, detach it */
58 client_node_list_detach(list
, node
);
63 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80