From 411152d36c26cb25f4380bd89c76df5ebbbaf053 Mon Sep 17 00:00:00 2001 From: jiteshjha Date: Sun, 5 Jun 2016 05:53:23 +0530 Subject: New documentation folder added --- DOCUMENTATION.md | 34 ---------------------------------- Documentation/Wires connection.md | 35 +++++++++++++++++++++++++++++++++++ Documentation/Wires connection.md~ | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 70 insertions(+), 34 deletions(-) delete mode 100644 DOCUMENTATION.md create mode 100644 Documentation/Wires connection.md create mode 100644 Documentation/Wires connection.md~ diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md deleted file mode 100644 index 32e1a12..0000000 --- a/DOCUMENTATION.md +++ /dev/null @@ -1,34 +0,0 @@ -# XCOS Wires Connection - -### function connectionHandlerIsStartEvent() - - - Starts connections on the background in wire-mode. - - function connectionHandlerMouseUp() depends on this function. - -### function connectionHandlerMouseUp() - - - Avoids any connections for gestures within tolerance except when in wire-mode or when over a port. - - Responsible for the removal of self connections over an mxCell (edges or vertices) in wire-mode. - -### function updateFixedTerminalPoint() - - - Updates connection points before the routing is called. - - Enables connection from any point on an edge. - - Without this function, default edge characteristics ( mid-point-specific connections only) come in play. - -### function createEdgeState() - - - Overrides methods to preview and create new edges. - - Enables horizontal and vertical edges in preview state. - - Without this function, any connection from an edge will have it's source point and target point chosen based on the assumed center of a straight edge having source edge's source point and target point. - -### function createMarker() - - - Adds in-place highlighting for complete cell area (no hotspot). - - Uses complete area of cell for new connections. - - Adds in-place highlighting when reconnecting existing edges. - -### function WireConnector() - - - Creates a custom horizontal and vertical edge style. - - Without this function, the source and terminal of a connection from an source edge is assumed as if the source edge were an perpendicular connection. diff --git a/Documentation/Wires connection.md b/Documentation/Wires connection.md new file mode 100644 index 0000000..d75087d --- /dev/null +++ b/Documentation/Wires connection.md @@ -0,0 +1,35 @@ +# XCOS Wires Connection +#### @jiteshjha @pooja + +### function connectionHandlerIsStartEvent() + + - Starts connections on the background in wire-mode. + - function connectionHandlerMouseUp() depends on this function. + +### function connectionHandlerMouseUp() + + - Avoids any connections for gestures within tolerance except when in wire-mode or when over a port. + - Responsible for the removal of self connections over an mxCell (edges or vertices) in wire-mode. + +### function updateFixedTerminalPoint() + + - Updates connection points before the routing is called. + - Enables connection from any point on an edge. + - Without this function, default edge characteristics ( mid-point-specific connections only) come in play. + +### function createEdgeState() + + - Overrides methods to preview and create new edges. + - Enables horizontal and vertical edges in preview state. + - Without this function, any connection from an edge will have it's source point and target point chosen based on the assumed center of a straight edge having source edge's source point and target point. + +### function createMarker() + + - Adds in-place highlighting for complete cell area (no hotspot). + - Uses complete area of cell for new connections. + - Adds in-place highlighting when reconnecting existing edges. + +### function WireConnector() + + - Creates a custom horizontal and vertical edge style. + - Without this function, the source and terminal of a connection from an source edge is assumed as if the source edge were an perpendicular connection. diff --git a/Documentation/Wires connection.md~ b/Documentation/Wires connection.md~ new file mode 100644 index 0000000..d75087d --- /dev/null +++ b/Documentation/Wires connection.md~ @@ -0,0 +1,35 @@ +# XCOS Wires Connection +#### @jiteshjha @pooja + +### function connectionHandlerIsStartEvent() + + - Starts connections on the background in wire-mode. + - function connectionHandlerMouseUp() depends on this function. + +### function connectionHandlerMouseUp() + + - Avoids any connections for gestures within tolerance except when in wire-mode or when over a port. + - Responsible for the removal of self connections over an mxCell (edges or vertices) in wire-mode. + +### function updateFixedTerminalPoint() + + - Updates connection points before the routing is called. + - Enables connection from any point on an edge. + - Without this function, default edge characteristics ( mid-point-specific connections only) come in play. + +### function createEdgeState() + + - Overrides methods to preview and create new edges. + - Enables horizontal and vertical edges in preview state. + - Without this function, any connection from an edge will have it's source point and target point chosen based on the assumed center of a straight edge having source edge's source point and target point. + +### function createMarker() + + - Adds in-place highlighting for complete cell area (no hotspot). + - Uses complete area of cell for new connections. + - Adds in-place highlighting when reconnecting existing edges. + +### function WireConnector() + + - Creates a custom horizontal and vertical edge style. + - Without this function, the source and terminal of a connection from an source edge is assumed as if the source edge were an perpendicular connection. -- cgit From 4817f2f547755da5bf09a5612e9ad7656c569d90 Mon Sep 17 00:00:00 2001 From: Jitesh Kumar Jha Date: Sun, 5 Jun 2016 05:56:15 +0530 Subject: delete pull request template --- PULL_REQUEST_TEMPLATE.md~ | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 PULL_REQUEST_TEMPLATE.md~ diff --git a/PULL_REQUEST_TEMPLATE.md~ b/PULL_REQUEST_TEMPLATE.md~ deleted file mode 100644 index e66c1bd..0000000 --- a/PULL_REQUEST_TEMPLATE.md~ +++ /dev/null @@ -1,8 +0,0 @@ -Make sure these boxes are checked before your pull request is ready to be reviewed and merged. Thanks! - -* [ ] code is in uniquely-named feature branch, and has been rebased on top of latest master (especially if you've been asked to make additional changes) -* [ ] pull request are descriptively named -* [ ] if possible, multiple commits squashed if they're smaller changes -* [ ] reviewed/confirmed/tested by another contributor or maintainer - -Thanks! -- cgit