/* ** (c) COPYRIGHT MIT 1995. ** Please first read the full copyright statement in the file COPYRIGH. */This is the C interface to the Objective-C (or whatever) Style-oriented HyperText class. It is used when a style-oriented text object is available or craeted in order to display hypertext.
This module is a part of the W3C Sample Code Library. However, it is NOT implemented anywhere in the library, as it is client (and often platform) specific code. Hence these functions must be implemented in the client. The Line Mode Browser has the implementation in the GridText module.
#ifndef HTEXT_H #define HTEXT_H #include "HTAnchor.h" #include "HTStyle.h" #include "HTStruct.h" #ifndef HyperText /* Objective C version defined HyperText */ typedef struct _HText HText; /* Normal Library */ #else @class HText; /* Objective C version for NeXTStep */ #endif extern HText * HTMainText; /* Pointer to current main text */ extern HTParentAnchor * HTMainAnchor; /* Pointer to current text's anchor */
extern HText * HText_new (HTRequest * request, HTParentAnchor * anchor); extern HText * HText_new2 (HTRequest * request, HTParentAnchor * anchor, HTStream * output_stream); extern HText * HText_new3 (HTRequest * request, HTStream * output_stream, HTStructured * structure);
extern void HText_free (HText * me);
extern void HText_beginAppend (HText * text); extern void HText_endAppend (HText * text);
extern void HText_setStyle (HText * text, HTStyle * style);
extern void HText_appendCharacter (HText * text, char ch);
extern void HText_appendText (HText * text, const char * str);
extern void HText_appendParagraph (HText * text); extern void HText_appendLineBreak (HText * text); extern void HText_appendHorizontalRule (HText * text);
extern void HText_beginAnchor (HText * text, HTChildAnchor * anc); extern void HText_endAnchor (HText * text);
extern void HText_setNextId ( HText * text, const char * s);
An alternative implementation could be, for example, to begin an anchor, append the alternative text or "IMAGE", then end the anchor. This would simply generate some text linked to the image itself as a separate document.
extern void HText_appendImage ( HText * text, HTChildAnchor * anc, const char * alternative_text, const char * alignment, BOOL isMap);
extern void HText_appendObject ( HText * text, int element_number, const BOOL * present, const char * const * value);
extern void HText_unimplemented ( HText * text);
extern void HText_dump (HText * me);
extern HTParentAnchor * HText_nodeAnchor (HText * me);
extern BOOL HText_select (HText * text); extern BOOL HText_selectAnchor (HText * text, HTChildAnchor* anchor);
/* Style handling: */ /* Apply this style to the selection */ extern void HText_applyStyle (HText * me, HTStyle *style); /* Update all text with changed style. */ extern void HText_updateStyle (HText * me, HTStyle *style); /* Return style of selection */ extern HTStyle * HText_selectionStyle ( HText * me, HTStyleSheet* sheet); /* Paste in styled text */ extern void HText_replaceSel (HText * me, const char *aString, HTStyle* aStyle); /* Apply this style to the selection and all similarly formatted text ** (style recovery only) */ extern void HTextApplyToSimilar (HText * me, HTStyle *style); /* Select the first unstyled run. ** (style recovery only) */ extern void HTextSelectUnstyled (HText * me, HTStyleSheet *sheet); /* Anchor handling: */ extern void HText_unlinkSelection (HText * me); extern HTAnchor * HText_referenceSelected (HText * me); extern HTAnchor * HText_linkSelTo (HText * me, HTAnchor* anchor); #endif /* HTEXT_H */