1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
/*
* $LynxId: HText.h,v 1.17 2020/01/21 22:08:07 tom Exp $
* Rich Hypertext object for libWWW
* RICH HYPERTEXT OBJECT
*
* 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.
*/
#ifndef HTEXT_H
#define HTEXT_H
#include <HTAnchor.h>
#include <HTStyle.h>
#include <HTStream.h>
#include <SGML.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifndef THINK_C
#ifndef HyperText /* Objective C version defined HyperText */
typedef struct _HText HText; /* Normal Library */
#endif
#else
class CHyperText; /* Mac Think-C browser hook */
typedef CHyperText HText;
#endif
extern HText *HTMainText; /* Pointer to current main text */
extern HTParentAnchor *HTMainAnchor; /* Pointer to current text's anchor */
extern const char *HTAppName; /* Application name */
extern const char *HTAppVersion; /* Application version */
/*
Creation and deletion
HTEXT_NEW: CREATE HYPERTEXT OBJECT
There are several methods depending on how much you want to specify. The
output stream is used with objects which need to output the hypertext to a
stream. The structure is for objects which need to refer to the structure
which is kep by the creating stream.
*/
extern HText *HText_new(HTParentAnchor *anchor);
extern HText *HText_new2(HTParentAnchor *anchor,
HTStream *output_stream);
extern HText *HText_new3(HTParentAnchor *anchor,
HTStream *output_stream,
HTStructured * structure);
/*
FREE HYPERTEXT OBJECT
*/
extern void HText_free(HText *me);
/*
Object Building methods
These are used by a parser to build the text in an object HText_beginAppend
must be called, then any combination of other append calls, then
HText_endAppend. This allows optimised handling using buffers and caches
which are flushed at the end.
*/
extern void HText_beginAppend(HText *text);
extern void HText_endAppend(HText *text);
/*
SET THE STYLE FOR FUTURE TEXT
*/
extern void HText_setStyle(HText *text, HTStyle *style);
/*
ADD ONE CHARACTER
*/
extern void HText_appendCharacter(HText *text, int ch);
/*
ADD A ZERO-TERMINATED STRING
*/
extern void HText_appendText(HText *text, const char *str);
/*
NEW PARAGRAPH
and similar things
*/
extern void HText_appendParagraph(HText *text);
extern void HText_appendLineBreak(HText *text);
extern void HText_appendHorizontalRule(HText *text);
/*
START/END SENSITIVE TEXT
*/
/*
The anchor object is created and passed to HText_beginAnchor. The sensitive
text is added to the text object, and then HText_endAnchor is called.
Anchors may not be nested.
*/
extern int HText_beginAnchor(HText *text, int underline,
HTChildAnchor *anc);
extern void HText_endAnchor(HText *text, int number);
extern BOOL HText_isAnchorBlank(HText *text, int number);
/*
APPEND AN INLINE IMAGE
The image is handled by the creation of an anchor whose destination is the
image document to be included. The semantics is the intended inline display
of the image.
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,
int alignment,
int isMap);
/*
RETURN THE ANCHOR ASSOCIATED WITH THIS NODE
*/
extern HTParentAnchor *HText_nodeAnchor(HText *me);
/*
Browsing functions
*/
/*
BRING TO FRONT AND HIGHLIGHT IT
*/
extern BOOL HText_select(HText *text);
extern BOOL HText_selectAnchor(HText *text, HTChildAnchor *anchor);
/*
Editing functions
These are called from the application. There are many more functions not
included here from the original text object. These functions NEED NOT BE
IMPLEMENTED in a browser which cannot edit.
*/
/* 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);
#ifdef __cplusplus
}
#endif
#endif /* HTEXT_H */
|