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

Comparing ray/src/px/x11image.c (file contents):
Revision 2.37 by greg, Fri Jun 10 12:51:21 1994 UTC vs.
Revision 2.41 by greg, Wed Jan 25 10:53:02 1995 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1993 Regents of the University of California */
1 > /* Copyright (c) 1995 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 74 | Line 74 | int  xoff = 0;                         /* x image offset */
74   int  yoff = 0;                          /* y image offset */
75  
76   int  parent = 0;                        /* number of children, -1 if child */
77 + int  sequential = 0;                    /* display images in sequence */
78  
79   VIEW  ourview = STDVIEW;                /* image view parameters */
80   int  gotview = 0;                       /* got parameters from file */
# Line 147 | Line 148 | char  *argv[];
148                                  greyscale = !greyscale;
149                                  break;
150                          case 'm':
151 +                                greyscale = 1;
152                                  maxcolors = 2;
153                                  break;
154                          case 'd':
# Line 158 | Line 160 | char  *argv[];
160                          case 'f':
161                                  fast = !fast;
162                                  break;
163 +                        case 's':
164 +                                sequential = !sequential;
165 +                                break;
166                          case 'e':
167                                  if (argv[i+1][0] != '+' && argv[i+1][0] != '-')
168                                          goto userr;
# Line 214 | Line 219 | char  *argv[];
219  
220          init(argc, argv);                       /* get file and open window */
221  
217        if (parent < 0) {
218                kill(getppid(), SIGCONT);       /* signal parent if child */
219                sigrecv--;
220        }
222          for ( ; ; )
223                  getevent();             /* main loop */
224   userr:
225          fprintf(stderr,
226 < "Usage: %s [-di disp][[-ge] spec][-b][-m][-d][-f][-c nclrs][-e +/-stops][-g gamcor] pic ..\n",
226 > "Usage: %s [-di disp][[-ge] spec][-b][-m][-d][-f][-c nclrs][-e +/-stops][-g gamcor][-s] pic ..\n",
227                          progname);
228          exit(1);
229   }
# Line 276 | Line 277 | char **argv;
277          if (gamstr == NULL)             /* get it from the X server */
278                  gamstr = XGetDefault(thedisplay, "radiance", "gamma");
279          if (gamstr == NULL)             /* get it from the environment */
280 <                gamstr = getenv("GAMMA");
280 >                gamstr = getenv("DISPLAY_GAMMA");
281          if (gamstr != NULL)
282                  gamcor = atof(gamstr);
283                                  /* get best visual for default screen */
# Line 305 | Line 306 | char **argv;
306                  }
307          }
308          /* open window */
309 +        i = CWEventMask|CWCursor|CWBackPixel|CWBorderPixel;
310          ourwinattr.border_pixel = ourwhite;
311          ourwinattr.background_pixel = ourblack;
312 <        ourwinattr.colormap = XCreateColormap(thedisplay, ourroot,
313 <                        ourvis.visual, AllocNone);
312 >        if (ourvis.visual != DefaultVisual(thedisplay,ourscreen)) {
313 >                ourwinattr.colormap = newcmap(thedisplay, ourscreen, ourvis.visual);
314 >                i |= CWColormap;
315 >        }
316          ourwinattr.event_mask = ExposureMask|KeyPressMask|ButtonPressMask|
317                          ButtonReleaseMask|ButtonMotionMask|StructureNotifyMask;
318          ourwinattr.cursor = XCreateFontCursor(thedisplay, XC_diamond_cross);
319          wind = XCreateWindow(thedisplay, ourroot, xszhints.x, xszhints.y,
320                          xszhints.width, xszhints.height, BORWIDTH,
321 <                        ourvis.depth, InputOutput, ourvis.visual, CWEventMask|
322 <                        CWCursor|CWBackPixel|CWBorderPixel|CWColormap, &ourwinattr);
321 >                        ourvis.depth, InputOutput, ourvis.visual,
322 >                        i, &ourwinattr);
323          if (wind == 0)
324                  quiterr("cannot create window");
325          width = xmax;
# Line 353 | Line 357 | char **argv;
357          XSetWMProtocols(thedisplay, wind, &closedownAtom, 1);
358  
359          XMapWindow(thedisplay, wind);
356        return;
360   } /* end of init */
361  
362  
# Line 562 | Line 565 | getevent()                             /* process the next event */
565                  map_rcolors(ourras, wind);
566                  if (fast)
567                          make_rpixmap(ourras, wind);
568 +                if (!sequential & parent < 0 & sigrecv == 0) {
569 +                        kill(getppid(), SIGCONT);
570 +                        sigrecv--;
571 +                }
572                  break;
573          case UnmapNotify:
574                  if (!fast)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines