Index: trunk/doc/user/09_appendix/action_details.html =================================================================== --- trunk/doc/user/09_appendix/action_details.html (revision 20592) +++ trunk/doc/user/09_appendix/action_details.html (revision 20593) @@ -696,6 +696,48 @@ +

select

+

+Arguments: +

+ + + + + + + + + + + + + +
+ Object +
+ ToggleObject +
+ Selects the object under the cursor. +
+ Block + + Selects all objects in a rectangle indicated by the cursor. +
+ All + + Selects all objects on the board. +
+ Connection + + Selects all connections with the ``found'' flag set. +
+ Convert + + Converts the selected objects to a subcircuit. This uses the highest numbered paste buffer. +
+ +

selectlayer

The specified layer becomes the currently active layer. It is made visible if it is not already visible Index: trunk/doc/user/09_appendix/action_src/select.html =================================================================== --- trunk/doc/user/09_appendix/action_src/select.html (nonexistent) +++ trunk/doc/user/09_appendix/action_src/select.html (revision 20593) @@ -0,0 +1,19 @@ +Arguments: +

+ +
Object
ToggleObject +
Selects the object under the cursor. + +
Block + Selects all objects in a rectangle indicated by the cursor. + +
All + Selects all objects on the board. + +
Connection + Selects all connections with the ``found'' flag set. + +
Convert + Converts the selected objects to a subcircuit. This uses the highest + numbered paste buffer. +
Index: trunk/src/select_act.c =================================================================== --- trunk/src/select_act.c (revision 20592) +++ trunk/src/select_act.c (revision 20593) @@ -57,32 +57,7 @@ "Select(All|Block|Connection)\n" "Select(Convert)"; static const char pcb_acth_Select[] = "Toggles or sets the selection."; - -/* %start-doc actions Select - -@table @code - -@item Object -@item ToggleObject -Selects the object under the cursor. - -@item Block -Selects all objects in a rectangle indicated by the cursor. - -@item All -Selects all objects on the board. - -@item Connection -Selects all connections with the ``found'' flag set. - -@item Convert -Converts the selected objects to a subcircuit. This uses the highest -numbered paste buffer. - -@end table - -%end-doc */ - +/* DOC: select.html */ static fgw_error_t pcb_act_Select(fgw_arg_t *res, int argc, fgw_arg_t *argv) { int op;