[Monodevelop-patches-list] r1046 - in branches/MonoDevelop-playground: . src src/Main src/Plugins src/Plugins/Workbench src/StartUp

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Fri Feb 27 07:01:07 EST 2004


Author: jzwart
Date: 2004-02-27 07:01:07 -0500 (Fri, 27 Feb 2004)
New Revision: 1046

Added:
   branches/MonoDevelop-playground/src/Plugins/
   branches/MonoDevelop-playground/src/Plugins/Makefile.am
   branches/MonoDevelop-playground/src/Plugins/Workbench/
   branches/MonoDevelop-playground/src/Plugins/Workbench/IWorkbenchWidgetFactory.cs
   branches/MonoDevelop-playground/src/Plugins/Workbench/Makefile.am
   branches/MonoDevelop-playground/src/Plugins/Workbench/Workbench.cs
   branches/MonoDevelop-playground/src/Plugins/Workbench/WorkbenchCommand.cs
   branches/MonoDevelop-playground/src/Plugins/Workbench/WorkbenchPlugin.cs
   branches/MonoDevelop-playground/src/Plugins/Workbench/workbench.plugin.in
   branches/MonoDevelop-playground/src/Plugins/Workbench/workbench.ui
   branches/MonoDevelop-playground/src/StartUp/
   branches/MonoDevelop-playground/src/StartUp/BasePlugin.cs
   branches/MonoDevelop-playground/src/StartUp/ICommand.cs
   branches/MonoDevelop-playground/src/StartUp/Makefile.am
   branches/MonoDevelop-playground/src/StartUp/MonoDevelop.cs
   branches/MonoDevelop-playground/src/StartUp/monodevelop.exe.config.in
Removed:
   branches/MonoDevelop-playground/src/Main/StartUp/
   branches/MonoDevelop-playground/src/StartUp/Makefile.am
Modified:
   branches/MonoDevelop-playground/configure.in
   branches/MonoDevelop-playground/src/Makefile.am
Log:
Starting moving AddIns to src/Plugins. Moved StartUp dir under src directory.


Modified: branches/MonoDevelop-playground/configure.in
===================================================================
--- branches/MonoDevelop-playground/configure.in	2004-02-27 11:18:26 UTC (rev 1045)
+++ branches/MonoDevelop-playground/configure.in	2004-02-27 12:01:07 UTC (rev 1046)
@@ -71,48 +71,9 @@
 gdldock/sources/gdl/Makefile
 gtkmozembed-sharp/Makefile
 src/Makefile
-src/AddIns/Makefile
-src/AddIns/BackendBindings/Makefile
-src/AddIns/BackendBindings/CSharpBinding/Makefile
-src/AddIns/DisplayBindings/Makefile
-src/AddIns/DisplayBindings/SourceEditor/Makefile
-src/AddIns/Misc/Makefile
-src/AddIns/Misc/StartPage/Makefile
-src/Main/Makefile
-src/Main/Base/Makefile
-src/Main/StartUp/Makefile
-src/Libraries/Makefile
-src/Libraries/MonoDevelop.Core/Makefile
-src/Libraries/MonoDevelop.Gui.Utils/Makefile
-src/Libraries/MonoDevelop.Gui.Widgets/Makefile
-src/Libraries/SharpAssembly/Makefile
-src/Libraries/SharpRefactory/Makefile
-build/Makefile
-build/data/Makefile
-build/data/resources/Makefile
-build/data/options/Makefile
-build/data/resources/css/Makefile
-build/data/resources/icons/Makefile
-build/data/resources/languages/Makefile
-build/data/templates/Makefile
-build/data/templates/file/Makefile
-build/data/templates/file/CSharp/Makefile
-build/data/templates/file/SharpDevelop/Makefile
-build/data/templates/file/VBNet/Makefile
-build/data/templates/project/Makefile
-build/data/templates/project/CSharp/Makefile
-build/data/templates/project/Java/Makefile
-build/data/templates/project/Misc/Makefile
-build/data/templates/project/VBNet/Makefile
-build/doc/Makefile
-build/AddIns/Makefile
-build/AddIns/AddIns/Makefile
-build/AddIns/AddIns/BackendBindings/Makefile
-build/AddIns/AddIns/Misc/Makefile
-build/AddIns/AddIns/Misc/StartPage/Makefile
-data/Makefile
-data/resources/Makefile
-data/resources/glade/Makefile
+src/StartUp/Makefile
+src/Plugins/Makefile
+src/Plugins/Workbench/Makefile
 monodevelop
 ])
 

Modified: branches/MonoDevelop-playground/src/Makefile.am
===================================================================
--- branches/MonoDevelop-playground/src/Makefile.am	2004-02-27 11:18:26 UTC (rev 1045)
+++ branches/MonoDevelop-playground/src/Makefile.am	2004-02-27 12:01:07 UTC (rev 1046)
@@ -1 +1 @@
-SUBDIRS=Libraries Main AddIns
+SUBDIRS=StartUp Plugins

Added: branches/MonoDevelop-playground/src/Plugins/Makefile.am
===================================================================
--- branches/MonoDevelop-playground/src/Plugins/Makefile.am	2004-02-27 11:18:26 UTC (rev 1045)
+++ branches/MonoDevelop-playground/src/Plugins/Makefile.am	2004-02-27 12:01:07 UTC (rev 1046)
@@ -0,0 +1 @@
+SUBDIRS = Workbench

Added: branches/MonoDevelop-playground/src/Plugins/Workbench/IWorkbenchWidgetFactory.cs
===================================================================
--- branches/MonoDevelop-playground/src/Plugins/Workbench/IWorkbenchWidgetFactory.cs	2004-02-27 11:18:26 UTC (rev 1045)
+++ branches/MonoDevelop-playground/src/Plugins/Workbench/IWorkbenchWidgetFactory.cs	2004-02-27 12:01:07 UTC (rev 1046)
@@ -0,0 +1,33 @@
+//
+// IBrowserWidgetFactory.cs: Factory interface for creating browser widgets.
+//
+// Author:
+//   Jeroen Zwartepoorte <jeroen at xs4all.nl>
+//
+// (C) Copyright Jeroen Zwartepoorte 2003
+//
+
+using Gtk;
+using System;
+
+namespace MonoDevelop.Workbench {
+	public interface IWorkbenchWidgetFactory {
+		string WidgetName {
+			get;
+		}
+	
+		string WidgetTitle {
+			get;
+		}
+		
+		Gdk.Pixbuf WidgetIcon {
+			get;
+		}
+		
+		bool Dockable {
+			get;
+		}
+	
+		Widget CreateWidget (Workbench workbench);
+	}
+}

Added: branches/MonoDevelop-playground/src/Plugins/Workbench/Makefile.am
===================================================================
--- branches/MonoDevelop-playground/src/Plugins/Workbench/Makefile.am	2004-02-27 11:18:26 UTC (rev 1045)
+++ branches/MonoDevelop-playground/src/Plugins/Workbench/Makefile.am	2004-02-27 12:01:07 UTC (rev 1046)
@@ -0,0 +1,35 @@
+workbenchdir = $(libdir)/monodevelop
+workbenchassembly = $(workbenchdir)/workbench.dll
+workbench_DATA = workbench.dll
+plugindir = $(monodevelop_plugin_dir)
+plugin_DATA = workbench.plugin
+uidir = $(monodevelop_ui_dir)
+ui_DATA = workbench.ui
+CLEANFILES = workbench.dll workbench.plugin
+CSC = mcs
+
+workbench_sources = \
+	Workbench.cs \
+	WorkbenchCommand.cs \
+	WorkbenchPlugin.cs \
+	IWorkbenchWidgetFactory.cs
+
+workbench_assemblies = \
+	-r:../../StartUp/monodevelop.exe \
+	-r:log4net.dll \
+	-r:gtk-sharp.dll \
+	-r:gdk-sharp.dll \
+	-r:glib-sharp.dll \
+	-r:gnome-sharp.dll \
+	-r:../../../build/bin/gdl-sharp.dll
+
+workbench.dll: $(workbench_sources)
+	$(CSC) -debug -t:library -out:workbench.dll $(workbench_sources) $(workbench_assemblies)
+
+workbench.plugin: workbench.plugin.in
+	sed -e 's^\@assembly\@^$(workbenchassembly)^g' < $(srcdir)/workbench.plugin.in > workbench.plugin
+
+EXTRA_DIST = \
+	$(workbench_sources) \
+	workbench.plugin.in \
+	workbench.ui

Added: branches/MonoDevelop-playground/src/Plugins/Workbench/Workbench.cs
===================================================================
--- branches/MonoDevelop-playground/src/Plugins/Workbench/Workbench.cs	2004-02-27 11:18:26 UTC (rev 1045)
+++ branches/MonoDevelop-playground/src/Plugins/Workbench/Workbench.cs	2004-02-27 12:01:07 UTC (rev 1046)
@@ -0,0 +1,246 @@
+//
+// Workbench.cs: Main window containing a menu-, tool- and statusbar.
+//
+// Author:
+//   Jeroen Zwartepoorte <jeroen at xs4all.nl>
+//
+// (C) Copyright Jeroen Zwartepoorte 2004
+//
+
+using System;
+using System.Collections;
+using System.Configuration;
+using System.IO;
+using Gdk;
+using Gtk;
+using GtkSharp;
+using Gnome;
+using Gdl;
+using log4net;
+
+namespace MonoDevelop.Workbench {
+	public class Workbench : Gtk.Window {
+		private static readonly ILog log = LogManager.GetLogger (typeof (Workbench));
+		private static bool initialized = false;
+		private static ArrayList workbenches = new ArrayList ();
+		private static ArrayList widgets = new ArrayList ();
+		private static ArrayList groups = new ArrayList ();
+		private static ArrayList uiinfos = new ArrayList ();
+	
+		private VBox box;
+		private Dock dock;
+		private Statusbar statusbar;
+		private UIManager manager;
+		private About about = null;
+	
+		private Workbench () : base ("MonoDevelop")
+		{
+			box = new VBox (false, 0);
+			Add (box);
+	
+			statusbar = new Statusbar ();
+			box.PackEnd (statusbar, false, true, 0);
+	
+			dock = new Dock ();
+			box.PackEnd (dock, true, true, 0);
+			
+			manager = new UIManager ();
+			manager.AddWidget += new AddWidgetHandler (OnWidgetAdd);
+			
+			AddActions ();
+			AddWidgets ();
+			UpdateUI ();
+		}
+		
+		private Workbench (string[] files) : this ()
+		{
+		}
+	
+		private void AddActions ()
+		{
+			ActionGroup group = new ActionGroup ("Workbench");
+			// File menu.
+			group.Add (new ActionEntry ("FileMenuAction", null, "_File",
+						    null, null, null));
+			group.Add (new ActionEntry ("CloseWindowAction", null,
+						    "Close _Window", "<control><shift>q",
+						    "Close this window",
+						    new GLib.Callback (OnCloseWindow)));
+			group.Add (new ActionEntry ("QuitAction", Gtk.Stock.Quit, null,
+						    "<control>q", "Quit the program",
+						    new GLib.Callback (OnQuit)));
+			// View menu.
+			group.Add (new ActionEntry ("ViewMenuAction", null, "_View",
+						    null, null, null));
+			// Window menu.
+			group.Add (new ActionEntry ("WindowMenuAction", null, "_Window",
+						    null, null, null));
+			group.Add (new ActionEntry ("NewWindowAction", null, "_New Window",
+						    null, null, null));
+			// Help menu.
+			group.Add (new ActionEntry ("HelpMenuAction", null, "_Help",
+						    null, null, null));
+			group.Add (new ActionEntry ("AboutAction", Gnome.Stock.About,
+						    "_About", null, "About this application",
+						    new GLib.Callback (OnAbout)));
+			AddActionGroup (group);
+			AddUiFromFile ("browser.ui");
+		}
+	
+		private void AddWidgets ()
+		{
+			foreach (IWorkbenchWidgetFactory factory in widgets) {
+				DockItem item = new DockItem (factory.WidgetName,
+							      factory.WidgetTitle,
+							      factory.Dockable ? 
+								DockItemBehavior.Normal :
+								DockItemBehavior.Locked);
+				item.Add (factory.CreateWidget (this));
+				dock.AddItem (item, DockPlacement.Top);
+			}
+		}
+	
+		private void UpdateUI ()
+		{
+			foreach (ActionGroup group in groups)
+				manager.InsertActionGroup (group, 0);
+	
+			foreach (string ui in uiinfos)
+				manager.AddUiFromString (ui);
+		}
+	
+		////////////////////////////////////////////////////////////////////////
+		// Event handlers
+		////////////////////////////////////////////////////////////////////////
+	
+		private void OnCloseWindow (GLib.Object obj)
+		{
+		}
+	
+		private void OnQuit (GLib.Object obj)
+		{
+			Application.Quit ();
+		}
+	
+		private void OnAbout (GLib.Object obj)
+		{
+		}
+		
+		private void OnWidgetAdd (object obj, AddWidgetArgs args)
+		{
+			box.PackStart (args.Widget, false, true, 0);
+			args.Widget.Show ();
+		}
+	
+		////////////////////////////////////////////////////////////////////////
+		// Static methods
+		////////////////////////////////////////////////////////////////////////
+	
+		internal static void CreateDefaultInstance (string[] args)
+		{
+			if (initialized) {
+				log.Error ("Workbench.CreateDefaultInstance may only be called once");
+				return;
+			}
+	
+			Program program = new Program ("Workbench", "0.1", Modules.UI, args);
+	
+			Workbench wb = new Workbench (args);
+			wb.DeleteEvent += new DeleteEventHandler (OnWindowDelete);
+			wb.ShowAll ();
+			workbenches.Add (wb);
+			
+			initialized = true;
+			
+			program.Run ();
+		}
+	
+		static void OnWindowDelete (object obj, DeleteEventArgs args)
+		{
+			Workbench wb = obj as Workbench;
+			workbenches.Remove (wb);
+			
+			if (workbenches.Count == 0)
+				Application.Quit ();
+	
+			args.RetVal = true;
+		}
+	
+		static void OnSelect (object obj, EventArgs args)
+		{
+			Action action = ((GLib.Object)obj).Data["action"] as Action;
+			ActiveBrowser.statusbar.Push (0, action.Tooltip);
+		}
+	
+		static void OnDeselect (object obj, EventArgs args)
+		{
+			ActiveWorkbench.statusbar.Pop (0);
+		}
+	
+		static void OnProxyConnected (object obj, AddWidgetArgs args)
+		{
+			if (args.Widget is MenuItem) {
+				args.Widget.Data ["action"] = obj;
+				((Item)args.Widget).Selected += new EventHandler (OnSelect);
+				((Item)args.Widget).Deselected += new EventHandler (OnDeselect);
+			}
+		}
+	
+		static Workbench ActiveWorkbench {
+			get {
+				return workbenches[0] as Workbench;
+			}
+		}
+	
+		public static void AddActionGroup (ActionGroup group)
+		{
+			// Register a ProxyConnected handler for displaying tooltips.
+			foreach (Action action in group.ListActions ()) {
+				action.ProxyConnected += new AddWidgetHandler (OnProxyConnected);
+			}
+	
+			groups.Add (group);
+		}
+	
+		public static void RemoveActionGroup (ActionGroup group)
+		{
+			groups.Remove (group);
+		}
+	
+		public static void AddUiFromString (string ui)
+		{
+			uiinfos.Add (ui);
+		}
+		
+		public static void AddUiFromFile (string filename)
+		{
+			// Look in the uiPath if the filename doesn't exist.
+			if (!System.IO.File.Exists (filename)) {
+				string uidir = ConfigurationSettings.AppSettings["uiPath"];
+				string uifile = uidir + System.IO.Path.DirectorySeparatorChar + filename;
+	
+				if (System.IO.File.Exists (uifile)) {
+					filename = uifile;
+				} else {
+					log.Error ("UI file " + filename + " not found");
+					return;
+				}
+			}
+	
+			// Read the complete file and add it to uiinfos.
+			Stream stream = System.IO.File.OpenRead (filename);
+			StreamReader sr = new StreamReader (stream);
+			uiinfos.Add (sr.ReadToEnd ());
+		}
+	
+		public static void AddWidgetFactory (IWorkbenchWidgetFactory factory)
+		{
+			widgets.Add (factory);
+		}
+		
+		public static void RemoveWidgetFactory (IWorkbenchWidgetFactory factory)
+		{
+			widgets.Remove (factory);
+		}
+	}
+}

Added: branches/MonoDevelop-playground/src/Plugins/Workbench/WorkbenchCommand.cs
===================================================================
--- branches/MonoDevelop-playground/src/Plugins/Workbench/WorkbenchCommand.cs	2004-02-27 11:18:26 UTC (rev 1045)
+++ branches/MonoDevelop-playground/src/Plugins/Workbench/WorkbenchCommand.cs	2004-02-27 12:01:07 UTC (rev 1046)
@@ -0,0 +1,35 @@
+//
+// WorkbenchCommand.cs: Default command handler which creates a new Workbench window.
+//
+// Author:
+//   Jeroen Zwartepoorte <jeroen at xs4all.nl>
+//
+// (C) Copyright Jeroen Zwartepoorte 2004
+//
+
+using System;
+using log4net;
+using MonoDevelop;
+
+namespace MonoDevelop.Workbench {
+	class WorkbenchCommand : ICommand {
+		private static readonly ILog log = LogManager.GetLogger (typeof (WorkbenchCommand));
+	
+		public string CommandDescription {
+			get {
+				return null;
+			}
+		}
+		
+		public bool TakesCommandArguments {
+			get {
+				return true;
+			}
+		}
+		
+		public void InvokeCommand (string[] args)
+		{
+			Workbench.CreateDefaultInstance (args);
+		}
+	}
+}

Added: branches/MonoDevelop-playground/src/Plugins/Workbench/WorkbenchPlugin.cs
===================================================================
--- branches/MonoDevelop-playground/src/Plugins/Workbench/WorkbenchPlugin.cs	2004-02-27 11:18:26 UTC (rev 1045)
+++ branches/MonoDevelop-playground/src/Plugins/Workbench/WorkbenchPlugin.cs	2004-02-27 12:01:07 UTC (rev 1046)
@@ -0,0 +1,64 @@
+//
+// WorkbenchPlugin.cs: Registers the Workbench class with the plugin loader.
+//
+// Author:
+//   Jeroen Zwartepoorte <jeroen at xs4all.nl>
+//
+// (C) Copyright Jeroen Zwartepoorte 2004
+//
+
+using System;
+using Gtk;
+using log4net;
+
+namespace MonoDevelop.Workbench {
+	class WorkbenchPlugin : BasePlugin {
+		private static readonly ILog log = LogManager.GetLogger (typeof (WorkbenchPlugin));
+	
+		public override string Author {
+			get {
+				return "Jeroen Zwartepoorte";
+			}
+		}
+		
+		public override string Copyright {
+			get {
+				return "GPL";
+			}
+		}
+		
+		public override string Description {
+			get {
+				return "Main window containing menus, toolbars and widgets";
+			}
+		}
+		
+		public override string Name {
+			get {
+				return "Workbench";
+			}
+		}
+		
+		public override string Url {
+			get {
+				return "http://www.xs4all.nl/~jeroen/";
+			}
+		}
+		
+		public override string Version {
+			get {
+				return "1.0";
+			}
+		}
+	
+		public override bool InitializePlugin (byte major, byte minor)
+		{
+			MonoDevelop.RegisterCommand (null, new WorkbenchCommand ());
+			return true;
+		}
+		
+		public override void FinalizePlugin ()
+		{
+		}
+	}
+}

Added: branches/MonoDevelop-playground/src/Plugins/Workbench/workbench.plugin.in
===================================================================
--- branches/MonoDevelop-playground/src/Plugins/Workbench/workbench.plugin.in	2004-02-27 11:18:26 UTC (rev 1045)
+++ branches/MonoDevelop-playground/src/Plugins/Workbench/workbench.plugin.in	2004-02-27 12:01:07 UTC (rev 1046)
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<plugin version="1.0">
+	<assembly>@assembly@</assembly>
+	<class name="MonoDevelop.Workbench.WorkbenchPlugin"/>
+</plugin>

Added: branches/MonoDevelop-playground/src/Plugins/Workbench/workbench.ui
===================================================================
--- branches/MonoDevelop-playground/src/Plugins/Workbench/workbench.ui	2004-02-27 11:18:26 UTC (rev 1045)
+++ branches/MonoDevelop-playground/src/Plugins/Workbench/workbench.ui	2004-02-27 12:01:07 UTC (rev 1046)
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<menubar>
+	<menu name="FileMenu" action="FileMenuAction">
+		<menuitem name="CloseWindow" action="CloseWindowAction"/>
+		<menuitem name="Quit" action="QuitAction"/>
+	</menu>
+	<menu name="ViewMenu" action="ViewMenuAction">
+	</menu>
+	<menu name="WindowMenu" action="WindowMenuAction">
+		<menuitem name="NewWindow" action="NewWindowAction"/>
+	</menu>
+	<menu name="HelpMenu" action="HelpMenuAction">
+		<menuitem name="About" action="AboutAction"/>
+	</menu>
+</menubar>
+<toolbar name="toolbar">
+	<toolitem name="QuitButton" action="QuitAction"/>
+</toolbar>

Copied: branches/MonoDevelop-playground/src/StartUp (from rev 1044, branches/MonoDevelop-playground/src/Main/StartUp)

Copied: branches/MonoDevelop-playground/src/StartUp/BasePlugin.cs (from rev 1045, branches/MonoDevelop-playground/src/Main/StartUp/BasePlugin.cs)

Copied: branches/MonoDevelop-playground/src/StartUp/ICommand.cs (from rev 1045, branches/MonoDevelop-playground/src/Main/StartUp/ICommand.cs)

Deleted: branches/MonoDevelop-playground/src/StartUp/Makefile.am
===================================================================
--- branches/MonoDevelop-playground/src/Main/StartUp/Makefile.am	2004-02-26 20:24:49 UTC (rev 1044)
+++ branches/MonoDevelop-playground/src/StartUp/Makefile.am	2004-02-27 12:01:07 UTC (rev 1046)
@@ -1,52 +0,0 @@
-BASEDIR=../../..
-
-FILES= \
-./SharpDevelopMain.cs \
-./Dialogs/AddInTreeSettingsHandler.cs \
-./Dialogs/ExceptionBox.cs \
-./AssemblyInfo.cs
-
-RESOURCES= \
-/resource:$(BASEDIR)/data/resources/StringResources.fr.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.cn-gb.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.jp.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.nl.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.pl.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.ro.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.pt.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.ru.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.goisern.resources \
-/resource:$(BASEDIR)/data/resources/BitmapResources.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.se.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.es.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.cz.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.kr.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.it.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.bg.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.de.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.cn-big.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.dk.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.resources,StringResources.resources \
-/resource:$(BASEDIR)/data/resources/StringResources.br.resources \
-/resource:$(BASEDIR)/data/resources/SplashScreen.png,SplashScreen.png
-
-DLL=../../../build/bin/MonoDevelop.exe
-
-all: $(DLL)
-
-$(DLL): $(FILES)
-	@ mcs /debug /out:$(DLL) /r:System.Drawing.dll \
-		/r:../../../build/bin/MonoDevelop.Core.dll \
-		/r:../../../build/bin/MonoDevelop.Base.dll \
-		/r:glib-sharp.dll \
-		/define:GTK /r:gtk-sharp.dll /r:gdk-sharp.dll \
-		/r:gnome-sharp.dll \
-		$(RESOURCES) $(FILES)
-
-assemblydir = $(libdir)/monodevelop/bin
-assembly_DATA = $(DLL)           
-
-CLEANFILES=$(DLL)
-
-EXTRA_DIST = $(FILES)
-

Copied: branches/MonoDevelop-playground/src/StartUp/Makefile.am (from rev 1045, branches/MonoDevelop-playground/src/Main/StartUp/Makefile.am)

Copied: branches/MonoDevelop-playground/src/StartUp/MonoDevelop.cs (from rev 1045, branches/MonoDevelop-playground/src/Main/StartUp/MonoDevelop.cs)

Copied: branches/MonoDevelop-playground/src/StartUp/monodevelop.exe.config.in (from rev 1045, branches/MonoDevelop-playground/src/Main/StartUp/monodevelop.exe.config.in)




More information about the Monodevelop-patches-list mailing list