123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- /*
- * $Id$
- *
- * Copyright (C) 2004 Todd Berman <tberman@off.net>
- * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen@xs4all.nl>
- * Copyright (C) 2005 John Luke <john.luke@gmail.com>
- *
- * based on work by:
- * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez@gmx.net>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
- using System;
- using System.Collections;
- using System.Xml;
- using Gtk;
- namespace Gdl
- {
- public class DockPlaceholder : DockObject
- {
- private DockObject host;
- private bool sticky;
- private Stack placementStack;
- protected DockPlaceholder (IntPtr raw) : base (raw) { }
- public DockPlaceholder (string name, DockObject obj,
- DockPlacement position, bool sticky)
- {
- WidgetFlags |= WidgetFlags.NoWindow;
- WidgetFlags &= ~(WidgetFlags.CanFocus);
- Sticky = sticky;
- Name = name;
- if (obj != null) {
- Attach (obj);
- if (position == DockPlacement.None)
- position = DockPlacement.Center;
- NextPlacement = position;
- //the top placement will be consumed by the toplevel dock, so add a dummy placement
- if (obj is Dock)
- NextPlacement = DockPlacement.Center;
- // try a recursion
- DoExcursion ();
- }
- }
- public DockPlaceholder (DockObject obj, bool sticky) :
- this (obj.Name, obj, DockPlacement.None, sticky) { }
- public DockObject Host {
- get {
- return host;
- }
- set {
- Attach (value);
- EmitPropertyEvent ("Host");
- }
- }
- [After]
- [Export]
- public DockPlacement NextPlacement {
- get {
- if (placementStack != null && placementStack.Count > 0)
- return (DockPlacement) placementStack.Pop ();
- return DockPlacement.Center;
- }
- set {
- if (placementStack == null)
- placementStack = new Stack ();
- placementStack.Push (value);
- }
- }
- public bool Sticky {
- get {
- return sticky;
- }
- set {
- sticky = value;
- EmitPropertyEvent ("Sticky");
- }
- }
- protected override void OnDestroyed ()
- {
- if (host != null)
- OnDetached (false);
- base.OnDestroyed ();
- }
- protected override void OnAdded (Widget widget)
- {
- if (!(widget is DockItem))
- return;
- Dock ((DockItem)widget, NextPlacement, null);
- }
- public override void OnDetached (bool recursive)
- {
- // disconnect handlers
- DisconnectHost ();
- // free the placement stack
- placementStack = null;
- DockObjectFlags &= ~(DockObjectFlags.Attached);
- }
- public override void OnReduce ()
- {
- // placeholders are not reduced
- }
- public override void OnDocked (DockObject requestor, DockPlacement position, object data)
- {
- if (host != null) {
- // we simply act as a placeholder for our host
- host.Dock (requestor, position, data);
- } else {
- if (!IsBound) {
- Console.WriteLine ("Attempt to dock a dock object to an unbound placeholder");
- return;
- }
- // dock the item as a floating of the controller
- Master.Controller.Dock (requestor, DockPlacement.Floating, null);
- }
- }
- public override void OnPresent (DockObject child)
- {
- // do nothing
- }
- /*
- * Tries to shrink the placement stack by examining the host's
- * children and see if any of them matches the placement which is at
- * the top of the stack. If this is the case, it tries again with the
- * new host.
- */
- public void DoExcursion ()
- {
- if (host != null && !Sticky && placementStack != null && placementStack.Count > 0 && host.IsCompound) {
- DockPlacement pos;
- DockPlacement stack_pos = NextPlacement;
- foreach (Widget child in host.Children) {
- DockObject item = child as DockObject;
- if (item == null)
- continue;
- pos = stack_pos;
- host.ChildPlacement (item, ref pos);
- if (pos == stack_pos) {
- // remove the stack position
- if (placementStack.Count > 1)
- placementStack.Pop ();
- DisconnectHost ();
- // connect to the new host
- ConnectHost (item);
- // recurse ...
- if (!item.InReflow)
- DoExcursion ();
- break;
- }
- }
- }
- }
- private void DisconnectHost ()
- {
- if (host == null)
- return;
- host.Detached -= new DetachedHandler (OnHostDetached);
- host.Docked -= new DockedHandler (OnHostDocked);
- host = null;
- }
- private void ConnectHost (DockObject newHost)
- {
- if (host != null)
- DisconnectHost ();
- host = newHost;
- host.Detached += new DetachedHandler (OnHostDetached);
- host.Docked += new DockedHandler (OnHostDocked);
- }
- public void Attach (DockObject objekt)
- {
- if (objekt == null)
- return;
- // object binding
- if (!IsBound)
- Bind(objekt.Master);
- if (objekt.Master != Master)
- return;
- Freeze ();
- // detach from previous host first
- if (host != null)
- Detach (false);
- ConnectHost (objekt);
- DockObjectFlags |= DockObjectFlags.Attached;
- Thaw ();
- }
- void OnHostDetached (object sender, DetachedArgs a)
- {
- // skip sticky objects
- if (sticky)
- return;
- // go up in the hierarchy
- DockObject newHost = host.ParentObject;
- while (newHost != null) {
- DockPlacement pos = DockPlacement.None;
- // get a placement hint from the new host
- if (newHost.ChildPlacement (host, ref pos))
- NextPlacement = pos;
- else
- Console.WriteLine ("Something weird happened while getting the child placement for {0} from parent {1}", host, newHost);
- // we found a "stable" dock object
- if (newHost.InDetach)
- break;
- newHost = newHost.ParentObject;
- }
- // disconnect host
- DisconnectHost ();
- // the toplevel was detached: we attach ourselves to the
- // controller with an initial placement of floating
- if (newHost == null) {
- newHost = this.Master.Controller;
- NextPlacement = DockPlacement.Floating;
- }
- if (newHost != null)
- ConnectHost (newHost);
- PrintPlacementStack ();
- }
- void OnHostDocked (object sender, DockedArgs a)
- {
- DockObject obj = sender as DockObject;
- // see if the given position is compatible for the stack's top element
- if (!sticky && placementStack != null) {
- DockPlacement pos = NextPlacement;
- if (obj.ChildPlacement (a.Requestor, ref pos))
- DoExcursion ();
- }
- PrintPlacementStack ();
- }
- [System.Diagnostics.Conditional ("DEBUG")]
- void PrintPlacementStack ()
- {
- }
- }
- }
|