glui_checkbox.cpp
上传用户:gb3593
上传日期:2022-01-07
资源大小:3028k
文件大小:5k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. /****************************************************************************
  2.   
  3.   GLUI User Interface Toolkit (LGPL)
  4.   ---------------------------
  5.      glui_checkbox - GLUI_Checkbox control class
  6.           --------------------------------------------------
  7.   Copyright (c) 1998 Paul Rademacher
  8.   WWW:    http://sourceforge.net/projects/glui/
  9.   Forums: http://sourceforge.net/forum/?group_id=92496
  10.   This library is free software; you can redistribute it and/or
  11.   modify it under the terms of the GNU Lesser General Public
  12.   License as published by the Free Software Foundation; either
  13.   version 2.1 of the License, or (at your option) any later version.
  14.   This library is distributed in the hope that it will be useful,
  15.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17.   Lesser General Public License for more details.
  18.   You should have received a copy of the GNU Lesser General Public
  19.   License along with this library; if not, write to the Free Software
  20.   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21. *****************************************************************************/
  22. #include "glui_internal_control.h"
  23. /****************************** GLUI_Checkbox::GLUI_Checkbox() **********/
  24. GLUI_Checkbox::GLUI_Checkbox( GLUI_Node *parent,
  25.                               const char *name, int *value_ptr,
  26.                               int id, 
  27.                               GLUI_CB cb )
  28. {
  29.   common_init();
  30.   set_ptr_val( value_ptr );
  31.   set_name( name );
  32.   user_id    = id;
  33.   callback   = cb;
  34.   parent->add_control( this );
  35.   init_live();
  36. }
  37. /****************************** GLUI_Checkbox::mouse_down_handler() **********/
  38. int    GLUI_Checkbox::mouse_down_handler( int local_x, int local_y )
  39. {
  40.   orig_value = int_val;
  41.   int_val = !int_val;
  42.   currently_inside = true;
  43.   redraw();
  44.   return false;
  45. }
  46. /****************************** GLUI_Checkbox::mouse_up_handler() **********/
  47. int    GLUI_Checkbox::mouse_up_handler( int local_x, int local_y, bool inside )
  48. {
  49.   if ( NOT inside ) { /* undo effect on value */
  50.     int_val = orig_value;    
  51.   }
  52.   else {
  53.     set_int_val( int_val );
  54.     /*** Invoke the callback ***/
  55.     execute_callback();
  56.   }
  57.   return false;
  58. }
  59. /****************************** GLUI_Checkbox::mouse_held_down_handler() ******/
  60. int    GLUI_Checkbox::mouse_held_down_handler( int local_x, int local_y,
  61.        bool inside)
  62. {
  63.   /********** Toggle checked and unchecked bitmap if we're entering or
  64.     leaving the checkbox area **********/
  65.   if ( inside != currently_inside ) {
  66.      int_val = !int_val;
  67.      currently_inside = inside;
  68.      redraw();
  69.   }
  70.   
  71.   return false;
  72. }
  73. /****************************** GLUI_Checkbox::key_handler() **********/
  74. int    GLUI_Checkbox::key_handler( unsigned char key,int modifiers )
  75. {
  76.   return false;
  77. }
  78. /****************************** GLUI_Checkbox::draw() **********/
  79. void    GLUI_Checkbox::draw( int x, int y )
  80. {
  81.   GLUI_DRAWINGSENTINAL_IDIOM
  82.   if ( int_val != 0 ) {
  83.     if ( enabled ) 
  84.       glui->std_bitmaps.draw( GLUI_STDBITMAP_CHECKBOX_ON, 0, 0 );
  85.     else
  86.       glui->std_bitmaps.draw( GLUI_STDBITMAP_CHECKBOX_ON_DIS, 0, 0 );
  87.   }
  88.   else {
  89.     if ( enabled )
  90.       glui->std_bitmaps.draw( GLUI_STDBITMAP_CHECKBOX_OFF, 0, 0 );
  91.     else
  92.       glui->std_bitmaps.draw( GLUI_STDBITMAP_CHECKBOX_OFF_DIS, 0, 0 );      
  93.   }
  94.   draw_active_area();
  95.   draw_name( text_x_offset, 10);
  96. }
  97. /**************************** GLUI_Checkbox::draw_active_area() **************/
  98. void    GLUI_Checkbox::draw_active_area( void )
  99. {
  100.   GLUI_DRAWINGSENTINAL_IDIOM
  101.   int text_width, left, right;
  102.   text_width = _glutBitmapWidthString( glui->font, name.c_str() );
  103.   left       = text_x_offset-3;
  104.   right      = left + 7 + text_width;
  105.   if ( active ) {
  106.     glEnable( GL_LINE_STIPPLE );
  107.     glLineStipple( 1, 0x5555 );
  108.     glColor3f( 0., 0., 0. );
  109.   } else {
  110.     glColor3ub( glui->bkgd_color.r, glui->bkgd_color.g, glui->bkgd_color.b );
  111.   }
  112.   glBegin( GL_LINE_LOOP );
  113.   glVertex2i(left,0);     glVertex2i( right,0);
  114.   glVertex2i(right,h+1);   glVertex2i( left,h+1);
  115.   glEnd();
  116.   
  117.   glDisable( GL_LINE_STIPPLE );
  118. }
  119. /************************************ GLUI_Checkbox::update_size() **********/
  120. void   GLUI_Checkbox::update_size( void )
  121. {
  122.   int text_size;
  123.   if ( NOT glui )
  124.     return;
  125.   text_size = _glutBitmapWidthString( glui->font, name.c_str() );
  126.   /*  if ( w < text_x_offset + text_size + 6 )              */
  127.   w = text_x_offset + text_size + 6 ;
  128. }
  129. /********************************* GLUI_Checkbox::set_int_val() **************/
  130. void    GLUI_Checkbox::set_int_val( int new_val )
  131. {
  132.   int_val = new_val;
  133.   /*** Update the variable we're (possibly) pointing to ***/
  134.   output_live(true);
  135.   redraw();
  136. }