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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: style_dialog.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 18:29:41  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.13
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: style_dialog.hpp,v 1000.2 2004/06/01 18:29:41 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 setting styles
  38. *
  39. * ===========================================================================
  40. */
  41. #ifndef CN3D_STYLE_DIALOG__HPP
  42. #define CN3D_STYLE_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 <string>
  52. #include "style_manager.hpp"
  53. #include "cn3d_tools.hpp"
  54. BEGIN_SCOPE(Cn3D)
  55. class StructureSet;
  56. class FloatingPointSpinCtrl;
  57. class StyleDialog : public wxDialog
  58. {
  59. public:
  60.     StyleDialog(wxWindow* parent, StyleSettings *settingsToEdit, const StructureSet *set);
  61.     ~StyleDialog(void);
  62.     // set the StyleSettings from values in the panel; returns true if all values are valid
  63.     bool GetValues(StyleSettings *settings);
  64.     // set the controls according to the given StyleSettings
  65.     bool SetControls(const StyleSettings& settings);
  66. private:
  67.     StyleSettings *editedSettings;
  68.     const StyleSettings originalSettings;
  69.     const StructureSet *structureSet;
  70.     bool changedSinceApply, changedEver;
  71.     FloatingPointSpinCtrl *fpSpaceFill, *fpBallRadius, *fpStickRadius, *fpTubeRadius,
  72.         *fpTubeWormRadius, *fpHelixRadius, *fpStrandWidth, *fpStrandThickness;
  73.     bool HandleColorButton(int bID);
  74.     static TypeStringAssociator < StyleSettings::eBackboneType > BackboneTypeStrings;
  75.     static TypeStringAssociator < StyleSettings::eDrawingStyle > DrawingStyleStrings;
  76.     static TypeStringAssociator < StyleSettings::eColorScheme > ColorSchemeStrings;
  77.     static TypeStringAssociator < StyleSettings::eLabelType > LabelTypeStrings;
  78.     static TypeStringAssociator < StyleSettings::eNumberType > NumberTypeStrings;
  79.     static void SetupStyleStrings(void);
  80.     bool GetBackboneStyle(StyleSettings::BackboneStyle *bbStyle,
  81.         int showID, int renderID, int colorID, int userID);
  82.     bool SetBackboneStyle(const StyleSettings::BackboneStyle& bbStyle,
  83.         int showID, int renderID, int colorID, int userID);
  84.     bool GetGeneralStyle(StyleSettings::GeneralStyle *gStyle,
  85.         int showID, int renderID, int colorID, int userID);
  86.     bool SetGeneralStyle(const StyleSettings::GeneralStyle& gStyle,
  87.         int showID, int renderID, int colorID, int userID);
  88.     bool GetLabelStyle(StyleSettings::LabelStyle *lStyle,
  89.         int spacingID, int typeID, int numberingID, int terminiID, int whiteID);
  90.     bool SetLabelStyle(const StyleSettings::LabelStyle& lStyle,
  91.         int spacingID, int typeID, int numberingID, int terminiID, int whiteID);
  92.     void OnCloseWindow(wxCloseEvent& event);
  93.     void OnButton(wxCommandEvent& event);
  94.     void OnChange(wxCommandEvent& event);
  95.     DECLARE_EVENT_TABLE()
  96. };
  97. END_SCOPE(Cn3D)
  98. #endif // CN3D_STYLE_DIALOG__HPP
  99. /*
  100. * ---------------------------------------------------------------------------
  101. * $Log: style_dialog.hpp,v $
  102. * Revision 1000.2  2004/06/01 18:29:41  gouriano
  103. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.13
  104. *
  105. * Revision 1.13  2004/05/28 21:01:45  thiessen
  106. * namespace/typename fixes for GCC 3.4
  107. *
  108. * Revision 1.12  2004/02/19 17:05:18  thiessen
  109. * remove cn3d/ from include paths; add pragma to disable annoying msvc warning
  110. *
  111. * Revision 1.11  2003/02/03 19:20:07  thiessen
  112. * format changes: move CVS Log to bottom of file, remove std:: from .cpp files, and use new diagnostic macros
  113. *
  114. * Revision 1.10  2002/08/15 22:13:17  thiessen
  115. * update for wx2.3.2+ only; add structure pick dialog; fix MultitextDialog bug
  116. *
  117. * Revision 1.9  2002/05/17 19:09:27  thiessen
  118. * undo spin button event workaround for wxmac
  119. *
  120. * Revision 1.8  2002/05/16 18:46:10  thiessen
  121. * Mac fixes
  122. *
  123. * Revision 1.7  2002/04/27 16:32:15  thiessen
  124. * fix small leaks/bugs found by BoundsChecker
  125. *
  126. * Revision 1.6  2002/04/21 12:21:23  thiessen
  127. * minor fixes for AIX
  128. *
  129. * Revision 1.5  2001/08/21 01:10:13  thiessen
  130. * add labeling
  131. *
  132. * Revision 1.4  2001/08/06 20:22:48  thiessen
  133. * add preferences dialog ; make sure OnCloseWindow get wxCloseEvent
  134. *
  135. * Revision 1.3  2001/06/08 14:46:47  thiessen
  136. * fully functional (modal) render settings panel
  137. *
  138. * Revision 1.2  2001/06/07 19:04:50  thiessen
  139. * functional (although incomplete) render settings panel
  140. *
  141. * Revision 1.1  2001/05/31 18:46:28  thiessen
  142. * add preliminary style dialog; remove LIST_TYPE; add thread single and delete all; misc tweaks
  143. *
  144. */