1FRAME(3NCARG) NCAR GRAPHICS FRAME(3NCARG)
2
3
4
6 FRAME - advances to the next picture (in the case of CGM output), or
7 pauses in the window of most recent creation (for X11 output). A mouse
8 or key click in the window on pause will cause all active workstations
9 to be cleared.
10
12 CALL FRAME
13
15 #include <ncarg/ncargC.h>
16
17 void c_frame()
18
20 If a CGM workstation is open, a call to routine FRAME causes an
21 END_PICTURE CGM element to be generated. If there are open X windows,
22 it updates all workstations and pauses in the window of most recent
23 creation. After a mouse click or a key click in the window on pause,
24 all workstations are cleared.
25
26 FRAME is most applicable to an environment with a single active
27 workstation. When multiple workstations are used, the more versatile
28 NGPICT routine should be considered. NGPICT includes the option of
29 issuing a "<READY>" prompt when a window is on pause.
30
31 To use NGPICT to replace routine FRAME for a single CGM workstation
32 use: CALL NGPICT(WKID,1), where WKID is the workstation ID for the
33 metafile and the second argument flags a CLEAR WORKSTATION.
34
36 Use the ncargex command to see the following relevant examples: agex06
37
39 To use FRAME or c_frame, load the NCAR Graphics libraries ncarg,
40 ncarg_gks, and ncarg_c, preferably in that order.
41
43 Online: sflush, ngpict, spps, spps_params, ncarg_cbind
44
45 Hardcopy: NCAR Graphics Fundamentals, UNIX Version; User's Guide for
46 NCAR GKS-0A Graphics
47
49 Copyright (C) 1987-2009
50 University Corporation for Atmospheric Research
51 The use of this Software is governed by a License Agreement.
52
53
54
55UNIX March 1993 FRAME(3NCARG)