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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: gldrawscale.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:49:52  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_OPENGL___GLDRAWSCALE__HPP
  10. #define GUI_OPENGL___GLDRAWSCALE__HPP
  11. /*  $Id: gldrawscale.hpp,v 1000.1 2004/06/01 19:49:52 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. * Author: Philip Johnson
  37. *
  38. * File Description: 'gldrawscale' -- contains class to nicely draw a scale
  39. * on screen (ie. sequence coordinates).
  40. *
  41. * ---------------------------------------------------------------------------
  42. */
  43. #include <corelib/ncbistd.hpp>
  44. #include <gui/gui.hpp>
  45. /** @addtogroup GUI_OPENGL
  46.  *
  47.  * @{
  48.  */
  49. BEGIN_NCBI_SCOPE
  50. class IGlFont;
  51. //class CGlDrawScale implements a routine to nicely draw a scale (numbers +
  52. //tickmarks) for a generic coordinate system.  Intervals between marked
  53. //numbers are normalized and, depending on the options supplied at
  54. //construction, the numbers are abbreviated using the SI symbols (ie, 'k'
  55. //== 10^3).
  56. class NCBI_GUIOPENGL_EXPORT CGlDrawScale {
  57. public:
  58.     class CCoordConverter {
  59.     public:
  60.         virtual ~CCoordConverter(void) {};
  61.         virtual int ToGl (int) const = 0;
  62.     };
  63.     enum EAbbrevType {
  64.         eNoAbbrev,
  65.         eCommas,
  66.         eUseSISymbols,
  67.         eUseScientificNotation
  68.     };
  69.     CGlDrawScale(IGlFont &font, EAbbrevType useAbbrev);
  70.     //PRE : conversion routine to be used when going from user coordinates
  71.     //to modelview coordinates
  72.     //POST: conversion routine set
  73.     void SetConverter(CCoordConverter *cc) {
  74.         m_CoordConverter = cc;
  75.     };
  76.     //PRE : width in pixels; left-most user coordinate, right-most user
  77.     //coordinate
  78.     //POST: if converter not set, scale drawn in the following box: left,
  79.     //-0.5, right, [font-height]; if it is set, scale drawn in: cnv(left),
  80.     //-0.5, cnv(right), [font-height]
  81.     void Draw(int width, int left, int right) const;
  82. private:
  83.     unsigned int x_Exp10(unsigned int x) const;
  84.     void x_Normalize(int &num) const;
  85.     string x_GenerateLabel(int num, EAbbrevType type) const;
  86.     unsigned int x_CalcMaxLabelSize(int left, int right, 
  87.                                     EAbbrevType abbrev) const;
  88.     IGlFont &m_Font;
  89.     EAbbrevType m_UseAbbrev;
  90.     CCoordConverter *m_CoordConverter;
  91.     float m_MaxDigitWidth;
  92.     float m_MaxSIPrefixWidth;
  93.     static const char* sm_SISymbols;
  94. };
  95. END_NCBI_SCOPE
  96. /* @} */
  97. /*===========================================================================
  98. * $Log: gldrawscale.hpp,v $
  99. * Revision 1000.1  2004/06/01 19:49:52  gouriano
  100. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  101. *
  102. * Revision 1.7  2004/05/11 18:54:22  dicuccio
  103. * Added doxygne modules info
  104. *
  105. * Revision 1.6  2004/05/03 12:43:59  dicuccio
  106. * Added #include for gui/gui.hpp
  107. *
  108. * Revision 1.5  2003/09/29 15:20:07  dicuccio
  109. * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp
  110. *
  111. * Revision 1.4  2003/08/18 19:25:14  dicuccio
  112. * Changed CGlFont to IGlFont
  113. *
  114. * Revision 1.3  2003/08/11 19:24:58  johnson
  115. * removed 1:1 correspondence between user coordinates & open gl world
  116. * coordinates (via CCoordConverter class); allow lefthand user coordinate to
  117. * be greater than righthand user coordinate
  118. *
  119. * Revision 1.2  2003/07/16 20:57:04  johnson
  120. * protect against multiple inclusion
  121. *
  122. * Revision 1.1  2003/07/01 15:44:16  johnson
  123. * initial revision
  124. *
  125. * ===========================================================================*/
  126. #endif  // GUI_OPENGL___GLDRAWSCALE__HPP