|
NCBI Home IEB Home C Toolkit docs C++ Toolkit source browser C Toolkit source browser (2) |
NCBI C Toolkit Cross ReferenceC/desktop/gxydraw.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: gxydraw.h
27 *
28 * Author(s): John Kuzio
29 *
30 * Version Creation Date: 98-01-01
31 *
32 * $Revision: 6.3 $
33 *
34 * File Description: sentinel dot plot header
35 *
36 * Modifications:
37 * --------------------------------------------------------------------------
38 * Date Name Description of modification
39 * --------------------------------------------------------------------------
40 * $Log: gxydraw.h,v $
41 * Revision 6.3 1998/09/16 19:00:38 kuzio
42 * cvs logs
43 *
44 * ==========================================================================
45 */
46
47 #ifndef _GXYDRAW_
48 #define _GXYDRAW_
49
50 #include <picture.h>
51 #include <objseq.h>
52
53 #ifdef __cplusplus
54 extern "C" {
55 #endif
56
57 typedef struct graphxysentdata {
58 Boolean flagIsGUI;
59 SegmenT seg;
60 PrimitivE snt;
61 Int4 linenumber, dotcutoff, xaxiscount, yaxiscount;
62 Int4 xscale, yscale;
63 Int4Ptr endpointarray, endpointvalues;
64 Uint1Ptr color;
65 } GraphXYSentData, PNTR GraphXYSentPtr;
66
67 extern Int4 ScalePlot (Int4 xlen, Int4 ylen, Int4 maxlen);
68
69 extern SegmenT DotXYPlot (BioseqPtr bspT, BioseqPtr bspP, Int4 cutoff,
70 Int4 xscale, Int4 yscale, SegmenT seg,
71 Boolean flagLabels);
72 extern SegmenT XYPlot (BioseqPtr bspT, BioseqPtr bspP, SeqAlignPtr sap,
73 Int4 xscale, Int4 yscale, Uint1Ptr color, SegmenT seg,
74 Boolean flagLabels);
75
76 #ifdef __cplusplus
77 }
78 #endif
79
80 #endif
81 |
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more information. |