Click here to Skip to main content
15,886,873 members
Articles / Programming Languages / C#

Integration: Mechanics + Hydraulics + Navigation

Rate me:
Please Sign up or sign in to vote.
5.00/5 (46 votes)
3 Feb 2011CPOL21 min read 61.6K   6.1K   88  
Sample of integration of branches of engineering.
using System;
using System.Drawing;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;
using System.IO;


using DockableControls;
using ToolBox;



namespace BasicEngineeringUIFactory.Forms
{
	/// <summary>
	/// Toolbox form
	/// </summary>
	public class FormTools : Content
	{
		private System.Windows.Forms.Button buttonEdit;
		private System.Windows.Forms.Button buttonPicture;
		private IToolBox parent;
		static private Image pictImage;
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.Container components = null;

        /// <summary>
        /// Constructor
        /// </summary>
		public FormTools()
		{
			InitializeComponent();
            ResourceService.Resources.LoadControlResources(this, Common.UI.Resources.Utils.ControlUtilites.Resources);
			if (pictImage == null)
			{
				pictImage = buttonPicture.Image;
			}
            init();
		}
		
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="parent">Parent</param>
		public FormTools(IToolBox parent)
		{
			InitializeComponent();
            ResourceService.Resources.LoadControlResources(this,
                new Dictionary<string, object>[]
                {
                ResourceService.Resources.ControlResources});
            this.parent = parent;
			if (pictImage == null)
			{
				pictImage = buttonPicture.Image;
			}
            init();
		}

        /// <summary>
        /// Picture image
        /// </summary>
		public static Image PictImage
		{
			get
			{
				return pictImage;
			}
		}

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			if (parent != null)
			{
				parent.ToolBox = null;
			}
			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(FormTools));
            this.buttonEdit = new System.Windows.Forms.Button();
            this.buttonPicture = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // buttonEdit
            // 
            this.buttonEdit.AllowDrop = true;
            this.buttonEdit.Image = ((System.Drawing.Image)(resources.GetObject("buttonEdit.Image")));
            this.buttonEdit.Location = new System.Drawing.Point(8, 24);
            this.buttonEdit.Name = "buttonEdit";
            this.buttonEdit.Size = new System.Drawing.Size(48, 48);
            this.buttonEdit.TabIndex = 0;
            this.buttonEdit.MouseDown += new System.Windows.Forms.MouseEventHandler(this.buttonEdit_MouseDown);
            // 
            // buttonPicture
            // 
            this.buttonPicture.Image = ((System.Drawing.Image)(resources.GetObject("buttonPicture.Image")));
            this.buttonPicture.Location = new System.Drawing.Point(8, 78);
            this.buttonPicture.Name = "buttonPicture";
            this.buttonPicture.Size = new System.Drawing.Size(48, 48);
            this.buttonPicture.TabIndex = 1;
            this.buttonPicture.MouseDown += new System.Windows.Forms.MouseEventHandler(this.buttonPicture_MouseDown);
            // 
            // FormTools
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(152, 242);
            this.Controls.Add(this.buttonPicture);
            this.Controls.Add(this.buttonEdit);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "FormTools";
            this.Text = "Toolbox";
            this.TopMost = true;
            this.ResumeLayout(false);

		}
		#endregion

		private void buttonEdit_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
		{
			buttonEdit.DoDragDrop("MovedEditor", DragDropEffects.All);
		}

        /// <summary>
        /// Gets coordinates of control
        /// </summary>
        /// <param name="c">The control</param>
        /// <param name="x">The X - coordinate</param>
        /// <param name="y">The Y - coordinate</param>
		public static void GetCoordinates(Control c, ref int x, ref int y)
		{
			x = c.Left;
			y = c.Top;
			Control p = c.Parent;
			if (p == null)
			{
				return;
			}
			int xp = 0;
			int yp = 0;
			GetCoordinates(p, ref xp, ref yp);
			x += xp;
			y += yp;
		}

        /// <summary>
        ///  Gets coordinates of control
        /// </summary>
        /// <param name="s">Source control</param>
        /// <param name="t">Target control</param>
        /// <param name="xi">Initial X - coordinate</param>
        /// <param name="yi">Initial Y - coordinate</param>
        /// <param name="x">The X - coordinate</param>
        /// <param name="y">The Y - coordinate</param>
        public static void GetCoordinates(Control s, Control t, int xi, int yi, ref int x, ref int y)
        {
            int xs = 0, ys = 0, xt = 0, yt = 0;
            GetCoordinates(s, ref xs, ref ys);
            GetCoordinates(t, ref xt, ref yt);
            x = xi + xs - xt;
            y = yi + xs - xt;
        }


		private void buttonPicture_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
		{
			buttonEdit.DoDragDrop("MovedPicture", DragDropEffects.All);
		}

        void init()
        {
            SetStyle(ControlStyles.AllPaintingInWmPaint, true);
            SetStyle(ControlStyles.DoubleBuffer, true);

            AllowDrop = true;

            //Prepare richTextbox's context menu.
            ContextMenu theMenu;
            MenuItem menuItem;

            theMenu = new ContextMenu();

            menuItem = new MenuItem("Undo");
            //            menuItem.Click += new EventHandler(OnTexBoxMenu_Undo);
            theMenu.MenuItems.Add(menuItem);

            menuItem = new MenuItem("-");
            theMenu.MenuItems.Add(menuItem);

            /*menuItem = new MenuItem("Cut");
            menuItem.Click += new EventHandler(OnTexBoxMenu_Cut);
            theMenu.MenuItems.Add(menuItem);*/
            /*
                        menuItem = new MenuItem("Copy");
                        menuItem.Click += new EventHandler(OnTexBoxMenu_Copy);
                        theMenu.MenuItems.Add(menuItem);

                        menuItem = new MenuItem("Paste");
                        menuItem.Click += new EventHandler(OnTexBoxMenu_Paste);
                        theMenu.MenuItems.Add(menuItem);

                        menuItem = new MenuItem("Delete");
                        menuItem.Click += new EventHandler(OnTexBoxMenu_Delete);
                        theMenu.MenuItems.Add(menuItem);

                        menuItem = new MenuItem("-");
                        theMenu.MenuItems.Add(menuItem);

                        menuItem = new MenuItem("Select All");
                        menuItem.Click += new EventHandler(OnTexBoxMenu_SelectAll);
                        theMenu.MenuItems.Add(menuItem);

                        theMenu.Popup += new EventHandler(OnTexBoxMenu_Popup);

                        _textBox.ContextMenu = theMenu;

                        Controls.Add(_textBox);

                        _upScroll.Enabled = false;
                        _dnScroll.Enabled = false;
            */
            this.AllowedStates = ((DockableControls.ContentStates)(((((DockableControls.ContentStates.Float | DockableControls.ContentStates.DockLeft)
                | DockableControls.ContentStates.DockRight)
                | DockableControls.ContentStates.DockTop)
                | DockableControls.ContentStates.DockBottom)));
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(180, 300);
            this.DockPadding.Bottom = 3;
            this.DockPadding.Top = 3;
            this.HideOnClose = true;
            this.Name = "Objects";
            this.ShowHint = DockableControls.DockState.DockLeft;

        }
	}

			
}

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
Architect
Russian Federation Russian Federation
Ph. D. Petr Ivankov worked as scientific researcher at Russian Mission Control Centre since 1978 up to 2000. Now he is engaged by Aviation training simulators http://dinamika-avia.com/ . His additional interests are:

1) Noncommutative geometry

http://front.math.ucdavis.edu/author/P.Ivankov

2) Literary work (Russian only)

http://zhurnal.lib.ru/editors/3/3d_m/

3) Scientific articles
http://arxiv.org/find/all/1/au:+Ivankov_Petr/0/1/0/all/0/1

Comments and Discussions