File: t_erase.c

package info (click to toggle)
plotutils 2.0-2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 5,964 kB
  • ctags: 2,522
  • sloc: ansic: 38,416; sh: 1,853; yacc: 856; makefile: 181; lex: 144
file content (42 lines) | stat: -rw-r--r-- 1,132 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* This file contains the erase method, which is a standard part of the
   libplot.  It erases the graphics device display. */

#include "sys-defines.h"
#include "plot.h"
#include "extern.h"

int
#ifdef _HAVE_PROTOS
_t_erase (void)
#else
_t_erase ()
#endif
{
  if (!_plotter->open)
    {
      _plotter->error ("erase: invalid operation");
      return -1;
    }

  _plotter->endpath (); /* flush polyline if any (could simply
				      interrupt it in mid-assemblage) */

  if (_plotter->outstream)
    fputs ("\033\014", _plotter->outstream); /* ASCII ESC C-l, i.e. ^[^l */
  _plotter->mode = MODE_ALPHA;	/* erase enters alpha mode */

  /* Note: kermit Tek emulator seems to enter graphics mode on seeing ESC
     C-l , not alpha mode.  Maybe we should specify MODE_PLOT above,
     instead of MODE_ALPHA?  The above won't hurt though, because we don't
     use MODE_ALPHA anyway (we'll have to switch away from it). */

  if (_plotter->outstream)
    fflush (_plotter->outstream);
#ifdef GENUINE_TEKTRONIX
  if (_plotter->display_type == D_GENERIC)
    sleep(1);			/* give storage tube time to clear */
#endif
  
  return 0;
}