private void AreaDraw_MouseUp(object sender, MouseEventArgs e) { switch (toolselec) { case ToolSelec.asociacion: #region // // if (objaso.PI != new Point(0, 0) & objaso.PF != new Point(0, 0) & (objaso.PI != objaso.PF)) { Point ptMedio = new Point(objaso.PI.X - (objaso.PF.X - objaso.PI.X), objaso.PF.Y); Acoleccion.Add(new Asociacion5(objaso.PI, ptMedio, objaso.PF)); AreaDraw.Invalidate(); } #endregion break; case ToolSelec.clase: #region if (objcla.puntoInicial != new Point(0, 0) && objcla.puntoFinal != new Point(0, 0)) { Point puntoMedio = new Point(objcla.puntoFinal.X, objcla.puntoFinal.Y + 25); Point puntoFin = new Point(objcla.puntoFinal.X, objcla.puntoFinal.Y + 75); Rectangle[] rects = { new Rectangle(objcla.puntoFinal, new Size(100, 25)), new Rectangle(puntoMedio, new Size(100, 50)), new Rectangle(puntoFin, new Size(100, 75)), }; FpropiedadesClase frm = new FpropiedadesClase(this); frm.ShowDialog(); Ccoleccion.Add(new Clase5(rects, puntoMedio, nombre, atributos, metodos)); if (Ccoleccion.Count >= 2) { toolAsociacion.Enabled = true; } AreaDraw.Invalidate(); } #endregion break; } //reestrableciendo valores Aselec = null; Cselec = null; clic = false; toolselec = ToolSelec.puntero; toolPuntero.Checked = true; toolAsociacion.Checked = false; toolClase.Checked = false; }
private void toolAsociacion_Click(object sender, EventArgs e) { nClase1 = ""; nClase2 = ""; if (Ccoleccion.Count == 0) { MessageBox.Show("No existen clases para asociar"); } else if (Ccoleccion.Count == 1) { MessageBox.Show("Necesita una clase más para crear asociación"); } else { Fasociacion frm = new Fasociacion(this); va = new Validar(); frm.ShowDialog(); Clase5 clase1, clase2; clase1 = va.ExisteClase(Ccoleccion, nClase1); clase2 = va.ExisteClase(Ccoleccion, nClase2); Asociacion5 aux = va.ValidarAsociacion(clase1, clase2); if (aux != null) { Acoleccion.Add(aux); Acoleccion.Add(aux); } else { MessageBox.Show("Ingrese nombres de clases existentes"); } AreaDraw.Invalidate(); } Aselec = null; Cselec = null; clic = false; toolselec = ToolSelec.puntero; toolPuntero.Checked = true; toolAsociacion.Checked = false; toolGeneralizacion.Checked = false; toolInterfaz.Checked = false; toolClase.Checked = false; }
public Asociacion5 ValidarAsociacion(Clase5 clase1, Clase5 clase2)//clases unidas { Asociacion5 item = null; if (clase1 != null && clase2 != null) { Clase5 aux; if (clase1.puntoFinal.X > clase2.puntoFinal.X) { aux = clase1; clase1 = clase2; clase2 = aux; } Point puntoInicial = new Point(clase1.puntoFinal.X + 150, clase1.puntoFinal.Y - 50); Point puntoFinal = new Point(clase2.puntoFinal.X, clase2.puntoFinal.Y - 50); Point ptMedio = new Point(puntoInicial.X - (puntoFinal.X - puntoInicial.X), puntoFinal.Y); item = new Asociacion5(puntoInicial, ptMedio, puntoFinal, clase1.nombre, clase2.nombre); } return(item); }
public GraficaGrupo5(Panel pnlPrincipal) { clic = false; Aselec = null; Cselec = null; Icselect = null; objcla = new Clase5(); objicla = new ClaseInterface5(); Acoleccion = new List <Asociacion5>(); Acont = new List <Asociacion5>(); Ccoleccion = new List <Clase5>(); IcColeccion = new List <ClaseInterface5>(); AuxAcoleccion = new List <Asociacion5>(); AuxGcoleccion = new List <Generalizacion5>(); Gcoleccion = new List <Generalizacion5>(); toolselec = ToolSelec.puntero; toolPuntero.Checked = true; toolAsociacion.Checked = false; toolClase.Checked = false; g = AreaDraw.CreateGraphics(); #region DiseñoGr5 // // AreaDraw // pnlPrincipal.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.AreaDraw.BackColor = System.Drawing.SystemColors.ActiveCaption; this.AreaDraw.Dock = System.Windows.Forms.DockStyle.Fill; this.AreaDraw.Location = new System.Drawing.Point(0, 0); this.AreaDraw.Name = "AreaDraw"; this.AreaDraw.Size = new System.Drawing.Size(1360, 635); this.AreaDraw.TabIndex = 3; this.AreaDraw.TabStop = false; //this.AreaDraw.Click += new System.EventHandler(this.AreaDraw_Click); this.AreaDraw.Paint += new System.Windows.Forms.PaintEventHandler(this.AreaDraw_Paint); this.AreaDraw.MouseDown += new System.Windows.Forms.MouseEventHandler(this.AreaDraw_MouseDown); this.AreaDraw.MouseMove += new System.Windows.Forms.MouseEventHandler(this.AreaDraw_MouseMove); this.AreaDraw.MouseUp += new System.Windows.Forms.MouseEventHandler(this.AreaDraw_MouseUp); pnlPrincipal.Size = new System.Drawing.Size(1360, 635); pnlPrincipal.Location = new System.Drawing.Point(2, 131); // // ToolHerramientas // this.ToolHerramientas.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolNuevo, this.toolSep1, //this.toolAbrir, this.toolSep2, // this.toolGuardar, this.toolSep3, this.toolPuntero, this.toolSep4, this.toolClase, this.toolSep5, this.toolAsociacion, this.toolSep6, this.toolGeneralizacion, this.toolStripSeparator2, this.toolInterfaz, this.toolStripSeparator1, this.toolLinterfaz, this.toolStripSeparator1, this.lblNotificacion, }); this.ToolHerramientas.Location = new System.Drawing.Point(2, 131); this.ToolHerramientas.Name = "ToolHerramientas"; this.ToolHerramientas.Size = new System.Drawing.Size(751, 25); this.ToolHerramientas.TabIndex = 2; this.ToolHerramientas.Text = "toolStrip1"; // // // toolNuevo // this.toolNuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolNuevo.Image = global::UMLGraph.Properties.Resources.nuevo; this.toolNuevo.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolNuevo.Name = "toolNuevo"; this.toolNuevo.Size = new System.Drawing.Size(23, 22); this.toolNuevo.Text = "Nuevo"; this.toolNuevo.Click += new System.EventHandler(this.toolNuevo_Click); // // toolSep1 // this.toolSep1.Name = "toolSep1"; this.toolSep1.Size = new System.Drawing.Size(6, 25); // // toolAbrir // //this.toolAbrir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; //this.toolAbrir.Image = global::UMLGraph.Properties.Resources.abrir; //this.toolAbrir.ImageTransparentColor = System.Drawing.Color.Magenta; //this.toolAbrir.Name = "toolAbrir"; //this.toolAbrir.Size = new System.Drawing.Size(23, 22); //this.toolAbrir.Text = "Abrir"; // // toolSep2 // this.toolSep2.Name = "toolSep2"; this.toolSep2.Size = new System.Drawing.Size(6, 25); // // toolGuardar // //this.toolGuardar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; //this.toolGuardar.Image = global::UMLGraph.Properties.Resources.guardar; //this.toolGuardar.ImageTransparentColor = System.Drawing.Color.Magenta; //this.toolGuardar.Name = "toolGuardar"; //this.toolGuardar.Size = new System.Drawing.Size(23, 22); //this.toolGuardar.Text = "Guardar"; // // toolSep3 // this.toolSep3.Name = "toolSep3"; this.toolSep3.Size = new System.Drawing.Size(6, 25); // // toolPuntero // this.toolPuntero.CheckOnClick = true; this.toolPuntero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolPuntero.Image = global::UMLGraph.Properties.Resources.puntero; this.toolPuntero.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolPuntero.Name = "toolPuntero"; this.toolPuntero.Size = new System.Drawing.Size(23, 22); this.toolPuntero.Text = "Puntero"; this.toolPuntero.Click += new System.EventHandler(this.toolPuntero_Click); // // toolSep4 // this.toolSep4.Name = "toolSep4"; this.toolSep4.Size = new System.Drawing.Size(6, 25); // // toolClase // this.toolClase.CheckOnClick = true; this.toolClase.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolClase.Image = global::UMLGraph.Properties.Resources.Clase1; this.toolClase.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolClase.Name = "toolClase"; this.toolClase.Size = new System.Drawing.Size(23, 22); this.toolClase.Text = "Clase"; this.toolClase.Click += new System.EventHandler(this.toolClase_Click); // // toolSep5 // this.toolSep5.Name = "toolSep5"; this.toolSep5.Size = new System.Drawing.Size(6, 25); // // toolAsociacion // this.toolAsociacion.CheckOnClick = true; this.toolAsociacion.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolAsociacion.Image = global::UMLGraph.Properties.Resources.asociacion; this.toolAsociacion.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolAsociacion.Name = "toolAsociacion"; this.toolAsociacion.Size = new System.Drawing.Size(23, 22); this.toolAsociacion.Text = "Asociacion"; this.toolAsociacion.Click += new System.EventHandler(this.toolAsociacion_Click); // // toolSep6 // this.toolSep6.Name = "toolSep6"; this.toolSep6.Size = new System.Drawing.Size(6, 25); // // toolGeneralización // this.toolGeneralizacion.CheckOnClick = true; this.toolGeneralizacion.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolGeneralizacion.Image = global::UMLGraph.Properties.Resources.Generalización; this.toolGeneralizacion.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolGeneralizacion.Name = "toolGeneralizacion"; this.toolGeneralizacion.Size = new System.Drawing.Size(50, 50); this.toolGeneralizacion.Text = "Generalización"; this.toolGeneralizacion.Click += new System.EventHandler(this.toolGeneralizacion_Click); // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25); // // toolStripButton2 // this.toolInterfaz.CheckOnClick = true; this.toolInterfaz.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolInterfaz.Image = global::UMLGraph.Properties.Resources.Cinterfaz; this.toolInterfaz.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolInterfaz.Name = "toolInterfaz"; this.toolInterfaz.Size = new System.Drawing.Size(23, 22); this.toolInterfaz.Text = "Interfaz"; this.toolInterfaz.Click += new System.EventHandler(this.toolInterfaz_Click); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25); // LINterfas this.toolLinterfaz.CheckOnClick = true; this.toolLinterfaz.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolLinterfaz.Image = global::UMLGraph.Properties.Resources.Linter; this.toolLinterfaz.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolLinterfaz.Name = "toolLInterfaz"; this.toolLinterfaz.Size = new System.Drawing.Size(23, 22); this.toolLinterfaz.Text = "Relacion Interfaz"; this.toolLinterfaz.Click += new System.EventHandler(this.toolLInterfaz_Click); // // toolStripSeparator1 // this.toolStripSeparator3.Name = "toolStripSeparator3"; this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25); //tool lblNotificacion this.lblNotificacion.AutoSize = true; this.lblNotificacion.Name = "lblNotificacion"; this.lblNotificacion.Size = new System.Drawing.Size(23, 22); this.lblNotificacion.Text = ""; pnlPrincipal.Controls.Add(this.AreaDraw); pnlPrincipal.Controls.Add(this.ToolHerramientas); #endregion DiseñoGr5 }
private void AreaDraw_MouseUp(object sender, MouseEventArgs e) { switch (toolselec) { case ToolSelec.clase: #region if (objcla.puntoInicial != new Point(0, 0) && objcla.puntoFinal != new Point(0, 0)) { Fclase frm = new Fclase(this); frm.ShowDialog(); if ("".Equals(nombre) || "".Equals(atributos) || "".Equals(metodos) || nombre == null || atributos == null || metodos == null || "Ingrese nombre de la clase".Equals(nombre) || "Ingrese los atributos de la clase".Equals(atributos) || "Ingrese los métodos de la clase".Equals(metodos)) { MessageBox.Show("No ingreso algun parametro solicitado. Vuelva a interlo"); } else if (va.ValidarNombre(nombre)) { DialogResult seguro = MessageBox.Show("Una clase es un concepto por lo tanto no puede ser verbo ni plural, Intenta nuevamente", "HELP", MessageBoxButtons.OK, MessageBoxIcon.Question); } else { Clase5 aux = va.ExisteClase(Ccoleccion, nombre); if (aux == null) { Ccoleccion.Add(new Clase5(rectangulosClase(), new Point(objcla.puntoFinal.X, objcla.puntoFinal.Y + 25), nombre, atributos, metodos)); lblNotificacion.Text = "Recuerda que todas las clases deben estar relacionadas"; } else { MessageBox.Show("Ya existe clase con el nombre: " + nombre); } } AreaDraw.Invalidate(); } #endregion break; case ToolSelec.generalizacion: #region if (objcla.puntoInicial != new Point(0, 0) && objcla.puntoFinal != new Point(0, 0)) { nClase1 = ""; Fgeneralizacion frmg = new Fgeneralizacion(this); frmg.ShowDialog(); Clase5 clase1, clase2; MessageBox.Show("Recuerda que la clase hijo herada sus atributos y métodos de la clase padre"); clase1 = va.ExisteClase(Ccoleccion, nClase1); if (clase1 != null) { Fclase frm = new Fclase(this); frm.ShowDialog(); if ("".Equals(nombre) || "Ingrese nombre de la clase".Equals(nombre) || "Ingrese los atributos de la clase".Equals(atributos) || "Ingrese los métodos de la clase".Equals(metodos)) { MessageBox.Show("No ingreso algun parametro solicitado. Vuelva a interlo"); } else { String nombreHijo = "" + nombre + ":" + nClase1; metodos = " " + metodos + " " + clase1.metodos; atributos = " " + atributos + " " + clase1.atributos; Ccoleccion.Add(new Clase5(rectangulosClase(), new Point(objcla.puntoFinal.X, objcla.puntoFinal.Y + 25), nombreHijo, atributos, metodos)); clase2 = va.ExisteClase(Ccoleccion, nombreHijo); Generalizacion5 aux = va.ValidarGeneralizacion(clase1, clase2); Asociacion5 aux1 = va.ValidarAsociacion(clase1, clase2); if (aux != null) { Gcoleccion.Add(aux); Acont.Add(aux1); } } } else { MessageBox.Show("No se encuentra la clase padre"); } AreaDraw.Invalidate(); } #endregion break; case ToolSelec.interfaz: #region if (objicla.puntoInicial != new Point(0, 0) && objicla.puntoFinal != new Point(0, 0)) { Fcinterfaz frm = new Fcinterfaz(this); frm.ShowDialog(); if ("".Equals(nombre) || "".Equals(metodos) || nombre == null || metodos == null) { MessageBox.Show("No ingreso algun parametro solicitado. Vuelva a interla"); } else { nClase1 = "<< " + nombre + " >>"; IcColeccion.Add(new ClaseInterface5(rectangulosInterfaz(), new Point(objicla.puntoFinal.X, objicla.puntoFinal.Y + 25), nClase1, metodos)); AreaDraw.Invalidate(); } } #endregion break; case ToolSelec.puntero: #region puntero if (Cselec != null) { String nombre = Cselec.nombre; Ccoleccion.Add(new Clase5(rectangulosClase(), new Point(objcla.puntoFinal.X, objcla.puntoFinal.Y + 25), Cselec.nombre, Cselec.atributos, Cselec.metodos)); Ccoleccion.Remove(Cselec); AuxAcoleccion = new List <Asociacion5>(); AuxGcoleccion = new List <Generalizacion5>(); for (int i = 0; i < Gcoleccion.Count; i++) { if (Gcoleccion[i].nombre.Equals(Cselec.nombre)) { nClase1 = Gcoleccion[i].nombre; nClase2 = Gcoleccion[i].nombre2; Clase5 clase1 = va.ExisteClase(Ccoleccion, nClase1); Clase5 clase2 = va.ExisteClase(Ccoleccion, nClase2); Generalizacion5 aux = va.ValidarGeneralizacion(clase1, clase2); if (aux != null) { AuxGcoleccion.Add(aux); } } else if (Gcoleccion[i].nombre2.Equals(Cselec.nombre)) { nClase1 = Gcoleccion[i].nombre; nClase2 = Gcoleccion[i].nombre2; Clase5 clase1 = va.ExisteClase(Ccoleccion, nClase1); Clase5 clase2 = va.ExisteClase(Ccoleccion, nClase2); Generalizacion5 aux = va.ValidarGeneralizacion(clase1, clase2); if (aux != null) { AuxGcoleccion.Add(aux); } } else { nClase1 = Gcoleccion[i].nombre; nClase2 = Gcoleccion[i].nombre2; Clase5 clase1 = va.ExisteClase(Ccoleccion, nClase1); Clase5 clase2 = va.ExisteClase(Ccoleccion, nClase2); Generalizacion5 aux = va.ValidarGeneralizacion(clase1, clase2); if (aux != null) { AuxGcoleccion.Add(aux); } } } for (int i = 0; i < Acoleccion.Count; i++) { if (Acoleccion[i].nombre.Equals(Cselec.nombre)) { nClase1 = Acoleccion[i].nombre; nClase2 = Acoleccion[i].nombre2; Clase5 clase1 = va.ExisteClase(Ccoleccion, nClase1); Clase5 clase2 = va.ExisteClase(Ccoleccion, nClase2); Asociacion5 aux = va.ValidarAsociacion(clase1, clase2); if (aux != null) { AuxAcoleccion.Add(aux); } } else if (Acoleccion[i].nombre2.Equals(Cselec.nombre)) { nClase1 = Acoleccion[i].nombre; nClase2 = Acoleccion[i].nombre2; Clase5 clase1 = va.ExisteClase(Ccoleccion, nClase1); Clase5 clase2 = va.ExisteClase(Ccoleccion, nClase2); Asociacion5 aux = va.ValidarAsociacion(clase1, clase2); if (aux != null) { AuxAcoleccion.Add(aux); } } else { nClase1 = Acoleccion[i].nombre; nClase2 = Acoleccion[i].nombre2; Clase5 clase1 = va.ExisteClase(Ccoleccion, nClase1); Clase5 clase2 = va.ExisteClase(Ccoleccion, nClase2); Asociacion5 aux = va.ValidarAsociacion(clase1, clase2); if (aux != null) { AuxAcoleccion.Add(aux); } } AreaDraw.Invalidate(); } Acoleccion.Clear(); Gcoleccion.Clear(); foreach (Asociacion5 item in AuxAcoleccion) { Acoleccion.Add(item); } foreach (Generalizacion5 item in AuxGcoleccion) { Gcoleccion.Add(item); } AreaDraw.Invalidate(); } if (Icselect != null) { String nombre = Icselect.nombre; IcColeccion.Add(new ClaseInterface5(rectangulosInterfaz(), new Point(objicla.puntoFinal.X, objicla.puntoFinal.Y + 25), Icselect.nombre, Icselect.metodos)); IcColeccion.Remove(Icselect); AreaDraw.Invalidate(); } break; #endregion } //reestrableciendo valores nombre = ""; metodos = ""; atributos = ""; Aselec = null; Cselec = null; Icselect = null; clic = false; toolselec = ToolSelec.puntero; toolPuntero.Checked = true; toolAsociacion.Checked = false; toolGeneralizacion.Checked = false; toolInterfaz.Checked = false; toolClase.Checked = false; }
public GraficaGrupo5(Panel pnlPrincipal) { clic = false; Aselec = null; Cselec = null; objaso = new Asociacion5(); objcla = new Clase5(); Acoleccion = new List <Asociacion5>(); Ccoleccion = new List <Clase5>(); toolselec = ToolSelec.puntero; toolPuntero.Checked = true; toolAsociacion.Checked = false; toolClase.Checked = false; g = AreaDraw.CreateGraphics(); // // AreaDraw // pnlPrincipal.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.AreaDraw.BackColor = System.Drawing.SystemColors.ActiveCaption; this.AreaDraw.Dock = System.Windows.Forms.DockStyle.Fill; this.AreaDraw.Location = new System.Drawing.Point(0, 0); this.AreaDraw.Name = "AreaDraw"; this.AreaDraw.Size = new System.Drawing.Size(1360, 635); this.AreaDraw.TabIndex = 3; this.AreaDraw.TabStop = false; pnlPrincipal.Size = new System.Drawing.Size(1360, 635); this.AreaDraw.Click += new System.EventHandler(this.AreaDraw_Click); this.AreaDraw.Paint += new System.Windows.Forms.PaintEventHandler(this.AreaDraw_Paint); this.AreaDraw.MouseDown += new System.Windows.Forms.MouseEventHandler(this.AreaDraw_MouseDown); this.AreaDraw.MouseMove += new System.Windows.Forms.MouseEventHandler(this.AreaDraw_MouseMove); this.AreaDraw.MouseUp += new System.Windows.Forms.MouseEventHandler(this.AreaDraw_MouseUp); pnlPrincipal.Location = new System.Drawing.Point(2, 131); // // ToolHerramientas // this.ToolHerramientas.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolNuevo, this.toolSep1, this.toolAbrir, this.toolSep2, this.toolGuardar, this.toolSep3, this.toolPuntero, this.toolSep4, this.toolClase, this.toolSep5, this.toolAsociacion, this.toolSep6, this.toolStripButton1, this.toolStripSeparator2, this.toolStripButton2, this.toolStripSeparator1 }); this.ToolHerramientas.Location = new System.Drawing.Point(2, 131); this.ToolHerramientas.Name = "ToolHerramientas"; this.ToolHerramientas.Size = new System.Drawing.Size(751, 25); this.ToolHerramientas.TabIndex = 2; this.ToolHerramientas.Text = "toolStrip1"; this.ToolHerramientas.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.ToolHerramientas_ItemClicked); // // // toolNuevo // this.toolNuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolNuevo.Image = global::UMLGraph.Properties.Resources.nuevo; this.toolNuevo.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolNuevo.Name = "toolNuevo"; this.toolNuevo.Size = new System.Drawing.Size(23, 22); this.toolNuevo.Text = "Nuevo"; // // toolSep1 // this.toolSep1.Name = "toolSep1"; this.toolSep1.Size = new System.Drawing.Size(6, 25); // // toolAbrir // this.toolAbrir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolAbrir.Image = global::UMLGraph.Properties.Resources.abrir; this.toolAbrir.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolAbrir.Name = "toolAbrir"; this.toolAbrir.Size = new System.Drawing.Size(23, 22); this.toolAbrir.Text = "Abrir"; // // toolSep2 // this.toolSep2.Name = "toolSep2"; this.toolSep2.Size = new System.Drawing.Size(6, 25); // // toolGuardar // this.toolGuardar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolGuardar.Image = global::UMLGraph.Properties.Resources.guardar; this.toolGuardar.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolGuardar.Name = "toolGuardar"; this.toolGuardar.Size = new System.Drawing.Size(23, 22); this.toolGuardar.Text = "Guardar"; // // toolSep3 // this.toolSep3.Name = "toolSep3"; this.toolSep3.Size = new System.Drawing.Size(6, 25); // // toolPuntero // this.toolPuntero.CheckOnClick = true; this.toolPuntero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolPuntero.Image = global::UMLGraph.Properties.Resources.puntero; this.toolPuntero.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolPuntero.Name = "toolPuntero"; this.toolPuntero.Size = new System.Drawing.Size(23, 22); this.toolPuntero.Text = "Puntero"; this.toolPuntero.Click += new System.EventHandler(this.toolPuntero_Click); // // toolSep4 // this.toolSep4.Name = "toolSep4"; this.toolSep4.Size = new System.Drawing.Size(6, 25); // // toolClase // this.toolClase.CheckOnClick = true; this.toolClase.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolClase.Image = global::UMLGraph.Properties.Resources.Clase1; this.toolClase.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolClase.Name = "toolClase"; this.toolClase.Size = new System.Drawing.Size(23, 22); this.toolClase.Text = "Clase"; this.toolClase.Click += new System.EventHandler(this.toolClase_Click); // // toolSep5 // this.toolSep5.Name = "toolSep5"; this.toolSep5.Size = new System.Drawing.Size(6, 25); // // toolAsociacion // this.toolAsociacion.CheckOnClick = true; this.toolAsociacion.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolAsociacion.Image = global::UMLGraph.Properties.Resources.asociacion; this.toolAsociacion.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolAsociacion.Name = "toolAsociacion"; this.toolAsociacion.Size = new System.Drawing.Size(23, 22); this.toolAsociacion.Text = "Asociacion"; this.toolAsociacion.Click += new System.EventHandler(this.toolAsociacion_Click); // // toolSep6 // this.toolSep6.Name = "toolSep6"; this.toolSep6.Size = new System.Drawing.Size(6, 25); // // toolStripButton1 // this.toolStripButton1.CheckOnClick = true; this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton1.Image = global::UMLGraph.Properties.Resources.Composicion3; this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolStripButton1.Name = "toolStripButton1"; this.toolStripButton1.Size = new System.Drawing.Size(23, 22); this.toolStripButton1.Text = "Agregacion"; this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1_Click); // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25); // // toolStripButton2 // this.toolStripButton2.CheckOnClick = true; this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton2.Image = global::UMLGraph.Properties.Resources.Composion4; this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolStripButton2.Name = "toolStripButton2"; this.toolStripButton2.Size = new System.Drawing.Size(23, 22); this.toolStripButton2.Text = "Composicion"; this.toolStripButton2.Click += new System.EventHandler(this.ToolStripButton2_Click); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25); toolAsociacion.Enabled = false; pnlPrincipal.Controls.Add(this.AreaDraw); pnlPrincipal.Controls.Add(this.ToolHerramientas); }
private void AreaDraw_MouseDown(object sender, MouseEventArgs e) { switch (toolselec) { case ToolSelec.puntero: #region Seleccion Figura foreach (Asociacion5 item in Acoleccion) { Point p = AreaDraw.PointToClient(Cursor.Position); if (item.Dentro(p)) { Aselec = item; pos = p; break; } } foreach (Clase5 item in Ccoleccion) { Point p = AreaDraw.PointToClient(Cursor.Position); if (item.Dentro(p)) { Cselec = item; pos = p; break; } } #endregion break; case ToolSelec.asociacion: //Punto Inicial #region Guardar punto inicial foreach (Asociacion5 item in Acoleccion) { Point p = AreaDraw.PointToClient(Cursor.Position); if (Acoleccion.Count != 0 & item.Dentro(p)) { MessageBox.Show("No puede dibujar dentro de una figura.", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Warning); toolAsociacion.Checked = false; toolPuntero.Checked = true; toolselec = ToolSelec.puntero; clic = false; goto salida; } clic = true; objaso.PI = e.Location; objaso.PF = e.Location; } clic = true; objaso.PI = e.Location; salida : break; #endregion Guardar punto inicial case ToolSelec.clase: //Punto Inicial #region Guarda punto inicial foreach (Clase5 item in Ccoleccion) { Point p = AreaDraw.PointToClient(Cursor.Position); if (Ccoleccion.Count != 0 & item.Dentro(p)) { MessageBox.Show("No puede dibujar dentro de una figura.", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Warning); toolClase.Checked = false; toolPuntero.Checked = true; toolselec = ToolSelec.puntero; clic = false; goto salir; } clic = true; objcla.puntoInicial = e.Location; objcla.puntoFinal = e.Location; } clic = true; objcla.puntoInicial = e.Location; salir : break; #endregion Guarda punto inicial } }