~ubuntu-branches/ubuntu/oneiric/ncbi-tools6/oneiric

« back to all changes in this revision

Viewing changes to vibrant/document.h

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2008-07-14 19:43:15 UTC
  • mfrom: (2.1.12 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080714194315-ed44u9ek7txva2rz
Tags: 6.1.20080302-3
tools/readdb.c: enable madvise()-based code on all glibc (hence all
Debian) systems, not just Linux.  (Closes: #490437.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
*   
30
30
* Version Creation Date: 4/12/93
31
31
*
32
 
* $Revision: 6.3 $
 
32
* $Revision: 6.4 $
33
33
*
34
34
* File Description:  Converts fielded text into final report in a document
35
35
*
40
40
*
41
41
*
42
42
* $Log: document.h,v $
 
43
* Revision 6.4  2008/02/13 18:52:08  bollin
 
44
* Added MapDocPointEx, which allows you to prefer the first matching column to
 
45
* the last matching column.
 
46
*
43
47
* Revision 6.3  2006/09/27 18:30:00  kans
44
48
* support for Int4 scroll bars for switching between text and doc views in Sequin (CB)
45
49
*
165
169
extern Nlm_CharPtr Nlm_GetDocText PROTO((Nlm_DoC d, Nlm_Int2 item, Nlm_Int2 row, Nlm_Int2 col));
166
170
extern void    Nlm_MapDocPoint    PROTO((Nlm_DoC d, Nlm_PoinT pt, Nlm_Int2Ptr item, Nlm_Int2Ptr row,
167
171
                                  Nlm_Int2Ptr col, Nlm_RectPtr rct));
 
172
extern void    Nlm_MapDocPointEx  PROTO((Nlm_DoC d, Nlm_PoinT pt, Nlm_Int2Ptr item, Nlm_Int2Ptr row, 
 
173
                                  Nlm_Int2Ptr col, Nlm_RectPtr rct, Nlm_Boolean prefer_first_match_col));
 
174
 
168
175
extern void    Nlm_PrintDocument  PROTO((Nlm_DoC d));
169
176
extern void    Nlm_SaveDocument   PROTO((Nlm_DoC d, FILE *f));
170
177
extern void    Nlm_SaveDocumentItem PROTO((Nlm_DoC d, FILE *f, Nlm_Int2 item));
276
283
#define SetDocData Nlm_SetDocData
277
284
#define GetDocData Nlm_GetDocData
278
285
#define GetDocText Nlm_GetDocText
 
286
#define MapDocPointEx Nlm_MapDocPointEx
279
287
#define MapDocPoint Nlm_MapDocPoint
280
288
#define PrintDocument Nlm_PrintDocument
281
289
#define SaveDocument Nlm_SaveDocument