Added tooltip support for PostProcessor scripts.

This commit is contained in:
Markus Lampert
2016-10-20 16:26:41 -07:00
committed by wmayer
parent 70b445a099
commit bf4783235b
8 changed files with 41 additions and 7 deletions

View File

@@ -22,7 +22,7 @@
# ***************************************************************************/
'''
TOOLTIP='''
This is a postprocessor file for the Path workbench. It is used to
take a pseudo-gcode fragment outputted by a Path object, and output
real GCode suitable for a linuxcnc 3 axis mill. This postprocessor, once placed
@@ -33,6 +33,13 @@ import linuxcnc_post
linuxcnc_post.export(object,"/path/to/file.ncc")
'''
TOOLTIP_ARGS='''
Arguments for linuxcnc:
--header,--no-header ... output headers (--header)
--comments,--no-comments ... output comments (--comments)
--line-numbers,--no-line-numbers ... prefix with line numbers (--no-lin-numbers)
'''
import datetime
from PathScripts import PostUtils