summaryrefslogtreecommitdiff
path: root/winhelp.h
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2001-12-04 12:46:11 +0000
committerSimon Tatham <anakin@pobox.com>2001-12-04 12:46:11 +0000
commit66603b8a306828ce5199c843bdd9261608d7f269 (patch)
treefe737f2052c46a54d12b25d353bef4c0b73bf34e /winhelp.h
parent6a441c51f572bd72f4fba9ee24e2720d72818197 (diff)
downloadhalibut-66603b8a306828ce5199c843bdd9261608d7f269.zip
halibut-66603b8a306828ce5199c843bdd9261608d7f269.tar.gz
halibut-66603b8a306828ce5199c843bdd9261608d7f269.tar.bz2
halibut-66603b8a306828ce5199c843bdd9261608d7f269.tar.xz
Add tabstops, and also add proper cleaning up in whlp_abandon() so
that this module doesn't leak like a sieve with the mesh missing. I think this code is now mature enough for the Buttress back end to be written. Woo. [originally from svn r1443]
Diffstat (limited to 'winhelp.h')
-rw-r--r--winhelp.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/winhelp.h b/winhelp.h
index d8f92e5..61472a4 100644
--- a/winhelp.h
+++ b/winhelp.h
@@ -128,10 +128,11 @@ enum {
WHLP_PARA_SCROLL, WHLP_PARA_NONSCROLL
};
void whlp_para_attr(WHLP h, int attr_id, int attr_param);
+void whlp_set_tabstop(WHLP h, int tabstop, int alignment);
void whlp_begin_para(WHLP h, int para_type);
void whlp_end_para(WHLP h);
void whlp_set_font(WHLP h, int font_id);
void whlp_text(WHLP h, char *text);
void whlp_start_hyperlink(WHLP h, WHLP_TOPIC target);
void whlp_end_hyperlink(WHLP h);
-
+void whlp_tab(WHLP h);