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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: phylo_tree_label.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/02 20:24:31  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: phylo_tree_label.cpp,v 1000.1 2004/06/02 20:24:31 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:  Vladimir Tereshkov
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/widgets/phylo_tree/phylo_tree_label.hpp>
  41. BEGIN_NCBI_SCOPE
  42. //////////////////////////////////////////////////////////////////////
  43. // Construction/Destruction
  44. //////////////////////////////////////////////////////////////////////
  45. CPhyloTreeLabel::CPhyloTreeLabel()
  46. {
  47.     x_CreateFonts();
  48. }
  49. CPhyloTreeLabel::~CPhyloTreeLabel()
  50. {
  51.     x_DestroyFonts();
  52. }
  53. // initialization of fonts
  54. void CPhyloTreeLabel::x_CreateFonts(void)
  55. {
  56.     // m_Fonts.push_back(new CGlBitmapFont(CGlBitmapFont::eHelvetica6));
  57.     m_Fonts.push_back(new CGlBitmapFont(CGlBitmapFont::eHelvetica8));
  58.     m_Fonts.push_back(new CGlBitmapFont(CGlBitmapFont::eHelvetica10));
  59.     m_Fonts.push_back(new CGlBitmapFont(CGlBitmapFont::eHelvetica12));
  60.     m_Fonts.push_back(new CGlBitmapFont(CGlBitmapFont::eHelvetica14));
  61.     m_Fonts.push_back(new CGlBitmapFont(CGlBitmapFont::eHelvetica18));
  62.     m_Fonts.push_back(new CGlBitmapFont(CGlBitmapFont::eHelvetica20));    
  63.     m_Fonts.push_back(new CGlBitmapFont(CGlBitmapFont::eHelvetica24));    
  64. }
  65. // deinitialization of fonts
  66. void CPhyloTreeLabel::x_DestroyFonts(void)
  67. {
  68.     for (vector <CGlBitmapFont*> :: iterator it = m_Fonts.begin(); it!=m_Fonts.end(); it++){
  69.         delete *it;
  70.     }
  71.     m_Fonts.clear();
  72. }
  73. CGlBitmapFont * CPhyloTreeLabel::x_BestFont(int size)
  74. {    
  75.     CGlBitmapFont * bestFont = NULL;
  76.     
  77.     for (vector <CGlBitmapFont*> :: iterator it = m_Fonts.begin(); it!=m_Fonts.end(); it++){
  78.        if (size > (*it)->TextHeight()) bestFont = *it;
  79.     }
  80.     return bestFont ? bestFont : *m_Fonts.begin();
  81. }
  82. CGlRect<int> CPhyloTreeLabel::GetRect(CGlPane& pane, CGlPoint<int> & pos, string text, bool bLeft)
  83. {
  84.     CGlRect<int>    boundBox;
  85.     CGlBitmapFont * bestFont = x_BestFont(pane.ProjectX(pane.GetVisibleRect().Left()+m_NodeSize*2));
  86.     Int4 offset = 10;
  87.     
  88.     double text_h = bestFont->GetMetric(CGlBitmapFont::eMetric_CharHeight);
  89.     double text_w = bestFont->TextWidth(text.c_str());
  90.       
  91.     boundBox.Init(pane.UnProjectX(pane.ProjectX(pos.X() + ((!bLeft)?offset:-offset)) - text_w),
  92.                   pane.UnProjectY(pane.ProjectY(pos.Y()) - text_h/2),
  93.                   pane.UnProjectX(pane.ProjectX(pos.X() + ((!bLeft)?offset:-offset)) + text_w),
  94.                   pane.UnProjectY(pane.ProjectY(pos.Y()) + text_h/2));  
  95.                 
  96.     return boundBox;
  97. }
  98. void CPhyloTreeLabel::Render(CGlPane& pane, CGlPoint<int> & pos, string text, bool bSelected, bool bLeft)
  99. {    
  100.     
  101.     CGlBitmapFont * bestFont = x_BestFont(pane.ProjectX(pane.GetVisibleRect().Left()+m_NodeSize*2));
  102.     glColor4fv((bSelected?m_LabelSelColor:m_LabelColor).GetGlColor());
  103.     
  104.     Int4 offset = 10;
  105.     
  106.     double text_h = bestFont->GetMetric(CGlBitmapFont::eMetric_CharHeight);
  107.     double text_w = bestFont->TextWidth(text.c_str());
  108.     
  109.     double out_y  = pane.UnProjectY(pane.ProjectY(pos.Y()) - text_h/2);
  110.     double out_x  = pane.UnProjectX(pane.ProjectX(pos.X()) - text_w);  
  111.         
  112.     double space_x =   pane.ProjectX(m_RightMargin + pane.GetVisibleRect().Left() - offset - 1);
  113.     
  114.     bestFont->TextOut(((!bLeft)? pos.X() + offset: out_x - offset), 
  115.                           out_y,                           
  116.                           space_x,
  117.                           text_h,
  118.                           text.c_str(),
  119.                           FL_ALIGN_LEFT);                               
  120. }
  121. END_NCBI_SCOPE
  122. /*
  123.  * ===========================================================================
  124.  * $Log: phylo_tree_label.cpp,v $
  125.  * Revision 1000.1  2004/06/02 20:24:31  gouriano
  126.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  127.  *
  128.  * Revision 1.5  2004/06/02 16:39:38  tereshko
  129.  * Added font
  130.  *
  131.  * Revision 1.4  2004/05/21 22:27:54  gorelenk
  132.  * Added PCH ncbi_pch.hpp
  133.  *
  134.  * Revision 1.3  2004/05/11 20:53:12  tereshko
  135.  * Work in progress
  136.  *
  137.  * Revision 1.2  2004/05/06 19:42:21  tereshko
  138.  * Rendering improvements
  139.  *
  140.  * Revision 1.1  2004/04/20 21:56:18  tereshko
  141.  * Initial revision
  142.  *
  143.  * ===========================================================================
  144.  */