[Monodevelop-patches-list] r2407 - trunk/MonoDevelop/Core/src/MonoDevelop.Dock
John Luke <jluke@cfl.rr.com>
jluke at mono-cvs.ximian.com
Thu Mar 31 12:22:50 EST 2005
Author: jluke
Date: 2005-03-31 12:22:50 -0500 (Thu, 31 Mar 2005)
New Revision: 2407
Modified:
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/AfterAttribute.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/AssemblyInfo.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/ChangeLog
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DetachedHandler.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/Dock.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockBar.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockBarButton.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockItem.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockItemGrip.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockLayout.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockMaster.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockNotebook.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockObject.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockObjectFlags.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockPaned.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockPlaceholder.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockRequest.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockedHandler.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/ExportAttribute.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/Stock.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Dock/TODO
Log:
update TODO and add license headers
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/AfterAttribute.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/AfterAttribute.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/AfterAttribute.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,3 +1,22 @@
+/*
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * 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;
namespace Gdl
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/AssemblyInfo.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/AssemblyInfo.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/AssemblyInfo.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,32 +1,39 @@
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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.Reflection;
using System.Runtime.CompilerServices;
-// Information about this assembly is defined by the following
-// attributes.
-//
-// change them to the information which is associated with the assembly
-// you compile.
-
-[assembly: AssemblyTitle("")]
-[assembly: AssemblyDescription("")]
+[assembly: AssemblyTitle("MonoDevelop.Dock")]
+[assembly: AssemblyDescription("Docking widget for Gtk#")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
-[assembly: AssemblyCopyright("")]
+[assembly: AssemblyCopyright("(C) 2004-2005 MonoDevelop contributors")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
-
-// The assembly version has following format :
-//
-// Major.Minor.Build.Revision
-//
-// You can specify all values by your own or you can build default build and revision
-// numbers with the '*' character (the default):
-
[assembly: AssemblyVersion("1.0.*")]
-
-// The following attributes specify the key for the sign of your assembly. See the
-// .NET Framework documentation for more information about signing.
-// This is not required, if you don't want signing let these attributes like they're.
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("")]
+
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/ChangeLog 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/ChangeLog 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,3 +1,8 @@
+2005-03-31 John Luke <john.luke at gmail.com>
+
+ * *.cs: add license headers
+ * TODO: update
+
2005-03-29 Alp Toker <alp at atoker.com>
* DockPaned.cs: make the central pane resize rather than the edge
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DetachedHandler.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DetachedHandler.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DetachedHandler.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,3 +1,27 @@
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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;
namespace Gdl
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/Dock.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/Dock.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/Dock.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,4 +1,26 @@
-// created on 05/06/2004 at 11:21 A
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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;
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockBar.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockBar.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockBar.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,4 +1,24 @@
-// created on 6/24/2004 at 7:43 PM
+/*
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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;
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockBarButton.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockBarButton.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockBarButton.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,3 +1,25 @@
+/*
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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 Gtk;
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockItem.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockItem.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockItem.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,4 +1,26 @@
-// created on 06/06/2004 at 10:09 P
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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.Xml;
using Gtk;
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockItemGrip.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockItemGrip.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockItemGrip.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,4 +1,26 @@
-// created on 07/06/2004 at 2:52 P
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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 Gtk;
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockLayout.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockLayout.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockLayout.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,3 +1,27 @@
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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.IO;
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockMaster.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockMaster.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockMaster.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,4 +1,26 @@
-// created on 05/06/2004 at 11:14 A
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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;
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockNotebook.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockNotebook.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockNotebook.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,4 +1,26 @@
-// created on 07/06/2004 at 5:44 P
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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.Xml;
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockObject.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockObject.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockObject.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,4 +1,27 @@
-// project created on 04/06/2004 at 6:37 P
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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.Reflection;
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockObjectFlags.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockObjectFlags.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockObjectFlags.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,3 +1,26 @@
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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;
namespace Gdl
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockPaned.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockPaned.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockPaned.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,4 +1,26 @@
-// created on 07/06/2004 at 5:43 P
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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.Xml;
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockPlaceholder.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockPlaceholder.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockPlaceholder.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,4 +1,26 @@
-// created on 07/06/2004 at 5:43 P
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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;
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockRequest.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockRequest.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockRequest.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,4 +1,26 @@
-// created on 04/06/2004 at 6:59 P
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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 Gtk;
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockedHandler.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockedHandler.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/DockedHandler.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,3 +1,26 @@
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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;
namespace Gdl
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/ExportAttribute.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/ExportAttribute.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/ExportAttribute.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,3 +1,24 @@
+/*
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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;
namespace Gdl
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/Stock.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/Stock.cs 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/Stock.cs 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,3 +1,27 @@
+/*
+ * Copyright (C) 2004 Todd Berman <tberman at off.net>
+ * Copyright (C) 2004 Jeroen Zwartepoorte <jeroen at xs4all.nl>
+ * Copyright (C) 2005 John Luke <john.luke at gmail.com>
+ *
+ * based on work by:
+ * Copyright (C) 2002 Gustavo Giráldez <gustavo.giraldez at 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 Gtk;
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Dock/TODO
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Dock/TODO 2005-03-31 15:38:27 UTC (rev 2406)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Dock/TODO 2005-03-31 17:22:50 UTC (rev 2407)
@@ -1,7 +1,3 @@
- - proper license headers
- - resizing issues
- setting the notebook position from a layout
- removing one side of a pane, doubles the others size
- placeholders in layout store/restore
- docs
- when we can use pango 1.6, use the built-in ellipsizing
More information about the Monodevelop-patches-list
mailing list