mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-07 08:21:59 +00:00
Some reference manual implementation
This commit is contained in:
parent
a1279a1dc9
commit
c53ee9c927
52 changed files with 1178 additions and 922 deletions
BIN
Resources/Icons/Help.png
Normal file
BIN
Resources/Icons/Help.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 367 B |
BIN
Resources/Icons/Question.png
Normal file
BIN
Resources/Icons/Question.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 960 B |
|
@ -717,7 +717,10 @@
|
||||||
<EmbeddedResource Include="Resources\Crosshair.png" />
|
<EmbeddedResource Include="Resources\Crosshair.png" />
|
||||||
<EmbeddedResource Include="Resources\CrosshairBusy.png" />
|
<EmbeddedResource Include="Resources\CrosshairBusy.png" />
|
||||||
<Compile Include="Config\BrightnessList.cs" />
|
<Compile Include="Config\BrightnessList.cs" />
|
||||||
|
<None Include="Resources\Builder16.png" />
|
||||||
<Content Include="Resources\DB2.ico" />
|
<Content Include="Resources\DB2.ico" />
|
||||||
|
<None Include="Resources\Question.png" />
|
||||||
|
<None Include="Resources\Help.png" />
|
||||||
<None Include="Resources\Status11.png" />
|
<None Include="Resources\Status11.png" />
|
||||||
<None Include="Resources\Status10.png" />
|
<None Include="Resources\Status10.png" />
|
||||||
<None Include="Resources\Status12.png" />
|
<None Include="Resources\Status12.png" />
|
||||||
|
|
|
@ -160,6 +160,9 @@ namespace CodeImp.DoomBuilder.Editing
|
||||||
General.Actions.UnbindMethods(this);
|
General.Actions.UnbindMethods(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Called when the user presses F1 for Help
|
||||||
|
public virtual void OnHelp() { }
|
||||||
|
|
||||||
// This forces the mode to cancel and return to the "parent" mode
|
// This forces the mode to cancel and return to the "parent" mode
|
||||||
public virtual void OnCancel() { }
|
public virtual void OnCancel() { }
|
||||||
public virtual void OnAccept() { }
|
public virtual void OnAccept() { }
|
||||||
|
|
|
@ -84,7 +84,13 @@ namespace CodeImp.DoomBuilder
|
||||||
|
|
||||||
[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
|
[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
|
||||||
private static extern uint GetShortPathName([MarshalAs(UnmanagedType.LPTStr)] string longpath, [MarshalAs(UnmanagedType.LPTStr)]StringBuilder shortpath, uint buffersize);
|
private static extern uint GetShortPathName([MarshalAs(UnmanagedType.LPTStr)] string longpath, [MarshalAs(UnmanagedType.LPTStr)]StringBuilder shortpath, uint buffersize);
|
||||||
|
|
||||||
|
[DllImport("user32.dll")]
|
||||||
|
internal static extern int SetScrollInfo(IntPtr windowptr, int bar, IntPtr scrollinfo, bool redraw);
|
||||||
|
|
||||||
|
[DllImport("user32.dll")]
|
||||||
|
internal static extern int GetScrollInfo(IntPtr windowptr, int bar, IntPtr scrollinfo);
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ================== Constants
|
#region ================== Constants
|
||||||
|
@ -97,6 +103,15 @@ namespace CodeImp.DoomBuilder
|
||||||
internal const int CB_SHOWDROPDOWN = 0x14F;
|
internal const int CB_SHOWDROPDOWN = 0x14F;
|
||||||
internal const int EM_GETSCROLLPOS = WM_USER + 221;
|
internal const int EM_GETSCROLLPOS = WM_USER + 221;
|
||||||
internal const int EM_SETSCROLLPOS = WM_USER + 222;
|
internal const int EM_SETSCROLLPOS = WM_USER + 222;
|
||||||
|
internal const int SB_HORZ = 0;
|
||||||
|
internal const int SB_VERT = 1;
|
||||||
|
internal const int SB_CTL = 2;
|
||||||
|
internal const int SIF_RANGE = 0x1;
|
||||||
|
internal const int SIF_PAGE = 0x2;
|
||||||
|
internal const int SIF_POS = 0x4;
|
||||||
|
internal const int SIF_DISABLENOSCROLL = 0x8;
|
||||||
|
internal const int SIF_TRACKPOS = 0x16;
|
||||||
|
internal const int SIF_ALL = SIF_RANGE + SIF_PAGE + SIF_POS + SIF_TRACKPOS;
|
||||||
|
|
||||||
// Files and Folders
|
// Files and Folders
|
||||||
private const string SETTINGS_FILE = "Builder.cfg";
|
private const string SETTINGS_FILE = "Builder.cfg";
|
||||||
|
@ -108,6 +123,19 @@ namespace CodeImp.DoomBuilder
|
||||||
private const string SCRIPTS_DIR = "Scripting";
|
private const string SCRIPTS_DIR = "Scripting";
|
||||||
private const string SETUP_DIR = "Setup";
|
private const string SETUP_DIR = "Setup";
|
||||||
private const string SPRITES_DIR = "Sprites";
|
private const string SPRITES_DIR = "Sprites";
|
||||||
|
private const string HELP_FILE = "Refmanual.chm";
|
||||||
|
|
||||||
|
// SCROLLINFO structure
|
||||||
|
internal struct ScrollInfo
|
||||||
|
{
|
||||||
|
public int size; // size of this structure
|
||||||
|
public uint mask; // combination of SIF_ constants
|
||||||
|
public int min; // minimum scrolling position
|
||||||
|
public int max; // maximum scrolling position
|
||||||
|
public uint page; // page size (scroll bar uses this value to determine the appropriate size of the proportional scroll box)
|
||||||
|
public int pos; // position of the scroll box
|
||||||
|
public int trackpos; // immediate position of a scroll box that the user is dragging
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
@ -1470,6 +1498,12 @@ namespace CodeImp.DoomBuilder
|
||||||
// Return result
|
// Return result
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This shows the reference manual
|
||||||
|
public static void ShowHelp(string pagefile)
|
||||||
|
{
|
||||||
|
Help.ShowHelp(mainwindow, Path.Combine(apppath, HELP_FILE), HelpNavigator.Topic, pagefile);
|
||||||
|
}
|
||||||
|
|
||||||
// This returns a unique temp filename
|
// This returns a unique temp filename
|
||||||
internal static string MakeTempFilename(string tempdir)
|
internal static string MakeTempFilename(string tempdir)
|
||||||
|
|
16
Source/Properties/Resources.Designer.cs
generated
16
Source/Properties/Resources.Designer.cs
generated
|
@ -1,7 +1,7 @@
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// This code was generated by a tool.
|
||||||
// Runtime Version:2.0.50727.1826
|
// Runtime Version:2.0.50727.3082
|
||||||
//
|
//
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
// the code is regenerated.
|
// the code is regenerated.
|
||||||
|
@ -137,6 +137,13 @@ namespace CodeImp.DoomBuilder.Properties {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal static System.Drawing.Bitmap Help {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("Help", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
internal static System.Drawing.Bitmap Hourglass {
|
internal static System.Drawing.Bitmap Hourglass {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("Hourglass", resourceCulture);
|
object obj = ResourceManager.GetObject("Hourglass", resourceCulture);
|
||||||
|
@ -242,6 +249,13 @@ namespace CodeImp.DoomBuilder.Properties {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal static System.Drawing.Bitmap Question {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("Question", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
internal static System.Drawing.Bitmap Redo {
|
internal static System.Drawing.Bitmap Redo {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("Redo", resourceCulture);
|
object obj = ResourceManager.GetObject("Redo", resourceCulture);
|
||||||
|
|
|
@ -127,8 +127,14 @@
|
||||||
<data name="UnknownImage" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<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>
|
<value>..\Resources\UnknownImage.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Hourglass" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Copy" 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>
|
<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>
|
||||||
|
</data>
|
||||||
|
<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>
|
||||||
<data name="ViewNormal" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<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>
|
<value>..\Resources\ViewNormal.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
@ -139,6 +145,9 @@
|
||||||
<data name="ScriptError" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="ScriptError" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\ScriptError.xpm;System.Byte[], mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>..\Resources\ScriptError.xpm;System.Byte[], mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Script2" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\Script2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
<data name="Cut" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Cut" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Cut.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Cut.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
@ -148,14 +157,20 @@
|
||||||
<data name="Status2" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Status2" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Status2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Status2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Copy" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="KnownTextureSet" 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>
|
<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>
|
||||||
<data name="Redo" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<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>
|
<value>..\Resources\Redo.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="OpenMap" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="SaveAll" 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>
|
<value>..\Resources\SaveAll.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ViewTextureFloor" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<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>
|
<value>..\Resources\ViewTextureFloor.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
@ -166,14 +181,17 @@
|
||||||
<data name="treeview" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="treeview" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\treeview.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\treeview.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ColorPick" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Monster2" 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>
|
<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>
|
||||||
<data name="File" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<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>
|
<value>..\Resources\NewMap.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="mergegeometry" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="ScriptPalette" 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>
|
<value>..\Resources\ScriptPalette.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NewMap" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<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>
|
<value>..\Resources\NewMap2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
@ -193,6 +211,12 @@
|
||||||
<data name="Status0" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Status0" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Status0.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Status0.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<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="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="Zoom" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<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>
|
<value>..\Resources\Zoom.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
@ -202,6 +226,9 @@
|
||||||
<data name="Test" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Test" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Test.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Test.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Monster3" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\Monster3.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
<data name="Properties" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Properties" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Properties.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Properties.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
@ -214,23 +241,23 @@
|
||||||
<data name="ViewTextureCeiling" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="ViewTextureCeiling" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\ViewTextureCeiling.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\ViewTextureCeiling.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Splash3_trans" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Help" 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>
|
<value>..\Resources\Help.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="KnownTextureSet" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Splash3_small" 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>
|
<value>..\Resources\Splash3_small.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="mergegeometry2" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<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>
|
<value>..\Resources\mergegeometry2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ScriptPalette" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Prefab2" 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>
|
<value>..\Resources\Prefab2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SaveAll" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="mergegeometry" 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>
|
<value>..\Resources\mergegeometry.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Splash3_small" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="ColorPick" 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>
|
<value>..\Resources\ColorPick.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Filter" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Filter" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Filter.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Filter.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
@ -241,9 +268,6 @@
|
||||||
<data name="ScriptCompile" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<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>
|
<value>..\Resources\ScriptCompile.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</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">
|
<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>
|
<value>..\Resources\OpenScript.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
@ -259,34 +283,16 @@
|
||||||
<data name="MissingTexture" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<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>
|
<value>..\Resources\MissingTexture.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</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>
|
||||||
<data name="Warning" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<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>
|
<value>..\Resources\Warning.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NewScript" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="SaveScript" 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>
|
<value>..\Resources\SaveScript.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Script2" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Question" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Script2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Question.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
|
||||||
<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="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>
|
|
||||||
</data>
|
|
||||||
<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="Monster3" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\Monster3.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<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="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>
|
|
||||||
</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>
|
||||||
</root>
|
</root>
|
BIN
Source/Resources/Builder16.png
Normal file
BIN
Source/Resources/Builder16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1,006 B |
BIN
Source/Resources/Help.png
Normal file
BIN
Source/Resources/Help.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 367 B |
BIN
Source/Resources/Question.png
Normal file
BIN
Source/Resources/Question.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 960 B |
1
Source/Windows/ConfigForm.Designer.cs
generated
1
Source/Windows/ConfigForm.Designer.cs
generated
|
@ -659,6 +659,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.ShowInTaskbar = false;
|
this.ShowInTaskbar = false;
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = "Game Configurations";
|
this.Text = "Game Configurations";
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.ConfigForm_HelpRequested);
|
||||||
this.tabs.ResumeLayout(false);
|
this.tabs.ResumeLayout(false);
|
||||||
this.tabresources.ResumeLayout(false);
|
this.tabresources.ResumeLayout(false);
|
||||||
this.tabresources.PerformLayout();
|
this.tabresources.PerformLayout();
|
||||||
|
|
|
@ -522,5 +522,12 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
configinfo.EditModes[emi.Type.FullName] = false;
|
configinfo.EditModes[emi.Type.FullName] = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help requested
|
||||||
|
private void ConfigForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_gameconfigurations.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
1
Source/Windows/CustomFieldsForm.Designer.cs
generated
1
Source/Windows/CustomFieldsForm.Designer.cs
generated
|
@ -91,6 +91,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.ShowInTaskbar = false;
|
this.ShowInTaskbar = false;
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = "CustomFieldsForm";
|
this.Text = "CustomFieldsForm";
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.CustomFieldsForm_HelpRequested);
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -99,5 +99,12 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.DialogResult = DialogResult.Cancel;
|
this.DialogResult = DialogResult.Cancel;
|
||||||
this.Close();
|
this.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help requested
|
||||||
|
private void CustomFieldsForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_customfields.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
1
Source/Windows/ErrorsForm.Designer.cs
generated
1
Source/Windows/ErrorsForm.Designer.cs
generated
|
@ -138,6 +138,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||||
this.Text = "Errors and Warnings";
|
this.Text = "Errors and Warnings";
|
||||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ErrorsForm_FormClosing);
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ErrorsForm_FormClosing);
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.ErrorsForm_HelpRequested);
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
this.PerformLayout();
|
this.PerformLayout();
|
||||||
|
|
||||||
|
|
|
@ -123,6 +123,13 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
Clipboard.SetText(str.ToString());
|
Clipboard.SetText(str.ToString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help requested
|
||||||
|
private void ErrorsForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_errorsandwarnings.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
|
|
|
@ -127,52 +127,53 @@
|
||||||
<value>
|
<value>
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w
|
||||||
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
||||||
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAB2
|
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAACY
|
||||||
CgAAAk1TRnQBSQFMAgEBAgEAAQQBAAEEAQABEgEAARIBAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAFI
|
CgAAAk1TRnQBSQFMAgEBAgEAAQQBAAEEAQABEgEAARIBAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAFI
|
||||||
AwABEgMAAQEBAAEgBQABQAEUKgABFgIVAR4BLQIqAUUBMwIuAVEBJwIlATsDDAEQ/wAFAAEmAiQBOAFQ
|
AwABEgMAAQEBAAEgBQABQAEUKgABFwIBAR4BLgIEAUUBNAIGAVEBKAIDATsBDQIBARD/AAUAAScCAwE4
|
||||||
AjoBnQFkAT4BRgHZAW4BUAFwAe8BagFSAX4B8gFvAUwBZwHrAV0COwHKAUYCOAF+AxMBGvQAAwMBBAFH
|
AVECFwGdAWIBLgE0AdkBbAFHAWMB7wFrAUsBcgHyAW0BQAFYAesBXgImAcoBRwIPAX4BFAIBARr0AAEE
|
||||||
AjgBgAGEAXMBkwH2AjcBpQH/AQgBBwGWAf8CAQGeAf8CBQGuAf8CCwG/Af8CIAHTAf8BYAFeAeIB/wFp
|
AgEBBAFIAg8BgAGBAWwBiQH2AjgBpQH/AQkBCAGWAf8CAgGeAf8CBgGuAf8CDAG/Af8CIQHTAf8BYQFf
|
||||||
AUMBSAHdAS8CKwFKEAABFgIVAR4BKQInAT4BLAIpAUQBLAIpAUMBLAIpAUMBLAIpAUMBKwIoAUIBKwIo
|
AeIB/wFnATIBNwHdATACBAFKEAABFwIBAR4BKgIDAT4BLQIEAUQBLQIEAUMBLQIEAUMBLQIEAUMBLAIE
|
||||||
AUIBKwIoAUIBKgIoAUEBKgIoAUABKgInAT8BKQInAT4BKAImAT0BKAImAT0BIQIgATCgAAFKAjkBiwFx
|
AUIBLAIEAUIBLAIEAUIBLAIEAUEBKwIEAUABKwIDAT8BKgIDAT4BKgIDAT0BKgIDAT0BIgICATCgAAFL
|
||||||
AXABvwH/AgEBhwH/AgEBiwH/AgIBlQH/AQcBBgGfAf8BCwEKAawB/wIPAbkB/wIOAcYB/wINAdUB/wIt
|
AhIBiwFyAXEBvwH/AgIBhwH/AgIBiwH/AgMBlQH/AQgBBwGfAf8BDAELAawB/wIQAbkB/wIPAcYB/wIO
|
||||||
AeUB/wF/AWEBggHxAS4CKgFHDAABVgI7AbABiwFtAXAB6QGCAXEBdgHqAYcBcgF3AeoBiQFyAXYB6QGL
|
AdUB/wIuAeUB/wF8AVgBdQHxAS8CBAFHDAABVgIdAbABhAFcAV0B6QF8AWABYwHqAYIBYQFkAeoBggFf
|
||||||
AXYBewHpAY4BeAF+AekBkgF+AYIB6QGSAX4BggHpAY0BeAF9AegBjQF3AXgB6AGIAW8BcgHnAYYBbQFy
|
AWMB6QGEAWMBZgHpAYgBZQFpAekBigFpAW0B6QGKAWkBbQHpAYUBYwFoAegBhQFiAWMB6AGBAVwBXQHn
|
||||||
AecBgQFrAW0B5wGBAWsBbQHnAV0CPAG+nAABMQItAU0BgQF3AbkB/QIBAY8B/wIBAY4B/wISAY8B/wIB
|
AX8BWgFdAecBfQFZAVoB5wF9AVkBWgHnAVwCIgG+nAABMgIFAU0BgQF1AbcB/QICAY8B/wICAY4B/wIT
|
||||||
AZMB/wIEAZ4B/wIIAacB/wIIAbIB/wIaAbwB/wIYAcMB/wIOAdIB/wItAeAB/wFkAUEBRwHbAxABFggA
|
AY8B/wICAZMB/wIFAZ4B/wIJAacB/wIJAbIB/wIbAbwB/wIZAcMB/wIPAdIB/wIuAeAB/wFkATEBNQHb
|
||||||
ASoCJwE/AX8BYwFkAeQBWwH1Av8BVAHyAv8BVQHuAv8BUwHrAv8BUQHvAv8BRgGgAb4B/wFZAYQBlAH/
|
ARICAQEWCAABKwIDAT8BegJQAeQBXAH1Av8BVQHyAv8BVgHuAv8BVAHrAv8BUgHvAv8BRwGgAb4B/wFa
|
||||||
AVYB2QL/AVYB4AL/AVcB3wL/AVcB4AL/AU0B4AL/AZoB6QL/AUUCOAF9mAADBwEKAV4CPQHBAhUBpAH/
|
AYQBlAH/AVcB2QL/AVcB4AL/AVgB3wL/AVgB4AL/AU4B4AL/AZoB6QL/AUYCDgF9mAABCQIBAQoBXAIj
|
||||||
AgEBlwH/AkABoQH/AqIBqAH/AkcBlQH/AgEBmAH/AgEBowH/AhkBrAH/ArUB1QH/AqkB1gH/ARkBGAG/
|
AcECFgGkAf8CAgGXAf8CQQGhAf8CogGoAf8CSAGVAf8CAgGYAf8CAgGjAf8CGgGsAf8CtQHVAf8CqQHW
|
||||||
Af8CCQHJAf8BYAFeAdUB/wFCAjYBcwwAAUACNQFuAY8B7wL/ARcB4gL/ASEB3gL/AR0B2QL/ARgB3QL/
|
Af8BGgEZAb8B/wIKAckB/wFhAV8B1QH/AUMCDAFzDAABQQILAW4BjwHvAv8BGAHiAv8BIgHeAv8BHgHZ
|
||||||
ARQBQQFMAf8BMgEvASwB/wEoAb0B7wH/ARwBygL/ASIBxQL/AR0BxQL/ATUBywL/AXICUQHZAwsBD5gA
|
Av8BGQHdAv8BFQFCAU0B/wEzATABLQH/ASkBvQHvAf8BHQHKAv8BIwHFAv8BHgHFAv8BNgHLAv8BbQI7
|
||||||
ATMCLgFRAX0BZwGLAfQBFgEXAacB/wIBAZ8B/wJiAbAB/wLBAbcB/wKtAaoB/wJEAZgB/wIUAZwB/wKO
|
AdkBDQIBAQ+YAAE0AgYBUQF8AV8BfwH0ARcBGAGnAf8CAgGfAf8CYwGwAf8CwQG3Af8CrQGqAf8CRQGY
|
||||||
Aa4B/wLWAcoB/wLEAdcB/wEhASABuAH/AgkBuQH/Ah8BwgH/AVoBOQE6AcEMAAMHAQoBbQJJAdIBQAHr
|
Af8CFQGcAf8CjgGuAf8C1gHKAf8CxAHXAf8BIgEhAbgB/wIKAbkB/wIgAcIB/wFaASEBIgHBDAABCQIB
|
||||||
Av8BFgHiAv8BHAHeAv8BFgHhAv8BNQHQAesB/wE+AcEB1wH/AREBygL/ARIBywL/ARYBxgL/AQwBwAL/
|
AQoBaQIxAdIBQQHrAv8BFwHiAv8BHQHeAv8BFwHhAv8BNgHQAesB/wE/AcEB1wH/ARIBygL/ARMBywL/
|
||||||
AaQB5gL/ATYCMAFZnAABTwI5AZcBawFqAcAB/wEuAS8BsgH/AhgBqgH/AgMBowH/AmwBtAH/Ar4BtwH/
|
ARcBxgL/AQ0BwAL/AaQB5gL/ATcCBwFZnAABTwIVAZcBbAFrAcAB/wEvATABsgH/AhkBqgH/AgQBowH/
|
||||||
AqgBqwH/ApEBowH/AqwBpAH/ApoBrgH/AiUBqwH/AQQBAwGqAf8CCgGtAf8CBwGuAf8BZgFDAVIB5BAA
|
Am0BtAH/Ar4BtwH/AqgBqwH/ApEBowH/AqwBpAH/ApoBrgH/AiYBqwH/AQUBBAGqAf8CCwGtAf8CCAGu
|
||||||
ATECLQFOAbgB8gHzAf4BFwHsAv8BHQHlAv8BGwHoAv8BIwFiAW0B/wFCAVEBTwH/ASIBvAHmAf8BEAHT
|
Af8BZQE2AUEB5BAAATICBQFOAbcB7wHwAf4BGAHsAv8BHgHlAv8BHAHoAv8BJAFjAW4B/wFDAVIBUAH/
|
||||||
Av8BCgHKAv8BSQHXAv8BXQI9AbwDAwEEnAABWgI7AbQCYAHBAf8BNAE1AbkB/wI2AbYB/wIfAa4B/wIC
|
ASMBvAHmAf8BEQHTAv8BCwHKAv8BSgHXAv8BXAIiAbwBBAIBAQScAAFaAh8BtAJhAcEB/wE1ATYBuQH/
|
||||||
AaUB/wJ0AbcB/wK+AbkB/wKxAa0B/wKZAaQB/wIcAZ4B/wIBAaAB/wIFAaEB/wIFAaIB/wIBAaAB/wFp
|
AjcBtgH/AiABrgH/AgMBpQH/AnUBtwH/Ar4BuQH/ArEBrQH/ApkBpAH/Ah0BngH/AgIBoAH/AgYBoQH/
|
||||||
AUoBZQHtEwABAQFaAjsBswF8A/8BLgH8Av8BMQH5Av8BIwFDAUgB/wEtASQBIwH/ASsBvwHgAf8BFwHf
|
AgYBogH/AgIBoAH/AWoBQQFYAe0QAAECAwEBWAIeAbMBfQP/AS8B/AL/ATIB+QL/ASQBRAFJAf8BLgEl
|
||||||
Av8BEAHTAv8BtwHFAckB+AEmAiQBOKAAAVQCOwGjAWgBZwHFAf8COQHCAf8COwG+Af8BNQE0AbgB/wE/
|
ASQB/wEsAb8B4AH/ARgB3wL/AREB0wL/AbMBuwG+AfgBJwIDATigAAFUAhkBowFpAWgBxQH/AjoBwgH/
|
||||||
AT4BuAH/AqwB0AH/As4ByQH/Ar8BugH/AqoBrQH/AkQBmgH/AgEBmQH/AgEBnAH/AgEBmgH/AgEBmAH/
|
AjwBvgH/ATYBNQG4Af8BQAE/AbgB/wKsAdAB/wLOAckB/wK/AboB/wKqAa0B/wJFAZoB/wICAZkB/wIC
|
||||||
AWkBSAFYAecUAAEgAh8BLwG6ArgB9QFAA/8BPgP/AUEBWgFdAf8BOgExATAB/wE+AckB4AH/AR8B8AL/
|
AZwB/wICAZoB/wICAZgB/wFoATsBSQHnFAABIgICAS8BtAKqAfUBQQP/AT8D/wFCAVsBXgH/ATsBMgEx
|
||||||
AYEB+QL/AVACOQGZpAABPAI0AWYBggFtAakB+QI9AcsB/wI+AcUB/wJTAcgB/wLTAe0B/wL8AfIB/wLF
|
Af8BPwHJAeAB/wEgAfAC/wGBAfkC/wFPAhUBmaQAAT0CCQFmAYEBZwGhAfkCPgHLAf8CPwHFAf8CVAHI
|
||||||
AdkB/wGQAZEBwgH/AsQBwAH/ArQBsgH/AksBmwH/AgcBlwH/AQcBBgGXAf8CEQGaAf8BXgE7ATwByxgA
|
Af8C0wHtAf8C/AHyAf8CxQHZAf8BkAGRAcIB/wLEAcAB/wK0AbIB/wJMAZsB/wIIAZcB/wEIAQcBlwH/
|
||||||
AU0COQGPAZ4D/wEqA/8BTgFkAWcB/wFCAjoB/wFDAcoB3QH/AUAB/gL/AZkBggGDAekDFQEdpAADEQEX
|
AhIBmgH/AV8BJgEnAcsYAAFNAhMBjwGeA/8BKwP/AU8BZQFoAf8BQwI7Af8BRAHKAd0B/wFBAf4C/wGR
|
||||||
AXABSwFNAdUCSQHRAf8CPwHOAf8CtAHsBf8C5AH1Af8CWAHFAf8CMgG3Af8CjAHFAf8CzgHHAf8CtwG4
|
AW0BbgHpARYCAQEdpAABEgIBARcBbAI1AdUCSgHRAf8CQAHOAf8CtAHsBf8C5AH1Af8CWQHFAf8CMwG3
|
||||||
Af8CPAGjAf8CHgGbAf8CXAG2Af8BSAI4AYUYAAMRARcBjQJwAeQBQAP/AVUBZwFpAf8BVQFCAUEB/wFD
|
Af8CjAHFAf8CzgHHAf8CtwG4Af8CPQGjAf8CHwGbAf8CXQG2Af8BSQIQAYUYAAESAgEBFwGEAlkB5AFB
|
||||||
Ac0B3QH/AacD/wFCAjYBc6wAAUACNQFuAYEBfQHQAf8BQwFEAdcB/wFkAWUB2wH/Ar8B8QH/AWgBZwHV
|
A/8BVgFoAWoB/wFWAUMBQgH/AUQBzQHdAf8BpwP/AUMCDAFzrAABQQILAW4BgQF+AdAB/wFEAUUB1wH/
|
||||||
Af8CPAHEAf8CPgHBAf8COwG8Af8CiwHIAf8CdwG9Af8CMQGuAf8CMQGqAf8BgAFiAXAB7AMZASMcAAE9
|
AWUBZgHbAf8CvwHxAf8BaQFoAdUB/wI9AcQB/wI/AcEB/wI8AbwB/wKLAcgB/wJ4Ab0B/wIyAa4B/wIy
|
||||||
AjQBaQGsA/8BRgHGAcwB/wFXAbIBtwH/AVsB8wL/AW8BSQFKAdEDCAELrAADBwEJAVwCPQG2AXABbwHW
|
AaoB/wF9AVUBYQHsARoCAQEjHAABPgIKAWkBrAP/AUcBxgHMAf8BWAGyAbcB/wFcAfMC/wFqATIBMwHR
|
||||||
Af8CRwHbAf8CSAHWAf8CRwHSAf8CSQHPAf8CRgHLAf8CQwHGAf8CPQHBAf8CNwG7Af8COAG4Af8BlwGT
|
AQoCAQELrAABCAIBAQkBWwIgAbYBcQFwAdYB/wJIAdsB/wJJAdYB/wJIAdIB/wJKAc8B/wJHAcsB/wJE
|
||||||
AcsB/gE7AjMBZCAAAwUBBwFoAkQBywFEA/8BBAP/AagC8wH+ATICLQFPtAABEAIPARUBWwI9AbMBhwGF
|
AcYB/wI+AcEB/wI4AbsB/wI5AbgB/wGWAZEByAH+ATwCCQFkIAABBwIBAQcBZQIrAcsBRQP/AQUD/wGn
|
||||||
AdUB/wJWAdwB/wJLAdsB/wJKAdgB/wJIAdQB/wFEAUUBzwH/AkIBywH/AVsBWgHOAf8BkQF8AZsB9QFA
|
AvAB/gEzAgUBT7QAARECAQEVAVoCHwGzAYcBhQHVAf8CVwHcAf8CTAHbAf8CSwHYAf8CSQHUAf8BRQFG
|
||||||
AjUBbygAAS0CKgFGAacB3QHfAfwBSQP/AVoCOwGyAwEBArgAAwUBBwE9AjQBZwFpAUUBRgHMAYkBcQGY
|
Ac8B/wJDAcsB/wFcAVsBzgH/AY0BcgGQAfUBQQILAW8oAAEuAgQBRgGkAdcB2QH8AUoD/wFZAh0BsgED
|
||||||
AfMCfwHMAf4BfAF7AdcB/wF/AXwBxgH8AX4BXwFxAeoBVwI7AasBJgIkATkwAAFUAjsBpgGoApsB8gEf
|
AgEBArgAAQcCAQEHAT4CCQFnAWUBLAEuAcwBhwFoAYsB8wGAAX8ByQH+AX0BfAHXAf8BfwF6AcIB/AF7
|
||||||
Ah4BLf8A/wDyAAFCAU0BPgcAAT4DAAEoAwABSAMAARIDAAEBAQABAQUAAdgXAAP/AQAB/AEfAv8B8AcA
|
AVABYAHqAVcCHAGrAScCAwE5MAABVQIaAaYBoQKLAfIBIAICAS3/AP8A8gABQgFNAT4HAAE+AwABKAMA
|
||||||
AfABBwL/AfAHAAHAAQMBwAEAATAHAAHAAQEBwAEAATAHAAGAAQABwAEAATAJAAHgAQABMAkAAeABAAFw
|
AUgDAAESAwABAQEAAQEFAAHYFwAD/wEAAfwBHwL/AfAHAAHwAQcC/wHwBwABwAEDAcABAAEwBwABwAEB
|
||||||
CQAB8AEAAXAJAAHwAQAB8AkAAfgBAQHwCQAB/AEBAfAJAAH8AQMB8AcAAYABAAH+AQMB8AcAAYABAQH+
|
AcABAAEwBwABgAEAAcABAAEwCQAB4AEAATAJAAHgAQABcAkAAfABAAFwCQAB8AEAAfAJAAH4AQEB8AkA
|
||||||
AQcB8AcAAcABAwH/AQcB8AcAAeABBwH/AY8B8AcABP8B8AcABP8B8AcACw==
|
AfwBAQHwCQAB/AEDAfAHAAGAAQAB/gEDAfAHAAGAAQEB/gEHAfAHAAHAAQMB/wEHAfAHAAHgAQcB/wGP
|
||||||
|
AfAHAAT/AfAHAAT/AfAHAAs=
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<metadata name="copyselected.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="copyselected.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
|
1
Source/Windows/FlatBrowserForm.Designer.cs
generated
1
Source/Windows/FlatBrowserForm.Designer.cs
generated
|
@ -142,6 +142,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.Activated += new System.EventHandler(this.FlatBrowserForm_Activated);
|
this.Activated += new System.EventHandler(this.FlatBrowserForm_Activated);
|
||||||
this.Move += new System.EventHandler(this.FlatBrowserForm_Move);
|
this.Move += new System.EventHandler(this.FlatBrowserForm_Move);
|
||||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FlatBrowserForm_FormClosing);
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FlatBrowserForm_FormClosing);
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.FlatBrowserForm_HelpRequested);
|
||||||
this.ResizeEnd += new System.EventHandler(this.FlatBrowserForm_ResizeEnd);
|
this.ResizeEnd += new System.EventHandler(this.FlatBrowserForm_ResizeEnd);
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
|
|
|
@ -328,5 +328,12 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
if(!string.IsNullOrEmpty(selectflat))
|
if(!string.IsNullOrEmpty(selectflat))
|
||||||
browser.SelectItem(selectflat, usedgroup);
|
browser.SelectItem(selectflat, usedgroup);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help requested
|
||||||
|
private void FlatBrowserForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_imagesbrowser.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -134,7 +134,7 @@
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w
|
||||||
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
||||||
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAB+
|
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAB+
|
||||||
DAAAAk1TRnQBSQFMAgEBBQEAAQwBAAEEAQABEAEAARYBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
DAAAAk1TRnQBSQFMAgEBBQEAAQkBAAEEAQABEAEAARYBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
||||||
AwABQAMAASwDAAEBAQABCAYAAQsYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
|
AwABQAMAASwDAAEBAQABCAYAAQsYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
|
||||||
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
|
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
|
||||||
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
|
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
|
||||||
|
|
1
Source/Windows/GridSetupForm.Designer.cs
generated
1
Source/Windows/GridSetupForm.Designer.cs
generated
|
@ -325,6 +325,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.ShowInTaskbar = false;
|
this.ShowInTaskbar = false;
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = "Custom Grid Setup";
|
this.Text = "Custom Grid Setup";
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.GridSetupForm_HelpRequested);
|
||||||
groupBox1.ResumeLayout(false);
|
groupBox1.ResumeLayout(false);
|
||||||
groupBox1.PerformLayout();
|
groupBox1.PerformLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.gridsize)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.gridsize)).EndInit();
|
||||||
|
|
|
@ -172,5 +172,12 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
DialogResult = DialogResult.OK;
|
DialogResult = DialogResult.OK;
|
||||||
this.Close();
|
this.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help
|
||||||
|
private void GridSetupForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_gridsetup.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
8
Source/Windows/LinedefEditForm.Designer.cs
generated
8
Source/Windows/LinedefEditForm.Designer.cs
generated
|
@ -454,6 +454,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
//
|
//
|
||||||
// tag
|
// tag
|
||||||
//
|
//
|
||||||
|
this.tag.AllowDecimal = false;
|
||||||
this.tag.AllowNegative = false;
|
this.tag.AllowNegative = false;
|
||||||
this.tag.AllowRelative = true;
|
this.tag.AllowRelative = true;
|
||||||
this.tag.ImeMode = System.Windows.Forms.ImeMode.Off;
|
this.tag.ImeMode = System.Windows.Forms.ImeMode.Off;
|
||||||
|
@ -631,6 +632,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
//
|
//
|
||||||
// frontsector
|
// frontsector
|
||||||
//
|
//
|
||||||
|
this.frontsector.AllowDecimal = false;
|
||||||
this.frontsector.AllowNegative = false;
|
this.frontsector.AllowNegative = false;
|
||||||
this.frontsector.AllowRelative = false;
|
this.frontsector.AllowRelative = false;
|
||||||
this.frontsector.ImeMode = System.Windows.Forms.ImeMode.Off;
|
this.frontsector.ImeMode = System.Windows.Forms.ImeMode.Off;
|
||||||
|
@ -669,6 +671,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
//
|
//
|
||||||
// frontoffsety
|
// frontoffsety
|
||||||
//
|
//
|
||||||
|
this.frontoffsety.AllowDecimal = false;
|
||||||
this.frontoffsety.AllowNegative = true;
|
this.frontoffsety.AllowNegative = true;
|
||||||
this.frontoffsety.AllowRelative = true;
|
this.frontoffsety.AllowRelative = true;
|
||||||
this.frontoffsety.ImeMode = System.Windows.Forms.ImeMode.Off;
|
this.frontoffsety.ImeMode = System.Windows.Forms.ImeMode.Off;
|
||||||
|
@ -680,6 +683,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
//
|
//
|
||||||
// frontoffsetx
|
// frontoffsetx
|
||||||
//
|
//
|
||||||
|
this.frontoffsetx.AllowDecimal = false;
|
||||||
this.frontoffsetx.AllowNegative = true;
|
this.frontoffsetx.AllowNegative = true;
|
||||||
this.frontoffsetx.AllowRelative = true;
|
this.frontoffsetx.AllowRelative = true;
|
||||||
this.frontoffsetx.ImeMode = System.Windows.Forms.ImeMode.Off;
|
this.frontoffsetx.ImeMode = System.Windows.Forms.ImeMode.Off;
|
||||||
|
@ -738,6 +742,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
//
|
//
|
||||||
// backsector
|
// backsector
|
||||||
//
|
//
|
||||||
|
this.backsector.AllowDecimal = false;
|
||||||
this.backsector.AllowNegative = false;
|
this.backsector.AllowNegative = false;
|
||||||
this.backsector.AllowRelative = false;
|
this.backsector.AllowRelative = false;
|
||||||
this.backsector.ImeMode = System.Windows.Forms.ImeMode.Off;
|
this.backsector.ImeMode = System.Windows.Forms.ImeMode.Off;
|
||||||
|
@ -776,6 +781,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
//
|
//
|
||||||
// backoffsety
|
// backoffsety
|
||||||
//
|
//
|
||||||
|
this.backoffsety.AllowDecimal = false;
|
||||||
this.backoffsety.AllowNegative = true;
|
this.backoffsety.AllowNegative = true;
|
||||||
this.backoffsety.AllowRelative = true;
|
this.backoffsety.AllowRelative = true;
|
||||||
this.backoffsety.ImeMode = System.Windows.Forms.ImeMode.Off;
|
this.backoffsety.ImeMode = System.Windows.Forms.ImeMode.Off;
|
||||||
|
@ -787,6 +793,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
//
|
//
|
||||||
// backoffsetx
|
// backoffsetx
|
||||||
//
|
//
|
||||||
|
this.backoffsetx.AllowDecimal = false;
|
||||||
this.backoffsetx.AllowNegative = true;
|
this.backoffsetx.AllowNegative = true;
|
||||||
this.backoffsetx.AllowRelative = true;
|
this.backoffsetx.AllowRelative = true;
|
||||||
this.backoffsetx.ImeMode = System.Windows.Forms.ImeMode.Off;
|
this.backoffsetx.ImeMode = System.Windows.Forms.ImeMode.Off;
|
||||||
|
@ -841,6 +848,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.ShowInTaskbar = false;
|
this.ShowInTaskbar = false;
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = "Edit Linedef";
|
this.Text = "Edit Linedef";
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.LinedefEditForm_HelpRequested);
|
||||||
this.actiongroup.ResumeLayout(false);
|
this.actiongroup.ResumeLayout(false);
|
||||||
this.actiongroup.PerformLayout();
|
this.actiongroup.PerformLayout();
|
||||||
this.hexenpanel.ResumeLayout(false);
|
this.hexenpanel.ResumeLayout(false);
|
||||||
|
|
|
@ -511,5 +511,12 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
// Edit these
|
// Edit these
|
||||||
CustomFieldsForm.ShowDialog(this, "Back side custom fields", "sidedef", sides, General.Map.Config.SidedefFields);
|
CustomFieldsForm.ShowDialog(this, "Back side custom fields", "sidedef", sides, General.Map.Config.SidedefFields);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help!
|
||||||
|
private void LinedefEditForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_linedefedit.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
1595
Source/Windows/MainForm.Designer.cs
generated
1595
Source/Windows/MainForm.Designer.cs
generated
File diff suppressed because it is too large
Load diff
|
@ -281,6 +281,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
UpdateToolsMenu();
|
UpdateToolsMenu();
|
||||||
UpdateToolbar();
|
UpdateToolbar();
|
||||||
UpdateSkills();
|
UpdateSkills();
|
||||||
|
UpdateHelpMenu();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Generic event that invokes the tagged action
|
// Generic event that invokes the tagged action
|
||||||
|
@ -1121,6 +1122,27 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
// Invoke on editing mode
|
// Invoke on editing mode
|
||||||
if((General.Map != null) && (General.Editing.Mode != null)) General.Editing.Mode.OnKeyDown(e);
|
if((General.Map != null) && (General.Editing.Mode != null)) General.Editing.Mode.OnKeyDown(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// F1 pressed?
|
||||||
|
if((e.KeyCode == Keys.F1) && (e.Modifiers == Keys.None))
|
||||||
|
{
|
||||||
|
// No action bound to F1?
|
||||||
|
Action[] f1actions = General.Actions.GetActionsByKey((int)e.KeyData);
|
||||||
|
if(f1actions.Length == 0)
|
||||||
|
{
|
||||||
|
// If we don't have any map open, show the Main Window help
|
||||||
|
// otherwise, give the help request to the editing mode so it
|
||||||
|
// can open the appropriate help file.
|
||||||
|
if((General.Map == null) || (General.Editing.Mode == null))
|
||||||
|
{
|
||||||
|
General.ShowHelp("introduction.html");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
General.Editing.Mode.OnHelp();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// When a key is released
|
// When a key is released
|
||||||
|
@ -1840,7 +1862,13 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ================== Help Menu
|
#region ================== Help Menu
|
||||||
|
|
||||||
|
// This sets up the help menu
|
||||||
|
private void UpdateHelpMenu()
|
||||||
|
{
|
||||||
|
itemhelpeditmode.Enabled = ((General.Map != null) && (General.Editing.Mode != null));
|
||||||
|
}
|
||||||
|
|
||||||
// About clicked
|
// About clicked
|
||||||
private void itemhelpabout_Click(object sender, EventArgs e)
|
private void itemhelpabout_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
@ -1851,6 +1879,19 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
aboutform.ShowDialog(this);
|
aboutform.ShowDialog(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Reference Manual clicked
|
||||||
|
private void itemhelprefmanual_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
General.ShowHelp("introduction.html");
|
||||||
|
}
|
||||||
|
|
||||||
|
// About this Editing Mode
|
||||||
|
private void itemhelpeditmode_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if((General.Map != null) && (General.Editing.Mode != null))
|
||||||
|
General.Editing.Mode.OnHelp();
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ================== Prefabs Menu
|
#region ================== Prefabs Menu
|
||||||
|
|
|
@ -150,12 +150,6 @@
|
||||||
<metadata name="toolStripSeparator12.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="toolStripSeparator12.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<value>False</value>
|
<value>False</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<metadata name="toolStripMenuItem4.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
||||||
<value>False</value>
|
|
||||||
</metadata>
|
|
||||||
<metadata name="toolStripSeparator2.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
||||||
<value>False</value>
|
|
||||||
</metadata>
|
|
||||||
<metadata name="toolStripSeparator4.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="toolStripSeparator4.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<value>False</value>
|
<value>False</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
@ -177,6 +171,12 @@
|
||||||
<metadata name="statusbar.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="statusbar.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>218, 17</value>
|
<value>218, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
<metadata name="toolStripMenuItem4.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="toolStripSeparator2.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>False</value>
|
||||||
|
</metadata>
|
||||||
<metadata name="panelinfo.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="panelinfo.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<value>True</value>
|
<value>True</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
|
1
Source/Windows/MapOptionsForm.Designer.cs
generated
1
Source/Windows/MapOptionsForm.Designer.cs
generated
|
@ -199,6 +199,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.ShowInTaskbar = false;
|
this.ShowInTaskbar = false;
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = "Map Options";
|
this.Text = "Map Options";
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.MapOptionsForm_HelpRequested);
|
||||||
panelsettings.ResumeLayout(false);
|
panelsettings.ResumeLayout(false);
|
||||||
panelsettings.PerformLayout();
|
panelsettings.PerformLayout();
|
||||||
this.panelres.ResumeLayout(false);
|
this.panelres.ResumeLayout(false);
|
||||||
|
|
|
@ -231,5 +231,12 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
e.Handled = true;
|
e.Handled = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help
|
||||||
|
private void MapOptionsForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_mapoptions.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
1
Source/Windows/OpenMapOptionsForm.Designer.cs
generated
1
Source/Windows/OpenMapOptionsForm.Designer.cs
generated
|
@ -192,6 +192,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = "Open Map Options";
|
this.Text = "Open Map Options";
|
||||||
this.Shown += new System.EventHandler(this.OpenMapOptionsForm_Shown);
|
this.Shown += new System.EventHandler(this.OpenMapOptionsForm_Shown);
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.OpenMapOptionsForm_HelpRequested);
|
||||||
this.panelres.ResumeLayout(false);
|
this.panelres.ResumeLayout(false);
|
||||||
this.panelres.PerformLayout();
|
this.panelres.PerformLayout();
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
|
@ -414,5 +414,12 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
datalocations.EditResourceLocationList(listedlocations);
|
datalocations.EditResourceLocationList(listedlocations);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help
|
||||||
|
private void OpenMapOptionsForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_openmapoptions.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
17
Source/Windows/PreferencesForm.Designer.cs
generated
17
Source/Windows/PreferencesForm.Designer.cs
generated
|
@ -188,7 +188,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.autoscrollspeed.Location = new System.Drawing.Point(126, 133);
|
this.autoscrollspeed.Location = new System.Drawing.Point(126, 133);
|
||||||
this.autoscrollspeed.Maximum = 5;
|
this.autoscrollspeed.Maximum = 5;
|
||||||
this.autoscrollspeed.Name = "autoscrollspeed";
|
this.autoscrollspeed.Name = "autoscrollspeed";
|
||||||
this.autoscrollspeed.Size = new System.Drawing.Size(92, 45);
|
this.autoscrollspeed.Size = new System.Drawing.Size(92, 42);
|
||||||
this.autoscrollspeed.TabIndex = 37;
|
this.autoscrollspeed.TabIndex = 37;
|
||||||
this.autoscrollspeed.TickStyle = System.Windows.Forms.TickStyle.Both;
|
this.autoscrollspeed.TickStyle = System.Windows.Forms.TickStyle.Both;
|
||||||
this.autoscrollspeed.ValueChanged += new System.EventHandler(this.autoscrollspeed_ValueChanged);
|
this.autoscrollspeed.ValueChanged += new System.EventHandler(this.autoscrollspeed_ValueChanged);
|
||||||
|
@ -217,7 +217,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.previewsize.Location = new System.Drawing.Point(126, 84);
|
this.previewsize.Location = new System.Drawing.Point(126, 84);
|
||||||
this.previewsize.Maximum = 5;
|
this.previewsize.Maximum = 5;
|
||||||
this.previewsize.Name = "previewsize";
|
this.previewsize.Name = "previewsize";
|
||||||
this.previewsize.Size = new System.Drawing.Size(92, 45);
|
this.previewsize.Size = new System.Drawing.Size(92, 42);
|
||||||
this.previewsize.TabIndex = 34;
|
this.previewsize.TabIndex = 34;
|
||||||
this.previewsize.TickStyle = System.Windows.Forms.TickStyle.Both;
|
this.previewsize.TickStyle = System.Windows.Forms.TickStyle.Both;
|
||||||
this.previewsize.Value = 5;
|
this.previewsize.Value = 5;
|
||||||
|
@ -623,7 +623,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.viewdistance.Maximum = 15;
|
this.viewdistance.Maximum = 15;
|
||||||
this.viewdistance.Minimum = 1;
|
this.viewdistance.Minimum = 1;
|
||||||
this.viewdistance.Name = "viewdistance";
|
this.viewdistance.Name = "viewdistance";
|
||||||
this.viewdistance.Size = new System.Drawing.Size(150, 45);
|
this.viewdistance.Size = new System.Drawing.Size(150, 42);
|
||||||
this.viewdistance.TabIndex = 34;
|
this.viewdistance.TabIndex = 34;
|
||||||
this.viewdistance.TickStyle = System.Windows.Forms.TickStyle.Both;
|
this.viewdistance.TickStyle = System.Windows.Forms.TickStyle.Both;
|
||||||
this.viewdistance.Value = 1;
|
this.viewdistance.Value = 1;
|
||||||
|
@ -635,7 +635,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.movespeed.Maximum = 20;
|
this.movespeed.Maximum = 20;
|
||||||
this.movespeed.Minimum = 1;
|
this.movespeed.Minimum = 1;
|
||||||
this.movespeed.Name = "movespeed";
|
this.movespeed.Name = "movespeed";
|
||||||
this.movespeed.Size = new System.Drawing.Size(150, 45);
|
this.movespeed.Size = new System.Drawing.Size(150, 42);
|
||||||
this.movespeed.TabIndex = 33;
|
this.movespeed.TabIndex = 33;
|
||||||
this.movespeed.TickStyle = System.Windows.Forms.TickStyle.Both;
|
this.movespeed.TickStyle = System.Windows.Forms.TickStyle.Both;
|
||||||
this.movespeed.Value = 1;
|
this.movespeed.Value = 1;
|
||||||
|
@ -647,7 +647,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.mousespeed.Maximum = 20;
|
this.mousespeed.Maximum = 20;
|
||||||
this.mousespeed.Minimum = 1;
|
this.mousespeed.Minimum = 1;
|
||||||
this.mousespeed.Name = "mousespeed";
|
this.mousespeed.Name = "mousespeed";
|
||||||
this.mousespeed.Size = new System.Drawing.Size(150, 45);
|
this.mousespeed.Size = new System.Drawing.Size(150, 42);
|
||||||
this.mousespeed.TabIndex = 32;
|
this.mousespeed.TabIndex = 32;
|
||||||
this.mousespeed.TickStyle = System.Windows.Forms.TickStyle.Both;
|
this.mousespeed.TickStyle = System.Windows.Forms.TickStyle.Both;
|
||||||
this.mousespeed.Value = 1;
|
this.mousespeed.Value = 1;
|
||||||
|
@ -660,7 +660,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.fieldofview.Maximum = 17;
|
this.fieldofview.Maximum = 17;
|
||||||
this.fieldofview.Minimum = 5;
|
this.fieldofview.Minimum = 5;
|
||||||
this.fieldofview.Name = "fieldofview";
|
this.fieldofview.Name = "fieldofview";
|
||||||
this.fieldofview.Size = new System.Drawing.Size(150, 45);
|
this.fieldofview.Size = new System.Drawing.Size(150, 42);
|
||||||
this.fieldofview.TabIndex = 31;
|
this.fieldofview.TabIndex = 31;
|
||||||
this.fieldofview.TickStyle = System.Windows.Forms.TickStyle.Both;
|
this.fieldofview.TickStyle = System.Windows.Forms.TickStyle.Both;
|
||||||
this.fieldofview.Value = 5;
|
this.fieldofview.Value = 5;
|
||||||
|
@ -967,7 +967,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.imagebrightness.LargeChange = 3;
|
this.imagebrightness.LargeChange = 3;
|
||||||
this.imagebrightness.Location = new System.Drawing.Point(379, 229);
|
this.imagebrightness.Location = new System.Drawing.Point(379, 229);
|
||||||
this.imagebrightness.Name = "imagebrightness";
|
this.imagebrightness.Name = "imagebrightness";
|
||||||
this.imagebrightness.Size = new System.Drawing.Size(154, 45);
|
this.imagebrightness.Size = new System.Drawing.Size(154, 42);
|
||||||
this.imagebrightness.TabIndex = 33;
|
this.imagebrightness.TabIndex = 33;
|
||||||
this.imagebrightness.TickStyle = System.Windows.Forms.TickStyle.Both;
|
this.imagebrightness.TickStyle = System.Windows.Forms.TickStyle.Both;
|
||||||
this.imagebrightness.ValueChanged += new System.EventHandler(this.imagebrightness_ValueChanged);
|
this.imagebrightness.ValueChanged += new System.EventHandler(this.imagebrightness_ValueChanged);
|
||||||
|
@ -977,7 +977,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.doublesidedalpha.LargeChange = 3;
|
this.doublesidedalpha.LargeChange = 3;
|
||||||
this.doublesidedalpha.Location = new System.Drawing.Point(379, 176);
|
this.doublesidedalpha.Location = new System.Drawing.Point(379, 176);
|
||||||
this.doublesidedalpha.Name = "doublesidedalpha";
|
this.doublesidedalpha.Name = "doublesidedalpha";
|
||||||
this.doublesidedalpha.Size = new System.Drawing.Size(154, 45);
|
this.doublesidedalpha.Size = new System.Drawing.Size(154, 42);
|
||||||
this.doublesidedalpha.TabIndex = 32;
|
this.doublesidedalpha.TabIndex = 32;
|
||||||
this.doublesidedalpha.TickStyle = System.Windows.Forms.TickStyle.Both;
|
this.doublesidedalpha.TickStyle = System.Windows.Forms.TickStyle.Both;
|
||||||
this.doublesidedalpha.ValueChanged += new System.EventHandler(this.doublesidedalpha_ValueChanged);
|
this.doublesidedalpha.ValueChanged += new System.EventHandler(this.doublesidedalpha_ValueChanged);
|
||||||
|
@ -1141,6 +1141,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.ShowInTaskbar = false;
|
this.ShowInTaskbar = false;
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = "Preferences";
|
this.Text = "Preferences";
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.PreferencesForm_HelpRequested);
|
||||||
groupBox1.ResumeLayout(false);
|
groupBox1.ResumeLayout(false);
|
||||||
groupBox1.PerformLayout();
|
groupBox1.PerformLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.autoscrollspeed)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.autoscrollspeed)).EndInit();
|
||||||
|
|
|
@ -656,6 +656,16 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
// Help
|
||||||
|
private void PreferencesForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
if(!actionkey.Focused)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_preferences.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
// This writes all action help files using a template and some basic info from the actions.
|
// This writes all action help files using a template and some basic info from the actions.
|
||||||
|
|
1
Source/Windows/ResourceOptionsForm.Designer.cs
generated
1
Source/Windows/ResourceOptionsForm.Designer.cs
generated
|
@ -365,6 +365,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.ShowInTaskbar = false;
|
this.ShowInTaskbar = false;
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = "Resource Options";
|
this.Text = "Resource Options";
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.ResourceOptionsForm_HelpRequested);
|
||||||
this.tabs.ResumeLayout(false);
|
this.tabs.ResumeLayout(false);
|
||||||
this.wadfiletab.ResumeLayout(false);
|
this.wadfiletab.ResumeLayout(false);
|
||||||
this.wadfiletab.PerformLayout();
|
this.wadfiletab.PerformLayout();
|
||||||
|
|
|
@ -201,5 +201,12 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
{
|
{
|
||||||
General.OpenWebsite((sender as LinkLabel).Text);
|
General.OpenWebsite((sender as LinkLabel).Text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help
|
||||||
|
private void ResourceOptionsForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_resourceoptions.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
1
Source/Windows/ScriptEditorForm.Designer.cs
generated
1
Source/Windows/ScriptEditorForm.Designer.cs
generated
|
@ -57,6 +57,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.Shown += new System.EventHandler(this.ScriptEditorForm_Shown);
|
this.Shown += new System.EventHandler(this.ScriptEditorForm_Shown);
|
||||||
this.Move += new System.EventHandler(this.ScriptEditorForm_Move);
|
this.Move += new System.EventHandler(this.ScriptEditorForm_Move);
|
||||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ScriptEditorForm_FormClosing);
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ScriptEditorForm_FormClosing);
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.ScriptEditorForm_HelpRequested);
|
||||||
this.ResizeEnd += new System.EventHandler(this.ScriptEditorForm_ResizeEnd);
|
this.ResizeEnd += new System.EventHandler(this.ScriptEditorForm_ResizeEnd);
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
|
|
|
@ -178,6 +178,13 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
lastsize = this.Size;
|
lastsize = this.Size;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help
|
||||||
|
private void ScriptEditorForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_scripteditor.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
|
|
5
Source/Windows/SectorEditForm.Designer.cs
generated
5
Source/Windows/SectorEditForm.Designer.cs
generated
|
@ -113,6 +113,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
//
|
//
|
||||||
// tag
|
// tag
|
||||||
//
|
//
|
||||||
|
this.tag.AllowDecimal = false;
|
||||||
this.tag.AllowNegative = false;
|
this.tag.AllowNegative = false;
|
||||||
this.tag.AllowRelative = true;
|
this.tag.AllowRelative = true;
|
||||||
this.tag.ImeMode = System.Windows.Forms.ImeMode.Off;
|
this.tag.ImeMode = System.Windows.Forms.ImeMode.Off;
|
||||||
|
@ -171,6 +172,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
//
|
//
|
||||||
// brightness
|
// brightness
|
||||||
//
|
//
|
||||||
|
this.brightness.AllowDecimal = false;
|
||||||
this.brightness.AllowNegative = false;
|
this.brightness.AllowNegative = false;
|
||||||
this.brightness.AllowRelative = true;
|
this.brightness.AllowRelative = true;
|
||||||
this.brightness.ImeMode = System.Windows.Forms.ImeMode.Off;
|
this.brightness.ImeMode = System.Windows.Forms.ImeMode.Off;
|
||||||
|
@ -259,6 +261,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
//
|
//
|
||||||
// floorheight
|
// floorheight
|
||||||
//
|
//
|
||||||
|
this.floorheight.AllowDecimal = false;
|
||||||
this.floorheight.AllowNegative = true;
|
this.floorheight.AllowNegative = true;
|
||||||
this.floorheight.AllowRelative = true;
|
this.floorheight.AllowRelative = true;
|
||||||
this.floorheight.ImeMode = System.Windows.Forms.ImeMode.Off;
|
this.floorheight.ImeMode = System.Windows.Forms.ImeMode.Off;
|
||||||
|
@ -313,6 +316,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
//
|
//
|
||||||
// ceilingheight
|
// ceilingheight
|
||||||
//
|
//
|
||||||
|
this.ceilingheight.AllowDecimal = false;
|
||||||
this.ceilingheight.AllowNegative = true;
|
this.ceilingheight.AllowNegative = true;
|
||||||
this.ceilingheight.AllowRelative = true;
|
this.ceilingheight.AllowRelative = true;
|
||||||
this.ceilingheight.ImeMode = System.Windows.Forms.ImeMode.Off;
|
this.ceilingheight.ImeMode = System.Windows.Forms.ImeMode.Off;
|
||||||
|
@ -436,6 +440,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.ShowInTaskbar = false;
|
this.ShowInTaskbar = false;
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = "Edit Sector";
|
this.Text = "Edit Sector";
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.SectorEditForm_HelpRequested);
|
||||||
groupaction.ResumeLayout(false);
|
groupaction.ResumeLayout(false);
|
||||||
groupaction.PerformLayout();
|
groupaction.PerformLayout();
|
||||||
groupeffect.ResumeLayout(false);
|
groupeffect.ResumeLayout(false);
|
||||||
|
|
|
@ -239,5 +239,12 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
{
|
{
|
||||||
UpdateSectorHeight();
|
UpdateSectorHeight();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help
|
||||||
|
private void SectorEditForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_sectoredit.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -129,9 +129,6 @@
|
||||||
<metadata name="taglabel.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="taglabel.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<value>False</value>
|
<value>False</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<metadata name="taglabel.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
||||||
<value>False</value>
|
|
||||||
</metadata>
|
|
||||||
<metadata name="groupeffect.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="groupeffect.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<value>False</value>
|
<value>False</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
@ -141,12 +138,6 @@
|
||||||
<metadata name="label8.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="label8.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<value>False</value>
|
<value>False</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<metadata name="label9.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
||||||
<value>False</value>
|
|
||||||
</metadata>
|
|
||||||
<metadata name="label8.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
||||||
<value>False</value>
|
|
||||||
</metadata>
|
|
||||||
<metadata name="groupfloorceiling.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="groupfloorceiling.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<value>False</value>
|
<value>False</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
@ -162,16 +153,4 @@
|
||||||
<metadata name="label6.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="label6.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<value>False</value>
|
<value>False</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<metadata name="label5.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
||||||
<value>False</value>
|
|
||||||
</metadata>
|
|
||||||
<metadata name="label2.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
||||||
<value>False</value>
|
|
||||||
</metadata>
|
|
||||||
<metadata name="label4.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
||||||
<value>False</value>
|
|
||||||
</metadata>
|
|
||||||
<metadata name="label6.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
||||||
<value>False</value>
|
|
||||||
</metadata>
|
|
||||||
</root>
|
</root>
|
1
Source/Windows/TextureBrowserForm.Designer.cs
generated
1
Source/Windows/TextureBrowserForm.Designer.cs
generated
|
@ -142,6 +142,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.Activated += new System.EventHandler(this.TextureBrowserForm_Activated);
|
this.Activated += new System.EventHandler(this.TextureBrowserForm_Activated);
|
||||||
this.Move += new System.EventHandler(this.TextureBrowserForm_Move);
|
this.Move += new System.EventHandler(this.TextureBrowserForm_Move);
|
||||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TextureBrowserForm_FormClosing);
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TextureBrowserForm_FormClosing);
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.TextureBrowserForm_HelpRequested);
|
||||||
this.ResizeEnd += new System.EventHandler(this.TextureBrowserForm_ResizeEnd);
|
this.ResizeEnd += new System.EventHandler(this.TextureBrowserForm_ResizeEnd);
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
|
|
|
@ -147,7 +147,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
// Select texture set and fill list
|
// Select texture set and fill list
|
||||||
selectedset.Selected = true;
|
selectedset.Selected = true;
|
||||||
selectedset.EnsureVisible();
|
selectedset.EnsureVisible();
|
||||||
FillImagesList(selecttexture);
|
//FillImagesList(selecttexture);
|
||||||
}
|
}
|
||||||
|
|
||||||
// This selects a Texture Set and the texture if it can be found
|
// This selects a Texture Set and the texture if it can be found
|
||||||
|
@ -328,5 +328,12 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
if(!string.IsNullOrEmpty(selecttexture))
|
if(!string.IsNullOrEmpty(selecttexture))
|
||||||
browser.SelectItem(selecttexture, usedgroup);
|
browser.SelectItem(selecttexture, usedgroup);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help
|
||||||
|
private void TextureBrowserForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_imagesbrowser.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -134,7 +134,7 @@
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w
|
||||||
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
||||||
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAB+
|
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAB+
|
||||||
DAAAAk1TRnQBSQFMAgEBBQEAAQwBAAEEAQABEAEAARYBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
DAAAAk1TRnQBSQFMAgEBBQEAAQkBAAEEAQABEAEAARYBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
||||||
AwABQAMAASwDAAEBAQABCAYAAQsYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
|
AwABQAMAASwDAAEBAQABCAYAAQsYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
|
||||||
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
|
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
|
||||||
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
|
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
|
||||||
|
|
1
Source/Windows/TextureSetForm.Designer.cs
generated
1
Source/Windows/TextureSetForm.Designer.cs
generated
|
@ -291,6 +291,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = "Edit Texture Set";
|
this.Text = "Edit Texture Set";
|
||||||
this.Shown += new System.EventHandler(this.TextureSetForm_Shown);
|
this.Shown += new System.EventHandler(this.TextureSetForm_Shown);
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.TextureSetForm_HelpRequested);
|
||||||
this.groupBox1.ResumeLayout(false);
|
this.groupBox1.ResumeLayout(false);
|
||||||
this.groupBox1.PerformLayout();
|
this.groupBox1.PerformLayout();
|
||||||
this.groupBox2.ResumeLayout(false);
|
this.groupBox2.ResumeLayout(false);
|
||||||
|
|
|
@ -220,6 +220,13 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
// Run the timer
|
// Run the timer
|
||||||
filterstimer.Start();
|
filterstimer.Start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help
|
||||||
|
private void TextureSetForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_textureset.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
1
Source/Windows/ThingEditForm.Designer.cs
generated
1
Source/Windows/ThingEditForm.Designer.cs
generated
|
@ -536,6 +536,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.ShowInTaskbar = false;
|
this.ShowInTaskbar = false;
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = "Edit Thing";
|
this.Text = "Edit Thing";
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.ThingEditForm_HelpRequested);
|
||||||
groupBox1.ResumeLayout(false);
|
groupBox1.ResumeLayout(false);
|
||||||
groupBox2.ResumeLayout(false);
|
groupBox2.ResumeLayout(false);
|
||||||
groupBox2.PerformLayout();
|
groupBox2.PerformLayout();
|
||||||
|
|
|
@ -313,6 +313,13 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.DialogResult = DialogResult.Cancel;
|
this.DialogResult = DialogResult.Cancel;
|
||||||
this.Close();
|
this.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help
|
||||||
|
private void ThingEditForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_thingeditor.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
|
|
1
Source/Windows/ThingsFiltersForm.Designer.cs
generated
1
Source/Windows/ThingsFiltersForm.Designer.cs
generated
|
@ -211,6 +211,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.ShowInTaskbar = false;
|
this.ShowInTaskbar = false;
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = "Things Filters";
|
this.Text = "Things Filters";
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.ThingsFiltersForm_HelpRequested);
|
||||||
this.filtergroup.ResumeLayout(false);
|
this.filtergroup.ResumeLayout(false);
|
||||||
this.filtergroup.PerformLayout();
|
this.filtergroup.PerformLayout();
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
|
@ -201,6 +201,13 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help
|
||||||
|
private void ThingsFiltersForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_thingsfilter.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region ================== Filter Settings
|
#region ================== Filter Settings
|
||||||
|
|
1
Source/Windows/VertexEditForm.Designer.cs
generated
1
Source/Windows/VertexEditForm.Designer.cs
generated
|
@ -198,6 +198,7 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.Opacity = 0;
|
this.Opacity = 0;
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = "Edit Vertex";
|
this.Text = "Edit Vertex";
|
||||||
|
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.VertexEditForm_HelpRequested);
|
||||||
tabproperties.ResumeLayout(false);
|
tabproperties.ResumeLayout(false);
|
||||||
this.groupposition.ResumeLayout(false);
|
this.groupposition.ResumeLayout(false);
|
||||||
this.groupposition.PerformLayout();
|
this.groupposition.PerformLayout();
|
||||||
|
|
|
@ -159,6 +159,13 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
this.Close();
|
this.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Help requested
|
||||||
|
private void VertexEditForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
||||||
|
{
|
||||||
|
General.ShowHelp("w_vertexeditor.html");
|
||||||
|
hlpevent.Handled = true;
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -126,10 +126,4 @@
|
||||||
<metadata name="label6.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="label6.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<value>False</value>
|
<value>False</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<metadata name="label1.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
||||||
<value>False</value>
|
|
||||||
</metadata>
|
|
||||||
<metadata name="label6.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
||||||
<value>False</value>
|
|
||||||
</metadata>
|
|
||||||
</root>
|
</root>
|
Loading…
Reference in a new issue