Flu_Toggle_Group.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:3k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Flu_Toggle_Group.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:06:06  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*
  10.  * These files were imported into NCBI's CVS directly from FLU version 2.9.1.
  11.  * Modifications to the source are listed below.
  12.  *
  13.  * ==========================================================================
  14.  * $Log: Flu_Toggle_Group.cpp,v $
  15.  * Revision 1000.1  2004/06/01 21:06:06  gouriano
  16.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  17.  *
  18.  * Revision 1.2  2004/05/21 22:27:51  gorelenk
  19.  * Added PCH ncbi_pch.hpp
  20.  *
  21.  * Revision 1.1  2004/03/11 13:51:40  dicuccio
  22.  * Imported FLU version 2.9.1.  Altered export specifiers to match NCBI layout.
  23.  * Altered include paths to match NCBI toolkit layout.
  24.  *
  25.  * ==========================================================================
  26.  */
  27. // $Id: Flu_Toggle_Group.cpp,v 1000.1 2004/06/01 21:06:06 gouriano Exp $
  28. /***************************************************************
  29.  *                FLU - FLTK Utility Widgets 
  30.  *  Copyright (C) 2002 Ohio Supercomputer Center, Ohio State University
  31.  *
  32.  * This file and its content is protected by a software license.
  33.  * You should have received a copy of this license with this file.
  34.  * If not, please contact the Ohio Supercomputer Center immediately:
  35.  * Attn: Jason Bryan Re: FLU 1224 Kinnear Rd, Columbus, Ohio 43212
  36.  * 
  37.  ***************************************************************/
  38. #include <ncbi_pch.hpp>
  39. #include <gui/widgets/FLU/Flu_Toggle_Group.h>
  40. Flu_Toggle_Group :: Flu_Toggle_Group( int x, int y, int w, int h, const char *l )
  41.   : Fl_Group( x, y, w, h, l )
  42. {
  43.   chkBtn = new Fl_Check_Button( 0, 0, 0, 0 );
  44.   chkBtn->callback( _toggleCB, this );
  45.   box( FL_EMBOSSED_FRAME );
  46.   align( FL_ALIGN_LEFT | FL_ALIGN_INSIDE );
  47. }
  48. void Flu_Toggle_Group :: toggleCB()
  49. {
  50.   do_callback();
  51.   redraw();
  52. }
  53. void Flu_Toggle_Group :: draw()
  54. {
  55.   int lblW = 0, lblH, X, i;
  56.   if( chkBtn->value() )
  57.     {
  58.       for( i = 1; i < children(); i++ )
  59. child(i)->activate();
  60.     }
  61.   else
  62.     {
  63.       for( i = 1; i < children(); i++ )
  64. child(i)->deactivate();
  65.     }
  66.   if( label() == 0 )
  67.     lblW = lblH = 0;
  68.   else if( strlen( label() ) == 0 )
  69.     lblW = lblH = 0;
  70.   else
  71.     {
  72.       measure_label( lblW, lblH );
  73.       lblW += 18;
  74.       lblH += 2;
  75.     }
  76.   // align the label
  77.   if( align() & FL_ALIGN_LEFT )
  78.     X = 4;
  79.   else if( align() & FL_ALIGN_RIGHT )
  80.     X = w() - lblW - 8;
  81.   else
  82.     X = w()/2 - lblW/2 - 2;
  83.   // draw the main group box
  84.   fl_draw_box( box(), x(), y()+lblH/2, w(), h()-lblH/2, color() );
  85.   // clip and draw the children
  86.   fl_clip( x()+2, y()+lblH+1, w()-4, h()-lblH-3 );
  87.   chkBtn->hide();
  88.   draw_children();
  89.   chkBtn->show();
  90.   fl_pop_clip();
  91.   // clear behind the button and draw it
  92.   fl_color( color() );
  93.   fl_rectf( x()+X, y(), lblW+4, lblH );
  94.   fl_color( labelcolor() );
  95.   chkBtn->label( label() );
  96.   chkBtn->resize( x()+X+2, y(), lblW, lblH );
  97.   draw_child( *chkBtn );
  98. }