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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Flu_Combo_Tree.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:05:42  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_Combo_Tree.cpp,v $
  15.  * Revision 1000.1  2004/06/01 21:05:42  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_Combo_Tree.cpp,v 1000.1 2004/06/01 21:05:42 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 <stdio.h>
  40. #include <FL/Fl.H>
  41. #include <FL/fl_draw.H>
  42. #include <string.h>
  43. #include <stdlib.h>
  44. #include <FL/math.h>
  45. #include <gui/widgets/FLU/Flu_Combo_Tree.h>
  46. Flu_Combo_Tree :: Flu_Combo_Tree( int X, int Y, int W, int H, const char* l )
  47.   : Flu_Combo_Box( X, Y, W, H, l ), tree(0,0,0,0)
  48. {
  49.   tree.callback( _cb, this );
  50.   tree.selection_mode( FLU_SINGLE_SELECT );
  51.   tree.when( FL_WHEN_RELEASE );
  52.   set_combo_widget( &tree );
  53. }
  54. Flu_Combo_Tree :: ~Flu_Combo_Tree()
  55. {
  56. }
  57. void Flu_Combo_Tree :: cb()
  58. {
  59.   //if( tree.callback_reason() == FLU_UNSELECTED )
  60.   //selected( 0 );
  61.   if( tree.callback_reason() == FLU_SELECTED )
  62.     selected( tree.callback_node()->find_path() );
  63. }
  64. bool Flu_Combo_Tree :: _value( const char *v )
  65. {
  66.   // see if 'v' is in the tree, and if so, make it the current selection
  67.   Flu_Tree_Browser::Node *n = tree.find( v );
  68.   if( n )
  69.     {
  70.       tree.unselect_all();
  71.       tree.set_hilighted( n );
  72.       n->select( true );
  73.       return true;
  74.     }
  75.   return false;
  76. }
  77. const char* Flu_Combo_Tree :: _next()
  78. {
  79.   Flu_Tree_Browser::Node *n = tree.get_selected( 1 );
  80.   if( n )
  81.     {
  82.       Flu_Tree_Browser::Node *n2 = n->next();
  83.       if( n2 )
  84. {
  85.   n->select( false );
  86.   n2->select( true );
  87.   tree.set_hilighted( n2 );
  88.   const char *path = n2->find_path();
  89.   return( strlen(path) ? path : NULL );
  90. }
  91.     }
  92.   return NULL;
  93. }
  94. const char* Flu_Combo_Tree :: _previous()
  95. {
  96.   Flu_Tree_Browser::Node *n = tree.get_selected( 1 );
  97.   if( n )
  98.     {
  99.       Flu_Tree_Browser::Node *n2 = n->previous();
  100.       if( n2 )
  101. {
  102.   if( n2->is_root() && !tree.show_root() )
  103.     return NULL;
  104.   n->select( false );
  105.   n2->select( true );
  106.   tree.set_hilighted( n2 );
  107.   const char *path = n2->find_path();
  108.   return( strlen(path) ? path : NULL );
  109. }
  110.     }
  111.   return NULL;
  112. }