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