- /*
- * ===========================================================================
- * PRODUCTION $Log: phylo_tree_scheme.hpp,v $
- * PRODUCTION Revision 1000.1 2004/06/01 19:53:04 gouriano
- * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
- * PRODUCTION
- * ===========================================================================
- */
- #ifndef __GUI_WIDGETS_PHYLO_TREE___PHYLO_TREE_SCHEME__HPP
- #define __GUI_WIDGETS_PHYLO_TREE___PHYLO_TREE_SCHEME__HPP
- /* $Id: phylo_tree_scheme.hpp,v 1000.1 2004/06/01 19:53:04 gouriano Exp $
- * ===========================================================================
- *
- * PUBLIC DOMAIN NOTICE
- * National Center for Biotechnology Information
- *
- * This software/database is a "United States Government Work" under the
- * terms of the United States Copyright Act. It was written as part of
- * the author's official duties as a United States Government employee and
- * thus cannot be copyrighted. This software/database is freely available
- * to the public for use. The National Library of Medicine and the U.S.
- * Government have not placed any restriction on its use or reproduction.
- *
- * Although all reasonable efforts have been taken to ensure the accuracy
- * and reliability of the software and data, the NLM and the U.S.
- * Government do not and cannot warrant the performance or results that
- * may be obtained by using this software or data. The NLM and the U.S.
- * Government disclaim all warranties, express or implied, including
- * warranties of performance, merchantability or fitness for any particular
- * purpose.
- *
- * Please cite the author in any work or product based on this material.
- *
- * ===========================================================================
- *
- * Authors: Vladimir Tereshkov
- *
- * File Description:
- *
- */
- BEGIN_NCBI_SCOPE
- #include <gui/opengl/glcolor.hpp>
- class CPhyloTreeScheme {
- protected:
- // margins
- GLdouble m_TopMargin;
- GLdouble m_BottomMargin;
- GLdouble m_LeftMargin;
- GLdouble m_RightMargin;
- GLdouble m_LineWidth;
- GLdouble m_NodeSize;
- CGlColor m_BgColor;
- CGlColor m_LineColor;
- CGlColor m_LineHiColor;
- CGlColor m_LineSelColor;
- CGlColor m_LineSelHiColor;
- CGlColor m_NodeColor;
- CGlColor m_NodeHiColor;
- CGlColor m_NodeSelColor;
- CGlColor m_NodeSelHiColor;
- CGlColor m_LabelColor;
- CGlColor m_LabelSelColor;
- CGlColor m_LabelSelBgColor;
- void x_DefaultScheme(void);
- void x_CompactScheme(void);
- public:
- CPhyloTreeScheme(void)
- {
- x_DefaultScheme();
- //x_CompactScheme();
- }
- ~CPhyloTreeScheme(void)
- {
- }
- };
- END_NCBI_SCOPE
- /*
- * ===========================================================================
- * $Log: phylo_tree_scheme.hpp,v $
- * Revision 1000.1 2004/06/01 19:53:04 gouriano
- * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
- *
- * Revision 1.4 2004/04/20 21:57:37 tereshko
- * Major rendering, labeling and performance improvements
- *
- * Revision 1.3 2004/03/30 17:11:08 tereshko
- * Added support for events broadcasting
- *
- * Revision 1.2 2004/02/23 22:51:43 tereshko
- * Added font color attributes
- *
- * Revision 1.1 2004/02/13 17:00:06 tereshko
- * Phylogenetic Tree Widget initial revision
- *
- * ===========================================================================
- */
- #endif // __GUI_WIDGETS_PHYLO_TREE___PHYLO_TREE_SCHEME__HPP