fixed broken settings

git-svn-id: https://lsleditor.svn.sourceforge.net/svnroot/lsleditor@12 3f4676ac-adda-40fd-8265-58d1435b1672
This commit is contained in:
dimentox 2010-05-02 03:38:58 +00:00
parent 205be4af9b
commit be66c127c1
22 changed files with 4667 additions and 4473 deletions

View file

@ -53,7 +53,7 @@ using System.ComponentModel;
using System.Drawing.Printing; using System.Drawing.Printing;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Diagnostics;
namespace LSLEditor namespace LSLEditor
{ {
public delegate void IsDirtyHandler(object sender, EventArgs e); public delegate void IsDirtyHandler(object sender, EventArgs e);
@ -111,7 +111,7 @@ namespace LSLEditor
// bracket highlighting // bracket highlighting
private List<int> HighLightList; private List<int> HighLightList;
public LSLEditorForm p;
public float CharWidth; public float CharWidth;
public int LineHeight; public int LineHeight;
@ -301,6 +301,7 @@ namespace LSLEditor
this.TooltipMouse = parent.TooltipMouse; this.TooltipMouse = parent.TooltipMouse;
this.TooltipKeyboard = parent.TooltipKeyboard; this.TooltipKeyboard = parent.TooltipKeyboard;
this.TooltipListBox = parent.TooltipListBox; this.TooltipListBox = parent.TooltipListBox;
p = parent;
} }
string ColorScheme = "color"; string ColorScheme = "color";
@ -2024,6 +2025,7 @@ namespace LSLEditor
{ {
//TODO: finish the outline class and such //TODO: finish the outline class and such
// still a work in progress trying to figure out exactly how i wanna do this. // still a work in progress trying to figure out exactly how i wanna do this.
int len = this.Lines.Length; int len = this.Lines.Length;
if (len < 1) if (len < 1)
{ {
@ -2037,6 +2039,7 @@ namespace LSLEditor
int lineNumber = 0; int lineNumber = 0;
while ((line = reader.ReadLine()) != null) while ((line = reader.ReadLine()) != null)
{ {
string[] words = line.Split(' '); string[] words = line.Split(' ');
foreach (string word in words) foreach (string word in words)
{ {
@ -2047,6 +2050,7 @@ namespace LSLEditor
{ {
case KeyWordTypeEnum.Functions: case KeyWordTypeEnum.Functions:
list.Add(lineNumber, new LSLEditor.Helpers.OutlineHelper(k, lineNumber)); list.Add(lineNumber, new LSLEditor.Helpers.OutlineHelper(k, lineNumber));
Debug.WriteLine(k);
break; break;
case KeyWordTypeEnum.Events: case KeyWordTypeEnum.Events:
break; break;
@ -2069,7 +2073,14 @@ namespace LSLEditor
} }
} }
//TODO: parse dict and create the outline in the treeview //TODO: parse dict and create the outline in the treeview
foreach (LSLEditor.Helpers.OutlineHelper k in list.Values)
{
TreeNode b = new TreeNode();
b.Name = k.info.name;
Debug.WriteLine(b.Name);
p.treeView1.Nodes.Add(b);
}
} }

View file

@ -135,17 +135,17 @@ namespace LSLEditor
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.closeTabToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.closeTabToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.panel2 = new System.Windows.Forms.Panel(); this.panel2 = new System.Windows.Forms.Panel();
this.tabControlExtended2 = new System.Windows.Forms.TabControlExtended(this.components);
this.tabPage1 = new System.Windows.Forms.TabPage();
this.solutionExplorer1 = new LSLEditor.Solution.SolutionExplorer();
this.outline = new System.Windows.Forms.TabPage();
this.treeView1 = new System.Windows.Forms.TreeView();
this.splitter2 = new System.Windows.Forms.Splitter(); this.splitter2 = new System.Windows.Forms.Splitter();
this.panel1 = new System.Windows.Forms.Panel(); this.panel1 = new System.Windows.Forms.Panel();
this.splitter1 = new System.Windows.Forms.Splitter(); this.splitter1 = new System.Windows.Forms.Splitter();
this.pageSetupDialog1 = new System.Windows.Forms.PageSetupDialog(); this.pageSetupDialog1 = new System.Windows.Forms.PageSetupDialog();
this.openFileDialog2 = new System.Windows.Forms.OpenFileDialog(); this.openFileDialog2 = new System.Windows.Forms.OpenFileDialog();
this.tabControlExtended1 = new System.Windows.Forms.TabControlExtended(this.components); this.tabControlExtended1 = new System.Windows.Forms.TabControlExtended(this.components);
this.tabControlExtended2 = new System.Windows.Forms.TabControlExtended(this.components);
this.tabPage1 = new System.Windows.Forms.TabPage();
this.solutionExplorer1 = new LSLEditor.Solution.SolutionExplorer();
this.outline = new System.Windows.Forms.TabPage();
this.treeView1 = new System.Windows.Forms.TreeView();
this.menuStrip1.SuspendLayout(); this.menuStrip1.SuspendLayout();
this.statusStrip1.SuspendLayout(); this.statusStrip1.SuspendLayout();
this.contextMenuStrip1.SuspendLayout(); this.contextMenuStrip1.SuspendLayout();
@ -995,51 +995,6 @@ namespace LSLEditor
this.panel2.TabIndex = 20; this.panel2.TabIndex = 20;
this.panel2.Visible = false; this.panel2.Visible = false;
// //
// splitter2
//
this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
this.splitter2.Location = new System.Drawing.Point(534, 24);
this.splitter2.Name = "splitter2";
this.splitter2.Size = new System.Drawing.Size(8, 470);
this.splitter2.TabIndex = 22;
this.splitter2.TabStop = false;
//
// panel1
//
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel1.Location = new System.Drawing.Point(0, 458);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(534, 36);
this.panel1.TabIndex = 23;
this.panel1.Visible = false;
//
// splitter1
//
this.splitter1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.splitter1.Location = new System.Drawing.Point(0, 450);
this.splitter1.Name = "splitter1";
this.splitter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.splitter1.Size = new System.Drawing.Size(534, 8);
this.splitter1.TabIndex = 24;
this.splitter1.TabStop = false;
this.splitter1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitter1_SplitterMoved);
//
// openFileDialog2
//
this.openFileDialog2.FileName = "openFileDialog2";
//
// tabControlExtended1
//
this.tabControlExtended1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.tabControlExtended1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
this.tabControlExtended1.Location = new System.Drawing.Point(0, 414);
this.tabControlExtended1.Name = "tabControlExtended1";
this.tabControlExtended1.SelectedIndex = 0;
this.tabControlExtended1.Size = new System.Drawing.Size(534, 36);
this.tabControlExtended1.TabIndex = 25;
this.tabControlExtended1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tabControlExtended1_MouseDown);
this.tabControlExtended1.SelectedIndexChanged += new System.EventHandler(this.tabControlExtended1_SelectedIndexChanged);
//
// tabControlExtended2 // tabControlExtended2
// //
this.tabControlExtended2.Controls.Add(this.tabPage1); this.tabControlExtended2.Controls.Add(this.tabPage1);
@ -1089,6 +1044,51 @@ namespace LSLEditor
this.treeView1.Size = new System.Drawing.Size(186, 438); this.treeView1.Size = new System.Drawing.Size(186, 438);
this.treeView1.TabIndex = 0; this.treeView1.TabIndex = 0;
// //
// splitter2
//
this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
this.splitter2.Location = new System.Drawing.Point(534, 24);
this.splitter2.Name = "splitter2";
this.splitter2.Size = new System.Drawing.Size(8, 470);
this.splitter2.TabIndex = 22;
this.splitter2.TabStop = false;
//
// panel1
//
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel1.Location = new System.Drawing.Point(0, 458);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(534, 36);
this.panel1.TabIndex = 23;
this.panel1.Visible = false;
//
// splitter1
//
this.splitter1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.splitter1.Location = new System.Drawing.Point(0, 450);
this.splitter1.Name = "splitter1";
this.splitter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.splitter1.Size = new System.Drawing.Size(534, 8);
this.splitter1.TabIndex = 24;
this.splitter1.TabStop = false;
this.splitter1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitter1_SplitterMoved);
//
// openFileDialog2
//
this.openFileDialog2.FileName = "openFileDialog2";
//
// tabControlExtended1
//
this.tabControlExtended1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.tabControlExtended1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
this.tabControlExtended1.Location = new System.Drawing.Point(0, 414);
this.tabControlExtended1.Name = "tabControlExtended1";
this.tabControlExtended1.SelectedIndex = 0;
this.tabControlExtended1.Size = new System.Drawing.Size(534, 36);
this.tabControlExtended1.TabIndex = 25;
this.tabControlExtended1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tabControlExtended1_MouseDown);
this.tabControlExtended1.SelectedIndexChanged += new System.EventHandler(this.tabControlExtended1_SelectedIndexChanged);
//
// LSLEditorForm // LSLEditorForm
// //
this.AllowDrop = true; this.AllowDrop = true;
@ -1243,6 +1243,6 @@ namespace LSLEditor
private System.Windows.Forms.ToolStripSeparator toolStripSeparator17; private System.Windows.Forms.ToolStripSeparator toolStripSeparator17;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8; private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8;
private System.Windows.Forms.TabPage outline; private System.Windows.Forms.TabPage outline;
private System.Windows.Forms.TreeView treeView1; public System.Windows.Forms.TreeView treeView1;
} }
} }

View file

@ -359,15 +359,6 @@ namespace LSLEditor.Properties {
} }
} }
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("C:\\Documents and Settings\\Alphons\\Mijn documenten\\Visual Studio 2005\\Projects")]
public string OopsRemove {
get {
return ((string)(this["OopsRemove"]));
}
}
[global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("About.htm")] [global::System.Configuration.DefaultSettingValueAttribute("About.htm")]
@ -1124,7 +1115,7 @@ namespace LSLEditor.Properties {
[global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lsleditor.org/checkforupdate/Default.aspx?\r\n ")] [global::System.Configuration.DefaultSettingValueAttribute("http://www.lsleditor.org/checkforupdate/Default.aspx?")]
public string Update { public string Update {
get { get {
return ((string)(this["Update"])); return ((string)(this["Update"]));
@ -1133,7 +1124,7 @@ namespace LSLEditor.Properties {
[global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lsleditor.org/examples/\r\n ")] [global::System.Configuration.DefaultSettingValueAttribute("http://www.lsleditor.org/examples/")]
public string Examples { public string Examples {
get { get {
return ((string)(this["Examples"])); return ((string)(this["Examples"]));
@ -1142,7 +1133,7 @@ namespace LSLEditor.Properties {
[global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lsleditor.org/uploadscript/\r\n ")] [global::System.Configuration.DefaultSettingValueAttribute("http://www.lsleditor.org/uploadscript/")]
public string Upload { public string Upload {
get { get {
return ((string)(this["Upload"])); return ((string)(this["Upload"]));
@ -1151,7 +1142,7 @@ namespace LSLEditor.Properties {
[global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("\r\n Resource.ConfCSharp.xml\r\n ")] [global::System.Configuration.DefaultSettingValueAttribute("Resource.ConfCSharp.xml")]
public string ConfCSharp { public string ConfCSharp {
get { get {
return ((string)(this["ConfCSharp"])); return ((string)(this["ConfCSharp"]));
@ -1160,7 +1151,7 @@ namespace LSLEditor.Properties {
[global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lsleditor.org/CheckForUpdate/Manifest.aspx\r\n ")] [global::System.Configuration.DefaultSettingValueAttribute("http://www.lsleditor.org/CheckForUpdate/Manifest.aspx")]
public string UpdateManifest { public string UpdateManifest {
get { get {
return ((string)(this["UpdateManifest"])); return ((string)(this["UpdateManifest"]));
@ -1169,7 +1160,7 @@ namespace LSLEditor.Properties {
[global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("\r\n Resource.ToolsOptions.xml\r\n ")] [global::System.Configuration.DefaultSettingValueAttribute("Resource.ToolsOptions.xml")]
public string ToolsOptions { public string ToolsOptions {
get { get {
return ((string)(this["ToolsOptions"])); return ((string)(this["ToolsOptions"]));
@ -1178,7 +1169,7 @@ namespace LSLEditor.Properties {
[global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lsleditor.org/mail/\r\n ")] [global::System.Configuration.DefaultSettingValueAttribute("http://www.lsleditor.org/mail/")]
public string ContactUrl { public string ContactUrl {
get { get {
return ((string)(this["ContactUrl"])); return ((string)(this["ContactUrl"]));
@ -1187,7 +1178,7 @@ namespace LSLEditor.Properties {
[global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lsleditor.org/donate.htm\r\n ")] [global::System.Configuration.DefaultSettingValueAttribute("http://www.lsleditor.org/donate.htm")]
public string DonateUrl { public string DonateUrl {
get { get {
return ((string)(this["DonateUrl"])); return ((string)(this["DonateUrl"]));
@ -1196,8 +1187,7 @@ namespace LSLEditor.Properties {
[global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=\r\n " + [global::System.Configuration.DefaultSettingValueAttribute("http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=")]
" ")]
public string Help2 { public string Help2 {
get { get {
return ((string)(this["Help2"])); return ((string)(this["Help2"]));
@ -1206,7 +1196,7 @@ namespace LSLEditor.Properties {
[global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lslwiki.net/lslwiki/wakka.php?wakka=\r\n ")] [global::System.Configuration.DefaultSettingValueAttribute("http://www.lslwiki.net/lslwiki/wakka.php?wakka=")]
public string Help1 { public string Help1 {
get { get {
return ((string)(this["Help1"])); return ((string)(this["Help1"]));
@ -1215,11 +1205,20 @@ namespace LSLEditor.Properties {
[global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lsleditor.org/forum/\r\n ")] [global::System.Configuration.DefaultSettingValueAttribute("http://www.lsleditor.org/forum/")]
public string ForumLSLEditor { public string ForumLSLEditor {
get { get {
return ((string)(this["ForumLSLEditor"])); return ((string)(this["ForumLSLEditor"]));
} }
} }
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("C:\\Documents and Settings\\Alphons\\Mijn documenten\\Visual Studio 2005\\Projects")]
public string OopsRemove {
get {
return ((string)(this["OopsRemove"]));
}
}
} }
} }

View file

@ -1,4 +1,4 @@
<?xml version='1.0' encoding='utf-8'?> <?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="LSLEditor.Properties" GeneratedClassName="Settings"> <SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="LSLEditor.Properties" GeneratedClassName="Settings">
<Profiles /> <Profiles />
<Settings> <Settings>
@ -89,9 +89,6 @@
<Setting Name="WikiSeperateBrowser" Type="System.Boolean" Scope="User"> <Setting Name="WikiSeperateBrowser" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value> <Value Profile="(Default)">False</Value>
</Setting> </Setting>
<Setting Name="OopsRemove" Type="System.String" Scope="Application">
<Value Profile="(Default)">C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</Value>
</Setting>
<Setting Name="About" Type="System.String" Scope="Application"> <Setting Name="About" Type="System.String" Scope="Application">
<Value Profile="(Default)">About.htm</Value> <Value Profile="(Default)">About.htm</Value>
</Setting> </Setting>
@ -298,59 +295,40 @@
</Value> </Value>
</Setting> </Setting>
<Setting Name="Update" Type="System.String" Scope="Application"> <Setting Name="Update" Type="System.String" Scope="Application">
<Value Profile="(Default)"> <Value Profile="(Default)">http://www.lsleditor.org/checkforupdate/Default.aspx?</Value>
http://www.lsleditor.org/checkforupdate/Default.aspx?
</Value>
</Setting> </Setting>
<Setting Name="Examples" Type="System.String" Scope="Application"> <Setting Name="Examples" Type="System.String" Scope="Application">
<Value Profile="(Default)"> <Value Profile="(Default)">http://www.lsleditor.org/examples/</Value>
http://www.lsleditor.org/examples/
</Value>
</Setting> </Setting>
<Setting Name="Upload" Type="System.String" Scope="Application"> <Setting Name="Upload" Type="System.String" Scope="Application">
<Value Profile="(Default)"> <Value Profile="(Default)">http://www.lsleditor.org/uploadscript/</Value>
http://www.lsleditor.org/uploadscript/
</Value>
</Setting> </Setting>
<Setting Name="ConfCSharp" Type="System.String" Scope="Application"> <Setting Name="ConfCSharp" Type="System.String" Scope="Application">
<Value Profile="(Default)"> <Value Profile="(Default)">Resource.ConfCSharp.xml</Value>
Resource.ConfCSharp.xml
</Value>
</Setting> </Setting>
<Setting Name="UpdateManifest" Type="System.String" Scope="Application"> <Setting Name="UpdateManifest" Type="System.String" Scope="Application">
<Value Profile="(Default)"> <Value Profile="(Default)">http://www.lsleditor.org/CheckForUpdate/Manifest.aspx</Value>
http://www.lsleditor.org/CheckForUpdate/Manifest.aspx
</Value>
</Setting> </Setting>
<Setting Name="ToolsOptions" Type="System.String" Scope="Application"> <Setting Name="ToolsOptions" Type="System.String" Scope="Application">
<Value Profile="(Default)"> <Value Profile="(Default)">Resource.ToolsOptions.xml</Value>
Resource.ToolsOptions.xml
</Value>
</Setting> </Setting>
<Setting Name="ContactUrl" Type="System.String" Scope="Application"> <Setting Name="ContactUrl" Type="System.String" Scope="Application">
<Value Profile="(Default)"> <Value Profile="(Default)">http://www.lsleditor.org/mail/</Value>
http://www.lsleditor.org/mail/
</Value>
</Setting> </Setting>
<Setting Name="DonateUrl" Type="System.String" Scope="Application"> <Setting Name="DonateUrl" Type="System.String" Scope="Application">
<Value Profile="(Default)"> <Value Profile="(Default)">http://www.lsleditor.org/donate.htm</Value>
http://www.lsleditor.org/donate.htm
</Value>
</Setting> </Setting>
<Setting Name="Help2" Type="System.String" Scope="Application"> <Setting Name="Help2" Type="System.String" Scope="Application">
<Value Profile="(Default)"> <Value Profile="(Default)">http://wiki.secondlife.com/wiki/Special:Search?go=Go&amp;search=</Value>
http://wiki.secondlife.com/wiki/Special:Search?go=Go&amp;search=
</Value>
</Setting> </Setting>
<Setting Name="Help1" Type="System.String" Scope="Application"> <Setting Name="Help1" Type="System.String" Scope="Application">
<Value Profile="(Default)"> <Value Profile="(Default)">http://www.lslwiki.net/lslwiki/wakka.php?wakka=</Value>
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
</Value>
</Setting> </Setting>
<Setting Name="ForumLSLEditor" Type="System.String" Scope="Application"> <Setting Name="ForumLSLEditor" Type="System.String" Scope="Application">
<Value Profile="(Default)"> <Value Profile="(Default)">http://www.lsleditor.org/forum/</Value>
http://www.lsleditor.org/forum/ </Setting>
</Value> <Setting Name="OopsRemove" Type="System.String" Scope="Application">
<Value Profile="(Default)">C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</Value>
</Setting> </Setting>
</Settings> </Settings>
</SettingsFile> </SettingsFile>

View file

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<root> <root>
<item name="Environment" usercontrol="EnvironmentGeneral"> <item name="Environment" usercontrol="EnvironmentGeneral">
<item name="General" usercontrol="EnvironmentGeneral" /> <item name="General" usercontrol="EnvironmentGeneral" />

View file

@ -27,9 +27,7 @@
<value>smtp.emailserver.ext</value> <value>smtp.emailserver.ext</value>
</setting> </setting>
<setting name="EmailAddress" serializeAs="String"> <setting name="EmailAddress" serializeAs="String">
<value> <value>youraddress@yourdomain.ext</value>
youraddress@yourdomain.ext
</value>
</setting> </setting>
<setting name="ProxyServer" serializeAs="String"> <setting name="ProxyServer" serializeAs="String">
<value /> <value />
@ -50,9 +48,7 @@
<value>0, 0</value> <value>0, 0</value>
</setting> </setting>
<setting name="Help" serializeAs="String"> <setting name="Help" serializeAs="String">
<value> <value>http://www.lslwiki.net/lslwiki/wakka.php?wakka=</value>
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
</value>
</setting> </setting>
<setting name="LSLEditorLocation" serializeAs="String"> <setting name="LSLEditorLocation" serializeAs="String">
<value>0, 0</value> <value>0, 0</value>
@ -232,19 +228,13 @@
<value>LSLEditor parcel</value> <value>LSLEditor parcel</value>
</setting> </setting>
<setting name="ParcelDescription" serializeAs="String"> <setting name="ParcelDescription" serializeAs="String">
<value> <value>Description of LSLEditor parcel</value>
Description of LSLEditor parcel
</value>
</setting> </setting>
<setting name="ParcelOwner" serializeAs="String"> <setting name="ParcelOwner" serializeAs="String">
<value> <value>00000000-0000-0000-0000-000000000000</value>
00000000-0000-0000-0000-000000000000
</value>
</setting> </setting>
<setting name="ParcelGroup" serializeAs="String"> <setting name="ParcelGroup" serializeAs="String">
<value> <value>00000000-0000-0000-0000-000000000000</value>
00000000-0000-0000-0000-000000000000
</value>
</setting> </setting>
<setting name="ParcelArea" serializeAs="String"> <setting name="ParcelArea" serializeAs="String">
<value>512</value> <value>512</value>
@ -265,11 +255,6 @@
<setting name="ReleaseNotes" serializeAs="String"> <setting name="ReleaseNotes" serializeAs="String">
<value>ReleaseNotes.htm</value> <value>ReleaseNotes.htm</value>
</setting> </setting>
<setting name="OopsRemove" serializeAs="String">
<value>
C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects
</value>
</setting>
<setting name="About" serializeAs="String"> <setting name="About" serializeAs="String">
<value>About.htm</value> <value>About.htm</value>
</setting> </setting>
@ -305,59 +290,40 @@
</value> </value>
</setting> </setting>
<setting name="Update" serializeAs="String"> <setting name="Update" serializeAs="String">
<value> <value>http://www.lsleditor.org/checkforupdate/Default.aspx?</value>
http://www.lsleditor.org/checkforupdate/Default.aspx?
</value>
</setting> </setting>
<setting name="Examples" serializeAs="String"> <setting name="Examples" serializeAs="String">
<value> <value>http://www.lsleditor.org/examples/</value>
http://www.lsleditor.org/examples/
</value>
</setting> </setting>
<setting name="Upload" serializeAs="String"> <setting name="Upload" serializeAs="String">
<value> <value>http://www.lsleditor.org/uploadscript/</value>
http://www.lsleditor.org/uploadscript/
</value>
</setting> </setting>
<setting name="ConfCSharp" serializeAs="String"> <setting name="ConfCSharp" serializeAs="String">
<value> <value>Resource.ConfCSharp.xml</value>
Resource.ConfCSharp.xml
</value>
</setting> </setting>
<setting name="UpdateManifest" serializeAs="String"> <setting name="UpdateManifest" serializeAs="String">
<value> <value>http://www.lsleditor.org/CheckForUpdate/Manifest.aspx</value>
http://www.lsleditor.org/CheckForUpdate/Manifest.aspx
</value>
</setting> </setting>
<setting name="ToolsOptions" serializeAs="String"> <setting name="ToolsOptions" serializeAs="String">
<value> <value>Resource.ToolsOptions.xml</value>
Resource.ToolsOptions.xml
</value>
</setting> </setting>
<setting name="ContactUrl" serializeAs="String"> <setting name="ContactUrl" serializeAs="String">
<value> <value>http://www.lsleditor.org/mail/</value>
http://www.lsleditor.org/mail/
</value>
</setting> </setting>
<setting name="DonateUrl" serializeAs="String"> <setting name="DonateUrl" serializeAs="String">
<value> <value>http://www.lsleditor.org/donate.htm</value>
http://www.lsleditor.org/donate.htm
</value>
</setting> </setting>
<setting name="Help2" serializeAs="String"> <setting name="Help2" serializeAs="String">
<value> <value>http://wiki.secondlife.com/wiki/Special:Search?go=Go&amp;search=</value>
http://wiki.secondlife.com/wiki/Special:Search?go=Go&amp;search=
</value>
</setting> </setting>
<setting name="Help1" serializeAs="String"> <setting name="Help1" serializeAs="String">
<value> <value>http://www.lslwiki.net/lslwiki/wakka.php?wakka=</value>
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
</value>
</setting> </setting>
<setting name="ForumLSLEditor" serializeAs="String"> <setting name="ForumLSLEditor" serializeAs="String">
<value> <value>http://www.lsleditor.org/forum/</value>
http://www.lsleditor.org/forum/ </setting>
</value> <setting name="OopsRemove" serializeAs="String">
<value>C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</value>
</setting> </setting>
</LSLEditor.Properties.Settings> </LSLEditor.Properties.Settings>
</applicationSettings> </applicationSettings>

View file

@ -255,9 +255,6 @@
<setting name="ReleaseNotes" serializeAs="String"> <setting name="ReleaseNotes" serializeAs="String">
<value>ReleaseNotes.htm</value> <value>ReleaseNotes.htm</value>
</setting> </setting>
<setting name="OopsRemove" serializeAs="String">
<value>C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</value>
</setting>
<setting name="About" serializeAs="String"> <setting name="About" serializeAs="String">
<value>About.htm</value> <value>About.htm</value>
</setting> </setting>
@ -293,59 +290,40 @@
</value> </value>
</setting> </setting>
<setting name="Update" serializeAs="String"> <setting name="Update" serializeAs="String">
<value> <value>http://www.lsleditor.org/checkforupdate/Default.aspx?</value>
http://www.lsleditor.org/checkforupdate/Default.aspx?
</value>
</setting> </setting>
<setting name="Examples" serializeAs="String"> <setting name="Examples" serializeAs="String">
<value> <value>http://www.lsleditor.org/examples/</value>
http://www.lsleditor.org/examples/
</value>
</setting> </setting>
<setting name="Upload" serializeAs="String"> <setting name="Upload" serializeAs="String">
<value> <value>http://www.lsleditor.org/uploadscript/</value>
http://www.lsleditor.org/uploadscript/
</value>
</setting> </setting>
<setting name="ConfCSharp" serializeAs="String"> <setting name="ConfCSharp" serializeAs="String">
<value> <value>Resource.ConfCSharp.xml</value>
Resource.ConfCSharp.xml
</value>
</setting> </setting>
<setting name="UpdateManifest" serializeAs="String"> <setting name="UpdateManifest" serializeAs="String">
<value> <value>http://www.lsleditor.org/CheckForUpdate/Manifest.aspx</value>
http://www.lsleditor.org/CheckForUpdate/Manifest.aspx
</value>
</setting> </setting>
<setting name="ToolsOptions" serializeAs="String"> <setting name="ToolsOptions" serializeAs="String">
<value> <value>Resource.ToolsOptions.xml</value>
Resource.ToolsOptions.xml
</value>
</setting> </setting>
<setting name="ContactUrl" serializeAs="String"> <setting name="ContactUrl" serializeAs="String">
<value> <value>http://www.lsleditor.org/mail/</value>
http://www.lsleditor.org/mail/
</value>
</setting> </setting>
<setting name="DonateUrl" serializeAs="String"> <setting name="DonateUrl" serializeAs="String">
<value> <value>http://www.lsleditor.org/donate.htm</value>
http://www.lsleditor.org/donate.htm
</value>
</setting> </setting>
<setting name="Help2" serializeAs="String"> <setting name="Help2" serializeAs="String">
<value> <value>http://wiki.secondlife.com/wiki/Special:Search?go=Go&amp;search=</value>
http://wiki.secondlife.com/wiki/Special:Search?go=Go&amp;search=
</value>
</setting> </setting>
<setting name="Help1" serializeAs="String"> <setting name="Help1" serializeAs="String">
<value> <value>http://www.lslwiki.net/lslwiki/wakka.php?wakka=</value>
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
</value>
</setting> </setting>
<setting name="ForumLSLEditor" serializeAs="String"> <setting name="ForumLSLEditor" serializeAs="String">
<value> <value>http://www.lsleditor.org/forum/</value>
http://www.lsleditor.org/forum/ </setting>
</value> <setting name="OopsRemove" serializeAs="String">
<value>C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</value>
</setting> </setting>
</LSLEditor.Properties.Settings> </LSLEditor.Properties.Settings>
</applicationSettings> </applicationSettings>

Binary file not shown.

View file

@ -255,9 +255,6 @@
<setting name="ReleaseNotes" serializeAs="String"> <setting name="ReleaseNotes" serializeAs="String">
<value>ReleaseNotes.htm</value> <value>ReleaseNotes.htm</value>
</setting> </setting>
<setting name="OopsRemove" serializeAs="String">
<value>C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</value>
</setting>
<setting name="About" serializeAs="String"> <setting name="About" serializeAs="String">
<value>About.htm</value> <value>About.htm</value>
</setting> </setting>
@ -293,59 +290,40 @@
</value> </value>
</setting> </setting>
<setting name="Update" serializeAs="String"> <setting name="Update" serializeAs="String">
<value> <value>http://www.lsleditor.org/checkforupdate/Default.aspx?</value>
http://www.lsleditor.org/checkforupdate/Default.aspx?
</value>
</setting> </setting>
<setting name="Examples" serializeAs="String"> <setting name="Examples" serializeAs="String">
<value> <value>http://www.lsleditor.org/examples/</value>
http://www.lsleditor.org/examples/
</value>
</setting> </setting>
<setting name="Upload" serializeAs="String"> <setting name="Upload" serializeAs="String">
<value> <value>http://www.lsleditor.org/uploadscript/</value>
http://www.lsleditor.org/uploadscript/
</value>
</setting> </setting>
<setting name="ConfCSharp" serializeAs="String"> <setting name="ConfCSharp" serializeAs="String">
<value> <value>Resource.ConfCSharp.xml</value>
Resource.ConfCSharp.xml
</value>
</setting> </setting>
<setting name="UpdateManifest" serializeAs="String"> <setting name="UpdateManifest" serializeAs="String">
<value> <value>http://www.lsleditor.org/CheckForUpdate/Manifest.aspx</value>
http://www.lsleditor.org/CheckForUpdate/Manifest.aspx
</value>
</setting> </setting>
<setting name="ToolsOptions" serializeAs="String"> <setting name="ToolsOptions" serializeAs="String">
<value> <value>Resource.ToolsOptions.xml</value>
Resource.ToolsOptions.xml
</value>
</setting> </setting>
<setting name="ContactUrl" serializeAs="String"> <setting name="ContactUrl" serializeAs="String">
<value> <value>http://www.lsleditor.org/mail/</value>
http://www.lsleditor.org/mail/
</value>
</setting> </setting>
<setting name="DonateUrl" serializeAs="String"> <setting name="DonateUrl" serializeAs="String">
<value> <value>http://www.lsleditor.org/donate.htm</value>
http://www.lsleditor.org/donate.htm
</value>
</setting> </setting>
<setting name="Help2" serializeAs="String"> <setting name="Help2" serializeAs="String">
<value> <value>http://wiki.secondlife.com/wiki/Special:Search?go=Go&amp;search=</value>
http://wiki.secondlife.com/wiki/Special:Search?go=Go&amp;search=
</value>
</setting> </setting>
<setting name="Help1" serializeAs="String"> <setting name="Help1" serializeAs="String">
<value> <value>http://www.lslwiki.net/lslwiki/wakka.php?wakka=</value>
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
</value>
</setting> </setting>
<setting name="ForumLSLEditor" serializeAs="String"> <setting name="ForumLSLEditor" serializeAs="String">
<value> <value>http://www.lsleditor.org/forum/</value>
http://www.lsleditor.org/forum/ </setting>
</value> <setting name="OopsRemove" serializeAs="String">
<value>C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</value>
</setting> </setting>
</LSLEditor.Properties.Settings> </LSLEditor.Properties.Settings>
</applicationSettings> </applicationSettings>

View file

@ -1,12 +1,16 @@
integer a()
{
return 1;
}
// www.lsleditor.org by Alphons van der Heijden (SL: Alphons Jano) // www.lsleditor.org by Alphons van der Heijden (SL: Alphons Jano)
default default
{ {
state_entry() state_entry()
{ {
llSay(0, "Ready to test!"); llSay(0, "Hello, Avatar!");
} }
touch_start(integer total_number) touch_start(integer total_number)
{ {
llSay(0, "Length of \\t (tab) character: "+(string)llStringLength("\t")); llSay(0, "Touched: "+(string)total_number);
} }
} }

Binary file not shown.

File diff suppressed because it is too large Load diff

View file

@ -1,29 +1,29 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8"?>
<root> <root>
<item name="Environment" usercontrol="EnvironmentGeneral"> <item name="Environment" usercontrol="EnvironmentGeneral">
<item name="General" usercontrol="EnvironmentGeneral"/> <item name="General" usercontrol="EnvironmentGeneral" />
<item name="Help" usercontrol="EnvironmentHelp"/> <item name="Help" usercontrol="EnvironmentHelp" />
<item name="Web Browser" usercontrol="EnvironmentBrowser"/> <item name="Web Browser" usercontrol="EnvironmentBrowser" />
<item name="Plugins" usercontrol="EnvironmentPlugins"/> <item name="Plugins" usercontrol="EnvironmentPlugins" />
</item> </item>
<item name="Projects and Solutions" usercontrol="ProjectSettings"> <item name="Projects and Solutions" usercontrol="ProjectSettings">
<item name="General" usercontrol="ProjectSettings"/> <item name="General" usercontrol="ProjectSettings" />
</item> </item>
<item name="Source Control" usercontrol="VersionControlGeneral"> <item name="Source Control" usercontrol="VersionControlGeneral">
<item name="General" usercontrol="VersionControlGeneral"/> <item name="General" usercontrol="VersionControlGeneral" />
</item> </item>
<item name="Text Editor" usercontrol="TextEditorGeneral"> <item name="Text Editor" usercontrol="TextEditorGeneral">
<item name="General" usercontrol="TextEditorGeneral"/> <item name="General" usercontrol="TextEditorGeneral" />
<item name="Fonts and Color" usercontrol="TextEditorFontColors"/> <item name="Fonts and Color" usercontrol="TextEditorFontColors" />
<item name="Code Completion" usercontrol="TextEditorCodeCompletion"/> <item name="Code Completion" usercontrol="TextEditorCodeCompletion" />
</item> </item>
<item name="Debugging" usercontrol="RuntimeGeneral"> <item name="Debugging" usercontrol="RuntimeGeneral">
<item name="General" usercontrol="RuntimeGeneral"/> <item name="General" usercontrol="RuntimeGeneral" />
<item name="Internal" usercontrol="RuntimeInternal"/> <item name="Internal" usercontrol="RuntimeInternal" />
<item name="External" usercontrol="RuntimeExternal"/> <item name="External" usercontrol="RuntimeExternal" />
<item name="Smtp" usercontrol="RuntimeSmtp"/> <item name="Smtp" usercontrol="RuntimeSmtp" />
</item> </item>
</root> </root>

Binary file not shown.

Binary file not shown.

View file

@ -105,6 +105,217 @@ C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects\LS
C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects\LSLEditor\obj\Debug\LSLEditor.Tools.VersionControlGeneral.resources C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects\LSLEditor\obj\Debug\LSLEditor.Tools.VersionControlGeneral.resources
C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects\LSLEditor\obj\Debug\LSLEditor.UpdateApplicationForm.resources C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects\LSLEditor\obj\Debug\LSLEditor.UpdateApplicationForm.resources
C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects\LSLEditor\obj\Debug\lsleditor.csproj.GenerateResource.Cache C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects\LSLEditor\obj\Debug\lsleditor.csproj.GenerateResource.Cache
C:\libs\LSLEditor\bin\Release\LSLEditor.exe.config
C:\libs\LSLEditor\bin\Release\LSLEditor.exe
C:\libs\LSLEditor\bin\Release\LSLEditor.XmlSerializers.dll
C:\libs\LSLEditor\obj\Release\ResolveAssemblyReference.cache
C:\libs\LSLEditor\obj\Release\LSLEditor.Resource.ConfLSL.xml
C:\libs\LSLEditor\obj\Release\LSLEditor.Resource.ConfCSharp.xml
C:\libs\LSLEditor\obj\Release\LSLEditor.Resource.ToolsOptions.xml
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Class.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Constants.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Enum.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Events.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Functions.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Namespace.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Properties.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.SealedClass.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Unknown.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Close-Active.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Close-Disabled.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Close-Inactive.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Animation.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Animations.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Body Parts.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Prim.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Calling Cards.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Clothes.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Eyes.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Folder.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Gesture.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Gestures.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Gloves.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Hair.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Inventory.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Jacket.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Landmark.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Landmarks.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Lost And Found.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Notecard.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Notecards.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Object.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Objects.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Pants.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Photo Album.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Project.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.question.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Script.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Scripts.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Shape.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Shirt.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Shoes.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Skin.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Skirt.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Snapshot.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Socks.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Solution.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Sound.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Sounds.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Texture.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Textures.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Trash.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Underpants.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Undershirt.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Unknown.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Vars.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.Resource.thanks.gif
C:\libs\LSLEditor\obj\Release\LSLEditor.Resource.About.htm
C:\libs\LSLEditor\obj\Release\LSLEditor.Resource.ReleaseNotes.htm
C:\libs\LSLEditor\obj\Release\LSLEditor.About.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Browser.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.BugReport.BugReportForm.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Solution.GuidProperty.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.NewProject.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.PermissionsForm.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.GotoWindow.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.EditForm.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.TooltipWindow.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.GListBoxWindow.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.RichLabel.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.FindWindow.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.llDialogForm.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.LSLEditorForm.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Properties.Resources.resources
C:\libs\LSLEditor\obj\Release\NumberedTextBox.NumberedTextBoxUC.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.GroupboxEvent.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.RuntimeConsole.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.SyntaxRichTextBox.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.SimulatorConsole.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Solution.SolutionExplorer.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Solution.SvnAguments.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.SyntaxError.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.EnvironmentPlugins.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.RuntimeGeneral.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.TextEditorCodeCompletion.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.EnvironmentBrowser.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.ProjectSettings.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.RuntimeInternal.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.RuntimeSmtp.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.RuntimeExternal.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.EnvironmentGeneral.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.TextEditorFontColors.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.EnvironmentHelp.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.TextEditorGeneral.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.ToolsOptions.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.VersionControlGeneral.resources
C:\libs\LSLEditor\obj\Release\LSLEditor.UpdateApplicationForm.resources
C:\libs\LSLEditor\obj\Release\lsleditor.csproj.GenerateResource.Cache
C:\libs\LSLEditor\obj\Release\LSLEditor.exe
C:\libs\LSLEditor\obj\Release\LSLEditor.XmlSerializers.dll
C:\libs\LSLEditor\bin\Debug\LSLEditor.exe.config C:\libs\LSLEditor\bin\Debug\LSLEditor.exe.config
C:\libs\LSLEditor\bin\Debug\LSLEditor.exe
C:\libs\LSLEditor\bin\Debug\LSLEditor.pdb
C:\libs\LSLEditor\obj\Debug\ResolveAssemblyReference.cache
C:\libs\LSLEditor\obj\Debug\LSLEditor.Resource.ConfLSL.xml
C:\libs\LSLEditor\obj\Debug\LSLEditor.Resource.ConfCSharp.xml
C:\libs\LSLEditor\obj\Debug\LSLEditor.Resource.ToolsOptions.xml
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Class.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Constants.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Enum.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Events.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Functions.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Namespace.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Properties.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.SealedClass.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Unknown.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Close-Active.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Close-Disabled.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Close-Inactive.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Animation.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Animations.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Body Parts.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Prim.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Calling Cards.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Clothes.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Eyes.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Folder.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Gesture.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Gestures.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Gloves.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Hair.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Inventory.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Jacket.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Landmark.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Landmarks.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Lost And Found.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Notecard.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Notecards.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Object.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Objects.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Pants.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Photo Album.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Project.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.question.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Script.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Scripts.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Shape.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Shirt.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Shoes.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Skin.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Skirt.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Snapshot.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Socks.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Solution.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Sound.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Sounds.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Texture.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Textures.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Trash.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Underpants.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Undershirt.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Unknown.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Vars.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.Resource.thanks.gif
C:\libs\LSLEditor\obj\Debug\LSLEditor.Resource.About.htm
C:\libs\LSLEditor\obj\Debug\LSLEditor.Resource.ReleaseNotes.htm
C:\libs\LSLEditor\obj\Debug\LSLEditor.About.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Browser.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.BugReport.BugReportForm.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Solution.GuidProperty.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.NewProject.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.PermissionsForm.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.GotoWindow.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.EditForm.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.TooltipWindow.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.GListBoxWindow.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.RichLabel.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.FindWindow.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.llDialogForm.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.LSLEditorForm.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Properties.Resources.resources
C:\libs\LSLEditor\obj\Debug\NumberedTextBox.NumberedTextBoxUC.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.GroupboxEvent.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.RuntimeConsole.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.SyntaxRichTextBox.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.SimulatorConsole.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Solution.SolutionExplorer.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Solution.SvnAguments.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.SyntaxError.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.EnvironmentPlugins.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.RuntimeGeneral.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.TextEditorCodeCompletion.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.EnvironmentBrowser.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.ProjectSettings.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.RuntimeInternal.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.RuntimeSmtp.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.RuntimeExternal.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.EnvironmentGeneral.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.TextEditorFontColors.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.EnvironmentHelp.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.TextEditorGeneral.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.ToolsOptions.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.VersionControlGeneral.resources
C:\libs\LSLEditor\obj\Debug\LSLEditor.UpdateApplicationForm.resources
C:\libs\LSLEditor\obj\Debug\lsleditor.csproj.GenerateResource.Cache
C:\libs\LSLEditor\obj\Debug\LSLEditor.exe C:\libs\LSLEditor\obj\Debug\LSLEditor.exe
C:\libs\LSLEditor\obj\Debug\LSLEditor.pdb C:\libs\LSLEditor\obj\Debug\LSLEditor.pdb