Click here to Skip to main content
15,892,746 members
Articles / Programming Languages / Java

NMEA 0183 sentence parser/builder

Rate me:
Please Sign up or sign in to vote.
4.78/5 (25 votes)
10 Dec 2013CPOL6 min read 248.6K   15K   97  
Library for working with NMEA0183 devices
namespace GNSSView
{
    partial class MainForm
    {
        /// <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(MainForm));
            this.mainToolStrip = new System.Windows.Forms.ToolStrip();
            this.openCloseBtn = new System.Windows.Forms.ToolStripButton();
            this.settingsBtn = new System.Windows.Forms.ToolStripButton();
            this.exitBtn = new System.Windows.Forms.ToolStripButton();
            this.mainStatusStrip = new System.Windows.Forms.StatusStrip();
            this.splitContainer = new System.Windows.Forms.SplitContainer();
            this.rmcGroup = new System.Windows.Forms.GroupBox();
            this.rmcTxb = new System.Windows.Forms.TextBox();
            this.ggaGroup = new System.Windows.Forms.GroupBox();
            this.ggaTxb = new System.Windows.Forms.TextBox();
            this.vtgGroup = new System.Windows.Forms.GroupBox();
            this.vtgTxb = new System.Windows.Forms.TextBox();
            this.gsvGroup = new System.Windows.Forms.GroupBox();
            this.gsvLbx = new System.Windows.Forms.ListBox();
            this.gllGroup = new System.Windows.Forms.GroupBox();
            this.gllDataTxb = new System.Windows.Forms.TextBox();
            this.leftSplit = new System.Windows.Forms.SplitContainer();
            this.rawOutGroup = new System.Windows.Forms.GroupBox();
            this.rawOutTxb = new System.Windows.Forms.TextBox();
            this.geoPlot = new GeoPlot();
            this.mainToolStrip.SuspendLayout();
            this.splitContainer.Panel1.SuspendLayout();
            this.splitContainer.Panel2.SuspendLayout();
            this.splitContainer.SuspendLayout();
            this.rmcGroup.SuspendLayout();
            this.ggaGroup.SuspendLayout();
            this.vtgGroup.SuspendLayout();
            this.gsvGroup.SuspendLayout();
            this.gllGroup.SuspendLayout();
            this.leftSplit.Panel1.SuspendLayout();
            this.leftSplit.Panel2.SuspendLayout();
            this.leftSplit.SuspendLayout();
            this.rawOutGroup.SuspendLayout();
            this.SuspendLayout();
            // 
            // mainToolStrip
            // 
            this.mainToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.openCloseBtn,
            this.settingsBtn,
            this.exitBtn});
            this.mainToolStrip.Location = new System.Drawing.Point(0, 0);
            this.mainToolStrip.Name = "mainToolStrip";
            this.mainToolStrip.Size = new System.Drawing.Size(792, 33);
            this.mainToolStrip.TabIndex = 0;
            this.mainToolStrip.Text = "toolStrip";
            // 
            // openCloseBtn
            // 
            this.openCloseBtn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.openCloseBtn.Image = ((System.Drawing.Image)(resources.GetObject("openCloseBtn.Image")));
            this.openCloseBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.openCloseBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.openCloseBtn.Name = "openCloseBtn";
            this.openCloseBtn.Size = new System.Drawing.Size(23, 30);
            this.openCloseBtn.Text = "Open/Close";
            this.openCloseBtn.Click += new System.EventHandler(this.openCloseBtn_Click);
            // 
            // settingsBtn
            // 
            this.settingsBtn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.settingsBtn.Image = ((System.Drawing.Image)(resources.GetObject("settingsBtn.Image")));
            this.settingsBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.settingsBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.settingsBtn.Name = "settingsBtn";
            this.settingsBtn.Size = new System.Drawing.Size(30, 30);
            this.settingsBtn.Text = "Settings";
            this.settingsBtn.Click += new System.EventHandler(this.settingsBtn_Click);
            // 
            // exitBtn
            // 
            this.exitBtn.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.exitBtn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.exitBtn.Image = ((System.Drawing.Image)(resources.GetObject("exitBtn.Image")));
            this.exitBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.exitBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.exitBtn.Name = "exitBtn";
            this.exitBtn.Size = new System.Drawing.Size(26, 30);
            this.exitBtn.Text = "Exit";
            this.exitBtn.Click += new System.EventHandler(this.exitBtn_Click);
            // 
            // mainStatusStrip
            // 
            this.mainStatusStrip.Location = new System.Drawing.Point(0, 623);
            this.mainStatusStrip.Name = "mainStatusStrip";
            this.mainStatusStrip.Size = new System.Drawing.Size(792, 22);
            this.mainStatusStrip.TabIndex = 1;
            this.mainStatusStrip.Text = "statusStrip1";
            // 
            // splitContainer
            // 
            this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainer.Location = new System.Drawing.Point(0, 33);
            this.splitContainer.Name = "splitContainer";
            // 
            // splitContainer.Panel1
            // 
            this.splitContainer.Panel1.Controls.Add(this.rmcGroup);
            this.splitContainer.Panel1.Controls.Add(this.ggaGroup);
            this.splitContainer.Panel1.Controls.Add(this.vtgGroup);
            this.splitContainer.Panel1.Controls.Add(this.gsvGroup);
            this.splitContainer.Panel1.Controls.Add(this.gllGroup);
            // 
            // splitContainer.Panel2
            // 
            this.splitContainer.Panel2.Controls.Add(this.leftSplit);
            this.splitContainer.Size = new System.Drawing.Size(792, 590);
            this.splitContainer.SplitterDistance = 304;
            this.splitContainer.TabIndex = 2;
            // 
            // rmcGroup
            // 
            this.rmcGroup.Controls.Add(this.rmcTxb);
            this.rmcGroup.Location = new System.Drawing.Point(12, 484);
            this.rmcGroup.Name = "rmcGroup";
            this.rmcGroup.Size = new System.Drawing.Size(289, 101);
            this.rmcGroup.TabIndex = 4;
            this.rmcGroup.TabStop = false;
            this.rmcGroup.Text = "RMC sentence data";
            // 
            // rmcTxb
            // 
            this.rmcTxb.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.rmcTxb.Dock = System.Windows.Forms.DockStyle.Fill;
            this.rmcTxb.Location = new System.Drawing.Point(3, 16);
            this.rmcTxb.Multiline = true;
            this.rmcTxb.Name = "rmcTxb";
            this.rmcTxb.ReadOnly = true;
            this.rmcTxb.Size = new System.Drawing.Size(283, 82);
            this.rmcTxb.TabIndex = 2;
            // 
            // ggaGroup
            // 
            this.ggaGroup.Controls.Add(this.ggaTxb);
            this.ggaGroup.Location = new System.Drawing.Point(12, 340);
            this.ggaGroup.Name = "ggaGroup";
            this.ggaGroup.Size = new System.Drawing.Size(289, 138);
            this.ggaGroup.TabIndex = 3;
            this.ggaGroup.TabStop = false;
            this.ggaGroup.Text = "GGA sentence data";
            // 
            // ggaTxb
            // 
            this.ggaTxb.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.ggaTxb.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ggaTxb.Location = new System.Drawing.Point(3, 16);
            this.ggaTxb.Multiline = true;
            this.ggaTxb.Name = "ggaTxb";
            this.ggaTxb.ReadOnly = true;
            this.ggaTxb.Size = new System.Drawing.Size(283, 119);
            this.ggaTxb.TabIndex = 2;
            // 
            // vtgGroup
            // 
            this.vtgGroup.Controls.Add(this.vtgTxb);
            this.vtgGroup.Location = new System.Drawing.Point(12, 273);
            this.vtgGroup.Name = "vtgGroup";
            this.vtgGroup.Size = new System.Drawing.Size(289, 61);
            this.vtgGroup.TabIndex = 2;
            this.vtgGroup.TabStop = false;
            this.vtgGroup.Text = "VTG sentence data";
            // 
            // vtgTxb
            // 
            this.vtgTxb.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.vtgTxb.Dock = System.Windows.Forms.DockStyle.Fill;
            this.vtgTxb.Location = new System.Drawing.Point(3, 16);
            this.vtgTxb.Multiline = true;
            this.vtgTxb.Name = "vtgTxb";
            this.vtgTxb.ReadOnly = true;
            this.vtgTxb.Size = new System.Drawing.Size(283, 42);
            this.vtgTxb.TabIndex = 1;
            // 
            // gsvGroup
            // 
            this.gsvGroup.Controls.Add(this.gsvLbx);
            this.gsvGroup.Location = new System.Drawing.Point(12, 70);
            this.gsvGroup.Name = "gsvGroup";
            this.gsvGroup.Size = new System.Drawing.Size(289, 197);
            this.gsvGroup.TabIndex = 1;
            this.gsvGroup.TabStop = false;
            this.gsvGroup.Text = "GSV sentence data";
            // 
            // gsvLbx
            // 
            this.gsvLbx.BackColor = System.Drawing.SystemColors.ControlLight;
            this.gsvLbx.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.gsvLbx.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gsvLbx.FormattingEnabled = true;
            this.gsvLbx.IntegralHeight = false;
            this.gsvLbx.Location = new System.Drawing.Point(3, 16);
            this.gsvLbx.Name = "gsvLbx";
            this.gsvLbx.Size = new System.Drawing.Size(283, 178);
            this.gsvLbx.TabIndex = 0;
            // 
            // gllGroup
            // 
            this.gllGroup.Controls.Add(this.gllDataTxb);
            this.gllGroup.Location = new System.Drawing.Point(12, 3);
            this.gllGroup.Name = "gllGroup";
            this.gllGroup.Size = new System.Drawing.Size(289, 61);
            this.gllGroup.TabIndex = 0;
            this.gllGroup.TabStop = false;
            this.gllGroup.Text = "GLL sentence data";
            // 
            // gllDataTxb
            // 
            this.gllDataTxb.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.gllDataTxb.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gllDataTxb.Location = new System.Drawing.Point(3, 16);
            this.gllDataTxb.Multiline = true;
            this.gllDataTxb.Name = "gllDataTxb";
            this.gllDataTxb.ReadOnly = true;
            this.gllDataTxb.Size = new System.Drawing.Size(283, 42);
            this.gllDataTxb.TabIndex = 0;
            // 
            // leftSplit
            // 
            this.leftSplit.Dock = System.Windows.Forms.DockStyle.Fill;
            this.leftSplit.Location = new System.Drawing.Point(0, 0);
            this.leftSplit.Name = "leftSplit";
            this.leftSplit.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // leftSplit.Panel1
            // 
            this.leftSplit.Panel1.Controls.Add(this.geoPlot);
            // 
            // leftSplit.Panel2
            // 
            this.leftSplit.Panel2.Controls.Add(this.rawOutGroup);
            this.leftSplit.Size = new System.Drawing.Size(484, 590);
            this.leftSplit.SplitterDistance = 493;
            this.leftSplit.TabIndex = 0;
            // 
            // rawOutGroup
            // 
            this.rawOutGroup.Controls.Add(this.rawOutTxb);
            this.rawOutGroup.Dock = System.Windows.Forms.DockStyle.Fill;
            this.rawOutGroup.Location = new System.Drawing.Point(0, 0);
            this.rawOutGroup.Name = "rawOutGroup";
            this.rawOutGroup.Size = new System.Drawing.Size(484, 93);
            this.rawOutGroup.TabIndex = 0;
            this.rawOutGroup.TabStop = false;
            this.rawOutGroup.Text = "Raw output";
            // 
            // rawOutTxb
            // 
            this.rawOutTxb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.rawOutTxb.Dock = System.Windows.Forms.DockStyle.Fill;
            this.rawOutTxb.Location = new System.Drawing.Point(3, 16);
            this.rawOutTxb.Multiline = true;
            this.rawOutTxb.Name = "rawOutTxb";
            this.rawOutTxb.ReadOnly = true;
            this.rawOutTxb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.rawOutTxb.Size = new System.Drawing.Size(478, 74);
            this.rawOutTxb.TabIndex = 0;
            this.rawOutTxb.TextChanged += new System.EventHandler(this.rawOutTxb_TextChanged);
            // 
            // geoPlot
            // 
            this.geoPlot.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.geoPlot.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.geoPlot.Dock = System.Windows.Forms.DockStyle.Fill;
            this.geoPlot.Location = new System.Drawing.Point(0, 0);
            this.geoPlot.Name = "geoPlot";
            this.geoPlot.Size = new System.Drawing.Size(484, 493);
            this.geoPlot.TabIndex = 0;
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(792, 645);
            this.Controls.Add(this.splitContainer);
            this.Controls.Add(this.mainStatusStrip);
            this.Controls.Add(this.mainToolStrip);
            this.DoubleBuffered = true;
            this.Name = "MainForm";
            this.ShowIcon = false;
            this.Text = "GNSSView";
            this.mainToolStrip.ResumeLayout(false);
            this.mainToolStrip.PerformLayout();
            this.splitContainer.Panel1.ResumeLayout(false);
            this.splitContainer.Panel2.ResumeLayout(false);
            this.splitContainer.ResumeLayout(false);
            this.rmcGroup.ResumeLayout(false);
            this.rmcGroup.PerformLayout();
            this.ggaGroup.ResumeLayout(false);
            this.ggaGroup.PerformLayout();
            this.vtgGroup.ResumeLayout(false);
            this.vtgGroup.PerformLayout();
            this.gsvGroup.ResumeLayout(false);
            this.gllGroup.ResumeLayout(false);
            this.gllGroup.PerformLayout();
            this.leftSplit.Panel1.ResumeLayout(false);
            this.leftSplit.Panel2.ResumeLayout(false);
            this.leftSplit.ResumeLayout(false);
            this.rawOutGroup.ResumeLayout(false);
            this.rawOutGroup.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.ToolStrip mainToolStrip;
        private System.Windows.Forms.ToolStripButton openCloseBtn;
        private System.Windows.Forms.ToolStripButton settingsBtn;
        private System.Windows.Forms.ToolStripButton exitBtn;
        private System.Windows.Forms.StatusStrip mainStatusStrip;
        private System.Windows.Forms.SplitContainer splitContainer;
        private System.Windows.Forms.GroupBox gllGroup;
        private System.Windows.Forms.GroupBox vtgGroup;
        private System.Windows.Forms.GroupBox gsvGroup;
        private System.Windows.Forms.GroupBox ggaGroup;
        private System.Windows.Forms.TextBox gllDataTxb;
        private System.Windows.Forms.ListBox gsvLbx;
        private System.Windows.Forms.TextBox vtgTxb;
        private System.Windows.Forms.TextBox ggaTxb;
        private System.Windows.Forms.SplitContainer leftSplit;
        private GeoPlot geoPlot;
        private System.Windows.Forms.TextBox rawOutTxb;
        private System.Windows.Forms.GroupBox rawOutGroup;
        private System.Windows.Forms.GroupBox rmcGroup;
        private System.Windows.Forms.TextBox rmcTxb;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) JSC "SHTIL"
Russian Federation Russian Federation
underwater acoustics, communication and positioning.
Embedded software development. Digital signal processing.

Graduate of Volgograd Technical State University (2007),
Postgraduate student in Kovrov Technological State Academy (2012).

Comments and Discussions