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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: annotate_dialog.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:30:37  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: annotate_dialog.hpp,v 1000.1 2004/04/12 17:30:37 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. *      dialog for user annotations
  38. *
  39. * ===========================================================================
  40. */
  41. #ifndef CN3D_ANNOTATE_DIALOG__HPP
  42. #define CN3D_ANNOTATE_DIALOG__HPP
  43. #include <corelib/ncbistd.hpp>
  44. #include <corelib/ncbistl.hpp>
  45. #ifdef __WXMSW__
  46. #include <windows.h>
  47. #include <wx/msw/winundef.h>
  48. #endif
  49. #include <wx/wx.h>
  50. #include <map>
  51. #include <vector>
  52. #include "style_manager.hpp"
  53. BEGIN_SCOPE(Cn3D)
  54. class StructureSet;
  55. class MoleculeIdentifier;
  56. class AnnotateDialog : public wxDialog
  57. {
  58. public:
  59.     AnnotateDialog(wxWindow *parent, StyleManager *manager, const StructureSet *set);
  60. private:
  61.     StyleManager *styleManager;
  62.     const StructureSet *structureSet;
  63.     typedef std::map < const MoleculeIdentifier * , std::vector < bool > > ResidueMap;
  64.     ResidueMap highlightedResidues;
  65.     bool HighlightsPresent(void) const { return (highlightedResidues.size() > 0); }
  66.     // event callbacks
  67.     void OnCloseWindow(wxCloseEvent& event);
  68.     void OnButton(wxCommandEvent& event);
  69.     void OnSelection(wxCommandEvent& event);
  70.     // GUI functions
  71.     void ResetListBoxes(void);
  72.     void SetButtonStates(void);
  73.     // action functions
  74.     void NewAnnotation(void);
  75.     void EditAnnotation(void);
  76.     void MoveAnnotation(void);
  77.     void DeleteAnnotation(void);
  78.     DECLARE_EVENT_TABLE()
  79. };
  80. class AnnotationEditorDialog : public wxDialog
  81. {
  82. public:
  83.     AnnotationEditorDialog(wxWindow *parent,
  84.         StyleSettings *settings, const StructureSet *set,
  85.         const StyleManager::UserAnnotation& initialText);
  86. private:
  87.     StyleSettings *styleSettings;
  88.     const StructureSet *structureSet;
  89.     // event callbacks
  90.     void OnCloseWindow(wxCloseEvent& event);
  91.     void OnButton(wxCommandEvent& event);
  92.     DECLARE_EVENT_TABLE()
  93. };
  94. END_SCOPE(Cn3D)
  95. #endif // CN3D_ANNOTATE_DIALOG__HPP
  96. /*
  97. * ---------------------------------------------------------------------------
  98. * $Log: annotate_dialog.hpp,v $
  99. * Revision 1000.1  2004/04/12 17:30:37  gouriano
  100. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.6
  101. *
  102. * Revision 1.6  2004/02/19 17:04:41  thiessen
  103. * remove cn3d/ from include paths; add pragma to disable annoying msvc warning
  104. *
  105. * Revision 1.5  2003/02/03 19:20:00  thiessen
  106. * format changes: move CVS Log to bottom of file, remove std:: from .cpp files, and use new diagnostic macros
  107. *
  108. * Revision 1.4  2002/08/15 22:13:12  thiessen
  109. * update for wx2.3.2+ only; add structure pick dialog; fix MultitextDialog bug
  110. *
  111. * Revision 1.3  2001/08/06 20:22:48  thiessen
  112. * add preferences dialog ; make sure OnCloseWindow get wxCloseEvent
  113. *
  114. * Revision 1.2  2001/07/04 19:38:55  thiessen
  115. * finish user annotation system
  116. *
  117. * Revision 1.1  2001/06/29 18:12:52  thiessen
  118. * initial (incomplete) user annotation system
  119. *
  120. */