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

Comparing ray/src/rt/x11.c (file contents):
Revision 1.7 by greg, Fri Feb 23 14:50:38 1990 UTC vs.
Revision 1.13 by greg, Fri Mar 9 09:17:30 1990 UTC

# Line 84 | Line 84 | char  *name, *id;
84   {
85          int  nplanes;
86          XVisualInfo  ourvinfo;
87 +        XSetWindowAttributes    ourwinattr;
88          XWMHints  ourxwmhints;
89 <        Pixmap  bmCursorSrc, bmCursorMsk;
89 >        XSizeHints      oursizhints;
90  
91          ourdisplay = XOpenDisplay(NULL);
92          if (ourdisplay == NULL) {
# Line 109 | Line 110 | char  *name, *id;
110          }
111          ourvisual = ourvinfo.visual;
112          make_gmap(GAMMA);
112        /* create a cursor */
113        pickcursor = XCreateFontCursor (ourdisplay, XC_diamond_cross);
113          /* open window */
114 <        gwind = XCreateSimpleWindow(ourdisplay, ourroot, 0, 0,
114 >        ourwinattr.background_pixel = ourblack;
115 >        ourwinattr.border_pixel = ourblack;
116 >        gwind = XCreateWindow(ourdisplay, ourroot, 0, 0,
117                  DisplayWidth(ourdisplay,ourscreen)-2*BORWIDTH,
118                  DisplayHeight(ourdisplay,ourscreen)-2*BORWIDTH,
119 <                BORWIDTH, ourblack, ourwhite);
119 >                BORWIDTH, nplanes, InputOutput, ourvisual,
120 >                CWBackPixel|CWBorderPixel, &ourwinattr);
121          if (gwind == 0) {
122                  stderr_v("cannot create window\n");
123                  return(NULL);
124          }
125          XStoreName(ourdisplay, gwind, id);
126 +        /* create a cursor */
127 +        pickcursor = XCreateFontCursor(ourdisplay, XC_diamond_cross);
128          ourgc = XCreateGC(ourdisplay, gwind, 0, NULL);
129          ourxwmhints.flags = InputHint;
130          ourxwmhints.input = True;
131          XSetWMHints(ourdisplay, gwind, &ourxwmhints);
132 +        oursizhints.min_width = MINWIDTH;
133 +        oursizhints.min_height = MINHEIGHT+COMHEIGHT;
134 +        oursizhints.flags = PMinSize;
135 +        XSetNormalHints(ourdisplay, gwind, &oursizhints);
136          XSelectInput(ourdisplay, gwind, ExposureMask);
137          XMapWindow(ourdisplay, gwind);
138          XWindowEvent(ourdisplay, gwind, ExposureMask, levptr(XExposeEvent));
# Line 152 | Line 160 | x11_close()                    /* close our display */
160                  xt_close(comline);
161                  comline = NULL;
162          }
163 <        if (gwind != 0) {
164 <                freepixels();
165 <                XFreeGC(ourdisplay, ourgc);
166 <                XDestroyWindow(ourdisplay, gwind);
167 <                gwind = 0;
160 <                ourgc = 0;
161 <        }
163 >        freepixels();
164 >        XFreeGC(ourdisplay, ourgc);
165 >        XDestroyWindow(ourdisplay, gwind);
166 >        gwind = 0;
167 >        ourgc = 0;
168          XFreeCursor(ourdisplay, pickcursor);
169          XCloseDisplay(ourdisplay);
170          ourdisplay = NULL;
# Line 169 | Line 175 | static
175   x11_clear(xres, yres)                   /* clear our display */
176   int  xres, yres;
177   {
178 <        if (xres != gwidth || yres != gheight) {        /* change window */
179 <                if (comline != NULL)
180 <                        xt_close(comline);
178 >                                                /* check limits */
179 >        if (xres < MINWIDTH)
180 >                xres = MINWIDTH;
181 >        if (yres < MINHEIGHT)
182 >                yres = MINHEIGHT;
183 >                                                /* resize window */
184 >        if (xres != gwidth || yres != gheight) {
185                  XSelectInput(ourdisplay, gwind, 0);
186                  XResizeWindow(ourdisplay, gwind, xres, yres+COMHEIGHT);
177                comline = xt_open(ourdisplay,
178                                DefaultGC(ourdisplay,ourscreen),
179                                gwind, 0, yres, xres, COMHEIGHT, 0, COMFN);
180                if (comline == NULL) {
181                        stderr_v("Cannot open command line window\n");
182                        quit(1);
183                }
184                XSelectInput(ourdisplay, comline->w, ExposureMask);
187                  gwidth = xres;
188                  gheight = yres;
189 <                XSync(ourdisplay, 1);           /* discard input */
189 >                XFlush(ourdisplay);
190                  sleep(2);                       /* wait for window manager */
191 +                XSync(ourdisplay, 1);           /* discard input */
192          }
193          XClearWindow(ourdisplay, gwind);
194 <        if (ourvisual->class == PseudoColor)    /* reinitialize color table */
194 >                                                /* reinitialize color table */
195 >        if (ourvisual->class == PseudoColor)
196                  if (getpixels() == 0)
197                          stderr_v("cannot allocate colors\n");
198                  else
199                          new_ctab(ncolors);
200 <
200 >                                                /* get new command line */
201 >        if (comline != NULL)
202 >                xt_close(comline);
203 >        comline = xt_open(ourdisplay,
204 >                        DefaultGC(ourdisplay,ourscreen),
205 >                        gwind, 0, gheight, gwidth, COMHEIGHT, 0, COMFN);
206 >        if (comline == NULL) {
207 >                stderr_v("Cannot open command line window\n");
208 >                quit(1);
209 >        }
210 >        XSelectInput(ourdisplay, comline->w, ExposureMask);
211 >                                                /* remove earmuffs */
212          XSelectInput(ourdisplay, gwind,
213                  StructureNotifyMask|ExposureMask|KeyPressMask|ButtonPressMask);
214   }
# Line 223 | Line 238 | int  xmin, ymin, xmax, ymax;
238   static
239   x11_flush()                     /* flush output */
240   {
241 <        if (ncolors <= 0)       /* output necessary for death */
227 <                XFillRectangle(ourdisplay, gwind, ourgc, 0, 0, 1 ,1);
241 >        XNoOp(ourdisplay);
242          while (XPending(ourdisplay) > 0)
243                  getevent();
244   }
# Line 251 | Line 265 | static
265   x11_comout(out)                 /* output a string to command line */
266   char  *out;
267   {
268 <        if (comline != NULL)
269 <                xt_puts(out, comline);
270 <        XFlush(ourdisplay);
268 >        if (comline == NULL)
269 >                return;
270 >        xt_puts(out, comline);
271 >        if (out[strlen(out)-1] == '\n')
272 >                XFlush(ourdisplay);
273   }
274  
275  
# Line 261 | Line 277 | static
277   x11_errout(msg)                 /* output an error message */
278   char  *msg;
279   {
264        x11_comout(msg);
280          stderr_v(msg);          /* send to stderr also! */
281 +        x11_comout(msg);
282   }
283  
284  
# Line 375 | Line 391 | freepixels()                           /* free our pixels */
391                  return;
392          XFreeColors(ourdisplay,ourmap,pixval,ncolors,0L);
393          ncolors = 0;
394 <        if (ourmap != 0 && ourmap != DefaultColormap(ourdisplay,ourscreen))
394 >        if (ourmap != DefaultColormap(ourdisplay,ourscreen))
395                  XFreeColormap(ourdisplay, ourmap);
396          ourmap = 0;
397   }
# Line 442 | Line 458 | static
458   getkey(ekey)                            /* get input key */
459   register XKeyPressedEvent  *ekey;
460   {
461 <        int  n;
461 >        register int  n;
462  
463          n = XLookupString(ekey, c_queue+c_last, sizeof(c_queue)-c_last,
464                                  NULL, NULL);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines