mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 04:10:38 +00:00
RTF: add support for read/wite of underline and strikethrough attributes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@32305 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
227381f621
commit
d33f0c0c6a
13 changed files with 1461 additions and 947 deletions
|
@ -121,6 +121,8 @@ void GSRTFaddDefaultColor(void *ctxt);
|
|||
void GSRTFcolorbg(void *ctxt, int color);
|
||||
/* set foreground colour */
|
||||
void GSRTFcolorfg(void *ctxt, int color);
|
||||
/* set underline colour */
|
||||
void GSRTFunderlinecolor(void *ctxt, int color);
|
||||
/* set default character style */
|
||||
void GSRTFdefaultCharacterStyle(void *ctxt);
|
||||
/* set subscript in half points */
|
||||
|
@ -131,8 +133,10 @@ void GSRTFsuperscript(void *ctxt, int script);
|
|||
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);
|
||||
/* Set the underline style */
|
||||
void GSRTFunderline(void *ctxt, BOOL on, NSInteger style);
|
||||
/* Set the strikethrough style */
|
||||
void GSRTFstrikethrough(void *ctxt, NSInteger style);
|
||||
/* new paragraph */
|
||||
void GSRTFparagraph(void *ctxt);
|
||||
/* NeXTGraphic */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue