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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: sequence.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 19:56:02  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_OBJUTILS___SEQUENCE__HPP
  10. #define GUI_OBJUTILS___SEQUENCE__HPP
  11. /*  $Id: sequence.hpp,v 1000.0 2004/06/01 19:56:02 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.  *    CLayoutSequence -- utility class for having molecule 
  40.  *          sequence letters in graphical layouts.
  41.  */
  42. #include <corelib/ncbiobj.hpp>
  43. #include <gui/objutils/layout.hpp>
  44. #include <objects/seqloc/Seq_interval.hpp>
  45. /** @addtogroup GUI_OBJUTILS
  46.  *
  47.  * @{
  48.  */
  49. BEGIN_NCBI_SCOPE
  50. class NCBI_GUIOBJUTILS_EXPORT CLayoutSequence : public CLayoutObject
  51. {
  52. public:
  53.     // ctors
  54.     CLayoutSequence(string sequence);
  55.     //
  56.     // pure virtual requirements
  57.     //
  58.     const string&         GetSequence(void) const;
  59.     // access the position of this object.
  60.     const objects::CSeq_loc& GetLocation(void) const;
  61.     // access our core component - we wrap an object of some sort
  62.     const CObject* GetObject(TSeqPos pos) const;
  63.     bool HasObject(const CObject* obj) const;
  64.     // Comparators
  65.     bool LessByPos (const CLayoutObject& obj) const;
  66.     bool LessBySize(const CLayoutObject& obj) const;
  67.     // Is this layout object selectable in the viewers?
  68.     bool IsSelectable() const;
  69.     // retrieve the type of this object
  70.     EType GetType() const;
  71. protected:
  72.     // Location is not real. 
  73.     // Sequence will occupy an entire row in layout
  74.     CRef<objects::CSeq_loc> m_Location;
  75.     string m_Sequence;
  76. };
  77. inline
  78. bool CLayoutSequence::IsSelectable() const
  79. {
  80.     return false;
  81. }
  82. inline
  83. const string& CLayoutSequence::GetSequence(void) const
  84. {
  85.     return m_Sequence;
  86. }
  87. inline
  88. const objects::CSeq_loc& CLayoutSequence::GetLocation(void) const
  89. {
  90.     return *m_Location;
  91. }
  92. inline
  93. const CObject* CLayoutSequence::GetObject(TSeqPos pos) const
  94. {
  95.     return NULL;
  96. }
  97. inline
  98. bool CLayoutSequence::HasObject(const CObject* obj) const
  99. {
  100.     return false;
  101. }
  102. inline
  103. bool CLayoutSequence::LessByPos(const CLayoutObject& obj) const
  104. {
  105.     return false;
  106. }
  107. inline
  108. bool CLayoutSequence::LessBySize(const CLayoutObject& obj) const
  109. {
  110.     return false;
  111. }
  112. inline
  113. CLayoutSequence::EType CLayoutSequence::GetType() const
  114. {
  115.     return eSequence;
  116. }
  117. END_NCBI_SCOPE
  118. /* @} */
  119. /*
  120.  * ===========================================================================
  121.  * $Log: sequence.hpp,v $
  122.  * Revision 1000.0  2004/06/01 19:56:02  gouriano
  123.  * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.4
  124.  *
  125.  * Revision 1.4  2004/05/14 14:24:47  dicuccio
  126.  * Added new pure virtual requirement on CLayoutObject(): GetType(), returns enum
  127.  * defined in CLayoutObject
  128.  *
  129.  * Revision 1.3  2004/05/03 13:34:54  dicuccio
  130.  * FIxed include guards, doxygen groups
  131.  *
  132.  * Revision 1.2  2004/05/03 12:41:35  dicuccio
  133.  * Fixed #includes and export specifiers
  134.  *
  135.  * Revision 1.1  2004/04/30 11:52:53  dicuccio
  136.  * Split out from gui/utils
  137.  *
  138.  * Revision 1.3  2004/04/16 14:27:17  dicuccio
  139.  * Added doxygen module tag
  140.  *
  141.  * Revision 1.2  2004/04/15 12:57:44  lebedev
  142.  * Changed GetObject to return NULL or const pointer based on given position
  143.  *
  144.  * Revision 1.1  2004/03/23 12:24:40  lebedev
  145.  * Initial revision
  146.  *
  147.  * ===========================================================================
  148.  */
  149. #endif  // GUI_OBJUTILS___SEQUENCE__HPP