FLTK学习-8-鼠标事件处理

part16:处理鼠标事件第二部分
          这个例子有点像绘图程序。当你按下鼠标并拖动时,一条线就会随着鼠标移动绘出来。当点击左键时会连接下一次的点击位置绘出一条线,当点击右键时就会绘出一个矩形。

FLTK学习-8-鼠标事件处理_第1张图片
         这个例子基于Ian MacArthur提交的一个例子而来,在FLTK中绘图通常是在虚函数draw内部。你需要实现这个函数的自己的版本来覆盖fltk的提供的虚拟draw函数。当调用draw时,就会按照函数中定义的绘制屏幕。
         为渐进的绘图,最好在一个幕后缓冲区中绘制然后在调用draw函数时,将缓冲区复制到屏幕上。因为fltk不会存储屏幕内容所以当窗口变形和恢复时,所有的内容将被清除,幕后缓冲区的内容将会一直存在。这个例子就是使用渐进绘图,并且使用了幕后缓冲区。

[cpp] view plain copy print ?
  1. #pragma comment(lib, "fltk.lib")   
  2. #pragma comment(lib, "wsock32.lib")   
  3. #pragma comment(lib, "comctl32.lib")   
  4. #pragma comment(linker, "/NODEFAULTLIB:LIBCMTD.lib")   
  5.   
  6. #include <stdio.h>   
  7. #include <Fl/Fl.H>   
  8. #include <FL/Fl_Double_Window.H>   
  9. #include <Fl/Fl_Box.H>   
  10. #include <Fl/fl_draw.H>   
  11. #include <fl/x.H>   
  12. #define window_size 400   
  13. static Fl_Double_Window *main_window = 0;  // the main app window   
  14. static Fl_Offscreen offscreen_buffer = 0;  // the offscreen surface   
  15. /*****************************************************************************/  
  16. /* This class provides a view to copy the offscreen surface to */  
  17. class canvas : public Fl_Box   
  18. {  
  19.     void draw();  
  20.     int handle(int event);  
  21. public:  
  22.     canvas(int x, int y, int w, int h);  
  23. };  
  24. /*****************************************************************************/  
  25. /* Constructor */  
  26. canvas::canvas(int x, int y, int w, int h) : Fl_Box(x,y,w,h)  
  27. {  
  28. // Constructor   
  29. /*****************************************************************************/  
  30. void canvas::draw()   
  31. {  
  32.     if(offscreen_buffer)   
  33.     { // offscreen exists   
  34.         // blit the required view from the offscreen onto the box   
  35.         fl_copy_offscreen(x(), y(), w(), h(), offscreen_buffer, 0,0);  
  36.     }  
  37.     else   
  38.     { // create the offscreen   
  39.         main_window->make_current(); //ensures suitable graphic context   
  40.         offscreen_buffer = fl_create_offscreen( w(), h() );  
  41.         if(!offscreen_buffer)  
  42.         {  
  43.             fprintf(stderr,"Failed buffer creation");  
  44.             exit(1);  
  45.         }  
  46.         fl_begin_offscreen(offscreen_buffer); /* Open the offscreen context */   
  47.         fl_color(FL_WHITE);  
  48.         fl_rectf(0, 0,  w(), h() );  
  49.         fl_end_offscreen(); /* close the offscreen context */  
  50.         /* init screen with offscreen buffer */  
  51.         fl_copy_offscreen(x(), y(), w(), h(), offscreen_buffer, 0,0);  
  52.     }  
  53. // draw method   
  54. /*****************************************************************************/  
  55. int canvas::handle(int event)   
  56. {  
  57.     static char labeltext[100];  
  58.     int button,x,y;  
  59.     int retvalue = 0;  
  60.     static int x_old,y_old;  
  61.     static int push1st=0;  
  62.     if (!offscreen_buffer) return 1;  
  63.     retvalue = Fl_Box::handle(event);  
  64.     switch (event)  
  65.     {  
  66.     case FL_PUSH:  
  67.     case FL_DRAG:  
  68.         button = Fl::event_button();  
  69.         x = Fl::event_x();  
  70.         y = Fl::event_y();  
  71.     };  
  72.     switch ( button )  
  73.     {  
  74.     case 1: // Left button   
  75.         sprintf(labeltext,"Last mouse button= Left | Mouse at %d,%d now",x,y);  
  76.         window()->label(labeltext);  
  77.         retvalue = 1;  
  78.         break;  
  79.     case 3: // Right button   
  80.         sprintf(labeltext,"Last mouse button= Right | Mouse at %d,%d now",x,y);  
  81.         window()->label(labeltext);  
  82.         retvalue = 1;  
  83.         break;  
  84.     }  
  85.     switch(event)   
  86.     {  
  87.     case FL_PUSH:  
  88.         if (push1st == 0)   
  89.         {  
  90.             x_old = x;  
  91.             y_old = y;  
  92.             push1st = 1;   
  93.             break;  
  94.         }   
  95.         else   
  96.         {  
  97.             push1st = 0;  
  98.             /* Open the offscreen context for drawing */  
  99.             fl_begin_offscreen(offscreen_buffer);   
  100.             if (button==1){ //left mouse button   
  101.                 fl_color(FL_RED);  
  102.                 fl_line(x_old,y_old,x,y);  
  103.             } else { //right mouse button   
  104.                 fl_draw_box(FL_BORDER_FRAME,x_old,y_old,(x-x_old),  
  105.                     (y-y_old),FL_BLUE);  
  106.             }  
  107.             fl_end_offscreen(); /* close the offscreen context */  
  108.             redraw();  
  109.         }  
  110.     case FL_DRAG:  
  111.         {  
  112.             push1st=0; //clear if dragging   
  113.             /* Open the offscreen context for drawing */  
  114.             fl_begin_offscreen(offscreen_buffer);   
  115.             fl_color(FL_BLACK);  
  116.             fl_point(x,y);  
  117.             fl_end_offscreen(); // close the offscreen context   
  118.             redraw();}  
  119.         break;  
  120.     default:  
  121.         redraw();  
  122.         break;  
  123.     }  
  124.     return retvalue;  
  125. // handle   
  126. /*****************************************************************************/  
  127. int main (int argc, char **argv)   
  128. {  
  129.     main_window = new Fl_Double_Window(window_size, window_size, "Drawing with mouse example");  
  130.     main_window->begin();  
  131.     // a view of the offscreen, inside the main window   
  132.     static canvas *os_box = new canvas(5,5,(window_size-10),(window_size-10));  
  133.     main_window->end();  
  134.     main_window->resizable(os_box);  
  135.     main_window->show(argc, argv);  
  136.       
  137.     return Fl::run();  
  138. // main  

【例子在VC6.0,使用FLTK1.1.10测试通过】

          例子中定义了一个叫做canvas的Fl_Box子类新窗口类。定义了用来绘图的区域。在main函数中,这个canvas类的一个新的对象被创建作为main_window的子构件。
          类canvas同时还定义了handle函数重载了Fl_Widgets::handle()虚函数。所有的事件将被FLTK发送到canvas的handle函数中。函数检查FL_PUSH和FL_DRAG两个不同的鼠标事件并且返回1来指示FLTK它们已经被这个函数处理过了。两个事件中收到任意一个,函数就会在窗口的标题中指示是哪一个鼠标键被按下了并且显示当前鼠标的位置。
          如果是FL_DRAG事件,则将在当前位置绘出一点,如果是FL_PUSH键,将会保存鼠标位置,当第二次FL_PUSH事件时,根据是左键还是右键点击会绘制不同图形。如果是左键点击,则绘制一条连接上次点击位置和现在点击位置的直线。如果是右键点击,则绘制出的是一个矩形而不是直线。对幕后缓冲区的绘制开始于fl_begin_offscree(),结束于fl_end_offscreen()。
          draw函数只需要将幕后缓冲区复制到屏幕。当第一次调用draw函数时,它将使用fl_create_offscreen分配幕后缓冲区,然后使用fl_rectf()清除缓冲区为白色。当缓冲区绘制到屏幕之后会将绘制区域绘制成白色。仅仅需要确认基于main_window的幕后缓冲区当前有一个合适的图形上下文环境【??】。

你可能感兴趣的:(FLTK学习-8-鼠标事件处理)