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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Flu_Choice_Group.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:05:34  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_Choice_Group.cpp,v $
  15.  * Revision 1000.1  2004/06/01 21:05:34  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:39  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_Choice_Group.cpp,v 1000.1 2004/06/01 21:05:34 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_Choice_Group.h>
  40. #include <stdlib.h>
  41. #define MAX( x, y ) ( (x)>(y) ? (x) : (y) )
  42. #define MIN( x, y ) ( (x)<(y) ? (x) : (y) )
  43. Flu_Choice_Group :: Flu_Choice_Group( int x, int y, int w, int h, const char *l )
  44.   : Fl_Group( x, y, w, h )
  45. {
  46.   selected = NULL;
  47.   choice = new Fl_Choice( 0, 0, 0, 0 );
  48.   choice->callback( _choiceCB, this );
  49.   box( FL_EMBOSSED_BOX );
  50.   align( FL_ALIGN_LEFT | FL_ALIGN_INSIDE );
  51. }
  52. void Flu_Choice_Group :: choiceCB()
  53. {
  54.   value( choice->value() );
  55.   do_callback();
  56. }
  57. int Flu_Choice_Group :: value()
  58. {
  59.   if( children() == 1 )
  60.     return -1;
  61.   for( int i = 1; i < children(); i++ )
  62.     if( child(i) == selected )
  63.       return i-1;
  64.   return -1;
  65. }
  66. void Flu_Choice_Group :: value( int v )
  67. {
  68.   v++;
  69.   if( v >= 1 && v < children() )
  70.     value( child(v) );
  71. }
  72. int Flu_Choice_Group :: value( Fl_Widget *newvalue )
  73. {
  74.   int ret = -1;
  75.   selected = NULL;
  76.   choice->clear();
  77.   for( int i = 1; i < children(); i++ )
  78.     {
  79.       choice->add( child(i)->label() );
  80.       child(i)->labeltype( FL_NO_LABEL );
  81.       if( child(i) == newvalue )
  82. {
  83.   ret = i-1;
  84.   child(i)->show();
  85.   choice->value( ret );
  86.   selected = child(i);
  87. }
  88.       else
  89. child(i)->hide();
  90.       child(i)->redraw();
  91.     }
  92.   redraw();
  93.   if( parent() )
  94.     parent()->redraw();
  95.   return ret;
  96. }
  97. void Flu_Choice_Group :: draw()
  98. {
  99.   int i;
  100.   // make sure the selected child is still a child
  101.   bool found = false;
  102.   for( i = 1; i < children(); i++ )
  103.     if( child(i) == selected )
  104.       {
  105. found = true;
  106. break;
  107.       }
  108.   if( !found )
  109.     selected = NULL;
  110.   if( !selected && children() > 1 )
  111.     value( child(1) );
  112.   int lblW = 0, lblH = 0, X;
  113.   for( i = 1; i < children(); i++ )
  114.     {
  115.       int W = 0, H;
  116.       fl_measure( child(i)->label(), W, H );
  117.       if( W > lblW )
  118. lblW = W;
  119.       if( H > lblH )
  120. lblH = H;
  121.     }
  122.   lblW += 26;
  123.   lblH += 6;
  124.   // align the label
  125.   if( align() & FL_ALIGN_LEFT )
  126.     X = 4;
  127.   else if( align() & FL_ALIGN_RIGHT )
  128.     X = w() - lblW - 8;
  129.   else
  130.     X = w()/2 - lblW/2 - 2;
  131.   // draw the main group box
  132.   fl_draw_box( box(), x(), y()+lblH/2, w(), h()-lblH/2, color() );
  133.   // clip and draw the children
  134.   fl_clip( x()+2, y()+lblH+1, w()-4, h()-lblH-3 );
  135.   choice->hide();
  136.   draw_children();
  137.   choice->show();
  138.   fl_pop_clip();
  139.   // clear behind the button and draw it
  140.   fl_color( color() );
  141.   fl_rectf( x()+X, y(), lblW+4, lblH );
  142.   fl_color( labelcolor() );
  143.   choice->resize( x()+X+2, y(), lblW, lblH );
  144.   draw_child( *choice );
  145. }