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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Flu_Label.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:05:51  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_Label.cpp,v $
  15.  * Revision 1000.1  2004/06/01 21:05:51  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_Label.cpp,v 1000.1 2004/06/01 21:05:51 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_Label.h>
  40. Flu_Label :: Flu_Label( int x, int y, int w, int h, const char* l )
  41.   : Fl_Box( x, y, w, h, 0 )
  42. {
  43.   align( FL_ALIGN_LEFT | FL_ALIGN_INSIDE );
  44.   _label = NULL;
  45.   label( l );
  46.   //box( FL_FLAT_BOX );
  47.   box( FL_NO_BOX );
  48. }
  49. Flu_Label :: ~Flu_Label()
  50. {
  51.   if( _label )
  52.     delete[] _label;
  53. }
  54. void Flu_Label :: label( const char* l )
  55. {
  56.   if( _label )
  57.     delete[] _label;
  58.   if( l == NULL )
  59.     {
  60.       _label = new char[1];
  61.       _label[0] = '';
  62.     }
  63.   else
  64.     {
  65.       _label = new char[strlen(l)+1];
  66.       strcpy( _label, l );
  67.     }
  68.   Fl_Box::label( _label );
  69.   redraw();
  70. }