123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /*
- * $Id$
- *
- * 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 Gtk;
- namespace Gdl
- {
- /// <summary>
- /// This class is used to represent a number of iconified DockItems.
- /// It shows the icons by means of an according number of DockBarButtons.
- /// </summary>
- public class DockBar : VBox
- {
- DockMaster master;
- ArrayList items;
-
- public DockBar (Dock dock)
- {
- items = new ArrayList ();
- Master = dock.Master;
- }
- public DockMaster Master
- {
- get { return master; }
- set { this.Attach (value); }
- }
- public void AddItem (DockItem item)
- {
- // check if already there
- if (items.Contains (item)) {
- Console.WriteLine ("WARNING: Item has already been added to the dockbar");
- return;
- }
- items.Add (item);
- // create a button for the item
- DockBarButton button = new DockBarButton (item);
- this.PackStart (button, false, false, 0);
- button.TooltipText = item.LongName;
- item.DockBar = this;
- item.DockBarButton = button;
- button.Clicked += new EventHandler (OnDockButtonClicked);
- this.ShowAll ();
- }
- public void Attach (DockMaster master)
- {
- if (master == null)
- return;
- master.LayoutChanged -= new EventHandler (OnLayoutChanged);
- this.master = master;
- master.LayoutChanged += new EventHandler (OnLayoutChanged);
- }
- public override void Destroy ()
- {
- if (master != null) {
- master.LayoutChanged -= new EventHandler (OnLayoutChanged);
- master = null;
- }
-
- base.Destroy ();
- }
- public void RemoveItem (DockItem item)
- {
- // we can only remove if it is there
- if (items.Contains (item)) {
- items.Remove (item);
- this.Remove (item.DockBarButton);
- // item.DockBarButton = null;
- }
- else {
- Console.WriteLine ("WARNING: {0} has not been added to the dockbar", item.Name);
- }
- }
- void UpdateDockItems ()
- {
- if (master == null)
- return;
- foreach (object o in master.DockObjects)
- {
- DockItem item = o as DockItem;
- if (item == null)
- continue;
- // in items but shouldn't be, remove it
- if (items.Contains (item) && !item.Iconified)
- this.RemoveItem (item);
- // not in items but should be, add it
- else if (!items.Contains (item) && item.Iconified)
- this.AddItem (item);
- }
- }
- void OnLayoutChanged (object o, EventArgs args)
- {
- UpdateDockItems ();
- }
- void OnDockButtonClicked (object o, EventArgs args)
- {
- DockItem item = ((DockBarButton) o).DockItem;
- item.DockBar = null;
- item.ShowItem ();
- item.Master.Controller.QueueResize ();
- }
- }
- }
|