Example #1
0
 /// <summary>
 /// Dispose of connect actions.
 /// </summary>
 protected override void Dispose(bool disposing)
 {
     try
     {
         if (disposing)
         {
             if (this.entidadRelacionConnectAction != null)
             {
                 this.entidadRelacionConnectAction.Dispose();
                 this.entidadRelacionConnectAction = null;
             }
         }
     }
     finally
     {
         base.Dispose(disposing);
     }
 }
Example #2
0
        /// <summary>
        /// Override to provide the right mouse action when trying
        /// to create links on the diagram
        /// </summary>
        /// <param name="pointArgs"></param>
        public override void OnViewMouseEnter(DslDiagrams::DiagramPointEventArgs pointArgs)
        {
            if (pointArgs == null)
            {
                throw new global::System.ArgumentNullException("pointArgs");
            }

            DslDiagrams::DiagramView activeView = this.ActiveDiagramView;

            if (activeView != null)
            {
                DslDiagrams::MouseAction action = null;
                if (SelectedToolboxItemSupportsFilterString(activeView, global::IPS_GT16.XCXABGProyectoIPS.XCXABGProyectoIPSToolboxHelper.EntidadRelacionFilterString))
                {
                    if (this.entidadRelacionConnectAction == null)
                    {
                        this.entidadRelacionConnectAction = new global::IPS_GT16.XCXABGProyectoIPS.EntidadRelacionConnectAction(this);
                        this.entidadRelacionConnectAction.MouseActionDeactivated += new DslDiagrams::MouseAction.MouseActionDeactivatedEventHandler(OnConnectActionDeactivated);
                    }
                    action = this.entidadRelacionConnectAction;
                }
                else
                {
                    action = null;
                }

                if (pointArgs.DiagramClientView.ActiveMouseAction != action)
                {
                    try
                    {
                        this.changingMouseAction = true;
                        pointArgs.DiagramClientView.ActiveMouseAction = action;
                    }
                    finally
                    {
                        this.changingMouseAction = false;
                    }
                }
            }
        }