[BACK]Return to term.h CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/term.h between version 1.58 and 1.65

version 1.58, 2010/06/07 20:57:09 version 1.65, 2010/06/25 18:53:14
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 40  enum termfont {
Line 40  enum termfont {
   
 typedef void    (*term_margin)(struct termp *, const void *);  typedef void    (*term_margin)(struct termp *, const void *);
   
   struct  termp_ps {
           int               psstate;      /* state of ps output */
   #define PS_INLINE        (1 << 0)       /* we're in a word */
   #define PS_MARGINS       (1 << 1)       /* we're in the margins */
           size_t            pscol;        /* visible column */
           size_t            psrow;        /* visible row */
           char             *psmarg;       /* margin buf */
           size_t            psmargsz;     /* margin buf size */
           size_t            psmargcur;    /* current pos in margin buf */
           size_t            pspage;       /* current page */
           char              last;         /* character buffer */
           enum termfont     lastf;        /* last set font */
   };
   
 struct  termp {  struct  termp {
         enum termtype     type;          enum termtype     type;
         size_t            defrmargin;   /* Right margin of the device.. */          size_t            defrmargin;   /* Right margin of the device.. */
Line 72  struct termp {
Line 86  struct termp {
         int               fonti;        /* Index of font stack. */          int               fonti;        /* Index of font stack. */
         term_margin       headf;        /* invoked to print head */          term_margin       headf;        /* invoked to print head */
         term_margin       footf;        /* invoked to print foot */          term_margin       footf;        /* invoked to print foot */
           void            (*letter)(struct termp *, char);
           void            (*begin)(struct termp *);
           void            (*end)(struct termp *);
           void            (*endline)(struct termp *);
           void            (*advance)(struct termp *, size_t);
           size_t          (*width)(const struct termp *, char);
         const void       *argf;         /* arg for headf/footf */          const void       *argf;         /* arg for headf/footf */
         int               psstate;      /* -Tps: state of ps output */          union {
 #define PS_INLINE        (1 << 0)                  struct termp_ps ps;
 #define PS_MARGINS       (1 << 1)          } engine;
         size_t            pscol;        /* -Tps: visible column */  
         size_t            psrow;        /* -Tps: visible row */  
         size_t            pspage;       /* -Tps: current page */  
 };  };
   
   struct termp     *term_alloc(enum termenc);
   void              term_free(struct termp *);
 void              term_newln(struct termp *);  void              term_newln(struct termp *);
 void              term_vspace(struct termp *);  void              term_vspace(struct termp *);
 void              term_word(struct termp *, const char *);  void              term_word(struct termp *, const char *);
Line 89  void    term_begin(struct termp *, term_margin, 
Line 108  void    term_begin(struct termp *, term_margin, 
                         term_margin, const void *);                          term_margin, const void *);
 void              term_end(struct termp *);  void              term_end(struct termp *);
   
 size_t            term_hspan(const struct roffsu *);  size_t            term_hspan(const struct termp *,
 size_t            term_vspan(const struct roffsu *);                          const struct roffsu *);
   size_t            term_vspan(const struct termp *,
                           const struct roffsu *);
   size_t            term_strlen(const struct termp *, const char *);
   size_t            term_len(const struct termp *, size_t);
   
 enum termfont     term_fonttop(struct termp *);  enum termfont     term_fonttop(struct termp *);
 const void       *term_fontq(struct termp *);  const void       *term_fontq(struct termp *);

Legend:
Removed from v.1.58  
changed lines
  Added in v.1.65

CVSweb