diff --git a/xdc.suo b/xdc.suo deleted file mode 100644 index 209e7b6..0000000 Binary files a/xdc.suo and /dev/null differ diff --git a/xdc/Forms/AboutForm.cs b/xdc/Forms/AboutForm.cs index 66defb3..5702653 100644 --- a/xdc/Forms/AboutForm.cs +++ b/xdc/Forms/AboutForm.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: AboutForm.cs 19 2007-04-30 07:44:15Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/Forms/CallstackForm.cs b/xdc/Forms/CallstackForm.cs index 61dcec6..1392c41 100644 --- a/xdc/Forms/CallstackForm.cs +++ b/xdc/Forms/CallstackForm.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: CallstackForm.cs 14 2007-04-29 17:32:40Z mathieuk $ * * This file is part of XDebugClient. * @@ -48,8 +48,8 @@ public void setCallstack(List stack) treeView1.Nodes.Clear(); foreach (StackEntry entry in stack) - { - treeView1.Nodes.Add(entry.location + "() at " + entry.fileName + ":" + entry.lineNumber); + { // Lexikos: Removed "()" before "at" since it doesn't always apply in AHK. + treeView1.Nodes.Add(entry.location + " at " + entry.fileName + ":" + entry.lineNumber); } } diff --git a/xdc/Forms/PropertyForm.cs b/xdc/Forms/PropertyForm.cs index 167e7f9..b56420a 100644 --- a/xdc/Forms/PropertyForm.cs +++ b/xdc/Forms/PropertyForm.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: PropertyForm.cs 10 2007-04-29 13:39:20Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/Forms/SourceFileForm.cs b/xdc/Forms/SourceFileForm.cs index 2af6827..159189e 100644 --- a/xdc/Forms/SourceFileForm.cs +++ b/xdc/Forms/SourceFileForm.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: SourceFileForm.cs 20 2007-04-30 07:47:59Z mathieuk $ * * This file is part of XDebugClient. * @@ -62,6 +62,12 @@ public SourceFileForm(xdc.XDebug.Client xdebugClient, string filename) this.textEditor.Document.BookmarkManager.Added += new ICSharpCode.TextEditor.Document.BookmarkEventHandler(OnBookmarkAdded); } + // Lexikos: AutoHotkey syntax highlighting. + static SourceFileForm() + { + HighlightingManager.Manager.AddSyntaxModeFileProvider(new Syntax.AhkSyntaxModeProvider()); + } + public void LoadFile(string filename) { this.textEditor.LoadFile(filename); @@ -88,6 +94,12 @@ public ICSharpCode.TextEditor.Document.BookmarkManager getBookmarkManager() return this.textEditor.Document.BookmarkManager; } + // Lexikos + public ICSharpCode.TextEditor.Document.IDocument getDocument() + { + return this.textEditor.Document; + } + private void setLineColor(int lineNumber, Color color) { IDocument d = this.textEditor.Document; @@ -239,7 +251,8 @@ public void LoadSourceAsFile(string sourceCode) { this.textEditor.BeginUpdate(); - this.textEditor.Document.HighlightingStrategy = ICSharpCode.TextEditor.Document.HighlightingStrategyFactory.CreateHighlightingStrategy("PHP"); + // Lexikos: Use AHK syntax highlighting. + this.textEditor.Document.HighlightingStrategy = ICSharpCode.TextEditor.Document.HighlightingStrategyFactory.CreateHighlightingStrategy("AHK"); this.textEditor.Text = sourceCode; diff --git a/xdc/Forms/StatusForm.cs b/xdc/Forms/StatusForm.cs index d3765aa..368379a 100644 --- a/xdc/Forms/StatusForm.cs +++ b/xdc/Forms/StatusForm.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: StatusForm.cs 14 2007-04-29 17:32:40Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/GUI/DebugNode.cs b/xdc/GUI/DebugNode.cs index bb60747..bb92822 100644 --- a/xdc/GUI/DebugNode.cs +++ b/xdc/GUI/DebugNode.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: DebugNode.cs 10 2007-04-29 13:39:20Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/GUI/FileLoader/FileLoaderFactory.cs b/xdc/GUI/FileLoader/FileLoaderFactory.cs index c3ecd9d..24c95d5 100644 --- a/xdc/GUI/FileLoader/FileLoaderFactory.cs +++ b/xdc/GUI/FileLoader/FileLoaderFactory.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: FileLoaderFactory.cs 9 2007-04-29 13:36:27Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/GUI/FileLoader/IFileLoader.cs b/xdc/GUI/FileLoader/IFileLoader.cs index deeb8b3..97dfd2c 100644 --- a/xdc/GUI/FileLoader/IFileLoader.cs +++ b/xdc/GUI/FileLoader/IFileLoader.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: IFileLoader.cs 19 2007-04-30 07:44:15Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/GUI/FileLoader/RewriteFileLoader.cs b/xdc/GUI/FileLoader/RewriteFileLoader.cs index 661b789..844d6f5 100644 --- a/xdc/GUI/FileLoader/RewriteFileLoader.cs +++ b/xdc/GUI/FileLoader/RewriteFileLoader.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: RewriteFileLoader.cs 19 2007-04-30 07:44:15Z mathieuk $ * * This file is part of XDebugClient. * @@ -133,7 +133,7 @@ public DirectoryRewrite DetermineRewriteRule(string filename) /* This should have a way to also detect filename[1].php, filename[2].php for * the FTP service. */ - fileDialog.Filter = "PHP file|" + sourceFilename; + fileDialog.Filter = "Source file|" + sourceFilename; // Lexikos: Changed "PHP" to "Source" if (fileDialog.ShowDialog() == DialogResult.OK) { diff --git a/xdc/GUI/FileLoader/SourceFileLoader.cs b/xdc/GUI/FileLoader/SourceFileLoader.cs index 36421f4..ab5073f 100644 --- a/xdc/GUI/FileLoader/SourceFileLoader.cs +++ b/xdc/GUI/FileLoader/SourceFileLoader.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: SourceFileLoader.cs 19 2007-04-30 07:44:15Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/GUI/FileManager.cs b/xdc/GUI/FileManager.cs index 0fdf586..b825617 100644 --- a/xdc/GUI/FileManager.cs +++ b/xdc/GUI/FileManager.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: FileManager.cs 14 2007-04-29 17:32:40Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/MainForm.cs b/xdc/MainForm.cs index 34bd5d8..a4119fb 100644 --- a/xdc/MainForm.cs +++ b/xdc/MainForm.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: MainForm.cs 19 2007-04-30 07:44:15Z mathieuk $ * * This file is part of XDebugClient. * @@ -147,6 +147,9 @@ private void StopDebuggingSession() this.ToggleMenuItems(false); _statusFrm.WriteStatusLine("(!) Debugging session terminated."); + + // Lexikos: Begin listening automatically. + startListeningToolStripMenuItem_Click(this, null); } private void WriteDebugLine(string line) @@ -169,7 +172,8 @@ private void SetActiveFileAndLine(Location location) if (_CurrentLocation.line != -1) { xdc.Forms.SourceFileForm previousFile = _fileMgr.getFormByRemoteFilename(_CurrentLocation.filename); - previousFile.RemoveActiveMark(); + if (previousFile != null) // Lexikos: Check for null! + previousFile.RemoveActiveMark(); } _CurrentLocation.line = location.line; @@ -478,6 +482,18 @@ private void SourceFileForm_FileClosed(object sender, FormClosedEventArgs e) string localFilename = _fileMgr.GetLocalFilename(f.getFilename()); _fileMgr.Remove(localFilename); + + // Lexikos~ + ICSharpCode.TextEditor.Document.IDocument document = f.getDocument(); + // Remove this file's breakpoints from _breakpointMgr since otherwise + // a) the file text is kept in memory, and + // b) if the file is reopened, it has invisible breakpoints. + _breakpointMgr.Breakpoints.RemoveAll( + delegate(Breakpoint breakpoint) + { + return breakpoint.Document == document; + }); + // ~L closeToolStripMenuItem.Enabled = _fileMgr.HasOpenFiles; @@ -498,6 +514,9 @@ private void MainForm_Load(object sender, EventArgs e) { _callstackFrm.Show(this.dockPanel, DockState.DockBottom); _statusFrm.Show(_callstackFrm.Pane, _callstackFrm); + + // Lexikos: Continue listening automatically. + startListeningToolStripMenuItem_Click(this, null); } private void runToolStripMenuItem_Click(object sender, EventArgs e) diff --git a/xdc/Program.cs b/xdc/Program.cs index e77c2bd..9502527 100644 --- a/xdc/Program.cs +++ b/xdc/Program.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: Program.cs 10 2007-04-29 13:39:20Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/Properties/AssemblyInfo.cs b/xdc/Properties/AssemblyInfo.cs index 83019f8..4f35d94 100644 --- a/xdc/Properties/AssemblyInfo.cs +++ b/xdc/Properties/AssemblyInfo.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: AssemblyInfo.cs 10 2007-04-29 13:39:20Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/Properties/Resources.Designer.cs b/xdc/Properties/Resources.Designer.cs index 085fa5d..ebc89dd 100644 --- a/xdc/Properties/Resources.Designer.cs +++ b/xdc/Properties/Resources.Designer.cs @@ -1,17 +1,17 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.42 +// Runtime Version:2.0.50727.1434 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ -namespace xdc.Properties -{ - - +namespace xdc.Properties { + using System; + + /// /// A strongly-typed resource class, for looking up localized strings, etc. /// @@ -22,48 +22,40 @@ namespace xdc.Properties [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources - { - + internal class Resources { + private static global::System.Resources.ResourceManager resourceMan; - + private static global::System.Globalization.CultureInfo resourceCulture; - + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() - { + internal Resources() { } - + /// /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager - { - get - { - if ((resourceMan == null)) - { + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("xdc.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; } } - + /// /// Overrides the current thread's CurrentUICulture property for all /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture - { - get - { + internal static global::System.Globalization.CultureInfo Culture { + get { return resourceCulture; } - set - { + set { resourceCulture = value; } } diff --git a/xdc/Properties/Resources.resx b/xdc/Properties/Resources.resx index ffecec8..5ea0895 100644 --- a/xdc/Properties/Resources.resx +++ b/xdc/Properties/Resources.resx @@ -46,7 +46,7 @@ mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with - : System.Serialization.Formatters.Binary.BinaryFormatter + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 @@ -60,6 +60,7 @@ : and then encoded with base64 encoding. --> + @@ -68,9 +69,10 @@ - + + @@ -85,9 +87,10 @@ - + + diff --git a/xdc/Syntax/AHK-Mode.xshd b/xdc/Syntax/AHK-Mode.xshd new file mode 100644 index 0000000..98174d5 --- /dev/null +++ b/xdc/Syntax/AHK-Mode.xshd @@ -0,0 +1,658 @@ + + + + + + + + + + + + + &<>~!@%^*()-+=|\/{}[]:;"' , .? + + ; + + + /* + */ + + + " + " + + + % + + + + % + % + + ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <>~!@%^*()-+=|\#/{}[]:;"' , .? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/xdc/Syntax/AhkSyntaxModeProvider.cs b/xdc/Syntax/AhkSyntaxModeProvider.cs new file mode 100644 index 0000000..3089bb4 --- /dev/null +++ b/xdc/Syntax/AhkSyntaxModeProvider.cs @@ -0,0 +1,38 @@ +using System; +using System.Collections.Generic; +using System.Text; +using ICSharpCode.TextEditor; +using ICSharpCode.TextEditor.Document; +using System.IO; +using System.Xml; + +namespace xdc.Syntax +{ + public class AhkSyntaxModeProvider : ISyntaxModeFileProvider + { + List syntaxModes; + + public AhkSyntaxModeProvider() + { + Stream stream = typeof(AhkSyntaxModeProvider).Assembly.GetManifestResourceStream("xdc.Syntax.SyntaxModes.xml"); + if (stream != null) + syntaxModes = SyntaxMode.GetSyntaxModes(stream); + else + syntaxModes = new List(); + } + + public XmlTextReader GetSyntaxModeFile(SyntaxMode syntaxMode) + { + return new XmlTextReader(typeof(AhkSyntaxModeProvider).Assembly.GetManifestResourceStream("xdc.Syntax." + syntaxMode.FileName)); + } + + public ICollection SyntaxModes + { + get { return syntaxModes; } + } + + public void UpdateSyntaxModeList() + { + } + } +} diff --git a/xdc/Syntax/SyntaxModes.xml b/xdc/Syntax/SyntaxModes.xml new file mode 100644 index 0000000..018dfa2 --- /dev/null +++ b/xdc/Syntax/SyntaxModes.xml @@ -0,0 +1,3 @@ + + + diff --git a/xdc/XDebug/ActiveMark.cs b/xdc/XDebug/ActiveMark.cs index 7e23a63..6bd84bd 100644 --- a/xdc/XDebug/ActiveMark.cs +++ b/xdc/XDebug/ActiveMark.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: ActiveMark.cs 10 2007-04-29 13:39:20Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/XDebug/Breakpoint.cs b/xdc/XDebug/Breakpoint.cs index 876ad01..0c64053 100644 --- a/xdc/XDebug/Breakpoint.cs +++ b/xdc/XDebug/Breakpoint.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: Breakpoint.cs 10 2007-04-29 13:39:20Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/XDebug/BreakpointManager.cs b/xdc/XDebug/BreakpointManager.cs index f059e03..3ddf852 100644 --- a/xdc/XDebug/BreakpointManager.cs +++ b/xdc/XDebug/BreakpointManager.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: BreakpointManager.cs 10 2007-04-29 13:39:20Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/XDebug/Client.cs b/xdc/XDebug/Client.cs index 2af9b13..5cabd60 100644 --- a/xdc/XDebug/Client.cs +++ b/xdc/XDebug/Client.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: Client.cs 10 2007-04-29 13:39:20Z mathieuk $ * * This file is part of XDebugClient. * @@ -38,7 +38,7 @@ public enum XDebugErrorType { FatalError, Warning } public class Client { const string supportedProtocolVersion = "1.0"; - const string supportedLanguage = "php"; + const string supportedLanguage = "ahk1"; // Lexikos: Changed from "php" const string FatalErrorExceptionName = "Fatal error"; const string NoticeExceptionName = "Notice"; @@ -584,21 +584,22 @@ private bool handleInitMessage(XDebug.Response initMessage) } } - if (d.Attributes["language"] != null) - { - string remoteLanguage = d.Attributes["language"].Value; - - if (remoteLanguage.ToLower() != supportedLanguage) - { - throw new Exception( - String.Format( - "Expected language '{0}' but got '{1}' which is not supported.", - supportedLanguage, - remoteLanguage - ) - ); - } - } + // Lexikos: Don't bail out; may as well try to support whatever language. + //if (d.Attributes["language"] != null) + //{ + // string remoteLanguage = d.Attributes["language"].Value; + + // if (remoteLanguage.ToLower() != supportedLanguage) + // { + // throw new Exception( + // String.Format( + // "Expected language '{0}' but got '{1}' which is not supported.", + // supportedLanguage, + // remoteLanguage + // ) + // ); + // } + //} if (d.Attributes["fileuri"] != null) { diff --git a/xdc/XDebug/Command.cs b/xdc/XDebug/Command.cs index 0605c8c..ea8ffa6 100644 --- a/xdc/XDebug/Command.cs +++ b/xdc/XDebug/Command.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: Command.cs 10 2007-04-29 13:39:20Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/XDebug/Location.cs b/xdc/XDebug/Location.cs index 600ced2..bd20166 100644 --- a/xdc/XDebug/Location.cs +++ b/xdc/XDebug/Location.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: Location.cs 10 2007-04-29 13:39:20Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/XDebug/Property.cs b/xdc/XDebug/Property.cs index fb64821..ce4828f 100644 --- a/xdc/XDebug/Property.cs +++ b/xdc/XDebug/Property.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: Property.cs 10 2007-04-29 13:39:20Z mathieuk $ * * This file is part of XDebugClient. * @@ -76,6 +76,11 @@ static public Property Parse(XmlNode firstProperty) decoder.GetChars(todecode_byte, 0, todecode_byte.Length, decoded_char, 0); string result = new String(decoded_char); + // Lexikos: For now, it is not helpful to view past the end of a string. + // Until a binary/hex view is implemented, truncate the value at \0. + if (result.IndexOf('\0') != -1) + result = result.Substring(0, result.IndexOf('\0')); + rootProperty.Value = result; } } diff --git a/xdc/XDebug/Response.cs b/xdc/XDebug/Response.cs index 6cd3a53..74ec1d5 100644 --- a/xdc/XDebug/Response.cs +++ b/xdc/XDebug/Response.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: Response.cs 10 2007-04-29 13:39:20Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/XDebug/StackEntry.cs b/xdc/XDebug/StackEntry.cs index 2c87bc4..87a6410 100644 --- a/xdc/XDebug/StackEntry.cs +++ b/xdc/XDebug/StackEntry.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: StackEntry.cs 10 2007-04-29 13:39:20Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/XDebug/XDebugEventArgs.cs b/xdc/XDebug/XDebugEventArgs.cs index e09dbab..a0805b1 100644 --- a/xdc/XDebug/XDebugEventArgs.cs +++ b/xdc/XDebug/XDebugEventArgs.cs @@ -1,6 +1,6 @@ /* * Copyright (C), 2007, Mathieu Kooiman < xdc@scriptorama.nl> - * $Id$ + * $Id: XDebugEventArgs.cs 10 2007-04-29 13:39:20Z mathieuk $ * * This file is part of XDebugClient. * diff --git a/xdc/bin/Aga.Controls.dll b/xdc/bin/Aga.Controls.dll new file mode 100644 index 0000000..1b1e897 Binary files /dev/null and b/xdc/bin/Aga.Controls.dll differ diff --git a/xdc/bin/ICSharpCode.TextEditor.dll b/xdc/bin/ICSharpCode.TextEditor.dll new file mode 100644 index 0000000..87f9b08 Binary files /dev/null and b/xdc/bin/ICSharpCode.TextEditor.dll differ diff --git a/xdc/bin/WeifenLuo.WinFormsUI.Docking.dll b/xdc/bin/WeifenLuo.WinFormsUI.Docking.dll new file mode 100644 index 0000000..42f1753 Binary files /dev/null and b/xdc/bin/WeifenLuo.WinFormsUI.Docking.dll differ diff --git a/xdc/xdc.csproj b/xdc/xdc.csproj index 62d7210..902950f 100644 --- a/xdc/xdc.csproj +++ b/xdc/xdc.csproj @@ -25,7 +25,7 @@ 3658B8999E253B8717E6256486EC4C1E7E6F8B81 xdc_TemporaryKey.pfx true - true + false true @@ -54,11 +54,11 @@ False - ..\..\..\..\..\Bureaublad\TreeHeum\Waa\TreeViewAdv\Aga.Controls\bin\Release\Aga.Controls.dll + bin\Aga.Controls.dll False - ..\..\..\..\..\..\..\program files\SharpDevelop\2.0\bin\ICSharpCode.TextEditor.dll + bin\ICSharpCode.TextEditor.dll @@ -70,7 +70,7 @@ False - ..\..\..\..\..\Bureaublad\TreeHeum\WeifenLuo.WinFormsUI.Docking.dll + bin\WeifenLuo.WinFormsUI.Docking.dll @@ -103,6 +103,7 @@ + @@ -161,13 +162,13 @@ True Resources.resx + True - SettingsSingleFileGenerator Settings.Designer.cs - + True Settings.settings @@ -194,6 +195,7 @@ Always +