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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: show_hide_manager.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:33:56  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.13
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: show_hide_manager.hpp,v 1000.1 2004/04/12 17:33:56 gouriano Exp $
  10. * ===========================================================================
  11. *
  12. *                            PUBLIC DOMAIN NOTICE
  13. *               National Center for Biotechnology Information
  14. *
  15. *  This software/database is a "United States Government Work" under the
  16. *  terms of the United States Copyright Act.  It was written as part of
  17. *  the author's official duties as a United States Government employee and
  18. *  thus cannot be copyrighted.  This software/database is freely available
  19. *  to the public for use. The National Library of Medicine and the U.S.
  20. *  Government have not placed any restriction on its use or reproduction.
  21. *
  22. *  Although all reasonable efforts have been taken to ensure the accuracy
  23. *  and reliability of the software and data, the NLM and the U.S.
  24. *  Government do not and cannot warrant the performance or results that
  25. *  may be obtained by using this software or data. The NLM and the U.S.
  26. *  Government disclaim all warranties, express or implied, including
  27. *  warranties of performance, merchantability or fitness for any particular
  28. *  purpose.
  29. *
  30. *  Please cite the author in any work or product based on this material.
  31. *
  32. * ===========================================================================
  33. *
  34. * Authors:  Paul Thiessen
  35. *
  36. * File Description:
  37. *      manager object to track show/hide status of objects at various levels
  38. *
  39. * ===========================================================================
  40. */
  41. #ifndef CN3D_SHOW_HIDE_MANAGER__HPP
  42. #define CN3D_SHOW_HIDE_MANAGER__HPP
  43. #include <corelib/ncbistl.hpp>
  44. #include <vector>
  45. #include <map>
  46. #include "structure_base.hpp"
  47. #include "show_hide_callback.hpp"
  48. BEGIN_SCOPE(Cn3D)
  49. class Residue;
  50. class StructureSet;
  51. class ShowHideInfo;
  52. class StructureObject;
  53. class ShowHideManager : public ShowHideCallbackObject
  54. {
  55. public:
  56.     ~ShowHideManager();
  57.     // eventually this will be tied to a GUI element or something...
  58.     bool OverlayConfEnsembles(void) const { return true; }
  59.     // set show/hide status of an entity - must be StructureObject, Molecule, or Residue.
  60.     void Show(const StructureBase *entity, bool isShown);
  61.     void MakeAllVisible(void);
  62.     // query whether an entity is visible
  63.     bool IsHidden(const StructureBase *entity) const;
  64.     bool IsVisible(const StructureBase *entity) const { return !IsHidden(entity); }
  65.     // used for show/hide dialog to get list of names and visibility status
  66.     void GetShowHideInfo(std::vector < std::string > *names, std::vector < bool > *visibilities) const;
  67.     void ShowHideCallbackFunction(const std::vector < bool >& itemsEnabled);
  68.     bool SelectionChangedCallback(const std::vector < bool >& original, std::vector < bool >& itemsEnabled);
  69.     void ConstructShowHideArray(const StructureSet *structureSet);
  70.     // functions to show/hide more complex groups of stuff
  71.     void ShowAlignedDomains(const StructureSet *set);
  72.     void ShowResidues(const StructureSet *set, bool showAligned);
  73.     void ShowUnalignedResiduesInAlignedDomains(const StructureSet *set);
  74.     void ShowSelectedResidues(const StructureSet *set);
  75.     void ShowDomainsWithHighlights(const StructureSet *set);
  76. private:
  77.     typedef std::map < const StructureBase *, bool > EntitiesHidden;
  78.     EntitiesHidden entitiesHidden;
  79.     // holds info on objects in this StructureSet
  80.     std::vector < const ShowHideInfo * > structureInfo;
  81.     void PrivateShowResidues(const StructureSet *set, bool showAligned);
  82.     void UnHideEntityAndChildren(const StructureBase *entity);
  83. public:
  84. };
  85. END_SCOPE(Cn3D)
  86. #endif // CN3D_SHOW_HIDE_MANAGER__HPP
  87. /*
  88. * ---------------------------------------------------------------------------
  89. * $Log: show_hide_manager.hpp,v $
  90. * Revision 1000.1  2004/04/12 17:33:56  gouriano
  91. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.13
  92. *
  93. * Revision 1.13  2004/02/19 17:05:13  thiessen
  94. * remove cn3d/ from include paths; add pragma to disable annoying msvc warning
  95. *
  96. * Revision 1.12  2003/02/03 19:20:06  thiessen
  97. * format changes: move CVS Log to bottom of file, remove std:: from .cpp files, and use new diagnostic macros
  98. *
  99. * Revision 1.11  2002/11/10 20:32:04  thiessen
  100. * show/hide optimizations, esp. show domains with highlights
  101. *
  102. * Revision 1.10  2002/10/28 21:36:01  thiessen
  103. * add show domains with highlights
  104. *
  105. * Revision 1.9  2001/10/08 14:18:56  thiessen
  106. * fix show/hide dialog under wxGTK
  107. *
  108. * Revision 1.8  2001/08/10 15:02:03  thiessen
  109. * fill out shortcuts; add update show/hide menu
  110. *
  111. * Revision 1.7  2001/03/09 15:48:43  thiessen
  112. * major changes to add initial update viewer
  113. *
  114. * Revision 1.6  2000/12/19 16:38:30  thiessen
  115. * tweaks to show/hide
  116. *
  117. * Revision 1.5  2000/12/15 15:52:08  thiessen
  118. * show/hide system installed
  119. *
  120. * Revision 1.4  2000/12/01 19:34:43  thiessen
  121. * better domain assignment
  122. *
  123. * Revision 1.3  2000/08/17 18:32:37  thiessen
  124. * minor fixes to StyleManager
  125. *
  126. * Revision 1.2  2000/08/17 14:22:01  thiessen
  127. * added working StyleManager
  128. *
  129. * Revision 1.1  2000/08/03 15:14:18  thiessen
  130. * add skeleton of style and show/hide managers
  131. *
  132. */