feat(configuration): add thumbnail snap range setting
This commit is contained in:
@@ -93,6 +93,7 @@ namespace EveOPreview.Configuration.Implementation {
|
|||||||
this.ThumbnailMaximumSize = new Size(960, 540);
|
this.ThumbnailMaximumSize = new Size(960, 540);
|
||||||
|
|
||||||
this.EnableThumbnailSnap = true;
|
this.EnableThumbnailSnap = true;
|
||||||
|
this.ThumbnailSnapRange = 20;
|
||||||
|
|
||||||
this.ThumbnailZoomEnabled = false;
|
this.ThumbnailZoomEnabled = false;
|
||||||
this.ThumbnailZoomFactor = 2;
|
this.ThumbnailZoomFactor = 2;
|
||||||
@@ -272,6 +273,7 @@ namespace EveOPreview.Configuration.Implementation {
|
|||||||
public Size ThumbnailMinimumSize { get; set; }
|
public Size ThumbnailMinimumSize { get; set; }
|
||||||
|
|
||||||
public bool EnableThumbnailSnap { get; set; }
|
public bool EnableThumbnailSnap { get; set; }
|
||||||
|
public int ThumbnailSnapRange { get; set; }
|
||||||
|
|
||||||
[JsonProperty("EnableThumbnailZoom")]
|
[JsonProperty("EnableThumbnailZoom")]
|
||||||
public bool ThumbnailZoomEnabled {
|
public bool ThumbnailZoomEnabled {
|
||||||
|
@@ -53,6 +53,7 @@ namespace EveOPreview.Configuration {
|
|||||||
Size ThumbnailMaximumSize { get; set; }
|
Size ThumbnailMaximumSize { get; set; }
|
||||||
|
|
||||||
bool EnableThumbnailSnap { get; set; }
|
bool EnableThumbnailSnap { get; set; }
|
||||||
|
int ThumbnailSnapRange { get; set; }
|
||||||
|
|
||||||
bool ThumbnailZoomEnabled { get; set; }
|
bool ThumbnailZoomEnabled { get; set; }
|
||||||
int ThumbnailZoomFactor { get; set; }
|
int ThumbnailZoomFactor { get; set; }
|
||||||
|
@@ -120,6 +120,7 @@ namespace EveOPreview.Presenters {
|
|||||||
this.View.ThumbnailSnapToGrid = this._configuration.ThumbnailSnapToGrid;
|
this.View.ThumbnailSnapToGrid = this._configuration.ThumbnailSnapToGrid;
|
||||||
this.View.ThumbnailSnapToGridSizeX = this._configuration.ThumbnailSnapToGridSizeX;
|
this.View.ThumbnailSnapToGridSizeX = this._configuration.ThumbnailSnapToGridSizeX;
|
||||||
this.View.ThumbnailSnapToGridSizeY = this._configuration.ThumbnailSnapToGridSizeY;
|
this.View.ThumbnailSnapToGridSizeY = this._configuration.ThumbnailSnapToGridSizeY;
|
||||||
|
this.View.ThumbnailSnapRange = this._configuration.ThumbnailSnapRange;
|
||||||
this.View.EnableActiveClientHighlight = this._configuration.EnableActiveClientHighlight;
|
this.View.EnableActiveClientHighlight = this._configuration.EnableActiveClientHighlight;
|
||||||
this.View.ActiveClientHighlightColor = this._configuration.ActiveClientHighlightColor;
|
this.View.ActiveClientHighlightColor = this._configuration.ActiveClientHighlightColor;
|
||||||
|
|
||||||
@@ -166,6 +167,7 @@ namespace EveOPreview.Presenters {
|
|||||||
this._configuration.ThumbnailSnapToGrid = this.View.ThumbnailSnapToGrid;
|
this._configuration.ThumbnailSnapToGrid = this.View.ThumbnailSnapToGrid;
|
||||||
this._configuration.ThumbnailSnapToGridSizeX = this.View.ThumbnailSnapToGridSizeX;
|
this._configuration.ThumbnailSnapToGridSizeX = this.View.ThumbnailSnapToGridSizeX;
|
||||||
this._configuration.ThumbnailSnapToGridSizeY = this.View.ThumbnailSnapToGridSizeY;
|
this._configuration.ThumbnailSnapToGridSizeY = this.View.ThumbnailSnapToGridSizeY;
|
||||||
|
this._configuration.ThumbnailSnapRange = this.View.ThumbnailSnapRange;
|
||||||
|
|
||||||
this._configuration.EnableActiveClientHighlight = this.View.EnableActiveClientHighlight;
|
this._configuration.EnableActiveClientHighlight = this.View.EnableActiveClientHighlight;
|
||||||
this._configuration.ActiveClientHighlightColor = this.View.ActiveClientHighlightColor;
|
this._configuration.ActiveClientHighlightColor = this.View.ActiveClientHighlightColor;
|
||||||
|
120
src/Eve-O-Preview/View/Implementation/InputDialog.resx
Normal file
120
src/Eve-O-Preview/View/Implementation/InputDialog.resx
Normal file
@@ -0,0 +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.
|
||||||
|
|
||||||
|
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:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
@@ -120,6 +120,8 @@ namespace EveOPreview.View {
|
|||||||
SaveProfileButton = new Button();
|
SaveProfileButton = new Button();
|
||||||
DeleteProfileButton = new Button();
|
DeleteProfileButton = new Button();
|
||||||
ProfileLabel = new Label();
|
ProfileLabel = new Label();
|
||||||
|
ThumbnailSnapRangeLabel = new Label();
|
||||||
|
ThumbnailSnapRangeNumericEdit = new NumericUpDown();
|
||||||
ThumbnailsList = new CheckedListBox();
|
ThumbnailsList = new CheckedListBox();
|
||||||
VersionLabel = new Label();
|
VersionLabel = new Label();
|
||||||
DocumentationLink = new LinkLabel();
|
DocumentationLink = new LinkLabel();
|
||||||
@@ -159,6 +161,7 @@ namespace EveOPreview.View {
|
|||||||
ThumbnailSettingsPanel.SuspendLayout();
|
ThumbnailSettingsPanel.SuspendLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)ThumbnailSnapToGridSizeYNumericEdit).BeginInit();
|
((System.ComponentModel.ISupportInitialize)ThumbnailSnapToGridSizeYNumericEdit).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)ThumbnailSnapToGridSizeXNumericEdit).BeginInit();
|
((System.ComponentModel.ISupportInitialize)ThumbnailSnapToGridSizeXNumericEdit).BeginInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)ThumbnailSnapRangeNumericEdit).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)ThumbnailsWidthNumericEdit).BeginInit();
|
((System.ComponentModel.ISupportInitialize)ThumbnailsWidthNumericEdit).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)ThumbnailsHeightNumericEdit).BeginInit();
|
((System.ComponentModel.ISupportInitialize)ThumbnailsHeightNumericEdit).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)ThumbnailOpacityTrackBar).BeginInit();
|
((System.ComponentModel.ISupportInitialize)ThumbnailOpacityTrackBar).BeginInit();
|
||||||
@@ -400,6 +403,8 @@ namespace EveOPreview.View {
|
|||||||
ThumbnailSettingsPanel.Controls.Add(ProfileComboBox);
|
ThumbnailSettingsPanel.Controls.Add(ProfileComboBox);
|
||||||
ThumbnailSettingsPanel.Controls.Add(SaveProfileButton);
|
ThumbnailSettingsPanel.Controls.Add(SaveProfileButton);
|
||||||
ThumbnailSettingsPanel.Controls.Add(DeleteProfileButton);
|
ThumbnailSettingsPanel.Controls.Add(DeleteProfileButton);
|
||||||
|
ThumbnailSettingsPanel.Controls.Add(ThumbnailSnapRangeLabel);
|
||||||
|
ThumbnailSettingsPanel.Controls.Add(ThumbnailSnapRangeNumericEdit);
|
||||||
ThumbnailSettingsPanel.Controls.Add(ThumbnailSnapToGridCheckBox);
|
ThumbnailSettingsPanel.Controls.Add(ThumbnailSnapToGridCheckBox);
|
||||||
ThumbnailSettingsPanel.Controls.Add(ThumbnailSnapToGridSizeYNumericEdit);
|
ThumbnailSettingsPanel.Controls.Add(ThumbnailSnapToGridSizeYNumericEdit);
|
||||||
ThumbnailSettingsPanel.Controls.Add(SnapYLabel);
|
ThumbnailSettingsPanel.Controls.Add(SnapYLabel);
|
||||||
@@ -422,7 +427,7 @@ namespace EveOPreview.View {
|
|||||||
// EnableThumbnailRegionSnippingCheckBox
|
// EnableThumbnailRegionSnippingCheckBox
|
||||||
//
|
//
|
||||||
EnableThumbnailRegionSnippingCheckBox.AutoSize = true;
|
EnableThumbnailRegionSnippingCheckBox.AutoSize = true;
|
||||||
EnableThumbnailRegionSnippingCheckBox.Location = new Point(18, 270);
|
EnableThumbnailRegionSnippingCheckBox.Location = new Point(18, 310);
|
||||||
EnableThumbnailRegionSnippingCheckBox.Margin = new Padding(5, 6, 5, 6);
|
EnableThumbnailRegionSnippingCheckBox.Margin = new Padding(5, 6, 5, 6);
|
||||||
EnableThumbnailRegionSnippingCheckBox.Name = "EnableThumbnailRegionSnippingCheckBox";
|
EnableThumbnailRegionSnippingCheckBox.Name = "EnableThumbnailRegionSnippingCheckBox";
|
||||||
EnableThumbnailRegionSnippingCheckBox.Size = new Size(280, 29);
|
EnableThumbnailRegionSnippingCheckBox.Size = new Size(280, 29);
|
||||||
@@ -434,7 +439,7 @@ namespace EveOPreview.View {
|
|||||||
// RegionLeftLabel
|
// RegionLeftLabel
|
||||||
//
|
//
|
||||||
RegionLeftLabel.AutoSize = true;
|
RegionLeftLabel.AutoSize = true;
|
||||||
RegionLeftLabel.Location = new Point(13, 310);
|
RegionLeftLabel.Location = new Point(13, 350);
|
||||||
RegionLeftLabel.Margin = new Padding(5, 0, 5, 0);
|
RegionLeftLabel.Margin = new Padding(5, 0, 5, 0);
|
||||||
RegionLeftLabel.Name = "RegionLeftLabel";
|
RegionLeftLabel.Name = "RegionLeftLabel";
|
||||||
RegionLeftLabel.Size = new Size(45, 25);
|
RegionLeftLabel.Size = new Size(45, 25);
|
||||||
@@ -447,7 +452,7 @@ namespace EveOPreview.View {
|
|||||||
RegionLeftNumericEdit.BorderStyle = BorderStyle.FixedSingle;
|
RegionLeftNumericEdit.BorderStyle = BorderStyle.FixedSingle;
|
||||||
RegionLeftNumericEdit.CausesValidation = false;
|
RegionLeftNumericEdit.CausesValidation = false;
|
||||||
RegionLeftNumericEdit.Increment = new decimal(new int[] { 10, 0, 0, 0 });
|
RegionLeftNumericEdit.Increment = new decimal(new int[] { 10, 0, 0, 0 });
|
||||||
RegionLeftNumericEdit.Location = new Point(93, 305);
|
RegionLeftNumericEdit.Location = new Point(93, 345);
|
||||||
RegionLeftNumericEdit.Margin = new Padding(5, 6, 5, 6);
|
RegionLeftNumericEdit.Margin = new Padding(5, 6, 5, 6);
|
||||||
RegionLeftNumericEdit.Maximum = new decimal(new int[] { 999999, 0, 0, 0 });
|
RegionLeftNumericEdit.Maximum = new decimal(new int[] { 999999, 0, 0, 0 });
|
||||||
RegionLeftNumericEdit.Name = "RegionLeftNumericEdit";
|
RegionLeftNumericEdit.Name = "RegionLeftNumericEdit";
|
||||||
@@ -458,7 +463,7 @@ namespace EveOPreview.View {
|
|||||||
// RegionTopLabel
|
// RegionTopLabel
|
||||||
//
|
//
|
||||||
RegionTopLabel.AutoSize = true;
|
RegionTopLabel.AutoSize = true;
|
||||||
RegionTopLabel.Location = new Point(183, 310);
|
RegionTopLabel.Location = new Point(183, 350);
|
||||||
RegionTopLabel.Margin = new Padding(5, 0, 5, 0);
|
RegionTopLabel.Margin = new Padding(5, 0, 5, 0);
|
||||||
RegionTopLabel.Name = "RegionTopLabel";
|
RegionTopLabel.Name = "RegionTopLabel";
|
||||||
RegionTopLabel.Size = new Size(42, 25);
|
RegionTopLabel.Size = new Size(42, 25);
|
||||||
@@ -471,7 +476,7 @@ namespace EveOPreview.View {
|
|||||||
RegionTopNumericEdit.BorderStyle = BorderStyle.FixedSingle;
|
RegionTopNumericEdit.BorderStyle = BorderStyle.FixedSingle;
|
||||||
RegionTopNumericEdit.CausesValidation = false;
|
RegionTopNumericEdit.CausesValidation = false;
|
||||||
RegionTopNumericEdit.Increment = new decimal(new int[] { 10, 0, 0, 0 });
|
RegionTopNumericEdit.Increment = new decimal(new int[] { 10, 0, 0, 0 });
|
||||||
RegionTopNumericEdit.Location = new Point(230, 307);
|
RegionTopNumericEdit.Location = new Point(240, 347);
|
||||||
RegionTopNumericEdit.Margin = new Padding(5, 6, 5, 6);
|
RegionTopNumericEdit.Margin = new Padding(5, 6, 5, 6);
|
||||||
RegionTopNumericEdit.Maximum = new decimal(new int[] { 999999, 0, 0, 0 });
|
RegionTopNumericEdit.Maximum = new decimal(new int[] { 999999, 0, 0, 0 });
|
||||||
RegionTopNumericEdit.Name = "RegionTopNumericEdit";
|
RegionTopNumericEdit.Name = "RegionTopNumericEdit";
|
||||||
@@ -482,7 +487,7 @@ namespace EveOPreview.View {
|
|||||||
// RegionWidthLabel
|
// RegionWidthLabel
|
||||||
//
|
//
|
||||||
RegionWidthLabel.AutoSize = true;
|
RegionWidthLabel.AutoSize = true;
|
||||||
RegionWidthLabel.Location = new Point(13, 350);
|
RegionWidthLabel.Location = new Point(13, 390);
|
||||||
RegionWidthLabel.Margin = new Padding(5, 0, 5, 0);
|
RegionWidthLabel.Margin = new Padding(5, 0, 5, 0);
|
||||||
RegionWidthLabel.Name = "RegionWidthLabel";
|
RegionWidthLabel.Name = "RegionWidthLabel";
|
||||||
RegionWidthLabel.Size = new Size(65, 25);
|
RegionWidthLabel.Size = new Size(65, 25);
|
||||||
@@ -495,7 +500,7 @@ namespace EveOPreview.View {
|
|||||||
RegionWidthNumericEdit.BorderStyle = BorderStyle.FixedSingle;
|
RegionWidthNumericEdit.BorderStyle = BorderStyle.FixedSingle;
|
||||||
RegionWidthNumericEdit.CausesValidation = false;
|
RegionWidthNumericEdit.CausesValidation = false;
|
||||||
RegionWidthNumericEdit.Increment = new decimal(new int[] { 10, 0, 0, 0 });
|
RegionWidthNumericEdit.Increment = new decimal(new int[] { 10, 0, 0, 0 });
|
||||||
RegionWidthNumericEdit.Location = new Point(93, 345);
|
RegionWidthNumericEdit.Location = new Point(93, 385);
|
||||||
RegionWidthNumericEdit.Margin = new Padding(5, 6, 5, 6);
|
RegionWidthNumericEdit.Margin = new Padding(5, 6, 5, 6);
|
||||||
RegionWidthNumericEdit.Maximum = new decimal(new int[] { 999999, 0, 0, 0 });
|
RegionWidthNumericEdit.Maximum = new decimal(new int[] { 999999, 0, 0, 0 });
|
||||||
RegionWidthNumericEdit.Name = "RegionWidthNumericEdit";
|
RegionWidthNumericEdit.Name = "RegionWidthNumericEdit";
|
||||||
@@ -506,7 +511,7 @@ namespace EveOPreview.View {
|
|||||||
// RegionHeightLabel
|
// RegionHeightLabel
|
||||||
//
|
//
|
||||||
RegionHeightLabel.AutoSize = true;
|
RegionHeightLabel.AutoSize = true;
|
||||||
RegionHeightLabel.Location = new Point(183, 350);
|
RegionHeightLabel.Location = new Point(183, 390);
|
||||||
RegionHeightLabel.Margin = new Padding(5, 0, 5, 0);
|
RegionHeightLabel.Margin = new Padding(5, 0, 5, 0);
|
||||||
RegionHeightLabel.Name = "RegionHeightLabel";
|
RegionHeightLabel.Name = "RegionHeightLabel";
|
||||||
RegionHeightLabel.Size = new Size(70, 25);
|
RegionHeightLabel.Size = new Size(70, 25);
|
||||||
@@ -519,7 +524,7 @@ namespace EveOPreview.View {
|
|||||||
RegionHeightNumericEdit.BorderStyle = BorderStyle.FixedSingle;
|
RegionHeightNumericEdit.BorderStyle = BorderStyle.FixedSingle;
|
||||||
RegionHeightNumericEdit.CausesValidation = false;
|
RegionHeightNumericEdit.CausesValidation = false;
|
||||||
RegionHeightNumericEdit.Increment = new decimal(new int[] { 10, 0, 0, 0 });
|
RegionHeightNumericEdit.Increment = new decimal(new int[] { 10, 0, 0, 0 });
|
||||||
RegionHeightNumericEdit.Location = new Point(230, 347);
|
RegionHeightNumericEdit.Location = new Point(240, 387);
|
||||||
RegionHeightNumericEdit.Margin = new Padding(5, 6, 5, 6);
|
RegionHeightNumericEdit.Margin = new Padding(5, 6, 5, 6);
|
||||||
RegionHeightNumericEdit.Maximum = new decimal(new int[] { 999999, 0, 0, 0 });
|
RegionHeightNumericEdit.Maximum = new decimal(new int[] { 999999, 0, 0, 0 });
|
||||||
RegionHeightNumericEdit.Name = "RegionHeightNumericEdit";
|
RegionHeightNumericEdit.Name = "RegionHeightNumericEdit";
|
||||||
@@ -529,7 +534,7 @@ namespace EveOPreview.View {
|
|||||||
//
|
//
|
||||||
// PickRegionButton
|
// PickRegionButton
|
||||||
//
|
//
|
||||||
PickRegionButton.Location = new Point(330, 305);
|
PickRegionButton.Location = new Point(93, 425);
|
||||||
PickRegionButton.Margin = new Padding(5, 6, 5, 6);
|
PickRegionButton.Margin = new Padding(5, 6, 5, 6);
|
||||||
PickRegionButton.Name = "PickRegionButton";
|
PickRegionButton.Name = "PickRegionButton";
|
||||||
PickRegionButton.Size = new Size(120, 35);
|
PickRegionButton.Size = new Size(120, 35);
|
||||||
@@ -642,6 +647,32 @@ namespace EveOPreview.View {
|
|||||||
SnapXLabel.TabIndex = 28;
|
SnapXLabel.TabIndex = 28;
|
||||||
SnapXLabel.Text = "Snap X";
|
SnapXLabel.Text = "Snap X";
|
||||||
//
|
//
|
||||||
|
// ThumbnailSnapRangeLabel
|
||||||
|
//
|
||||||
|
ThumbnailSnapRangeLabel.AutoSize = true;
|
||||||
|
ThumbnailSnapRangeLabel.Location = new Point(13, 270);
|
||||||
|
ThumbnailSnapRangeLabel.Margin = new Padding(5, 0, 5, 0);
|
||||||
|
ThumbnailSnapRangeLabel.Name = "ThumbnailSnapRangeLabel";
|
||||||
|
ThumbnailSnapRangeLabel.Size = new Size(120, 25);
|
||||||
|
ThumbnailSnapRangeLabel.TabIndex = 54;
|
||||||
|
ThumbnailSnapRangeLabel.Text = "Snap Range";
|
||||||
|
//
|
||||||
|
// ThumbnailSnapRangeNumericEdit
|
||||||
|
//
|
||||||
|
ThumbnailSnapRangeNumericEdit.BackColor = SystemColors.Window;
|
||||||
|
ThumbnailSnapRangeNumericEdit.BorderStyle = BorderStyle.FixedSingle;
|
||||||
|
ThumbnailSnapRangeNumericEdit.CausesValidation = false;
|
||||||
|
ThumbnailSnapRangeNumericEdit.Increment = new decimal(new int[] { 5, 0, 0, 0 });
|
||||||
|
ThumbnailSnapRangeNumericEdit.Location = new Point(93, 265);
|
||||||
|
ThumbnailSnapRangeNumericEdit.Margin = new Padding(5, 6, 5, 6);
|
||||||
|
ThumbnailSnapRangeNumericEdit.Maximum = new decimal(new int[] { 100, 0, 0, 0 });
|
||||||
|
ThumbnailSnapRangeNumericEdit.Minimum = new decimal(new int[] { 1, 0, 0, 0 });
|
||||||
|
ThumbnailSnapRangeNumericEdit.Name = "ThumbnailSnapRangeNumericEdit";
|
||||||
|
ThumbnailSnapRangeNumericEdit.Size = new Size(80, 31);
|
||||||
|
ThumbnailSnapRangeNumericEdit.TabIndex = 55;
|
||||||
|
ThumbnailSnapRangeNumericEdit.Value = new decimal(new int[] { 20, 0, 0, 0 });
|
||||||
|
ThumbnailSnapRangeNumericEdit.ValueChanged += OptionChanged_Handler;
|
||||||
|
//
|
||||||
// LockThumbnailLocationCheckbox
|
// LockThumbnailLocationCheckbox
|
||||||
//
|
//
|
||||||
LockThumbnailLocationCheckbox.AutoSize = true;
|
LockThumbnailLocationCheckbox.AutoSize = true;
|
||||||
@@ -1393,6 +1424,7 @@ namespace EveOPreview.View {
|
|||||||
ThumbnailSettingsPanel.ResumeLayout(false);
|
ThumbnailSettingsPanel.ResumeLayout(false);
|
||||||
ThumbnailSettingsPanel.PerformLayout();
|
ThumbnailSettingsPanel.PerformLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)ThumbnailSnapToGridSizeYNumericEdit).EndInit();
|
((System.ComponentModel.ISupportInitialize)ThumbnailSnapToGridSizeYNumericEdit).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)ThumbnailSnapRangeNumericEdit).EndInit();
|
||||||
((System.ComponentModel.ISupportInitialize)ThumbnailSnapToGridSizeXNumericEdit).EndInit();
|
((System.ComponentModel.ISupportInitialize)ThumbnailSnapToGridSizeXNumericEdit).EndInit();
|
||||||
((System.ComponentModel.ISupportInitialize)ThumbnailsWidthNumericEdit).EndInit();
|
((System.ComponentModel.ISupportInitialize)ThumbnailsWidthNumericEdit).EndInit();
|
||||||
((System.ComponentModel.ISupportInitialize)ThumbnailsHeightNumericEdit).EndInit();
|
((System.ComponentModel.ISupportInitialize)ThumbnailsHeightNumericEdit).EndInit();
|
||||||
@@ -1473,6 +1505,8 @@ namespace EveOPreview.View {
|
|||||||
private Button SaveProfileButton;
|
private Button SaveProfileButton;
|
||||||
private Button DeleteProfileButton;
|
private Button DeleteProfileButton;
|
||||||
private Label ProfileLabel;
|
private Label ProfileLabel;
|
||||||
|
private Label ThumbnailSnapRangeLabel;
|
||||||
|
private NumericUpDown ThumbnailSnapRangeNumericEdit;
|
||||||
private Label label3;
|
private Label label3;
|
||||||
private Label label2;
|
private Label label2;
|
||||||
private Panel OverlayLabelColorButton;
|
private Panel OverlayLabelColorButton;
|
||||||
|
@@ -220,6 +220,11 @@ namespace EveOPreview.View {
|
|||||||
set => ThumbnailSnapToGridSizeYNumericEdit.Value = value;
|
set => ThumbnailSnapToGridSizeYNumericEdit.Value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int ThumbnailSnapRange {
|
||||||
|
get => (int)ThumbnailSnapRangeNumericEdit.Value;
|
||||||
|
set => ThumbnailSnapRangeNumericEdit.Value = value;
|
||||||
|
}
|
||||||
|
|
||||||
public bool EnableActiveClientHighlight {
|
public bool EnableActiveClientHighlight {
|
||||||
get => this.EnableActiveClientHighlightCheckBox.Checked;
|
get => this.EnableActiveClientHighlightCheckBox.Checked;
|
||||||
set => this.EnableActiveClientHighlightCheckBox.Checked = value;
|
set => this.EnableActiveClientHighlightCheckBox.Checked = value;
|
||||||
|
120
src/Eve-O-Preview/View/Implementation/StaticThumbnailView.resx
Normal file
120
src/Eve-O-Preview/View/Implementation/StaticThumbnailView.resx
Normal file
@@ -0,0 +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.
|
||||||
|
|
||||||
|
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:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
@@ -34,6 +34,7 @@ namespace EveOPreview.View {
|
|||||||
bool ThumbnailSnapToGrid { get; set; }
|
bool ThumbnailSnapToGrid { get; set; }
|
||||||
int ThumbnailSnapToGridSizeX { get; set; }
|
int ThumbnailSnapToGridSizeX { get; set; }
|
||||||
int ThumbnailSnapToGridSizeY { get; set; }
|
int ThumbnailSnapToGridSizeY { get; set; }
|
||||||
|
int ThumbnailSnapRange { get; set; }
|
||||||
|
|
||||||
bool EnableActiveClientHighlight { get; set; }
|
bool EnableActiveClientHighlight { get; set; }
|
||||||
Color ActiveClientHighlightColor { get; set; }
|
Color ActiveClientHighlightColor { get; set; }
|
||||||
|
Reference in New Issue
Block a user