ardupilot/Tools/ArdupilotMegaPlanner/Log.Designer.cs
Michael Oborne 944488afaf APM Planner 1.1.99
Convert to IActivate, IDeactivate scheme, thanks andrew
add support for rfcomm* interfaces on linux
fix guage off screen draw mono issue.
remove use of BackStageViewContentPanel
andrews spacer changes - not using dues to screen space issue
change configpanel constructor to load xml directly
remove IMavlink Interface
fix hsi off screen draw issue on mono
modify hud to use sprite fonts, instead of drawing via GDI+
modify progress reporter to use a 10hz timer to update screen, using invoke/begininvoke fails on mono at 50hz (over 100ms per call).
fix targetalt and target airspeed jumping issue.
lots of cleanup on tab switching, ie stoping timers/other
3dr radio status led update
update ardurover car icon
speedup georef image screen. tested on over 1000 images.
2012-07-22 15:51:05 +08:00

137 lines
6.0 KiB
C#

namespace ArdupilotMega
{
partial class Log
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Log));
this.TXT_seriallog = new System.Windows.Forms.TextBox();
this.BUT_DLall = new ArdupilotMega.Controls.MyButton();
this.BUT_DLthese = new ArdupilotMega.Controls.MyButton();
this.BUT_clearlogs = new ArdupilotMega.Controls.MyButton();
this.CHK_logs = new System.Windows.Forms.CheckedListBox();
this.TXT_status = new System.Windows.Forms.TextBox();
this.BUT_redokml = new ArdupilotMega.Controls.MyButton();
this.BUT_firstperson = new ArdupilotMega.Controls.MyButton();
this.BUT_dumpdf = new ArdupilotMega.Controls.MyButton();
this.SuspendLayout();
//
// TXT_seriallog
//
resources.ApplyResources(this.TXT_seriallog, "TXT_seriallog");
this.TXT_seriallog.Name = "TXT_seriallog";
//
// BUT_DLall
//
resources.ApplyResources(this.BUT_DLall, "BUT_DLall");
this.BUT_DLall.Name = "BUT_DLall";
this.BUT_DLall.UseVisualStyleBackColor = true;
this.BUT_DLall.Click += new System.EventHandler(this.BUT_DLall_Click);
//
// BUT_DLthese
//
resources.ApplyResources(this.BUT_DLthese, "BUT_DLthese");
this.BUT_DLthese.Name = "BUT_DLthese";
this.BUT_DLthese.UseVisualStyleBackColor = true;
this.BUT_DLthese.Click += new System.EventHandler(this.BUT_DLthese_Click);
//
// BUT_clearlogs
//
resources.ApplyResources(this.BUT_clearlogs, "BUT_clearlogs");
this.BUT_clearlogs.Name = "BUT_clearlogs";
this.BUT_clearlogs.UseVisualStyleBackColor = true;
this.BUT_clearlogs.Click += new System.EventHandler(this.BUT_clearlogs_Click);
//
// CHK_logs
//
this.CHK_logs.CheckOnClick = true;
this.CHK_logs.FormattingEnabled = true;
resources.ApplyResources(this.CHK_logs, "CHK_logs");
this.CHK_logs.Name = "CHK_logs";
this.CHK_logs.Click += new System.EventHandler(this.CHK_logs_Click);
//
// TXT_status
//
resources.ApplyResources(this.TXT_status, "TXT_status");
this.TXT_status.ForeColor = System.Drawing.Color.Red;
this.TXT_status.Name = "TXT_status";
//
// BUT_redokml
//
resources.ApplyResources(this.BUT_redokml, "BUT_redokml");
this.BUT_redokml.Name = "BUT_redokml";
this.BUT_redokml.UseVisualStyleBackColor = true;
this.BUT_redokml.Click += new System.EventHandler(this.BUT_redokml_Click);
//
// BUT_firstperson
//
resources.ApplyResources(this.BUT_firstperson, "BUT_firstperson");
this.BUT_firstperson.Name = "BUT_firstperson";
this.BUT_firstperson.UseVisualStyleBackColor = true;
this.BUT_firstperson.Click += new System.EventHandler(this.BUT_firstperson_Click);
//
// BUT_dumpdf
//
resources.ApplyResources(this.BUT_dumpdf, "BUT_dumpdf");
this.BUT_dumpdf.Name = "BUT_dumpdf";
this.BUT_dumpdf.UseVisualStyleBackColor = true;
this.BUT_dumpdf.Click += new System.EventHandler(this.BUT_dumpdf_Click);
//
// Log
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.BUT_dumpdf);
this.Controls.Add(this.BUT_firstperson);
this.Controls.Add(this.BUT_redokml);
this.Controls.Add(this.TXT_status);
this.Controls.Add(this.CHK_logs);
this.Controls.Add(this.BUT_clearlogs);
this.Controls.Add(this.BUT_DLthese);
this.Controls.Add(this.BUT_DLall);
this.Controls.Add(this.TXT_seriallog);
this.Name = "Log";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Log_FormClosing);
this.Load += new System.EventHandler(this.Log_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private ArdupilotMega.Controls.MyButton BUT_DLall;
private ArdupilotMega.Controls.MyButton BUT_DLthese;
private ArdupilotMega.Controls.MyButton BUT_clearlogs;
private System.Windows.Forms.CheckedListBox CHK_logs;
private System.Windows.Forms.TextBox TXT_status;
private ArdupilotMega.Controls.MyButton BUT_redokml;
private System.Windows.Forms.TextBox TXT_seriallog;
private ArdupilotMega.Controls.MyButton BUT_firstperson;
private Controls.MyButton BUT_dumpdf;
}
}