ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/ximage.c
(Generate patch)

Comparing ray/src/px/ximage.c (file contents):
Revision 2.2 by greg, Thu Dec 19 14:52:31 1991 UTC vs.
Revision 2.7 by greg, Tue Sep 20 15:48:25 1994 UTC

# Line 37 | Line 37 | static char SCCSid[] = "$SunId$ LBL";
37  
38   #define  FONTNAME       "9x15"          /* text font we'll use */
39  
40 < #define  CTRL(c)        ('c'-'@')
40 > #define  CTRL(c)        ((c)-'@')
41  
42   #define  BORWIDTH       5               /* border width */
43   #define  BARHEIGHT      25              /* menu bar size */
# Line 97 | Line 97 | main(argc, argv)
97   int  argc;
98   char  *argv[];
99   {
100 +        extern char  *getenv();
101 +        char  *gv;
102          int  headline();
103          int  i;
104          
105          progname = argv[0];
106 +        if ((gv = getenv("DISPLAY_GAMMA")) != NULL)
107 +                gamcor = atof(gv);
108  
109          for (i = 1; i < argc; i++)
110                  if (argv[i][0] == '-')
# Line 170 | Line 174 | userr:
174   headline(s)             /* get relevant info from header */
175   char  *s;
176   {
173        static char  *altname[] = {"rview","rpict",VIEWSTR,NULL};
174        register char  **an;
177          char  fmt[32];
178  
179          if (isexpos(s))
# Line 179 | Line 181 | char  *s;
181          else if (isformat(s)) {
182                  formatval(fmt, s);
183                  wrongformat = strcmp(fmt, COLRFMT);
184 <        } else
185 <                for (an = altname; *an != NULL; an++)
184 <                        if (!strncmp(*an, s, strlen(*an))) {
185 <                                if (sscanview(&ourview, s+strlen(*an)) > 0)
186 <                                        gotview++;
187 <                                return;
188 <                        }
184 >        } else if (isview(s) && sscanview(&ourview, s) > 0)
185 >                gotview++;
186   }
187  
188  
# Line 367 | Line 364 | XKeyEvent  *ekey;
364                  return(0);
365          switch (*cp) {                  /* interpret command */
366          case 'q':
367 <        case CTRL(D):                           /* quit */
367 >        case CTRL('D'):                         /* quit */
368                  quit(0);
369          case '\n':
370          case '\r':
# Line 437 | Line 434 | XKeyEvent  *ekey;
434                  free_raster(ourras);
435                  getras();
436          /* fall through */
437 <        case CTRL(R):                           /* redraw */
438 <        case CTRL(L):
437 >        case CTRL('R'):                         /* redraw */
438 >        case CTRL('L'):
439                  unmap_rcolors(ourras);
440                  XClear(wind);
441                  return(redraw(0, 0, width, height));
# Line 647 | Line 644 | int  y;
644                  if (fseek(fin, scanpos[y], 0) == -1)
645                          quiterr("fseek error");
646                  cury = y;
647 <        } else if (scanpos != NULL)
647 >        } else if (scanpos != NULL && scanpos[y] == -1)
648                  scanpos[y] = ftell(fin);
649  
650          if (freadcolrs(scanline, xmax, fin) < 0)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines