fixed broken settings
git-svn-id: https://lsleditor.svn.sourceforge.net/svnroot/lsleditor@12 3f4676ac-adda-40fd-8265-58d1435b1672
This commit is contained in:
parent
205be4af9b
commit
be66c127c1
22 changed files with 4667 additions and 4473 deletions
|
@ -53,7 +53,7 @@ using System.ComponentModel;
|
|||
using System.Drawing.Printing;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
using System.Diagnostics;
|
||||
namespace LSLEditor
|
||||
{
|
||||
public delegate void IsDirtyHandler(object sender, EventArgs e);
|
||||
|
@ -111,7 +111,7 @@ namespace LSLEditor
|
|||
|
||||
// bracket highlighting
|
||||
private List<int> HighLightList;
|
||||
|
||||
public LSLEditorForm p;
|
||||
public float CharWidth;
|
||||
public int LineHeight;
|
||||
|
||||
|
@ -301,6 +301,7 @@ namespace LSLEditor
|
|||
this.TooltipMouse = parent.TooltipMouse;
|
||||
this.TooltipKeyboard = parent.TooltipKeyboard;
|
||||
this.TooltipListBox = parent.TooltipListBox;
|
||||
p = parent;
|
||||
}
|
||||
|
||||
string ColorScheme = "color";
|
||||
|
@ -2024,6 +2025,7 @@ namespace LSLEditor
|
|||
{
|
||||
//TODO: finish the outline class and such
|
||||
// still a work in progress trying to figure out exactly how i wanna do this.
|
||||
|
||||
int len = this.Lines.Length;
|
||||
if (len < 1)
|
||||
{
|
||||
|
@ -2037,6 +2039,7 @@ namespace LSLEditor
|
|||
int lineNumber = 0;
|
||||
while ((line = reader.ReadLine()) != null)
|
||||
{
|
||||
|
||||
string[] words = line.Split(' ');
|
||||
foreach (string word in words)
|
||||
{
|
||||
|
@ -2047,6 +2050,7 @@ namespace LSLEditor
|
|||
{
|
||||
case KeyWordTypeEnum.Functions:
|
||||
list.Add(lineNumber, new LSLEditor.Helpers.OutlineHelper(k, lineNumber));
|
||||
Debug.WriteLine(k);
|
||||
break;
|
||||
case KeyWordTypeEnum.Events:
|
||||
break;
|
||||
|
@ -2069,7 +2073,14 @@ namespace LSLEditor
|
|||
}
|
||||
}
|
||||
//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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
102
trunk/LSLEditorForm.Designer.cs
generated
102
trunk/LSLEditorForm.Designer.cs
generated
|
@ -135,17 +135,17 @@ namespace LSLEditor
|
|||
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||
this.closeTabToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
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.panel1 = new System.Windows.Forms.Panel();
|
||||
this.splitter1 = new System.Windows.Forms.Splitter();
|
||||
this.pageSetupDialog1 = new System.Windows.Forms.PageSetupDialog();
|
||||
this.openFileDialog2 = new System.Windows.Forms.OpenFileDialog();
|
||||
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.statusStrip1.SuspendLayout();
|
||||
this.contextMenuStrip1.SuspendLayout();
|
||||
|
@ -995,51 +995,6 @@ namespace LSLEditor
|
|||
this.panel2.TabIndex = 20;
|
||||
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
|
||||
//
|
||||
this.tabControlExtended2.Controls.Add(this.tabPage1);
|
||||
|
@ -1089,6 +1044,51 @@ namespace LSLEditor
|
|||
this.treeView1.Size = new System.Drawing.Size(186, 438);
|
||||
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
|
||||
//
|
||||
this.AllowDrop = true;
|
||||
|
@ -1243,6 +1243,6 @@ namespace LSLEditor
|
|||
private System.Windows.Forms.ToolStripSeparator toolStripSeparator17;
|
||||
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8;
|
||||
private System.Windows.Forms.TabPage outline;
|
||||
private System.Windows.Forms.TreeView treeView1;
|
||||
public System.Windows.Forms.TreeView treeView1;
|
||||
}
|
||||
}
|
41
trunk/Properties/Settings.Designer.cs
generated
41
trunk/Properties/Settings.Designer.cs
generated
|
@ -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.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("About.htm")]
|
||||
|
@ -1124,7 +1115,7 @@ namespace LSLEditor.Properties {
|
|||
|
||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||
[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 {
|
||||
get {
|
||||
return ((string)(this["Update"]));
|
||||
|
@ -1133,7 +1124,7 @@ namespace LSLEditor.Properties {
|
|||
|
||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||
[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 {
|
||||
get {
|
||||
return ((string)(this["Examples"]));
|
||||
|
@ -1142,7 +1133,7 @@ namespace LSLEditor.Properties {
|
|||
|
||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||
[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 {
|
||||
get {
|
||||
return ((string)(this["Upload"]));
|
||||
|
@ -1151,7 +1142,7 @@ namespace LSLEditor.Properties {
|
|||
|
||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||
[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 {
|
||||
get {
|
||||
return ((string)(this["ConfCSharp"]));
|
||||
|
@ -1160,7 +1151,7 @@ namespace LSLEditor.Properties {
|
|||
|
||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||
[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 {
|
||||
get {
|
||||
return ((string)(this["UpdateManifest"]));
|
||||
|
@ -1169,7 +1160,7 @@ namespace LSLEditor.Properties {
|
|||
|
||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||
[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 {
|
||||
get {
|
||||
return ((string)(this["ToolsOptions"]));
|
||||
|
@ -1178,7 +1169,7 @@ namespace LSLEditor.Properties {
|
|||
|
||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||
[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 {
|
||||
get {
|
||||
return ((string)(this["ContactUrl"]));
|
||||
|
@ -1187,7 +1178,7 @@ namespace LSLEditor.Properties {
|
|||
|
||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||
[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 {
|
||||
get {
|
||||
return ((string)(this["DonateUrl"]));
|
||||
|
@ -1196,8 +1187,7 @@ namespace LSLEditor.Properties {
|
|||
|
||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||
[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 {
|
||||
get {
|
||||
return ((string)(this["Help2"]));
|
||||
|
@ -1206,7 +1196,7 @@ namespace LSLEditor.Properties {
|
|||
|
||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||
[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 {
|
||||
get {
|
||||
return ((string)(this["Help1"]));
|
||||
|
@ -1215,11 +1205,20 @@ namespace LSLEditor.Properties {
|
|||
|
||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||
[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 {
|
||||
get {
|
||||
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"]));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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">
|
||||
<Profiles />
|
||||
<Settings>
|
||||
|
@ -89,9 +89,6 @@
|
|||
<Setting Name="WikiSeperateBrowser" Type="System.Boolean" Scope="User">
|
||||
<Value Profile="(Default)">False</Value>
|
||||
</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">
|
||||
<Value Profile="(Default)">About.htm</Value>
|
||||
</Setting>
|
||||
|
@ -298,59 +295,40 @@
|
|||
</Value>
|
||||
</Setting>
|
||||
<Setting Name="Update" Type="System.String" Scope="Application">
|
||||
<Value Profile="(Default)">
|
||||
http://www.lsleditor.org/checkforupdate/Default.aspx?
|
||||
</Value>
|
||||
<Value Profile="(Default)">http://www.lsleditor.org/checkforupdate/Default.aspx?</Value>
|
||||
</Setting>
|
||||
<Setting Name="Examples" Type="System.String" Scope="Application">
|
||||
<Value Profile="(Default)">
|
||||
http://www.lsleditor.org/examples/
|
||||
</Value>
|
||||
<Value Profile="(Default)">http://www.lsleditor.org/examples/</Value>
|
||||
</Setting>
|
||||
<Setting Name="Upload" Type="System.String" Scope="Application">
|
||||
<Value Profile="(Default)">
|
||||
http://www.lsleditor.org/uploadscript/
|
||||
</Value>
|
||||
<Value Profile="(Default)">http://www.lsleditor.org/uploadscript/</Value>
|
||||
</Setting>
|
||||
<Setting Name="ConfCSharp" Type="System.String" Scope="Application">
|
||||
<Value Profile="(Default)">
|
||||
Resource.ConfCSharp.xml
|
||||
</Value>
|
||||
<Value Profile="(Default)">Resource.ConfCSharp.xml</Value>
|
||||
</Setting>
|
||||
<Setting Name="UpdateManifest" Type="System.String" Scope="Application">
|
||||
<Value Profile="(Default)">
|
||||
http://www.lsleditor.org/CheckForUpdate/Manifest.aspx
|
||||
</Value>
|
||||
<Value Profile="(Default)">http://www.lsleditor.org/CheckForUpdate/Manifest.aspx</Value>
|
||||
</Setting>
|
||||
<Setting Name="ToolsOptions" Type="System.String" Scope="Application">
|
||||
<Value Profile="(Default)">
|
||||
Resource.ToolsOptions.xml
|
||||
</Value>
|
||||
<Value Profile="(Default)">Resource.ToolsOptions.xml</Value>
|
||||
</Setting>
|
||||
<Setting Name="ContactUrl" Type="System.String" Scope="Application">
|
||||
<Value Profile="(Default)">
|
||||
http://www.lsleditor.org/mail/
|
||||
</Value>
|
||||
<Value Profile="(Default)">http://www.lsleditor.org/mail/</Value>
|
||||
</Setting>
|
||||
<Setting Name="DonateUrl" Type="System.String" Scope="Application">
|
||||
<Value Profile="(Default)">
|
||||
http://www.lsleditor.org/donate.htm
|
||||
</Value>
|
||||
<Value Profile="(Default)">http://www.lsleditor.org/donate.htm</Value>
|
||||
</Setting>
|
||||
<Setting Name="Help2" Type="System.String" Scope="Application">
|
||||
<Value Profile="(Default)">
|
||||
http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=
|
||||
</Value>
|
||||
<Value Profile="(Default)">http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=</Value>
|
||||
</Setting>
|
||||
<Setting Name="Help1" Type="System.String" Scope="Application">
|
||||
<Value Profile="(Default)">
|
||||
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
|
||||
</Value>
|
||||
<Value Profile="(Default)">http://www.lslwiki.net/lslwiki/wakka.php?wakka=</Value>
|
||||
</Setting>
|
||||
<Setting Name="ForumLSLEditor" Type="System.String" Scope="Application">
|
||||
<Value Profile="(Default)">
|
||||
http://www.lsleditor.org/forum/
|
||||
</Value>
|
||||
<Value Profile="(Default)">http://www.lsleditor.org/forum/</Value>
|
||||
</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>
|
||||
</Settings>
|
||||
</SettingsFile>
|
|
@ -1,5 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<root>
|
||||
<item name="Environment" usercontrol="EnvironmentGeneral">
|
||||
<item name="General" usercontrol="EnvironmentGeneral" />
|
||||
|
|
|
@ -27,9 +27,7 @@
|
|||
<value>smtp.emailserver.ext</value>
|
||||
</setting>
|
||||
<setting name="EmailAddress" serializeAs="String">
|
||||
<value>
|
||||
youraddress@yourdomain.ext
|
||||
</value>
|
||||
<value>youraddress@yourdomain.ext</value>
|
||||
</setting>
|
||||
<setting name="ProxyServer" serializeAs="String">
|
||||
<value />
|
||||
|
@ -50,9 +48,7 @@
|
|||
<value>0, 0</value>
|
||||
</setting>
|
||||
<setting name="Help" serializeAs="String">
|
||||
<value>
|
||||
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
|
||||
</value>
|
||||
<value>http://www.lslwiki.net/lslwiki/wakka.php?wakka=</value>
|
||||
</setting>
|
||||
<setting name="LSLEditorLocation" serializeAs="String">
|
||||
<value>0, 0</value>
|
||||
|
@ -232,19 +228,13 @@
|
|||
<value>LSLEditor parcel</value>
|
||||
</setting>
|
||||
<setting name="ParcelDescription" serializeAs="String">
|
||||
<value>
|
||||
Description of LSLEditor parcel
|
||||
</value>
|
||||
<value>Description of LSLEditor parcel</value>
|
||||
</setting>
|
||||
<setting name="ParcelOwner" serializeAs="String">
|
||||
<value>
|
||||
00000000-0000-0000-0000-000000000000
|
||||
</value>
|
||||
<value>00000000-0000-0000-0000-000000000000</value>
|
||||
</setting>
|
||||
<setting name="ParcelGroup" serializeAs="String">
|
||||
<value>
|
||||
00000000-0000-0000-0000-000000000000
|
||||
</value>
|
||||
<value>00000000-0000-0000-0000-000000000000</value>
|
||||
</setting>
|
||||
<setting name="ParcelArea" serializeAs="String">
|
||||
<value>512</value>
|
||||
|
@ -265,11 +255,6 @@
|
|||
<setting name="ReleaseNotes" serializeAs="String">
|
||||
<value>ReleaseNotes.htm</value>
|
||||
</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">
|
||||
<value>About.htm</value>
|
||||
</setting>
|
||||
|
@ -305,59 +290,40 @@
|
|||
</value>
|
||||
</setting>
|
||||
<setting name="Update" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/checkforupdate/Default.aspx?
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/checkforupdate/Default.aspx?</value>
|
||||
</setting>
|
||||
<setting name="Examples" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/examples/
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/examples/</value>
|
||||
</setting>
|
||||
<setting name="Upload" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/uploadscript/
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/uploadscript/</value>
|
||||
</setting>
|
||||
<setting name="ConfCSharp" serializeAs="String">
|
||||
<value>
|
||||
Resource.ConfCSharp.xml
|
||||
</value>
|
||||
<value>Resource.ConfCSharp.xml</value>
|
||||
</setting>
|
||||
<setting name="UpdateManifest" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/CheckForUpdate/Manifest.aspx
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/CheckForUpdate/Manifest.aspx</value>
|
||||
</setting>
|
||||
<setting name="ToolsOptions" serializeAs="String">
|
||||
<value>
|
||||
Resource.ToolsOptions.xml
|
||||
</value>
|
||||
<value>Resource.ToolsOptions.xml</value>
|
||||
</setting>
|
||||
<setting name="ContactUrl" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/mail/
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/mail/</value>
|
||||
</setting>
|
||||
<setting name="DonateUrl" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/donate.htm
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/donate.htm</value>
|
||||
</setting>
|
||||
<setting name="Help2" serializeAs="String">
|
||||
<value>
|
||||
http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=
|
||||
</value>
|
||||
<value>http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=</value>
|
||||
</setting>
|
||||
<setting name="Help1" serializeAs="String">
|
||||
<value>
|
||||
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
|
||||
</value>
|
||||
<value>http://www.lslwiki.net/lslwiki/wakka.php?wakka=</value>
|
||||
</setting>
|
||||
<setting name="ForumLSLEditor" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/forum/
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/forum/</value>
|
||||
</setting>
|
||||
<setting name="OopsRemove" serializeAs="String">
|
||||
<value>C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</value>
|
||||
</setting>
|
||||
</LSLEditor.Properties.Settings>
|
||||
</applicationSettings>
|
||||
|
|
|
@ -255,9 +255,6 @@
|
|||
<setting name="ReleaseNotes" serializeAs="String">
|
||||
<value>ReleaseNotes.htm</value>
|
||||
</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">
|
||||
<value>About.htm</value>
|
||||
</setting>
|
||||
|
@ -293,59 +290,40 @@
|
|||
</value>
|
||||
</setting>
|
||||
<setting name="Update" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/checkforupdate/Default.aspx?
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/checkforupdate/Default.aspx?</value>
|
||||
</setting>
|
||||
<setting name="Examples" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/examples/
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/examples/</value>
|
||||
</setting>
|
||||
<setting name="Upload" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/uploadscript/
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/uploadscript/</value>
|
||||
</setting>
|
||||
<setting name="ConfCSharp" serializeAs="String">
|
||||
<value>
|
||||
Resource.ConfCSharp.xml
|
||||
</value>
|
||||
<value>Resource.ConfCSharp.xml</value>
|
||||
</setting>
|
||||
<setting name="UpdateManifest" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/CheckForUpdate/Manifest.aspx
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/CheckForUpdate/Manifest.aspx</value>
|
||||
</setting>
|
||||
<setting name="ToolsOptions" serializeAs="String">
|
||||
<value>
|
||||
Resource.ToolsOptions.xml
|
||||
</value>
|
||||
<value>Resource.ToolsOptions.xml</value>
|
||||
</setting>
|
||||
<setting name="ContactUrl" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/mail/
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/mail/</value>
|
||||
</setting>
|
||||
<setting name="DonateUrl" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/donate.htm
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/donate.htm</value>
|
||||
</setting>
|
||||
<setting name="Help2" serializeAs="String">
|
||||
<value>
|
||||
http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=
|
||||
</value>
|
||||
<value>http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=</value>
|
||||
</setting>
|
||||
<setting name="Help1" serializeAs="String">
|
||||
<value>
|
||||
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
|
||||
</value>
|
||||
<value>http://www.lslwiki.net/lslwiki/wakka.php?wakka=</value>
|
||||
</setting>
|
||||
<setting name="ForumLSLEditor" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/forum/
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/forum/</value>
|
||||
</setting>
|
||||
<setting name="OopsRemove" serializeAs="String">
|
||||
<value>C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</value>
|
||||
</setting>
|
||||
</LSLEditor.Properties.Settings>
|
||||
</applicationSettings>
|
||||
|
|
Binary file not shown.
|
@ -255,9 +255,6 @@
|
|||
<setting name="ReleaseNotes" serializeAs="String">
|
||||
<value>ReleaseNotes.htm</value>
|
||||
</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">
|
||||
<value>About.htm</value>
|
||||
</setting>
|
||||
|
@ -293,59 +290,40 @@
|
|||
</value>
|
||||
</setting>
|
||||
<setting name="Update" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/checkforupdate/Default.aspx?
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/checkforupdate/Default.aspx?</value>
|
||||
</setting>
|
||||
<setting name="Examples" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/examples/
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/examples/</value>
|
||||
</setting>
|
||||
<setting name="Upload" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/uploadscript/
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/uploadscript/</value>
|
||||
</setting>
|
||||
<setting name="ConfCSharp" serializeAs="String">
|
||||
<value>
|
||||
Resource.ConfCSharp.xml
|
||||
</value>
|
||||
<value>Resource.ConfCSharp.xml</value>
|
||||
</setting>
|
||||
<setting name="UpdateManifest" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/CheckForUpdate/Manifest.aspx
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/CheckForUpdate/Manifest.aspx</value>
|
||||
</setting>
|
||||
<setting name="ToolsOptions" serializeAs="String">
|
||||
<value>
|
||||
Resource.ToolsOptions.xml
|
||||
</value>
|
||||
<value>Resource.ToolsOptions.xml</value>
|
||||
</setting>
|
||||
<setting name="ContactUrl" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/mail/
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/mail/</value>
|
||||
</setting>
|
||||
<setting name="DonateUrl" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/donate.htm
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/donate.htm</value>
|
||||
</setting>
|
||||
<setting name="Help2" serializeAs="String">
|
||||
<value>
|
||||
http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=
|
||||
</value>
|
||||
<value>http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=</value>
|
||||
</setting>
|
||||
<setting name="Help1" serializeAs="String">
|
||||
<value>
|
||||
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
|
||||
</value>
|
||||
<value>http://www.lslwiki.net/lslwiki/wakka.php?wakka=</value>
|
||||
</setting>
|
||||
<setting name="ForumLSLEditor" serializeAs="String">
|
||||
<value>
|
||||
http://www.lsleditor.org/forum/
|
||||
</value>
|
||||
<value>http://www.lsleditor.org/forum/</value>
|
||||
</setting>
|
||||
<setting name="OopsRemove" serializeAs="String">
|
||||
<value>C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</value>
|
||||
</setting>
|
||||
</LSLEditor.Properties.Settings>
|
||||
</applicationSettings>
|
||||
|
|
|
@ -1,12 +1,16 @@
|
|||
integer a()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
// www.lsleditor.org by Alphons van der Heijden (SL: Alphons Jano)
|
||||
default
|
||||
{
|
||||
state_entry()
|
||||
{
|
||||
llSay(0, "Ready to test!");
|
||||
llSay(0, "Hello, Avatar!");
|
||||
}
|
||||
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.
Binary file not shown.
File diff suppressed because it is too large
Load diff
|
@ -1,29 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<item name="Environment" usercontrol="EnvironmentGeneral">
|
||||
<item name="General" usercontrol="EnvironmentGeneral"/>
|
||||
<item name="Help" usercontrol="EnvironmentHelp"/>
|
||||
<item name="Web Browser" usercontrol="EnvironmentBrowser"/>
|
||||
<item name="Plugins" usercontrol="EnvironmentPlugins"/>
|
||||
<item name="General" usercontrol="EnvironmentGeneral" />
|
||||
<item name="Help" usercontrol="EnvironmentHelp" />
|
||||
<item name="Web Browser" usercontrol="EnvironmentBrowser" />
|
||||
<item name="Plugins" usercontrol="EnvironmentPlugins" />
|
||||
</item>
|
||||
<item name="Projects and Solutions" usercontrol="ProjectSettings">
|
||||
<item name="General" usercontrol="ProjectSettings"/>
|
||||
<item name="General" usercontrol="ProjectSettings" />
|
||||
</item>
|
||||
|
||||
<item name="Source Control" usercontrol="VersionControlGeneral">
|
||||
<item name="General" usercontrol="VersionControlGeneral"/>
|
||||
<item name="General" usercontrol="VersionControlGeneral" />
|
||||
</item>
|
||||
|
||||
<item name="Text Editor" usercontrol="TextEditorGeneral">
|
||||
<item name="General" usercontrol="TextEditorGeneral"/>
|
||||
<item name="Fonts and Color" usercontrol="TextEditorFontColors"/>
|
||||
<item name="Code Completion" usercontrol="TextEditorCodeCompletion"/>
|
||||
<item name="General" usercontrol="TextEditorGeneral" />
|
||||
<item name="Fonts and Color" usercontrol="TextEditorFontColors" />
|
||||
<item name="Code Completion" usercontrol="TextEditorCodeCompletion" />
|
||||
</item>
|
||||
|
||||
<item name="Debugging" usercontrol="RuntimeGeneral">
|
||||
<item name="General" usercontrol="RuntimeGeneral"/>
|
||||
<item name="Internal" usercontrol="RuntimeInternal"/>
|
||||
<item name="External" usercontrol="RuntimeExternal"/>
|
||||
<item name="Smtp" usercontrol="RuntimeSmtp"/>
|
||||
<item name="General" usercontrol="RuntimeGeneral" />
|
||||
<item name="Internal" usercontrol="RuntimeInternal" />
|
||||
<item name="External" usercontrol="RuntimeExternal" />
|
||||
<item name="Smtp" usercontrol="RuntimeSmtp" />
|
||||
</item>
|
||||
</root>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -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.UpdateApplicationForm.resources
|
||||
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
|
||||
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.pdb
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue