- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
- typedef float HTCoord;
- typedef int HTColor; /* Sorry about the US spelling! */
- typedef long int HTLMFont; /* For now */
- #define HT_NON_BREAK_SPACE ((char)1) /* For now */
- #define HT_FONT 0
- #define HT_CAPITALS 1
- #define HT_BOLD 2
- #define HT_UNDERLINE 4
- #define HT_INVERSE 8
- #define HT_DOUBLE 0x10
- #define HT_BLACK 0
- #define HT_WHITE 1
- typedef struct {
- short kind; /* only NX_LEFTTAB implemented*/
- HTCoord position; /* x coordinate for stop */
- } HTTabStop;
- struct _HTStyle {
- /* Style management information
- */
- struct _HTStyle *next; /* Link for putting into stylesheet */
- char * name; /* Style name */
- char * SGMLTag; /* Tag name to start */
- /* Character attributes (a la NXRun)
- */
- HTFont font; /* Font id */
- HTCoord fontSize; /* The size of font, not independent */
- HTColor color; /* text gray of current run */
- int superscript; /* superscript (-sub) in points */
- HTAnchor *anchor; /* Anchor id if any, else zero */
- /* Paragraph Attribtes (a la NXTextStyle)
- */
- HTCoord indent1st; /* how far first line in paragraph is
- * indented */
- HTCoord leftIndent; /* how far second line is indented */
- HTCoord rightIndent; /* (Missing from NeXT version */
- short alignment; /* quad justification */
- HTCoord lineHt; /* line height */
- HTCoord descentLine; /* descender bottom from baseline */
- HTTabStop *tabs; /* array of tab stops, 0 terminated */
- BOOL wordWrap; /* Yes means wrap at space not char */
- BOOL freeFormat; /* Yes means n is just white space */
- HTCoord spaceBefore; /* Omissions from NXTextStyle */
- HTCoord spaceAfter;
- int paraFlags; /* Paragraph flags, bits as follows: */
- #define PARA_KEEP 1 /* Do not break page within this paragraph */
- #define PARA_WITH_NEXT 2 /* Do not break page after this paragraph */
- #define HT_JUSTIFY 0 /* For alignment */
- #define HT_LEFT 1
- #define HT_RIGHT 2
- #define HT_CENTER 3
- };
- typedef struct _line {
- struct _line *next;
- struct _line *prev;
- short unsigned offset; /* Implicit initial spaces */
- short unsigned size; /* Number of characters */
- BOOL split_after; /* Can we split after? */
- BOOL bullet; /* Do we bullet? */
- char data[1]; /* Space for terminator at least! */
- } HTLine;
- #define LINE_SIZE(l) (sizeof(HTLine)+(l)) /* allow for terminator */
- typedef struct _TextAnchor {
- struct _TextAnchor * next;
- int number; /* For user interface */
- int start; /* Characters */
- int extent; /* Characters */
- HTChildAnchor * anchor;
- } TextAnchor;
- struct _HText {
- HTParentAnchor * node_anchor;
- char * title;
- HTLine * last_line; /* howcome */
- int lines; /* Number of them */
- int chars; /* Number of them */
- TextAnchor * first_anchor; /* Singly linked list */
- TextAnchor * last_anchor;
- int last_anchor_number; /* user number */
- /* For Internal use: */
- HTStyle * style; /* Current style */
- int display_on_the_fly; /* Lines left */
- BOOL all_pages; /* Loop on the fly */
- int top_of_screen; /* Line number */
- HTLine * top_of_screen_line; /* Top */
- HTLine * next_line; /* Bottom + 1 */
- int permissible_split; /* in last line */
- BOOL in_line_1; /* of paragraph */
- BOOL stale; /* Must refresh */
- HTStream* target; /* Output stream */
- HTStreamClass targetClass; /* Output routines */
- };