mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-26 05:41:45 +00:00
Fixed: some controls had inconsistent auto-scaling mode.
Fixed: PairedFloatControl had incorrect initial link icon. Internal, AngleControl: rewritten AngleChanged event so it behaves like the rest of custom events. Updated GZDB icon.
This commit is contained in:
parent
07d626bb77
commit
246ff4ae3b
33 changed files with 786 additions and 771 deletions
|
@ -45,8 +45,8 @@
|
|||
//
|
||||
// ActionSpecialHelpButton
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.button);
|
||||
this.Name = "ActionSpecialHelpButton";
|
||||
this.Size = new System.Drawing.Size(28, 26);
|
||||
|
|
4
Source/Core/Controls/HintsPanel.Designer.cs
generated
4
Source/Core/Controls/HintsPanel.Designer.cs
generated
|
@ -63,8 +63,8 @@
|
|||
//
|
||||
// HintsPanel
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.hints);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Name = "HintsPanel";
|
||||
|
|
|
@ -123,7 +123,7 @@
|
|||
this.rotationcontrol.Name = "rotationcontrol";
|
||||
this.rotationcontrol.Size = new System.Drawing.Size(44, 44);
|
||||
this.rotationcontrol.TabIndex = 56;
|
||||
this.rotationcontrol.AngleChanged += new CodeImp.DoomBuilder.GZBuilder.Controls.AngleControl.AngleChangedDelegate(this.rotationcontrol_AngleChanged);
|
||||
this.rotationcontrol.AngleChanged += new System.EventHandler(this.rotationcontrol_AngleChanged);
|
||||
//
|
||||
// slopeangle
|
||||
//
|
||||
|
|
|
@ -179,7 +179,7 @@ namespace CodeImp.DoomBuilder.Controls
|
|||
blockUpdate = false;
|
||||
}
|
||||
|
||||
private void rotationcontrol_AngleChanged()
|
||||
private void rotationcontrol_AngleChanged(object sender, EventArgs e)
|
||||
{
|
||||
if(blockUpdate) return;
|
||||
blockUpdate = true;
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
//
|
||||
// AngleControl
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Name = "AngleControl";
|
||||
this.Size = new System.Drawing.Size(40, 40);
|
||||
this.toolTip.SetToolTip(this, "Left-click (and drag) to set angle snapped to 45-degree increment.\r\nRight-click (" +
|
||||
|
|
|
@ -40,8 +40,7 @@ namespace CodeImp.DoomBuilder.GZBuilder.Controls
|
|||
|
||||
#region Properties
|
||||
|
||||
public delegate void AngleChangedDelegate();
|
||||
public event AngleChangedDelegate AngleChanged;
|
||||
public event EventHandler AngleChanged;
|
||||
|
||||
public int Angle { get { return (angle == NO_ANGLE ? NO_ANGLE : angle - angleoffset); } set { angle = (value == NO_ANGLE ? NO_ANGLE : value + angleoffset); this.Refresh(); } }
|
||||
public int AngleOffset { get { return angleoffset; } set { angleoffset = value; this.Refresh(); } }
|
||||
|
@ -175,7 +174,7 @@ namespace CodeImp.DoomBuilder.GZBuilder.Controls
|
|||
if(thisAngle != angle)
|
||||
{
|
||||
angle = thisAngle;
|
||||
if(!this.DesignMode && AngleChanged != null) AngleChanged(); //Raise event
|
||||
if(!this.DesignMode && AngleChanged != null) AngleChanged(this, EventArgs.Empty); //Raise event
|
||||
this.Refresh();
|
||||
}
|
||||
}
|
||||
|
@ -195,7 +194,7 @@ namespace CodeImp.DoomBuilder.GZBuilder.Controls
|
|||
if(thisAngle != angle)
|
||||
{
|
||||
angle = thisAngle;
|
||||
if(!this.DesignMode && AngleChanged != null) AngleChanged(); //Raise event
|
||||
if(!this.DesignMode && AngleChanged != null) AngleChanged(this, EventArgs.Empty); //Raise event
|
||||
this.Refresh();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -67,8 +67,8 @@
|
|||
//
|
||||
// ColorFieldsControl
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.tbColor);
|
||||
this.Controls.Add(this.bReset);
|
||||
this.Controls.Add(this.cpColor);
|
||||
|
|
|
@ -1,120 +1,120 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
|
@ -30,18 +30,18 @@
|
|||
{
|
||||
this.gbLineColor = new System.Windows.Forms.GroupBox();
|
||||
this.labelErrors = new System.Windows.Forms.Label();
|
||||
this.lineColor = new CodeImp.DoomBuilder.Controls.ColorControl();
|
||||
this.tcLineSettings = new System.Windows.Forms.TabControl();
|
||||
this.tabFlags = new System.Windows.Forms.TabPage();
|
||||
this.flags = new System.Windows.Forms.CheckedListBox();
|
||||
this.cbUseFlags = new System.Windows.Forms.CheckBox();
|
||||
this.tabAction = new System.Windows.Forms.TabPage();
|
||||
this.action = new CodeImp.DoomBuilder.Controls.ActionSelectorControl();
|
||||
this.cbUseAction = new System.Windows.Forms.CheckBox();
|
||||
this.tabActivation = new System.Windows.Forms.TabPage();
|
||||
this.activation = new System.Windows.Forms.ComboBox();
|
||||
this.cbUseActivation = new System.Windows.Forms.CheckBox();
|
||||
this.udmfactivates = new System.Windows.Forms.CheckedListBox();
|
||||
this.lineColor = new CodeImp.DoomBuilder.Controls.ColorControl();
|
||||
this.action = new CodeImp.DoomBuilder.Controls.ActionSelectorControl();
|
||||
this.gbLineColor.SuspendLayout();
|
||||
this.tcLineSettings.SuspendLayout();
|
||||
this.tabFlags.SuspendLayout();
|
||||
|
@ -72,6 +72,19 @@
|
|||
this.labelErrors.Text = "Teh Error occured!";
|
||||
this.labelErrors.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// lineColor
|
||||
//
|
||||
this.lineColor.BackColor = System.Drawing.Color.Transparent;
|
||||
this.lineColor.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.lineColor.Label = "Linedef color:";
|
||||
this.lineColor.Location = new System.Drawing.Point(6, 13);
|
||||
this.lineColor.MaximumSize = new System.Drawing.Size(10000, 23);
|
||||
this.lineColor.MinimumSize = new System.Drawing.Size(100, 23);
|
||||
this.lineColor.Name = "lineColor";
|
||||
this.lineColor.Size = new System.Drawing.Size(132, 23);
|
||||
this.lineColor.TabIndex = 0;
|
||||
this.lineColor.ColorChanged += new System.EventHandler(this.lineColor_ColorChanged);
|
||||
//
|
||||
// tcLineSettings
|
||||
//
|
||||
this.tcLineSettings.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
|
@ -138,6 +151,22 @@
|
|||
this.tabAction.Text = "Action";
|
||||
this.tabAction.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// action
|
||||
//
|
||||
this.action.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.action.BackColor = System.Drawing.Color.Transparent;
|
||||
this.action.Cursor = System.Windows.Forms.Cursors.Default;
|
||||
this.action.Empty = false;
|
||||
this.action.GeneralizedCategories = null;
|
||||
this.action.GeneralizedOptions = null;
|
||||
this.action.Location = new System.Drawing.Point(6, 30);
|
||||
this.action.Name = "action";
|
||||
this.action.Size = new System.Drawing.Size(309, 21);
|
||||
this.action.TabIndex = 6;
|
||||
this.action.Value = 0;
|
||||
this.action.ValueChanges += new System.EventHandler(this.action_ValueChanges);
|
||||
//
|
||||
// cbUseAction
|
||||
//
|
||||
this.cbUseAction.AutoSize = true;
|
||||
|
@ -200,38 +229,10 @@
|
|||
this.udmfactivates.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.flags_ItemCheck);
|
||||
this.udmfactivates.SelectedValueChanged += new System.EventHandler(this.udmfactivates_SelectedValueChanged);
|
||||
//
|
||||
// lineColor
|
||||
//
|
||||
this.lineColor.BackColor = System.Drawing.Color.Transparent;
|
||||
this.lineColor.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.lineColor.Label = "Linedef color:";
|
||||
this.lineColor.Location = new System.Drawing.Point(6, 13);
|
||||
this.lineColor.MaximumSize = new System.Drawing.Size(10000, 23);
|
||||
this.lineColor.MinimumSize = new System.Drawing.Size(100, 23);
|
||||
this.lineColor.Name = "lineColor";
|
||||
this.lineColor.Size = new System.Drawing.Size(132, 23);
|
||||
this.lineColor.TabIndex = 0;
|
||||
this.lineColor.ColorChanged += new System.EventHandler(this.lineColor_ColorChanged);
|
||||
//
|
||||
// action
|
||||
//
|
||||
this.action.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.action.BackColor = System.Drawing.Color.Transparent;
|
||||
this.action.Cursor = System.Windows.Forms.Cursors.Default;
|
||||
this.action.Empty = false;
|
||||
this.action.GeneralizedCategories = null;
|
||||
this.action.Location = new System.Drawing.Point(6, 30);
|
||||
this.action.Name = "action";
|
||||
this.action.Size = new System.Drawing.Size(309, 21);
|
||||
this.action.TabIndex = 6;
|
||||
this.action.Value = 0;
|
||||
this.action.ValueChanges += new System.EventHandler(this.action_ValueChanges);
|
||||
//
|
||||
// CustomLinedefColorProperties
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.gbLineColor);
|
||||
this.Controls.Add(this.tcLineSettings);
|
||||
this.Name = "CustomLinedefColorProperties";
|
||||
|
|
|
@ -1,120 +1,120 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
|
@ -32,10 +32,10 @@
|
|||
this.bMoveUp = new System.Windows.Forms.Button();
|
||||
this.bMoveDown = new System.Windows.Forms.Button();
|
||||
this.bRemovePreset = new System.Windows.Forms.Button();
|
||||
this.lbColorPresets = new CodeImp.DoomBuilder.GZBuilder.Controls.IconListBox();
|
||||
this.tbNewPresetName = new System.Windows.Forms.TextBox();
|
||||
this.bAddPreset = new System.Windows.Forms.Button();
|
||||
this.colorProperties = new CodeImp.DoomBuilder.GZBuilder.Controls.CustomLinedefColorProperties();
|
||||
this.lbColorPresets = new CodeImp.DoomBuilder.GZBuilder.Controls.IconListBox();
|
||||
this.gbPresets.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
|
@ -92,6 +92,20 @@
|
|||
this.bRemovePreset.UseVisualStyleBackColor = true;
|
||||
this.bRemovePreset.Click += new System.EventHandler(this.bRemovePreset_Click);
|
||||
//
|
||||
// lbColorPresets
|
||||
//
|
||||
this.lbColorPresets.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.lbColorPresets.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
|
||||
this.lbColorPresets.FormattingEnabled = true;
|
||||
this.lbColorPresets.HorizontalScrollbar = true;
|
||||
this.lbColorPresets.Location = new System.Drawing.Point(6, 73);
|
||||
this.lbColorPresets.Name = "lbColorPresets";
|
||||
this.lbColorPresets.Size = new System.Drawing.Size(133, 173);
|
||||
this.lbColorPresets.TabIndex = 4;
|
||||
this.lbColorPresets.SelectedIndexChanged += new System.EventHandler(this.lbColorPresets_SelectedIndexChanged);
|
||||
//
|
||||
// tbNewPresetName
|
||||
//
|
||||
this.tbNewPresetName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
|
@ -129,24 +143,10 @@
|
|||
this.colorProperties.Size = new System.Drawing.Size(270, 250);
|
||||
this.colorProperties.TabIndex = 3;
|
||||
//
|
||||
// lbColorPresets
|
||||
//
|
||||
this.lbColorPresets.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.lbColorPresets.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
|
||||
this.lbColorPresets.FormattingEnabled = true;
|
||||
this.lbColorPresets.HorizontalScrollbar = true;
|
||||
this.lbColorPresets.Location = new System.Drawing.Point(6, 73);
|
||||
this.lbColorPresets.Name = "lbColorPresets";
|
||||
this.lbColorPresets.Size = new System.Drawing.Size(133, 173);
|
||||
this.lbColorPresets.TabIndex = 4;
|
||||
this.lbColorPresets.SelectedIndexChanged += new System.EventHandler(this.lbColorPresets_SelectedIndexChanged);
|
||||
//
|
||||
// CustomLinedefColorsControl
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.colorProperties);
|
||||
this.Controls.Add(this.gbPresets);
|
||||
this.Name = "CustomLinedefColorsControl";
|
||||
|
|
|
@ -1,120 +1,120 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
|
@ -28,96 +28,98 @@
|
|||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.value1 = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
|
||||
this.value2 = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
|
||||
this.label = new System.Windows.Forms.Label();
|
||||
this.bReset = new System.Windows.Forms.Button();
|
||||
this.bLink = new System.Windows.Forms.Button();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// value1
|
||||
//
|
||||
this.value1.AllowDecimal = true;
|
||||
this.value1.AllowNegative = true;
|
||||
this.value1.AllowRelative = true;
|
||||
this.value1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.value1.ButtonStep = 1;
|
||||
this.value1.ButtonStepFloat = 1F;
|
||||
this.value1.Location = new System.Drawing.Point(86, 1);
|
||||
this.value1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
|
||||
this.value1.Name = "value1";
|
||||
this.value1.Size = new System.Drawing.Size(62, 24);
|
||||
this.value1.StepValues = null;
|
||||
this.value1.TabIndex = 42;
|
||||
this.value1.Tag = "offsetx_top";
|
||||
this.value1.WhenTextChanged += new System.EventHandler(this.value1_WhenTextChanged);
|
||||
//
|
||||
// value2
|
||||
//
|
||||
this.value2.AllowDecimal = true;
|
||||
this.value2.AllowNegative = true;
|
||||
this.value2.AllowRelative = true;
|
||||
this.value2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.value2.ButtonStep = 1;
|
||||
this.value2.ButtonStepFloat = 1F;
|
||||
this.value2.Location = new System.Drawing.Point(155, 1);
|
||||
this.value2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
|
||||
this.value2.Name = "value2";
|
||||
this.value2.Size = new System.Drawing.Size(62, 24);
|
||||
this.value2.StepValues = null;
|
||||
this.value2.TabIndex = 43;
|
||||
this.value2.Tag = "offsety_top";
|
||||
this.value2.WhenTextChanged += new System.EventHandler(this.value2_WhenTextChanged);
|
||||
//
|
||||
// label
|
||||
//
|
||||
this.label.Location = new System.Drawing.Point(0, 6);
|
||||
this.label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.label.Name = "label";
|
||||
this.label.Size = new System.Drawing.Size(86, 15);
|
||||
this.label.TabIndex = 41;
|
||||
this.label.Text = "Texture Offsets:";
|
||||
this.label.TextAlign = System.Drawing.ContentAlignment.TopRight;
|
||||
//
|
||||
// bReset
|
||||
//
|
||||
this.bReset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.bReset.Image = global::CodeImp.DoomBuilder.Properties.Resources.Reset;
|
||||
this.bReset.Location = new System.Drawing.Point(245, 1);
|
||||
this.bReset.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
|
||||
this.bReset.Name = "bReset";
|
||||
this.bReset.Size = new System.Drawing.Size(23, 25);
|
||||
this.bReset.TabIndex = 45;
|
||||
this.bReset.UseVisualStyleBackColor = true;
|
||||
this.bReset.Visible = false;
|
||||
this.bReset.Click += new System.EventHandler(this.bReset_Click);
|
||||
//
|
||||
// bLink
|
||||
//
|
||||
this.bLink.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.bLink.Image = global::CodeImp.DoomBuilder.Properties.Resources.Link;
|
||||
this.bLink.Location = new System.Drawing.Point(220, 1);
|
||||
this.bLink.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
|
||||
this.bLink.Name = "bLink";
|
||||
this.bLink.Size = new System.Drawing.Size(23, 25);
|
||||
this.bLink.TabIndex = 44;
|
||||
this.bLink.UseVisualStyleBackColor = true;
|
||||
this.bLink.Click += new System.EventHandler(this.bLink_Click);
|
||||
//
|
||||
// PairedFloatControl
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.Controls.Add(this.bReset);
|
||||
this.Controls.Add(this.bLink);
|
||||
this.Controls.Add(this.value1);
|
||||
this.Controls.Add(this.value2);
|
||||
this.Controls.Add(this.label);
|
||||
this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||||
this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
|
||||
this.Name = "PairedFloatControl";
|
||||
this.Size = new System.Drawing.Size(268, 26);
|
||||
this.ResumeLayout(false);
|
||||
this.value1 = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
|
||||
this.value2 = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
|
||||
this.label = new System.Windows.Forms.Label();
|
||||
this.bReset = new System.Windows.Forms.Button();
|
||||
this.bLink = new System.Windows.Forms.Button();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// value1
|
||||
//
|
||||
this.value1.AllowDecimal = true;
|
||||
this.value1.AllowNegative = true;
|
||||
this.value1.AllowRelative = true;
|
||||
this.value1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.value1.ButtonStep = 1;
|
||||
this.value1.ButtonStepFloat = 1F;
|
||||
this.value1.ButtonStepsWrapAround = false;
|
||||
this.value1.Location = new System.Drawing.Point(86, 1);
|
||||
this.value1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
|
||||
this.value1.Name = "value1";
|
||||
this.value1.Size = new System.Drawing.Size(62, 24);
|
||||
this.value1.StepValues = null;
|
||||
this.value1.TabIndex = 42;
|
||||
this.value1.Tag = "offsetx_top";
|
||||
this.value1.WhenTextChanged += new System.EventHandler(this.value1_WhenTextChanged);
|
||||
//
|
||||
// value2
|
||||
//
|
||||
this.value2.AllowDecimal = true;
|
||||
this.value2.AllowNegative = true;
|
||||
this.value2.AllowRelative = true;
|
||||
this.value2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.value2.ButtonStep = 1;
|
||||
this.value2.ButtonStepFloat = 1F;
|
||||
this.value2.ButtonStepsWrapAround = false;
|
||||
this.value2.Location = new System.Drawing.Point(155, 1);
|
||||
this.value2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
|
||||
this.value2.Name = "value2";
|
||||
this.value2.Size = new System.Drawing.Size(62, 24);
|
||||
this.value2.StepValues = null;
|
||||
this.value2.TabIndex = 43;
|
||||
this.value2.Tag = "offsety_top";
|
||||
this.value2.WhenTextChanged += new System.EventHandler(this.value2_WhenTextChanged);
|
||||
//
|
||||
// label
|
||||
//
|
||||
this.label.Location = new System.Drawing.Point(0, 6);
|
||||
this.label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.label.Name = "label";
|
||||
this.label.Size = new System.Drawing.Size(86, 15);
|
||||
this.label.TabIndex = 41;
|
||||
this.label.Text = "Texture Offsets:";
|
||||
this.label.TextAlign = System.Drawing.ContentAlignment.TopRight;
|
||||
//
|
||||
// bReset
|
||||
//
|
||||
this.bReset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.bReset.Image = global::CodeImp.DoomBuilder.Properties.Resources.Reset;
|
||||
this.bReset.Location = new System.Drawing.Point(245, 1);
|
||||
this.bReset.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
|
||||
this.bReset.Name = "bReset";
|
||||
this.bReset.Size = new System.Drawing.Size(23, 25);
|
||||
this.bReset.TabIndex = 45;
|
||||
this.bReset.UseVisualStyleBackColor = true;
|
||||
this.bReset.Visible = false;
|
||||
this.bReset.Click += new System.EventHandler(this.bReset_Click);
|
||||
//
|
||||
// bLink
|
||||
//
|
||||
this.bLink.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.bLink.Image = global::CodeImp.DoomBuilder.Properties.Resources.Unlink;
|
||||
this.bLink.Location = new System.Drawing.Point(220, 1);
|
||||
this.bLink.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
|
||||
this.bLink.Name = "bLink";
|
||||
this.bLink.Size = new System.Drawing.Size(23, 25);
|
||||
this.bLink.TabIndex = 44;
|
||||
this.bLink.UseVisualStyleBackColor = true;
|
||||
this.bLink.Click += new System.EventHandler(this.bLink_Click);
|
||||
//
|
||||
// PairedFloatControl
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.bReset);
|
||||
this.Controls.Add(this.bLink);
|
||||
this.Controls.Add(this.value1);
|
||||
this.Controls.Add(this.value2);
|
||||
this.Controls.Add(this.label);
|
||||
this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||||
this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
|
||||
this.Name = "PairedFloatControl";
|
||||
this.Size = new System.Drawing.Size(268, 26);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -97,8 +97,8 @@
|
|||
//
|
||||
// TagSelector
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.clear);
|
||||
this.Controls.Add(this.unusedTag);
|
||||
this.Controls.Add(this.newTag);
|
||||
|
|
|
@ -120,7 +120,4 @@
|
|||
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
</root>
|
Binary file not shown.
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 31 KiB |
|
@ -531,7 +531,7 @@
|
|||
this.floorAngleControl.Name = "floorAngleControl";
|
||||
this.floorAngleControl.Size = new System.Drawing.Size(44, 44);
|
||||
this.floorAngleControl.TabIndex = 56;
|
||||
this.floorAngleControl.AngleChanged += new CodeImp.DoomBuilder.GZBuilder.Controls.AngleControl.AngleChangedDelegate(this.floorAngleControl_AngleChanged);
|
||||
this.floorAngleControl.AngleChanged += new System.EventHandler(this.floorAngleControl_AngleChanged);
|
||||
//
|
||||
// labelfloorrenderstyle
|
||||
//
|
||||
|
@ -732,7 +732,7 @@
|
|||
this.ceilAngleControl.Name = "ceilAngleControl";
|
||||
this.ceilAngleControl.Size = new System.Drawing.Size(44, 44);
|
||||
this.ceilAngleControl.TabIndex = 55;
|
||||
this.ceilAngleControl.AngleChanged += new CodeImp.DoomBuilder.GZBuilder.Controls.AngleControl.AngleChangedDelegate(this.ceilAngleControl_AngleChanged);
|
||||
this.ceilAngleControl.AngleChanged += new System.EventHandler(this.ceilAngleControl_AngleChanged);
|
||||
//
|
||||
// labelceilrenderstyle
|
||||
//
|
||||
|
|
|
@ -729,12 +729,12 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
fieldslist.Focus();
|
||||
}
|
||||
|
||||
private void ceilAngleControl_AngleChanged()
|
||||
private void ceilAngleControl_AngleChanged(object sender, EventArgs e)
|
||||
{
|
||||
ceilRotation.Text = (General.ClampAngle(360 - ceilAngleControl.Angle)).ToString();
|
||||
}
|
||||
|
||||
private void floorAngleControl_AngleChanged()
|
||||
private void floorAngleControl_AngleChanged(object sender, EventArgs e)
|
||||
{
|
||||
floorRotation.Text = (General.ClampAngle(360 - floorAngleControl.Angle)).ToString();
|
||||
}
|
||||
|
|
2
Source/Core/Windows/ThingEditForm.Designer.cs
generated
2
Source/Core/Windows/ThingEditForm.Designer.cs
generated
|
@ -234,7 +234,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
this.anglecontrol.Name = "anglecontrol";
|
||||
this.anglecontrol.Size = new System.Drawing.Size(88, 88);
|
||||
this.anglecontrol.TabIndex = 20;
|
||||
this.anglecontrol.AngleChanged += new CodeImp.DoomBuilder.GZBuilder.Controls.AngleControl.AngleChangedDelegate(this.anglecontrol_AngleChanged);
|
||||
this.anglecontrol.AngleChanged += new System.EventHandler(this.anglecontrol_AngleChanged);
|
||||
//
|
||||
// cbRandomAngle
|
||||
//
|
||||
|
|
|
@ -386,7 +386,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
}
|
||||
|
||||
//mxd. Angle control clicked
|
||||
private void anglecontrol_AngleChanged()
|
||||
private void anglecontrol_AngleChanged(object sender, EventArgs e)
|
||||
{
|
||||
if(preventchanges) return;
|
||||
angle.Text = anglecontrol.Angle.ToString();
|
||||
|
|
|
@ -243,7 +243,7 @@
|
|||
this.anglecontrol.Name = "anglecontrol";
|
||||
this.anglecontrol.Size = new System.Drawing.Size(64, 64);
|
||||
this.anglecontrol.TabIndex = 20;
|
||||
this.anglecontrol.AngleChanged += new CodeImp.DoomBuilder.GZBuilder.Controls.AngleControl.AngleChangedDelegate(this.anglecontrol_AngleChanged);
|
||||
this.anglecontrol.AngleChanged += new System.EventHandler(this.anglecontrol_AngleChanged);
|
||||
//
|
||||
// labelGravity
|
||||
//
|
||||
|
@ -355,7 +355,7 @@
|
|||
this.rollControl.Name = "rollControl";
|
||||
this.rollControl.Size = new System.Drawing.Size(64, 64);
|
||||
this.rollControl.TabIndex = 20;
|
||||
this.rollControl.AngleChanged += new CodeImp.DoomBuilder.GZBuilder.Controls.AngleControl.AngleChangedDelegate(this.rollControl_AngleChanged);
|
||||
this.rollControl.AngleChanged += new System.EventHandler(this.rollControl_AngleChanged);
|
||||
//
|
||||
// grouppitch
|
||||
//
|
||||
|
@ -375,7 +375,7 @@
|
|||
this.pitchControl.Name = "pitchControl";
|
||||
this.pitchControl.Size = new System.Drawing.Size(64, 64);
|
||||
this.pitchControl.TabIndex = 20;
|
||||
this.pitchControl.AngleChanged += new CodeImp.DoomBuilder.GZBuilder.Controls.AngleControl.AngleChangedDelegate(this.pitchControl_AngleChanged);
|
||||
this.pitchControl.AngleChanged += new System.EventHandler(this.pitchControl_AngleChanged);
|
||||
//
|
||||
// groupBox7
|
||||
//
|
||||
|
|
|
@ -480,7 +480,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
}
|
||||
|
||||
//mxd. Angle control clicked
|
||||
private void anglecontrol_AngleChanged()
|
||||
private void anglecontrol_AngleChanged(object sender, EventArgs e)
|
||||
{
|
||||
if(preventchanges) return;
|
||||
angle.Text = anglecontrol.Angle.ToString();
|
||||
|
@ -497,7 +497,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
UpdatePitch();
|
||||
}
|
||||
|
||||
private void pitchControl_AngleChanged()
|
||||
private void pitchControl_AngleChanged(object sender, EventArgs e)
|
||||
{
|
||||
if(preventchanges) return;
|
||||
pitch.Text = (General.ClampAngle(pitchControl.Angle - 90)).ToString();
|
||||
|
@ -514,7 +514,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
UpdateRoll();
|
||||
}
|
||||
|
||||
private void rollControl_AngleChanged()
|
||||
private void rollControl_AngleChanged(object sender, EventArgs e)
|
||||
{
|
||||
if(preventchanges) return;
|
||||
roll.Text = (General.ClampAngle(rollControl.Angle - 90)).ToString();
|
||||
|
|
|
@ -76,7 +76,7 @@
|
|||
//
|
||||
this.jitterItem.Image = global::CodeImp.DoomBuilder.BuilderEffects.Properties.Resources.Jitter;
|
||||
this.jitterItem.Name = "jitterItem";
|
||||
this.jitterItem.Size = new System.Drawing.Size(152, 22);
|
||||
this.jitterItem.Size = new System.Drawing.Size(133, 22);
|
||||
this.jitterItem.Tag = "applyjitter";
|
||||
this.jitterItem.Text = "Randomize";
|
||||
this.jitterItem.Click += new System.EventHandler(this.InvokeTaggedAction);
|
||||
|
@ -104,8 +104,8 @@
|
|||
//
|
||||
// MenusForm
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.ClientSize = new System.Drawing.Size(452, 129);
|
||||
this.Controls.Add(this.toolStrip);
|
||||
this.Controls.Add(this.menuStrip);
|
||||
|
|
|
@ -44,7 +44,8 @@
|
|||
//
|
||||
// buttonOK
|
||||
//
|
||||
this.buttonOK.Location = new System.Drawing.Point(177, 139);
|
||||
this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.buttonOK.Location = new System.Drawing.Point(177, 148);
|
||||
this.buttonOK.Name = "buttonOK";
|
||||
this.buttonOK.Size = new System.Drawing.Size(75, 23);
|
||||
this.buttonOK.TabIndex = 4;
|
||||
|
@ -54,8 +55,9 @@
|
|||
//
|
||||
// buttonCancel
|
||||
//
|
||||
this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
||||
this.buttonCancel.Location = new System.Drawing.Point(95, 139);
|
||||
this.buttonCancel.Location = new System.Drawing.Point(95, 148);
|
||||
this.buttonCancel.Name = "buttonCancel";
|
||||
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
||||
this.buttonCancel.TabIndex = 5;
|
||||
|
@ -68,7 +70,7 @@
|
|||
this.cbFloorAlign.FormattingEnabled = true;
|
||||
this.cbFloorAlign.Location = new System.Drawing.Point(93, 12);
|
||||
this.cbFloorAlign.Name = "cbFloorAlign";
|
||||
this.cbFloorAlign.Size = new System.Drawing.Size(158, 21);
|
||||
this.cbFloorAlign.Size = new System.Drawing.Size(158, 22);
|
||||
this.cbFloorAlign.TabIndex = 0;
|
||||
//
|
||||
// cbCeilingAlign
|
||||
|
@ -76,7 +78,7 @@
|
|||
this.cbCeilingAlign.FormattingEnabled = true;
|
||||
this.cbCeilingAlign.Location = new System.Drawing.Point(93, 39);
|
||||
this.cbCeilingAlign.Name = "cbCeilingAlign";
|
||||
this.cbCeilingAlign.Size = new System.Drawing.Size(158, 21);
|
||||
this.cbCeilingAlign.Size = new System.Drawing.Size(158, 22);
|
||||
this.cbCeilingAlign.TabIndex = 1;
|
||||
//
|
||||
// cbBrightness
|
||||
|
@ -84,7 +86,7 @@
|
|||
this.cbBrightness.FormattingEnabled = true;
|
||||
this.cbBrightness.Location = new System.Drawing.Point(93, 66);
|
||||
this.cbBrightness.Name = "cbBrightness";
|
||||
this.cbBrightness.Size = new System.Drawing.Size(158, 21);
|
||||
this.cbBrightness.Size = new System.Drawing.Size(158, 22);
|
||||
this.cbBrightness.TabIndex = 2;
|
||||
//
|
||||
// label1
|
||||
|
@ -92,7 +94,7 @@
|
|||
this.label1.AutoSize = true;
|
||||
this.label1.Location = new System.Drawing.Point(31, 15);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(56, 13);
|
||||
this.label1.Size = new System.Drawing.Size(59, 14);
|
||||
this.label1.TabIndex = 5;
|
||||
this.label1.Text = "Align floor:";
|
||||
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
||||
|
@ -102,7 +104,7 @@
|
|||
this.label2.AutoSize = true;
|
||||
this.label2.Location = new System.Drawing.Point(21, 42);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Size = new System.Drawing.Size(66, 13);
|
||||
this.label2.Size = new System.Drawing.Size(67, 14);
|
||||
this.label2.TabIndex = 6;
|
||||
this.label2.Text = "Align ceiling:";
|
||||
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
||||
|
@ -112,14 +114,14 @@
|
|||
this.label3.AutoSize = true;
|
||||
this.label3.Location = new System.Drawing.Point(28, 69);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Size = new System.Drawing.Size(59, 13);
|
||||
this.label3.Size = new System.Drawing.Size(62, 14);
|
||||
this.label3.TabIndex = 7;
|
||||
this.label3.Text = "Brightness:";
|
||||
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
||||
//
|
||||
// nudSubdivisions
|
||||
//
|
||||
this.nudSubdivisions.Location = new System.Drawing.Point(205, 93);
|
||||
this.nudSubdivisions.Location = new System.Drawing.Point(93, 94);
|
||||
this.nudSubdivisions.Name = "nudSubdivisions";
|
||||
this.nudSubdivisions.Size = new System.Drawing.Size(46, 20);
|
||||
this.nudSubdivisions.TabIndex = 3;
|
||||
|
@ -133,16 +135,17 @@
|
|||
// label4
|
||||
//
|
||||
this.label4.AutoSize = true;
|
||||
this.label4.Location = new System.Drawing.Point(130, 97);
|
||||
this.label4.Location = new System.Drawing.Point(16, 95);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Size = new System.Drawing.Size(69, 13);
|
||||
this.label4.Size = new System.Drawing.Size(71, 14);
|
||||
this.label4.TabIndex = 9;
|
||||
this.label4.Text = "Subdivisions:";
|
||||
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
||||
//
|
||||
// buttonFlip
|
||||
//
|
||||
this.buttonFlip.Location = new System.Drawing.Point(13, 139);
|
||||
this.buttonFlip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.buttonFlip.Location = new System.Drawing.Point(13, 148);
|
||||
this.buttonFlip.Name = "buttonFlip";
|
||||
this.buttonFlip.Size = new System.Drawing.Size(75, 23);
|
||||
this.buttonFlip.TabIndex = 6;
|
||||
|
@ -153,9 +156,9 @@
|
|||
// cbMirror
|
||||
//
|
||||
this.cbMirror.AutoSize = true;
|
||||
this.cbMirror.Location = new System.Drawing.Point(14, 95);
|
||||
this.cbMirror.Location = new System.Drawing.Point(168, 96);
|
||||
this.cbMirror.Name = "cbMirror";
|
||||
this.cbMirror.Size = new System.Drawing.Size(81, 17);
|
||||
this.cbMirror.Size = new System.Drawing.Size(83, 18);
|
||||
this.cbMirror.TabIndex = 10;
|
||||
this.cbMirror.Text = "Mirror mode";
|
||||
this.cbMirror.UseVisualStyleBackColor = true;
|
||||
|
@ -164,9 +167,9 @@
|
|||
// cbCopy
|
||||
//
|
||||
this.cbCopy.AutoSize = true;
|
||||
this.cbCopy.Location = new System.Drawing.Point(14, 118);
|
||||
this.cbCopy.Location = new System.Drawing.Point(168, 119);
|
||||
this.cbCopy.Name = "cbCopy";
|
||||
this.cbCopy.Size = new System.Drawing.Size(79, 17);
|
||||
this.cbCopy.Size = new System.Drawing.Size(80, 18);
|
||||
this.cbCopy.TabIndex = 10;
|
||||
this.cbCopy.Text = "Copy mode";
|
||||
this.cbCopy.UseVisualStyleBackColor = true;
|
||||
|
@ -175,10 +178,10 @@
|
|||
// BridgeModeForm
|
||||
//
|
||||
this.AcceptButton = this.buttonOK;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.CancelButton = this.buttonCancel;
|
||||
this.ClientSize = new System.Drawing.Size(263, 166);
|
||||
this.ClientSize = new System.Drawing.Size(263, 175);
|
||||
this.Controls.Add(this.cbCopy);
|
||||
this.Controls.Add(this.cbMirror);
|
||||
this.Controls.Add(this.buttonFlip);
|
||||
|
@ -192,10 +195,12 @@
|
|||
this.Controls.Add(this.cbFloorAlign);
|
||||
this.Controls.Add(this.buttonCancel);
|
||||
this.Controls.Add(this.buttonOK);
|
||||
this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "BridgeModeForm";
|
||||
this.Opacity = 1;
|
||||
this.ShowIcon = false;
|
||||
this.ShowInTaskbar = false;
|
||||
this.Text = "Options";
|
||||
|
|
|
@ -148,7 +148,7 @@
|
|||
this.cbfitwidth.AutoSize = true;
|
||||
this.cbfitwidth.Location = new System.Drawing.Point(10, 19);
|
||||
this.cbfitwidth.Name = "cbfitwidth";
|
||||
this.cbfitwidth.Size = new System.Drawing.Size(65, 17);
|
||||
this.cbfitwidth.Size = new System.Drawing.Size(67, 18);
|
||||
this.cbfitwidth.TabIndex = 2;
|
||||
this.cbfitwidth.Text = "Fit width";
|
||||
this.cbfitwidth.UseVisualStyleBackColor = true;
|
||||
|
@ -181,7 +181,7 @@
|
|||
this.cbfitheight.AutoSize = true;
|
||||
this.cbfitheight.Location = new System.Drawing.Point(10, 42);
|
||||
this.cbfitheight.Name = "cbfitheight";
|
||||
this.cbfitheight.Size = new System.Drawing.Size(69, 17);
|
||||
this.cbfitheight.Size = new System.Drawing.Size(69, 18);
|
||||
this.cbfitheight.TabIndex = 8;
|
||||
this.cbfitheight.Text = "Fit height";
|
||||
this.cbfitheight.UseVisualStyleBackColor = true;
|
||||
|
@ -192,7 +192,7 @@
|
|||
this.cbfitconnected.AutoSize = true;
|
||||
this.cbfitconnected.Location = new System.Drawing.Point(10, 65);
|
||||
this.cbfitconnected.Name = "cbfitconnected";
|
||||
this.cbfitconnected.Size = new System.Drawing.Size(168, 17);
|
||||
this.cbfitconnected.Size = new System.Drawing.Size(175, 18);
|
||||
this.cbfitconnected.TabIndex = 9;
|
||||
this.cbfitconnected.Text = "Fit across connected surfaces";
|
||||
this.cbfitconnected.UseVisualStyleBackColor = true;
|
||||
|
@ -212,13 +212,14 @@
|
|||
// FitTexturesForm
|
||||
//
|
||||
this.AcceptButton = this.accept;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.ClientSize = new System.Drawing.Size(206, 223);
|
||||
this.Controls.Add(this.groupBox2);
|
||||
this.Controls.Add(this.cancel);
|
||||
this.Controls.Add(this.accept);
|
||||
this.Controls.Add(this.repeatgroup);
|
||||
this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "FitTexturesForm";
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
this.top = new CodeImp.DoomBuilder.Controls.TextureSelectorControl();
|
||||
this.groupBox3 = new System.Windows.Forms.GroupBox();
|
||||
this.groupBox4 = new System.Windows.Forms.GroupBox();
|
||||
this.fillall = new System.Windows.Forms.Button();
|
||||
this.filllower = new System.Windows.Forms.Button();
|
||||
this.fillmiddle = new System.Windows.Forms.Button();
|
||||
this.fillupper = new System.Windows.Forms.Button();
|
||||
|
@ -62,9 +63,8 @@
|
|||
this.clearupper = new System.Windows.Forms.Button();
|
||||
this.clearfloor = new System.Windows.Forms.Button();
|
||||
this.clearceiling = new System.Windows.Forms.Button();
|
||||
this.groupBox5 = new System.Windows.Forms.GroupBox();
|
||||
this.fillall = new System.Windows.Forms.Button();
|
||||
this.clearall = new System.Windows.Forms.Button();
|
||||
this.groupBox5 = new System.Windows.Forms.GroupBox();
|
||||
this.groupBox1.SuspendLayout();
|
||||
this.groupBox2.SuspendLayout();
|
||||
this.groupBox3.SuspendLayout();
|
||||
|
@ -90,19 +90,23 @@
|
|||
// ceiling
|
||||
//
|
||||
this.ceiling.Location = new System.Drawing.Point(6, 41);
|
||||
this.ceiling.MultipleTextures = false;
|
||||
this.ceiling.Name = "ceiling";
|
||||
this.ceiling.Size = new System.Drawing.Size(68, 90);
|
||||
this.ceiling.TabIndex = 30;
|
||||
this.ceiling.TextureName = "";
|
||||
this.ceiling.UsePreviews = true;
|
||||
this.ceiling.OnValueChanged += new System.EventHandler(this.ceiling_OnValueChanged);
|
||||
//
|
||||
// floor
|
||||
//
|
||||
this.floor.Location = new System.Drawing.Point(87, 41);
|
||||
this.floor.MultipleTextures = false;
|
||||
this.floor.Name = "floor";
|
||||
this.floor.Size = new System.Drawing.Size(68, 90);
|
||||
this.floor.TabIndex = 29;
|
||||
this.floor.TextureName = "";
|
||||
this.floor.UsePreviews = true;
|
||||
this.floor.OnValueChanged += new System.EventHandler(this.floor_OnValueChanged);
|
||||
//
|
||||
// cbOverrideFloorTexture
|
||||
|
@ -182,6 +186,7 @@
|
|||
this.brightness.AllowRelative = false;
|
||||
this.brightness.ButtonStep = 16;
|
||||
this.brightness.ButtonStepFloat = 1F;
|
||||
this.brightness.ButtonStepsWrapAround = false;
|
||||
this.brightness.Location = new System.Drawing.Point(105, 78);
|
||||
this.brightness.Name = "brightness";
|
||||
this.brightness.Size = new System.Drawing.Size(72, 24);
|
||||
|
@ -196,6 +201,7 @@
|
|||
this.floorHeight.AllowRelative = false;
|
||||
this.floorHeight.ButtonStep = 16;
|
||||
this.floorHeight.ButtonStepFloat = 1F;
|
||||
this.floorHeight.ButtonStepsWrapAround = false;
|
||||
this.floorHeight.Location = new System.Drawing.Point(105, 48);
|
||||
this.floorHeight.Name = "floorHeight";
|
||||
this.floorHeight.Size = new System.Drawing.Size(72, 24);
|
||||
|
@ -232,6 +238,7 @@
|
|||
this.ceilHeight.AllowRelative = false;
|
||||
this.ceilHeight.ButtonStep = 16;
|
||||
this.ceilHeight.ButtonStepFloat = 1F;
|
||||
this.ceilHeight.ButtonStepsWrapAround = false;
|
||||
this.ceilHeight.Location = new System.Drawing.Point(105, 18);
|
||||
this.ceilHeight.Name = "ceilHeight";
|
||||
this.ceilHeight.Size = new System.Drawing.Size(72, 24);
|
||||
|
@ -264,11 +271,13 @@
|
|||
// bottom
|
||||
//
|
||||
this.bottom.Location = new System.Drawing.Point(168, 41);
|
||||
this.bottom.MultipleTextures = false;
|
||||
this.bottom.Name = "bottom";
|
||||
this.bottom.Required = false;
|
||||
this.bottom.Size = new System.Drawing.Size(68, 90);
|
||||
this.bottom.TabIndex = 25;
|
||||
this.bottom.TextureName = "";
|
||||
this.bottom.UsePreviews = true;
|
||||
this.bottom.OnValueChanged += new System.EventHandler(this.bottom_OnValueChanged);
|
||||
//
|
||||
// cbOverrideTopTexture
|
||||
|
@ -285,21 +294,25 @@
|
|||
// middle
|
||||
//
|
||||
this.middle.Location = new System.Drawing.Point(87, 41);
|
||||
this.middle.MultipleTextures = false;
|
||||
this.middle.Name = "middle";
|
||||
this.middle.Required = false;
|
||||
this.middle.Size = new System.Drawing.Size(68, 90);
|
||||
this.middle.TabIndex = 24;
|
||||
this.middle.TextureName = "";
|
||||
this.middle.UsePreviews = true;
|
||||
this.middle.OnValueChanged += new System.EventHandler(this.middle_OnValueChanged);
|
||||
//
|
||||
// top
|
||||
//
|
||||
this.top.Location = new System.Drawing.Point(6, 41);
|
||||
this.top.MultipleTextures = false;
|
||||
this.top.Name = "top";
|
||||
this.top.Required = false;
|
||||
this.top.Size = new System.Drawing.Size(68, 90);
|
||||
this.top.TabIndex = 23;
|
||||
this.top.TextureName = "";
|
||||
this.top.UsePreviews = true;
|
||||
this.top.OnValueChanged += new System.EventHandler(this.top_OnValueChanged);
|
||||
//
|
||||
// groupBox3
|
||||
|
@ -336,6 +349,17 @@
|
|||
this.groupBox4.TabStop = false;
|
||||
this.groupBox4.Text = "Fill Selection with Textures:";
|
||||
//
|
||||
// fillall
|
||||
//
|
||||
this.fillall.Location = new System.Drawing.Point(6, 19);
|
||||
this.fillall.Name = "fillall";
|
||||
this.fillall.Size = new System.Drawing.Size(32, 23);
|
||||
this.fillall.TabIndex = 5;
|
||||
this.fillall.Text = "All";
|
||||
this.toolTip1.SetToolTip(this.fillall, "Replace all textures with currently enabled overrides");
|
||||
this.fillall.UseVisualStyleBackColor = true;
|
||||
this.fillall.Click += new System.EventHandler(this.fillall_Click);
|
||||
//
|
||||
// filllower
|
||||
//
|
||||
this.filllower.Location = new System.Drawing.Point(171, 19);
|
||||
|
@ -447,6 +471,17 @@
|
|||
this.clearceiling.UseVisualStyleBackColor = true;
|
||||
this.clearceiling.Click += new System.EventHandler(this.clearceiling_Click);
|
||||
//
|
||||
// clearall
|
||||
//
|
||||
this.clearall.Location = new System.Drawing.Point(6, 19);
|
||||
this.clearall.Name = "clearall";
|
||||
this.clearall.Size = new System.Drawing.Size(32, 23);
|
||||
this.clearall.TabIndex = 6;
|
||||
this.clearall.Text = "All";
|
||||
this.toolTip1.SetToolTip(this.clearall, "Remove all textures from selected map elements");
|
||||
this.clearall.UseVisualStyleBackColor = true;
|
||||
this.clearall.Click += new System.EventHandler(this.clearall_Click);
|
||||
//
|
||||
// groupBox5
|
||||
//
|
||||
this.groupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
|
@ -464,32 +499,10 @@
|
|||
this.groupBox5.TabStop = false;
|
||||
this.groupBox5.Text = "Remove Textures form Selection:";
|
||||
//
|
||||
// fillall
|
||||
//
|
||||
this.fillall.Location = new System.Drawing.Point(6, 19);
|
||||
this.fillall.Name = "fillall";
|
||||
this.fillall.Size = new System.Drawing.Size(32, 23);
|
||||
this.fillall.TabIndex = 5;
|
||||
this.fillall.Text = "All";
|
||||
this.toolTip1.SetToolTip(this.fillall, "Replace all textures with currently enabled overrides");
|
||||
this.fillall.UseVisualStyleBackColor = true;
|
||||
this.fillall.Click += new System.EventHandler(this.fillall_Click);
|
||||
//
|
||||
// clearall
|
||||
//
|
||||
this.clearall.Location = new System.Drawing.Point(6, 19);
|
||||
this.clearall.Name = "clearall";
|
||||
this.clearall.Size = new System.Drawing.Size(32, 23);
|
||||
this.clearall.TabIndex = 6;
|
||||
this.clearall.Text = "All";
|
||||
this.toolTip1.SetToolTip(this.clearall, "Remove all textures from selected map elements");
|
||||
this.clearall.UseVisualStyleBackColor = true;
|
||||
this.clearall.Click += new System.EventHandler(this.clearall_Click);
|
||||
//
|
||||
// SectorDrawingOptionsPanel
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.groupBox5);
|
||||
this.Controls.Add(this.groupBox4);
|
||||
this.Controls.Add(this.groupBox3);
|
||||
|
|
|
@ -120,7 +120,4 @@
|
|||
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
</root>
|
|
@ -60,8 +60,8 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
//
|
||||
// UndoRedoPanel
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.list);
|
||||
this.Name = "UndoRedoPanel";
|
||||
this.Size = new System.Drawing.Size(390, 548);
|
||||
|
|
|
@ -84,10 +84,10 @@
|
|||
this.nudRed.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.nudRed.Location = new System.Drawing.Point(49, 4);
|
||||
this.nudRed.Maximum = new decimal(new int[] {
|
||||
255,
|
||||
0,
|
||||
0,
|
||||
0});
|
||||
255,
|
||||
0,
|
||||
0,
|
||||
0});
|
||||
this.nudRed.Name = "nudRed";
|
||||
this.nudRed.Size = new System.Drawing.Size(48, 20);
|
||||
this.nudRed.TabIndex = 55;
|
||||
|
@ -124,10 +124,10 @@
|
|||
this.nudBlue.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.nudBlue.Location = new System.Drawing.Point(49, 50);
|
||||
this.nudBlue.Maximum = new decimal(new int[] {
|
||||
255,
|
||||
0,
|
||||
0,
|
||||
0});
|
||||
255,
|
||||
0,
|
||||
0,
|
||||
0});
|
||||
this.nudBlue.Name = "nudBlue";
|
||||
this.nudBlue.Size = new System.Drawing.Size(48, 20);
|
||||
this.nudBlue.TabIndex = 57;
|
||||
|
@ -138,10 +138,10 @@
|
|||
this.nudGreen.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.nudGreen.Location = new System.Drawing.Point(49, 27);
|
||||
this.nudGreen.Maximum = new decimal(new int[] {
|
||||
255,
|
||||
0,
|
||||
0,
|
||||
0});
|
||||
255,
|
||||
0,
|
||||
0,
|
||||
0});
|
||||
this.nudGreen.Name = "nudGreen";
|
||||
this.nudGreen.Size = new System.Drawing.Size(48, 20);
|
||||
this.nudGreen.TabIndex = 56;
|
||||
|
@ -191,8 +191,8 @@
|
|||
//
|
||||
// ColorPickerControl
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.cbColorInfo);
|
||||
this.Controls.Add(this.pRGB);
|
||||
this.Controls.Add(this.tbFloatVals);
|
||||
|
|
|
@ -1,120 +1,120 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
|
@ -82,8 +82,8 @@
|
|||
//
|
||||
// ColorPickerSlider
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.labelMax);
|
||||
this.Controls.Add(this.labelMin);
|
||||
this.Controls.Add(this.numericUpDown1);
|
||||
|
|
|
@ -1,120 +1,120 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
|
@ -84,8 +84,8 @@
|
|||
//
|
||||
// ToolsForm
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.ClientSize = new System.Drawing.Size(284, 262);
|
||||
this.Controls.Add(this.toolStrip1);
|
||||
this.Controls.Add(this.menuStrip1);
|
||||
|
|
Loading…
Reference in a new issue