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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: view.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 18:16:16  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_ALN_TEXTALN___VIEW__HPP
  10. #define GUI_WIDGETS_ALN_TEXTALN___VIEW__HPP
  11. /*  $Id: view.hpp,v 1000.1 2004/04/12 18:16:16 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Vlad Lebedev
  37.  *
  38.  * File Description:
  39.  *   Text alignment view widget
  40.  *
  41.  */
  42. #include <corelib/ncbistd.hpp>
  43. #include <gui/gui.hpp>
  44. #include <FL/Fl_Group.H>
  45. #include <FL/Fl_Scrollbar.H>
  46. BEGIN_NCBI_SCOPE
  47. class CTextAlnPanel;
  48. class CAlignDataSource;
  49. class NCBI_GUIWIDGETS_ALNTEXTALN_EXPORT CTextAlnView : public Fl_Group
  50. {
  51. public:
  52.     CTextAlnView(int x, int y, int w, int h, const char* label = NULL);
  53.     virtual ~CTextAlnView();
  54.     void SetDataSource(CAlignDataSource* ds);
  55.     enum EDisplayElement {
  56.         eBackground,
  57.         eGrid,
  58.         eNumbers,
  59.         eSelection,
  60.         eSequence,
  61.         eMismatch
  62.     };
  63.     enum EFeatureDisplay {
  64.         eOff,
  65.         eBase,
  66.         eAll
  67.     };
  68.     typedef int TFeatureDisplay;  // EFeatureDisplay
  69.     void   SetFeatureDisplay(EFeatureDisplay disp);
  70.     void   SetColor(EDisplayElement elem, Fl_Color color);
  71.     Fl_Color GetColor(EDisplayElement elem) const;
  72.     void ShowSequenceAsDots(bool show_dots );
  73.     void SelectAll (bool flag      );
  74.     void SetAnchor  (size_t idx);
  75.     void UnsetAnchor(void);
  76.     //void ShowLongSequenceInfo  (bool show_info );
  77.     //void AllowAlignmentEdit    (bool allow_edit);
  78.             
  79. private:
  80.     friend void s_CTextAlnView_ScrollCB(Fl_Widget*, void*);
  81.     friend class CTextAlnPanel;
  82.     void x_ScrollCB();
  83.     Fl_Scrollbar* m_ScrollX;
  84.     Fl_Scrollbar* m_ScrollY;
  85.     
  86.     CTextAlnPanel* m_TextAlnPanel;
  87. };
  88. END_NCBI_SCOPE
  89. /*
  90.  * ===========================================================================
  91.  * $Log: view.hpp,v $
  92.  * Revision 1000.1  2004/04/12 18:16:16  gouriano
  93.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  94.  *
  95.  * Revision 1.5  2004/03/11 17:22:22  dicuccio
  96.  * Deprecated TIndex / TDimension / TPosition / TColor.  Corrected constructor to
  97.  * take a default null const char* label param.
  98.  *
  99.  * Revision 1.4  2003/09/24 18:20:22  dicuccio
  100.  * Use generic data source
  101.  *
  102.  * Revision 1.3  2003/09/16 14:37:13  dicuccio
  103.  * Cleaned up and clarified export specifiers - added a new specifier for each
  104.  * library
  105.  *
  106.  * Revision 1.2  2003/09/12 12:59:36  dicuccio
  107.  * Changed export specifiers to be specific for the alignment widget library
  108.  *
  109.  * Revision 1.1  2003/03/27 17:02:29  lebedev
  110.  * Text Alignment Widget: Initial revision
  111.  *
  112.  * ===========================================================================
  113.  */
  114. #endif  /* GUI_WIDGETS_ALN_TEXTALN___VIEW__HPP */