event.c
上传用户:gzelex
上传日期:2007-01-07
资源大小:707k
文件大小:1k
开发平台:

MultiPlatform

  1. #include <LEDA/window.h>
  2. #include <math.h>
  3. // this program demonstrates the use of the "read_event" operation
  4. main()
  5. {
  6.   window W;
  7.   W.set_mode(xor_mode);
  8.   int    key;
  9.   double x,y,x0,x1,y0,y1,r1;
  10.   for(;;)
  11.   { 
  12.     int b = W.read_mouse(x0,y0);   // read start corner (x0,y0)
  13.     if (b == 3) break;  
  14.   
  15.     x1 = x0;
  16.     y1 = y0;
  17.     r1 = 0;
  18.   
  19.     if (b == 1)
  20.     { // while button is down draw rectangle from (x0,y0) 
  21.       // to current mouse position 
  22.       while (W.read_event(key,x,y) != button_release_event) 
  23.       { 
  24.         W.draw_rectangle(x0,y0,x1,y1,blue);  // erase old rectangle (xor_mode!)
  25.         W.draw_rectangle(x0,y0,x,y,blue);    // draw new rectangle
  26.         x1 = x;
  27.         y1 = y;
  28.        }
  29.      }
  30.     if (b == 2)
  31.     { // while button is down draw circle with center (x0,y0) 
  32.       // to current mouse position 
  33.     
  34.       while (W.read_event(key,x,y) != button_release_event) 
  35.       { 
  36.         double r = hypot(x1-x0,y1-y0);
  37.         W.draw_circle(x0,y0,r1,red);  // erase old circle (xor_mode!)
  38.         W.draw_circle(x0,y0,r,red);    // draw new circle
  39.         x1 = x;
  40.         y1 = y;
  41.         r1 = r;
  42.        }
  43.      }
  44.   
  45.    }
  46.   return 0;
  47. }