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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: phylo_tree_scheme.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:11:53  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.11
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: phylo_tree_scheme.cpp,v 1000.1 2004/06/01 21:11:53 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/opengl/glfont.hpp>
  41. #include <gui/types.hpp>
  42. #include <FL/Fl.H>
  43. #include <gui/widgets/phylo_tree/phylo_tree_scheme.hpp>
  44. BEGIN_NCBI_SCOPE
  45. void CPhyloTreeScheme :: x_DefaultScheme(void)
  46. {
  47.     m_TopMargin = m_BottomMargin = m_LeftMargin =  30;
  48.     m_RightMargin = 120;
  49.     m_LineWidth = 1;
  50.     m_NodeSize = 3;
  51.     m_BgColor.Set(1.0f, 1.0f, 1.0f, 1.0f);
  52.     
  53.     m_LineColor.Set(0.7f, 0.7f, 0.7f, 0.9f);
  54.     m_LineHiColor.Set(0.4f, 0.4f, 0.4f, 0.9f);
  55.     
  56.     m_LineSelColor.Set(0.3f, 0.3f, 1.0f, 0.9f);
  57.     m_LineSelHiColor.Set (0.0f, 0.0f, 0.7f, 0.9f);
  58.     m_NodeHiColor.Set   (0.0f, 0.4f, 0.0f, 0.9f);
  59.     m_NodeColor.Set (0.1f, 0.5f, 0.1f, 0.9f);
  60.     m_NodeSelColor.Set(0.8f, 0.1f, 0.1f, 0.9f);  
  61.     m_LabelColor.Set(0.0f, 0.0f, 0.0f, 1.0f);
  62.     m_LabelSelColor.Set(0.0f, 0.0f, 0.8f, 1.0f);
  63.     m_LabelSelBgColor.Set(0.0f, 0.0f, 1.0f, 1.0f); 
  64. }
  65. void CPhyloTreeScheme :: x_CompactScheme(void)
  66. {
  67.     m_TopMargin = m_BottomMargin = m_LeftMargin =  30;
  68.     m_RightMargin = 100;
  69.     m_LineWidth = 0;
  70.     m_NodeSize = 0;
  71.     m_BgColor.Set(1.0f, 1.0f, 1.0f, 1.0f);
  72.     
  73.     m_LineColor.Set(0.1f, 0.1f, 1.0f, 0.9f);
  74.     m_LineHiColor.Set(0.8f, 0.9f, 1.0f, 0.9f);
  75.     
  76.     m_LineSelColor.Set(0.8f, 0.8f, 0.0f, 0.9f);
  77.     m_LineSelHiColor.Set (1.0f, 1.0f, 0.0f, 0.9f);
  78.     m_NodeHiColor.Set   (0.0f, 0.4f, 0.0f, 0.9f);
  79.     m_NodeColor.Set (0.0f, 0.6f, 0.0f, 0.9f);
  80.     m_NodeSelColor.Set(0.7f, 0.2f, 0.2f, 0.9f);    
  81.     m_LabelColor.Set(0.0f, 0.0f, 0.0f, 1.0f);
  82.     m_LabelSelColor.Set(1.0f, 1.0f, 1.0f, 1.0f);
  83.     m_LabelSelBgColor.Set(0.0f, 0.0f, 1.0f, 1.0f);
  84. }
  85. END_NCBI_SCOPE
  86. /*
  87.  * ===========================================================================
  88.  * $Log: phylo_tree_scheme.cpp,v $
  89.  * Revision 1000.1  2004/06/01 21:11:53  gouriano
  90.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.11
  91.  *
  92.  * Revision 1.11  2004/05/21 22:27:54  gorelenk
  93.  * Added PCH ncbi_pch.hpp
  94.  *
  95.  * Revision 1.10  2004/05/11 20:53:12  tereshko
  96.  * Work in progress
  97.  *
  98.  * Revision 1.9  2004/05/06 19:42:21  tereshko
  99.  * Rendering improvements
  100.  *
  101.  * Revision 1.8  2004/04/20 21:57:19  tereshko
  102.  * Major rendering, labeling and performance improvements
  103.  *
  104.  * Revision 1.7  2004/04/14 20:34:00  tereshko
  105.  * Fixed labels truncation
  106.  *
  107.  * Revision 1.6  2004/04/13 20:28:53  tereshko
  108.  * Numerous renderers improvements
  109.  *
  110.  * Revision 1.5  2004/03/30 17:11:44  tereshko
  111.  * Added support for events broadcasting
  112.  *
  113.  * Revision 1.4  2004/02/24 21:44:10  tereshko
  114.  * Slightly changed scheme for rendering joints
  115.  *
  116.  * Revision 1.3  2004/02/23 22:52:04  tereshko
  117.  * Added font color attributes
  118.  *
  119.  * Revision 1.2  2004/02/17 23:44:41  tereshko
  120.  * Changes due to integration into viewer
  121.  *
  122.  * Revision 1.1  2004/02/13 17:05:13  tereshko
  123.  * Phylogenetic Tree Widget initial revision
  124.  *
  125.  * ===========================================================================
  126.  */