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

Diff for /mandoc/term_ascii.c between version 1.3 and 1.12

version 1.3, 2010/06/09 08:07:13 version 1.12, 2011/01/25 17:32:04
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2010 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 26 
Line 26 
 #include <stdlib.h>  #include <stdlib.h>
 #include <unistd.h>  #include <unistd.h>
   
   #include "mandoc.h"
 #include "out.h"  #include "out.h"
 #include "term.h"  #include "term.h"
 #include "main.h"  #include "main.h"
   
 static  void              ascii_endline(struct termp *);  static  double            ascii_hspan(const struct termp *,
 static  void              ascii_letter(struct termp *, char);                                  const struct roffsu *);
 static  void              ascii_begin(struct termp *);  static  size_t            ascii_width(const struct termp *, char);
 static  void              ascii_advance(struct termp *, size_t);  static  void              ascii_advance(struct termp *, size_t);
   static  void              ascii_begin(struct termp *);
 static  void              ascii_end(struct termp *);  static  void              ascii_end(struct termp *);
   static  void              ascii_endline(struct termp *);
   static  void              ascii_letter(struct termp *, char);
   
   
 void *  void *
Line 44  ascii_alloc(char *outopts)
Line 48  ascii_alloc(char *outopts)
         const char      *toks[2];          const char      *toks[2];
         char            *v;          char            *v;
   
         if (NULL == (p = term_alloc(TERMENC_ASCII)))          p = term_alloc(TERMENC_ASCII);
                 return(NULL);  
   
         p->type = TERMTYPE_CHAR;          p->tabwidth = 5;
         p->letter = ascii_letter;          p->defrmargin = 78;
   
           p->advance = ascii_advance;
         p->begin = ascii_begin;          p->begin = ascii_begin;
         p->end = ascii_end;          p->end = ascii_end;
         p->endline = ascii_endline;          p->endline = ascii_endline;
         p->advance = ascii_advance;          p->hspan = ascii_hspan;
           p->letter = ascii_letter;
           p->type = TERMTYPE_CHAR;
           p->width = ascii_width;
   
         toks[0] = "width";          toks[0] = "width";
         toks[1] = NULL;          toks[1] = NULL;
Line 74  ascii_alloc(char *outopts)
Line 82  ascii_alloc(char *outopts)
 }  }
   
   
   /* ARGSUSED */
   static size_t
   ascii_width(const struct termp *p, char c)
   {
   
           return(1);
   }
   
   
 void  void
 ascii_free(void *arg)  ascii_free(void *arg)
 {  {
Line 87  static void
Line 104  static void
 ascii_letter(struct termp *p, char c)  ascii_letter(struct termp *p, char c)
 {  {
   
           /* LINTED */
         putchar(c);          putchar(c);
 }  }
   
Line 126  ascii_advance(struct termp *p, size_t len)
Line 144  ascii_advance(struct termp *p, size_t len)
         for (i = 0; i < len; i++)          for (i = 0; i < len; i++)
                 putchar(' ');                  putchar(' ');
 }  }
   
   
   /* ARGSUSED */
   static double
   ascii_hspan(const struct termp *p, const struct roffsu *su)
   {
           double           r;
   
           /*
            * Approximate based on character width.  These are generated
            * entirely by eyeballing the screen, but appear to be correct.
            */
   
           switch (su->unit) {
           case (SCALE_CM):
                   r = 4 * su->scale;
                   break;
           case (SCALE_IN):
                   r = 10 * su->scale;
                   break;
           case (SCALE_PC):
                   r = (10 * su->scale) / 6;
                   break;
           case (SCALE_PT):
                   r = (10 * su->scale) / 72;
                   break;
           case (SCALE_MM):
                   r = su->scale / 1000;
                   break;
           case (SCALE_VS):
                   r = su->scale * 2 - 1;
                   break;
           default:
                   r = su->scale;
                   break;
           }
   
           return(r);
   }
   

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.12

CVSweb