|
NCBI Home IEB Home C Toolkit docs C++ Toolkit source browser C Toolkit source browser (2) |
NCBI C Toolkit Cross ReferenceC/desktop/gtrdraw.h |
source navigation diff markup identifier search freetext search file search |
1 /*
2 * ===========================================================================
3 *
4 * PUBLIC DOMAIN NOTICE
5 * National Center for Biotechnology Information
6 *
7 * This software/database is a "United States Government Work" under the
8 * terms of the United States Copyright Act. It was written as part of
9 * the author's official duties as a United States Government employee and
10 * thus cannot be copyrighted. This software/database is freely available
11 * to the public for use. The National Library of Medicine and the U.S.
12 * Government have not placed any restriction on its use or reproduction.
13 *
14 * Although all reasonable efforts have been taken to ensure the accuracy
15 * and reliability of the software and data, the NLM and the U.S.
16 * Government do not and cannot warrant the performance or results that
17 * may be obtained by using this software or data. The NLM and the U.S.
18 * Government disclaim all warranties, express or implied, including
19 * warranties of performance, merchantability or fitness for any particular
20 * purpose.
21 *
22 * Please cite the author in any work or product based on this material.
23 *
24 * ===========================================================================
25 *
26 * File Name: gtrdraw.h
27 *
28 * Author(s): John Kuzio
29 *
30 * Version Creation Date: 98-01-01
31 *
32 * $Revision: 6.2 $
33 *
34 * File Description: sentinel trees header
35 *
36 * Modifications:
37 * --------------------------------------------------------------------------
38 * Date Name Description of modification
39 * --------------------------------------------------------------------------
40 * $Log: gtrdraw.h,v $
41 * Revision 6.2 1998/09/16 19:00:37 kuzio
42 * cvs logs
43 *
44 * ==========================================================================
45 */
46
47 #ifndef _GTRDRAW_
48 #define _GTRDRAW_
49
50 #include <picture.h>
51 #include <urktree.h>
52
53 #ifdef __cplusplus
54 extern "C" {
55 #endif
56
57 typedef struct graphtreesentdata {
58 Boolean flagIsGUI;
59 SegmenT seg;
60 PrimitivE snt;
61 Int4Ptr epa;
62 ValNodePtr vnpnames;
63 Int2 fontsize;
64 Boolean flagLabelNodes;
65 Int4Ptr offsetX;
66 Int4Ptr offsetY;
67 Int4 numval;
68 } GraphTreeSentData, PNTR GraphTreeSentPtr;
69
70 extern SegmenT DrawTree (TreeNodePtr ptrNode);
71
72 #ifdef __cplusplus
73 }
74 #endif
75
76 #endif
77 |
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more information. |