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

Diff for /mandoc/man_term.c between version 1.35 and 1.38

version 1.35, 2009/10/08 23:00:15 version 1.38, 2009/10/18 11:52:18
Line 23 
Line 23 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
 #include "term.h"  
 #include "man.h"  #include "man.h"
   #include "term.h"
   #include "chars.h"
   #include "main.h"
   #include "out.h"
   
 #define INDENT            7  #define INDENT            7
 #define HALFINDENT        3  #define HALFINDENT        3
Line 136  static void    print_foot(struct termp *, 
Line 139  static void    print_foot(struct termp *, 
                                 const struct man_meta *);                                  const struct man_meta *);
 static  void              fmt_block_vspace(struct termp *,  static  void              fmt_block_vspace(struct termp *,
                                 const struct man_node *);                                  const struct man_node *);
 static  int               arg_width(const struct man_node *);  static  int               a2width(const char *);
   static  int               a2height(const char *);
   
   
 void  void
 man_run(struct termp *p, const struct man *m)  terminal_man(void *arg, const struct man *man)
 {  {
         struct mtermp    mt;          struct termp            *p;
           const struct man_node   *n;
           const struct man_meta   *m;
           struct mtermp            mt;
   
         print_head(p, man_meta(m));          p = (struct termp *)arg;
   
           if (NULL == p->symtab)
                   switch (p->enc) {
                   case (TERMENC_ASCII):
                           p->symtab = chars_init(CHARS_ASCII);
                           break;
                   default:
                           abort();
                           /* NOTREACHED */
                   }
   
           n = man_node(man);
           m = man_meta(man);
   
           print_head(p, m);
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
   
         mt.fl = 0;          mt.fl = 0;
         mt.lmargin = INDENT;          mt.lmargin = INDENT;
         mt.offset = INDENT;          mt.offset = INDENT;
   
         if (man_node(m)->child)          if (n->child)
                 print_body(p, &mt, man_node(m)->child, man_meta(m));                  print_body(p, &mt, n->child, m);
         print_foot(p, man_meta(m));          print_foot(p, m);
 }  }
   
   
Line 175  fmt_block_vspace(struct termp *p, const struct man_nod
Line 197  fmt_block_vspace(struct termp *p, const struct man_nod
   
   
 static int  static int
 arg_width(const struct man_node *n)  a2height(const char *p)
 {  {
         int              i, len;          struct roffsu    su;
         const char      *p;          double           r;
   
         assert(MAN_TEXT == n->type);          if ( ! a2roffsu(p, &su))
         assert(n->string);                  return(1);
   
         p = n->string;          switch (su.unit) {
           case (SCALE_CM):
                   r = su.scale * 2;
                   break;
           case (SCALE_IN):
                   r = su.scale * 6;
                   break;
           case (SCALE_PC):
                   r = su.scale;
                   break;
           case (SCALE_PT):
                   r = su.scale / 8;
                   break;
           case (SCALE_MM):
                   r = su.scale / 1000;
                   break;
           case (SCALE_VS):
                   r = su.scale;
                   break;
           default:
                   r = su.scale - 1;
                   break;
           }
   
         if (0 == (len = (int)strlen(p)))          if (r < 0.0)
                 return(-1);                  r = 0.0;
           return(/* LINTED */(int)
                           r);
   }
   
         for (i = 0; i < len; i++)  
                 if ( ! isdigit((u_char)p[i]))  
                         break;  
   
         if (i == len - 1)  {  static int
                 if ('n' == p[len - 1] || 'm' == p[len - 1])  a2width(const char *p)
                         return(atoi(p));  {
         } else if (i == len)          struct roffsu    su;
                 return(atoi(p));          double           r;
   
         return(-1);          if ( ! a2roffsu(p, &su))
                   return(-1);
   
           switch (su.unit) {
           case (SCALE_CM):
                   r = 4 * su.scale;
                   break;
           case (SCALE_IN):
                   r = 10 * su.scale;
                   break;
           case (SCALE_PC):
                   r = 2 * su.scale;
                   break;
           case (SCALE_PT):
                   r = (su.scale / 10) + 1;
                   break;
           case (SCALE_MM):
                   r = su.scale / 1000;
                   break;
           case (SCALE_VS):
                   r = su.scale * 2 - 1;
                   break;
           default:
                   r = su.scale + 1;
                   break;
           }
   
           if (r < 0.0)
                   r = 0.0;
           return((int)/* LINTED */
                           r);
 }  }
   
   
Line 402  pre_sp(DECL_ARGS)
Line 476  pre_sp(DECL_ARGS)
                 return(0);                  return(0);
         }          }
   
         len = atoi(n->child->string);          assert(MAN_TEXT == n->child->type);
           len = a2height(n->child->string);
   
         if (0 == len)          if (0 == len)
                 term_newln(p);                  term_newln(p);
         for (i = 0; i < len; i++)          for (i = 0; i < len; i++)
Line 447  pre_HP(DECL_ARGS)
Line 523  pre_HP(DECL_ARGS)
   
         /* Calculate offset. */          /* Calculate offset. */
   
         if (NULL != (nn = n->parent->head->child))          if (NULL != (nn = n->parent->head->child)) {
                 if ((ival = arg_width(nn)) >= 0)                  assert(MAN_TEXT == nn->type);
                   if ((ival = a2width(nn->string)) >= 0)
                         len = (size_t)ival;                          len = (size_t)ival;
           }
   
         if (0 == len)          if (0 == len)
                 len = 1;                  len = 1;
Line 538  pre_IP(DECL_ARGS)
Line 616  pre_IP(DECL_ARGS)
                 if (NULL != (nn = nn->next)) {                  if (NULL != (nn = nn->next)) {
                         for ( ; nn->next; nn = nn->next)                          for ( ; nn->next; nn = nn->next)
                                 /* Do nothing. */ ;                                  /* Do nothing. */ ;
                         if ((ival = arg_width(nn)) >= 0)                          assert(MAN_TEXT == nn->type);
                           if ((ival = a2width(nn->string)) >= 0)
                                 len = (size_t)ival;                                  len = (size_t)ival;
                 }                  }
   
Line 624  pre_TP(DECL_ARGS)
Line 703  pre_TP(DECL_ARGS)
         /* Calculate offset. */          /* Calculate offset. */
   
         if (NULL != (nn = n->parent->head->child))          if (NULL != (nn = n->parent->head->child))
                 if (NULL != nn->next)                  if (NULL != nn->next) {
                         if ((ival = arg_width(nn)) >= 0)                          assert(MAN_TEXT == nn->type);
                           if ((ival = a2width(nn->string)) >= 0)
                                 len = (size_t)ival;                                  len = (size_t)ival;
                   }
   
         switch (n->type) {          switch (n->type) {
         case (MAN_HEAD):          case (MAN_HEAD):
Line 803  pre_RS(DECL_ARGS)
Line 884  pre_RS(DECL_ARGS)
                 return(1);                  return(1);
         }          }
   
         if ((ival = arg_width(nn)) < 0)          assert(MAN_TEXT == nn->type);
           if ((ival = a2width(nn->string)) < 0)
                 return(1);                  return(1);
   
         mt->offset = INDENT + (size_t)ival;          mt->offset = INDENT + (size_t)ival;

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.38

CVSweb