]> git.decadent.org.uk Git - ion3.git/blob - ioncore/mplex.h
[svn-inject] Installing original source of ion3
[ion3.git] / ioncore / mplex.h
1 /*
2  * ion/ioncore/mplex.h
3  *
4  * Copyright (c) Tuomo Valkonen 1999-2006. 
5  * 
6  * Ion is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation; either version 2.1 of the License, or
9  * (at your option) any later version.
10  */
11
12 #ifndef ION_IONCORE_MPLEX_H
13 #define ION_IONCORE_MPLEX_H
14
15 #include <libextl/extl.h>
16 #include <libmainloop/hooks.h>
17 #include "common.h"
18 #include "window.h"
19 #include "attach.h"
20 #include "manage.h"
21 #include "rectangle.h"
22 #include "pholder.h"
23 #include "sizepolicy.h"
24
25
26 #define MPLEX_ADD_TO_END 0x0001
27 #define MPLEX_MANAGED_UNVIEWABLE 0x0002
28
29 #define MPLEX_MGD_UNVIEWABLE(MPLEX) \
30     ((MPLEX)->flags&MPLEX_MANAGED_UNVIEWABLE)
31
32
33 #define MPLEX_ATTACH_SWITCHTO     0x0001 /* switch to region */
34 #define MPLEX_ATTACH_UNNUMBERED   0x0002 /* do not put on mut.ex list */
35 #define MPLEX_ATTACH_HIDDEN       0x0004 /* should be hidden */
36 #define MPLEX_ATTACH_MODAL        0x0008 /* shortcut.. */
37 #define MPLEX_ATTACH_LEVEL        0x0010 /* level field set */
38 #define MPLEX_ATTACH_GEOM         0x0020 /* geometry field is set */
39 #define MPLEX_ATTACH_SIZEPOLICY   0x0040 /* size policy field is set */
40 #define MPLEX_ATTACH_INDEX        0x0080 /* index field is set */
41 #define MPLEX_ATTACH_WHATEVER     0x0100 /* set REGION_FIT_WHATEVER */
42
43
44 enum{
45     MPLEX_CHANGE_SWITCHONLY=0,
46     MPLEX_CHANGE_REORDER=1,
47     MPLEX_CHANGE_ADD=2,
48     MPLEX_CHANGE_REMOVE=3
49 };
50
51
52 enum{
53     MPLEX_STDISP_TL,
54     MPLEX_STDISP_TR,
55     MPLEX_STDISP_BL,
56     MPLEX_STDISP_BR
57 };
58
59
60 INTRSTRUCT(WMPlexSTDispInfo);
61 INTRSTRUCT(WMPlexChangedParams);
62 INTRSTRUCT(WMPlexAttachParams);
63
64
65 DECLSTRUCT(WMPlexSTDispInfo){
66     int pos;
67     bool fullsize;
68 };
69
70
71 DECLSTRUCT(WMPlexChangedParams){
72     WMPlex *reg;
73     int mode;
74     bool sw;
75     WRegion *sub;
76 };
77
78
79 #define MPLEXATTACHPARAMS_INIT {0, 0, {0, 0, 0, 0}, 0, 0}
80
81 DECLSTRUCT(WMPlexAttachParams){
82     int flags;
83     int index;
84     WRectangle geom;
85     WSizePolicy szplcy;
86     uint level;
87 };
88
89
90 DECLCLASS(WMPlex){
91     WWindow win;
92     int flags;
93     
94     WStacking *mgd;
95     
96     int mx_count;
97     WLListNode *mx_current;
98     WLListNode *mx_list;
99     WMPlexPHolder *mx_phs;
100     
101     Watch stdispwatch;
102     WMPlexSTDispInfo stdispinfo;
103 };
104
105
106 /* Create/destroy */
107
108 extern WMPlex *create_mplex(WWindow *parent, const WFitParams *fp);
109 extern bool mplex_init(WMPlex *mplex, WWindow *parent,
110                        const WFitParams *fp);
111 extern bool mplex_do_init(WMPlex *mplex, WWindow *parent, Window win,
112                           const WFitParams *fp, bool create);
113 extern void mplex_deinit(WMPlex *mplex);
114
115 /* Resize and reparent */
116
117 extern bool mplex_fitrep(WMPlex *mplex, WWindow *par, const WFitParams *fp);
118 extern void mplex_do_fit_managed(WMPlex *mplex, WFitParams *fp);
119 extern void mplex_fit_managed(WMPlex *mplex);
120
121 /* Mapping */
122
123 extern void mplex_map(WMPlex *mplex);
124 extern void mplex_unmap(WMPlex *mplex);
125
126 /* Attach */
127
128 extern WRegion *mplex_attach_simple(WMPlex *mplex, WRegion *reg, 
129                                     int flags);
130
131 extern WRegion *mplex_attach(WMPlex *mplex, WRegion *reg, ExtlTab param);
132 extern WRegion *mplex_attach_new(WMPlex *mplex, ExtlTab param);
133
134 extern WRegion *mplex_do_attach_pholder(WMPlex *mplex, WMPlexPHolder *ph,
135                                         WRegionAttachData *data);
136 extern WRegion *mplex_do_attach(WMPlex *mplex, WMPlexAttachParams *param,
137                                 WRegionAttachData *data);
138 extern WRegion *mplex_do_attach_new(WMPlex *mplex, WMPlexAttachParams *param,
139                                     WRegionCreateFn *fn, void *fn_param);
140
141 extern void mplex_attach_tagged(WMPlex *mplex);
142
143 extern void mplex_managed_remove(WMPlex *mplex, WRegion *reg);
144 extern void mplex_child_removed(WMPlex *mplex, WRegion *sub);
145
146 extern bool mplex_rescue_clientwins(WMPlex *mplex, WPHolder *ph);
147
148 extern WPHolder *mplex_prepare_manage(WMPlex *mplex, const WClientWin *cwin,
149                                       const WManageParams *param, int redir);
150
151 /* Switch */
152
153 extern bool mplex_managed_prepare_focus(WMPlex *mplex, WRegion *sub, 
154                                         int flags, WPrepareFocusResult *res);
155 extern bool mplex_do_prepare_focus(WMPlex *mplex, WStacking *disp, 
156                                    WStacking *sub, int flags, 
157                                    WPrepareFocusResult *res);
158
159 extern void mplex_switch_nth(WMPlex *mplex, uint n);
160 extern void mplex_switch_next(WMPlex *mplex);
161 extern void mplex_switch_prev(WMPlex *mplex);
162 extern bool mplex_is_hidden(WMPlex *mplex, WRegion *reg);
163 extern bool mplex_set_hidden(WMPlex *mplex, WRegion *reg, int sp);
164
165 /* Focus */
166
167 extern void mplex_do_set_focus(WMPlex *mplex, bool warp);
168
169 /* Stacking */
170
171 extern bool mplex_managed_rqorder(WMPlex *mplex, WRegion *sub, 
172                                   WRegionOrder order);
173
174 /* Misc */
175
176 extern WRegion *mplex_current(WMPlex *mplex);
177 extern bool mplex_may_destroy(WMPlex *mplex);
178
179 extern int mplex_mx_count(WMPlex *mplex);
180 extern WRegion *mplex_mx_nth(WMPlex *mplex, uint n);
181 extern ExtlTab mplex_mx_list(WMPlex *mplex);
182 extern WRegion *mplex_mx_current(WMPlex *mplex);
183
184 extern void mplex_call_changed_hook(WMPlex *mplex, WHook *hook, 
185                                     int mode, bool sw, WRegion *reg);
186
187 extern WLListNode *mplex_find_node(WMPlex *mplex, WRegion *reg);
188
189 extern void mplex_remanage_stdisp(WMPlex *mplex);
190
191 /* Dynfuns */
192
193 DYNFUN void mplex_managed_geom(const WMPlex *mplex, WRectangle *geom);
194 DYNFUN void mplex_size_changed(WMPlex *mplex, bool wchg, bool hchg);
195 DYNFUN void mplex_managed_changed(WMPlex *mplex, int what, bool sw,
196                                   WRegion *mgd);
197 DYNFUN int mplex_default_index(WMPlex *mplex);
198
199 /* Save/load */
200
201 extern ExtlTab mplex_get_configuration(WMPlex *mplex);
202 extern WRegion *mplex_load(WWindow *par, const WFitParams *fp, ExtlTab tab);
203 extern void mplex_load_contents(WMPlex *frame, ExtlTab tab);
204
205
206 /* Sticky status display support */
207
208 extern bool mplex_set_stdisp(WMPlex *mplex, WRegion *stdisp, 
209                              const WMPlexSTDispInfo *info);
210 extern void mplex_get_stdisp(WMPlex *mplex, WRegion **stdisp, 
211                              WMPlexSTDispInfo *info);
212
213 extern WRegion *mplex_set_stdisp_extl(WMPlex *mplex, ExtlTab t);
214 extern ExtlTab mplex_get_stdisp_extl(WMPlex *mplex);
215
216 DYNFUN void region_manage_stdisp(WRegion *reg, WRegion *stdisp, 
217                                  const WMPlexSTDispInfo *info);
218 DYNFUN void region_unmanage_stdisp(WRegion *reg, bool permanent, bool nofocus);
219
220 /* Stacking list stuff */
221
222 typedef WStackingIterTmp WMPlexIterTmp;
223
224 extern void mplex_iter_init(WMPlexIterTmp *tmp, WMPlex *ws);
225 extern WRegion *mplex_iter(WMPlexIterTmp *tmp);
226 extern WStacking *mplex_iter_nodes(WMPlexIterTmp *tmp);
227
228 extern WStacking *mplex_get_stacking(WMPlex *ws);
229 extern WStacking **mplex_get_stackingp(WMPlex *ws);
230
231 #define FOR_ALL_MANAGED_BY_MPLEX(MPLEX, VAR, TMP) \
232     for(mplex_iter_init(&(TMP), MPLEX),           \
233          VAR=mplex_iter(&(TMP));                  \
234         VAR!=NULL;                                \
235         VAR=mplex_iter(&(TMP)))
236
237 #define FOR_ALL_NODES_IN_MPLEX(MPLEX, VAR, TMP) \
238     for(mplex_iter_init(&(TMP), MPLEX),         \
239          VAR=mplex_iter_nodes(&(TMP));          \
240         VAR!=NULL;                              \
241         VAR=mplex_iter_nodes(&(TMP)))
242
243 extern WStacking *mplex_find_stacking(WMPlex *mplex, WRegion *reg);
244
245 #endif /* ION_IONCORE_MPLEX_H */