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