aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/term.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-06-30 11:45:21 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-06-30 11:45:21 +0000
commit66db27cbc1171f6264ee87392d5a74841a0eae40 (patch)
tree7189d66778cdb5a65293a0cc698ad97e8e2baf30 /term.h
parent302ff93bdc843162c49bacd6b5b4d5eda4b1363b (diff)
downloadmandoc-66db27cbc1171f6264ee87392d5a74841a0eae40.tar.gz
mandoc-66db27cbc1171f6264ee87392d5a74841a0eae40.tar.zst
mandoc-66db27cbc1171f6264ee87392d5a74841a0eae40.zip
Push paper calculation out of getsubopt() loop. Make all points be AFM
glyph units to make positioning more precise.
Diffstat (limited to 'term.h')
-rw-r--r--term.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/term.h b/term.h
index d12e754f..df175e15 100644
--- a/term.h
+++ b/term.h
@@ -1,4 +1,4 @@
-/* $Id: term.h,v 1.68 2010/06/29 14:18:05 kristaps Exp $ */
+/* $Id: term.h,v 1.69 2010/06/30 11:45:21 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -45,22 +45,22 @@ 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 (points) */
- size_t psrow; /* visible row (points) */
+ size_t pscol; /* visible column (AFM units) */
+ size_t psrow; /* visible row (AFM units) */
char *psmarg; /* margin buf */
size_t psmargsz; /* margin buf size */
size_t psmargcur; /* cur index in margin buf */
char last; /* character buffer */
enum termfont lastf; /* last set font */
size_t pages; /* number of pages shown */
- size_t lineheight; /* each line's height (points) */
- size_t top; /* body top (points) */
- size_t bottom; /* body bottom (points) */
- size_t height; /* total height (points) */
- size_t width; /* total width (points) */
- size_t left; /* body left (points) */
- size_t header; /* header position (points) */
- size_t footer; /* footer position (points) */
+ size_t lineheight; /* line height (AFM units) */
+ size_t top; /* body top (AFM units) */
+ size_t bottom; /* body bottom (AFM units) */
+ size_t height; /* page height (AFM units */
+ size_t width; /* page width (AFM units) */
+ size_t left; /* body left (AFM units) */
+ size_t header; /* header pos (AFM units) */
+ size_t footer; /* footer pos (AFM units) */
};
struct termp {