diff --git a/src/LightningGauges/LightningGauges/LightningGauges.csproj b/src/LightningGauges/LightningGauges/LightningGauges.csproj
index 0ee98e05..be1a50db 100644
--- a/src/LightningGauges/LightningGauges/LightningGauges.csproj
+++ b/src/LightningGauges/LightningGauges/LightningGauges.csproj
@@ -224,6 +224,7 @@
Designer
+
Always
diff --git a/src/LightningGauges/LightningGauges/Renderers/F16/Tachometer.cs b/src/LightningGauges/LightningGauges/Renderers/F16/Tachometer.cs
index 1c7825b7..fc4295ab 100644
--- a/src/LightningGauges/LightningGauges/Renderers/F16/Tachometer.cs
+++ b/src/LightningGauges/LightningGauges/Renderers/F16/Tachometer.cs
@@ -16,13 +16,15 @@ public class Tachometer : InstrumentRendererBase, ITachometer
{
private const string RPM_BACKGROUND_IMAGE_FILENAME = "rpm.bmp";
private const string RPM_BACKGROUND2_IMAGE_FILENAME = "rpm2.bmp";
+ private const string RPM_BACKGROUND100_IMAGE_FILENAME = "rpm100.bmp";
private const string RPM_NEEDLE_IMAGE_FILENAME = "arrow_rpm.bmp";
private const string RPM_NEEDLE_MASK_FILENAME = "arrow_rpmmask.bmp";
- private static readonly string IMAGES_FOLDER_NAME = "images";
+ private static readonly string IMAGES_FOLDER_NAME = "images";
private static Bitmap _background;
+ private static Bitmap _backgroundPW;
private static Bitmap _background2;
private static ImageMaskPair _needle;
private static readonly object _imagesLock = new object();
@@ -39,8 +41,10 @@ private static void LoadImageResources()
{
lock (_imagesLock)
{
- if (_background == null) _background = (Bitmap) ResourceUtil.LoadBitmapFromEmbeddedResource(IMAGES_FOLDER_NAME + Path.DirectorySeparatorChar + RPM_BACKGROUND_IMAGE_FILENAME);
- if (_background2 == null) _background2 = (Bitmap) ResourceUtil.LoadBitmapFromEmbeddedResource(IMAGES_FOLDER_NAME + Path.DirectorySeparatorChar + RPM_BACKGROUND2_IMAGE_FILENAME);
+
+ if (_background == null) _background = (Bitmap)ResourceUtil.LoadBitmapFromEmbeddedResource(IMAGES_FOLDER_NAME + Path.DirectorySeparatorChar + RPM_BACKGROUND_IMAGE_FILENAME);
+ if (_backgroundPW == null) _backgroundPW = (Bitmap)ResourceUtil.LoadBitmapFromEmbeddedResource(IMAGES_FOLDER_NAME + Path.DirectorySeparatorChar + RPM_BACKGROUND100_IMAGE_FILENAME);
+ if (_background2 == null) _background2 = (Bitmap)ResourceUtil.LoadBitmapFromEmbeddedResource(IMAGES_FOLDER_NAME + Path.DirectorySeparatorChar + RPM_BACKGROUND2_IMAGE_FILENAME);
if (_needle == null)
{
_needle = ResourceUtil.CreateImageMaskPairFromEmbeddedResources(
@@ -69,7 +73,7 @@ public float RPMPercent
var pct = value;
if (float.IsInfinity(pct) || float.IsNaN(pct)) pct = 0;
if (pct < 0) pct = 0;
- if (pct > 110) pct = 110;
+ if (pct > 100) pct = 100;
_rpmPercent = pct;
}
}
@@ -78,6 +82,12 @@ public float RPMPercent
public class TachometerOptions
{
public bool IsSecondary { get; set; }
+ public enum TachometerEngineType
+ {
+ PWEngine,
+ GEEngine
+ }
+ public TachometerEngineType EngineType { get; set; }
}
public override void Render(Graphics destinationGraphics, Rectangle destinationRectangle)
@@ -94,7 +104,7 @@ public override void Render(Graphics destinationGraphics, Rectangle destinationR
destinationGraphics.ResetTransform(); //clear any existing transforms
destinationGraphics.SetClip(destinationRectangle); //set the clipping region on the graphics object to our render rectangle's boundaries
destinationGraphics.FillRectangle(Brushes.Black, destinationRectangle);
- destinationGraphics.ScaleTransform(destinationRectangle.Width / (float) width, destinationRectangle.Height / (float) height);
+ destinationGraphics.ScaleTransform(destinationRectangle.Width / (float)width, destinationRectangle.Height / (float)height);
//set the initial scale transformation
destinationGraphics.TranslateTransform(-39, -39);
//save the basic canvas transform and clip settings so we can revert to them later, as needed
@@ -109,18 +119,34 @@ public override void Render(Graphics destinationGraphics, Rectangle destinationR
}
else
{
- destinationGraphics.DrawImageFast(
- _background, new Rectangle(0, 0, _background.Width, _background.Height), new Rectangle(0, 0, _background.Width, _background.Height), GraphicsUnit.Pixel);
+ if (Options.EngineType == TachometerOptions.TachometerEngineType.GEEngine)
+ {
+ destinationGraphics.DrawImageFast(
+ _background, new Rectangle(0, 0, _background.Width, _background.Height), new Rectangle(0, 0, _background.Width, _background.Height), GraphicsUnit.Pixel);
+ }
+ else if (Options.EngineType == TachometerOptions.TachometerEngineType.PWEngine)
+ {
+ destinationGraphics.DrawImageFast(
+ _backgroundPW, new Rectangle(0, 0, _backgroundPW.Width, _backgroundPW.Height), new Rectangle(0, 0, _backgroundPW.Width, _backgroundPW.Height), GraphicsUnit.Pixel);
+ }
+
}
GraphicsUtil.RestoreGraphicsState(destinationGraphics, ref basicState);
//draw the needle
GraphicsUtil.RestoreGraphicsState(destinationGraphics, ref basicState);
- var angle = GetAngle(InstrumentState.RPMPercent);
-
+ var angle = 0f;
+ if (Options.EngineType == TachometerOptions.TachometerEngineType.GEEngine)
+ {
+ angle= GetAngle(InstrumentState.RPMPercent);
+ }
+ else if (Options.EngineType == TachometerOptions.TachometerEngineType.PWEngine)
+ {
+ angle = GetAnglePW(InstrumentState.RPMPercent);
+ }
destinationGraphics.TranslateTransform(_background.Width / 2.0f, _background.Width / 2.0f);
destinationGraphics.RotateTransform(angle);
- destinationGraphics.TranslateTransform(-(float) _background.Width / 2.0f, -(float) _background.Width / 2.0f);
+ destinationGraphics.TranslateTransform(-(float)_background.Width / 2.0f, -(float)_background.Width / 2.0f);
destinationGraphics.DrawImageFast(_needle.MaskedImage, new Point(0, 0));
GraphicsUtil.RestoreGraphicsState(destinationGraphics, ref basicState);
@@ -142,5 +168,19 @@ private static float GetAngle(float RPMPercent)
}
return angle;
}
+
+ private static float GetAnglePW(float RPMPercent)
+ {
+ float angle = 0;
+ if (RPMPercent >= 0.0f && RPMPercent <= 60.0f)
+ {
+ angle = 1.9f * RPMPercent; //1.7 degrees per of space per 1 percent of readout
+ }
+ else if (RPMPercent >= 60.0f)
+ {
+ angle = 118.5f + (RPMPercent - 60.0f) * 5.3f; //4.7 degrees of space for 1 percent of readout
+ }
+ return angle;
+ }
}
}
\ No newline at end of file
diff --git a/src/LightningGauges/LightningGauges/images/rpm100.bmp b/src/LightningGauges/LightningGauges/images/rpm100.bmp
new file mode 100644
index 00000000..b002019c
Binary files /dev/null and b/src/LightningGauges/LightningGauges/images/rpm100.bmp differ
diff --git a/src/MFDExtractor/MFDExtractor/FlightDataAdapters/AzimuthIndicatorFlightDataAdapter.cs b/src/MFDExtractor/MFDExtractor/FlightDataAdapters/AzimuthIndicatorFlightDataAdapter.cs
index 8f2df805..fb28971c 100644
--- a/src/MFDExtractor/MFDExtractor/FlightDataAdapters/AzimuthIndicatorFlightDataAdapter.cs
+++ b/src/MFDExtractor/MFDExtractor/FlightDataAdapters/AzimuthIndicatorFlightDataAdapter.cs
@@ -15,7 +15,7 @@ class AzimuthIndicatorFlightDataAdapter : IAzimuthIndicatorFlightDataAdapter
{
public void Adapt(IAzimuthIndicator azimuthIndicator, FlightData flightData)
{
- azimuthIndicator.InstrumentState.MagneticHeadingDegrees = (360 + (flightData.yaw / Common.Math.Constants.RADIANS_PER_DEGREE)) % 360;
+ azimuthIndicator.InstrumentState.MagneticHeadingDegrees = flightData.currentHeading;
azimuthIndicator.InstrumentState.RollDegrees = ((flightData.roll / Common.Math.Constants.RADIANS_PER_DEGREE));
var rwrObjectCount = flightData.RwrObjectCount;
if (flightData.RWRsymbol != null)
diff --git a/src/MFDExtractor/MFDExtractor/FlightDataAdapters/CompassFlightDataAdapter.cs b/src/MFDExtractor/MFDExtractor/FlightDataAdapters/CompassFlightDataAdapter.cs
index 53ef1e44..c0ce372c 100644
--- a/src/MFDExtractor/MFDExtractor/FlightDataAdapters/CompassFlightDataAdapter.cs
+++ b/src/MFDExtractor/MFDExtractor/FlightDataAdapters/CompassFlightDataAdapter.cs
@@ -14,7 +14,7 @@ class CompassFlightDataAdapter : ICompassFlightDataAdapter
{
public void Adapt(ICompass compass, FlightData flightData)
{
- compass.InstrumentState.MagneticHeadingDegrees = (360 + (flightData.yaw / Constants.RADIANS_PER_DEGREE)) % 360;
+ compass.InstrumentState.MagneticHeadingDegrees = flightData.currentHeading;
}
}
}
diff --git a/src/MFDExtractor/MFDExtractor/FlightDataAdapters/ISISFlightDataAdapter.cs b/src/MFDExtractor/MFDExtractor/FlightDataAdapters/ISISFlightDataAdapter.cs
index 9d56599a..91115bb9 100644
--- a/src/MFDExtractor/MFDExtractor/FlightDataAdapters/ISISFlightDataAdapter.cs
+++ b/src/MFDExtractor/MFDExtractor/FlightDataAdapters/ISISFlightDataAdapter.cs
@@ -26,7 +26,7 @@ public void Adapt(IISIS isis, FlightData flightData)
isis.InstrumentState.RadarAltitudeAGL = -flightData.RALT;
isis.InstrumentState.RadarAltitudeValid = (flightData.miscBits & (uint)MiscBits.RALT_Valid) == (uint)MiscBits.RALT_Valid;
isis.InstrumentState.MachNumber = flightData.mach;
- isis.InstrumentState.MagneticHeadingDegrees = (360 +(flightData.yaw/Common.Math.Constants.RADIANS_PER_DEGREE))%360;
+ isis.InstrumentState.MagneticHeadingDegrees = flightData.currentHeading;
isis.InstrumentState.NeverExceedSpeedKnots = 850;
isis.InstrumentState.PitchDegrees = ((flightData.pitch/Common.Math.Constants.RADIANS_PER_DEGREE));
isis.InstrumentState.RollDegrees = ((flightData.roll/Common.Math.Constants.RADIANS_PER_DEGREE));
diff --git a/src/MFDExtractor/MFDExtractor/FlightDataUpdater.cs b/src/MFDExtractor/MFDExtractor/FlightDataUpdater.cs
index 658e2c2f..f3f084cb 100644
--- a/src/MFDExtractor/MFDExtractor/FlightDataUpdater.cs
+++ b/src/MFDExtractor/MFDExtractor/FlightDataUpdater.cs
@@ -384,10 +384,10 @@ private static void UpdateEHSI(Action updateEHSIBrightnessLabelVisibility)
private static void UpdateHSI(IHorizontalSituationIndicator hsi, IEHSI ehsi, HsiBits hsibits, FlightData fromFalcon)
{
hsi.InstrumentState.OffFlag = ((hsibits & HsiBits.HSI_OFF) == HsiBits.HSI_OFF) && !Extractor.State.OptionsFormIsShowing;
- hsi.InstrumentState.MagneticHeadingDegrees = (360 + (fromFalcon.yaw / Common.Math.Constants.RADIANS_PER_DEGREE)) % 360;
+ hsi.InstrumentState.MagneticHeadingDegrees = fromFalcon.currentHeading;
ehsi.InstrumentState.NoDataFlag = ((hsibits & HsiBits.HSI_OFF) == HsiBits.HSI_OFF) && !Extractor.State.OptionsFormIsShowing; ;
- ehsi.InstrumentState.NoPowerFlag = ((fromFalcon.powerBits & (int)PowerBits.BusPowerBattery) != (int)PowerBits.BusPowerBattery) && !Extractor.State.OptionsFormIsShowing;
- ehsi.InstrumentState.MagneticHeadingDegrees = (360 + (fromFalcon.yaw / Common.Math.Constants.RADIANS_PER_DEGREE)) % 360;
+ ehsi.InstrumentState.NoPowerFlag = ((fromFalcon.powerBits & (int)PowerBits.BusPowerBattery) != (int)PowerBits.BusPowerBattery) && !Extractor.State.OptionsFormIsShowing;
+ ehsi.InstrumentState.MagneticHeadingDegrees = fromFalcon.currentHeading;
}
private static void UpdateADI(IADI adi, HsiBits hsibits)
diff --git a/src/MFDExtractor/MFDExtractor/MFDExtractor.csproj b/src/MFDExtractor/MFDExtractor/MFDExtractor.csproj
index ed2a775b..192d0cfd 100644
--- a/src/MFDExtractor/MFDExtractor/MFDExtractor.csproj
+++ b/src/MFDExtractor/MFDExtractor/MFDExtractor.csproj
@@ -192,6 +192,7 @@
+
diff --git a/src/MFDExtractor/MFDExtractor/Properties/Settings.Designer.cs b/src/MFDExtractor/MFDExtractor/Properties/Settings.Designer.cs
index 44f2c6ba..ba2335e1 100644
--- a/src/MFDExtractor/MFDExtractor/Properties/Settings.Designer.cs
+++ b/src/MFDExtractor/MFDExtractor/Properties/Settings.Designer.cs
@@ -6010,5 +6010,17 @@ public int PollingDelay {
this["PollingDelay"] = value;
}
}
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool IsPwEngine {
+ get {
+ return ((bool)(this["IsPwEngine"]));
+ }
+ set {
+ this["IsPwEngine"] = value;
+ }
+ }
}
}
diff --git a/src/MFDExtractor/MFDExtractor/Properties/Settings.settings b/src/MFDExtractor/MFDExtractor/Properties/Settings.settings
index a8085d98..7ece1c3c 100644
--- a/src/MFDExtractor/MFDExtractor/Properties/Settings.settings
+++ b/src/MFDExtractor/MFDExtractor/Properties/Settings.settings
@@ -1499,5 +1499,8 @@
5
+
+ False
+
\ No newline at end of file
diff --git a/src/MFDExtractor/MFDExtractor/RendererFactories/TachometerRendererFactory.cs b/src/MFDExtractor/MFDExtractor/RendererFactories/TachometerRendererFactory.cs
new file mode 100644
index 00000000..0c5f0692
--- /dev/null
+++ b/src/MFDExtractor/MFDExtractor/RendererFactories/TachometerRendererFactory.cs
@@ -0,0 +1,29 @@
+using LightningGauges.Renderers.F16;
+using MFDExtractor.Properties;
+
+namespace MFDExtractor.RendererFactories
+{
+ internal interface ITachometerRendererFactory
+ {
+ ITachometer Create();
+ }
+
+
+ class TachometerRendererFactory : ITachometerRendererFactory
+ {
+ public ITachometer Create()
+ {
+ return new Tachometer
+ {
+ Options =
+ {
+ EngineType = Settings.Default.IsPwEngine
+ ?Tachometer.TachometerOptions.TachometerEngineType.PWEngine
+ :Tachometer.TachometerOptions.TachometerEngineType.GEEngine,
+ IsSecondary=false
+ }
+ };
+ }
+ }
+
+}
diff --git a/src/MFDExtractor/MFDExtractor/RendererFactory.cs b/src/MFDExtractor/MFDExtractor/RendererFactory.cs
index 0aae3262..16907a99 100644
--- a/src/MFDExtractor/MFDExtractor/RendererFactory.cs
+++ b/src/MFDExtractor/MFDExtractor/RendererFactory.cs
@@ -25,13 +25,15 @@ internal class RendererFactory : IRendererFactory
private readonly IFuelQualityIndicatorRendererFactory _fuelQualityIndicatorRendererFactory;
private readonly IISISRendererFactory _isisRendererFactory;
private readonly IVVIRendererFactory _vviRendererFactory;
+ private readonly ITachometerRendererFactory _tachometerRendererFactory;
public RendererFactory(
IAzimuthIndicatorRendererFactory azimuthIndicatorFactory = null,
IRWRRendererFactory rwrRendererFactory=null,
IFuelQualityIndicatorRendererFactory fuelQualityIndicatorRendererFactory=null,
IAltimeterRendererFactory altimeterRendererFactory=null,
IISISRendererFactory isisRendererFactory=null,
- IVVIRendererFactory vviRendererFactory=null
+ IVVIRendererFactory vviRendererFactory=null,
+ ITachometerRendererFactory tachometerRendererFactory=null
)
{
_azimuthIndicatorFactory = azimuthIndicatorFactory ?? new AzimuthIndicatorRendererFactory();
@@ -40,6 +42,7 @@ public RendererFactory(
_fuelQualityIndicatorRendererFactory = fuelQualityIndicatorRendererFactory ?? new FuelQualityIndicatorRendererFactory();
_isisRendererFactory = isisRendererFactory ?? new ISISRendererFactory();
_vviRendererFactory = vviRendererFactory ?? new VVIRendererFactory();
+ _tachometerRendererFactory = tachometerRendererFactory ?? new TachometerRendererFactory();
}
public IInstrumentRenderer CreateRenderer(InstrumentType instrumentType)
@@ -174,12 +177,13 @@ private IVerticalVelocityIndicator CreateVVIRenderer()
private ITachometer CreateRPM2Renderer()
{
- return new Tachometer {Options = {IsSecondary = true}};
+ return new Tachometer { Options = { IsSecondary = true } };
}
private ITachometer CreateRPM1Renderer()
{
- return new Tachometer {Options = {IsSecondary = false}};
+ return _tachometerRendererFactory.Create();
+
}
private ISpeedbrakeIndicator CreateSpeedbrakeRenderer()
diff --git a/src/MFDExtractor/MFDExtractor/UI/frmOptions.Designer.cs b/src/MFDExtractor/MFDExtractor/UI/frmOptions.Designer.cs
index 8a3837d4..0ff87a88 100644
--- a/src/MFDExtractor/MFDExtractor/UI/frmOptions.Designer.cs
+++ b/src/MFDExtractor/MFDExtractor/UI/frmOptions.Designer.cs
@@ -196,13 +196,6 @@ private void InitializeComponent()
this.lblISISStandardBrightnessButtonPressed = new System.Windows.Forms.Label();
this.tabNetworking = new System.Windows.Forms.TabPage();
this.grpNetworkMode = new System.Windows.Forms.GroupBox();
- this.grpServerOptions = new System.Windows.Forms.GroupBox();
- this.lblCompressionType = new System.Windows.Forms.Label();
- this.cboCompressionType = new System.Windows.Forms.ComboBox();
- this.lblImageFormat = new System.Windows.Forms.Label();
- this.cboImageFormat = new System.Windows.Forms.ComboBox();
- this.lblServerServerPortNum = new System.Windows.Forms.Label();
- this.txtNetworkServerUsePortNum = new System.Windows.Forms.TextBox();
this.gbNetworkingMode = new System.Windows.Forms.GroupBox();
this.rdoServer = new System.Windows.Forms.RadioButton();
this.rdoStandalone = new System.Windows.Forms.RadioButton();
@@ -212,6 +205,13 @@ private void InitializeComponent()
this.lblClientServerPortNum = new System.Windows.Forms.Label();
this.txtNetworkClientUseServerPortNum = new System.Windows.Forms.TextBox();
this.lblServerIpAddress = new System.Windows.Forms.Label();
+ this.grpServerOptions = new System.Windows.Forms.GroupBox();
+ this.lblCompressionType = new System.Windows.Forms.Label();
+ this.cboCompressionType = new System.Windows.Forms.ComboBox();
+ this.lblImageFormat = new System.Windows.Forms.Label();
+ this.cboImageFormat = new System.Windows.Forms.ComboBox();
+ this.lblServerServerPortNum = new System.Windows.Forms.Label();
+ this.txtNetworkServerUsePortNum = new System.Windows.Forms.TextBox();
this.tabPerformance = new System.Windows.Forms.TabPage();
this.grpPerformanceOptions = new System.Windows.Forms.GroupBox();
this.cmdBMSOptions = new System.Windows.Forms.Button();
@@ -250,6 +250,7 @@ private void InitializeComponent()
this.cmdApply = new System.Windows.Forms.Button();
this.globalEventProvider1 = new Common.InputSupport.GlobalEventProvider();
this.globalEventProvider2 = new Common.InputSupport.GlobalEventProvider();
+ this.chkRPMPW = new System.Windows.Forms.CheckBox();
((System.ComponentModel.ISupportInitialize)(this.errControlErrorProvider)).BeginInit();
this.tabAllTabs.SuspendLayout();
this.tabInstruments.SuspendLayout();
@@ -330,9 +331,9 @@ private void InitializeComponent()
this.gbISIS.SuspendLayout();
this.tabNetworking.SuspendLayout();
this.grpNetworkMode.SuspendLayout();
- this.grpServerOptions.SuspendLayout();
this.gbNetworkingMode.SuspendLayout();
this.grpClientOptions.SuspendLayout();
+ this.grpServerOptions.SuspendLayout();
this.tabPerformance.SuspendLayout();
this.grpPerformanceOptions.SuspendLayout();
this.tabGraphics.SuspendLayout();
@@ -345,10 +346,10 @@ private void InitializeComponent()
//
// cmdOk
//
- this.cmdOk.Location = new System.Drawing.Point(5, 964);
- this.cmdOk.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdOk.Location = new System.Drawing.Point(2, 501);
+ this.cmdOk.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdOk.Name = "cmdOk";
- this.cmdOk.Size = new System.Drawing.Size(213, 56);
+ this.cmdOk.Size = new System.Drawing.Size(106, 29);
this.cmdOk.TabIndex = 150;
this.cmdOk.Text = "&OK";
this.cmdOk.UseVisualStyleBackColor = true;
@@ -357,10 +358,10 @@ private void InitializeComponent()
// cmdCancel
//
this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.cmdCancel.Location = new System.Drawing.Point(227, 964);
- this.cmdCancel.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdCancel.Location = new System.Drawing.Point(114, 501);
+ this.cmdCancel.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdCancel.Name = "cmdCancel";
- this.cmdCancel.Size = new System.Drawing.Size(211, 56);
+ this.cmdCancel.Size = new System.Drawing.Size(106, 29);
this.cmdCancel.TabIndex = 151;
this.cmdCancel.Text = "&Cancel";
this.cmdCancel.UseVisualStyleBackColor = true;
@@ -382,21 +383,21 @@ private void InitializeComponent()
this.tabAllTabs.Dock = System.Windows.Forms.DockStyle.Top;
this.errControlErrorProvider.SetIconAlignment(this.tabAllTabs, System.Windows.Forms.ErrorIconAlignment.TopRight);
this.tabAllTabs.Location = new System.Drawing.Point(0, 0);
- this.tabAllTabs.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabAllTabs.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabAllTabs.Multiline = true;
this.tabAllTabs.Name = "tabAllTabs";
this.tabAllTabs.SelectedIndex = 0;
- this.tabAllTabs.Size = new System.Drawing.Size(1056, 949);
+ this.tabAllTabs.Size = new System.Drawing.Size(528, 493);
this.tabAllTabs.TabIndex = 1;
//
// tabInstruments
//
this.tabInstruments.Controls.Add(this.panel1);
- this.tabInstruments.Location = new System.Drawing.Point(8, 39);
- this.tabInstruments.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabInstruments.Location = new System.Drawing.Point(4, 22);
+ this.tabInstruments.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabInstruments.Name = "tabInstruments";
- this.tabInstruments.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabInstruments.Size = new System.Drawing.Size(1040, 902);
+ this.tabInstruments.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabInstruments.Size = new System.Drawing.Size(520, 467);
this.tabInstruments.TabIndex = 11;
this.tabInstruments.Text = "Instruments";
this.tabInstruments.UseVisualStyleBackColor = true;
@@ -405,10 +406,10 @@ private void InitializeComponent()
//
this.panel1.Controls.Add(this.tabOtherInstros);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel1.Location = new System.Drawing.Point(5, 6);
- this.panel1.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.panel1.Location = new System.Drawing.Point(2, 3);
+ this.panel1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1030, 890);
+ this.panel1.Size = new System.Drawing.Size(516, 461);
this.panel1.TabIndex = 156;
//
// tabOtherInstros
@@ -425,11 +426,11 @@ private void InitializeComponent()
this.tabOtherInstros.Controls.Add(this.tabGearAndBrakes);
this.tabOtherInstros.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabOtherInstros.Location = new System.Drawing.Point(0, 0);
- this.tabOtherInstros.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabOtherInstros.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabOtherInstros.Multiline = true;
this.tabOtherInstros.Name = "tabOtherInstros";
this.tabOtherInstros.SelectedIndex = 0;
- this.tabOtherInstros.Size = new System.Drawing.Size(1030, 890);
+ this.tabOtherInstros.Size = new System.Drawing.Size(516, 461);
this.tabOtherInstros.TabIndex = 156;
//
// tabMfdsHud
@@ -440,22 +441,21 @@ private void InitializeComponent()
this.tabMfdsHud.Controls.Add(this.cmdRecoverLeftMfd);
this.tabMfdsHud.Controls.Add(this.cmdRecoverHud);
this.tabMfdsHud.Controls.Add(this.chkEnableHud);
- this.tabMfdsHud.Location = new System.Drawing.Point(8, 70);
- this.tabMfdsHud.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabMfdsHud.Location = new System.Drawing.Point(4, 40);
+ this.tabMfdsHud.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabMfdsHud.Name = "tabMfdsHud";
- this.tabMfdsHud.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabMfdsHud.Size = new System.Drawing.Size(1014, 812);
+ this.tabMfdsHud.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabMfdsHud.Size = new System.Drawing.Size(508, 417);
this.tabMfdsHud.TabIndex = 17;
this.tabMfdsHud.Text = "MFDs & HUD";
this.tabMfdsHud.UseVisualStyleBackColor = true;
-
//
// cmdRecoverRightMfd
//
- this.cmdRecoverRightMfd.Location = new System.Drawing.Point(308, 60);
- this.cmdRecoverRightMfd.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdRecoverRightMfd.Location = new System.Drawing.Point(154, 31);
+ this.cmdRecoverRightMfd.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdRecoverRightMfd.Name = "cmdRecoverRightMfd";
- this.cmdRecoverRightMfd.Size = new System.Drawing.Size(160, 44);
+ this.cmdRecoverRightMfd.Size = new System.Drawing.Size(80, 23);
this.cmdRecoverRightMfd.TabIndex = 158;
this.cmdRecoverRightMfd.Text = "&Recover";
this.cmdRecoverRightMfd.UseVisualStyleBackColor = true;
@@ -464,10 +464,10 @@ private void InitializeComponent()
// chkEnableRightMFD
//
this.chkEnableRightMFD.AutoSize = true;
- this.chkEnableRightMFD.Location = new System.Drawing.Point(19, 68);
- this.chkEnableRightMFD.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkEnableRightMFD.Location = new System.Drawing.Point(10, 35);
+ this.chkEnableRightMFD.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkEnableRightMFD.Name = "chkEnableRightMFD";
- this.chkEnableRightMFD.Size = new System.Drawing.Size(285, 29);
+ this.chkEnableRightMFD.Size = new System.Drawing.Size(146, 17);
this.chkEnableRightMFD.TabIndex = 155;
this.chkEnableRightMFD.Text = "Enable Right MFD output";
this.chkEnableRightMFD.UseVisualStyleBackColor = true;
@@ -476,10 +476,10 @@ private void InitializeComponent()
// chkEnableLeftMFD
//
this.chkEnableLeftMFD.AutoSize = true;
- this.chkEnableLeftMFD.Location = new System.Drawing.Point(19, 19);
- this.chkEnableLeftMFD.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkEnableLeftMFD.Location = new System.Drawing.Point(10, 10);
+ this.chkEnableLeftMFD.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkEnableLeftMFD.Name = "chkEnableLeftMFD";
- this.chkEnableLeftMFD.Size = new System.Drawing.Size(271, 29);
+ this.chkEnableLeftMFD.Size = new System.Drawing.Size(139, 17);
this.chkEnableLeftMFD.TabIndex = 2;
this.chkEnableLeftMFD.Text = "Enable Left MFD output";
this.chkEnableLeftMFD.UseVisualStyleBackColor = true;
@@ -487,10 +487,10 @@ private void InitializeComponent()
//
// cmdRecoverLeftMfd
//
- this.cmdRecoverLeftMfd.Location = new System.Drawing.Point(308, 11);
- this.cmdRecoverLeftMfd.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdRecoverLeftMfd.Location = new System.Drawing.Point(154, 6);
+ this.cmdRecoverLeftMfd.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdRecoverLeftMfd.Name = "cmdRecoverLeftMfd";
- this.cmdRecoverLeftMfd.Size = new System.Drawing.Size(160, 44);
+ this.cmdRecoverLeftMfd.Size = new System.Drawing.Size(80, 23);
this.cmdRecoverLeftMfd.TabIndex = 9;
this.cmdRecoverLeftMfd.Text = "&Recover";
this.cmdRecoverLeftMfd.UseVisualStyleBackColor = true;
@@ -498,10 +498,10 @@ private void InitializeComponent()
//
// cmdRecoverHud
//
- this.cmdRecoverHud.Location = new System.Drawing.Point(308, 202);
- this.cmdRecoverHud.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdRecoverHud.Location = new System.Drawing.Point(154, 105);
+ this.cmdRecoverHud.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdRecoverHud.Name = "cmdRecoverHud";
- this.cmdRecoverHud.Size = new System.Drawing.Size(160, 44);
+ this.cmdRecoverHud.Size = new System.Drawing.Size(80, 23);
this.cmdRecoverHud.TabIndex = 170;
this.cmdRecoverHud.Text = "&Recover";
this.cmdRecoverHud.UseVisualStyleBackColor = true;
@@ -510,10 +510,10 @@ private void InitializeComponent()
// chkEnableHud
//
this.chkEnableHud.AutoSize = true;
- this.chkEnableHud.Location = new System.Drawing.Point(19, 210);
- this.chkEnableHud.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkEnableHud.Location = new System.Drawing.Point(10, 109);
+ this.chkEnableHud.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkEnableHud.Name = "chkEnableHud";
- this.chkEnableHud.Size = new System.Drawing.Size(228, 29);
+ this.chkEnableHud.Size = new System.Drawing.Size(119, 17);
this.chkEnableHud.TabIndex = 167;
this.chkEnableHud.Text = "Enable HUD output";
this.chkEnableHud.UseVisualStyleBackColor = true;
@@ -549,11 +549,11 @@ private void InitializeComponent()
this.tabFlightInstruments.Controls.Add(this.pbRecoverAOAIndicator);
this.tabFlightInstruments.Controls.Add(this.pbRecoverAltimeter);
this.tabFlightInstruments.Controls.Add(this.grpAltimeterStyle);
- this.tabFlightInstruments.Location = new System.Drawing.Point(8, 70);
- this.tabFlightInstruments.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabFlightInstruments.Location = new System.Drawing.Point(4, 40);
+ this.tabFlightInstruments.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabFlightInstruments.Name = "tabFlightInstruments";
- this.tabFlightInstruments.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabFlightInstruments.Size = new System.Drawing.Size(1019, 817);
+ this.tabFlightInstruments.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabFlightInstruments.Size = new System.Drawing.Size(507, 419);
this.tabFlightInstruments.TabIndex = 8;
this.tabFlightInstruments.Text = "Flight & Navigation Instruments";
this.tabFlightInstruments.UseVisualStyleBackColor = true;
@@ -561,10 +561,10 @@ private void InitializeComponent()
// chkDED
//
this.chkDED.AutoSize = true;
- this.chkDED.Location = new System.Drawing.Point(12, 448);
- this.chkDED.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkDED.Location = new System.Drawing.Point(6, 233);
+ this.chkDED.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkDED.Name = "chkDED";
- this.chkDED.Size = new System.Drawing.Size(286, 29);
+ this.chkDED.Size = new System.Drawing.Size(145, 17);
this.chkDED.TabIndex = 72;
this.chkDED.Text = "Data Entry Display (DED)";
this.chkDED.UseVisualStyleBackColor = true;
@@ -576,12 +576,12 @@ private void InitializeComponent()
this.pbRecoverDED.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverDED.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverDED.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverDED.Location = new System.Drawing.Point(533, 448);
- this.pbRecoverDED.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverDED.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverDED.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverDED.Location = new System.Drawing.Point(266, 233);
+ this.pbRecoverDED.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverDED.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverDED.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverDED.Name = "pbRecoverDED";
- this.pbRecoverDED.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverDED.Size = new System.Drawing.Size(16, 16);
this.pbRecoverDED.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverDED.TabIndex = 73;
this.pbRecoverDED.TabStop = false;
@@ -590,10 +590,10 @@ private void InitializeComponent()
// chkEHSI
//
this.chkEHSI.AutoSize = true;
- this.chkEHSI.Location = new System.Drawing.Point(12, 491);
- this.chkEHSI.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkEHSI.Location = new System.Drawing.Point(6, 255);
+ this.chkEHSI.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkEHSI.Name = "chkEHSI";
- this.chkEHSI.Size = new System.Drawing.Size(488, 29);
+ this.chkEHSI.Size = new System.Drawing.Size(245, 17);
this.chkEHSI.TabIndex = 19;
this.chkEHSI.Text = "Electronic Horizontal Situation Indicator (EHSI)";
this.chkEHSI.UseVisualStyleBackColor = true;
@@ -602,10 +602,10 @@ private void InitializeComponent()
// chkAccelerometer
//
this.chkAccelerometer.AutoSize = true;
- this.chkAccelerometer.Location = new System.Drawing.Point(12, 11);
- this.chkAccelerometer.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkAccelerometer.Location = new System.Drawing.Point(6, 6);
+ this.chkAccelerometer.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkAccelerometer.Name = "chkAccelerometer";
- this.chkAccelerometer.Size = new System.Drawing.Size(279, 29);
+ this.chkAccelerometer.Size = new System.Drawing.Size(140, 17);
this.chkAccelerometer.TabIndex = 0;
this.chkAccelerometer.Text = "Accelerometer (G-meter)";
this.chkAccelerometer.UseVisualStyleBackColor = true;
@@ -617,12 +617,12 @@ private void InitializeComponent()
this.pbRecoverEHSI.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverEHSI.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverEHSI.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverEHSI.Location = new System.Drawing.Point(533, 491);
- this.pbRecoverEHSI.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverEHSI.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverEHSI.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverEHSI.Location = new System.Drawing.Point(266, 255);
+ this.pbRecoverEHSI.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverEHSI.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverEHSI.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverEHSI.Name = "pbRecoverEHSI";
- this.pbRecoverEHSI.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverEHSI.Size = new System.Drawing.Size(16, 16);
this.pbRecoverEHSI.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverEHSI.TabIndex = 86;
this.pbRecoverEHSI.TabStop = false;
@@ -634,12 +634,12 @@ private void InitializeComponent()
this.pbRecoverASI.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverASI.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverASI.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverASI.Location = new System.Drawing.Point(533, 60);
- this.pbRecoverASI.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverASI.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverASI.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverASI.Location = new System.Drawing.Point(266, 31);
+ this.pbRecoverASI.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverASI.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverASI.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverASI.Name = "pbRecoverASI";
- this.pbRecoverASI.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverASI.Size = new System.Drawing.Size(16, 16);
this.pbRecoverASI.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverASI.TabIndex = 67;
this.pbRecoverASI.TabStop = false;
@@ -649,11 +649,11 @@ private void InitializeComponent()
//
this.grpVVIOptions.Controls.Add(this.rdoVVIStyleNeedle);
this.grpVVIOptions.Controls.Add(this.rdoVVIStyleTape);
- this.grpVVIOptions.Location = new System.Drawing.Point(59, 716);
- this.grpVVIOptions.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.grpVVIOptions.Location = new System.Drawing.Point(30, 372);
+ this.grpVVIOptions.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.grpVVIOptions.Name = "grpVVIOptions";
- this.grpVVIOptions.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.grpVVIOptions.Size = new System.Drawing.Size(373, 71);
+ this.grpVVIOptions.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.grpVVIOptions.Size = new System.Drawing.Size(186, 37);
this.grpVVIOptions.TabIndex = 44;
this.grpVVIOptions.TabStop = false;
this.grpVVIOptions.Text = "Style";
@@ -661,10 +661,10 @@ private void InitializeComponent()
// rdoVVIStyleNeedle
//
this.rdoVVIStyleNeedle.AutoSize = true;
- this.rdoVVIStyleNeedle.Location = new System.Drawing.Point(128, 29);
- this.rdoVVIStyleNeedle.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.rdoVVIStyleNeedle.Location = new System.Drawing.Point(64, 15);
+ this.rdoVVIStyleNeedle.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.rdoVVIStyleNeedle.Name = "rdoVVIStyleNeedle";
- this.rdoVVIStyleNeedle.Size = new System.Drawing.Size(111, 29);
+ this.rdoVVIStyleNeedle.Size = new System.Drawing.Size(59, 17);
this.rdoVVIStyleNeedle.TabIndex = 1;
this.rdoVVIStyleNeedle.TabStop = true;
this.rdoVVIStyleNeedle.Text = "Needle";
@@ -674,10 +674,10 @@ private void InitializeComponent()
// rdoVVIStyleTape
//
this.rdoVVIStyleTape.AutoSize = true;
- this.rdoVVIStyleTape.Location = new System.Drawing.Point(21, 29);
- this.rdoVVIStyleTape.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.rdoVVIStyleTape.Location = new System.Drawing.Point(10, 15);
+ this.rdoVVIStyleTape.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.rdoVVIStyleTape.Name = "rdoVVIStyleTape";
- this.rdoVVIStyleTape.Size = new System.Drawing.Size(92, 29);
+ this.rdoVVIStyleTape.Size = new System.Drawing.Size(50, 17);
this.rdoVVIStyleTape.TabIndex = 0;
this.rdoVVIStyleTape.TabStop = true;
this.rdoVVIStyleTape.Text = "Tape";
@@ -687,10 +687,10 @@ private void InitializeComponent()
// chkStandbyADI
//
this.chkStandbyADI.AutoSize = true;
- this.chkStandbyADI.Location = new System.Drawing.Point(12, 624);
- this.chkStandbyADI.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkStandbyADI.Location = new System.Drawing.Point(6, 324);
+ this.chkStandbyADI.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkStandbyADI.Name = "chkStandbyADI";
- this.chkStandbyADI.Size = new System.Drawing.Size(290, 29);
+ this.chkStandbyADI.Size = new System.Drawing.Size(148, 17);
this.chkStandbyADI.TabIndex = 91;
this.chkStandbyADI.Text = "Standby Attitude Indicator";
this.chkStandbyADI.UseVisualStyleBackColor = true;
@@ -699,10 +699,10 @@ private void InitializeComponent()
// chkHSI
//
this.chkHSI.AutoSize = true;
- this.chkHSI.Location = new System.Drawing.Point(12, 536);
- this.chkHSI.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkHSI.Location = new System.Drawing.Point(6, 279);
+ this.chkHSI.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkHSI.Name = "chkHSI";
- this.chkHSI.Size = new System.Drawing.Size(373, 29);
+ this.chkHSI.Size = new System.Drawing.Size(188, 17);
this.chkHSI.TabIndex = 33;
this.chkHSI.Text = "Horizontal Situation Indicator (HSI)";
this.chkHSI.UseVisualStyleBackColor = true;
@@ -714,12 +714,12 @@ private void InitializeComponent()
this.pbRecoverCompass.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverCompass.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverCompass.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverCompass.Location = new System.Drawing.Point(533, 404);
- this.pbRecoverCompass.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverCompass.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverCompass.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverCompass.Location = new System.Drawing.Point(266, 210);
+ this.pbRecoverCompass.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverCompass.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverCompass.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverCompass.Name = "pbRecoverCompass";
- this.pbRecoverCompass.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverCompass.Size = new System.Drawing.Size(16, 16);
this.pbRecoverCompass.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverCompass.TabIndex = 90;
this.pbRecoverCompass.TabStop = false;
@@ -731,12 +731,12 @@ private void InitializeComponent()
this.pbRecoverBackupADI.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverBackupADI.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverBackupADI.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverBackupADI.Location = new System.Drawing.Point(533, 624);
- this.pbRecoverBackupADI.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverBackupADI.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverBackupADI.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverBackupADI.Location = new System.Drawing.Point(266, 324);
+ this.pbRecoverBackupADI.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverBackupADI.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverBackupADI.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverBackupADI.Name = "pbRecoverBackupADI";
- this.pbRecoverBackupADI.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverBackupADI.Size = new System.Drawing.Size(16, 16);
this.pbRecoverBackupADI.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverBackupADI.TabIndex = 92;
this.pbRecoverBackupADI.TabStop = false;
@@ -748,12 +748,12 @@ private void InitializeComponent()
this.pbRecoverHSI.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverHSI.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverHSI.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverHSI.Location = new System.Drawing.Point(533, 536);
- this.pbRecoverHSI.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverHSI.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverHSI.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverHSI.Location = new System.Drawing.Point(266, 279);
+ this.pbRecoverHSI.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverHSI.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverHSI.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverHSI.Name = "pbRecoverHSI";
- this.pbRecoverHSI.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverHSI.Size = new System.Drawing.Size(16, 16);
this.pbRecoverHSI.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverHSI.TabIndex = 51;
this.pbRecoverHSI.TabStop = false;
@@ -765,12 +765,12 @@ private void InitializeComponent()
this.pbRecoverVVI.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverVVI.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverVVI.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverVVI.Location = new System.Drawing.Point(533, 669);
- this.pbRecoverVVI.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverVVI.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverVVI.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverVVI.Location = new System.Drawing.Point(266, 348);
+ this.pbRecoverVVI.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverVVI.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverVVI.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverVVI.Name = "pbRecoverVVI";
- this.pbRecoverVVI.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverVVI.Size = new System.Drawing.Size(16, 16);
this.pbRecoverVVI.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverVVI.TabIndex = 50;
this.pbRecoverVVI.TabStop = false;
@@ -779,10 +779,10 @@ private void InitializeComponent()
// chkCabinPress
//
this.chkCabinPress.AutoSize = true;
- this.chkCabinPress.Location = new System.Drawing.Point(12, 359);
- this.chkCabinPress.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkCabinPress.Location = new System.Drawing.Point(6, 187);
+ this.chkCabinPress.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkCabinPress.Name = "chkCabinPress";
- this.chkCabinPress.Size = new System.Drawing.Size(282, 29);
+ this.chkCabinPress.Size = new System.Drawing.Size(140, 17);
this.chkCabinPress.TabIndex = 62;
this.chkCabinPress.Text = "Cabin Pressure Altimeter";
this.chkCabinPress.UseVisualStyleBackColor = true;
@@ -794,12 +794,12 @@ private void InitializeComponent()
this.pbRecoverCabinPress.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverCabinPress.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverCabinPress.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverCabinPress.Location = new System.Drawing.Point(533, 359);
- this.pbRecoverCabinPress.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverCabinPress.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverCabinPress.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverCabinPress.Location = new System.Drawing.Point(266, 187);
+ this.pbRecoverCabinPress.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverCabinPress.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverCabinPress.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverCabinPress.Name = "pbRecoverCabinPress";
- this.pbRecoverCabinPress.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverCabinPress.Size = new System.Drawing.Size(16, 16);
this.pbRecoverCabinPress.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverCabinPress.TabIndex = 63;
this.pbRecoverCabinPress.TabStop = false;
@@ -808,10 +808,10 @@ private void InitializeComponent()
// chkAirspeedIndicator
//
this.chkAirspeedIndicator.AutoSize = true;
- this.chkAirspeedIndicator.Location = new System.Drawing.Point(12, 60);
- this.chkAirspeedIndicator.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkAirspeedIndicator.Location = new System.Drawing.Point(6, 31);
+ this.chkAirspeedIndicator.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkAirspeedIndicator.Name = "chkAirspeedIndicator";
- this.chkAirspeedIndicator.Size = new System.Drawing.Size(337, 29);
+ this.chkAirspeedIndicator.Size = new System.Drawing.Size(173, 17);
this.chkAirspeedIndicator.TabIndex = 1;
this.chkAirspeedIndicator.Text = "Airspeed Indicator/Mach Meter";
this.chkAirspeedIndicator.UseVisualStyleBackColor = true;
@@ -823,12 +823,12 @@ private void InitializeComponent()
this.pbRecoverAccelerometer.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverAccelerometer.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverAccelerometer.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverAccelerometer.Location = new System.Drawing.Point(533, 11);
- this.pbRecoverAccelerometer.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverAccelerometer.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverAccelerometer.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverAccelerometer.Location = new System.Drawing.Point(266, 6);
+ this.pbRecoverAccelerometer.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverAccelerometer.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverAccelerometer.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverAccelerometer.Name = "pbRecoverAccelerometer";
- this.pbRecoverAccelerometer.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverAccelerometer.Size = new System.Drawing.Size(16, 16);
this.pbRecoverAccelerometer.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverAccelerometer.TabIndex = 88;
this.pbRecoverAccelerometer.TabStop = false;
@@ -837,10 +837,10 @@ private void InitializeComponent()
// chkVVI
//
this.chkVVI.AutoSize = true;
- this.chkVVI.Location = new System.Drawing.Point(12, 669);
- this.chkVVI.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkVVI.Location = new System.Drawing.Point(6, 348);
+ this.chkVVI.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkVVI.Name = "chkVVI";
- this.chkVVI.Size = new System.Drawing.Size(339, 29);
+ this.chkVVI.Size = new System.Drawing.Size(171, 17);
this.chkVVI.TabIndex = 43;
this.chkVVI.Text = "Vertical Velocity Indicator (VVI)";
this.chkVVI.UseVisualStyleBackColor = true;
@@ -849,10 +849,10 @@ private void InitializeComponent()
// chkAltimeter
//
this.chkAltimeter.AutoSize = true;
- this.chkAltimeter.Location = new System.Drawing.Point(12, 104);
- this.chkAltimeter.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkAltimeter.Location = new System.Drawing.Point(6, 54);
+ this.chkAltimeter.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkAltimeter.Name = "chkAltimeter";
- this.chkAltimeter.Size = new System.Drawing.Size(128, 29);
+ this.chkAltimeter.Size = new System.Drawing.Size(66, 17);
this.chkAltimeter.TabIndex = 2;
this.chkAltimeter.Text = "Altimeter";
this.chkAltimeter.UseVisualStyleBackColor = true;
@@ -861,10 +861,10 @@ private void InitializeComponent()
// chkISIS
//
this.chkISIS.AutoSize = true;
- this.chkISIS.Location = new System.Drawing.Point(12, 580);
- this.chkISIS.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkISIS.Location = new System.Drawing.Point(6, 302);
+ this.chkISIS.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkISIS.Name = "chkISIS";
- this.chkISIS.Size = new System.Drawing.Size(466, 29);
+ this.chkISIS.Size = new System.Drawing.Size(234, 17);
this.chkISIS.TabIndex = 36;
this.chkISIS.Text = "Integrated Standby Instrument System (ISIS)";
this.chkISIS.UseVisualStyleBackColor = true;
@@ -873,10 +873,10 @@ private void InitializeComponent()
// chkCompass
//
this.chkCompass.AutoSize = true;
- this.chkCompass.Location = new System.Drawing.Point(12, 404);
- this.chkCompass.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkCompass.Location = new System.Drawing.Point(6, 210);
+ this.chkCompass.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkCompass.Name = "chkCompass";
- this.chkCompass.Size = new System.Drawing.Size(134, 29);
+ this.chkCompass.Size = new System.Drawing.Size(69, 17);
this.chkCompass.TabIndex = 89;
this.chkCompass.Text = "Compass";
this.chkCompass.UseVisualStyleBackColor = true;
@@ -888,12 +888,12 @@ private void InitializeComponent()
this.pbRecoverISIS.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverISIS.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverISIS.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverISIS.Location = new System.Drawing.Point(533, 580);
- this.pbRecoverISIS.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverISIS.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverISIS.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverISIS.Location = new System.Drawing.Point(266, 302);
+ this.pbRecoverISIS.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverISIS.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverISIS.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverISIS.Name = "pbRecoverISIS";
- this.pbRecoverISIS.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverISIS.Size = new System.Drawing.Size(16, 16);
this.pbRecoverISIS.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverISIS.TabIndex = 84;
this.pbRecoverISIS.TabStop = false;
@@ -902,10 +902,10 @@ private void InitializeComponent()
// chkADI
//
this.chkADI.AutoSize = true;
- this.chkADI.Location = new System.Drawing.Point(12, 315);
- this.chkADI.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkADI.Location = new System.Drawing.Point(6, 164);
+ this.chkADI.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkADI.Name = "chkADI";
- this.chkADI.Size = new System.Drawing.Size(340, 29);
+ this.chkADI.Size = new System.Drawing.Size(173, 17);
this.chkADI.TabIndex = 8;
this.chkADI.Text = "Attitude Director Indicator (ADI)";
this.chkADI.UseVisualStyleBackColor = true;
@@ -917,12 +917,12 @@ private void InitializeComponent()
this.pbRecoverADI.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverADI.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverADI.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverADI.Location = new System.Drawing.Point(533, 315);
- this.pbRecoverADI.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverADI.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverADI.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverADI.Location = new System.Drawing.Point(266, 164);
+ this.pbRecoverADI.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverADI.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverADI.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverADI.Name = "pbRecoverADI";
- this.pbRecoverADI.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverADI.Size = new System.Drawing.Size(16, 16);
this.pbRecoverADI.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverADI.TabIndex = 28;
this.pbRecoverADI.TabStop = false;
@@ -931,10 +931,10 @@ private void InitializeComponent()
// chkAOAIndicator
//
this.chkAOAIndicator.AutoSize = true;
- this.chkAOAIndicator.Location = new System.Drawing.Point(12, 270);
- this.chkAOAIndicator.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkAOAIndicator.Location = new System.Drawing.Point(6, 140);
+ this.chkAOAIndicator.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkAOAIndicator.Name = "chkAOAIndicator";
- this.chkAOAIndicator.Size = new System.Drawing.Size(341, 29);
+ this.chkAOAIndicator.Size = new System.Drawing.Size(174, 17);
this.chkAOAIndicator.TabIndex = 7;
this.chkAOAIndicator.Text = "Angle of Attack (AOA) Indicator";
this.chkAOAIndicator.UseVisualStyleBackColor = true;
@@ -946,12 +946,12 @@ private void InitializeComponent()
this.pbRecoverAOAIndicator.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverAOAIndicator.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverAOAIndicator.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverAOAIndicator.Location = new System.Drawing.Point(533, 270);
- this.pbRecoverAOAIndicator.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverAOAIndicator.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverAOAIndicator.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverAOAIndicator.Location = new System.Drawing.Point(266, 140);
+ this.pbRecoverAOAIndicator.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverAOAIndicator.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverAOAIndicator.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverAOAIndicator.Name = "pbRecoverAOAIndicator";
- this.pbRecoverAOAIndicator.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverAOAIndicator.Size = new System.Drawing.Size(16, 16);
this.pbRecoverAOAIndicator.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverAOAIndicator.TabIndex = 32;
this.pbRecoverAOAIndicator.TabStop = false;
@@ -963,12 +963,12 @@ private void InitializeComponent()
this.pbRecoverAltimeter.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverAltimeter.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverAltimeter.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverAltimeter.Location = new System.Drawing.Point(533, 110);
- this.pbRecoverAltimeter.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverAltimeter.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverAltimeter.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverAltimeter.Location = new System.Drawing.Point(266, 57);
+ this.pbRecoverAltimeter.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverAltimeter.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverAltimeter.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverAltimeter.Name = "pbRecoverAltimeter";
- this.pbRecoverAltimeter.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverAltimeter.Size = new System.Drawing.Size(16, 16);
this.pbRecoverAltimeter.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverAltimeter.TabIndex = 30;
this.pbRecoverAltimeter.TabStop = false;
@@ -978,11 +978,11 @@ private void InitializeComponent()
//
this.grpAltimeterStyle.Controls.Add(this.rdoAltimeterStyleDigital);
this.grpAltimeterStyle.Controls.Add(this.rdoAltimeterStyleElectromechanical);
- this.grpAltimeterStyle.Location = new System.Drawing.Point(43, 154);
- this.grpAltimeterStyle.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.grpAltimeterStyle.Location = new System.Drawing.Point(22, 80);
+ this.grpAltimeterStyle.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.grpAltimeterStyle.Name = "grpAltimeterStyle";
- this.grpAltimeterStyle.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.grpAltimeterStyle.Size = new System.Drawing.Size(389, 90);
+ this.grpAltimeterStyle.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.grpAltimeterStyle.Size = new System.Drawing.Size(194, 47);
this.grpAltimeterStyle.TabIndex = 4;
this.grpAltimeterStyle.TabStop = false;
this.grpAltimeterStyle.Text = "Style";
@@ -990,10 +990,10 @@ private void InitializeComponent()
// rdoAltimeterStyleDigital
//
this.rdoAltimeterStyleDigital.AutoSize = true;
- this.rdoAltimeterStyleDigital.Location = new System.Drawing.Point(248, 36);
- this.rdoAltimeterStyleDigital.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.rdoAltimeterStyleDigital.Location = new System.Drawing.Point(124, 19);
+ this.rdoAltimeterStyleDigital.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.rdoAltimeterStyleDigital.Name = "rdoAltimeterStyleDigital";
- this.rdoAltimeterStyleDigital.Size = new System.Drawing.Size(103, 29);
+ this.rdoAltimeterStyleDigital.Size = new System.Drawing.Size(54, 17);
this.rdoAltimeterStyleDigital.TabIndex = 1;
this.rdoAltimeterStyleDigital.TabStop = true;
this.rdoAltimeterStyleDigital.Text = "Digital";
@@ -1003,10 +1003,10 @@ private void InitializeComponent()
// rdoAltimeterStyleElectromechanical
//
this.rdoAltimeterStyleElectromechanical.AutoSize = true;
- this.rdoAltimeterStyleElectromechanical.Location = new System.Drawing.Point(12, 36);
- this.rdoAltimeterStyleElectromechanical.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.rdoAltimeterStyleElectromechanical.Location = new System.Drawing.Point(6, 19);
+ this.rdoAltimeterStyleElectromechanical.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.rdoAltimeterStyleElectromechanical.Name = "rdoAltimeterStyleElectromechanical";
- this.rdoAltimeterStyleElectromechanical.Size = new System.Drawing.Size(219, 29);
+ this.rdoAltimeterStyleElectromechanical.Size = new System.Drawing.Size(112, 17);
this.rdoAltimeterStyleElectromechanical.TabIndex = 0;
this.rdoAltimeterStyleElectromechanical.TabStop = true;
this.rdoAltimeterStyleElectromechanical.Text = "Electromechanical";
@@ -1020,11 +1020,11 @@ private void InitializeComponent()
this.tabEW.Controls.Add(this.chkCMDSPanel);
this.tabEW.Controls.Add(this.pbRecoverCMDS);
this.tabEW.Controls.Add(this.grpAzimuthIndicatorStyle);
- this.tabEW.Location = new System.Drawing.Point(8, 70);
- this.tabEW.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabEW.Location = new System.Drawing.Point(4, 40);
+ this.tabEW.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabEW.Name = "tabEW";
- this.tabEW.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabEW.Size = new System.Drawing.Size(1019, 817);
+ this.tabEW.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabEW.Size = new System.Drawing.Size(507, 419);
this.tabEW.TabIndex = 11;
this.tabEW.Text = "EW Suite";
this.tabEW.UseVisualStyleBackColor = true;
@@ -1032,10 +1032,10 @@ private void InitializeComponent()
// chkAzimuthIndicator
//
this.chkAzimuthIndicator.AutoSize = true;
- this.chkAzimuthIndicator.Location = new System.Drawing.Point(12, 11);
- this.chkAzimuthIndicator.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkAzimuthIndicator.Location = new System.Drawing.Point(6, 6);
+ this.chkAzimuthIndicator.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkAzimuthIndicator.Name = "chkAzimuthIndicator";
- this.chkAzimuthIndicator.Size = new System.Drawing.Size(279, 29);
+ this.chkAzimuthIndicator.Size = new System.Drawing.Size(143, 17);
this.chkAzimuthIndicator.TabIndex = 76;
this.chkAzimuthIndicator.Text = "Azimuth Indicator (RWR)";
this.chkAzimuthIndicator.UseVisualStyleBackColor = true;
@@ -1047,12 +1047,12 @@ private void InitializeComponent()
this.pbRecoverRWR.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverRWR.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverRWR.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverRWR.Location = new System.Drawing.Point(528, 14);
- this.pbRecoverRWR.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverRWR.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverRWR.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverRWR.Location = new System.Drawing.Point(264, 7);
+ this.pbRecoverRWR.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverRWR.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverRWR.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverRWR.Name = "pbRecoverRWR";
- this.pbRecoverRWR.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverRWR.Size = new System.Drawing.Size(16, 16);
this.pbRecoverRWR.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverRWR.TabIndex = 78;
this.pbRecoverRWR.TabStop = false;
@@ -1061,10 +1061,10 @@ private void InitializeComponent()
// chkCMDSPanel
//
this.chkCMDSPanel.AutoSize = true;
- this.chkCMDSPanel.Location = new System.Drawing.Point(12, 289);
- this.chkCMDSPanel.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkCMDSPanel.Location = new System.Drawing.Point(6, 150);
+ this.chkCMDSPanel.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkCMDSPanel.Name = "chkCMDSPanel";
- this.chkCMDSPanel.Size = new System.Drawing.Size(167, 29);
+ this.chkCMDSPanel.Size = new System.Drawing.Size(87, 17);
this.chkCMDSPanel.TabIndex = 79;
this.chkCMDSPanel.Text = "CMDS Panel";
this.chkCMDSPanel.UseVisualStyleBackColor = true;
@@ -1076,12 +1076,12 @@ private void InitializeComponent()
this.pbRecoverCMDS.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverCMDS.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverCMDS.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverCMDS.Location = new System.Drawing.Point(528, 289);
- this.pbRecoverCMDS.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverCMDS.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverCMDS.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverCMDS.Location = new System.Drawing.Point(264, 150);
+ this.pbRecoverCMDS.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverCMDS.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverCMDS.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverCMDS.Name = "pbRecoverCMDS";
- this.pbRecoverCMDS.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverCMDS.Size = new System.Drawing.Size(16, 16);
this.pbRecoverCMDS.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverCMDS.TabIndex = 80;
this.pbRecoverCMDS.TabStop = false;
@@ -1093,11 +1093,11 @@ private void InitializeComponent()
this.grpAzimuthIndicatorStyle.Controls.Add(this.rdoAzimuthIndicatorStyleDigital);
this.grpAzimuthIndicatorStyle.Controls.Add(this.grpAzimuthIndicatorBezelTypes);
this.grpAzimuthIndicatorStyle.Controls.Add(this.grpAzimuthIndicatorDigitalTypes);
- this.grpAzimuthIndicatorStyle.Location = new System.Drawing.Point(21, 54);
- this.grpAzimuthIndicatorStyle.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.grpAzimuthIndicatorStyle.Location = new System.Drawing.Point(10, 28);
+ this.grpAzimuthIndicatorStyle.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.grpAzimuthIndicatorStyle.Name = "grpAzimuthIndicatorStyle";
- this.grpAzimuthIndicatorStyle.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.grpAzimuthIndicatorStyle.Size = new System.Drawing.Size(539, 222);
+ this.grpAzimuthIndicatorStyle.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.grpAzimuthIndicatorStyle.Size = new System.Drawing.Size(270, 115);
this.grpAzimuthIndicatorStyle.TabIndex = 77;
this.grpAzimuthIndicatorStyle.TabStop = false;
this.grpAzimuthIndicatorStyle.Text = "Style";
@@ -1105,10 +1105,10 @@ private void InitializeComponent()
// rdoAzimuthIndicatorStyleScope
//
this.rdoAzimuthIndicatorStyleScope.AutoSize = true;
- this.rdoAzimuthIndicatorStyleScope.Location = new System.Drawing.Point(12, 31);
- this.rdoAzimuthIndicatorStyleScope.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.rdoAzimuthIndicatorStyleScope.Location = new System.Drawing.Point(6, 16);
+ this.rdoAzimuthIndicatorStyleScope.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.rdoAzimuthIndicatorStyleScope.Name = "rdoAzimuthIndicatorStyleScope";
- this.rdoAzimuthIndicatorStyleScope.Size = new System.Drawing.Size(153, 29);
+ this.rdoAzimuthIndicatorStyleScope.Size = new System.Drawing.Size(81, 17);
this.rdoAzimuthIndicatorStyleScope.TabIndex = 11;
this.rdoAzimuthIndicatorStyleScope.TabStop = true;
this.rdoAzimuthIndicatorStyleScope.Text = "CRT Scope";
@@ -1118,10 +1118,10 @@ private void InitializeComponent()
// rdoAzimuthIndicatorStyleDigital
//
this.rdoAzimuthIndicatorStyleDigital.AutoSize = true;
- this.rdoAzimuthIndicatorStyleDigital.Location = new System.Drawing.Point(11, 75);
- this.rdoAzimuthIndicatorStyleDigital.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.rdoAzimuthIndicatorStyleDigital.Location = new System.Drawing.Point(6, 39);
+ this.rdoAzimuthIndicatorStyleDigital.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.rdoAzimuthIndicatorStyleDigital.Name = "rdoAzimuthIndicatorStyleDigital";
- this.rdoAzimuthIndicatorStyleDigital.Size = new System.Drawing.Size(159, 29);
+ this.rdoAzimuthIndicatorStyleDigital.Size = new System.Drawing.Size(82, 17);
this.rdoAzimuthIndicatorStyleDigital.TabIndex = 12;
this.rdoAzimuthIndicatorStyleDigital.TabStop = true;
this.rdoAzimuthIndicatorStyleDigital.Text = "TFT Display";
@@ -1133,11 +1133,11 @@ private void InitializeComponent()
this.grpAzimuthIndicatorBezelTypes.Controls.Add(this.rdoAzimuthIndicatorNoBezel);
this.grpAzimuthIndicatorBezelTypes.Controls.Add(this.rdoAzimuthIndicatorHAFBezelType);
this.grpAzimuthIndicatorBezelTypes.Controls.Add(this.rdoAzimuthIndicatorIP1310BezelType);
- this.grpAzimuthIndicatorBezelTypes.Location = new System.Drawing.Point(36, 129);
- this.grpAzimuthIndicatorBezelTypes.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.grpAzimuthIndicatorBezelTypes.Location = new System.Drawing.Point(18, 67);
+ this.grpAzimuthIndicatorBezelTypes.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.grpAzimuthIndicatorBezelTypes.Name = "grpAzimuthIndicatorBezelTypes";
- this.grpAzimuthIndicatorBezelTypes.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.grpAzimuthIndicatorBezelTypes.Size = new System.Drawing.Size(477, 82);
+ this.grpAzimuthIndicatorBezelTypes.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.grpAzimuthIndicatorBezelTypes.Size = new System.Drawing.Size(238, 43);
this.grpAzimuthIndicatorBezelTypes.TabIndex = 13;
this.grpAzimuthIndicatorBezelTypes.TabStop = false;
this.grpAzimuthIndicatorBezelTypes.Text = "Bezel Type";
@@ -1145,36 +1145,36 @@ private void InitializeComponent()
// rdoAzimuthIndicatorNoBezel
//
this.rdoAzimuthIndicatorNoBezel.AutoSize = true;
- this.rdoAzimuthIndicatorNoBezel.Location = new System.Drawing.Point(365, 36);
- this.rdoAzimuthIndicatorNoBezel.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.rdoAzimuthIndicatorNoBezel.Location = new System.Drawing.Point(182, 19);
+ this.rdoAzimuthIndicatorNoBezel.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.rdoAzimuthIndicatorNoBezel.Name = "rdoAzimuthIndicatorNoBezel";
- this.rdoAzimuthIndicatorNoBezel.Size = new System.Drawing.Size(94, 29);
+ this.rdoAzimuthIndicatorNoBezel.Size = new System.Drawing.Size(51, 17);
this.rdoAzimuthIndicatorNoBezel.TabIndex = 3;
this.rdoAzimuthIndicatorNoBezel.TabStop = true;
this.rdoAzimuthIndicatorNoBezel.Text = "None";
this.rdoAzimuthIndicatorNoBezel.UseVisualStyleBackColor = true;
this.rdoAzimuthIndicatorNoBezel.CheckedChanged += new System.EventHandler(this.rdoAzimuthIndicatorNoBezel_CheckedChanged);
//
- // rdoRWRHAFBezelType
+ // rdoAzimuthIndicatorHAFBezelType
//
this.rdoAzimuthIndicatorHAFBezelType.AutoSize = true;
- this.rdoAzimuthIndicatorHAFBezelType.Location = new System.Drawing.Point(261, 36);
- this.rdoAzimuthIndicatorHAFBezelType.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.rdoAzimuthIndicatorHAFBezelType.Name = "rdoRWRHAFBezelType";
- this.rdoAzimuthIndicatorHAFBezelType.Size = new System.Drawing.Size(85, 29);
+ this.rdoAzimuthIndicatorHAFBezelType.Location = new System.Drawing.Point(130, 19);
+ this.rdoAzimuthIndicatorHAFBezelType.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.rdoAzimuthIndicatorHAFBezelType.Name = "rdoAzimuthIndicatorHAFBezelType";
+ this.rdoAzimuthIndicatorHAFBezelType.Size = new System.Drawing.Size(46, 17);
this.rdoAzimuthIndicatorHAFBezelType.TabIndex = 2;
this.rdoAzimuthIndicatorHAFBezelType.TabStop = true;
this.rdoAzimuthIndicatorHAFBezelType.Text = "HAF";
this.rdoAzimuthIndicatorHAFBezelType.UseVisualStyleBackColor = true;
this.rdoAzimuthIndicatorHAFBezelType.CheckedChanged += new System.EventHandler(this.rdoAzimuthIndicatorHAFBezelType_CheckedChanged);
//
- // rdoRWRIP1310BezelType
+ // rdoAzimuthIndicatorIP1310BezelType
//
this.rdoAzimuthIndicatorIP1310BezelType.AutoSize = true;
- this.rdoAzimuthIndicatorIP1310BezelType.Location = new System.Drawing.Point(0, 36);
- this.rdoAzimuthIndicatorIP1310BezelType.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.rdoAzimuthIndicatorIP1310BezelType.Name = "rdoRWRIP1310BezelType";
- this.rdoAzimuthIndicatorIP1310BezelType.Size = new System.Drawing.Size(227, 29);
+ this.rdoAzimuthIndicatorIP1310BezelType.Location = new System.Drawing.Point(0, 19);
+ this.rdoAzimuthIndicatorIP1310BezelType.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.rdoAzimuthIndicatorIP1310BezelType.Name = "rdoAzimuthIndicatorIP1310BezelType";
+ this.rdoAzimuthIndicatorIP1310BezelType.Size = new System.Drawing.Size(119, 17);
this.rdoAzimuthIndicatorIP1310BezelType.TabIndex = 1;
this.rdoAzimuthIndicatorIP1310BezelType.TabStop = true;
this.rdoAzimuthIndicatorIP1310BezelType.Text = "IP-1310/ALR (USA)";
@@ -1185,11 +1185,11 @@ private void InitializeComponent()
//
this.grpAzimuthIndicatorDigitalTypes.Controls.Add(this.rdoTTD);
this.grpAzimuthIndicatorDigitalTypes.Controls.Add(this.rdoATDPlus);
- this.grpAzimuthIndicatorDigitalTypes.Location = new System.Drawing.Point(36, 129);
- this.grpAzimuthIndicatorDigitalTypes.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.grpAzimuthIndicatorDigitalTypes.Location = new System.Drawing.Point(18, 67);
+ this.grpAzimuthIndicatorDigitalTypes.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.grpAzimuthIndicatorDigitalTypes.Name = "grpAzimuthIndicatorDigitalTypes";
- this.grpAzimuthIndicatorDigitalTypes.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.grpAzimuthIndicatorDigitalTypes.Size = new System.Drawing.Size(477, 82);
+ this.grpAzimuthIndicatorDigitalTypes.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.grpAzimuthIndicatorDigitalTypes.Size = new System.Drawing.Size(238, 43);
this.grpAzimuthIndicatorDigitalTypes.TabIndex = 13;
this.grpAzimuthIndicatorDigitalTypes.TabStop = false;
this.grpAzimuthIndicatorDigitalTypes.Text = "Display Type";
@@ -1198,10 +1198,10 @@ private void InitializeComponent()
//
this.rdoTTD.AutoSize = true;
this.rdoTTD.Enabled = false;
- this.rdoTTD.Location = new System.Drawing.Point(131, 36);
- this.rdoTTD.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.rdoTTD.Location = new System.Drawing.Point(66, 19);
+ this.rdoTTD.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.rdoTTD.Name = "rdoTTD";
- this.rdoTTD.Size = new System.Drawing.Size(84, 29);
+ this.rdoTTD.Size = new System.Drawing.Size(47, 17);
this.rdoTTD.TabIndex = 2;
this.rdoTTD.TabStop = true;
this.rdoTTD.Text = "TTD";
@@ -1210,10 +1210,10 @@ private void InitializeComponent()
// rdoATDPlus
//
this.rdoATDPlus.AutoSize = true;
- this.rdoATDPlus.Location = new System.Drawing.Point(12, 36);
- this.rdoATDPlus.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.rdoATDPlus.Location = new System.Drawing.Point(6, 19);
+ this.rdoATDPlus.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.rdoATDPlus.Name = "rdoATDPlus";
- this.rdoATDPlus.Size = new System.Drawing.Size(97, 29);
+ this.rdoATDPlus.Size = new System.Drawing.Size(53, 17);
this.rdoATDPlus.TabIndex = 1;
this.rdoATDPlus.TabStop = true;
this.rdoATDPlus.Text = "ATD+";
@@ -1229,11 +1229,11 @@ private void InitializeComponent()
this.tabEngineInstruments.Controls.Add(this.gbFuelQuantityOptions);
this.tabEngineInstruments.Controls.Add(this.chkFuelQty);
this.tabEngineInstruments.Controls.Add(this.pbRecoverFuelQuantity);
- this.tabEngineInstruments.Location = new System.Drawing.Point(8, 70);
- this.tabEngineInstruments.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabEngineInstruments.Location = new System.Drawing.Point(4, 40);
+ this.tabEngineInstruments.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabEngineInstruments.Name = "tabEngineInstruments";
- this.tabEngineInstruments.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabEngineInstruments.Size = new System.Drawing.Size(1019, 817);
+ this.tabEngineInstruments.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabEngineInstruments.Size = new System.Drawing.Size(508, 417);
this.tabEngineInstruments.TabIndex = 10;
this.tabEngineInstruments.Text = "Engine & Fuel Instruments";
this.tabEngineInstruments.UseVisualStyleBackColor = true;
@@ -1241,10 +1241,10 @@ private void InitializeComponent()
// chkFuelFlow
//
this.chkFuelFlow.AutoSize = true;
- this.chkFuelFlow.Location = new System.Drawing.Point(24, 500);
- this.chkFuelFlow.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkFuelFlow.Location = new System.Drawing.Point(12, 260);
+ this.chkFuelFlow.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkFuelFlow.Name = "chkFuelFlow";
- this.chkFuelFlow.Size = new System.Drawing.Size(225, 29);
+ this.chkFuelFlow.Size = new System.Drawing.Size(115, 17);
this.chkFuelFlow.TabIndex = 29;
this.chkFuelFlow.Text = "Fuel Flow Indicator";
this.chkFuelFlow.UseVisualStyleBackColor = true;
@@ -1256,12 +1256,12 @@ private void InitializeComponent()
this.pbRecoverFuelFlow.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverFuelFlow.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverFuelFlow.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverFuelFlow.Location = new System.Drawing.Point(547, 500);
- this.pbRecoverFuelFlow.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverFuelFlow.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverFuelFlow.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverFuelFlow.Location = new System.Drawing.Point(274, 260);
+ this.pbRecoverFuelFlow.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverFuelFlow.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverFuelFlow.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverFuelFlow.Name = "pbRecoverFuelFlow";
- this.pbRecoverFuelFlow.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverFuelFlow.Size = new System.Drawing.Size(16, 16);
this.pbRecoverFuelFlow.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverFuelFlow.TabIndex = 46;
this.pbRecoverFuelFlow.TabStop = false;
@@ -1269,6 +1269,7 @@ private void InitializeComponent()
//
// gbEngine1Instros
//
+ this.gbEngine1Instros.Controls.Add(this.chkRPMPW);
this.gbEngine1Instros.Controls.Add(this.chkFTIT1);
this.gbEngine1Instros.Controls.Add(this.pbRecoverRPM1);
this.gbEngine1Instros.Controls.Add(this.pbRecoverOil1);
@@ -1277,11 +1278,11 @@ private void InitializeComponent()
this.gbEngine1Instros.Controls.Add(this.chkRPM1);
this.gbEngine1Instros.Controls.Add(this.chkOIL1);
this.gbEngine1Instros.Controls.Add(this.chkNOZ1);
- this.gbEngine1Instros.Location = new System.Drawing.Point(12, 11);
- this.gbEngine1Instros.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.gbEngine1Instros.Location = new System.Drawing.Point(6, 6);
+ this.gbEngine1Instros.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.gbEngine1Instros.Name = "gbEngine1Instros";
- this.gbEngine1Instros.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.gbEngine1Instros.Size = new System.Drawing.Size(595, 232);
+ this.gbEngine1Instros.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.gbEngine1Instros.Size = new System.Drawing.Size(298, 121);
this.gbEngine1Instros.TabIndex = 56;
this.gbEngine1Instros.TabStop = false;
this.gbEngine1Instros.Text = "Engine 1 Instruments";
@@ -1289,10 +1290,10 @@ private void InitializeComponent()
// chkFTIT1
//
this.chkFTIT1.AutoSize = true;
- this.chkFTIT1.Location = new System.Drawing.Point(12, 42);
- this.chkFTIT1.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkFTIT1.Location = new System.Drawing.Point(6, 22);
+ this.chkFTIT1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkFTIT1.Name = "chkFTIT1";
- this.chkFTIT1.Size = new System.Drawing.Size(158, 29);
+ this.chkFTIT1.Size = new System.Drawing.Size(84, 17);
this.chkFTIT1.TabIndex = 20;
this.chkFTIT1.Text = "FTIT Gauge";
this.chkFTIT1.UseVisualStyleBackColor = true;
@@ -1304,12 +1305,12 @@ private void InitializeComponent()
this.pbRecoverRPM1.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverRPM1.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverRPM1.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverRPM1.Location = new System.Drawing.Point(533, 175);
- this.pbRecoverRPM1.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverRPM1.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverRPM1.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverRPM1.Location = new System.Drawing.Point(266, 91);
+ this.pbRecoverRPM1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverRPM1.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverRPM1.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverRPM1.Name = "pbRecoverRPM1";
- this.pbRecoverRPM1.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverRPM1.Size = new System.Drawing.Size(16, 16);
this.pbRecoverRPM1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverRPM1.TabIndex = 40;
this.pbRecoverRPM1.TabStop = false;
@@ -1321,12 +1322,12 @@ private void InitializeComponent()
this.pbRecoverOil1.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverOil1.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverOil1.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverOil1.Location = new System.Drawing.Point(533, 131);
- this.pbRecoverOil1.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverOil1.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverOil1.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverOil1.Location = new System.Drawing.Point(266, 68);
+ this.pbRecoverOil1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverOil1.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverOil1.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverOil1.Name = "pbRecoverOil1";
- this.pbRecoverOil1.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverOil1.Size = new System.Drawing.Size(16, 16);
this.pbRecoverOil1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverOil1.TabIndex = 39;
this.pbRecoverOil1.TabStop = false;
@@ -1338,12 +1339,12 @@ private void InitializeComponent()
this.pbRecoverNOZ1.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverNOZ1.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverNOZ1.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverNOZ1.Location = new System.Drawing.Point(533, 86);
- this.pbRecoverNOZ1.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverNOZ1.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverNOZ1.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverNOZ1.Location = new System.Drawing.Point(266, 45);
+ this.pbRecoverNOZ1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverNOZ1.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverNOZ1.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverNOZ1.Name = "pbRecoverNOZ1";
- this.pbRecoverNOZ1.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverNOZ1.Size = new System.Drawing.Size(16, 16);
this.pbRecoverNOZ1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverNOZ1.TabIndex = 38;
this.pbRecoverNOZ1.TabStop = false;
@@ -1355,12 +1356,12 @@ private void InitializeComponent()
this.pbRecoverFTIT1.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverFTIT1.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverFTIT1.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverFTIT1.Location = new System.Drawing.Point(533, 42);
- this.pbRecoverFTIT1.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverFTIT1.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverFTIT1.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverFTIT1.Location = new System.Drawing.Point(266, 22);
+ this.pbRecoverFTIT1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverFTIT1.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverFTIT1.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverFTIT1.Name = "pbRecoverFTIT1";
- this.pbRecoverFTIT1.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverFTIT1.Size = new System.Drawing.Size(16, 16);
this.pbRecoverFTIT1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverFTIT1.TabIndex = 37;
this.pbRecoverFTIT1.TabStop = false;
@@ -1369,10 +1370,10 @@ private void InitializeComponent()
// chkRPM1
//
this.chkRPM1.AutoSize = true;
- this.chkRPM1.Location = new System.Drawing.Point(12, 175);
- this.chkRPM1.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkRPM1.Location = new System.Drawing.Point(6, 91);
+ this.chkRPM1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkRPM1.Name = "chkRPM1";
- this.chkRPM1.Size = new System.Drawing.Size(161, 29);
+ this.chkRPM1.Size = new System.Drawing.Size(85, 17);
this.chkRPM1.TabIndex = 23;
this.chkRPM1.Text = "RPM Gauge";
this.chkRPM1.UseVisualStyleBackColor = true;
@@ -1381,10 +1382,10 @@ private void InitializeComponent()
// chkOIL1
//
this.chkOIL1.AutoSize = true;
- this.chkOIL1.Location = new System.Drawing.Point(12, 131);
- this.chkOIL1.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkOIL1.Location = new System.Drawing.Point(6, 68);
+ this.chkOIL1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkOIL1.Name = "chkOIL1";
- this.chkOIL1.Size = new System.Drawing.Size(232, 29);
+ this.chkOIL1.Size = new System.Drawing.Size(117, 17);
this.chkOIL1.TabIndex = 22;
this.chkOIL1.Text = "Oil Pressure Gauge";
this.chkOIL1.UseVisualStyleBackColor = true;
@@ -1393,10 +1394,10 @@ private void InitializeComponent()
// chkNOZ1
//
this.chkNOZ1.AutoSize = true;
- this.chkNOZ1.Location = new System.Drawing.Point(12, 86);
- this.chkNOZ1.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkNOZ1.Location = new System.Drawing.Point(6, 45);
+ this.chkNOZ1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkNOZ1.Name = "chkNOZ1";
- this.chkNOZ1.Size = new System.Drawing.Size(281, 29);
+ this.chkNOZ1.Size = new System.Drawing.Size(142, 17);
this.chkNOZ1.TabIndex = 21;
this.chkNOZ1.Text = "Nozzle Position Indicator";
this.chkNOZ1.UseVisualStyleBackColor = true;
@@ -1412,11 +1413,11 @@ private void InitializeComponent()
this.gbEngine2Instros.Controls.Add(this.pbRecoverNOZ2);
this.gbEngine2Instros.Controls.Add(this.pbRecoverFTIT2);
this.gbEngine2Instros.Controls.Add(this.chkRPM2);
- this.gbEngine2Instros.Location = new System.Drawing.Point(12, 256);
- this.gbEngine2Instros.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.gbEngine2Instros.Location = new System.Drawing.Point(6, 133);
+ this.gbEngine2Instros.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.gbEngine2Instros.Name = "gbEngine2Instros";
- this.gbEngine2Instros.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.gbEngine2Instros.Size = new System.Drawing.Size(595, 232);
+ this.gbEngine2Instros.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.gbEngine2Instros.Size = new System.Drawing.Size(298, 121);
this.gbEngine2Instros.TabIndex = 57;
this.gbEngine2Instros.TabStop = false;
this.gbEngine2Instros.Text = "Engine 2 Instruments";
@@ -1424,10 +1425,10 @@ private void InitializeComponent()
// chkFTIT2
//
this.chkFTIT2.AutoSize = true;
- this.chkFTIT2.Location = new System.Drawing.Point(12, 40);
- this.chkFTIT2.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkFTIT2.Location = new System.Drawing.Point(6, 21);
+ this.chkFTIT2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkFTIT2.Name = "chkFTIT2";
- this.chkFTIT2.Size = new System.Drawing.Size(158, 29);
+ this.chkFTIT2.Size = new System.Drawing.Size(84, 17);
this.chkFTIT2.TabIndex = 24;
this.chkFTIT2.Text = "FTIT Gauge";
this.chkFTIT2.UseVisualStyleBackColor = true;
@@ -1436,10 +1437,10 @@ private void InitializeComponent()
// chkNOZ2
//
this.chkNOZ2.AutoSize = true;
- this.chkNOZ2.Location = new System.Drawing.Point(12, 85);
- this.chkNOZ2.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkNOZ2.Location = new System.Drawing.Point(6, 44);
+ this.chkNOZ2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkNOZ2.Name = "chkNOZ2";
- this.chkNOZ2.Size = new System.Drawing.Size(281, 29);
+ this.chkNOZ2.Size = new System.Drawing.Size(142, 17);
this.chkNOZ2.TabIndex = 25;
this.chkNOZ2.Text = "Nozzle Position Indicator";
this.chkNOZ2.UseVisualStyleBackColor = true;
@@ -1451,12 +1452,12 @@ private void InitializeComponent()
this.pbRecoverRPM2.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverRPM2.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverRPM2.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverRPM2.Location = new System.Drawing.Point(533, 172);
- this.pbRecoverRPM2.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverRPM2.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverRPM2.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverRPM2.Location = new System.Drawing.Point(266, 89);
+ this.pbRecoverRPM2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverRPM2.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverRPM2.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverRPM2.Name = "pbRecoverRPM2";
- this.pbRecoverRPM2.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverRPM2.Size = new System.Drawing.Size(16, 16);
this.pbRecoverRPM2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverRPM2.TabIndex = 44;
this.pbRecoverRPM2.TabStop = false;
@@ -1468,12 +1469,12 @@ private void InitializeComponent()
this.pbRecoverOil2.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverOil2.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverOil2.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverOil2.Location = new System.Drawing.Point(533, 129);
- this.pbRecoverOil2.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverOil2.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverOil2.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverOil2.Location = new System.Drawing.Point(266, 67);
+ this.pbRecoverOil2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverOil2.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverOil2.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverOil2.Name = "pbRecoverOil2";
- this.pbRecoverOil2.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverOil2.Size = new System.Drawing.Size(16, 16);
this.pbRecoverOil2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverOil2.TabIndex = 43;
this.pbRecoverOil2.TabStop = false;
@@ -1482,10 +1483,10 @@ private void InitializeComponent()
// chkOIL2
//
this.chkOIL2.AutoSize = true;
- this.chkOIL2.Location = new System.Drawing.Point(12, 129);
- this.chkOIL2.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkOIL2.Location = new System.Drawing.Point(6, 67);
+ this.chkOIL2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkOIL2.Name = "chkOIL2";
- this.chkOIL2.Size = new System.Drawing.Size(232, 29);
+ this.chkOIL2.Size = new System.Drawing.Size(117, 17);
this.chkOIL2.TabIndex = 26;
this.chkOIL2.Text = "Oil Pressure Gauge";
this.chkOIL2.UseVisualStyleBackColor = true;
@@ -1497,12 +1498,12 @@ private void InitializeComponent()
this.pbRecoverNOZ2.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverNOZ2.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverNOZ2.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverNOZ2.Location = new System.Drawing.Point(533, 85);
- this.pbRecoverNOZ2.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverNOZ2.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverNOZ2.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverNOZ2.Location = new System.Drawing.Point(266, 44);
+ this.pbRecoverNOZ2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverNOZ2.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverNOZ2.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverNOZ2.Name = "pbRecoverNOZ2";
- this.pbRecoverNOZ2.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverNOZ2.Size = new System.Drawing.Size(16, 16);
this.pbRecoverNOZ2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverNOZ2.TabIndex = 42;
this.pbRecoverNOZ2.TabStop = false;
@@ -1514,12 +1515,12 @@ private void InitializeComponent()
this.pbRecoverFTIT2.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverFTIT2.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverFTIT2.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverFTIT2.Location = new System.Drawing.Point(533, 40);
- this.pbRecoverFTIT2.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverFTIT2.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverFTIT2.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverFTIT2.Location = new System.Drawing.Point(266, 21);
+ this.pbRecoverFTIT2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverFTIT2.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverFTIT2.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverFTIT2.Name = "pbRecoverFTIT2";
- this.pbRecoverFTIT2.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverFTIT2.Size = new System.Drawing.Size(16, 16);
this.pbRecoverFTIT2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverFTIT2.TabIndex = 41;
this.pbRecoverFTIT2.TabStop = false;
@@ -1528,10 +1529,10 @@ private void InitializeComponent()
// chkRPM2
//
this.chkRPM2.AutoSize = true;
- this.chkRPM2.Location = new System.Drawing.Point(12, 172);
- this.chkRPM2.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkRPM2.Location = new System.Drawing.Point(6, 89);
+ this.chkRPM2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkRPM2.Name = "chkRPM2";
- this.chkRPM2.Size = new System.Drawing.Size(161, 29);
+ this.chkRPM2.Size = new System.Drawing.Size(85, 17);
this.chkRPM2.TabIndex = 27;
this.chkRPM2.Text = "RPM Gauge";
this.chkRPM2.UseVisualStyleBackColor = true;
@@ -1541,11 +1542,11 @@ private void InitializeComponent()
//
this.gbFuelQuantityOptions.Controls.Add(this.rdoFuelQuantityDModel);
this.gbFuelQuantityOptions.Controls.Add(this.rdoFuelQuantityNeedleCModel);
- this.gbFuelQuantityOptions.Location = new System.Drawing.Point(72, 589);
- this.gbFuelQuantityOptions.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.gbFuelQuantityOptions.Location = new System.Drawing.Point(36, 306);
+ this.gbFuelQuantityOptions.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.gbFuelQuantityOptions.Name = "gbFuelQuantityOptions";
- this.gbFuelQuantityOptions.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.gbFuelQuantityOptions.Size = new System.Drawing.Size(389, 79);
+ this.gbFuelQuantityOptions.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.gbFuelQuantityOptions.Size = new System.Drawing.Size(194, 41);
this.gbFuelQuantityOptions.TabIndex = 67;
this.gbFuelQuantityOptions.TabStop = false;
this.gbFuelQuantityOptions.Text = "Needle Style";
@@ -1553,10 +1554,10 @@ private void InitializeComponent()
// rdoFuelQuantityDModel
//
this.rdoFuelQuantityDModel.AutoSize = true;
- this.rdoFuelQuantityDModel.Location = new System.Drawing.Point(165, 36);
- this.rdoFuelQuantityDModel.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.rdoFuelQuantityDModel.Location = new System.Drawing.Point(82, 19);
+ this.rdoFuelQuantityDModel.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.rdoFuelQuantityDModel.Name = "rdoFuelQuantityDModel";
- this.rdoFuelQuantityDModel.Size = new System.Drawing.Size(123, 29);
+ this.rdoFuelQuantityDModel.Size = new System.Drawing.Size(65, 17);
this.rdoFuelQuantityDModel.TabIndex = 1;
this.rdoFuelQuantityDModel.TabStop = true;
this.rdoFuelQuantityDModel.Text = "D Model";
@@ -1566,10 +1567,10 @@ private void InitializeComponent()
// rdoFuelQuantityNeedleCModel
//
this.rdoFuelQuantityNeedleCModel.AutoSize = true;
- this.rdoFuelQuantityNeedleCModel.Location = new System.Drawing.Point(27, 36);
- this.rdoFuelQuantityNeedleCModel.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.rdoFuelQuantityNeedleCModel.Location = new System.Drawing.Point(14, 19);
+ this.rdoFuelQuantityNeedleCModel.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.rdoFuelQuantityNeedleCModel.Name = "rdoFuelQuantityNeedleCModel";
- this.rdoFuelQuantityNeedleCModel.Size = new System.Drawing.Size(123, 29);
+ this.rdoFuelQuantityNeedleCModel.Size = new System.Drawing.Size(64, 17);
this.rdoFuelQuantityNeedleCModel.TabIndex = 0;
this.rdoFuelQuantityNeedleCModel.TabStop = true;
this.rdoFuelQuantityNeedleCModel.Text = "C Model";
@@ -1579,10 +1580,10 @@ private void InitializeComponent()
// chkFuelQty
//
this.chkFuelQty.AutoSize = true;
- this.chkFuelQty.Location = new System.Drawing.Point(24, 544);
- this.chkFuelQty.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkFuelQty.Location = new System.Drawing.Point(12, 283);
+ this.chkFuelQty.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkFuelQty.Name = "chkFuelQty";
- this.chkFuelQty.Size = new System.Drawing.Size(260, 29);
+ this.chkFuelQty.Size = new System.Drawing.Size(132, 17);
this.chkFuelQty.TabIndex = 66;
this.chkFuelQty.Text = "Fuel Quantity Indicator";
this.chkFuelQty.UseVisualStyleBackColor = true;
@@ -1594,12 +1595,12 @@ private void InitializeComponent()
this.pbRecoverFuelQuantity.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverFuelQuantity.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverFuelQuantity.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverFuelQuantity.Location = new System.Drawing.Point(547, 544);
- this.pbRecoverFuelQuantity.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverFuelQuantity.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverFuelQuantity.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverFuelQuantity.Location = new System.Drawing.Point(274, 283);
+ this.pbRecoverFuelQuantity.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverFuelQuantity.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverFuelQuantity.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverFuelQuantity.Name = "pbRecoverFuelQuantity";
- this.pbRecoverFuelQuantity.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverFuelQuantity.Size = new System.Drawing.Size(16, 16);
this.pbRecoverFuelQuantity.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverFuelQuantity.TabIndex = 68;
this.pbRecoverFuelQuantity.TabStop = false;
@@ -1611,11 +1612,11 @@ private void InitializeComponent()
this.tabHydraulics.Controls.Add(this.pbRecoverHydA);
this.tabHydraulics.Controls.Add(this.pbRecoverHydB);
this.tabHydraulics.Controls.Add(this.chkHydB);
- this.tabHydraulics.Location = new System.Drawing.Point(8, 70);
- this.tabHydraulics.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabHydraulics.Location = new System.Drawing.Point(4, 40);
+ this.tabHydraulics.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabHydraulics.Name = "tabHydraulics";
- this.tabHydraulics.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabHydraulics.Size = new System.Drawing.Size(1019, 817);
+ this.tabHydraulics.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabHydraulics.Size = new System.Drawing.Size(507, 419);
this.tabHydraulics.TabIndex = 14;
this.tabHydraulics.Text = "Hydraulic Instruments";
this.tabHydraulics.UseVisualStyleBackColor = true;
@@ -1623,10 +1624,10 @@ private void InitializeComponent()
// chkHydA
//
this.chkHydA.AutoSize = true;
- this.chkHydA.Location = new System.Drawing.Point(12, 11);
- this.chkHydA.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkHydA.Location = new System.Drawing.Point(6, 6);
+ this.chkHydA.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkHydA.Name = "chkHydA";
- this.chkHydA.Size = new System.Drawing.Size(340, 29);
+ this.chkHydA.Size = new System.Drawing.Size(171, 17);
this.chkHydA.TabIndex = 69;
this.chkHydA.Text = "Hydraulic Pressure Indicator A ";
this.chkHydA.UseVisualStyleBackColor = true;
@@ -1638,12 +1639,12 @@ private void InitializeComponent()
this.pbRecoverHydA.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverHydA.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverHydA.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverHydA.Location = new System.Drawing.Point(532, 11);
- this.pbRecoverHydA.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverHydA.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverHydA.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverHydA.Location = new System.Drawing.Point(266, 6);
+ this.pbRecoverHydA.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverHydA.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverHydA.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverHydA.Name = "pbRecoverHydA";
- this.pbRecoverHydA.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverHydA.Size = new System.Drawing.Size(16, 16);
this.pbRecoverHydA.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverHydA.TabIndex = 71;
this.pbRecoverHydA.TabStop = false;
@@ -1655,12 +1656,12 @@ private void InitializeComponent()
this.pbRecoverHydB.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverHydB.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverHydB.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverHydB.Location = new System.Drawing.Point(532, 56);
- this.pbRecoverHydB.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverHydB.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverHydB.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverHydB.Location = new System.Drawing.Point(266, 29);
+ this.pbRecoverHydB.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverHydB.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverHydB.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverHydB.Name = "pbRecoverHydB";
- this.pbRecoverHydB.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverHydB.Size = new System.Drawing.Size(16, 16);
this.pbRecoverHydB.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverHydB.TabIndex = 72;
this.pbRecoverHydB.TabStop = false;
@@ -1669,10 +1670,10 @@ private void InitializeComponent()
// chkHydB
//
this.chkHydB.AutoSize = true;
- this.chkHydB.Location = new System.Drawing.Point(12, 54);
- this.chkHydB.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkHydB.Location = new System.Drawing.Point(6, 28);
+ this.chkHydB.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkHydB.Name = "chkHydB";
- this.chkHydB.Size = new System.Drawing.Size(334, 29);
+ this.chkHydB.Size = new System.Drawing.Size(168, 17);
this.chkHydB.TabIndex = 70;
this.chkHydB.Text = "Hydraulic Pressure Indicator B";
this.chkHydB.UseVisualStyleBackColor = true;
@@ -1684,11 +1685,11 @@ private void InitializeComponent()
this.tabFaults.Controls.Add(this.chkCautionPanel);
this.tabFaults.Controls.Add(this.pbRecoverCautionPanel);
this.tabFaults.Controls.Add(this.pbRecoverPFL);
- this.tabFaults.Location = new System.Drawing.Point(8, 70);
- this.tabFaults.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabFaults.Location = new System.Drawing.Point(4, 40);
+ this.tabFaults.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabFaults.Name = "tabFaults";
- this.tabFaults.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabFaults.Size = new System.Drawing.Size(1019, 817);
+ this.tabFaults.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabFaults.Size = new System.Drawing.Size(507, 419);
this.tabFaults.TabIndex = 7;
this.tabFaults.Text = "Fault Indicators";
this.tabFaults.UseVisualStyleBackColor = true;
@@ -1696,10 +1697,10 @@ private void InitializeComponent()
// chkPFL
//
this.chkPFL.AutoSize = true;
- this.chkPFL.Location = new System.Drawing.Point(12, 56);
- this.chkPFL.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkPFL.Location = new System.Drawing.Point(6, 29);
+ this.chkPFL.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkPFL.Name = "chkPFL";
- this.chkPFL.Size = new System.Drawing.Size(239, 29);
+ this.chkPFL.Size = new System.Drawing.Size(119, 17);
this.chkPFL.TabIndex = 74;
this.chkPFL.Text = "Pilot Fault List (PFL)";
this.chkPFL.UseVisualStyleBackColor = true;
@@ -1708,10 +1709,10 @@ private void InitializeComponent()
// chkCautionPanel
//
this.chkCautionPanel.AutoSize = true;
- this.chkCautionPanel.Location = new System.Drawing.Point(12, 11);
- this.chkCautionPanel.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkCautionPanel.Location = new System.Drawing.Point(6, 6);
+ this.chkCautionPanel.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkCautionPanel.Name = "chkCautionPanel";
- this.chkCautionPanel.Size = new System.Drawing.Size(179, 29);
+ this.chkCautionPanel.Size = new System.Drawing.Size(92, 17);
this.chkCautionPanel.TabIndex = 70;
this.chkCautionPanel.Text = "Caution Panel";
this.chkCautionPanel.UseVisualStyleBackColor = true;
@@ -1723,12 +1724,12 @@ private void InitializeComponent()
this.pbRecoverCautionPanel.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverCautionPanel.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverCautionPanel.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverCautionPanel.Location = new System.Drawing.Point(533, 11);
- this.pbRecoverCautionPanel.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverCautionPanel.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverCautionPanel.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverCautionPanel.Location = new System.Drawing.Point(266, 6);
+ this.pbRecoverCautionPanel.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverCautionPanel.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverCautionPanel.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverCautionPanel.Name = "pbRecoverCautionPanel";
- this.pbRecoverCautionPanel.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverCautionPanel.Size = new System.Drawing.Size(16, 16);
this.pbRecoverCautionPanel.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverCautionPanel.TabIndex = 71;
this.pbRecoverCautionPanel.TabStop = false;
@@ -1740,12 +1741,12 @@ private void InitializeComponent()
this.pbRecoverPFL.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverPFL.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverPFL.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverPFL.Location = new System.Drawing.Point(533, 56);
- this.pbRecoverPFL.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverPFL.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverPFL.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverPFL.Location = new System.Drawing.Point(266, 29);
+ this.pbRecoverPFL.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverPFL.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverPFL.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverPFL.Name = "pbRecoverPFL";
- this.pbRecoverPFL.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverPFL.Size = new System.Drawing.Size(16, 16);
this.pbRecoverPFL.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverPFL.TabIndex = 75;
this.pbRecoverPFL.TabStop = false;
@@ -1757,11 +1758,11 @@ private void InitializeComponent()
this.tabIndexers.Controls.Add(this.pbRecoverNWSIndexer);
this.tabIndexers.Controls.Add(this.chkAOAIndexer);
this.tabIndexers.Controls.Add(this.pbRecoverAOAIndexer);
- this.tabIndexers.Location = new System.Drawing.Point(8, 70);
- this.tabIndexers.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabIndexers.Location = new System.Drawing.Point(4, 40);
+ this.tabIndexers.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabIndexers.Name = "tabIndexers";
- this.tabIndexers.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabIndexers.Size = new System.Drawing.Size(1019, 817);
+ this.tabIndexers.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabIndexers.Size = new System.Drawing.Size(507, 419);
this.tabIndexers.TabIndex = 13;
this.tabIndexers.Text = "Indexers";
this.tabIndexers.UseVisualStyleBackColor = true;
@@ -1769,10 +1770,10 @@ private void InitializeComponent()
// chkNWSIndexer
//
this.chkNWSIndexer.AutoSize = true;
- this.chkNWSIndexer.Location = new System.Drawing.Point(12, 56);
- this.chkNWSIndexer.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkNWSIndexer.Location = new System.Drawing.Point(6, 29);
+ this.chkNWSIndexer.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkNWSIndexer.Name = "chkNWSIndexer";
- this.chkNWSIndexer.Size = new System.Drawing.Size(382, 29);
+ this.chkNWSIndexer.Size = new System.Drawing.Size(194, 17);
this.chkNWSIndexer.TabIndex = 95;
this.chkNWSIndexer.Text = "Nosewheel Steering (NWS) Indexer";
this.chkNWSIndexer.UseVisualStyleBackColor = true;
@@ -1784,12 +1785,12 @@ private void InitializeComponent()
this.pbRecoverNWSIndexer.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverNWSIndexer.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverNWSIndexer.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverNWSIndexer.Location = new System.Drawing.Point(533, 56);
- this.pbRecoverNWSIndexer.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverNWSIndexer.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverNWSIndexer.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverNWSIndexer.Location = new System.Drawing.Point(266, 29);
+ this.pbRecoverNWSIndexer.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverNWSIndexer.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverNWSIndexer.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverNWSIndexer.Name = "pbRecoverNWSIndexer";
- this.pbRecoverNWSIndexer.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverNWSIndexer.Size = new System.Drawing.Size(16, 16);
this.pbRecoverNWSIndexer.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverNWSIndexer.TabIndex = 96;
this.pbRecoverNWSIndexer.TabStop = false;
@@ -1798,10 +1799,10 @@ private void InitializeComponent()
// chkAOAIndexer
//
this.chkAOAIndexer.AutoSize = true;
- this.chkAOAIndexer.Location = new System.Drawing.Point(12, 11);
- this.chkAOAIndexer.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkAOAIndexer.Location = new System.Drawing.Point(6, 6);
+ this.chkAOAIndexer.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkAOAIndexer.Name = "chkAOAIndexer";
- this.chkAOAIndexer.Size = new System.Drawing.Size(330, 29);
+ this.chkAOAIndexer.Size = new System.Drawing.Size(168, 17);
this.chkAOAIndexer.TabIndex = 93;
this.chkAOAIndexer.Text = "Angle of Attack (AOA) Indexer";
this.chkAOAIndexer.UseVisualStyleBackColor = true;
@@ -1813,12 +1814,12 @@ private void InitializeComponent()
this.pbRecoverAOAIndexer.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverAOAIndexer.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverAOAIndexer.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverAOAIndexer.Location = new System.Drawing.Point(533, 11);
- this.pbRecoverAOAIndexer.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverAOAIndexer.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverAOAIndexer.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverAOAIndexer.Location = new System.Drawing.Point(266, 6);
+ this.pbRecoverAOAIndexer.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverAOAIndexer.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverAOAIndexer.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverAOAIndexer.Name = "pbRecoverAOAIndexer";
- this.pbRecoverAOAIndexer.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverAOAIndexer.Size = new System.Drawing.Size(16, 16);
this.pbRecoverAOAIndexer.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverAOAIndexer.TabIndex = 94;
this.pbRecoverAOAIndexer.TabStop = false;
@@ -1830,11 +1831,11 @@ private void InitializeComponent()
this.tabTrim.Controls.Add(this.pbRecoverPitchTrim);
this.tabTrim.Controls.Add(this.pbRecoverRollTrim);
this.tabTrim.Controls.Add(this.chkRollTrim);
- this.tabTrim.Location = new System.Drawing.Point(8, 70);
- this.tabTrim.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabTrim.Location = new System.Drawing.Point(4, 40);
+ this.tabTrim.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabTrim.Name = "tabTrim";
- this.tabTrim.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabTrim.Size = new System.Drawing.Size(1019, 817);
+ this.tabTrim.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabTrim.Size = new System.Drawing.Size(507, 419);
this.tabTrim.TabIndex = 6;
this.tabTrim.Text = "Manual Trim";
this.tabTrim.UseVisualStyleBackColor = true;
@@ -1842,10 +1843,10 @@ private void InitializeComponent()
// chkPitchTrim
//
this.chkPitchTrim.AutoSize = true;
- this.chkPitchTrim.Location = new System.Drawing.Point(12, 11);
- this.chkPitchTrim.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkPitchTrim.Location = new System.Drawing.Point(6, 6);
+ this.chkPitchTrim.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkPitchTrim.Name = "chkPitchTrim";
- this.chkPitchTrim.Size = new System.Drawing.Size(228, 29);
+ this.chkPitchTrim.Size = new System.Drawing.Size(117, 17);
this.chkPitchTrim.TabIndex = 39;
this.chkPitchTrim.Text = "Pitch Trim Indicator";
this.chkPitchTrim.UseVisualStyleBackColor = true;
@@ -1857,12 +1858,12 @@ private void InitializeComponent()
this.pbRecoverPitchTrim.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverPitchTrim.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverPitchTrim.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverPitchTrim.Location = new System.Drawing.Point(541, 11);
- this.pbRecoverPitchTrim.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverPitchTrim.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverPitchTrim.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverPitchTrim.Location = new System.Drawing.Point(270, 6);
+ this.pbRecoverPitchTrim.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverPitchTrim.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverPitchTrim.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverPitchTrim.Name = "pbRecoverPitchTrim";
- this.pbRecoverPitchTrim.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverPitchTrim.Size = new System.Drawing.Size(16, 16);
this.pbRecoverPitchTrim.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverPitchTrim.TabIndex = 65;
this.pbRecoverPitchTrim.TabStop = false;
@@ -1874,12 +1875,12 @@ private void InitializeComponent()
this.pbRecoverRollTrim.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverRollTrim.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverRollTrim.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverRollTrim.Location = new System.Drawing.Point(541, 56);
- this.pbRecoverRollTrim.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverRollTrim.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverRollTrim.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverRollTrim.Location = new System.Drawing.Point(270, 29);
+ this.pbRecoverRollTrim.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverRollTrim.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverRollTrim.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverRollTrim.Name = "pbRecoverRollTrim";
- this.pbRecoverRollTrim.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverRollTrim.Size = new System.Drawing.Size(16, 16);
this.pbRecoverRollTrim.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverRollTrim.TabIndex = 63;
this.pbRecoverRollTrim.TabStop = false;
@@ -1888,10 +1889,10 @@ private void InitializeComponent()
// chkRollTrim
//
this.chkRollTrim.AutoSize = true;
- this.chkRollTrim.Location = new System.Drawing.Point(12, 56);
- this.chkRollTrim.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkRollTrim.Location = new System.Drawing.Point(6, 29);
+ this.chkRollTrim.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkRollTrim.Name = "chkRollTrim";
- this.chkRollTrim.Size = new System.Drawing.Size(217, 29);
+ this.chkRollTrim.Size = new System.Drawing.Size(111, 17);
this.chkRollTrim.TabIndex = 40;
this.chkRollTrim.Text = "Roll Trim Indicator";
this.chkRollTrim.UseVisualStyleBackColor = true;
@@ -1901,11 +1902,11 @@ private void InitializeComponent()
//
this.tabEPU.Controls.Add(this.chkEPU);
this.tabEPU.Controls.Add(this.pbRecoverEPUFuel);
- this.tabEPU.Location = new System.Drawing.Point(8, 70);
- this.tabEPU.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabEPU.Location = new System.Drawing.Point(4, 40);
+ this.tabEPU.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabEPU.Name = "tabEPU";
- this.tabEPU.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabEPU.Size = new System.Drawing.Size(1019, 817);
+ this.tabEPU.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabEPU.Size = new System.Drawing.Size(507, 419);
this.tabEPU.TabIndex = 15;
this.tabEPU.Text = "EPU";
this.tabEPU.UseVisualStyleBackColor = true;
@@ -1913,10 +1914,10 @@ private void InitializeComponent()
// chkEPU
//
this.chkEPU.AutoSize = true;
- this.chkEPU.Location = new System.Drawing.Point(12, 11);
- this.chkEPU.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkEPU.Location = new System.Drawing.Point(6, 6);
+ this.chkEPU.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkEPU.Name = "chkEPU";
- this.chkEPU.Size = new System.Drawing.Size(205, 29);
+ this.chkEPU.Size = new System.Drawing.Size(106, 17);
this.chkEPU.TabIndex = 64;
this.chkEPU.Text = "EPU Fuel Gauge";
this.chkEPU.UseVisualStyleBackColor = true;
@@ -1928,12 +1929,12 @@ private void InitializeComponent()
this.pbRecoverEPUFuel.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverEPUFuel.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverEPUFuel.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverEPUFuel.Location = new System.Drawing.Point(533, 11);
- this.pbRecoverEPUFuel.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverEPUFuel.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverEPUFuel.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverEPUFuel.Location = new System.Drawing.Point(266, 6);
+ this.pbRecoverEPUFuel.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverEPUFuel.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverEPUFuel.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverEPUFuel.Name = "pbRecoverEPUFuel";
- this.pbRecoverEPUFuel.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverEPUFuel.Size = new System.Drawing.Size(16, 16);
this.pbRecoverEPUFuel.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverEPUFuel.TabIndex = 65;
this.pbRecoverEPUFuel.TabStop = false;
@@ -1945,11 +1946,11 @@ private void InitializeComponent()
this.tabGearAndBrakes.Controls.Add(this.pbRecoverSpeedbrake);
this.tabGearAndBrakes.Controls.Add(this.chkGearLights);
this.tabGearAndBrakes.Controls.Add(this.pbRecoverGearLights);
- this.tabGearAndBrakes.Location = new System.Drawing.Point(8, 70);
- this.tabGearAndBrakes.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabGearAndBrakes.Location = new System.Drawing.Point(4, 40);
+ this.tabGearAndBrakes.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabGearAndBrakes.Name = "tabGearAndBrakes";
- this.tabGearAndBrakes.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabGearAndBrakes.Size = new System.Drawing.Size(1019, 817);
+ this.tabGearAndBrakes.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabGearAndBrakes.Size = new System.Drawing.Size(507, 419);
this.tabGearAndBrakes.TabIndex = 16;
this.tabGearAndBrakes.Text = "Gear & Brakes";
this.tabGearAndBrakes.UseVisualStyleBackColor = true;
@@ -1957,10 +1958,10 @@ private void InitializeComponent()
// chkSpeedbrake
//
this.chkSpeedbrake.AutoSize = true;
- this.chkSpeedbrake.Location = new System.Drawing.Point(12, 56);
- this.chkSpeedbrake.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkSpeedbrake.Location = new System.Drawing.Point(6, 29);
+ this.chkSpeedbrake.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkSpeedbrake.Name = "chkSpeedbrake";
- this.chkSpeedbrake.Size = new System.Drawing.Size(339, 29);
+ this.chkSpeedbrake.Size = new System.Drawing.Size(172, 17);
this.chkSpeedbrake.TabIndex = 67;
this.chkSpeedbrake.Text = "Speed Brake Position Indicator";
this.chkSpeedbrake.UseVisualStyleBackColor = true;
@@ -1972,12 +1973,12 @@ private void InitializeComponent()
this.pbRecoverSpeedbrake.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverSpeedbrake.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverSpeedbrake.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverSpeedbrake.Location = new System.Drawing.Point(528, 56);
- this.pbRecoverSpeedbrake.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverSpeedbrake.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverSpeedbrake.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverSpeedbrake.Location = new System.Drawing.Point(264, 29);
+ this.pbRecoverSpeedbrake.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverSpeedbrake.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverSpeedbrake.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverSpeedbrake.Name = "pbRecoverSpeedbrake";
- this.pbRecoverSpeedbrake.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverSpeedbrake.Size = new System.Drawing.Size(16, 16);
this.pbRecoverSpeedbrake.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverSpeedbrake.TabIndex = 68;
this.pbRecoverSpeedbrake.TabStop = false;
@@ -1986,10 +1987,10 @@ private void InitializeComponent()
// chkGearLights
//
this.chkGearLights.AutoSize = true;
- this.chkGearLights.Location = new System.Drawing.Point(12, 11);
- this.chkGearLights.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkGearLights.Location = new System.Drawing.Point(6, 6);
+ this.chkGearLights.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkGearLights.Name = "chkGearLights";
- this.chkGearLights.Size = new System.Drawing.Size(240, 29);
+ this.chkGearLights.Size = new System.Drawing.Size(124, 17);
this.chkGearLights.TabIndex = 66;
this.chkGearLights.Text = "Wheels Down Lights";
this.chkGearLights.UseVisualStyleBackColor = true;
@@ -2001,12 +2002,12 @@ private void InitializeComponent()
this.pbRecoverGearLights.ErrorImage = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverGearLights.Image = global::MFDExtractor.Properties.Resources.restore;
this.pbRecoverGearLights.InitialImage = global::MFDExtractor.Properties.Resources.restore;
- this.pbRecoverGearLights.Location = new System.Drawing.Point(528, 11);
- this.pbRecoverGearLights.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.pbRecoverGearLights.MaximumSize = new System.Drawing.Size(32, 31);
- this.pbRecoverGearLights.MinimumSize = new System.Drawing.Size(32, 31);
+ this.pbRecoverGearLights.Location = new System.Drawing.Point(264, 6);
+ this.pbRecoverGearLights.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.pbRecoverGearLights.MaximumSize = new System.Drawing.Size(16, 16);
+ this.pbRecoverGearLights.MinimumSize = new System.Drawing.Size(16, 16);
this.pbRecoverGearLights.Name = "pbRecoverGearLights";
- this.pbRecoverGearLights.Size = new System.Drawing.Size(32, 31);
+ this.pbRecoverGearLights.Size = new System.Drawing.Size(16, 16);
this.pbRecoverGearLights.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbRecoverGearLights.TabIndex = 69;
this.pbRecoverGearLights.TabStop = false;
@@ -2015,11 +2016,11 @@ private void InitializeComponent()
// tabHotkeys
//
this.tabHotkeys.Controls.Add(this.panel2);
- this.tabHotkeys.Location = new System.Drawing.Point(8, 39);
- this.tabHotkeys.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabHotkeys.Location = new System.Drawing.Point(4, 22);
+ this.tabHotkeys.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabHotkeys.Name = "tabHotkeys";
- this.tabHotkeys.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabHotkeys.Size = new System.Drawing.Size(1040, 902);
+ this.tabHotkeys.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabHotkeys.Size = new System.Drawing.Size(520, 467);
this.tabHotkeys.TabIndex = 6;
this.tabHotkeys.Text = "Hotkeys";
this.tabHotkeys.UseVisualStyleBackColor = true;
@@ -2028,10 +2029,10 @@ private void InitializeComponent()
//
this.panel2.Controls.Add(this.tabHotkeysInner);
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel2.Location = new System.Drawing.Point(5, 6);
- this.panel2.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.panel2.Location = new System.Drawing.Point(2, 3);
+ this.panel2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(1030, 890);
+ this.panel2.Size = new System.Drawing.Size(516, 461);
this.panel2.TabIndex = 156;
//
// tabHotkeysInner
@@ -2044,21 +2045,21 @@ private void InitializeComponent()
this.tabHotkeysInner.Controls.Add(this.tabISISKeys);
this.tabHotkeysInner.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabHotkeysInner.Location = new System.Drawing.Point(0, 0);
- this.tabHotkeysInner.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabHotkeysInner.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabHotkeysInner.Name = "tabHotkeysInner";
this.tabHotkeysInner.SelectedIndex = 0;
- this.tabHotkeysInner.Size = new System.Drawing.Size(1030, 890);
+ this.tabHotkeysInner.Size = new System.Drawing.Size(516, 461);
this.tabHotkeysInner.TabIndex = 156;
//
// tabGeneralKeys
//
this.tabGeneralKeys.Controls.Add(this.lblNVIS);
this.tabGeneralKeys.Controls.Add(this.cmdNV);
- this.tabGeneralKeys.Location = new System.Drawing.Point(8, 39);
- this.tabGeneralKeys.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabGeneralKeys.Location = new System.Drawing.Point(4, 22);
+ this.tabGeneralKeys.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabGeneralKeys.Name = "tabGeneralKeys";
- this.tabGeneralKeys.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabGeneralKeys.Size = new System.Drawing.Size(1014, 843);
+ this.tabGeneralKeys.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabGeneralKeys.Size = new System.Drawing.Size(508, 435);
this.tabGeneralKeys.TabIndex = 0;
this.tabGeneralKeys.Text = "General";
this.tabGeneralKeys.UseVisualStyleBackColor = true;
@@ -2066,19 +2067,19 @@ private void InitializeComponent()
// lblNVIS
//
this.lblNVIS.AutoSize = true;
- this.lblNVIS.Location = new System.Drawing.Point(20, 19);
- this.lblNVIS.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblNVIS.Location = new System.Drawing.Point(10, 10);
+ this.lblNVIS.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblNVIS.Name = "lblNVIS";
- this.lblNVIS.Size = new System.Drawing.Size(198, 25);
+ this.lblNVIS.Size = new System.Drawing.Size(101, 13);
this.lblNVIS.TabIndex = 7;
this.lblNVIS.Text = "NVIS Mode Toggle:";
//
// cmdNV
//
- this.cmdNV.Location = new System.Drawing.Point(235, 10);
- this.cmdNV.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdNV.Location = new System.Drawing.Point(118, 5);
+ this.cmdNV.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdNV.Name = "cmdNV";
- this.cmdNV.Size = new System.Drawing.Size(149, 44);
+ this.cmdNV.Size = new System.Drawing.Size(74, 23);
this.cmdNV.TabIndex = 8;
this.cmdNV.Text = "View/Set...";
this.cmdNV.UseVisualStyleBackColor = true;
@@ -2087,11 +2088,11 @@ private void InitializeComponent()
// tabAccelerometerKeys
//
this.tabAccelerometerKeys.Controls.Add(this.gbAccelerometer);
- this.tabAccelerometerKeys.Location = new System.Drawing.Point(8, 39);
- this.tabAccelerometerKeys.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabAccelerometerKeys.Location = new System.Drawing.Point(4, 22);
+ this.tabAccelerometerKeys.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabAccelerometerKeys.Name = "tabAccelerometerKeys";
- this.tabAccelerometerKeys.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabAccelerometerKeys.Size = new System.Drawing.Size(1019, 848);
+ this.tabAccelerometerKeys.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabAccelerometerKeys.Size = new System.Drawing.Size(507, 437);
this.tabAccelerometerKeys.TabIndex = 4;
this.tabAccelerometerKeys.Text = "Accelerometer";
this.tabAccelerometerKeys.UseVisualStyleBackColor = true;
@@ -2099,11 +2100,11 @@ private void InitializeComponent()
// gbAccelerometer
//
this.gbAccelerometer.Controls.Add(this.groupBox5);
- this.gbAccelerometer.Location = new System.Drawing.Point(12, 11);
- this.gbAccelerometer.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.gbAccelerometer.Location = new System.Drawing.Point(6, 6);
+ this.gbAccelerometer.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.gbAccelerometer.Name = "gbAccelerometer";
- this.gbAccelerometer.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.gbAccelerometer.Size = new System.Drawing.Size(381, 171);
+ this.gbAccelerometer.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.gbAccelerometer.Size = new System.Drawing.Size(190, 89);
this.gbAccelerometer.TabIndex = 11;
this.gbAccelerometer.TabStop = false;
this.gbAccelerometer.Text = "Accelerometer Hotkeys";
@@ -2112,21 +2113,21 @@ private void InitializeComponent()
//
this.groupBox5.Controls.Add(this.cmdAccelerometerResetButtonPressed);
this.groupBox5.Controls.Add(this.lblAccelerometerResetButtonPressed);
- this.groupBox5.Location = new System.Drawing.Point(19, 36);
- this.groupBox5.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.groupBox5.Location = new System.Drawing.Point(10, 19);
+ this.groupBox5.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.groupBox5.Name = "groupBox5";
- this.groupBox5.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.groupBox5.Size = new System.Drawing.Size(347, 108);
+ this.groupBox5.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.groupBox5.Size = new System.Drawing.Size(174, 56);
this.groupBox5.TabIndex = 6;
this.groupBox5.TabStop = false;
this.groupBox5.Text = "Reset Button";
//
// cmdAccelerometerResetButtonPressed
//
- this.cmdAccelerometerResetButtonPressed.Location = new System.Drawing.Point(155, 36);
- this.cmdAccelerometerResetButtonPressed.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdAccelerometerResetButtonPressed.Location = new System.Drawing.Point(78, 19);
+ this.cmdAccelerometerResetButtonPressed.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdAccelerometerResetButtonPressed.Name = "cmdAccelerometerResetButtonPressed";
- this.cmdAccelerometerResetButtonPressed.Size = new System.Drawing.Size(149, 44);
+ this.cmdAccelerometerResetButtonPressed.Size = new System.Drawing.Size(74, 23);
this.cmdAccelerometerResetButtonPressed.TabIndex = 5;
this.cmdAccelerometerResetButtonPressed.Text = "View/Set...";
this.cmdAccelerometerResetButtonPressed.UseVisualStyleBackColor = true;
@@ -2135,21 +2136,21 @@ private void InitializeComponent()
// lblAccelerometerResetButtonPressed
//
this.lblAccelerometerResetButtonPressed.AutoSize = true;
- this.lblAccelerometerResetButtonPressed.Location = new System.Drawing.Point(21, 46);
- this.lblAccelerometerResetButtonPressed.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblAccelerometerResetButtonPressed.Location = new System.Drawing.Point(10, 24);
+ this.lblAccelerometerResetButtonPressed.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblAccelerometerResetButtonPressed.Name = "lblAccelerometerResetButtonPressed";
- this.lblAccelerometerResetButtonPressed.Size = new System.Drawing.Size(97, 25);
+ this.lblAccelerometerResetButtonPressed.Size = new System.Drawing.Size(48, 13);
this.lblAccelerometerResetButtonPressed.TabIndex = 4;
this.lblAccelerometerResetButtonPressed.Text = "Pressed:";
//
// tabASI
//
this.tabASI.Controls.Add(this.gbAirspeedIndicator);
- this.tabASI.Location = new System.Drawing.Point(8, 39);
- this.tabASI.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabASI.Location = new System.Drawing.Point(4, 22);
+ this.tabASI.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabASI.Name = "tabASI";
- this.tabASI.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabASI.Size = new System.Drawing.Size(1019, 848);
+ this.tabASI.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabASI.Size = new System.Drawing.Size(507, 437);
this.tabASI.TabIndex = 2;
this.tabASI.Text = "Airspeed Indicator";
this.tabASI.UseVisualStyleBackColor = true;
@@ -2157,11 +2158,11 @@ private void InitializeComponent()
// gbAirspeedIndicator
//
this.gbAirspeedIndicator.Controls.Add(this.gbASIIndexKnob);
- this.gbAirspeedIndicator.Location = new System.Drawing.Point(12, 11);
- this.gbAirspeedIndicator.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.gbAirspeedIndicator.Location = new System.Drawing.Point(6, 6);
+ this.gbAirspeedIndicator.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.gbAirspeedIndicator.Name = "gbAirspeedIndicator";
- this.gbAirspeedIndicator.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.gbAirspeedIndicator.Size = new System.Drawing.Size(384, 210);
+ this.gbAirspeedIndicator.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.gbAirspeedIndicator.Size = new System.Drawing.Size(192, 109);
this.gbAirspeedIndicator.TabIndex = 14;
this.gbAirspeedIndicator.TabStop = false;
this.gbAirspeedIndicator.Text = "Airspeed Indicator Hotkeys";
@@ -2172,11 +2173,11 @@ private void InitializeComponent()
this.gbASIIndexKnob.Controls.Add(this.cmdAirspeedIndexIncreaseHotkey);
this.gbASIIndexKnob.Controls.Add(this.lblAirspeedIndexDecreaseHotkey);
this.gbASIIndexKnob.Controls.Add(this.cmdAirspeedIndexDecreaseHotkey);
- this.gbASIIndexKnob.Location = new System.Drawing.Point(12, 36);
- this.gbASIIndexKnob.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.gbASIIndexKnob.Location = new System.Drawing.Point(6, 19);
+ this.gbASIIndexKnob.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.gbASIIndexKnob.Name = "gbASIIndexKnob";
- this.gbASIIndexKnob.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.gbASIIndexKnob.Size = new System.Drawing.Size(356, 150);
+ this.gbASIIndexKnob.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.gbASIIndexKnob.Size = new System.Drawing.Size(178, 78);
this.gbASIIndexKnob.TabIndex = 7;
this.gbASIIndexKnob.TabStop = false;
this.gbASIIndexKnob.Text = "Index Knob";
@@ -2184,19 +2185,19 @@ private void InitializeComponent()
// lblAirspeedIndexIncreaseHotkey
//
this.lblAirspeedIndexIncreaseHotkey.AutoSize = true;
- this.lblAirspeedIndexIncreaseHotkey.Location = new System.Drawing.Point(12, 46);
- this.lblAirspeedIndexIncreaseHotkey.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblAirspeedIndexIncreaseHotkey.Location = new System.Drawing.Point(6, 24);
+ this.lblAirspeedIndexIncreaseHotkey.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblAirspeedIndexIncreaseHotkey.Name = "lblAirspeedIndexIncreaseHotkey";
- this.lblAirspeedIndexIncreaseHotkey.Size = new System.Drawing.Size(112, 25);
+ this.lblAirspeedIndexIncreaseHotkey.Size = new System.Drawing.Size(57, 13);
this.lblAirspeedIndexIncreaseHotkey.TabIndex = 0;
this.lblAirspeedIndexIncreaseHotkey.Text = "Increment:";
//
// cmdAirspeedIndexIncreaseHotkey
//
- this.cmdAirspeedIndexIncreaseHotkey.Location = new System.Drawing.Point(164, 36);
- this.cmdAirspeedIndexIncreaseHotkey.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdAirspeedIndexIncreaseHotkey.Location = new System.Drawing.Point(82, 19);
+ this.cmdAirspeedIndexIncreaseHotkey.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdAirspeedIndexIncreaseHotkey.Name = "cmdAirspeedIndexIncreaseHotkey";
- this.cmdAirspeedIndexIncreaseHotkey.Size = new System.Drawing.Size(149, 44);
+ this.cmdAirspeedIndexIncreaseHotkey.Size = new System.Drawing.Size(74, 23);
this.cmdAirspeedIndexIncreaseHotkey.TabIndex = 1;
this.cmdAirspeedIndexIncreaseHotkey.Text = "View/Set...";
this.cmdAirspeedIndexIncreaseHotkey.UseVisualStyleBackColor = true;
@@ -2205,19 +2206,19 @@ private void InitializeComponent()
// lblAirspeedIndexDecreaseHotkey
//
this.lblAirspeedIndexDecreaseHotkey.AutoSize = true;
- this.lblAirspeedIndexDecreaseHotkey.Location = new System.Drawing.Point(12, 102);
- this.lblAirspeedIndexDecreaseHotkey.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblAirspeedIndexDecreaseHotkey.Location = new System.Drawing.Point(6, 53);
+ this.lblAirspeedIndexDecreaseHotkey.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblAirspeedIndexDecreaseHotkey.Name = "lblAirspeedIndexDecreaseHotkey";
- this.lblAirspeedIndexDecreaseHotkey.Size = new System.Drawing.Size(122, 25);
+ this.lblAirspeedIndexDecreaseHotkey.Size = new System.Drawing.Size(62, 13);
this.lblAirspeedIndexDecreaseHotkey.TabIndex = 2;
this.lblAirspeedIndexDecreaseHotkey.Text = "Decrement:";
//
// cmdAirspeedIndexDecreaseHotkey
//
- this.cmdAirspeedIndexDecreaseHotkey.Location = new System.Drawing.Point(164, 92);
- this.cmdAirspeedIndexDecreaseHotkey.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdAirspeedIndexDecreaseHotkey.Location = new System.Drawing.Point(82, 48);
+ this.cmdAirspeedIndexDecreaseHotkey.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdAirspeedIndexDecreaseHotkey.Name = "cmdAirspeedIndexDecreaseHotkey";
- this.cmdAirspeedIndexDecreaseHotkey.Size = new System.Drawing.Size(149, 44);
+ this.cmdAirspeedIndexDecreaseHotkey.Size = new System.Drawing.Size(74, 23);
this.cmdAirspeedIndexDecreaseHotkey.TabIndex = 3;
this.cmdAirspeedIndexDecreaseHotkey.Text = "View/Set...";
this.cmdAirspeedIndexDecreaseHotkey.UseVisualStyleBackColor = true;
@@ -2226,11 +2227,11 @@ private void InitializeComponent()
// tabAzimuthIndicatorKeys
//
this.tabAzimuthIndicatorKeys.Controls.Add(this.gbAzimuthIndicator);
- this.tabAzimuthIndicatorKeys.Location = new System.Drawing.Point(8, 39);
- this.tabAzimuthIndicatorKeys.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabAzimuthIndicatorKeys.Location = new System.Drawing.Point(4, 22);
+ this.tabAzimuthIndicatorKeys.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabAzimuthIndicatorKeys.Name = "tabAzimuthIndicatorKeys";
- this.tabAzimuthIndicatorKeys.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabAzimuthIndicatorKeys.Size = new System.Drawing.Size(1019, 848);
+ this.tabAzimuthIndicatorKeys.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabAzimuthIndicatorKeys.Size = new System.Drawing.Size(507, 437);
this.tabAzimuthIndicatorKeys.TabIndex = 3;
this.tabAzimuthIndicatorKeys.Text = "Azimuth Indicator";
this.tabAzimuthIndicatorKeys.UseVisualStyleBackColor = true;
@@ -2238,11 +2239,11 @@ private void InitializeComponent()
// gbAzimuthIndicator
//
this.gbAzimuthIndicator.Controls.Add(this.gbAzimuthIndicatorBrightnessControl);
- this.gbAzimuthIndicator.Location = new System.Drawing.Point(12, 11);
- this.gbAzimuthIndicator.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.gbAzimuthIndicator.Location = new System.Drawing.Point(6, 6);
+ this.gbAzimuthIndicator.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.gbAzimuthIndicator.Name = "gbAzimuthIndicator";
- this.gbAzimuthIndicator.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.gbAzimuthIndicator.Size = new System.Drawing.Size(376, 206);
+ this.gbAzimuthIndicator.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.gbAzimuthIndicator.Size = new System.Drawing.Size(188, 107);
this.gbAzimuthIndicator.TabIndex = 15;
this.gbAzimuthIndicator.TabStop = false;
this.gbAzimuthIndicator.Text = "Azimuth Indicator Hotkeys";
@@ -2253,11 +2254,11 @@ private void InitializeComponent()
this.gbAzimuthIndicatorBrightnessControl.Controls.Add(this.lblAzimuthIndicatorBrightnessIncrease);
this.gbAzimuthIndicatorBrightnessControl.Controls.Add(this.cmdAzimuthIndicatorBrightnessIncrease);
this.gbAzimuthIndicatorBrightnessControl.Controls.Add(this.cmdAzimuthIndicatorBrightnessDecrease);
- this.gbAzimuthIndicatorBrightnessControl.Location = new System.Drawing.Point(12, 36);
- this.gbAzimuthIndicatorBrightnessControl.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.gbAzimuthIndicatorBrightnessControl.Location = new System.Drawing.Point(6, 19);
+ this.gbAzimuthIndicatorBrightnessControl.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.gbAzimuthIndicatorBrightnessControl.Name = "gbAzimuthIndicatorBrightnessControl";
- this.gbAzimuthIndicatorBrightnessControl.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.gbAzimuthIndicatorBrightnessControl.Size = new System.Drawing.Size(339, 148);
+ this.gbAzimuthIndicatorBrightnessControl.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.gbAzimuthIndicatorBrightnessControl.Size = new System.Drawing.Size(170, 77);
this.gbAzimuthIndicatorBrightnessControl.TabIndex = 0;
this.gbAzimuthIndicatorBrightnessControl.TabStop = false;
this.gbAzimuthIndicatorBrightnessControl.Text = "Brightness Control";
@@ -2265,29 +2266,29 @@ private void InitializeComponent()
// lblAzimuthIndicatorBrightnessDecrease
//
this.lblAzimuthIndicatorBrightnessDecrease.AutoSize = true;
- this.lblAzimuthIndicatorBrightnessDecrease.Location = new System.Drawing.Point(12, 102);
- this.lblAzimuthIndicatorBrightnessDecrease.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblAzimuthIndicatorBrightnessDecrease.Location = new System.Drawing.Point(6, 53);
+ this.lblAzimuthIndicatorBrightnessDecrease.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblAzimuthIndicatorBrightnessDecrease.Name = "lblAzimuthIndicatorBrightnessDecrease";
- this.lblAzimuthIndicatorBrightnessDecrease.Size = new System.Drawing.Size(110, 25);
+ this.lblAzimuthIndicatorBrightnessDecrease.Size = new System.Drawing.Size(56, 13);
this.lblAzimuthIndicatorBrightnessDecrease.TabIndex = 2;
this.lblAzimuthIndicatorBrightnessDecrease.Text = "Decrease:";
//
// lblAzimuthIndicatorBrightnessIncrease
//
this.lblAzimuthIndicatorBrightnessIncrease.AutoSize = true;
- this.lblAzimuthIndicatorBrightnessIncrease.Location = new System.Drawing.Point(12, 46);
- this.lblAzimuthIndicatorBrightnessIncrease.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblAzimuthIndicatorBrightnessIncrease.Location = new System.Drawing.Point(6, 24);
+ this.lblAzimuthIndicatorBrightnessIncrease.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblAzimuthIndicatorBrightnessIncrease.Name = "lblAzimuthIndicatorBrightnessIncrease";
- this.lblAzimuthIndicatorBrightnessIncrease.Size = new System.Drawing.Size(100, 25);
+ this.lblAzimuthIndicatorBrightnessIncrease.Size = new System.Drawing.Size(51, 13);
this.lblAzimuthIndicatorBrightnessIncrease.TabIndex = 0;
this.lblAzimuthIndicatorBrightnessIncrease.Text = "Increase:";
//
// cmdAzimuthIndicatorBrightnessIncrease
//
- this.cmdAzimuthIndicatorBrightnessIncrease.Location = new System.Drawing.Point(164, 36);
- this.cmdAzimuthIndicatorBrightnessIncrease.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdAzimuthIndicatorBrightnessIncrease.Location = new System.Drawing.Point(82, 19);
+ this.cmdAzimuthIndicatorBrightnessIncrease.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdAzimuthIndicatorBrightnessIncrease.Name = "cmdAzimuthIndicatorBrightnessIncrease";
- this.cmdAzimuthIndicatorBrightnessIncrease.Size = new System.Drawing.Size(149, 44);
+ this.cmdAzimuthIndicatorBrightnessIncrease.Size = new System.Drawing.Size(74, 23);
this.cmdAzimuthIndicatorBrightnessIncrease.TabIndex = 1;
this.cmdAzimuthIndicatorBrightnessIncrease.Text = "View/Set...";
this.cmdAzimuthIndicatorBrightnessIncrease.UseVisualStyleBackColor = true;
@@ -2295,10 +2296,10 @@ private void InitializeComponent()
//
// cmdAzimuthIndicatorBrightnessDecrease
//
- this.cmdAzimuthIndicatorBrightnessDecrease.Location = new System.Drawing.Point(164, 92);
- this.cmdAzimuthIndicatorBrightnessDecrease.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdAzimuthIndicatorBrightnessDecrease.Location = new System.Drawing.Point(82, 48);
+ this.cmdAzimuthIndicatorBrightnessDecrease.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdAzimuthIndicatorBrightnessDecrease.Name = "cmdAzimuthIndicatorBrightnessDecrease";
- this.cmdAzimuthIndicatorBrightnessDecrease.Size = new System.Drawing.Size(149, 44);
+ this.cmdAzimuthIndicatorBrightnessDecrease.Size = new System.Drawing.Size(74, 23);
this.cmdAzimuthIndicatorBrightnessDecrease.TabIndex = 3;
this.cmdAzimuthIndicatorBrightnessDecrease.Text = "View/Set...";
this.cmdAzimuthIndicatorBrightnessDecrease.UseVisualStyleBackColor = true;
@@ -2307,11 +2308,11 @@ private void InitializeComponent()
// tabEHSIKeys
//
this.tabEHSIKeys.Controls.Add(this.gbEHSI);
- this.tabEHSIKeys.Location = new System.Drawing.Point(8, 39);
- this.tabEHSIKeys.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabEHSIKeys.Location = new System.Drawing.Point(4, 22);
+ this.tabEHSIKeys.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabEHSIKeys.Name = "tabEHSIKeys";
- this.tabEHSIKeys.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabEHSIKeys.Size = new System.Drawing.Size(1019, 848);
+ this.tabEHSIKeys.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabEHSIKeys.Size = new System.Drawing.Size(507, 437);
this.tabEHSIKeys.TabIndex = 1;
this.tabEHSIKeys.Text = "EHSI";
this.tabEHSIKeys.UseVisualStyleBackColor = true;
@@ -2322,11 +2323,11 @@ private void InitializeComponent()
this.gbEHSI.Controls.Add(this.groupBox4);
this.gbEHSI.Controls.Add(this.groupBox3);
this.gbEHSI.Controls.Add(this.cmdEHSIMenuButtonHotkey);
- this.gbEHSI.Location = new System.Drawing.Point(12, 11);
- this.gbEHSI.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.gbEHSI.Location = new System.Drawing.Point(6, 6);
+ this.gbEHSI.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.gbEHSI.Name = "gbEHSI";
- this.gbEHSI.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.gbEHSI.Size = new System.Drawing.Size(811, 328);
+ this.gbEHSI.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.gbEHSI.Size = new System.Drawing.Size(406, 171);
this.gbEHSI.TabIndex = 8;
this.gbEHSI.TabStop = false;
this.gbEHSI.Text = "EHSI Hotkeys";
@@ -2334,10 +2335,10 @@ private void InitializeComponent()
// lblEHSIMenuButton
//
this.lblEHSIMenuButton.AutoSize = true;
- this.lblEHSIMenuButton.Location = new System.Drawing.Point(24, 31);
- this.lblEHSIMenuButton.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblEHSIMenuButton.Location = new System.Drawing.Point(12, 16);
+ this.lblEHSIMenuButton.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblEHSIMenuButton.Name = "lblEHSIMenuButton";
- this.lblEHSIMenuButton.Size = new System.Drawing.Size(104, 25);
+ this.lblEHSIMenuButton.Size = new System.Drawing.Size(53, 13);
this.lblEHSIMenuButton.TabIndex = 0;
this.lblEHSIMenuButton.Text = "M Button:";
//
@@ -2349,11 +2350,11 @@ private void InitializeComponent()
this.groupBox4.Controls.Add(this.lblEHSICourseDecreaseHotkey);
this.groupBox4.Controls.Add(this.cmdEHSICourseDecreaseKey);
this.groupBox4.Controls.Add(this.label54);
- this.groupBox4.Location = new System.Drawing.Point(403, 89);
- this.groupBox4.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.groupBox4.Location = new System.Drawing.Point(202, 46);
+ this.groupBox4.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.groupBox4.Name = "groupBox4";
- this.groupBox4.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.groupBox4.Size = new System.Drawing.Size(381, 218);
+ this.groupBox4.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.groupBox4.Size = new System.Drawing.Size(190, 113);
this.groupBox4.TabIndex = 2;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "CRS/BRT Knob";
@@ -2361,19 +2362,19 @@ private void InitializeComponent()
// lblEHSICourseIncreaseHotkey
//
this.lblEHSICourseIncreaseHotkey.AutoSize = true;
- this.lblEHSICourseIncreaseHotkey.Location = new System.Drawing.Point(24, 46);
- this.lblEHSICourseIncreaseHotkey.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblEHSICourseIncreaseHotkey.Location = new System.Drawing.Point(12, 24);
+ this.lblEHSICourseIncreaseHotkey.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblEHSICourseIncreaseHotkey.Name = "lblEHSICourseIncreaseHotkey";
- this.lblEHSICourseIncreaseHotkey.Size = new System.Drawing.Size(112, 25);
+ this.lblEHSICourseIncreaseHotkey.Size = new System.Drawing.Size(57, 13);
this.lblEHSICourseIncreaseHotkey.TabIndex = 0;
this.lblEHSICourseIncreaseHotkey.Text = "Increment:";
//
// cmdEHSICourseIncreaseKey
//
- this.cmdEHSICourseIncreaseKey.Location = new System.Drawing.Point(196, 36);
- this.cmdEHSICourseIncreaseKey.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdEHSICourseIncreaseKey.Location = new System.Drawing.Point(98, 19);
+ this.cmdEHSICourseIncreaseKey.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdEHSICourseIncreaseKey.Name = "cmdEHSICourseIncreaseKey";
- this.cmdEHSICourseIncreaseKey.Size = new System.Drawing.Size(149, 44);
+ this.cmdEHSICourseIncreaseKey.Size = new System.Drawing.Size(74, 23);
this.cmdEHSICourseIncreaseKey.TabIndex = 1;
this.cmdEHSICourseIncreaseKey.Text = "View/Set...";
this.cmdEHSICourseIncreaseKey.UseVisualStyleBackColor = true;
@@ -2381,10 +2382,10 @@ private void InitializeComponent()
//
// cmdEHSICourseKnobDepressedKey
//
- this.cmdEHSICourseKnobDepressedKey.Location = new System.Drawing.Point(196, 148);
- this.cmdEHSICourseKnobDepressedKey.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdEHSICourseKnobDepressedKey.Location = new System.Drawing.Point(98, 77);
+ this.cmdEHSICourseKnobDepressedKey.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdEHSICourseKnobDepressedKey.Name = "cmdEHSICourseKnobDepressedKey";
- this.cmdEHSICourseKnobDepressedKey.Size = new System.Drawing.Size(149, 44);
+ this.cmdEHSICourseKnobDepressedKey.Size = new System.Drawing.Size(74, 23);
this.cmdEHSICourseKnobDepressedKey.TabIndex = 5;
this.cmdEHSICourseKnobDepressedKey.Text = "View/Set...";
this.cmdEHSICourseKnobDepressedKey.UseVisualStyleBackColor = true;
@@ -2393,19 +2394,19 @@ private void InitializeComponent()
// lblEHSICourseDecreaseHotkey
//
this.lblEHSICourseDecreaseHotkey.AutoSize = true;
- this.lblEHSICourseDecreaseHotkey.Location = new System.Drawing.Point(24, 102);
- this.lblEHSICourseDecreaseHotkey.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblEHSICourseDecreaseHotkey.Location = new System.Drawing.Point(12, 53);
+ this.lblEHSICourseDecreaseHotkey.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblEHSICourseDecreaseHotkey.Name = "lblEHSICourseDecreaseHotkey";
- this.lblEHSICourseDecreaseHotkey.Size = new System.Drawing.Size(122, 25);
+ this.lblEHSICourseDecreaseHotkey.Size = new System.Drawing.Size(62, 13);
this.lblEHSICourseDecreaseHotkey.TabIndex = 2;
this.lblEHSICourseDecreaseHotkey.Text = "Decrement:";
//
// cmdEHSICourseDecreaseKey
//
- this.cmdEHSICourseDecreaseKey.Location = new System.Drawing.Point(196, 92);
- this.cmdEHSICourseDecreaseKey.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdEHSICourseDecreaseKey.Location = new System.Drawing.Point(98, 48);
+ this.cmdEHSICourseDecreaseKey.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdEHSICourseDecreaseKey.Name = "cmdEHSICourseDecreaseKey";
- this.cmdEHSICourseDecreaseKey.Size = new System.Drawing.Size(149, 44);
+ this.cmdEHSICourseDecreaseKey.Size = new System.Drawing.Size(74, 23);
this.cmdEHSICourseDecreaseKey.TabIndex = 3;
this.cmdEHSICourseDecreaseKey.Text = "View/Set...";
this.cmdEHSICourseDecreaseKey.UseVisualStyleBackColor = true;
@@ -2414,10 +2415,10 @@ private void InitializeComponent()
// label54
//
this.label54.AutoSize = true;
- this.label54.Location = new System.Drawing.Point(24, 158);
- this.label54.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.label54.Location = new System.Drawing.Point(12, 82);
+ this.label54.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label54.Name = "label54";
- this.label54.Size = new System.Drawing.Size(97, 25);
+ this.label54.Size = new System.Drawing.Size(48, 13);
this.label54.TabIndex = 4;
this.label54.Text = "Pressed:";
//
@@ -2427,11 +2428,11 @@ private void InitializeComponent()
this.groupBox3.Controls.Add(this.cmdEHSIHeadingIncreaseKey);
this.groupBox3.Controls.Add(this.label53);
this.groupBox3.Controls.Add(this.cmdEHSIHeadingDecreaseKey);
- this.groupBox3.Location = new System.Drawing.Point(12, 89);
- this.groupBox3.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.groupBox3.Location = new System.Drawing.Point(6, 46);
+ this.groupBox3.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.groupBox3.Name = "groupBox3";
- this.groupBox3.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.groupBox3.Size = new System.Drawing.Size(371, 218);
+ this.groupBox3.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.groupBox3.Size = new System.Drawing.Size(186, 113);
this.groupBox3.TabIndex = 1;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "HDG/ATT Knob";
@@ -2439,19 +2440,19 @@ private void InitializeComponent()
// lblEHSIHeadingIncreaseButton
//
this.lblEHSIHeadingIncreaseButton.AutoSize = true;
- this.lblEHSIHeadingIncreaseButton.Location = new System.Drawing.Point(12, 46);
- this.lblEHSIHeadingIncreaseButton.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblEHSIHeadingIncreaseButton.Location = new System.Drawing.Point(6, 24);
+ this.lblEHSIHeadingIncreaseButton.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblEHSIHeadingIncreaseButton.Name = "lblEHSIHeadingIncreaseButton";
- this.lblEHSIHeadingIncreaseButton.Size = new System.Drawing.Size(112, 25);
+ this.lblEHSIHeadingIncreaseButton.Size = new System.Drawing.Size(57, 13);
this.lblEHSIHeadingIncreaseButton.TabIndex = 0;
this.lblEHSIHeadingIncreaseButton.Text = "Increment:";
//
// cmdEHSIHeadingIncreaseKey
//
- this.cmdEHSIHeadingIncreaseKey.Location = new System.Drawing.Point(195, 36);
- this.cmdEHSIHeadingIncreaseKey.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdEHSIHeadingIncreaseKey.Location = new System.Drawing.Point(98, 19);
+ this.cmdEHSIHeadingIncreaseKey.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdEHSIHeadingIncreaseKey.Name = "cmdEHSIHeadingIncreaseKey";
- this.cmdEHSIHeadingIncreaseKey.Size = new System.Drawing.Size(149, 44);
+ this.cmdEHSIHeadingIncreaseKey.Size = new System.Drawing.Size(74, 23);
this.cmdEHSIHeadingIncreaseKey.TabIndex = 1;
this.cmdEHSIHeadingIncreaseKey.Text = "View/Set...";
this.cmdEHSIHeadingIncreaseKey.UseVisualStyleBackColor = true;
@@ -2460,19 +2461,19 @@ private void InitializeComponent()
// label53
//
this.label53.AutoSize = true;
- this.label53.Location = new System.Drawing.Point(12, 102);
- this.label53.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.label53.Location = new System.Drawing.Point(6, 53);
+ this.label53.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label53.Name = "label53";
- this.label53.Size = new System.Drawing.Size(122, 25);
+ this.label53.Size = new System.Drawing.Size(62, 13);
this.label53.TabIndex = 2;
this.label53.Text = "Decrement:";
//
// cmdEHSIHeadingDecreaseKey
//
- this.cmdEHSIHeadingDecreaseKey.Location = new System.Drawing.Point(195, 92);
- this.cmdEHSIHeadingDecreaseKey.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdEHSIHeadingDecreaseKey.Location = new System.Drawing.Point(98, 48);
+ this.cmdEHSIHeadingDecreaseKey.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdEHSIHeadingDecreaseKey.Name = "cmdEHSIHeadingDecreaseKey";
- this.cmdEHSIHeadingDecreaseKey.Size = new System.Drawing.Size(149, 44);
+ this.cmdEHSIHeadingDecreaseKey.Size = new System.Drawing.Size(74, 23);
this.cmdEHSIHeadingDecreaseKey.TabIndex = 3;
this.cmdEHSIHeadingDecreaseKey.Text = "View/Set...";
this.cmdEHSIHeadingDecreaseKey.UseVisualStyleBackColor = true;
@@ -2480,10 +2481,10 @@ private void InitializeComponent()
//
// cmdEHSIMenuButtonHotkey
//
- this.cmdEHSIMenuButtonHotkey.Location = new System.Drawing.Point(205, 21);
- this.cmdEHSIMenuButtonHotkey.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdEHSIMenuButtonHotkey.Location = new System.Drawing.Point(102, 11);
+ this.cmdEHSIMenuButtonHotkey.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdEHSIMenuButtonHotkey.Name = "cmdEHSIMenuButtonHotkey";
- this.cmdEHSIMenuButtonHotkey.Size = new System.Drawing.Size(149, 44);
+ this.cmdEHSIMenuButtonHotkey.Size = new System.Drawing.Size(74, 23);
this.cmdEHSIMenuButtonHotkey.TabIndex = 1;
this.cmdEHSIMenuButtonHotkey.Text = "View/Set...";
this.cmdEHSIMenuButtonHotkey.UseVisualStyleBackColor = true;
@@ -2492,11 +2493,11 @@ private void InitializeComponent()
// tabISISKeys
//
this.tabISISKeys.Controls.Add(this.gbISIS);
- this.tabISISKeys.Location = new System.Drawing.Point(8, 39);
- this.tabISISKeys.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabISISKeys.Location = new System.Drawing.Point(4, 22);
+ this.tabISISKeys.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabISISKeys.Name = "tabISISKeys";
- this.tabISISKeys.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabISISKeys.Size = new System.Drawing.Size(1019, 848);
+ this.tabISISKeys.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabISISKeys.Size = new System.Drawing.Size(507, 437);
this.tabISISKeys.TabIndex = 5;
this.tabISISKeys.Text = "ISIS";
this.tabISISKeys.UseVisualStyleBackColor = true;
@@ -2507,11 +2508,11 @@ private void InitializeComponent()
this.gbISIS.Controls.Add(this.cmdISISBrightButtonPressed);
this.gbISIS.Controls.Add(this.cmdISISStandardBrightnessButtonPressed);
this.gbISIS.Controls.Add(this.lblISISStandardBrightnessButtonPressed);
- this.gbISIS.Location = new System.Drawing.Point(12, 11);
- this.gbISIS.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.gbISIS.Location = new System.Drawing.Point(6, 6);
+ this.gbISIS.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.gbISIS.Name = "gbISIS";
- this.gbISIS.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.gbISIS.Size = new System.Drawing.Size(389, 142);
+ this.gbISIS.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.gbISIS.Size = new System.Drawing.Size(194, 74);
this.gbISIS.TabIndex = 12;
this.gbISIS.TabStop = false;
this.gbISIS.Text = "ISIS Hotkeys";
@@ -2519,19 +2520,19 @@ private void InitializeComponent()
// lblISISBrightBrightnessButtonPressed
//
this.lblISISBrightBrightnessButtonPressed.AutoSize = true;
- this.lblISISBrightBrightnessButtonPressed.Location = new System.Drawing.Point(24, 36);
- this.lblISISBrightBrightnessButtonPressed.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblISISBrightBrightnessButtonPressed.Location = new System.Drawing.Point(12, 19);
+ this.lblISISBrightBrightnessButtonPressed.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblISISBrightBrightnessButtonPressed.Name = "lblISISBrightBrightnessButtonPressed";
- this.lblISISBrightBrightnessButtonPressed.Size = new System.Drawing.Size(128, 25);
+ this.lblISISBrightBrightnessButtonPressed.Size = new System.Drawing.Size(66, 13);
this.lblISISBrightBrightnessButtonPressed.TabIndex = 0;
this.lblISISBrightBrightnessButtonPressed.Text = "BRT Button:";
//
// cmdISISBrightButtonPressed
//
- this.cmdISISBrightButtonPressed.Location = new System.Drawing.Point(176, 28);
- this.cmdISISBrightButtonPressed.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdISISBrightButtonPressed.Location = new System.Drawing.Point(88, 15);
+ this.cmdISISBrightButtonPressed.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdISISBrightButtonPressed.Name = "cmdISISBrightButtonPressed";
- this.cmdISISBrightButtonPressed.Size = new System.Drawing.Size(149, 44);
+ this.cmdISISBrightButtonPressed.Size = new System.Drawing.Size(74, 23);
this.cmdISISBrightButtonPressed.TabIndex = 1;
this.cmdISISBrightButtonPressed.Text = "View/Set...";
this.cmdISISBrightButtonPressed.UseVisualStyleBackColor = true;
@@ -2539,10 +2540,10 @@ private void InitializeComponent()
//
// cmdISISStandardBrightnessButtonPressed
//
- this.cmdISISStandardBrightnessButtonPressed.Location = new System.Drawing.Point(176, 81);
- this.cmdISISStandardBrightnessButtonPressed.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdISISStandardBrightnessButtonPressed.Location = new System.Drawing.Point(88, 42);
+ this.cmdISISStandardBrightnessButtonPressed.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdISISStandardBrightnessButtonPressed.Name = "cmdISISStandardBrightnessButtonPressed";
- this.cmdISISStandardBrightnessButtonPressed.Size = new System.Drawing.Size(149, 44);
+ this.cmdISISStandardBrightnessButtonPressed.Size = new System.Drawing.Size(74, 23);
this.cmdISISStandardBrightnessButtonPressed.TabIndex = 3;
this.cmdISISStandardBrightnessButtonPressed.Text = "View/Set...";
this.cmdISISStandardBrightnessButtonPressed.UseVisualStyleBackColor = true;
@@ -2551,21 +2552,21 @@ private void InitializeComponent()
// lblISISStandardBrightnessButtonPressed
//
this.lblISISStandardBrightnessButtonPressed.AutoSize = true;
- this.lblISISStandardBrightnessButtonPressed.Location = new System.Drawing.Point(24, 90);
- this.lblISISStandardBrightnessButtonPressed.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblISISStandardBrightnessButtonPressed.Location = new System.Drawing.Point(12, 47);
+ this.lblISISStandardBrightnessButtonPressed.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblISISStandardBrightnessButtonPressed.Name = "lblISISStandardBrightnessButtonPressed";
- this.lblISISStandardBrightnessButtonPressed.Size = new System.Drawing.Size(128, 25);
+ this.lblISISStandardBrightnessButtonPressed.Size = new System.Drawing.Size(66, 13);
this.lblISISStandardBrightnessButtonPressed.TabIndex = 2;
this.lblISISStandardBrightnessButtonPressed.Text = "STD Button:";
//
// tabNetworking
//
this.tabNetworking.Controls.Add(this.grpNetworkMode);
- this.tabNetworking.Location = new System.Drawing.Point(8, 39);
- this.tabNetworking.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabNetworking.Location = new System.Drawing.Point(4, 22);
+ this.tabNetworking.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabNetworking.Name = "tabNetworking";
- this.tabNetworking.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabNetworking.Size = new System.Drawing.Size(1040, 902);
+ this.tabNetworking.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabNetworking.Size = new System.Drawing.Size(520, 467);
this.tabNetworking.TabIndex = 16;
this.tabNetworking.Text = "Networking";
this.tabNetworking.UseVisualStyleBackColor = true;
@@ -2576,103 +2577,25 @@ private void InitializeComponent()
this.grpNetworkMode.Controls.Add(this.grpClientOptions);
this.grpNetworkMode.Controls.Add(this.grpServerOptions);
this.grpNetworkMode.Dock = System.Windows.Forms.DockStyle.Fill;
- this.grpNetworkMode.Location = new System.Drawing.Point(5, 6);
- this.grpNetworkMode.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.grpNetworkMode.Location = new System.Drawing.Point(2, 3);
+ this.grpNetworkMode.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.grpNetworkMode.Name = "grpNetworkMode";
- this.grpNetworkMode.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.grpNetworkMode.Size = new System.Drawing.Size(1030, 890);
+ this.grpNetworkMode.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.grpNetworkMode.Size = new System.Drawing.Size(516, 461);
this.grpNetworkMode.TabIndex = 58;
this.grpNetworkMode.TabStop = false;
this.grpNetworkMode.Text = "Networking";
//
- // grpServerOptions
- //
- this.grpServerOptions.Controls.Add(this.lblCompressionType);
- this.grpServerOptions.Controls.Add(this.cboCompressionType);
- this.grpServerOptions.Controls.Add(this.lblImageFormat);
- this.grpServerOptions.Controls.Add(this.cboImageFormat);
- this.grpServerOptions.Controls.Add(this.lblServerServerPortNum);
- this.grpServerOptions.Controls.Add(this.txtNetworkServerUsePortNum);
- this.grpServerOptions.Location = new System.Drawing.Point(232, 31);
- this.grpServerOptions.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.grpServerOptions.Name = "grpServerOptions";
- this.grpServerOptions.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.grpServerOptions.Size = new System.Drawing.Size(467, 182);
- this.grpServerOptions.TabIndex = 45;
- this.grpServerOptions.TabStop = false;
- this.grpServerOptions.Text = "Server Options";
- //
- // lblCompressionType
- //
- this.lblCompressionType.AutoSize = true;
- this.lblCompressionType.Location = new System.Drawing.Point(8, 125);
- this.lblCompressionType.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
- this.lblCompressionType.Name = "lblCompressionType";
- this.lblCompressionType.Size = new System.Drawing.Size(198, 25);
- this.lblCompressionType.TabIndex = 92;
- this.lblCompressionType.Text = "Compression Type:";
- //
- // cboCompressionType
- //
- this.cboCompressionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cboCompressionType.FormattingEnabled = true;
- this.cboCompressionType.Location = new System.Drawing.Point(213, 119);
- this.cboCompressionType.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.cboCompressionType.Name = "cboCompressionType";
- this.cboCompressionType.Size = new System.Drawing.Size(169, 33);
- this.cboCompressionType.TabIndex = 48;
- //
- // lblImageFormat
- //
- this.lblImageFormat.AutoSize = true;
- this.lblImageFormat.Location = new System.Drawing.Point(53, 79);
- this.lblImageFormat.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
- this.lblImageFormat.Name = "lblImageFormat";
- this.lblImageFormat.Size = new System.Drawing.Size(149, 25);
- this.lblImageFormat.TabIndex = 90;
- this.lblImageFormat.Text = "Image Format:";
- //
- // cboImageFormat
- //
- this.cboImageFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cboImageFormat.FormattingEnabled = true;
- this.cboImageFormat.Location = new System.Drawing.Point(213, 71);
- this.cboImageFormat.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.cboImageFormat.Name = "cboImageFormat";
- this.cboImageFormat.Size = new System.Drawing.Size(169, 33);
- this.cboImageFormat.TabIndex = 47;
- this.cboImageFormat.SelectedIndexChanged += new System.EventHandler(this.cboImageFormat_SelectedIndexChanged);
- //
- // lblServerServerPortNum
- //
- this.lblServerServerPortNum.AutoSize = true;
- this.lblServerServerPortNum.Location = new System.Drawing.Point(68, 31);
- this.lblServerServerPortNum.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
- this.lblServerServerPortNum.Name = "lblServerServerPortNum";
- this.lblServerServerPortNum.Size = new System.Drawing.Size(138, 25);
- this.lblServerServerPortNum.TabIndex = 5;
- this.lblServerServerPortNum.Text = "Port Number:";
- this.lblServerServerPortNum.TextAlign = System.Drawing.ContentAlignment.TopRight;
- //
- // txtNetworkServerUsePortNum
- //
- this.txtNetworkServerUsePortNum.Location = new System.Drawing.Point(213, 25);
- this.txtNetworkServerUsePortNum.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.txtNetworkServerUsePortNum.MaxLength = 5;
- this.txtNetworkServerUsePortNum.Name = "txtNetworkServerUsePortNum";
- this.txtNetworkServerUsePortNum.Size = new System.Drawing.Size(169, 31);
- this.txtNetworkServerUsePortNum.TabIndex = 46;
- //
// gbNetworkingMode
//
this.gbNetworkingMode.Controls.Add(this.rdoServer);
this.gbNetworkingMode.Controls.Add(this.rdoStandalone);
this.gbNetworkingMode.Controls.Add(this.rdoClient);
- this.gbNetworkingMode.Location = new System.Drawing.Point(32, 31);
- this.gbNetworkingMode.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.gbNetworkingMode.Location = new System.Drawing.Point(16, 16);
+ this.gbNetworkingMode.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.gbNetworkingMode.Name = "gbNetworkingMode";
- this.gbNetworkingMode.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.gbNetworkingMode.Size = new System.Drawing.Size(188, 179);
+ this.gbNetworkingMode.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.gbNetworkingMode.Size = new System.Drawing.Size(94, 93);
this.gbNetworkingMode.TabIndex = 58;
this.gbNetworkingMode.TabStop = false;
this.gbNetworkingMode.Text = "Mode";
@@ -2680,10 +2603,10 @@ private void InitializeComponent()
// rdoServer
//
this.rdoServer.AutoSize = true;
- this.rdoServer.Location = new System.Drawing.Point(12, 119);
- this.rdoServer.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.rdoServer.Location = new System.Drawing.Point(6, 62);
+ this.rdoServer.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.rdoServer.Name = "rdoServer";
- this.rdoServer.Size = new System.Drawing.Size(106, 29);
+ this.rdoServer.Size = new System.Drawing.Size(56, 17);
this.rdoServer.TabIndex = 41;
this.rdoServer.TabStop = true;
this.rdoServer.Text = "Server";
@@ -2693,10 +2616,10 @@ private void InitializeComponent()
// rdoStandalone
//
this.rdoStandalone.AutoSize = true;
- this.rdoStandalone.Location = new System.Drawing.Point(12, 31);
- this.rdoStandalone.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.rdoStandalone.Location = new System.Drawing.Point(6, 16);
+ this.rdoStandalone.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.rdoStandalone.Name = "rdoStandalone";
- this.rdoStandalone.Size = new System.Drawing.Size(152, 29);
+ this.rdoStandalone.Size = new System.Drawing.Size(79, 17);
this.rdoStandalone.TabIndex = 39;
this.rdoStandalone.TabStop = true;
this.rdoStandalone.Text = "Standalone";
@@ -2706,10 +2629,10 @@ private void InitializeComponent()
// rdoClient
//
this.rdoClient.AutoSize = true;
- this.rdoClient.Location = new System.Drawing.Point(12, 75);
- this.rdoClient.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.rdoClient.Location = new System.Drawing.Point(6, 39);
+ this.rdoClient.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.rdoClient.Name = "rdoClient";
- this.rdoClient.Size = new System.Drawing.Size(98, 29);
+ this.rdoClient.Size = new System.Drawing.Size(51, 17);
this.rdoClient.TabIndex = 40;
this.rdoClient.TabStop = true;
this.rdoClient.Text = "Client";
@@ -2722,63 +2645,141 @@ private void InitializeComponent()
this.grpClientOptions.Controls.Add(this.lblClientServerPortNum);
this.grpClientOptions.Controls.Add(this.txtNetworkClientUseServerPortNum);
this.grpClientOptions.Controls.Add(this.lblServerIpAddress);
- this.grpClientOptions.Location = new System.Drawing.Point(232, 31);
- this.grpClientOptions.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.grpClientOptions.Location = new System.Drawing.Point(116, 16);
+ this.grpClientOptions.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.grpClientOptions.Name = "grpClientOptions";
- this.grpClientOptions.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.grpClientOptions.Size = new System.Drawing.Size(467, 131);
+ this.grpClientOptions.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.grpClientOptions.Size = new System.Drawing.Size(234, 68);
this.grpClientOptions.TabIndex = 42;
this.grpClientOptions.TabStop = false;
this.grpClientOptions.Text = "Client Options";
//
// txtClientUseServerIpAddress
//
- this.txtClientUseServerIpAddress.Location = new System.Drawing.Point(213, 25);
- this.txtClientUseServerIpAddress.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.txtClientUseServerIpAddress.Location = new System.Drawing.Point(106, 13);
+ this.txtClientUseServerIpAddress.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.txtClientUseServerIpAddress.MaxLength = 16;
this.txtClientUseServerIpAddress.Name = "txtClientUseServerIpAddress";
- this.txtClientUseServerIpAddress.Size = new System.Drawing.Size(210, 31);
+ this.txtClientUseServerIpAddress.Size = new System.Drawing.Size(107, 20);
this.txtClientUseServerIpAddress.TabIndex = 43;
//
// lblClientServerPortNum
//
this.lblClientServerPortNum.AutoSize = true;
- this.lblClientServerPortNum.Location = new System.Drawing.Point(64, 82);
- this.lblClientServerPortNum.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblClientServerPortNum.Location = new System.Drawing.Point(32, 43);
+ this.lblClientServerPortNum.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblClientServerPortNum.Name = "lblClientServerPortNum";
- this.lblClientServerPortNum.Size = new System.Drawing.Size(138, 25);
+ this.lblClientServerPortNum.Size = new System.Drawing.Size(69, 13);
this.lblClientServerPortNum.TabIndex = 3;
this.lblClientServerPortNum.Text = "Port Number:";
this.lblClientServerPortNum.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// txtNetworkClientUseServerPortNum
//
- this.txtNetworkClientUseServerPortNum.Location = new System.Drawing.Point(216, 78);
- this.txtNetworkClientUseServerPortNum.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.txtNetworkClientUseServerPortNum.Location = new System.Drawing.Point(108, 41);
+ this.txtNetworkClientUseServerPortNum.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.txtNetworkClientUseServerPortNum.MaxLength = 5;
this.txtNetworkClientUseServerPortNum.Name = "txtNetworkClientUseServerPortNum";
- this.txtNetworkClientUseServerPortNum.Size = new System.Drawing.Size(168, 31);
+ this.txtNetworkClientUseServerPortNum.Size = new System.Drawing.Size(86, 20);
this.txtNetworkClientUseServerPortNum.TabIndex = 44;
//
// lblServerIpAddress
//
this.lblServerIpAddress.AutoSize = true;
- this.lblServerIpAddress.Location = new System.Drawing.Point(12, 31);
- this.lblServerIpAddress.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblServerIpAddress.Location = new System.Drawing.Point(6, 16);
+ this.lblServerIpAddress.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblServerIpAddress.Name = "lblServerIpAddress";
- this.lblServerIpAddress.Size = new System.Drawing.Size(191, 25);
+ this.lblServerIpAddress.Size = new System.Drawing.Size(95, 13);
this.lblServerIpAddress.TabIndex = 1;
this.lblServerIpAddress.Text = "Server IP Address:";
this.lblServerIpAddress.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
+ // grpServerOptions
+ //
+ this.grpServerOptions.Controls.Add(this.lblCompressionType);
+ this.grpServerOptions.Controls.Add(this.cboCompressionType);
+ this.grpServerOptions.Controls.Add(this.lblImageFormat);
+ this.grpServerOptions.Controls.Add(this.cboImageFormat);
+ this.grpServerOptions.Controls.Add(this.lblServerServerPortNum);
+ this.grpServerOptions.Controls.Add(this.txtNetworkServerUsePortNum);
+ this.grpServerOptions.Location = new System.Drawing.Point(116, 16);
+ this.grpServerOptions.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.grpServerOptions.Name = "grpServerOptions";
+ this.grpServerOptions.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.grpServerOptions.Size = new System.Drawing.Size(234, 95);
+ this.grpServerOptions.TabIndex = 45;
+ this.grpServerOptions.TabStop = false;
+ this.grpServerOptions.Text = "Server Options";
+ //
+ // lblCompressionType
+ //
+ this.lblCompressionType.AutoSize = true;
+ this.lblCompressionType.Location = new System.Drawing.Point(4, 65);
+ this.lblCompressionType.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.lblCompressionType.Name = "lblCompressionType";
+ this.lblCompressionType.Size = new System.Drawing.Size(97, 13);
+ this.lblCompressionType.TabIndex = 92;
+ this.lblCompressionType.Text = "Compression Type:";
+ //
+ // cboCompressionType
+ //
+ this.cboCompressionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.cboCompressionType.FormattingEnabled = true;
+ this.cboCompressionType.Location = new System.Drawing.Point(106, 62);
+ this.cboCompressionType.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.cboCompressionType.Name = "cboCompressionType";
+ this.cboCompressionType.Size = new System.Drawing.Size(86, 21);
+ this.cboCompressionType.TabIndex = 48;
+ //
+ // lblImageFormat
+ //
+ this.lblImageFormat.AutoSize = true;
+ this.lblImageFormat.Location = new System.Drawing.Point(26, 41);
+ this.lblImageFormat.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.lblImageFormat.Name = "lblImageFormat";
+ this.lblImageFormat.Size = new System.Drawing.Size(74, 13);
+ this.lblImageFormat.TabIndex = 90;
+ this.lblImageFormat.Text = "Image Format:";
+ //
+ // cboImageFormat
+ //
+ this.cboImageFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.cboImageFormat.FormattingEnabled = true;
+ this.cboImageFormat.Location = new System.Drawing.Point(106, 37);
+ this.cboImageFormat.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.cboImageFormat.Name = "cboImageFormat";
+ this.cboImageFormat.Size = new System.Drawing.Size(86, 21);
+ this.cboImageFormat.TabIndex = 47;
+ this.cboImageFormat.SelectedIndexChanged += new System.EventHandler(this.cboImageFormat_SelectedIndexChanged);
+ //
+ // lblServerServerPortNum
+ //
+ this.lblServerServerPortNum.AutoSize = true;
+ this.lblServerServerPortNum.Location = new System.Drawing.Point(34, 16);
+ this.lblServerServerPortNum.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.lblServerServerPortNum.Name = "lblServerServerPortNum";
+ this.lblServerServerPortNum.Size = new System.Drawing.Size(69, 13);
+ this.lblServerServerPortNum.TabIndex = 5;
+ this.lblServerServerPortNum.Text = "Port Number:";
+ this.lblServerServerPortNum.TextAlign = System.Drawing.ContentAlignment.TopRight;
+ //
+ // txtNetworkServerUsePortNum
+ //
+ this.txtNetworkServerUsePortNum.Location = new System.Drawing.Point(106, 13);
+ this.txtNetworkServerUsePortNum.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.txtNetworkServerUsePortNum.MaxLength = 5;
+ this.txtNetworkServerUsePortNum.Name = "txtNetworkServerUsePortNum";
+ this.txtNetworkServerUsePortNum.Size = new System.Drawing.Size(86, 20);
+ this.txtNetworkServerUsePortNum.TabIndex = 46;
+ //
// tabPerformance
//
this.tabPerformance.Controls.Add(this.grpPerformanceOptions);
- this.tabPerformance.Location = new System.Drawing.Point(8, 39);
- this.tabPerformance.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabPerformance.Location = new System.Drawing.Point(4, 22);
+ this.tabPerformance.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabPerformance.Name = "tabPerformance";
- this.tabPerformance.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabPerformance.Size = new System.Drawing.Size(1040, 902);
+ this.tabPerformance.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabPerformance.Size = new System.Drawing.Size(520, 467);
this.tabPerformance.TabIndex = 18;
this.tabPerformance.Text = "Performance";
this.tabPerformance.UseVisualStyleBackColor = true;
@@ -2790,21 +2791,21 @@ private void InitializeComponent()
this.grpPerformanceOptions.Controls.Add(this.label18);
this.grpPerformanceOptions.Controls.Add(this.txtPollDelay);
this.grpPerformanceOptions.Dock = System.Windows.Forms.DockStyle.Fill;
- this.grpPerformanceOptions.Location = new System.Drawing.Point(5, 6);
- this.grpPerformanceOptions.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.grpPerformanceOptions.Location = new System.Drawing.Point(2, 3);
+ this.grpPerformanceOptions.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.grpPerformanceOptions.Name = "grpPerformanceOptions";
- this.grpPerformanceOptions.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.grpPerformanceOptions.Size = new System.Drawing.Size(1030, 890);
+ this.grpPerformanceOptions.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.grpPerformanceOptions.Size = new System.Drawing.Size(516, 461);
this.grpPerformanceOptions.TabIndex = 57;
this.grpPerformanceOptions.TabStop = false;
this.grpPerformanceOptions.Text = "Performance";
//
// cmdBMSOptions
//
- this.cmdBMSOptions.Location = new System.Drawing.Point(24, 79);
- this.cmdBMSOptions.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdBMSOptions.Location = new System.Drawing.Point(12, 41);
+ this.cmdBMSOptions.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdBMSOptions.Name = "cmdBMSOptions";
- this.cmdBMSOptions.Size = new System.Drawing.Size(416, 61);
+ this.cmdBMSOptions.Size = new System.Drawing.Size(208, 32);
this.cmdBMSOptions.TabIndex = 52;
this.cmdBMSOptions.Text = "Falcon BMS Advanced Options...";
this.cmdBMSOptions.UseVisualStyleBackColor = true;
@@ -2813,39 +2814,39 @@ private void InitializeComponent()
// lblMilliseconds
//
this.lblMilliseconds.AutoSize = true;
- this.lblMilliseconds.Location = new System.Drawing.Point(373, 42);
- this.lblMilliseconds.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.lblMilliseconds.Location = new System.Drawing.Point(186, 22);
+ this.lblMilliseconds.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblMilliseconds.Name = "lblMilliseconds";
- this.lblMilliseconds.Size = new System.Drawing.Size(130, 25);
+ this.lblMilliseconds.Size = new System.Drawing.Size(63, 13);
this.lblMilliseconds.TabIndex = 77;
this.lblMilliseconds.Text = "milliseconds";
//
// label18
//
this.label18.AutoSize = true;
- this.label18.Location = new System.Drawing.Point(32, 42);
- this.label18.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.label18.Location = new System.Drawing.Point(16, 22);
+ this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(231, 25);
+ this.label18.Size = new System.Drawing.Size(115, 13);
this.label18.TabIndex = 27;
this.label18.Text = "Poll for new data every";
//
// txtPollDelay
//
- this.txtPollDelay.Location = new System.Drawing.Point(307, 36);
- this.txtPollDelay.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.txtPollDelay.Location = new System.Drawing.Point(154, 19);
+ this.txtPollDelay.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.txtPollDelay.Name = "txtPollDelay";
- this.txtPollDelay.Size = new System.Drawing.Size(52, 31);
+ this.txtPollDelay.Size = new System.Drawing.Size(28, 20);
this.txtPollDelay.TabIndex = 50;
//
// tabGraphics
//
this.tabGraphics.Controls.Add(this.gbGDIOptions);
- this.tabGraphics.Location = new System.Drawing.Point(8, 39);
- this.tabGraphics.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabGraphics.Location = new System.Drawing.Point(4, 22);
+ this.tabGraphics.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabGraphics.Name = "tabGraphics";
- this.tabGraphics.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabGraphics.Size = new System.Drawing.Size(1040, 902);
+ this.tabGraphics.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabGraphics.Size = new System.Drawing.Size(520, 467);
this.tabGraphics.TabIndex = 15;
this.tabGraphics.Text = "Graphics";
this.tabGraphics.UseVisualStyleBackColor = true;
@@ -2854,11 +2855,11 @@ private void InitializeComponent()
//
this.gbGDIOptions.Controls.Add(this.chkHighlightOutputWindowsWhenContainMouseCursor);
this.gbGDIOptions.Dock = System.Windows.Forms.DockStyle.Fill;
- this.gbGDIOptions.Location = new System.Drawing.Point(5, 6);
- this.gbGDIOptions.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.gbGDIOptions.Location = new System.Drawing.Point(2, 3);
+ this.gbGDIOptions.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.gbGDIOptions.Name = "gbGDIOptions";
- this.gbGDIOptions.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.gbGDIOptions.Size = new System.Drawing.Size(1030, 890);
+ this.gbGDIOptions.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.gbGDIOptions.Size = new System.Drawing.Size(516, 461);
this.gbGDIOptions.TabIndex = 56;
this.gbGDIOptions.TabStop = false;
this.gbGDIOptions.Text = "Graphics";
@@ -2866,10 +2867,10 @@ private void InitializeComponent()
// chkHighlightOutputWindowsWhenContainMouseCursor
//
this.chkHighlightOutputWindowsWhenContainMouseCursor.AutoSize = true;
- this.chkHighlightOutputWindowsWhenContainMouseCursor.Location = new System.Drawing.Point(10, 36);
- this.chkHighlightOutputWindowsWhenContainMouseCursor.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkHighlightOutputWindowsWhenContainMouseCursor.Location = new System.Drawing.Point(5, 19);
+ this.chkHighlightOutputWindowsWhenContainMouseCursor.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkHighlightOutputWindowsWhenContainMouseCursor.Name = "chkHighlightOutputWindowsWhenContainMouseCursor";
- this.chkHighlightOutputWindowsWhenContainMouseCursor.Size = new System.Drawing.Size(350, 29);
+ this.chkHighlightOutputWindowsWhenContainMouseCursor.Size = new System.Drawing.Size(177, 17);
this.chkHighlightOutputWindowsWhenContainMouseCursor.TabIndex = 0;
this.chkHighlightOutputWindowsWhenContainMouseCursor.Text = "Highlight output window borders";
this.chkHighlightOutputWindowsWhenContainMouseCursor.UseVisualStyleBackColor = true;
@@ -2878,11 +2879,11 @@ private void InitializeComponent()
// tabStartup
//
this.tabStartup.Controls.Add(this.grpStartupOptions);
- this.tabStartup.Location = new System.Drawing.Point(8, 39);
- this.tabStartup.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.tabStartup.Location = new System.Drawing.Point(4, 22);
+ this.tabStartup.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.tabStartup.Name = "tabStartup";
- this.tabStartup.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.tabStartup.Size = new System.Drawing.Size(1040, 902);
+ this.tabStartup.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.tabStartup.Size = new System.Drawing.Size(520, 467);
this.tabStartup.TabIndex = 17;
this.tabStartup.Text = "Startup";
this.tabStartup.UseVisualStyleBackColor = true;
@@ -2892,11 +2893,11 @@ private void InitializeComponent()
this.grpStartupOptions.Controls.Add(this.chkStartWithWindows);
this.grpStartupOptions.Controls.Add(this.chkStartOnLaunch);
this.grpStartupOptions.Dock = System.Windows.Forms.DockStyle.Fill;
- this.grpStartupOptions.Location = new System.Drawing.Point(5, 6);
- this.grpStartupOptions.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.grpStartupOptions.Location = new System.Drawing.Point(2, 3);
+ this.grpStartupOptions.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.grpStartupOptions.Name = "grpStartupOptions";
- this.grpStartupOptions.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.grpStartupOptions.Size = new System.Drawing.Size(1030, 890);
+ this.grpStartupOptions.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.grpStartupOptions.Size = new System.Drawing.Size(516, 461);
this.grpStartupOptions.TabIndex = 55;
this.grpStartupOptions.TabStop = false;
this.grpStartupOptions.Text = "Startup";
@@ -2904,10 +2905,10 @@ private void InitializeComponent()
// chkStartWithWindows
//
this.chkStartWithWindows.AutoSize = true;
- this.chkStartWithWindows.Location = new System.Drawing.Point(32, 75);
- this.chkStartWithWindows.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkStartWithWindows.Location = new System.Drawing.Point(16, 39);
+ this.chkStartWithWindows.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkStartWithWindows.Name = "chkStartWithWindows";
- this.chkStartWithWindows.Size = new System.Drawing.Size(478, 29);
+ this.chkStartWithWindows.Size = new System.Drawing.Size(240, 17);
this.chkStartWithWindows.TabIndex = 55;
this.chkStartWithWindows.Text = "Launch automatically during Windows startup";
this.chkStartWithWindows.UseVisualStyleBackColor = true;
@@ -2915,20 +2916,20 @@ private void InitializeComponent()
// chkStartOnLaunch
//
this.chkStartOnLaunch.AutoSize = true;
- this.chkStartOnLaunch.Location = new System.Drawing.Point(32, 31);
- this.chkStartOnLaunch.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.chkStartOnLaunch.Location = new System.Drawing.Point(16, 16);
+ this.chkStartOnLaunch.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.chkStartOnLaunch.Name = "chkStartOnLaunch";
- this.chkStartOnLaunch.Size = new System.Drawing.Size(487, 29);
+ this.chkStartOnLaunch.Size = new System.Drawing.Size(243, 17);
this.chkStartOnLaunch.TabIndex = 54;
this.chkStartOnLaunch.Text = "Start extracting when this program is launched";
this.chkStartOnLaunch.UseVisualStyleBackColor = true;
//
// cmdResetToDefaults
//
- this.cmdResetToDefaults.Location = new System.Drawing.Point(779, 968);
- this.cmdResetToDefaults.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdResetToDefaults.Location = new System.Drawing.Point(390, 503);
+ this.cmdResetToDefaults.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdResetToDefaults.Name = "cmdResetToDefaults";
- this.cmdResetToDefaults.Size = new System.Drawing.Size(252, 44);
+ this.cmdResetToDefaults.Size = new System.Drawing.Size(126, 23);
this.cmdResetToDefaults.TabIndex = 152;
this.cmdResetToDefaults.Text = "Rese&t to Defaults";
this.cmdResetToDefaults.UseVisualStyleBackColor = true;
@@ -2965,7 +2966,7 @@ private void InitializeComponent()
this.label25.AutoSize = true;
this.label25.Location = new System.Drawing.Point(6, 48);
this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(139, 25);
+ this.label25.Size = new System.Drawing.Size(70, 13);
this.label25.TabIndex = 21;
this.label25.Text = "Upper Left Y:";
//
@@ -2974,7 +2975,7 @@ private void InitializeComponent()
this.label26.AutoSize = true;
this.label26.Location = new System.Drawing.Point(149, 48);
this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(153, 25);
+ this.label26.Size = new System.Drawing.Size(77, 13);
this.label26.TabIndex = 22;
this.label26.Text = "Lower Right Y:";
//
@@ -2983,7 +2984,7 @@ private void InitializeComponent()
this.label27.AutoSize = true;
this.label27.Location = new System.Drawing.Point(6, 22);
this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(138, 25);
+ this.label27.Size = new System.Drawing.Size(70, 13);
this.label27.TabIndex = 19;
this.label27.Text = "Upper Left X:";
//
@@ -2991,14 +2992,14 @@ private void InitializeComponent()
//
this.textBox1.Location = new System.Drawing.Point(82, 19);
this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(61, 31);
+ this.textBox1.Size = new System.Drawing.Size(61, 20);
this.textBox1.TabIndex = 9;
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(232, 45);
this.textBox2.Name = "textBox2";
- this.textBox2.Size = new System.Drawing.Size(61, 31);
+ this.textBox2.Size = new System.Drawing.Size(61, 20);
this.textBox2.TabIndex = 12;
//
// label32
@@ -3006,7 +3007,7 @@ private void InitializeComponent()
this.label32.AutoSize = true;
this.label32.Location = new System.Drawing.Point(149, 22);
this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(152, 25);
+ this.label32.Size = new System.Drawing.Size(77, 13);
this.label32.TabIndex = 20;
this.label32.Text = "Lower Right X:";
//
@@ -3014,14 +3015,14 @@ private void InitializeComponent()
//
this.textBox3.Location = new System.Drawing.Point(82, 45);
this.textBox3.Name = "textBox3";
- this.textBox3.Size = new System.Drawing.Size(61, 31);
+ this.textBox3.Size = new System.Drawing.Size(61, 20);
this.textBox3.TabIndex = 10;
//
// textBox4
//
this.textBox4.Location = new System.Drawing.Point(232, 19);
this.textBox4.Name = "textBox4";
- this.textBox4.Size = new System.Drawing.Size(61, 31);
+ this.textBox4.Size = new System.Drawing.Size(61, 20);
this.textBox4.TabIndex = 11;
//
// checkBox1
@@ -3056,7 +3057,7 @@ private void InitializeComponent()
this.label33.AutoSize = true;
this.label33.Location = new System.Drawing.Point(6, 48);
this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(139, 25);
+ this.label33.Size = new System.Drawing.Size(70, 13);
this.label33.TabIndex = 21;
this.label33.Text = "Upper Left Y:";
//
@@ -3065,7 +3066,7 @@ private void InitializeComponent()
this.label34.AutoSize = true;
this.label34.Location = new System.Drawing.Point(149, 48);
this.label34.Name = "label34";
- this.label34.Size = new System.Drawing.Size(153, 25);
+ this.label34.Size = new System.Drawing.Size(77, 13);
this.label34.TabIndex = 22;
this.label34.Text = "Lower Right Y:";
//
@@ -3074,7 +3075,7 @@ private void InitializeComponent()
this.label35.AutoSize = true;
this.label35.Location = new System.Drawing.Point(6, 22);
this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(138, 25);
+ this.label35.Size = new System.Drawing.Size(70, 13);
this.label35.TabIndex = 19;
this.label35.Text = "Upper Left X:";
//
@@ -3082,14 +3083,14 @@ private void InitializeComponent()
//
this.textBox5.Location = new System.Drawing.Point(82, 19);
this.textBox5.Name = "textBox5";
- this.textBox5.Size = new System.Drawing.Size(61, 31);
+ this.textBox5.Size = new System.Drawing.Size(61, 20);
this.textBox5.TabIndex = 4;
//
// textBox6
//
this.textBox6.Location = new System.Drawing.Point(232, 45);
this.textBox6.Name = "textBox6";
- this.textBox6.Size = new System.Drawing.Size(61, 31);
+ this.textBox6.Size = new System.Drawing.Size(61, 20);
this.textBox6.TabIndex = 7;
//
// label36
@@ -3097,7 +3098,7 @@ private void InitializeComponent()
this.label36.AutoSize = true;
this.label36.Location = new System.Drawing.Point(149, 22);
this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(152, 25);
+ this.label36.Size = new System.Drawing.Size(77, 13);
this.label36.TabIndex = 20;
this.label36.Text = "Lower Right X:";
//
@@ -3105,33 +3106,44 @@ private void InitializeComponent()
//
this.textBox7.Location = new System.Drawing.Point(82, 45);
this.textBox7.Name = "textBox7";
- this.textBox7.Size = new System.Drawing.Size(61, 31);
+ this.textBox7.Size = new System.Drawing.Size(61, 20);
this.textBox7.TabIndex = 5;
//
// textBox8
//
this.textBox8.Location = new System.Drawing.Point(232, 19);
this.textBox8.Name = "textBox8";
- this.textBox8.Size = new System.Drawing.Size(61, 31);
+ this.textBox8.Size = new System.Drawing.Size(61, 20);
this.textBox8.TabIndex = 6;
//
// cmdApply
//
- this.cmdApply.Location = new System.Drawing.Point(477, 964);
- this.cmdApply.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.cmdApply.Location = new System.Drawing.Point(238, 501);
+ this.cmdApply.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.cmdApply.Name = "cmdApply";
- this.cmdApply.Size = new System.Drawing.Size(213, 56);
+ this.cmdApply.Size = new System.Drawing.Size(106, 29);
this.cmdApply.TabIndex = 155;
this.cmdApply.Text = "&Apply";
this.cmdApply.UseVisualStyleBackColor = true;
this.cmdApply.Click += new System.EventHandler(this.cmdApply_Click);
//
+ // chkRPMPW
+ //
+ this.chkRPMPW.AutoSize = true;
+ this.chkRPMPW.Location = new System.Drawing.Point(89, 91);
+ this.chkRPMPW.Name = "chkRPMPW";
+ this.chkRPMPW.Size = new System.Drawing.Size(123, 17);
+ this.chkRPMPW.TabIndex = 41;
+ this.chkRPMPW.Text = "PW Engine max 100";
+ this.chkRPMPW.UseVisualStyleBackColor = true;
+ this.chkRPMPW.CheckedChanged += new System.EventHandler(this.chkRPMPW_CheckedChanged);
+ //
// frmOptions
//
- this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
- this.ClientSize = new System.Drawing.Size(1056, 1032);
+ this.ClientSize = new System.Drawing.Size(528, 537);
this.ControlBox = false;
this.Controls.Add(this.tabAllTabs);
this.Controls.Add(this.cmdApply);
@@ -3141,7 +3153,7 @@ private void InitializeComponent()
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmOptions";
@@ -3258,12 +3270,12 @@ private void InitializeComponent()
this.gbISIS.PerformLayout();
this.tabNetworking.ResumeLayout(false);
this.grpNetworkMode.ResumeLayout(false);
- this.grpServerOptions.ResumeLayout(false);
- this.grpServerOptions.PerformLayout();
this.gbNetworkingMode.ResumeLayout(false);
this.gbNetworkingMode.PerformLayout();
this.grpClientOptions.ResumeLayout(false);
this.grpClientOptions.PerformLayout();
+ this.grpServerOptions.ResumeLayout(false);
+ this.grpServerOptions.PerformLayout();
this.tabPerformance.ResumeLayout(false);
this.grpPerformanceOptions.ResumeLayout(false);
this.grpPerformanceOptions.PerformLayout();
@@ -3502,5 +3514,6 @@ private void InitializeComponent()
private System.Windows.Forms.TabPage tabISISKeys;
private System.Windows.Forms.TabPage tabMfdsHud;
private System.Windows.Forms.TextBox txtClientUseServerIpAddress;
+ private System.Windows.Forms.CheckBox chkRPMPW;
}
}
\ No newline at end of file
diff --git a/src/MFDExtractor/MFDExtractor/UI/frmOptions.cs b/src/MFDExtractor/MFDExtractor/UI/frmOptions.cs
index 3c3114c1..e948f585 100644
--- a/src/MFDExtractor/MFDExtractor/UI/frmOptions.cs
+++ b/src/MFDExtractor/MFDExtractor/UI/frmOptions.cs
@@ -265,6 +265,7 @@ private void LoadSettings()
chkOIL1.Checked = settings.EnableOIL1Output;
chkOIL2.Checked = settings.EnableOIL2Output;
chkRPM1.Checked = settings.EnableRPM1Output;
+ chkRPMPW.Checked = settings.IsPwEngine;
chkRPM2.Checked = settings.EnableRPM2Output;
chkEPU.Checked = settings.EnableEPUFuelOutput;
chkFuelFlow.Checked = settings.EnableFuelFlowOutput;
@@ -1804,6 +1805,10 @@ private void cmdRecoverHud_Click(object sender, EventArgs e)
RecoverInstrument("HUD");
}
-
+ private void chkRPMPW_CheckedChanged(object sender, EventArgs e)
+ {
+ Settings.Default.IsPwEngine = chkRPMPW.Checked;
+ BringToFront();
+ }
}
}
\ No newline at end of file
diff --git a/src/MFDExtractor/MFDExtractor/app.config b/src/MFDExtractor/MFDExtractor/app.config
index efd51344..20b47a39 100644
--- a/src/MFDExtractor/MFDExtractor/app.config
+++ b/src/MFDExtractor/MFDExtractor/app.config
@@ -51,10 +51,10 @@
False
-
+
-
+
RotateNoneFlipNone
@@ -90,7 +90,7 @@
200
-
+
RotateNoneFlipNone
@@ -102,7 +102,7 @@
0
-
+
62121
@@ -120,7 +120,7 @@
False
-
+
PNG
@@ -141,7 +141,7 @@
RotateNoneFlipNone
-
+
0
@@ -168,7 +168,7 @@
False
-
+
RotateNoneFlipNone
@@ -219,7 +219,7 @@
False
-
+
RotateNoneFlipNone
@@ -252,7 +252,7 @@
False
-
+
RotateNoneFlipNone
@@ -285,7 +285,7 @@
False
-
+
RotateNoneFlipNone
@@ -318,7 +318,7 @@
False
-
+
RotateNoneFlipNone
@@ -351,7 +351,7 @@
False
-
+
RotateNoneFlipNone
@@ -384,7 +384,7 @@
False
-
+
RotateNoneFlipNone
@@ -417,7 +417,7 @@
False
-
+
RotateNoneFlipNone
@@ -450,7 +450,7 @@
False
-
+
RotateNoneFlipNone
@@ -483,7 +483,7 @@
False
-
+
RotateNoneFlipNone
@@ -516,7 +516,7 @@
False
-
+
RotateNoneFlipNone
@@ -549,7 +549,7 @@
False
-
+
RotateNoneFlipNone
@@ -582,7 +582,7 @@
False
-
+
RotateNoneFlipNone
@@ -615,7 +615,7 @@
False
-
+
RotateNoneFlipNone
@@ -648,7 +648,7 @@
False
-
+
RotateNoneFlipNone
@@ -681,7 +681,7 @@
False
-
+
RotateNoneFlipNone
@@ -714,7 +714,7 @@
False
-
+
RotateNoneFlipNone
@@ -747,7 +747,7 @@
False
-
+
RotateNoneFlipNone
@@ -780,7 +780,7 @@
False
-
+
RotateNoneFlipNone
@@ -813,7 +813,7 @@
False
-
+
RotateNoneFlipNone
@@ -846,7 +846,7 @@
False
-
+
RotateNoneFlipNone
@@ -879,7 +879,7 @@
False
-
+
RotateNoneFlipNone
@@ -912,7 +912,7 @@
False
-
+
RotateNoneFlipNone
@@ -945,7 +945,7 @@
False
-
+
RotateNoneFlipNone
@@ -978,7 +978,7 @@
False
-
+
RotateNoneFlipNone
@@ -1011,7 +1011,7 @@
False
-
+
RotateNoneFlipNone
@@ -1044,7 +1044,7 @@
False
-
+
RotateNoneFlipNone
@@ -1077,7 +1077,7 @@
False
-
+
RotateNoneFlipNone
@@ -1110,7 +1110,7 @@
False
-
+
RotateNoneFlipNone
@@ -1143,7 +1143,7 @@
False
-
+
RotateNoneFlipNone
@@ -1176,7 +1176,7 @@
False
-
+
RotateNoneFlipNone
@@ -1209,7 +1209,7 @@
False
-
+
RotateNoneFlipNone
@@ -1242,7 +1242,7 @@
False
-
+
RotateNoneFlipNone
@@ -1275,7 +1275,7 @@
False
-
+
RotateNoneFlipNone
@@ -1287,7 +1287,40 @@
False
-
+
+
+
+ False
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 312
+
+
+ 312
+
+
+ False
+
+
+
+
+
+ RotateNoneFlipNone
+
+
+ True
+
+
+ False
IP1310ALR
@@ -1329,7 +1362,7 @@
False
-
+
RotateNoneFlipNone
@@ -1347,10 +1380,10 @@
FeetPerSecond
-
+
-
+
False
@@ -1374,7 +1407,7 @@
False
-
+
RotateNoneFlipNone
@@ -1386,22 +1419,22 @@
False
-
+
-
+
-
+
-
+
-
+
-
+
255
@@ -1410,16 +1443,16 @@
0
-
+
-
+
-
+
-
+
False
@@ -1443,7 +1476,7 @@
False
-
+
RotateNoneFlipNone
@@ -1455,7 +1488,7 @@
False
-
+
True
@@ -1472,6 +1505,9 @@
5
+
+ False
+
@@ -1483,11 +1519,11 @@
-
+