Index: trunk/doc/user/09_appendix/action_details.html =================================================================== --- trunk/doc/user/09_appendix/action_details.html (revision 20595) +++ trunk/doc/user/09_appendix/action_details.html (revision 20596) @@ -92,6 +92,42 @@

Return 1 if layerid is visible. Intended for menu item 'checked' fields. +

connection

+

+Connections found with this action will be highlighted in the "connected-color" color and will have the "found" flag set. +

+ Arguments: +

+ + + + + + + + + + + +
+ Find + + The net under the cursor is "found". +
+ ResetLinesAndPolygons + + Any "found" lines and polygons are marked "not found". +
+ ResetPinsAndVias + + Any "found" pins and vias are marked "not found". +
+ Reset + + All "found" objects are marked "not found". +
+ +

cursor

This action moves the mouse cursor. Unlike other actions which take coordinates, this action's coordinates are always relative to the user's view of the board. Thus, a positive Index: trunk/doc/user/09_appendix/action_src/connection.html =================================================================== --- trunk/doc/user/09_appendix/action_src/connection.html (nonexistent) +++ trunk/doc/user/09_appendix/action_src/connection.html (revision 20596) @@ -0,0 +1,20 @@ +Connections found with this action will be highlighted in the +"connected-color" color and will have the "found" flag set. +

+Arguments: +

+ +
Find + The net under the cursor is "found". + +
ResetLinesAndPolygons + Any "found" lines and polygons are marked "not found". + +
ResetPinsAndVias + Any "found" pins and vias are marked "not found". + +
Reset + All "found" objects are marked "not found". + +
+ Index: trunk/src/rats_act.c =================================================================== --- trunk/src/rats_act.c (revision 20595) +++ trunk/src/rats_act.c (revision 20596) @@ -105,35 +105,9 @@ return 0; } -/* --------------------------------------------------------------------------- */ - static const char pcb_acts_Connection[] = "Connection(Find|ResetLinesAndPolygons|ResetPinsAndVias|Reset)"; - static const char pcb_acth_Connection[] = "Searches connections of the object at the cursor position."; - -/* %start-doc actions Connection - -Connections found with this action will be highlighted in the -``connected-color'' color and will have the ``found'' flag set. - -@table @code - -@item Find -The net under the cursor is ``found''. - -@item ResetLinesAndPolygons -Any ``found'' lines and polygons are marked ``not found''. - -@item ResetPinsAndVias -Any ``found'' pins and vias are marked ``not found''. - -@item Reset -All ``found'' objects are marked ``not found''. - -@end table - -%end-doc */ - +/* DOC: connection.html */ static fgw_error_t pcb_act_Connection(fgw_arg_t *res, int argc, fgw_arg_t *argv) { int op;