@@ -2473,12 +2473,11 @@ Currently these status options can be used to auto style buttons:
24732473* 'is_estopped_status' will toggle the property 'isEstop'
24742474* 'is_on_status' will toggle the property 'isStateOn'
24752475* 'is_manual_status,is_mdi_status,is_auto_status' will toggle the
2476- 'isManual, isMDI, isAuto' properties.
2476+ 'isManual, isMDI, isAuto' properties.
24772477* 'is_homed_status' will toggle the 'isAllHomed' property
24782478
24792479Here is a sample stylesheet entry.
2480- It sets the background of mode button widgets when LinuxCNC is in that
2481- mode.
2480+ It sets the background of mode button widgets when LinuxCNC is in that mode.
24822481
24832482----
24842483ActionButton[isManual=true] {
@@ -2537,51 +2536,35 @@ ActionButton #action_aux{
25372536==== Call Python commands on state
25382537
25392538The python_command_option allow small snippets of Python code to be run
2540- from the push of a button, with out having to edit the handler file.
2541- (though it can call functions in the handler file)
2539+ from the push of a button, with out having to edit the handler file
2540+ (though it can call functions in the handler file).
25422541When using the command_string properties.
25432542
25442543* 'true_python_cmd_string' - a python command that will be called when
25452544 the button is toggled true
25462545* 'false_python_cmd_string' - a python command that will be called when
25472546 the button is toggled false
25482547
2549- The capitalized word 'INSTANCE' will give access to the widgets instances
2550- and handler functions. eg. 'INSTANCE.my_handler_function_call(True)'. +
2551- The capitalized word 'ACTION' will give access to qtvcp's ACTION library.
2552- eg. 'ACTION.TOGGLE_FLOOD()'. +
2553- The capitalized word 'PROGRAM_LOADER' will give access to qtvcp's
2554- PROGRAM_LOADER library. eg. 'PROGRAM_LOADER.load_halshow()'. +
2555- The capitalized word 'HAL' will give access to HAL's python module,
2556- e.g., 'HAL.set_p('motion.probe-input','1')'.
2548+ The capitalized words
25572549
2550+ INSTANCE:: will give access to the widgets instances and handler functions, e.g.. 'INSTANCE.my_handler_function_call(True)'.
2551+ ACTION:: will give access to qtvcp's ACTION library, e.g., 'ACTION.TOGGLE_FLOOD()'.
2552+ PROGRAM_LOADER:: will give access to QtVCP's PROGRAM_LOADER library, e.g., 'PROGRAM_LOADER.load_halshow()'.
2553+ HAL:: will give access to HAL's python module, e.g., 'HAL.set_p('motion.probe-input','1')'.
25582554
25592555== Import only Widgets
25602556These widgets are usually the base class widget for other QtVCP widgets.
25612557They are not available directly from the Designer editor but could be
25622558imported and manually inserted in the handler file.
25632559They could also be subclassed to make a similar widget with new features.
25642560
2565- === Auto Height
2566- Widget for measuring two heights with a probe. For setup
2561+ Auto Height:: Widget for measuring two heights with a probe. For setup
2562+ Gcode Utility:: Widgets for preforming common machining processes.
2563+ Facing::Slab or face a definable area with different strategies
2564+ Hole Cicle:: Drill multiple holes on a bolt hole circle
2565+ Qt NGCGUI:: QtVcp's version of NGC subroutine selector.
2566+ Qt PDF:: Allows adding loadable PDFs to a screen
2567+ Qt Vismach:: Use this to build/add OpenGl simulated machines
25672568
2568- === Gcode Utility
2569- Widgets for preforming common machining processes.
25702569
2571- === Facing
2572- Slab or face a definable area with different strategies
2573-
2574- === Hole Cicle
2575- Drill multiple holes on a bolt hole circle
2576-
2577- === Qt NGCGUI
2578- QtVcp's version of NGC subroutine selector.
2579-
2580- === Qt PDF
2581- Allows adding loadable PDFs to a screen
2582-
2583- === Qt Vismach
2584- Use this to build/add OpenGl simulated machines
2585-
2586-
2587- // vim: set syntax=asciidoc:
2570+ // vim: set syntax=asciidoc:
0 commit comments