mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-17 01:22:18 +00:00
Added keyword help for some script types in the script editor
This commit is contained in:
parent
ec40df4765
commit
a196125255
11 changed files with 125 additions and 61 deletions
|
@ -39,9 +39,13 @@
|
|||
<td>Opens the Find and Replace dialog window.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><b>CTRL+F3</b></td>
|
||||
<td valign="top"><b>F3</b></td>
|
||||
<td>Finds the next occurence of the most recent search with the Find and Replace dialog window.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><b>F2</b></td>
|
||||
<td>If supported for the type of script you are editing, this opens a website with information about the current keyword that your cursor is at.</td>
|
||||
</tr>
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
|
|
BIN
Resources/Icons/ScriptHelp.png
Normal file
BIN
Resources/Icons/ScriptHelp.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 965 B |
|
@ -719,6 +719,7 @@
|
|||
<None Include="Resources\Builder16.png" />
|
||||
<None Include="Resources\CLogo.png" />
|
||||
<Content Include="Resources\DB2.ico" />
|
||||
<None Include="Resources\ScriptHelp.png" />
|
||||
<None Include="Resources\ErrorLarge.png" />
|
||||
<None Include="Resources\WarningLarge.png" />
|
||||
<None Include="Resources\Question.png" />
|
||||
|
|
|
@ -115,6 +115,12 @@ namespace CodeImp.DoomBuilder.Controls
|
|||
|
||||
#region ================== Methods
|
||||
|
||||
// This launches keyword help website
|
||||
public void LaunchKeywordHelp()
|
||||
{
|
||||
editor.LaunchKeywordHelp();
|
||||
}
|
||||
|
||||
// This refreshes the style settings
|
||||
public virtual void RefreshSettings()
|
||||
{
|
||||
|
|
|
@ -162,6 +162,19 @@ namespace CodeImp.DoomBuilder.Controls
|
|||
|
||||
#region ================== Methods
|
||||
|
||||
// This launches keyword help website
|
||||
public void LaunchKeywordHelp()
|
||||
{
|
||||
string helpsite = scriptconfig.KeywordHelp;
|
||||
string currentword = GetCurrentWord();
|
||||
if(!string.IsNullOrEmpty(currentword) && (currentword.Length > 1) && !string.IsNullOrEmpty(helpsite))
|
||||
{
|
||||
currentword = scriptconfig.GetKeywordCase(currentword);
|
||||
helpsite = helpsite.Replace("%K", currentword);
|
||||
General.OpenWebsite(helpsite);
|
||||
}
|
||||
}
|
||||
|
||||
// This replaces the selection with the given text
|
||||
public void ReplaceSelection(string replacement)
|
||||
{
|
||||
|
@ -664,6 +677,13 @@ namespace CodeImp.DoomBuilder.Controls
|
|||
e.Handled = true;
|
||||
}
|
||||
|
||||
// F2 for Keyword Help
|
||||
if((e.KeyCode == Keys.F2) && (e.Modifiers == Keys.None))
|
||||
{
|
||||
LaunchKeywordHelp();
|
||||
e.Handled = true;
|
||||
}
|
||||
|
||||
// CTRL+F for find & replace
|
||||
if((e.KeyCode == Keys.F) && ((e.Modifiers & Keys.Control) == Keys.Control))
|
||||
{
|
||||
|
|
16
Source/Core/Controls/ScriptEditorPanel.Designer.cs
generated
16
Source/Core/Controls/ScriptEditorPanel.Designer.cs
generated
|
@ -47,6 +47,7 @@ namespace CodeImp.DoomBuilder.Controls
|
|||
this.buttonscriptconfig = new System.Windows.Forms.ToolStripDropDownButton();
|
||||
this.buttoncompile = new System.Windows.Forms.ToolStripButton();
|
||||
this.buttonclose = new System.Windows.Forms.ToolStripButton();
|
||||
this.buttonkeywordhelp = new System.Windows.Forms.ToolStripButton();
|
||||
this.openfile = new System.Windows.Forms.OpenFileDialog();
|
||||
this.savefile = new System.Windows.Forms.SaveFileDialog();
|
||||
this.splitter = new System.Windows.Forms.SplitContainer();
|
||||
|
@ -97,7 +98,8 @@ namespace CodeImp.DoomBuilder.Controls
|
|||
this.toolStripSeparator3,
|
||||
this.buttonscriptconfig,
|
||||
this.buttoncompile,
|
||||
this.buttonclose});
|
||||
this.buttonclose,
|
||||
this.buttonkeywordhelp});
|
||||
this.toolbar.Location = new System.Drawing.Point(0, 0);
|
||||
this.toolbar.Name = "toolbar";
|
||||
this.toolbar.Size = new System.Drawing.Size(726, 25);
|
||||
|
@ -249,6 +251,17 @@ namespace CodeImp.DoomBuilder.Controls
|
|||
this.buttonclose.Text = "Close File";
|
||||
this.buttonclose.Click += new System.EventHandler(this.buttonclose_Click);
|
||||
//
|
||||
// buttonkeywordhelp
|
||||
//
|
||||
this.buttonkeywordhelp.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
|
||||
this.buttonkeywordhelp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.buttonkeywordhelp.Image = global::CodeImp.DoomBuilder.Properties.Resources.ScriptHelp;
|
||||
this.buttonkeywordhelp.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.buttonkeywordhelp.Name = "buttonkeywordhelp";
|
||||
this.buttonkeywordhelp.Size = new System.Drawing.Size(23, 22);
|
||||
this.buttonkeywordhelp.Text = "Keyword Help";
|
||||
this.buttonkeywordhelp.Click += new System.EventHandler(this.buttonkeywordhelp_Click);
|
||||
//
|
||||
// openfile
|
||||
//
|
||||
this.openfile.Title = "Open Script";
|
||||
|
@ -385,5 +398,6 @@ namespace CodeImp.DoomBuilder.Controls
|
|||
private System.Windows.Forms.ColumnHeader colDescription;
|
||||
private System.Windows.Forms.ColumnHeader colFile;
|
||||
private System.Windows.Forms.ImageList errorimages;
|
||||
private System.Windows.Forms.ToolStripButton buttonkeywordhelp;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -421,6 +421,7 @@ namespace CodeImp.DoomBuilder.Controls
|
|||
buttonsave.Enabled = (t != null) && t.ExplicitSave;
|
||||
buttonsaveall.Enabled = (explicitsavescripts > 0);
|
||||
buttoncompile.Enabled = (t != null) && (t.Config.Compiler != null);
|
||||
buttonkeywordhelp.Enabled = (t != null) && !string.IsNullOrEmpty(t.Config.KeywordHelp);
|
||||
buttonscriptconfig.Enabled = (t != null) && t.IsReconfigurable;
|
||||
buttonundo.Enabled = (t != null);
|
||||
buttonredo.Enabled = (t != null);
|
||||
|
@ -516,6 +517,14 @@ namespace CodeImp.DoomBuilder.Controls
|
|||
if(findreplaceform != null) findreplaceform.Dispose();
|
||||
}
|
||||
|
||||
// Keyword help requested
|
||||
private void buttonkeywordhelp_Click(object sender, EventArgs e)
|
||||
{
|
||||
// Get script
|
||||
ScriptDocumentTab t = (tabs.SelectedTab as ScriptDocumentTab);
|
||||
t.LaunchKeywordHelp();
|
||||
}
|
||||
|
||||
// When the user changes the script configuration
|
||||
private void buttonscriptconfig_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
|
|
@ -150,28 +150,28 @@
|
|||
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
||||
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADI
|
||||
BQAAAk1TRnQBSQFMAwEBAAEEAQABBAEAARABAAEQAQAE/wEhAQAI/wFCAU0BNgcAATYDAAEoAwABQAMA
|
||||
ARADAAEBAQABIAYAARD/ACMAAc8B2AHyAf8BXAF0AbkB/wElAUABkwH/AR0BMwF5Af8BFgEsAXAB/wEW
|
||||
ATABgQH/AUsBYQGkAf8BzwHYAfIB/9wAAYEBlAHUAf8BMAFPAawB/wEeAUMBuAH/AQ4BPgHQAf8BBQE7
|
||||
AeIB/wEEATgB3AH/AQgBNQG9Af8BCwEsAZYB/wEMAScBfgH/AWkBewGyAf/UAAGJAZ0B3AH/AT0BXAG7
|
||||
Af8BHgFOAd0B/wELAUYB+gH/AQkBQwH5Af8BSQF0AfgB/wFJAXQB+AH/AQIBOwHqAf8BAgE4AeQB/wEH
|
||||
ATEBtgH/AQwBJwF+Af8BaQF7AbIB/8wAAc8B2AHyAf8BUgFtAcYB/wEwAVwB4wH/AR0BVAH9Af8BHQFU
|
||||
Af0B/wFYAYEB/gH/A/4B/wP+Af8BWwGBAfoB/wECATwB7gH/AQIBOAHkAf8BBwExAbYB/wEMAScBfgH/
|
||||
Ac8B2AHyAf/IAAGnAbYB5QH/AU8BcgHZAf8BLgFhAv8BLwFjAv8BLgFhAv8BZwGLAv8D/gH/A/4B/wFS
|
||||
AXsB+wH/AQQBQAH4Af8BAgE8Ae4B/wECATgB5AH/AQsBLAGWAf8BSwFhAaQB/8gAAXIBiQHVAf8BTgF1
|
||||
Ae4B/wFAAW8C/wFDAXEC/wFAAW8C/wE7AWwC/wFrAY4C/wFiAYYC/wEdAVQB/QH/AQ8BSgH7Af8BBAFA
|
||||
AfgB/wECATsB6gH/AQgBNQG9Af8BFgEwAYEB/8gAAYEBlAHRAf8BUgF7AfsB/wFUAX4C/wFYAYEB/gH/
|
||||
AVQBfgL/AWIBhgL/A/4B/wP+Af8BQAFvAv8BGgFSAfsB/wELAUYB+gH/AQIBPQHzAf8BBAE4AdwB/wEW
|
||||
ASwBcAH/yAABigGbAdQB/wFiAYYB+wH/AWcBiwL/AWsBjgL/AWcBiwL/AZcBsQL/A/4B/wP+Af8BewGa
|
||||
Av8BIwFZAf0B/wEPAUoB+wH/AQQBQAH4Af8BBQE7AeIB/wEdATMBeQH/yAABiQGdAdwB/wF7AZYB8gH/
|
||||
AXsBmgL/AX4BnAL/AXsBmgL/AbEBxAL/A/4B/wP+Af8BogG4Af4B/wEqAV4B/gH/ARoBUgH7Af8BCQFD
|
||||
AfkB/wEOAT4B0AH/ASUBQAGTAf/IAAGnAbYB5QH/AY0BowHlAf8BhwGkAv8BjQGoAv8BhwGkAv8BxQHT
|
||||
Af4B/wP+Af8D/gH/AbUBxwH+Af8BLgFhAv8BHQFUAf0B/wELAUYB+gH/AR4BQwG4Af8BZgF8AboB/8gA
|
||||
Ac8B2AHyAf8BlwGnAd0B/wGVAasB8QH/AZcBsQL/AY0BqAL/AakBvgL/A/4B/wP+Af8BgwGhAv8BLwFj
|
||||
Av8BHQFUAf0B/wEeAU4B3QH/ATABTwGsAf8BzwHYAfIB/8wAAbQBwgHsAf8BmwGqAd0B/wGVAasB8QH/
|
||||
AYcBpAL/AXsBmgL/AWcBiwL/AVQBfgL/AUABbwL/AS8BYwL/ATABXAHjAf8BPQFcAbsB/wF3AYwB1AH/
|
||||
1AABtAHCAewB/wGXAacB3QH/AY0BowHlAf8BewGWAfIB/wFiAYYB+wH/AVIBewH7Af8BTgF1Ae4B/wFP
|
||||
AXIB2QH/AVIBbQHGAf8BgAGVAdwB/9wAAcwB2AH+Af8BnQGtAeAB/wGJAZ0B3AH/AYoBmwHUAf8BgQGU
|
||||
AdEB/wFyAYkB1QH/AYEBlAHRAf8BzAHYAf4B//8A0QABQgFNAT4HAAE+AwABKAMAAUADAAEQAwABAQEA
|
||||
ARADAAEBAQABIAYAARD/ACMAAc8B2AHyAf8BXwF3AbkB/wEoAUMBkwH/ASABNgF8Af8BGQEvAXMB/wEZ
|
||||
ATMBgQH/AU4BZAGkAf8BzwHYAfIB/9wAAYEBlAHUAf8BMwFSAawB/wEhAUYBuAH/AREBQQHQAf8BCAE+
|
||||
AeIB/wEHATsB3AH/AQsBOAG9Af8BDgEvAZYB/wEPASoBgQH/AWwBfgGyAf/UAAGJAZ0B3AH/AUABXwG7
|
||||
Af8BIQFRAd0B/wEOAUkB+gH/AQwBRgH5Af8BTAF3AfgB/wFMAXcB+AH/AQUBPgHqAf8BBQE7AeQB/wEK
|
||||
ATQBtgH/AQ8BKgGBAf8BbAF+AbIB/8wAAc8B2AHyAf8BVQFwAcYB/wEzAV8B4wH/ASABVwH9Af8BIAFX
|
||||
Af0B/wFbAYEB/gH/A/4B/wP+Af8BXgGBAfoB/wEFAT8B7gH/AQUBOwHkAf8BCgE0AbYB/wEPASoBgQH/
|
||||
Ac8B2AHyAf/IAAGnAbYB5QH/AVIBdQHZAf8BMQFkAv8BMgFmAv8BMQFkAv8BagGLAv8D/gH/A/4B/wFV
|
||||
AX4B+wH/AQcBQwH4Af8BBQE/Ae4B/wEFATsB5AH/AQ4BLwGWAf8BTgFkAaQB/8gAAXUBiQHVAf8BUQF4
|
||||
Ae4B/wFDAXIC/wFGAXQC/wFDAXIC/wE+AW8C/wFuAY4C/wFlAYYC/wEgAVcB/QH/ARIBTQH7Af8BBwFD
|
||||
AfgB/wEFAT4B6gH/AQsBOAG9Af8BGQEzAYEB/8gAAYEBlAHRAf8BVQF+AfsB/wFXAYEC/wFbAYEB/gH/
|
||||
AVcBgQL/AWUBhgL/A/4B/wP+Af8BQwFyAv8BHQFVAfsB/wEOAUkB+gH/AQUBQAHzAf8BBwE7AdwB/wEZ
|
||||
AS8BcwH/yAABigGbAdQB/wFlAYYB+wH/AWoBiwL/AW4BjgL/AWoBiwL/AZcBsQL/A/4B/wP+Af8BfgGa
|
||||
Av8BJgFcAf0B/wESAU0B+wH/AQcBQwH4Af8BCAE+AeIB/wEgATYBfAH/yAABiQGdAdwB/wF+AZYB8gH/
|
||||
AX4BmgL/AYEBnAL/AX4BmgL/AbEBxAL/A/4B/wP+Af8BogG4Af4B/wEtAWEB/gH/AR0BVQH7Af8BDAFG
|
||||
AfkB/wERAUEB0AH/ASgBQwGTAf/IAAGnAbYB5QH/AY0BowHlAf8BhwGkAv8BjQGoAv8BhwGkAv8BxQHT
|
||||
Af4B/wP+Af8D/gH/AbUBxwH+Af8BMQFkAv8BIAFXAf0B/wEOAUkB+gH/ASEBRgG4Af8BaQF/AboB/8gA
|
||||
Ac8B2AHyAf8BlwGnAd0B/wGVAasB8QH/AZcBsQL/AY0BqAL/AakBvgL/A/4B/wP+Af8BgwGhAv8BMgFm
|
||||
Av8BIAFXAf0B/wEhAVEB3QH/ATMBUgGsAf8BzwHYAfIB/8wAAbQBwgHsAf8BmwGqAd0B/wGVAasB8QH/
|
||||
AYcBpAL/AX4BmgL/AWoBiwL/AVcBgQL/AUMBcgL/ATIBZgL/ATMBXwHjAf8BQAFfAbsB/wF6AYwB1AH/
|
||||
1AABtAHCAewB/wGXAacB3QH/AY0BowHlAf8BfgGWAfIB/wFlAYYB+wH/AVUBfgH7Af8BUQF4Ae4B/wFS
|
||||
AXUB2QH/AVUBcAHGAf8BgQGVAdwB/9wAAcwB2AH+Af8BnQGtAeAB/wGJAZ0B3AH/AYoBmwHUAf8BgQGU
|
||||
AdEB/wF1AYkB1QH/AYEBlAHRAf8BzAHYAf4B//8A0QABQgFNAT4HAAE+AwABKAMAAUADAAEQAwABAQEA
|
||||
AQEFAAGAFwAD/wEAAv8GAAHwAQ8GAAHgAQcGAAHAAQMGAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGA
|
||||
AQEGAAGAAQEGAAGAAQEGAAGAAQEGAAHAAQMGAAHgAQcGAAHwAQ8GAAL/BgAL
|
||||
</value>
|
||||
|
|
7
Source/Core/Properties/Resources.Designer.cs
generated
7
Source/Core/Properties/Resources.Designer.cs
generated
|
@ -326,6 +326,13 @@ namespace CodeImp.DoomBuilder.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
internal static System.Drawing.Bitmap ScriptHelp {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("ScriptHelp", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
internal static byte[] ScriptKeyword {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("ScriptKeyword", resourceCulture);
|
||||
|
|
|
@ -121,20 +121,14 @@
|
|||
<data name="Grid2" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Grid2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Grid2_arrowup" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Grid2_arrowup.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ScriptConstant" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\ScriptConstant.xpm;System.Byte[], mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="Grid4" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Grid4.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="UnknownImage" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\UnknownImage.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Hourglass" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Hourglass.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="Copy" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Copy.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Status11" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Status11.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
|
@ -142,8 +136,8 @@
|
|||
<data name="Status10" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Status10.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="mergegeometry" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\mergegeometry.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="ViewNormal" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\ViewNormal.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Status1" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Status1.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
|
@ -166,14 +160,20 @@
|
|||
<data name="KnownTextureSet" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\KnownTextureSet.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="NewScript" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\NewScript.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Status12" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Status12.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Redo" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Redo.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="OpenMap" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\OpenMap.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="mergegeometry2" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\mergegeometry2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="SaveAll" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\SaveAll.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ViewTextureFloor" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\ViewTextureFloor.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
|
@ -187,20 +187,26 @@
|
|||
<data name="Monster2" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Monster2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Hourglass" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Hourglass.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="WarningLarge" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\WarningLarge.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="File" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\NewMap.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Copy" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Copy.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ScriptPalette" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\ScriptPalette.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="NewMap" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\NewMap2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ViewNormal" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\ViewNormal.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="Grid2_arrowup" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Grid2_arrowup.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="CLogo" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\CLogo.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="SaveMap" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\SaveMap.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
|
@ -217,6 +223,9 @@
|
|||
<data name="Prefab" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Prefab.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="MissingTexture" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\MissingTexture.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Zoom" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Zoom.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
@ -247,8 +256,8 @@
|
|||
<data name="Splash3_small" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Splash3_small.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="mergegeometry2" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\mergegeometry2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="Grid4" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Grid4.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Prefab2" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Prefab2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
|
@ -256,8 +265,8 @@
|
|||
<data name="Question" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Question.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="SaveAll" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\SaveAll.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="mergegeometry" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\mergegeometry.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ColorPick" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\ColorPick.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
|
@ -271,9 +280,6 @@
|
|||
<data name="ScriptCompile" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\ScriptCompile.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="SaveScript" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\SaveScript.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="OpenScript" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\OpenScript.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
@ -286,22 +292,19 @@
|
|||
<data name="Splash3_trans" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Splash3_trans.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="MissingTexture" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\MissingTexture.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Warning" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Warning.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="NewScript" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\NewScript.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="CLogo" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\CLogo.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="OpenMap" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\OpenMap.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ErrorLarge" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\ErrorLarge.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="WarningLarge" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\WarningLarge.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="Warning" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Warning.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="SaveScript" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\SaveScript.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ScriptHelp" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\ScriptHelp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
</root>
|
BIN
Source/Core/Resources/ScriptHelp.png
Normal file
BIN
Source/Core/Resources/ScriptHelp.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 965 B |
Loading…
Reference in a new issue