]> git.decadent.org.uk Git - ion3.git/blob - ioncore/mplex.c
Merge commit '20071220' into HEAD
[ion3.git] / ioncore / mplex.c
1 /*
2  * ion/ioncore/mplex.c
3  *
4  * Copyright (c) Tuomo Valkonen 1999-2007. 
5  *
6  * See the included file LICENSE for details.
7  */
8
9 #include <limits.h>
10 #include <string.h>
11
12 #include <libtu/objp.h>
13 #include <libtu/minmax.h>
14 #include <libtu/rb.h>
15 #include <libextl/extl.h>
16 #include <libmainloop/defer.h>
17
18 #include "common.h"
19 #include "window.h"
20 #include "global.h"
21 #include "rootwin.h"
22 #include "focus.h"
23 #include "event.h"
24 #include "attach.h"
25 #include "manage.h"
26 #include "resize.h"
27 #include "tags.h"
28 #include "sizehint.h"
29 #include "extlconv.h"
30 #include "frame-pointer.h"
31 #include "bindmaps.h"
32 #include "regbind.h"
33 #include "saveload.h"
34 #include "xwindow.h"
35 #include "mplexpholder.h"
36 #include "grouppholder.h"
37 #include "llist.h"
38 #include "names.h"
39 #include "sizepolicy.h"
40 #include "stacking.h"
41 #include "group.h"
42 #include "navi.h"
43
44
45 #define SUBS_MAY_BE_MAPPED(MPLEX) \
46     (REGION_IS_MAPPED(MPLEX) && !MPLEX_MGD_UNVIEWABLE(MPLEX))
47
48 #define PASSIVE(ST) ((ST)->level<=STACKING_LEVEL_MODAL1          \
49                      && ((ST)->reg==NULL                         \
50                          || (ST)->reg->flags&REGION_SKIP_FOCUS))
51
52 #define CAN_MANAGE_STDISP(REG) HAS_DYN(REG, region_manage_stdisp)
53
54
55 /*{{{ Stacking list stuff */
56
57
58 WStacking *mplex_get_stacking(WMPlex *mplex)
59 {
60     return window_get_stacking(&mplex->win);
61 }
62
63
64 WStacking **mplex_get_stackingp(WMPlex *mplex)
65 {
66     return window_get_stackingp(&mplex->win);
67 }
68
69
70 void mplex_iter_init(WMPlexIterTmp *tmp, WMPlex *mplex)
71 {
72     stacking_iter_mgr_init(tmp, mplex->mgd, NULL, mplex);
73 }
74
75
76 WRegion *mplex_iter(WMPlexIterTmp *tmp)
77 {
78     return stacking_iter_mgr(tmp);
79 }
80
81
82 WStacking *mplex_iter_nodes(WMPlexIterTmp *tmp)
83 {
84     return stacking_iter_mgr_nodes(tmp);
85 }
86
87
88 /*}}}*/
89
90
91 /*{{{ Destroy/create mplex */
92
93
94 bool mplex_do_init(WMPlex *mplex, WWindow *parent, 
95                    const WFitParams *fp, Window win)
96 {
97     mplex->flags=0;
98     
99     mplex->mx_list=NULL;
100     mplex->mx_current=NULL;
101     mplex->misc_phs=NULL;
102     mplex->mx_count=0;
103     
104     mplex->mgd=NULL;
105     
106     watch_init(&(mplex->stdispwatch));
107     mplex->stdispinfo.pos=MPLEX_STDISP_BL;
108     mplex->stdispinfo.fullsize=FALSE;
109     
110     if(!window_do_init((WWindow*)mplex, parent, fp, win))
111         return FALSE;
112     
113     mplex->win.region.flags|=REGION_BINDINGS_ARE_GRABBED;
114     
115     window_select_input(&(mplex->win), IONCORE_EVENTMASK_CWINMGR);
116     
117     region_register((WRegion*)mplex);
118     
119     /* Call this to set MPLEX_MANAGED_UNVIEWABLE if necessary. */
120     mplex_fit_managed(mplex);
121     
122     return TRUE;
123 }
124
125
126 bool mplex_init(WMPlex *mplex, WWindow *parent, const WFitParams *fp)
127 {
128     return mplex_do_init(mplex, parent, fp, None);
129 }
130
131
132 WMPlex *create_mplex(WWindow *parent, const WFitParams *fp)
133 {
134     CREATEOBJ_IMPL(WMPlex, mplex, (p, parent, fp));
135 }
136
137
138 void mplex_deinit(WMPlex *mplex)
139 {
140     WMPlexIterTmp tmp;
141     WRegion *reg;
142     
143     FOR_ALL_MANAGED_BY_MPLEX(mplex, reg, tmp){
144         destroy_obj((Obj*)reg);
145     }
146     
147     assert(mplex->mgd==NULL);
148     assert(mplex->mx_list==NULL);
149
150     while(mplex->misc_phs!=NULL){
151         assert(mplexpholder_move(mplex->misc_phs, NULL, NULL, NULL));
152     }
153     
154     window_deinit((WWindow*)mplex);
155 }
156
157
158 /*}}}*/
159
160
161 /*{{{ Node lookup etc. */
162
163
164 WStacking *mplex_find_stacking(WMPlex *mplex, WRegion *reg)
165 {
166     WStacking *st;
167     
168     /* Some routines that call us expect us to this check. */
169     if(reg==NULL || REGION_MANAGER(reg)!=(WRegion*)mplex)
170         return NULL;
171     
172     st=ioncore_find_stacking(reg);
173
174     assert(st==NULL || st->mgr_prev!=NULL);
175     
176     return st;
177 }
178
179
180 WStacking *mplex_current_node(WMPlex *mplex)
181 {
182     WStacking *st=NULL;
183     WRegion *reg;
184     
185     reg=REGION_ACTIVE_SUB(mplex);
186     reg=region_managed_within((WRegion*)mplex, reg);
187     if(reg!=NULL)
188         st=mplex_find_stacking(mplex, reg);
189
190     if(st!=NULL)
191         return st;
192     else
193         return (mplex->mx_current!=NULL ? mplex->mx_current->st : NULL);
194 }
195
196
197 WRegion *mplex_current(WMPlex *mplex)
198 {
199     WStacking *node=mplex_current_node(mplex);
200     return (node==NULL ? NULL : node->reg);
201 }
202
203
204 /*}}}*/
205
206
207 /*{{{ Exclusive list management and exports */
208
209 /*EXTL_DOC
210  * Returns the number of objects on the mutually exclusive list of \var{mplex}.
211  */
212 EXTL_SAFE
213 EXTL_EXPORT_MEMBER
214 int mplex_mx_count(WMPlex *mplex)
215 {
216     return mplex->mx_count;
217 }
218
219
220 /*EXTL_DOC
221  * Returns the managed object currently active within the mutually exclusive
222  * list of \var{mplex}.
223  */
224 EXTL_SAFE
225 EXTL_EXPORT_MEMBER
226 WRegion *mplex_mx_current(WMPlex *mplex)
227 {
228     WLListNode *lnode=mplex->mx_current;
229     return (lnode==NULL ? NULL : lnode->st->reg);
230 }
231
232
233 /*EXTL_DOC
234  * Returns the \var{n}:th object on the mutually exclusive
235  * list of \var{mplex}.
236  */
237 EXTL_SAFE
238 EXTL_EXPORT_MEMBER
239 WRegion *mplex_mx_nth(WMPlex *mplex, uint n)
240 {
241     WLListNode *lnode=llist_nth_node(mplex->mx_list, n);
242     return (lnode==NULL ? NULL : lnode->st->reg);
243 }
244
245
246 /*EXTL_DOC
247  * Iterate over numbered/mutually exclusive region list of \var{mplex} 
248  * until \var{iterfn} returns \code{false}.
249  * The function is called in protected mode.
250  * This routine returns \code{true} if it reaches the end of list
251  * without this happening.
252  */
253 EXTL_SAFE
254 EXTL_EXPORT_MEMBER
255 bool mplex_mx_i(WMPlex *mplex, ExtlFn iterfn)
256 {
257     WLListIterTmp tmp;
258     llist_iter_init(&tmp, mplex->mx_list);
259     
260     return extl_iter_objlist_(iterfn, (ObjIterator*)llist_iter_regions, &tmp);
261 }
262
263
264 /*EXTL_DOC
265  * Iterate over managed regions of \var{mplex} until \var{iterfn} returns
266  * \code{false}.
267  * The function is called in protected mode.
268  * This routine returns \code{true} if it reaches the end of list
269  * without this happening.
270  */
271 EXTL_SAFE
272 EXTL_EXPORT_MEMBER
273 bool mplex_managed_i(WMPlex *mplex, ExtlFn iterfn)
274 {
275     WMPlexIterTmp tmp;
276     mplex_iter_init(&tmp, mplex);
277     
278     return extl_iter_objlist_(iterfn, (ObjIterator*)mplex_iter, &tmp);
279 }
280
281
282 /*EXTL_DOC
283  * Set index of \var{reg} to \var{index} within the mutually exclusive 
284  * list of \var{mplex}. Special values for \var{index} are:
285  * \begin{tabularx}{\linewidth}{lX}
286  *   $-1$ & Last. \\
287  *   $-2$ & After \fnref{WMPlex.mx_current}. \\
288  * \end{tabularx}
289  */
290 EXTL_EXPORT_MEMBER
291 void mplex_set_index(WMPlex *mplex, WRegion *reg, int index)
292 {
293     WLListNode *lnode, *after;
294     WStacking *node;
295     
296     node=mplex_find_stacking(mplex, reg);
297
298     if(node==NULL)
299         return;
300     
301     lnode=node->lnode;
302     
303     if(lnode==NULL){
304         lnode=ALLOC(WLListNode);
305         if(lnode==NULL)
306             return;
307         lnode->next=NULL;
308         lnode->prev=NULL;
309         lnode->phs=NULL;
310         lnode->st=node;
311         node->lnode=lnode;
312         mplex->mx_count++;
313     }else{
314         mplex_move_phs_before(mplex, lnode);
315         llist_unlink(&(mplex->mx_list), lnode);
316     }
317     
318     after=llist_index_to_after(mplex->mx_list, mplex->mx_current, index);
319     llist_link_after(&(mplex->mx_list), after, lnode);
320     mplex_managed_changed(mplex, MPLEX_CHANGE_REORDER, FALSE, reg);
321 }
322
323
324 /*EXTL_DOC
325  * Get index of \var{reg} on the mutually exclusive list of \var{mplex}.
326  * The indices begin from zero.. If \var{reg} is not on the list,
327  * -1 is returned.
328  */
329 EXTL_SAFE
330 EXTL_EXPORT_MEMBER
331 int mplex_get_index(WMPlex *mplex, WRegion *reg)
332 {
333     WLListIterTmp tmp;
334     WLListNode *lnode;
335     int index=0;
336     
337     FOR_ALL_NODES_ON_LLIST(lnode, mplex->mx_list, tmp){
338         if(reg==lnode->st->reg)
339             return index;
340         index++;
341     }
342     
343     return -1;
344 }
345
346
347 /*EXTL_DOC
348  * Move \var{r} ``right'' within objects managed by \var{mplex} on list 1.
349  */
350 EXTL_EXPORT_MEMBER
351 void mplex_inc_index(WMPlex *mplex, WRegion *r)
352 {
353     if(r==NULL)
354         r=mplex_mx_current(mplex);
355     if(r!=NULL)
356         mplex_set_index(mplex, r, mplex_get_index(mplex, r)+1);
357 }
358
359
360 /*EXTL_DOC
361  * Move \var{r} ``left'' within objects managed by \var{mplex} on list 1.
362  */
363 EXTL_EXPORT_MEMBER
364 void mplex_dec_index(WMPlex *mplex, WRegion *r)
365 {
366     if(r==NULL)
367         r=mplex_mx_current(mplex);
368     if(r!=NULL)
369         mplex_set_index(mplex, r, mplex_get_index(mplex, r)-1);
370 }
371
372
373 /*}}}*/
374
375
376 /*{{{ Mapping */
377
378
379 static void mplex_map_mgd(WMPlex *mplex)
380 {
381     WMPlexIterTmp tmp;
382     WStacking *node;
383
384     FOR_ALL_NODES_IN_MPLEX(mplex, node, tmp){
385         if(!STACKING_IS_HIDDEN(node))
386             region_map(node->reg);
387     }
388 }
389
390
391 static void mplex_unmap_mgd(WMPlex *mplex)
392 {
393     WMPlexIterTmp tmp;
394     WStacking *node;
395
396     FOR_ALL_NODES_IN_MPLEX(mplex, node, tmp){
397         if(!STACKING_IS_HIDDEN(node))
398             region_unmap(node->reg);
399     }
400 }
401
402
403
404 void mplex_map(WMPlex *mplex)
405 {
406     window_map((WWindow*)mplex);
407     /* A lame requirement of the ICCCM is that client windows should be
408      * unmapped if the parent is unmapped.
409      */
410     if(!MPLEX_MGD_UNVIEWABLE(mplex))
411         mplex_map_mgd(mplex);
412 }
413
414
415 void mplex_unmap(WMPlex *mplex)
416 {
417     window_unmap((WWindow*)mplex);
418     /* A lame requirement of the ICCCM is that client windows should be
419      * unmapped if the parent is unmapped.
420      */
421     if(!MPLEX_MGD_UNVIEWABLE(mplex))
422         mplex_unmap_mgd(mplex);
423 }
424
425
426 /*}}}*/
427
428
429 /*{{{ Resize and reparent */
430
431
432 bool mplex_fitrep(WMPlex *mplex, WWindow *par, const WFitParams *fp)
433 {
434     bool wchg=(REGION_GEOM(mplex).w!=fp->g.w);
435     bool hchg=(REGION_GEOM(mplex).h!=fp->g.h);
436     
437     if(!window_fitrep(&(mplex->win), par, fp))
438         return FALSE;
439     
440     if(wchg || hchg){
441         mplex_fit_managed(mplex);
442         mplex_size_changed(mplex, wchg, hchg);
443     }
444     
445     return TRUE;
446 }
447
448
449 void mplex_do_fit_managed(WMPlex *mplex, WFitParams *fp)
450 {
451     WRectangle geom;
452     WMPlexIterTmp tmp;
453     WStacking *node;
454     WFitParams fp2;
455     
456     if(!MPLEX_MGD_UNVIEWABLE(mplex) && (fp->g.w<=1 || fp->g.h<=1)){
457         mplex->flags|=MPLEX_MANAGED_UNVIEWABLE;
458         if(REGION_IS_MAPPED(mplex))
459             mplex_unmap_mgd(mplex);
460     }else if(MPLEX_MGD_UNVIEWABLE(mplex) && !(fp->g.w<=1 || fp->g.h<=1)){
461         mplex->flags&=~MPLEX_MANAGED_UNVIEWABLE;
462         if(REGION_IS_MAPPED(mplex))
463             mplex_map_mgd(mplex);
464     }
465     
466     if(!MPLEX_MGD_UNVIEWABLE(mplex)){
467         FOR_ALL_NODES_IN_MPLEX(mplex, node, tmp){
468             fp2=*fp;
469             sizepolicy(&node->szplcy, node->reg, NULL, 0, &fp2);
470             region_fitrep(node->reg, NULL, &fp2);
471         }
472     }
473 }
474
475
476 void mplex_fit_managed(WMPlex *mplex)
477 {
478     WFitParams fp;
479     
480     fp.mode=REGION_FIT_EXACT;
481     mplex_managed_geom(mplex, &(fp.g));
482
483     mplex_do_fit_managed(mplex, &fp);
484 }
485
486
487 static void mplex_managed_rqgeom(WMPlex *mplex, WRegion *sub,
488                                  const WRQGeomParams *rq,
489                                  WRectangle *geomret)
490 {
491     WRectangle rg;
492     WFitParams fp;
493     WStacking *node;
494
495     node=mplex_find_stacking(mplex, sub);
496     
497     assert(node!=NULL);
498     
499     fp.mode=0;
500     mplex_managed_geom(mplex, &fp.g);
501     
502     sizepolicy(&node->szplcy, sub, &rq->geom, rq->flags, &fp);
503     
504     if(geomret!=NULL)
505         *geomret=fp.g;
506     
507     if(!(rq->flags&REGION_RQGEOM_TRYONLY))
508         region_fitrep(sub, NULL, &fp);
509 }
510
511
512 void mplex_set_szplcy(WMPlex *mplex, WRegion *sub, WSizePolicy szplcy)
513 {
514     WStacking *node;
515
516     node=mplex_find_stacking(mplex, sub);
517     
518     if(node!=NULL)
519         node->szplcy=szplcy;
520 }
521
522
523 WSizePolicy mplex_get_szplcy(WMPlex *mplex, WRegion *sub)
524 {
525     WStacking *node;
526
527     node=mplex_find_stacking(mplex, sub);
528     
529     return (node==NULL ? SIZEPOLICY_DEFAULT : node->szplcy);
530 }
531
532
533 /*}}}*/
534
535
536 /*{{{ Focus  */
537
538
539 typedef struct{
540     WMPlex *mplex;
541     WStacking *to_try;
542     WStacking *group_st;
543     PtrList **hidelist;
544     bool try_hard;
545 } FiltData;
546
547
548 static WRegion *manager_within(WMPlex *mplex, WStacking *st)
549 {
550     return region_managed_within((WRegion*)mplex, st->reg);
551 }
552
553
554 static WStacking *stacking_within(WMPlex *mplex, WStacking *st)
555 {
556     WRegion *reg=manager_within(mplex, st);
557     
558     return (reg==NULL 
559             ? NULL
560             : (reg==st->reg
561                ? st
562                : ioncore_find_stacking(reg)));
563 }
564
565
566 /* Mutually exclusive regions can't be pseudomodal */
567 #define IS_PSEUDOMODAL(ST) ((ST)->lnode==NULL && (ST)->pseudomodal)
568
569
570 static bool mapped_pseudomodal_include_filt(WStacking *st, void *data_)
571 {
572     FiltData *data=(FiltData*)data_;
573     WStacking *stw;
574     
575     if(st->reg==NULL || !REGION_IS_MAPPED(st->reg))
576         return FALSE;
577         
578     if(!data->hidelist
579        || (data->to_try==NULL && data->group_st==NULL) 
580        || st->level<STACKING_LEVEL_MODAL1){
581         return TRUE;
582     }
583     
584     /* Ok, modal node in the way. Let's see if it is pseudomodal
585      * and can be hidden.
586      */
587     
588     stw=stacking_within(data->mplex, st);
589     
590     /* This should not happen */
591     if(stw==NULL || stw->reg==NULL)
592         return FALSE;
593     
594     /* The node is within the same group, so it can not be hidden. 
595      * Latter case should not happen.
596      */
597     if(stw==data->group_st || stw==data->to_try)
598         return TRUE;
599     
600     if(IS_PSEUDOMODAL(stw)){
601         /* Don't insert multiple times. */
602         return !ptrlist_reinsert_first(data->hidelist, stw);
603     }
604         
605     return TRUE;
606 }
607
608
609 static bool mgr_pseudomodal_approve_filt(WStacking *st, void *data_)
610 {
611     FiltData *data=(FiltData*)data_;
612     
613     return (data->group_st==NULL || st==data->group_st ||
614             manager_within(data->mplex, st)==data->group_st->reg);
615 }
616
617
618 WStacking *mplex_find_to_focus(WMPlex *mplex,
619                                WStacking *to_try,
620                                WStacking *group_st,
621                                PtrList **hidelist)
622 {
623     WStackingFilter *fi=mapped_pseudomodal_include_filt;
624     WStackingFilter *fa=mgr_pseudomodal_approve_filt;
625     WStacking *stacking=mplex_get_stacking(mplex);
626     FiltData data;
627     WStacking *st;
628     
629     if(stacking==NULL)
630         return NULL;
631     
632     if(to_try!=NULL && (to_try->reg==NULL || !REGION_IS_MAPPED(to_try->reg)))
633         to_try=NULL;
634     
635     data.mplex=mplex;
636     data.to_try=to_try;
637     data.group_st=group_st;
638     data.hidelist=hidelist;
639     
640     st=stacking_find_to_focus(stacking, to_try, fi, fa, &data);
641     
642     if(st==NULL && hidelist!=NULL)
643         ptrlist_clear(hidelist);
644     
645     return st;
646 }
647
648
649 static WStacking *mplex_do_to_focus(WMPlex *mplex, WStacking *to_try,
650                                     PtrList **hidelist)
651 {
652     return mplex_find_to_focus(mplex, to_try, NULL, hidelist);
653 }
654
655
656 static WStacking *mplex_do_to_focus_on(WMPlex *mplex, WStacking *node,
657                                        WStacking *to_try, 
658                                        PtrList **hidelist, bool *within)
659 {
660     WGroup *grp=OBJ_CAST(node->reg, WGroup);
661     WStacking *st;
662     
663     if(grp!=NULL){
664         if(to_try==NULL)
665             to_try=grp->current_managed;
666         /* Only will return stuff within 'node' */
667         st=mplex_find_to_focus(mplex, to_try, node, hidelist);
668         if(st!=NULL){
669             if(within!=NULL)
670                 *within=TRUE;
671             return st;
672         }
673     }
674     
675     st=mplex_do_to_focus(mplex, node, hidelist);
676     
677     if(st==node && within!=NULL)
678         *within=TRUE;
679         
680     return st;
681 }
682
683
684 static WStacking *maybe_focusable(WRegion *reg)
685 {
686     if(reg==NULL || !REGION_IS_MAPPED(reg))
687         return NULL;
688
689     return ioncore_find_stacking(reg);
690 }
691
692
693 static WStacking *has_stacking_within(WMPlex *mplex, WRegion *reg)
694 {
695     while(reg!=NULL && REGION_MANAGER(reg)!=(WRegion*)mplex)
696         reg=REGION_MANAGER(reg);
697                 
698     return maybe_focusable(reg);
699 }
700
701
702 static WStacking *mplex_to_focus(WMPlex *mplex)
703 {
704     WStacking *to_try=NULL;
705     WRegion *reg=NULL;
706     WStacking *st;
707     
708     to_try=maybe_focusable(REGION_ACTIVE_SUB(mplex));
709     
710     if(to_try==NULL){
711         /* Search focus history */
712         for(reg=ioncore_g.focus_current; reg!=NULL; reg=reg->active_next){
713             to_try=has_stacking_within(mplex, reg);
714             if(to_try!=NULL)
715                 break;
716         }
717     }
718     
719     st=mplex_do_to_focus(mplex, to_try, NULL);
720     
721     return (st!=NULL 
722             ? st 
723             : (mplex->mx_current!=NULL
724                ? mplex->mx_current->st
725                : NULL));
726 }
727
728
729 void mplex_do_set_focus(WMPlex *mplex, bool warp)
730 {
731     if(!MPLEX_MGD_UNVIEWABLE(mplex)){
732         WStacking *st=mplex_to_focus(mplex);
733         
734         if(st!=NULL){
735             region_do_set_focus(st->reg, warp);
736             return;
737         }
738     }
739     
740     window_do_set_focus((WWindow*)mplex, warp);
741 }
742
743
744 /*}}}*/
745
746
747 /*{{{ Switch */
748
749
750 static void mplex_do_remanage_stdisp(WMPlex *mplex, WRegion *sub)
751 {
752     WRegion *stdisp=(WRegion*)(mplex->stdispwatch.obj);
753
754     /* Move stdisp */
755     if(sub!=NULL && CAN_MANAGE_STDISP(sub)){
756         if(stdisp!=NULL){
757             WRegion *omgr=REGION_MANAGER(stdisp);
758             if(omgr!=sub && omgr!=NULL){
759                 if(CAN_MANAGE_STDISP(omgr))
760                     region_unmanage_stdisp(omgr, FALSE, FALSE);
761                 region_detach_manager(stdisp);
762             }
763             
764             region_manage_stdisp(sub, stdisp, 
765                                  &(mplex->stdispinfo));
766         }else{
767             region_unmanage_stdisp(sub, TRUE, FALSE);
768         }
769     }
770 }
771
772
773 void mplex_remanage_stdisp(WMPlex *mplex)
774 {
775     mplex_do_remanage_stdisp(mplex, (mplex->mx_current!=NULL
776                                      ? mplex->mx_current->st->reg
777                                      : NULL));
778 }
779
780
781 static void mplex_do_node_display(WMPlex *mplex, WStacking *node,
782                                   bool call_changed)
783 {
784     WRegion *sub=node->reg;
785     WLListNode *mxc=mplex->mx_current;
786
787     if(!STACKING_IS_HIDDEN(node))
788         return;
789     
790     if(node->lnode!=NULL && node->lnode!=mxc)
791         mplex_do_remanage_stdisp(mplex, sub);
792
793     node->hidden=FALSE;
794     
795     if(SUBS_MAY_BE_MAPPED(mplex))
796         region_map(sub);
797     else
798         region_unmap(sub);
799     
800     if(node->lnode!=NULL){
801         if(mxc!=NULL){
802             /* Hide current mx region. We do it after mapping the
803              * new one to avoid flicker.
804              */
805             if(REGION_IS_MAPPED(mplex))
806                 region_unmap(mxc->st->reg);
807             mxc->st->hidden=TRUE;
808         }
809         
810         mplex->mx_current=node->lnode;
811         
812         /* Ugly hack:
813          * Many programs will get upset if the visible, although only 
814          * such, client window is not the lowest window in the mplex. 
815          * xprop/xwininfo will return the information for the lowest 
816          * window. 'netscape -remote' will not work at all if there are
817          * no visible netscape windows.
818          */
819         {
820             WGroup *grp=(WGroup*)OBJ_CAST(sub, WGroupCW);
821             if(grp!=NULL){
822                 WRegion *bottom=group_bottom(grp);
823                 if(bottom!=NULL){
824                     region_managed_rqorder((WRegion*)grp, bottom,
825                                            REGION_ORDER_BACK);
826                 }
827             }
828         }
829         
830         if(call_changed)
831             mplex_managed_changed(mplex, MPLEX_CHANGE_SWITCHONLY, TRUE, sub);
832     }
833 }
834
835
836 static bool mplex_refocus(WMPlex *mplex, WStacking *node, bool warp)
837 {
838     WStacking *foc=NULL;
839     bool within=FALSE;
840     
841     if(node!=NULL)
842         foc=mplex_do_to_focus_on(mplex, node, NULL, NULL, &within);
843         
844     if(foc==NULL || !within)
845         foc=mplex_to_focus(mplex);
846     
847     if(foc!=NULL)
848         region_maybewarp(foc->reg, warp);
849     
850     return within;
851 }
852
853
854 bool mplex_do_prepare_focus(WMPlex *mplex, WStacking *node,
855                             WStacking *sub, int flags, 
856                             WPrepareFocusResult *res)
857 {
858     bool ew=(flags&REGION_GOTO_ENTERWINDOW);
859     PtrList *hidelist=NULL;
860     PtrList **hidelistp=(ew ? NULL : &hidelist);
861     WStacking *foc;
862     /*bool within=FALSE;*/
863     
864     if(sub==NULL && node==NULL)
865         return FALSE;
866     
867     /* Display the node in any case */
868     if(node!=NULL && !ew)
869         mplex_do_node_display(mplex, node, TRUE);
870     
871     if(!region_prepare_focus((WRegion*)mplex, flags, res))
872         return FALSE;
873
874     foc=mplex_do_to_focus_on(mplex, node, sub, hidelistp, NULL /*&within*/);
875
876     if(foc!=NULL){
877         while(hidelist!=NULL){
878             WStacking *st=(WStacking*)ptrlist_take_first(&hidelist);
879             st->hidden=TRUE;
880             region_unmap(st->reg);
881         }
882         
883         if(ioncore_g.autoraise && 
884            !(flags&REGION_GOTO_ENTERWINDOW) &&
885            foc->level>STACKING_LEVEL_BOTTOM){
886             WStacking **stackingp=mplex_get_stackingp(mplex);
887             stacking_restack(stackingp, foc, None, NULL, NULL, FALSE);
888         }
889         
890         res->reg=foc->reg;
891         res->flags=flags;
892         
893         return (foc==sub || (sub==NULL && foc==node));
894     }else{
895         return FALSE;
896     }
897 }
898
899
900 bool mplex_managed_prepare_focus(WMPlex *mplex, WRegion *disp, 
901                                  int flags, WPrepareFocusResult *res)
902 {
903     WStacking *node=mplex_find_stacking(mplex, disp);
904     
905     if(node==NULL)
906         return FALSE;
907     else
908         return mplex_do_prepare_focus(mplex, node, NULL, flags, res);
909 }
910
911
912 /*}}}*/
913
914
915 /*{{{ Switch exports */
916
917
918 static void do_switch(WMPlex *mplex, WLListNode *lnode)
919 {
920     WStacking *node=(lnode!=NULL ? lnode->st : NULL);
921     
922     if(node!=NULL){
923         bool mcf=region_may_control_focus((WRegion*)mplex);
924     
925         mplex_do_node_display(mplex, node, TRUE);
926         
927         if(mcf)
928             mplex_refocus(mplex, node, TRUE);
929     }
930 }
931
932
933 /*EXTL_DOC
934  * Have \var{mplex} display the \var{n}:th object managed by it.
935  */
936 EXTL_EXPORT_MEMBER
937 void mplex_switch_nth(WMPlex *mplex, uint n)
938 {
939     do_switch(mplex, llist_nth_node(mplex->mx_list, n));
940 }
941
942
943 /*EXTL_DOC
944  * Have \var{mplex} display next (wrt. currently selected) object managed 
945  * by it.
946  */
947 EXTL_EXPORT_MEMBER
948 void mplex_switch_next(WMPlex *mplex)
949 {
950     do_switch(mplex, LIST_NEXT_WRAP(mplex->mx_list, mplex->mx_current, 
951                                     next, prev));
952 }
953
954
955 /*EXTL_DOC
956  * Have \var{mplex} display previous (wrt. currently selected) object
957  * managed by it.
958  */
959 EXTL_EXPORT_MEMBER
960 void mplex_switch_prev(WMPlex *mplex)
961 {
962     do_switch(mplex, LIST_PREV_WRAP(mplex->mx_list, mplex->mx_current,
963                                     next, prev));
964 }
965
966
967 bool mplex_set_hidden(WMPlex *mplex, WRegion *reg, int sp)
968 {
969     bool mcf=region_may_control_focus((WRegion*)mplex);
970     WStacking *node=mplex_find_stacking(mplex, reg);
971     bool hidden, nhidden;
972     
973     if(node==NULL)
974         return FALSE;
975     
976     hidden=STACKING_IS_HIDDEN(node);
977     nhidden=libtu_do_setparam(sp, hidden);
978     
979     if(!hidden && nhidden){
980         node->hidden=TRUE;
981         
982         if(REGION_IS_MAPPED(mplex) && !MPLEX_MGD_UNVIEWABLE(mplex))
983             region_unmap(reg);
984         
985         /* lnode -> switch next? */
986     }else if(hidden && !nhidden){
987         mplex_do_node_display(mplex, node, TRUE);
988     }
989     
990     if(mcf && !PASSIVE(node))
991         mplex_refocus(mplex, (nhidden ? NULL : node), TRUE);
992     
993     return STACKING_IS_HIDDEN(node);
994 }
995
996
997 /*EXTL_DOC
998  * Set the visibility of the region \var{reg} on \var{mplex}
999  * as specified with the parameter \var{how} 
1000  * (one of \codestr{set}, \codestr{unset}, or \codestr{toggle}).
1001  * The resulting state is returned.
1002  */
1003 EXTL_EXPORT_AS(WMPlex, set_hidden)
1004 bool mplex_set_hidden_extl(WMPlex *mplex, WRegion *reg, const char *how)
1005 {
1006     return mplex_set_hidden(mplex, reg, libtu_string_to_setparam(how));
1007 }
1008
1009
1010 /*EXTL_DOC
1011  * Is \var{reg} on within \var{mplex} and hidden?
1012  */
1013 EXTL_SAFE
1014 EXTL_EXPORT_MEMBER
1015 bool mplex_is_hidden(WMPlex *mplex, WRegion *reg)
1016 {
1017     WStacking *node=mplex_find_stacking(mplex, reg);
1018     
1019     return (node!=NULL && STACKING_IS_HIDDEN(node));
1020 }
1021
1022
1023 /*}}}*/
1024
1025
1026 /*{{{ Navigation */
1027
1028
1029 static WStacking *mplex_nxt(WMPlex *mplex, WStacking *st, bool wrap)
1030 {
1031     return (st->mgr_next!=NULL 
1032             ? st->mgr_next 
1033             : (wrap ? mplex->mgd : NULL));
1034 }
1035
1036
1037 static WStacking *mplex_prv(WMPlex *mplex, WStacking *st, bool wrap)
1038 {
1039     return (st!=mplex->mgd
1040             ? st->mgr_prev
1041             : (wrap ? st->mgr_prev : NULL));
1042 }
1043
1044
1045 typedef WStacking *NxtFn(WMPlex *mplex, WStacking *st, bool wrap);
1046
1047
1048 static WRegion *do_navi(WMPlex *mplex, WStacking *sti, 
1049                         NxtFn *fn, WRegionNaviData *data, 
1050                         bool sti_ok, bool wrap)
1051 {
1052     WStacking *st, *stacking;
1053     uint min_level=0;
1054     
1055     stacking=mplex_get_stacking(mplex);
1056     
1057     if(stacking!=NULL)
1058         min_level=stacking_min_level_mapped(stacking);
1059
1060     st=sti;
1061     while(1){
1062         st=fn(mplex, st, wrap); 
1063         
1064         if(st==NULL || (st==sti && !sti_ok))
1065             break;
1066         
1067         if(!st->hidden){
1068             if(OBJ_IS(st->reg, WGroup)){
1069                 /* WGroup navigation code should respect modal stuff. */
1070                 WRegion *res=region_navi_cont((WRegion*)mplex, st->reg, data);
1071                 if(res!=NULL && res!=st->reg)
1072                     return res;
1073             }else{
1074                 if(st->level>=min_level && !PASSIVE(st))
1075                     return region_navi_cont((WRegion*)mplex, st->reg, data);
1076             }
1077         }
1078                 
1079         if(st==sti)
1080             break;
1081     }
1082     
1083     return NULL;
1084 }
1085                         
1086
1087 WRegion *mplex_navi_first(WMPlex *mplex, WRegionNavi nh,
1088                           WRegionNaviData *data)
1089 {
1090     WStacking *lst=mplex->mgd;
1091     WRegion *res=NULL;
1092     
1093     if(lst!=NULL){
1094         if(nh==REGION_NAVI_ANY){
1095             /* ? */
1096         }
1097     
1098         if(nh==REGION_NAVI_ANY || nh==REGION_NAVI_END || 
1099            nh==REGION_NAVI_BOTTOM || nh==REGION_NAVI_RIGHT){
1100             res=do_navi(mplex, lst, mplex_prv, data, TRUE, TRUE);
1101         }else{
1102             res=do_navi(mplex, lst->mgr_prev, mplex_nxt, data, TRUE, TRUE);
1103         }
1104     }
1105     
1106     return region_navi_cont((WRegion*)mplex, res, data);
1107 }
1108
1109     
1110 WRegion *mplex_navi_next(WMPlex *mplex, WRegion *rel, WRegionNavi nh,
1111                          WRegionNaviData *data)
1112 {
1113     WStacking *st;
1114     WRegion *res;
1115     
1116     if(rel!=NULL){
1117         st=mplex_find_stacking(mplex, rel);
1118         if(st==NULL)
1119             return NULL;
1120     }else if(mplex->mx_current!=NULL){
1121         st=mplex->mx_current->st;
1122     }else{
1123         return mplex_navi_first(mplex, nh, data);
1124     }
1125     
1126     if(nh==REGION_NAVI_ANY){
1127         /* ? */
1128     }
1129     
1130     if(nh==REGION_NAVI_ANY || nh==REGION_NAVI_END || 
1131        nh==REGION_NAVI_BOTTOM || nh==REGION_NAVI_RIGHT){
1132         res=do_navi(mplex, st, mplex_nxt, data, FALSE, FALSE);
1133     }else{
1134         res=do_navi(mplex, st, mplex_prv, data, FALSE, FALSE);
1135     }
1136     
1137     return region_navi_cont((WRegion*)mplex, res, data);
1138 }
1139
1140
1141 /*}}}*/
1142
1143
1144 /*{{{ Stacking */
1145
1146
1147 bool mplex_managed_rqorder(WMPlex *mplex, WRegion *reg, WRegionOrder order)
1148 {
1149     WStacking **stackingp=mplex_get_stackingp(mplex);
1150     WStacking *st;
1151
1152     if(stackingp==NULL || *stackingp==NULL)
1153         return FALSE;
1154
1155     st=mplex_find_stacking(mplex, reg);
1156     
1157     if(st==NULL)
1158         return FALSE;
1159     
1160     stacking_restack(stackingp, st, None, NULL, NULL,
1161                      (order!=REGION_ORDER_FRONT));
1162     
1163     return TRUE;
1164 }
1165
1166
1167 /*}}}*/
1168
1169
1170 /*{{{ Attach */
1171
1172
1173 static bool mplex_stack(WMPlex *mplex, WStacking *st)
1174 {
1175     WStacking *tmp=NULL;
1176     WStacking **stackingp=mplex_get_stackingp(mplex);
1177     
1178     if(stackingp==NULL)
1179         return FALSE;
1180
1181     LINK_ITEM_FIRST(tmp, st, next, prev);
1182     stacking_weave(stackingp, &tmp, FALSE);
1183     assert(tmp==NULL);
1184     
1185     return TRUE;
1186 }
1187
1188
1189 static void mplex_unstack(WMPlex *mplex, WStacking *st)
1190 {
1191     WStacking *stacking;
1192     
1193     stacking=mplex_get_stacking(mplex);
1194     
1195     stacking_unstack(&mplex->win, st);
1196 }
1197
1198
1199 /* WMPlexWPHolder is used for position marking in order to allow
1200  * WLListNodes be safely removed in the attach handler hnd, that
1201  * could remove something this mplex is managing.
1202  */
1203 bool mplex_do_attach_final(WMPlex *mplex, WRegion *reg, WMPlexPHolder *ph)
1204 {
1205     WStacking *node=NULL;
1206     WLListNode *lnode=NULL;
1207     WMPlexAttachParams *param=&ph->param;
1208     bool mx_was_empty, sw, modal, mcf, hidden;
1209     WSizePolicy szplcy;
1210     uint level;
1211     
1212     mcf=region_may_control_focus((WRegion*)mplex);
1213     
1214     mx_was_empty=(mplex->mx_list==NULL);
1215     
1216     szplcy=((param->flags&MPLEX_ATTACH_SIZEPOLICY &&
1217              param->szplcy!=SIZEPOLICY_DEFAULT)
1218             ? param->szplcy
1219             : (param->flags&MPLEX_ATTACH_UNNUMBERED
1220                ? SIZEPOLICY_FULL_BOUNDS
1221                : SIZEPOLICY_FULL_EXACT));
1222
1223     modal=(param->flags&MPLEX_ATTACH_LEVEL
1224            && param->level>=STACKING_LEVEL_MODAL1);
1225     
1226     level=(param->flags&MPLEX_ATTACH_LEVEL
1227            ? param->level
1228            : (param->flags&MPLEX_ATTACH_UNNUMBERED
1229               ? STACKING_LEVEL_NORMAL
1230               : STACKING_LEVEL_BOTTOM));
1231     
1232     hidden=(param->flags&MPLEX_ATTACH_HIDDEN
1233             && (param->flags&MPLEX_ATTACH_UNNUMBERED
1234                 || !mx_was_empty));
1235     
1236     sw=(!hidden && (param->flags&MPLEX_ATTACH_SWITCHTO 
1237                     || (param->flags&MPLEX_ATTACH_UNNUMBERED
1238                         ? FALSE
1239                         : (mplex_current_node(mplex)==NULL))));
1240     
1241     hidden=(hidden || (!sw && !(param->flags&MPLEX_ATTACH_UNNUMBERED)));
1242     
1243     node=create_stacking();
1244     
1245     if(node==NULL)
1246         return FALSE;
1247     
1248     if(!(param->flags&MPLEX_ATTACH_UNNUMBERED)){
1249         lnode=ALLOC(WLListNode);
1250         if(lnode==NULL){
1251             stacking_free(node);
1252             return FALSE;
1253         }
1254         lnode->next=NULL;
1255         lnode->prev=NULL;
1256         lnode->phs=NULL;
1257         lnode->st=node;
1258         node->lnode=lnode;
1259     }
1260     
1261     if(!stacking_assoc(node, reg)){
1262         if(lnode!=NULL){
1263             node->lnode=NULL;
1264             free(lnode);
1265         }
1266         stacking_free(node);
1267         return FALSE;
1268     }
1269
1270     node->hidden=TRUE;
1271     node->szplcy=szplcy;
1272     node->level=level;
1273     node->pseudomodal=(param->flags&MPLEX_ATTACH_PSEUDOMODAL ? 1 : 0);
1274     
1275     if(lnode!=NULL){
1276         WMPlexPHolder *ph2, *phn, *php;
1277         
1278         llist_link_after(&(mplex->mx_list), 
1279                          (ph!=NULL ? ph->after : NULL), 
1280                          lnode);
1281         mplex->mx_count++;
1282         
1283         
1284         /* Move placeholders after new node */
1285         for(php=NULL, ph2=ph; ph2!=NULL; php=ph2, ph2=phn){
1286             phn=ph2->next;
1287             mplexpholder_move(ph2, mplex, php, lnode);
1288         }
1289     }
1290     
1291     LINK_ITEM(mplex->mgd, node, mgr_next, mgr_prev);
1292
1293     if(!OBJ_IS(reg, WGroup))
1294         mplex_stack(mplex, node);
1295     
1296     region_set_manager(reg, (WRegion*)mplex);
1297     
1298     if(param->flags&MPLEX_ATTACH_PASSIVE)
1299         reg->flags|=REGION_SKIP_FOCUS;
1300     
1301     if(!(param->flags&MPLEX_ATTACH_WHATEVER)){
1302         WFitParams fp;
1303         
1304         fp.mode=0;
1305         mplex_managed_geom(mplex, &(fp.g));
1306         
1307         sizepolicy(&node->szplcy, reg, 
1308                    (param->flags&MPLEX_ATTACH_GEOM ? &(param->geom) : NULL),
1309                    0, &fp);
1310         
1311         if(rectangle_compare(&fp.g, &REGION_GEOM(reg))!=RECTANGLE_SAME)
1312             region_fitrep(reg, NULL, &fp);
1313     }
1314     
1315     if(!hidden)
1316         mplex_do_node_display(mplex, node, FALSE);
1317     else
1318         region_unmap(reg);
1319         
1320     if(mcf){
1321         if(sw){
1322             mplex_refocus(mplex, node, FALSE);
1323         }else if(!hidden && 
1324                  (level>=STACKING_LEVEL_MODAL1 || OBJ_IS(reg, WGroup))){
1325             /* New modal regions may require focusing, so try to
1326              * give focus back to currently active object.
1327              * (There seems to be some problem with uncontained
1328              * client windows still..)
1329              */
1330             mplex_refocus(mplex, NULL, FALSE);
1331         }else if(!hidden){
1332             region_pointer_focus_hack(reg);
1333         }
1334     }else if(!hidden){
1335         region_pointer_focus_hack(reg);
1336     }
1337     
1338     if(lnode!=NULL)
1339         mplex_managed_changed(mplex, MPLEX_CHANGE_ADD, sw, reg);
1340     
1341     return TRUE;
1342 }
1343
1344
1345 static void mplex_attach_fp(WMPlex *mplex, const WMPlexAttachParams *param,
1346                             WFitParams *fp)
1347 {
1348     if(param->flags&MPLEX_ATTACH_GEOM)
1349         fp->g=param->geom;
1350     else
1351         mplex_managed_geom(mplex, &(fp->g));
1352     
1353     fp->mode=REGION_FIT_WHATEVER|REGION_FIT_BOUNDS;
1354 }
1355
1356
1357 WRegion *mplex_do_attach_pholder(WMPlex *mplex, WMPlexPHolder *ph,
1358                                  WRegionAttachData *data)
1359 {
1360     WFitParams fp;
1361     
1362     mplex_attach_fp(mplex, &ph->param, &fp);
1363     
1364     return region_attach_helper((WRegion*)mplex, 
1365                                 (WWindow*)mplex, &fp,
1366                                 (WRegionDoAttachFn*)mplex_do_attach_final,
1367                                 (void*)ph, data);
1368 }
1369
1370
1371 WRegion *mplex_do_attach(WMPlex *mplex, WMPlexAttachParams *param,
1372                          WRegionAttachData *data)
1373 {
1374     WMPlexPHolder *ph;
1375     WRegion *reg;
1376     
1377     ph=create_mplexpholder(mplex, NULL, param);
1378     
1379     if(ph==NULL)
1380         return NULL;
1381
1382     reg=mplex_do_attach_pholder(mplex, ph, data);
1383     
1384     destroy_obj((Obj*)ph);
1385     
1386     return reg;
1387 }
1388
1389
1390 WRegion *mplex_do_attach_new(WMPlex *mplex, WMPlexAttachParams *param,
1391                              WRegionCreateFn *fn, void *fn_param)
1392 {
1393     WRegionAttachData data;
1394     
1395     data.type=REGION_ATTACH_NEW;
1396     data.u.n.fn=fn;
1397     data.u.n.param=fn_param;
1398     
1399     return mplex_do_attach(mplex, param, &data);
1400 }
1401
1402
1403 #define MPLEX_ATTACH_SET_FLAGS (MPLEX_ATTACH_GEOM|       \
1404                                 MPLEX_ATTACH_SIZEPOLICY| \
1405                                 MPLEX_ATTACH_INDEX)
1406
1407
1408 WRegion *mplex_attach_simple(WMPlex *mplex, WRegion *reg, int flags)
1409 {
1410     WMPlexAttachParams param;
1411     WRegionAttachData data;
1412     
1413     param.flags=flags&~MPLEX_ATTACH_SET_FLAGS;
1414     
1415     data.type=REGION_ATTACH_REPARENT;
1416     data.u.reg=reg;
1417     
1418     return mplex_do_attach(mplex, &param, &data);
1419 }
1420
1421
1422 static void get_params(WMPlex *mplex, ExtlTab tab, int mask,
1423                        WMPlexAttachParams *par)
1424 {
1425     int tmp;
1426     char *tmpstr;
1427     int ok=~mask;
1428     
1429     if(ok&MPLEX_ATTACH_LEVEL){
1430         if(extl_table_gets_i(tab, "level", &tmp)){
1431             if(tmp>=0){
1432                 par->flags|=MPLEX_ATTACH_LEVEL;
1433                 par->level=tmp;
1434             }
1435         }
1436     
1437         if(extl_table_is_bool_set(tab, "modal"))
1438             par->level=maxof(par->level, STACKING_LEVEL_MODAL1);
1439     }
1440
1441     if(extl_table_is_bool_set(tab, "unnumbered"))
1442         par->flags|=MPLEX_ATTACH_UNNUMBERED&ok;
1443     
1444     if(extl_table_is_bool_set(tab, "switchto"))
1445         par->flags|=MPLEX_ATTACH_SWITCHTO&ok;
1446
1447     if(extl_table_is_bool_set(tab, "hidden"))
1448         par->flags|=MPLEX_ATTACH_HIDDEN&ok;
1449         
1450     if(extl_table_is_bool_set(tab, "passive"))
1451         par->flags|=MPLEX_ATTACH_PASSIVE&ok;
1452         
1453     if(extl_table_is_bool_set(tab, "pseudomodal"))
1454         par->flags|=MPLEX_ATTACH_PSEUDOMODAL&ok;
1455
1456     if(extl_table_gets_i(tab, "index", &(par->index)))
1457         par->flags|=MPLEX_ATTACH_INDEX&ok;
1458
1459     if(ok&MPLEX_ATTACH_SIZEPOLICY){
1460         if(extl_table_gets_s(tab, "sizepolicy", &tmpstr)){
1461             WSizePolicy tmpp;
1462             if(string2sizepolicy(tmpstr, &tmpp)){
1463                 par->flags|=MPLEX_ATTACH_SIZEPOLICY;
1464                 par->szplcy=tmpp;
1465             }
1466             free(tmpstr);
1467         }else if(extl_table_gets_i(tab, "sizepolicy", &tmp)){
1468             /* Backwards compat. numeric version */
1469             par->flags|=MPLEX_ATTACH_SIZEPOLICY;
1470             par->szplcy=tmp;
1471         }
1472     }
1473     
1474     if(extl_table_gets_rectangle(tab, "geom", &par->geom))
1475         par->flags|=MPLEX_ATTACH_GEOM&ok;
1476 }
1477
1478
1479 /*EXTL_DOC
1480  * Attach and reparent existing region \var{reg} to \var{mplex}.
1481  * The table \var{param} may contain the fields \var{index} and
1482  * \var{switchto} that are interpreted as for \fnref{WMPlex.attach_new}.
1483  */
1484 EXTL_EXPORT_MEMBER
1485 WRegion *mplex_attach(WMPlex *mplex, WRegion *reg, ExtlTab param)
1486 {
1487     WMPlexAttachParams par=MPLEXATTACHPARAMS_INIT;
1488     WRegionAttachData data;
1489
1490     if(reg==NULL)
1491         return NULL;
1492     
1493     get_params(mplex, param, 0, &par);
1494     
1495     data.type=REGION_ATTACH_REPARENT;
1496     data.u.reg=reg;
1497     
1498     return mplex_do_attach(mplex, &par, &data);
1499 }
1500
1501
1502 WRegion *mplex_attach_new_(WMPlex *mplex, WMPlexAttachParams *par, 
1503                            int mask, ExtlTab param)
1504 {
1505     WRegionAttachData data;
1506     
1507     get_params(mplex, param, mask, par);
1508     
1509     data.type=REGION_ATTACH_LOAD;
1510     data.u.tab=param;
1511     
1512     return mplex_do_attach(mplex, par, &data);
1513 }
1514
1515
1516 /*EXTL_DOC
1517  * Create a new region to be managed by \var{mplex}. At least the following
1518  * fields in \var{param} are understood (all but \var{type} are optional).
1519  * 
1520  * \begin{tabularx}{\linewidth}{lX}
1521  *  \tabhead{Field & Description}
1522  *  \var{type} & (string) Class name (a string) of the object to be created. \\
1523  *  \var{name} & (string) Name of the object to be created (a string). \\
1524  *  \var{switchto} & (boolean) Should the region be switched to (boolean)? \\
1525  *  \var{unnumbered} & (boolean) Do not put on the numbered mutually 
1526  *                     exclusive list. \\
1527  *  \var{index} & (integer) Index on this list, same as for 
1528  *                \fnref{WMPlex.set_index}. \\
1529  *  \var{level} & (integer) Stacking level. \\
1530  *  \var{modal} & (boolean) Shortcut for modal stacking level. \\
1531  *  \var{hidden} & (boolean) Attach hidden, if not prevented
1532  *                  by e.g. the mutually exclusive list being empty.
1533  *                  This option overrides \var{switchto}. \\
1534  *  \var{passive} & (boolean) Skip in certain focusing operations. \\
1535  *  \var{pseudomodal} & (boolean) The attached region is ``pseudomodal''
1536  *                      if the stacking level dictates it to be modal.
1537  *                      This means that the region may be hidden to display
1538  *                      regions with lesser stacking levels. \\
1539  *  \var{sizepolicy} & (string) Size policy; see Section \ref{sec:sizepolicies}. \\
1540  *  \var{geom} & (table) Geometry specification. \\
1541  * \end{tabularx}
1542  * 
1543  * In addition parameters to the region to be created are passed in this 
1544  * same table.
1545  */
1546 EXTL_EXPORT_MEMBER
1547 WRegion *mplex_attach_new(WMPlex *mplex, ExtlTab param)
1548 {
1549     WMPlexAttachParams par=MPLEXATTACHPARAMS_INIT;
1550     
1551     return mplex_attach_new_(mplex, &par, 0, param);
1552 }
1553
1554
1555 static bool mplex_handle_drop(WMPlex *mplex, int x, int y,
1556                               WRegion *dropped)
1557 {
1558     WRegion *curr=mplex_mx_current(mplex);
1559     
1560     /* This code should handle dropping tabs on floating workspaces. */
1561     if(curr && HAS_DYN(curr, region_handle_drop)){
1562         int rx, ry;
1563         region_rootpos(curr, &rx, &ry);
1564         if(rectangle_contains(&REGION_GEOM(curr), x-rx, y-ry)){
1565             if(region_handle_drop(curr, x, y, dropped))
1566                 return TRUE;
1567         }
1568     }
1569     
1570     return (NULL!=mplex_attach_simple(mplex, dropped, MPLEX_ATTACH_SWITCHTO));
1571 }
1572
1573
1574 WPHolder *mplex_prepare_manage(WMPlex *mplex, const WClientWin *cwin,
1575                                const WManageParams *param, int priority)
1576 {
1577     int cpriority=MANAGE_PRIORITY_SUB(priority, MANAGE_PRIORITY_NORMAL);
1578     WMPlexAttachParams ap;
1579     WPHolder *ph=NULL;
1580     WMPlexPHolder *mph;
1581     WLListNode *after;
1582     
1583     /* Check current */ {
1584         WStacking *cur=mplex_current_node(mplex);
1585         
1586         if(cur!=NULL){
1587             ph=region_prepare_manage(cur->reg, cwin, param, cpriority);
1588             if(ph!=NULL)
1589                 return ph;
1590         }
1591         
1592         if(mplex->mx_current!=NULL && mplex->mx_current->st!=cur){
1593             ph=region_prepare_manage(mplex->mx_current->st->reg, 
1594                                      cwin, param, cpriority);
1595             if(ph!=NULL)
1596                 return ph;
1597         }
1598     }
1599     
1600     if(!MANAGE_PRIORITY_OK(priority, MANAGE_PRIORITY_NORMAL))
1601         return NULL;
1602     
1603     ap.flags=((param->switchto ? MPLEX_ATTACH_SWITCHTO : 0)
1604               |MPLEX_ATTACH_SIZEPOLICY);
1605     ap.szplcy=SIZEPOLICY_FULL_EXACT;
1606     
1607     mph=create_mplexpholder(mplex, NULL, &ap);
1608     
1609     if(mph!=NULL){
1610         WGroupPHolder *gph;
1611         WGroupAttachParams gp=GROUPATTACHPARAMS_INIT;
1612         
1613         gp.switchto_set=1;
1614         gp.switchto=1;
1615         gp.bottom=1;
1616         
1617         gph=create_grouppholder(NULL, NULL, &gp);
1618         
1619         if(gph!=NULL){
1620             gph->recreate_pholder=(WPHolder*)mph;
1621             return (WPHolder*)gph;
1622         }
1623     }
1624     
1625     return (WPHolder*)mph;
1626 }
1627
1628
1629 /*}}}*/
1630
1631
1632 /*{{{ Remove */
1633
1634
1635 void mplex_managed_remove(WMPlex *mplex, WRegion *sub)
1636 {
1637     bool mx=FALSE, hadfocus=FALSE, mcf;
1638     WRegion *stdisp=(WRegion*)(mplex->stdispwatch.obj);
1639     WStacking *node, *next=NULL;
1640  
1641     mcf=region_may_control_focus((WRegion*)mplex);
1642     
1643     if(stdisp!=NULL){
1644         if(CAN_MANAGE_STDISP(sub) && 
1645            region_managed_within((WRegion*)mplex, stdisp)==sub){
1646             region_unmanage_stdisp(sub, TRUE, TRUE);
1647             region_detach_manager(stdisp);
1648         }
1649     }
1650     
1651     node=mplex_find_stacking(mplex, sub);
1652     
1653     if(node==NULL)
1654         return;
1655     
1656     hadfocus=(mplex_current_node(mplex)==node);
1657     
1658     if(node->lnode!=NULL){
1659         if(mplex->mx_current==node->lnode){
1660             WLListNode *lnext;
1661             
1662             mplex->mx_current=NULL;
1663             lnext=LIST_PREV(mplex->mx_list, node->lnode, next, prev);
1664             if(lnext==NULL){
1665                 lnext=LIST_NEXT(mplex->mx_list, node->lnode, next, prev);
1666                 if(lnext==node->lnode)
1667                     lnext=NULL;
1668             }
1669             if(lnext!=NULL)
1670                 next=lnext->st;
1671         }
1672         
1673         mplex_move_phs_before(mplex, node->lnode);
1674         llist_unlink(&(mplex->mx_list), node->lnode);
1675         mplex->mx_count--;
1676
1677         free(node->lnode);
1678         node->lnode=NULL;
1679         mx=TRUE;
1680     }
1681     
1682     UNLINK_ITEM(mplex->mgd, node, mgr_next, mgr_prev);
1683     
1684     mplex_unstack(mplex, node);
1685     
1686     stacking_unassoc(node);
1687     stacking_free(node);
1688
1689     region_unset_manager(sub, (WRegion*)mplex);
1690     
1691     if(OBJ_IS_BEING_DESTROYED(mplex))
1692         return;
1693     
1694     if(next!=NULL)
1695         mplex_do_node_display(mplex, next, FALSE);
1696
1697     if(hadfocus && mcf)
1698         mplex_refocus(mplex, next, FALSE);
1699     
1700     if(mx)
1701         mplex_managed_changed(mplex, MPLEX_CHANGE_REMOVE, next!=NULL, sub);
1702 }
1703
1704
1705 void mplex_child_removed(WMPlex *mplex, WRegion *sub)
1706 {
1707     if(sub!=NULL && sub==(WRegion*)(mplex->stdispwatch.obj)){
1708         watch_reset(&(mplex->stdispwatch));
1709         mplex_set_stdisp(mplex, NULL, NULL);
1710     }
1711 }
1712
1713
1714 /*}}}*/
1715
1716
1717 /*{{{ Rescue */
1718
1719
1720 bool mplex_rescue_clientwins(WMPlex *mplex, WRescueInfo *info)
1721 {
1722     bool ret1, ret2;
1723     WMPlexIterTmp tmp;
1724     WLListIterTmp ltmp;
1725     WLListNode *lnode, *was_current=mplex->mx_current;
1726
1727      
1728     /* First all mx stuff to move them nicely to another mplex (when that 
1729      * is the case), switching to the current region in the target if 
1730      * allowed by ph_flags_mask region_rescue.
1731      */
1732     FOR_ALL_NODES_ON_LLIST(lnode, mplex->mx_list, ltmp){
1733         int sw=(lnode==was_current ? PHOLDER_ATTACH_SWITCHTO : 0);
1734         region_do_rescue_this(lnode->st->reg, info, sw);
1735     }
1736     
1737     /* Then the rest (possibly retrying failed mx stuff).
1738      */
1739     mplex_iter_init(&tmp, mplex);
1740     ret1=region_rescue_some_clientwins((WRegion*)mplex, info,
1741                                        (WRegionIterator*)mplex_iter,
1742                                        &tmp);
1743     
1744     ret2=region_rescue_child_clientwins((WRegion*)mplex, info);
1745     
1746     return (ret1 && ret2);
1747 }
1748
1749
1750 /*}}}*/
1751
1752
1753 /*{{{ Status display support */
1754
1755
1756 bool mplex_set_stdisp(WMPlex *mplex, WRegion *reg, 
1757                       const WMPlexSTDispInfo *din)
1758 {
1759     WRegion *oldstdisp=(WRegion*)(mplex->stdispwatch.obj);
1760     WRegion *mgr=NULL;
1761     
1762     assert(reg==NULL || (reg==oldstdisp) ||
1763            (REGION_MANAGER(reg)==NULL && 
1764             REGION_PARENT(reg)==(WWindow*)mplex));
1765     
1766     if(oldstdisp!=NULL){
1767         mgr=region_managed_within((WRegion*)mplex, oldstdisp);
1768         
1769         if(!CAN_MANAGE_STDISP(mgr))
1770             mgr=NULL;
1771     }
1772     
1773     if(din!=NULL)
1774         mplex->stdispinfo=*din;
1775     
1776     if(reg==NULL){
1777         watch_reset(&(mplex->stdispwatch));
1778         
1779         if(mgr!=NULL){
1780             region_unmanage_stdisp(mgr, TRUE, FALSE);
1781             if(oldstdisp!=NULL)
1782                 region_detach_manager(oldstdisp);
1783         }
1784     }else{
1785         watch_setup(&(mplex->stdispwatch), (Obj*)reg, NULL);
1786         
1787         mplex_remanage_stdisp(mplex);
1788     }
1789     
1790     if(oldstdisp!=NULL && oldstdisp!=reg)
1791         mainloop_defer_destroy((Obj*)oldstdisp);
1792     
1793     return TRUE;
1794 }
1795
1796
1797 void mplex_get_stdisp(WMPlex *mplex, WRegion **reg, WMPlexSTDispInfo *di)
1798 {
1799     *di=mplex->stdispinfo;
1800     *reg=(WRegion*)mplex->stdispwatch.obj;
1801 }
1802
1803
1804 static StringIntMap pos_map[]={
1805     {"tl", MPLEX_STDISP_TL},
1806     {"tr", MPLEX_STDISP_TR},
1807     {"bl", MPLEX_STDISP_BL},
1808     {"br", MPLEX_STDISP_BR},
1809     {NULL, 0}
1810 };
1811
1812
1813 static bool do_attach_stdisp(WRegion *mplex, WRegion *reg, void *unused)
1814 {
1815     /* We do not actually manage the stdisp. */
1816     return TRUE;
1817 }
1818
1819
1820 /*EXTL_DOC
1821  * Set/create status display for \var{mplex}. Table is a standard
1822  * description of the object to be created (as passed to e.g. 
1823  * \fnref{WMPlex.attach_new}). In addition, the following fields are
1824  * recognised:
1825  * 
1826  * \begin{tabularx}{\linewidth}{lX}
1827  *   \tabhead{Field & Description}
1828  *   \var{pos} & (string) The corner of the screen to place the status 
1829  *               display in: one of \codestr{tl}, \codestr{tr}, \codestr{bl} 
1830  *               or \codestr{br}. \\
1831  *   \var{fullsize} & (boolean) Waste all available space. \\
1832  *   \var{action} & (string) If this field is set to \codestr{keep}, 
1833  *                  \var{pos} and \var{fullsize} are changed for the existing
1834  *                  status display. If this field is set to \codestr{remove},
1835  *                  the existing status display is removed. If this
1836  *                  field is not set or is set to \codestr{replace}, a 
1837  *                  new status display is created and the old, if any,
1838  *                  removed. \\
1839  * \end{tabularx}
1840  */
1841 EXTL_EXPORT_AS(WMPlex, set_stdisp)
1842 WRegion *mplex_set_stdisp_extl(WMPlex *mplex, ExtlTab t)
1843 {
1844     WRegion *stdisp=NULL;
1845     WMPlexSTDispInfo din=mplex->stdispinfo;
1846     char *s;
1847     
1848     if(extl_table_gets_s(t, "pos", &s)){
1849         din.pos=stringintmap_value(pos_map, s, -1);
1850         if(din.pos<0){
1851             warn(TR("Invalid position setting."));
1852             return NULL;
1853         }
1854     }
1855     
1856     extl_table_gets_b(t, "fullsize", &(din.fullsize));
1857     
1858     s=NULL;
1859     extl_table_gets_s(t, "action", &s);
1860     
1861     if(s==NULL || strcmp(s, "replace")==0){
1862         WRegionAttachData data;
1863         WFitParams fp;
1864         int o2;
1865         
1866         fp.g.x=0;
1867         fp.g.y=0;
1868         fp.g.w=REGION_GEOM(mplex).w;
1869         fp.g.h=REGION_GEOM(mplex).h;
1870         fp.mode=REGION_FIT_BOUNDS|REGION_FIT_WHATEVER;
1871         
1872         /* Full mplex size is stupid so use saved geometry initially
1873          * if there's one.
1874          */
1875         extl_table_gets_rectangle(t, "geom", &(fp.g));
1876         
1877         data.type=REGION_ATTACH_LOAD;
1878         data.u.tab=t;
1879         
1880         stdisp=region_attach_helper((WRegion*)mplex, 
1881                                     (WWindow*)mplex, &fp,
1882                                     do_attach_stdisp, NULL,
1883                                     &data);
1884         
1885         if(stdisp==NULL)
1886             return NULL;
1887         
1888     }else if(strcmp(s, "keep")==0){
1889         stdisp=(WRegion*)(mplex->stdispwatch.obj);
1890     }else if(strcmp(s, "remove")!=0){
1891         warn(TR("Invalid action setting."));
1892         return FALSE;
1893     }
1894     
1895     if(!mplex_set_stdisp(mplex, stdisp, &din)){
1896         destroy_obj((Obj*)stdisp);
1897         return NULL;
1898     }
1899     
1900     return stdisp;
1901 }
1902
1903
1904 static ExtlTab mplex_do_get_stdisp_extl(WMPlex *mplex, bool fullconfig)
1905 {
1906     WRegion *reg=(WRegion*)mplex->stdispwatch.obj;
1907     ExtlTab t;
1908     
1909     if(reg==NULL)
1910         return extl_table_none();
1911     
1912     if(fullconfig){
1913         t=region_get_configuration(reg);
1914         extl_table_sets_rectangle(t, "geom", &REGION_GEOM(reg));
1915     }else{
1916         t=extl_create_table();
1917         extl_table_sets_o(t, "reg", (Obj*)reg);
1918     }
1919     
1920     if(t!=extl_table_none()){
1921         WMPlexSTDispInfo *di=&(mplex->stdispinfo);
1922         extl_table_sets_s(t, "pos", stringintmap_key(pos_map, di->pos, NULL));
1923         extl_table_sets_b(t, "fullsize", di->fullsize);
1924     }
1925     return t;
1926 }
1927
1928
1929 /*EXTL_DOC
1930  * Get status display information. See \fnref{WMPlex.get_stdisp} for
1931  * information on the fields.
1932  */
1933 EXTL_SAFE
1934 EXTL_EXPORT_AS(WMPlex, get_stdisp)
1935 ExtlTab mplex_get_stdisp_extl(WMPlex *mplex)
1936 {
1937     return mplex_do_get_stdisp_extl(mplex, FALSE);
1938 }
1939
1940
1941 /*}}}*/
1942
1943
1944 /*{{{ Dynfuns */
1945
1946
1947 void mplex_managed_geom_default(const WMPlex *mplex, WRectangle *geom)
1948 {
1949     geom->x=0;
1950     geom->y=0;
1951     geom->w=REGION_GEOM(mplex).w;
1952     geom->h=REGION_GEOM(mplex).h;
1953 }
1954
1955
1956 void mplex_managed_geom(const WMPlex *mplex, WRectangle *geom)
1957 {
1958     CALL_DYN(mplex_managed_geom, mplex, (mplex, geom));
1959 }
1960
1961
1962 void mplex_size_changed(WMPlex *mplex, bool wchg, bool hchg)
1963 {
1964     CALL_DYN(mplex_size_changed, mplex, (mplex, wchg, hchg));
1965 }
1966
1967
1968 void mplex_managed_changed(WMPlex *mplex, int mode, bool sw, WRegion *mgd)
1969 {
1970     CALL_DYN(mplex_managed_changed, mplex, (mplex, mode, sw, mgd));
1971 }
1972
1973
1974 int mplex_default_index(WMPlex *mplex)
1975 {
1976     int idx=LLIST_INDEX_LAST;
1977     CALL_DYN_RET(idx, int, mplex_default_index, mplex, (mplex));
1978     return idx;
1979 }
1980
1981
1982 /* For regions managing stdisps */
1983
1984 void region_manage_stdisp(WRegion *reg, WRegion *stdisp, 
1985                           const WMPlexSTDispInfo *info)
1986 {
1987     CALL_DYN(region_manage_stdisp, reg, (reg, stdisp, info));
1988 }
1989
1990
1991 void region_unmanage_stdisp(WRegion *reg, bool permanent, bool nofocus)
1992 {
1993     CALL_DYN(region_unmanage_stdisp, reg, (reg, permanent, nofocus));
1994 }
1995
1996
1997 /*}}}*/
1998
1999
2000 /*{{{ Changed hook helper */
2001
2002
2003 static const char *mode2str(int mode)
2004 {
2005     if(mode==MPLEX_CHANGE_SWITCHONLY)
2006         return "switchonly";
2007     else if(mode==MPLEX_CHANGE_REORDER)
2008         return "reorder";
2009     else if(mode==MPLEX_CHANGE_ADD)
2010         return "add";
2011     else if(mode==MPLEX_CHANGE_REMOVE)
2012         return "remove";
2013     return NULL;
2014 }
2015     
2016
2017 static bool mrsh_chg(ExtlFn fn, WMPlexChangedParams *p)
2018 {
2019     ExtlTab t=extl_create_table();
2020     bool ret;
2021     
2022     extl_table_sets_o(t, "reg", (Obj*)p->reg);
2023     extl_table_sets_s(t, "mode", mode2str(p->mode));
2024     extl_table_sets_b(t, "sw", p->sw);
2025     extl_table_sets_o(t, "sub", (Obj*)p->sub);
2026     
2027     extl_protect(NULL);
2028     ret=extl_call(fn, "t", NULL, t);
2029     extl_unprotect(NULL);
2030     
2031     extl_unref_table(t);
2032     
2033     return ret;
2034 }
2035
2036
2037 void mplex_call_changed_hook(WMPlex *mplex, WHook *hook, 
2038                              int mode, bool sw, WRegion *reg)
2039 {
2040     WMPlexChangedParams p;
2041     
2042     p.reg=mplex;
2043     p.mode=mode;
2044     p.sw=sw;
2045     p.sub=reg;
2046
2047     hook_call_p(hook, &p, (WHookMarshallExtl*)mrsh_chg);
2048 }
2049
2050
2051 /*}}} */
2052
2053
2054 /*{{{ Save/load */
2055
2056
2057 static void save_node(WMPlex *mplex, ExtlTab subs, int *n, 
2058                       WStacking *node, bool unnumbered)
2059 {
2060     ExtlTab st, g;
2061     
2062     st=region_get_configuration(node->reg);
2063     
2064     if(st!=extl_table_none()){
2065         if(mplex->mx_current!=NULL && node==mplex->mx_current->st)
2066             extl_table_sets_b(st, "switchto", TRUE);
2067         extl_table_sets_s(st, "sizepolicy", 
2068                           sizepolicy2string(node->szplcy));
2069         extl_table_sets_i(st, "level", node->level);
2070         g=extl_table_from_rectangle(&REGION_GEOM(node->reg));
2071         extl_table_sets_t(st, "geom", g);
2072         extl_unref_table(g);
2073         if(STACKING_IS_HIDDEN(node))
2074             extl_table_sets_b(st, "hidden", TRUE);
2075         if(STACKING_IS_PSEUDOMODAL(node))
2076             extl_table_sets_b(st, "pseudomodal", TRUE);
2077         if(unnumbered)
2078             extl_table_sets_b(st, "unnumbered", TRUE);
2079         
2080         extl_table_seti_t(subs, ++(*n), st);
2081         extl_unref_table(st);
2082     }
2083 }
2084
2085
2086 ExtlTab mplex_get_configuration(WMPlex *mplex)
2087 {
2088     ExtlTab tab, subs, stdisptab;
2089     WMPlexIterTmp tmp;
2090     WLListIterTmp ltmp;
2091     WLListNode *lnode;
2092     WStacking *node;
2093     int n=0;
2094     
2095     tab=region_get_base_configuration((WRegion*)mplex);
2096     
2097     subs=extl_create_table();
2098     extl_table_sets_t(tab, "managed", subs);
2099     
2100     /* First the numbered/mutually exclusive nodes */
2101     FOR_ALL_NODES_ON_LLIST(lnode, mplex->mx_list, ltmp){
2102         save_node(mplex, subs, &n, lnode->st, FALSE);
2103     }
2104
2105     FOR_ALL_NODES_IN_MPLEX(mplex, node, tmp){
2106         if(node->lnode==NULL)
2107             save_node(mplex, subs, &n, node, TRUE);
2108     }
2109
2110     extl_unref_table(subs);
2111     
2112     /*stdisptab=mplex_do_get_stdisp_extl(mplex, TRUE);
2113     if(stdisptab!=extl_table_none()){
2114         extl_table_sets_t(tab, "stdisp", stdisptab);
2115         extl_unref_table(stdisptab);
2116     }*/
2117     
2118     return tab;
2119 }
2120
2121
2122 void mplex_load_contents(WMPlex *mplex, ExtlTab tab)
2123 {
2124     ExtlTab substab, subtab;
2125     int n, i;
2126
2127     /*if(extl_table_gets_t(tab, "stdisp", &subtab)){
2128         mplex_set_stdisp_extl(mplex, subtab);
2129         extl_unref_table(subtab);
2130     }*/
2131     
2132     if(extl_table_gets_t(tab, "managed", &substab) ||
2133        extl_table_gets_t(tab, "subs", &substab)){
2134         n=extl_table_get_n(substab);
2135         for(i=1; i<=n; i++){
2136             if(extl_table_geti_t(substab, i, &subtab)){
2137                 WMPlexAttachParams par=MPLEXATTACHPARAMS_INIT;
2138                 WFitParams fp;
2139                 WPHolder *ph;
2140                 
2141                 get_params(mplex, subtab, 0, &par);
2142                 mplex_attach_fp(mplex, &par, &fp);
2143                 
2144                 par.flags|=MPLEX_ATTACH_INDEX;
2145                 par.index=LLIST_INDEX_LAST;
2146                 
2147                 ph=(WPHolder*)create_mplexpholder(mplex, NULL, &par);
2148                 
2149                 if(ph!=NULL){
2150                     region_attach_load_helper((WRegion*)mplex, (WWindow*)mplex, &fp,
2151                                               (WRegionDoAttachFn*)mplex_do_attach_final,
2152                                               (void*)ph, subtab, &ph);
2153                                               
2154                     if(ph!=NULL)
2155                         destroy_obj((Obj*)ph);
2156                 }
2157                 
2158                 extl_unref_table(subtab);
2159             }
2160         }
2161         extl_unref_table(substab);
2162     }
2163 }
2164
2165
2166 WRegion *mplex_load(WWindow *par, const WFitParams *fp, ExtlTab tab)
2167 {
2168     WMPlex *mplex=create_mplex(par, fp);
2169     if(mplex!=NULL)
2170         mplex_load_contents(mplex, tab);
2171     return (WRegion*)mplex;
2172 }
2173
2174
2175 /*}}}*/
2176
2177
2178 /*{{{ Dynfuntab and class info */
2179
2180
2181 static DynFunTab mplex_dynfuntab[]={
2182     {region_do_set_focus, 
2183      mplex_do_set_focus},
2184     
2185     {region_managed_remove, 
2186      mplex_managed_remove},
2187     
2188     {region_managed_rqgeom,
2189      mplex_managed_rqgeom},
2190     
2191     {(DynFun*)region_managed_prepare_focus,
2192      (DynFun*)mplex_managed_prepare_focus},
2193     
2194     {(DynFun*)region_handle_drop, 
2195      (DynFun*)mplex_handle_drop},
2196     
2197     {region_map, mplex_map},
2198     {region_unmap, mplex_unmap},
2199     
2200     {(DynFun*)region_prepare_manage,
2201      (DynFun*)mplex_prepare_manage},
2202     
2203     {(DynFun*)region_current,
2204      (DynFun*)mplex_current},
2205     
2206     {(DynFun*)region_rescue_clientwins,
2207      (DynFun*)mplex_rescue_clientwins},
2208     
2209     {(DynFun*)region_get_configuration,
2210      (DynFun*)mplex_get_configuration},
2211     
2212     {mplex_managed_geom, 
2213      mplex_managed_geom_default},
2214     
2215     {(DynFun*)region_fitrep,
2216      (DynFun*)mplex_fitrep},
2217     
2218     {region_child_removed,
2219      mplex_child_removed},
2220     
2221     {(DynFun*)region_managed_get_pholder,
2222      (DynFun*)mplex_managed_get_pholder},
2223
2224     {(DynFun*)region_get_rescue_pholder_for,
2225      (DynFun*)mplex_get_rescue_pholder_for},
2226
2227     {(DynFun*)region_navi_first,
2228      (DynFun*)mplex_navi_first},
2229     
2230     {(DynFun*)region_navi_next,
2231      (DynFun*)mplex_navi_next},
2232     
2233     {(DynFun*)region_managed_rqorder,
2234      (DynFun*)mplex_managed_rqorder},
2235     
2236     END_DYNFUNTAB
2237 };
2238
2239
2240 EXTL_EXPORT
2241 IMPLCLASS(WMPlex, WWindow, mplex_deinit, mplex_dynfuntab);
2242
2243
2244 /*}}}*/
2245