;+ ; NAME: ; qLine_Print ; PURPOSE: ; Print current qLine display ; CATEGORY: ; Widget qLine ; CALLING SEQUENCE: PRO qLine_Print, state, event ; INPUTS: ; state array[1]; type: structure ; qLine state structure ; OUTPUTS: ; (hardcopy or EPS file) ; INCLUDE: @compile_opt.pro ; On error, return to caller ; CALLS: ; qset_page, qLine_Curve, get_page ; PROCEDURE: ; The current selection in the droplist widget state.wid_devi is checked ; to determine whether to use the default printer or create an EPS file. ; MODIFICATION HISTORY: ; FEB-2000, Paul Hick (UCSD/CASS; pphick@ucsd.edu) ;- widget_control, event.handler, sensitive=0 qset_page, status=status IF status THEN BEGIN qLine_Curve, state get_page ENDIF widget_control, event.handler, /sensitive RETURN & END