mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 19:31:18 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@6500 72102866-910b-0410-8b05-ffd578937521
108 lines
3.5 KiB
C
108 lines
3.5 KiB
C
/* rtfConsumerFunctions.h created by pingu on Wed 17-Nov-1999
|
|
|
|
Copyright (C) 1999 Free Software Foundation, Inc.
|
|
|
|
Author: Stefan Bðhringer (stefan.boehringer@uni-bochum.de)
|
|
Date: Dec 1999
|
|
|
|
This file is part of the GNUstep GUI Library.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with this library; see the file COPYING.LIB.
|
|
If not, write to the Free Software Foundation,
|
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/* here we define the interface functions to grammer consumers */
|
|
|
|
#ifndef rtfConsumerFunctions_h_INCLUDE
|
|
#define rtfConsumerFunctions_h_INCLUDE
|
|
|
|
#include "Parsers/rtfScanner.h"
|
|
|
|
/* general statements:
|
|
measurement is usually in twips: one twentieth of a point (this is about 0.01764 mm)
|
|
a tabstop of 540 twips (as it occurs on NeXT) is therefore about 0.95 cm
|
|
*/
|
|
|
|
/* prepare the ctxt, or whatever you want */
|
|
void GSRTFstart(void *ctxt);
|
|
|
|
/* seal the parsing process, the context or whatever you want */
|
|
void GSRTFstop(void *ctxt);
|
|
|
|
/* those pairing functions enclose RTFBlocks. Use it to capture the hierarchical attribute changes of blocks.
|
|
i.e. attributes of a block are forgotten once a block is closed
|
|
*/
|
|
void GSRTFopenBlock(void *ctxt);
|
|
void GSRTFcloseBlock(void *ctxt);
|
|
|
|
/* handle errors */
|
|
void GSRTFerror(const char *msg);
|
|
|
|
/* handle rtf commands not expicated in the grammer */
|
|
void GSRTFgenericRTFcommand(void *ctxt, RTFcmd cmd);
|
|
|
|
/* go, handle text */
|
|
void GSRTFmangleText(void *ctxt, const char *text);
|
|
|
|
/*
|
|
font functions
|
|
*/
|
|
|
|
/* get noticed that a particular font is introduced */
|
|
void GSRTFregisterFont(void *ctxt, const char *fontName,
|
|
RTFfontFamily family, int fontNumber);
|
|
|
|
/* change font number */
|
|
void GSRTFfontNumber(void *ctxt, int fontNumber);
|
|
/* change font size in half points*/
|
|
void GSRTFfontSize(void *ctxt, int fontSize);
|
|
|
|
/* set paper width in twips */
|
|
void GSRTFpaperWidth(void *ctxt, int width);
|
|
/* set paper height in twips */
|
|
void GSRTFpaperHeight(void *ctxt, int height);
|
|
/* set left margin in twips */
|
|
void GSRTFmarginLeft(void *ctxt, int margin);
|
|
/* set right margin in twips */
|
|
void GSRTFmarginRight(void *ctxt, int margin);
|
|
/* set first line indent */
|
|
void GSRTFfirstLineIndent(void *ctxt, int indent);
|
|
/* set left indent */
|
|
void GSRTFleftIndent(void *ctxt, int indent);
|
|
/* set center alignment */
|
|
void GSRTFalignCenter(void *ctxt);
|
|
/* set left alignment */
|
|
void GSRTFalignLeft(void *ctxt);
|
|
/* set right alignment */
|
|
void GSRTFalignRight(void *ctxt);
|
|
/* set paragraph style */
|
|
void GSRTFstyle(void *ctxt, int style);
|
|
/* set background colour */
|
|
void GSRTFcolorbg(void *ctxt, int color);
|
|
/* set foreground colour */
|
|
void GSRTFcolorfg(void *ctxt, int color);
|
|
/* set subscript in half points */
|
|
void GSRTFsubscript(void *ctxt, int script);
|
|
/* set superscript in half points */
|
|
void GSRTFsuperscript(void *ctxt, int script);
|
|
/* Switch bold mode on or off */
|
|
void GSRTFbold(void *ctxt, BOOL on);
|
|
/* Switch italic mode on or off */
|
|
void GSRTFitalic(void *ctxt, BOOL on);
|
|
/* Switch underline mode on or off */
|
|
void GSRTFunderline(void *ctxt, BOOL on);
|
|
|
|
#endif
|
|
|