aboutsummaryrefslogtreecommitdiffstats
path: root/matchbox/mb-wm-stack.h
blob: 18eda0d4836d3521c3d6175561bfa5a5a5117ea7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
 *  Matchbox Window Manager II - A lightweight window manager not for the
 *                               desktop.
 *
 *  Authored By Matthew Allum <mallum@o-hand.com>
 *
 *  Copyright (c) 2005 OpenedHand Ltd - http://o-hand.com
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2, or (at your option)
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 */

#ifndef _HAVE_MB_WM_STACK_H_
#define _HAVE_MB_WM_STACK_H_

#define mb_wm_stack_enumerate(w,c)                               \
 if ((w)->stack_bottom)                                          \
   for ((c)=(w)->stack_bottom; (c) != NULL; (c)=(c)->stacked_above)

#define mb_wm_stack_enumerate_reverse(w,c)                       \
 if ((w)->stack_top)                                             \
   for ((c)=(w)->stack_top; (c) != NULL; (c)=(c)->stacked_below)

#define mb_wm_stack_enumerate_transients(w,c,t)                   \
 if ((w)->stack_bottom)                                           \
   for ((c)=(w)->stack_bottom; (c) != NULL; (c)=(c)->stacked_above) \
     if ((c)->trans == (t))


#define mb_wm_stack_move_top(c)                                   \
 mb_wm_stack_move_above_client((c), (c)->wmref->stack_top)

/*
#define mb_wm_stack_add_bottom(c)                                 \
 stack_move_below_client((c), (c)->wmref->stack_bottom)
*/

#define mb_wm_stack_empty(w) \
 ((w)->stack_bottom == NULL)

#define mb_wm_stack_size(w) \
 (w)->stack_n_clients

void
mb_wm_stack_ensure (MBWMManager *wm);

void
mb_wm_stack_insert_above_client (MBWindowManagerClient *client,
				 MBWindowManagerClient *client_below);

void
mb_wm_stack_append_top (MBWindowManagerClient *client);

void
mb_wm_stack_prepend_bottom (MBWindowManagerClient *client);

void
mb_wm_stack_move_client_above_type (MBWindowManagerClient *client,
				    MBWMClientType         type_below);

void
mb_wm_stack_move_client_above_type (MBWindowManagerClient *client,
				    MBWMClientType         type_below);

MBWindowManagerClient *
mb_wm_stack_cycle_by_type(MBWMManager *w, MBWMClientType type,
			  Bool reverse);

void
mb_wm_stack_move_above_client (MBWindowManagerClient *client,
			       MBWindowManagerClient *client_below);

MBWindowManagerClient*
mb_wm_stack_get_highest_by_type(MBWMManager *w,
				MBWMClientType wanted_type);


MBWindowManagerClient*
mb_wm_stack_get_lowest_by_type(MBWMManager *w,
			       MBWMClientType wanted_type);

void
mb_wm_stack_remove (MBWindowManagerClient *client);

void
mb_wm_stack_dump (MBWMManager *wm);

#endif