mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
Sync to Wine-20050419:
Remove no longer needed files. svn path=/trunk/; revision=15016
This commit is contained in:
parent
6af3fc11fe
commit
d0bf4f6953
9 changed files with 0 additions and 5450 deletions
|
@ -1,211 +0,0 @@
|
||||||
/*
|
|
||||||
RTF ANSI character set (\ansi) general map
|
|
||||||
These are taken from the ISO-Latin-1 (ISO-8859-1) encodings, with
|
|
||||||
a few additions
|
|
||||||
|
|
||||||
Field 1 is the standard character name which the character value in
|
|
||||||
field 2 maps onto. (It doesn't mean "to produce the character in field 1,
|
|
||||||
use the value in field 2.)
|
|
||||||
|
|
||||||
The character value may be given either as a single character (which will be
|
|
||||||
converted to the ASCII value of the character), or in numeric format, either
|
|
||||||
in decimal or 0xyy as hex yy. Single or double quotes may be used to quote
|
|
||||||
characters.*/
|
|
||||||
|
|
||||||
int ansi_gen[] =
|
|
||||||
{
|
|
||||||
rtfSC_formula ,0x06,
|
|
||||||
rtfSC_nobrkhyphen ,0x1e,
|
|
||||||
rtfSC_opthyphen ,0x1f,
|
|
||||||
rtfSC_space ,' ',
|
|
||||||
rtfSC_exclam ,'!',
|
|
||||||
rtfSC_quotedbl ,'"',
|
|
||||||
rtfSC_numbersign ,'#',
|
|
||||||
rtfSC_dollar ,'$',
|
|
||||||
rtfSC_percent ,'%',
|
|
||||||
rtfSC_ampersand ,'&',
|
|
||||||
rtfSC_quoteright ,'\\',
|
|
||||||
rtfSC_parenleft ,'(',
|
|
||||||
rtfSC_parenright ,')',
|
|
||||||
rtfSC_asterisk ,'*',
|
|
||||||
rtfSC_plus ,'+',
|
|
||||||
rtfSC_comma ,',',
|
|
||||||
rtfSC_hyphen ,'-',
|
|
||||||
rtfSC_period ,'.',
|
|
||||||
rtfSC_slash ,'/',
|
|
||||||
rtfSC_zero ,'0',
|
|
||||||
rtfSC_one ,'1',
|
|
||||||
rtfSC_two ,'2',
|
|
||||||
rtfSC_three ,'3',
|
|
||||||
rtfSC_four ,'4',
|
|
||||||
rtfSC_five ,'5',
|
|
||||||
rtfSC_six ,'6',
|
|
||||||
rtfSC_seven ,'7',
|
|
||||||
rtfSC_eight ,'8',
|
|
||||||
rtfSC_nine ,'9',
|
|
||||||
rtfSC_colon ,':',
|
|
||||||
rtfSC_semicolon ,';',
|
|
||||||
rtfSC_less ,'<',
|
|
||||||
rtfSC_equal ,'=',
|
|
||||||
rtfSC_greater ,'>',
|
|
||||||
rtfSC_question ,'?',
|
|
||||||
rtfSC_at ,'@',
|
|
||||||
rtfSC_A ,'A',
|
|
||||||
rtfSC_B ,'B',
|
|
||||||
rtfSC_C ,'C',
|
|
||||||
rtfSC_D ,'D',
|
|
||||||
rtfSC_E ,'E',
|
|
||||||
rtfSC_F ,'F',
|
|
||||||
rtfSC_G ,'G',
|
|
||||||
rtfSC_H ,'H',
|
|
||||||
rtfSC_I ,'I',
|
|
||||||
rtfSC_J ,'J',
|
|
||||||
rtfSC_K ,'K',
|
|
||||||
rtfSC_L ,'L',
|
|
||||||
rtfSC_M ,'M',
|
|
||||||
rtfSC_N ,'N',
|
|
||||||
rtfSC_O ,'O',
|
|
||||||
rtfSC_P ,'P',
|
|
||||||
rtfSC_Q ,'Q',
|
|
||||||
rtfSC_R ,'R',
|
|
||||||
rtfSC_S ,'S',
|
|
||||||
rtfSC_T ,'T',
|
|
||||||
rtfSC_U ,'U',
|
|
||||||
rtfSC_V ,'V',
|
|
||||||
rtfSC_W ,'W',
|
|
||||||
rtfSC_X ,'X',
|
|
||||||
rtfSC_Y ,'Y',
|
|
||||||
rtfSC_Z ,'Z',
|
|
||||||
rtfSC_bracketleft ,'[',
|
|
||||||
rtfSC_backslash ,'\\',
|
|
||||||
rtfSC_bracketright ,']',
|
|
||||||
rtfSC_asciicircum ,'^',
|
|
||||||
rtfSC_underscore ,'_',
|
|
||||||
rtfSC_quoteleft ,'`',
|
|
||||||
rtfSC_a ,'a',
|
|
||||||
rtfSC_b ,'b',
|
|
||||||
rtfSC_c ,'c',
|
|
||||||
rtfSC_d ,'d',
|
|
||||||
rtfSC_e ,'e',
|
|
||||||
rtfSC_f ,'f',
|
|
||||||
rtfSC_g ,'g',
|
|
||||||
rtfSC_h ,'h',
|
|
||||||
rtfSC_i ,'i',
|
|
||||||
rtfSC_j ,'j',
|
|
||||||
rtfSC_k ,'k',
|
|
||||||
rtfSC_l ,'l',
|
|
||||||
rtfSC_m ,'m',
|
|
||||||
rtfSC_n ,'n',
|
|
||||||
rtfSC_o ,'o',
|
|
||||||
rtfSC_p ,'p',
|
|
||||||
rtfSC_q ,'q',
|
|
||||||
rtfSC_r ,'r',
|
|
||||||
rtfSC_s ,'s',
|
|
||||||
rtfSC_t ,'t',
|
|
||||||
rtfSC_u ,'u',
|
|
||||||
rtfSC_v ,'v',
|
|
||||||
rtfSC_w ,'w',
|
|
||||||
rtfSC_x ,'x',
|
|
||||||
rtfSC_y ,'y',
|
|
||||||
rtfSC_z ,'z',
|
|
||||||
rtfSC_braceleft ,'{',
|
|
||||||
rtfSC_bar ,'|',
|
|
||||||
rtfSC_braceright ,'}',
|
|
||||||
rtfSC_asciitilde ,'~',
|
|
||||||
rtfSC_nobrkspace ,0xa0,
|
|
||||||
rtfSC_exclamdown ,0xa1,
|
|
||||||
rtfSC_cent ,0xa2,
|
|
||||||
rtfSC_sterling ,0xa3,
|
|
||||||
rtfSC_currency ,0xa4,
|
|
||||||
rtfSC_yen ,0xa5,
|
|
||||||
rtfSC_brokenbar ,0xa6,
|
|
||||||
rtfSC_section ,0xa7,
|
|
||||||
rtfSC_dieresis ,0xa8,
|
|
||||||
rtfSC_copyright ,0xa9,
|
|
||||||
rtfSC_ordfeminine ,0xaa,
|
|
||||||
rtfSC_guillemotleft ,0xab,
|
|
||||||
rtfSC_logicalnot ,0xac,
|
|
||||||
rtfSC_opthyphen ,0xad,
|
|
||||||
rtfSC_registered ,0xae,
|
|
||||||
rtfSC_macron ,0xaf,
|
|
||||||
rtfSC_degree ,0xb0,
|
|
||||||
rtfSC_plusminus ,0xb1,
|
|
||||||
rtfSC_twosuperior ,0xb2,
|
|
||||||
rtfSC_threesuperior ,0xb3,
|
|
||||||
rtfSC_acute ,0xb4,
|
|
||||||
rtfSC_mu ,0xb5,
|
|
||||||
rtfSC_paragraph ,0xb6,
|
|
||||||
rtfSC_periodcentered ,0xb7,
|
|
||||||
rtfSC_cedilla ,0xb8,
|
|
||||||
rtfSC_onesuperior ,0xb9,
|
|
||||||
rtfSC_ordmasculine ,0xba,
|
|
||||||
rtfSC_guillemotright ,0xbb,
|
|
||||||
rtfSC_onequarter ,0xbc,
|
|
||||||
rtfSC_onehalf ,0xbd,
|
|
||||||
rtfSC_threequarters ,0xbe,
|
|
||||||
rtfSC_questiondown ,0xbf,
|
|
||||||
rtfSC_Agrave ,0xc0,
|
|
||||||
rtfSC_Aacute ,0xc1,
|
|
||||||
rtfSC_Acircumflex ,0xc2,
|
|
||||||
rtfSC_Atilde ,0xc3,
|
|
||||||
rtfSC_Adieresis ,0xc4,
|
|
||||||
rtfSC_Aring ,0xc5,
|
|
||||||
rtfSC_AE ,0xc6,
|
|
||||||
rtfSC_Ccedilla ,0xc7,
|
|
||||||
rtfSC_Egrave ,0xc8,
|
|
||||||
rtfSC_Eacute ,0xc9,
|
|
||||||
rtfSC_Ecircumflex ,0xca,
|
|
||||||
rtfSC_Edieresis ,0xcb,
|
|
||||||
rtfSC_Igrave ,0xcc,
|
|
||||||
rtfSC_Iacute ,0xcd,
|
|
||||||
rtfSC_Icircumflex ,0xce,
|
|
||||||
rtfSC_Idieresis ,0xcf,
|
|
||||||
rtfSC_Eth ,0xd0,
|
|
||||||
rtfSC_Ntilde ,0xd1,
|
|
||||||
rtfSC_Ograve ,0xd2,
|
|
||||||
rtfSC_Oacute ,0xd3,
|
|
||||||
rtfSC_Ocircumflex ,0xd4,
|
|
||||||
rtfSC_Otilde ,0xd5,
|
|
||||||
rtfSC_Odieresis ,0xd6,
|
|
||||||
rtfSC_multiply ,0xd7,
|
|
||||||
rtfSC_Oslash ,0xd8,
|
|
||||||
rtfSC_Ugrave ,0xd9,
|
|
||||||
rtfSC_Uacute ,0xda,
|
|
||||||
rtfSC_Ucircumflex ,0xdb,
|
|
||||||
rtfSC_Udieresis ,0xdc,
|
|
||||||
rtfSC_Yacute ,0xdd,
|
|
||||||
rtfSC_Thorn ,0xde,
|
|
||||||
rtfSC_germandbls ,0xdf,
|
|
||||||
rtfSC_agrave ,0xe0,
|
|
||||||
rtfSC_aacute ,0xe1,
|
|
||||||
rtfSC_acircumflex ,0xe2,
|
|
||||||
rtfSC_atilde ,0xe3,
|
|
||||||
rtfSC_adieresis ,0xe4,
|
|
||||||
rtfSC_aring ,0xe5,
|
|
||||||
rtfSC_ae ,0xe6,
|
|
||||||
rtfSC_ccedilla ,0xe7,
|
|
||||||
rtfSC_egrave ,0xe8,
|
|
||||||
rtfSC_eacute ,0xe9,
|
|
||||||
rtfSC_ecircumflex ,0xea,
|
|
||||||
rtfSC_edieresis ,0xeb,
|
|
||||||
rtfSC_igrave ,0xec,
|
|
||||||
rtfSC_iacute ,0xed,
|
|
||||||
rtfSC_icircumflex ,0xee,
|
|
||||||
rtfSC_idieresis ,0xef,
|
|
||||||
rtfSC_eth ,0xf0,
|
|
||||||
rtfSC_ntilde ,0xf1,
|
|
||||||
rtfSC_ograve ,0xf2,
|
|
||||||
rtfSC_oacute ,0xf3,
|
|
||||||
rtfSC_ocircumflex ,0xf4,
|
|
||||||
rtfSC_otilde ,0xf5,
|
|
||||||
rtfSC_odieresis ,0xf6,
|
|
||||||
rtfSC_divide ,0xf7,
|
|
||||||
rtfSC_oslash ,0xf8,
|
|
||||||
rtfSC_ugrave ,0xf9,
|
|
||||||
rtfSC_uacute ,0xfa,
|
|
||||||
rtfSC_ucircumflex ,0xfb,
|
|
||||||
rtfSC_udieresis ,0xfc,
|
|
||||||
rtfSC_yacute ,0xfd,
|
|
||||||
rtfSC_thorn ,0xfe,
|
|
||||||
rtfSC_ydieresis ,0xff
|
|
||||||
};
|
|
|
@ -1,112 +0,0 @@
|
||||||
/*
|
|
||||||
* RTF ANSI character set (\ansi) Symbol font map
|
|
||||||
*
|
|
||||||
* Field 1 is the standard character name which the character value in
|
|
||||||
* field 2 maps onto. (It doesn't mean "to produce the character in field 1,
|
|
||||||
* use the value in field 2.)
|
|
||||||
*
|
|
||||||
* The character value may be given either as a single character (which will be
|
|
||||||
* converted to the ASCII value of the character), or in numeric format, either
|
|
||||||
* in decimal or 0xyy as hex yy. Single or double quotes may be used to quote
|
|
||||||
* characters.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
int ansi_sym[] =
|
|
||||||
{
|
|
||||||
rtfSC_formula ,0x06,
|
|
||||||
rtfSC_nobrkhyphen ,0x1e,
|
|
||||||
rtfSC_opthyphen ,0x1f,
|
|
||||||
rtfSC_space ,' ',
|
|
||||||
rtfSC_exclam ,'!',
|
|
||||||
rtfSC_universal ,'"',
|
|
||||||
rtfSC_mathnumbersign ,'#',
|
|
||||||
rtfSC_existential ,'$',
|
|
||||||
rtfSC_percent ,'%',
|
|
||||||
rtfSC_ampersand ,'&',
|
|
||||||
rtfSC_suchthat ,'\\',
|
|
||||||
rtfSC_parenleft ,'(',
|
|
||||||
rtfSC_parenright ,')',
|
|
||||||
rtfSC_mathasterisk ,'*',
|
|
||||||
rtfSC_mathplus ,'+',
|
|
||||||
rtfSC_comma ,',',
|
|
||||||
rtfSC_mathminus ,'-',
|
|
||||||
rtfSC_period ,'.',
|
|
||||||
rtfSC_slash ,'/',
|
|
||||||
rtfSC_zero ,'0',
|
|
||||||
rtfSC_one ,'1',
|
|
||||||
rtfSC_two ,'2',
|
|
||||||
rtfSC_three ,'3',
|
|
||||||
rtfSC_four ,'4',
|
|
||||||
rtfSC_five ,'5',
|
|
||||||
rtfSC_six ,'6',
|
|
||||||
rtfSC_seven ,'7',
|
|
||||||
rtfSC_eight ,'8',
|
|
||||||
rtfSC_nine ,'9',
|
|
||||||
rtfSC_colon ,':',
|
|
||||||
rtfSC_semicolon ,';',
|
|
||||||
rtfSC_less ,'<',
|
|
||||||
rtfSC_mathequal ,'=',
|
|
||||||
rtfSC_greater ,'>',
|
|
||||||
rtfSC_question ,'?',
|
|
||||||
rtfSC_congruent ,'@',
|
|
||||||
rtfSC_Alpha ,'A',
|
|
||||||
rtfSC_Beta ,'B',
|
|
||||||
rtfSC_Chi ,'C',
|
|
||||||
rtfSC_Delta ,'D',
|
|
||||||
rtfSC_Epsilon ,'E',
|
|
||||||
rtfSC_Phi ,'F',
|
|
||||||
rtfSC_Gamma ,'G',
|
|
||||||
rtfSC_Eta ,'H',
|
|
||||||
rtfSC_Iota ,'I',
|
|
||||||
rtfSC_Kappa ,'K',
|
|
||||||
rtfSC_Lambda ,'L',
|
|
||||||
rtfSC_Mu ,'M',
|
|
||||||
rtfSC_Nu ,'N',
|
|
||||||
rtfSC_Omicron ,'O',
|
|
||||||
rtfSC_Pi ,'P',
|
|
||||||
rtfSC_Theta ,'Q',
|
|
||||||
rtfSC_Rho ,'R',
|
|
||||||
rtfSC_Sigma ,'S',
|
|
||||||
rtfSC_Tau ,'T',
|
|
||||||
rtfSC_Upsilon ,'U',
|
|
||||||
rtfSC_varsigma ,'V',
|
|
||||||
rtfSC_Omega ,'W',
|
|
||||||
rtfSC_Xi ,'X',
|
|
||||||
rtfSC_Psi ,'Y',
|
|
||||||
rtfSC_Zeta ,'Z',
|
|
||||||
rtfSC_bracketleft ,'[',
|
|
||||||
rtfSC_backslash ,'\\',
|
|
||||||
rtfSC_bracketright ,']',
|
|
||||||
rtfSC_asciicircum ,'^',
|
|
||||||
rtfSC_underscore ,'_',
|
|
||||||
rtfSC_quoteleft ,'`',
|
|
||||||
rtfSC_alpha ,'a',
|
|
||||||
rtfSC_beta ,'b',
|
|
||||||
rtfSC_chi ,'c',
|
|
||||||
rtfSC_delta ,'d',
|
|
||||||
rtfSC_epsilon ,'e',
|
|
||||||
rtfSC_phi ,'f',
|
|
||||||
rtfSC_gamma ,'g',
|
|
||||||
rtfSC_eta ,'h',
|
|
||||||
rtfSC_iota ,'i',
|
|
||||||
rtfSC_kappa ,'k',
|
|
||||||
rtfSC_lambda ,'l',
|
|
||||||
rtfSC_mu ,'m',
|
|
||||||
rtfSC_nu ,'n',
|
|
||||||
rtfSC_omicron ,'o',
|
|
||||||
rtfSC_pi ,'p',
|
|
||||||
rtfSC_theta ,'q',
|
|
||||||
rtfSC_rho ,'r',
|
|
||||||
rtfSC_sigma ,'s',
|
|
||||||
rtfSC_tau ,'t',
|
|
||||||
rtfSC_upsilon ,'u',
|
|
||||||
rtfSC_omega ,'w',
|
|
||||||
rtfSC_xi ,'x',
|
|
||||||
rtfSC_psi ,'y',
|
|
||||||
rtfSC_zeta ,'z',
|
|
||||||
rtfSC_braceleft ,'{',
|
|
||||||
rtfSC_bar ,'|',
|
|
||||||
rtfSC_braceright ,'}',
|
|
||||||
rtfSC_mathtilde ,'~'
|
|
||||||
};
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,35 +0,0 @@
|
||||||
/*
|
|
||||||
* Ritch Edit 32 class extra info
|
|
||||||
*
|
|
||||||
* Copyright 2000 Jean-Clauyde Batista
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* This library is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
|
||||||
* License as published by the Free Software Foundation; either
|
|
||||||
* version 2.1 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
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
|
||||||
* License along with this library; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __WINE_RICHED32_H
|
|
||||||
#define __WINE_RICHED32_H
|
|
||||||
|
|
||||||
#include <stdarg.h>
|
|
||||||
|
|
||||||
#include "windef.h"
|
|
||||||
#include "winbase.h"
|
|
||||||
#include "winuser.h"
|
|
||||||
#include "richedit.h"
|
|
||||||
|
|
||||||
extern VOID RICHED32_Register (VOID);
|
|
||||||
extern VOID RICHED32_Unregister (VOID);
|
|
||||||
|
|
||||||
#endif /* __WINE_RICHED32_H */
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,2 +0,0 @@
|
||||||
void WriterInit (RTF_Info *);
|
|
||||||
int BeginFile (RTF_Info *);
|
|
|
@ -1,356 +0,0 @@
|
||||||
static char *stdCharName[] =
|
|
||||||
{
|
|
||||||
"nothing",
|
|
||||||
"space",
|
|
||||||
"exclam",
|
|
||||||
"quotedbl",
|
|
||||||
"numbersign",
|
|
||||||
"dollar",
|
|
||||||
"percent",
|
|
||||||
"ampersand",
|
|
||||||
"quoteright",
|
|
||||||
"parenleft",
|
|
||||||
"parenright",
|
|
||||||
"asterisk",
|
|
||||||
"plus",
|
|
||||||
"comma",
|
|
||||||
"hyphen",
|
|
||||||
"period",
|
|
||||||
"slash",
|
|
||||||
"zero",
|
|
||||||
"one",
|
|
||||||
"two",
|
|
||||||
"three",
|
|
||||||
"four",
|
|
||||||
"five",
|
|
||||||
"six",
|
|
||||||
"seven",
|
|
||||||
"eight",
|
|
||||||
"nine",
|
|
||||||
"colon",
|
|
||||||
"semicolon",
|
|
||||||
"less",
|
|
||||||
"equal",
|
|
||||||
"greater",
|
|
||||||
"question",
|
|
||||||
"at",
|
|
||||||
"A",
|
|
||||||
"B",
|
|
||||||
"C",
|
|
||||||
"D",
|
|
||||||
"E",
|
|
||||||
"F",
|
|
||||||
"G",
|
|
||||||
"H",
|
|
||||||
"I",
|
|
||||||
"J",
|
|
||||||
"K",
|
|
||||||
"L",
|
|
||||||
"M",
|
|
||||||
"N",
|
|
||||||
"O",
|
|
||||||
"P",
|
|
||||||
"Q",
|
|
||||||
"R",
|
|
||||||
"S",
|
|
||||||
"T",
|
|
||||||
"U",
|
|
||||||
"V",
|
|
||||||
"W",
|
|
||||||
"X",
|
|
||||||
"Y",
|
|
||||||
"Z",
|
|
||||||
"bracketleft",
|
|
||||||
"backslash",
|
|
||||||
"bracketright",
|
|
||||||
"asciicircum",
|
|
||||||
"underscore",
|
|
||||||
"quoteleft",
|
|
||||||
"a",
|
|
||||||
"b",
|
|
||||||
"c",
|
|
||||||
"d",
|
|
||||||
"e",
|
|
||||||
"f",
|
|
||||||
"g",
|
|
||||||
"h",
|
|
||||||
"i",
|
|
||||||
"j",
|
|
||||||
"k",
|
|
||||||
"l",
|
|
||||||
"m",
|
|
||||||
"n",
|
|
||||||
"o",
|
|
||||||
"p",
|
|
||||||
"q",
|
|
||||||
"r",
|
|
||||||
"s",
|
|
||||||
"t",
|
|
||||||
"u",
|
|
||||||
"v",
|
|
||||||
"w",
|
|
||||||
"x",
|
|
||||||
"y",
|
|
||||||
"z",
|
|
||||||
"braceleft",
|
|
||||||
"bar",
|
|
||||||
"braceright",
|
|
||||||
"asciitilde",
|
|
||||||
"exclamdown",
|
|
||||||
"cent",
|
|
||||||
"sterling",
|
|
||||||
"fraction",
|
|
||||||
"yen",
|
|
||||||
"florin",
|
|
||||||
"section",
|
|
||||||
"currency",
|
|
||||||
"quotedblleft",
|
|
||||||
"guillemotleft",
|
|
||||||
"guilsinglleft",
|
|
||||||
"guilsinglright",
|
|
||||||
"fi",
|
|
||||||
"fl",
|
|
||||||
"endash",
|
|
||||||
"dagger",
|
|
||||||
"daggerdbl",
|
|
||||||
"periodcentered",
|
|
||||||
"paragraph",
|
|
||||||
"bullet",
|
|
||||||
"quotesinglbase",
|
|
||||||
"quotedblbase",
|
|
||||||
"quotedblright",
|
|
||||||
"guillemotright",
|
|
||||||
"ellipsis",
|
|
||||||
"perthousand",
|
|
||||||
"questiondown",
|
|
||||||
"grave",
|
|
||||||
"acute",
|
|
||||||
"circumflex",
|
|
||||||
"tilde",
|
|
||||||
"macron",
|
|
||||||
"breve",
|
|
||||||
"dotaccent",
|
|
||||||
"dieresis",
|
|
||||||
"ring",
|
|
||||||
"cedilla",
|
|
||||||
"hungarumlaut",
|
|
||||||
"ogonek",
|
|
||||||
"caron",
|
|
||||||
"emdash",
|
|
||||||
"AE",
|
|
||||||
"ordfeminine",
|
|
||||||
"Lslash",
|
|
||||||
"Oslash",
|
|
||||||
"OE",
|
|
||||||
"ordmasculine",
|
|
||||||
"ae",
|
|
||||||
"dotlessi",
|
|
||||||
"lslash",
|
|
||||||
"oslash",
|
|
||||||
"oe",
|
|
||||||
"germandbls",
|
|
||||||
"Aacute",
|
|
||||||
"Acircumflex",
|
|
||||||
"Adieresis",
|
|
||||||
"Agrave",
|
|
||||||
"Aring",
|
|
||||||
"Atilde",
|
|
||||||
"Ccedilla",
|
|
||||||
"Eacute",
|
|
||||||
"Ecircumflex",
|
|
||||||
"Edieresis",
|
|
||||||
"Egrave",
|
|
||||||
"Eth",
|
|
||||||
"Iacute",
|
|
||||||
"Icircumflex",
|
|
||||||
"Idieresis",
|
|
||||||
"Igrave",
|
|
||||||
"Ntilde",
|
|
||||||
"Oacute",
|
|
||||||
"Ocircumflex",
|
|
||||||
"Odieresis",
|
|
||||||
"Ograve",
|
|
||||||
"Otilde",
|
|
||||||
"Scaron",
|
|
||||||
"Thorn",
|
|
||||||
"Uacute",
|
|
||||||
"Ucircumflex",
|
|
||||||
"Udieresis",
|
|
||||||
"Ugrave",
|
|
||||||
"Yacute",
|
|
||||||
"Ydieresis",
|
|
||||||
"aacute",
|
|
||||||
"acircumflex",
|
|
||||||
"adieresis",
|
|
||||||
"agrave",
|
|
||||||
"aring",
|
|
||||||
"atilde",
|
|
||||||
"brokenbar",
|
|
||||||
"ccedilla",
|
|
||||||
"copyright",
|
|
||||||
"degree",
|
|
||||||
"divide",
|
|
||||||
"eacute",
|
|
||||||
"ecircumflex",
|
|
||||||
"edieresis",
|
|
||||||
"egrave",
|
|
||||||
"eth",
|
|
||||||
"iacute",
|
|
||||||
"icircumflex",
|
|
||||||
"idieresis",
|
|
||||||
"igrave",
|
|
||||||
"logicalnot",
|
|
||||||
"minus",
|
|
||||||
"multiply",
|
|
||||||
"ntilde",
|
|
||||||
"oacute",
|
|
||||||
"ocircumflex",
|
|
||||||
"odieresis",
|
|
||||||
"ograve",
|
|
||||||
"onehalf",
|
|
||||||
"onequarter",
|
|
||||||
"onesuperior",
|
|
||||||
"otilde",
|
|
||||||
"plusminus",
|
|
||||||
"registered",
|
|
||||||
"thorn",
|
|
||||||
"threequarters",
|
|
||||||
"threesuperior",
|
|
||||||
"trademark",
|
|
||||||
"twosuperior",
|
|
||||||
"uacute",
|
|
||||||
"ucircumflex",
|
|
||||||
"udieresis",
|
|
||||||
"ugrave",
|
|
||||||
"yacute",
|
|
||||||
"ydieresis",
|
|
||||||
"Alpha",
|
|
||||||
"Beta",
|
|
||||||
"Chi",
|
|
||||||
"Delta",
|
|
||||||
"Epsilon",
|
|
||||||
"Phi",
|
|
||||||
"Gamma",
|
|
||||||
"Eta",
|
|
||||||
"Iota",
|
|
||||||
"Kappa",
|
|
||||||
"Lambda",
|
|
||||||
"Mu",
|
|
||||||
"Nu",
|
|
||||||
"Omicron",
|
|
||||||
"Pi",
|
|
||||||
"Theta",
|
|
||||||
"Rho",
|
|
||||||
"Sigma",
|
|
||||||
"Tau",
|
|
||||||
"Upsilon",
|
|
||||||
"varUpsilon",
|
|
||||||
"Omega",
|
|
||||||
"Xi",
|
|
||||||
"Psi",
|
|
||||||
"Zeta",
|
|
||||||
"alpha",
|
|
||||||
"beta",
|
|
||||||
"chi",
|
|
||||||
"delta",
|
|
||||||
"epsilon",
|
|
||||||
"phi",
|
|
||||||
"varphi",
|
|
||||||
"gamma",
|
|
||||||
"eta",
|
|
||||||
"iota",
|
|
||||||
"kappa",
|
|
||||||
"lambda",
|
|
||||||
"mu",
|
|
||||||
"nu",
|
|
||||||
"omicron",
|
|
||||||
"pi",
|
|
||||||
"varpi",
|
|
||||||
"theta",
|
|
||||||
"vartheta",
|
|
||||||
"rho",
|
|
||||||
"sigma",
|
|
||||||
"varsigma",
|
|
||||||
"tau",
|
|
||||||
"upsilon",
|
|
||||||
"omega",
|
|
||||||
"xi",
|
|
||||||
"psi",
|
|
||||||
"zeta",
|
|
||||||
"nobrkspace",
|
|
||||||
"nobrkhyphen",
|
|
||||||
"lessequal",
|
|
||||||
"greaterequal",
|
|
||||||
"infinity",
|
|
||||||
"integral",
|
|
||||||
"notequal",
|
|
||||||
"radical",
|
|
||||||
"radicalex",
|
|
||||||
"approxequal",
|
|
||||||
"apple",
|
|
||||||
"partialdiff",
|
|
||||||
"opthyphen",
|
|
||||||
"formula",
|
|
||||||
"lozenge",
|
|
||||||
"universal",
|
|
||||||
"existential",
|
|
||||||
"suchthat",
|
|
||||||
"congruent",
|
|
||||||
"therefore",
|
|
||||||
"perpendicular",
|
|
||||||
"minute",
|
|
||||||
"club",
|
|
||||||
"diamond",
|
|
||||||
"heart",
|
|
||||||
"spade",
|
|
||||||
"arrowboth",
|
|
||||||
"arrowleft",
|
|
||||||
"arrowup",
|
|
||||||
"arrowright",
|
|
||||||
"arrowdown",
|
|
||||||
"second",
|
|
||||||
"proportional",
|
|
||||||
"equivalence",
|
|
||||||
"arrowvertex",
|
|
||||||
"arrowhorizex",
|
|
||||||
"carriagereturn",
|
|
||||||
"aleph",
|
|
||||||
"Ifraktur",
|
|
||||||
"Rfraktur",
|
|
||||||
"weierstrass",
|
|
||||||
"circlemultiply",
|
|
||||||
"circleplus",
|
|
||||||
"emptyset",
|
|
||||||
"intersection",
|
|
||||||
"union",
|
|
||||||
"propersuperset",
|
|
||||||
"reflexsuperset",
|
|
||||||
"notsubset",
|
|
||||||
"propersubset",
|
|
||||||
"reflexsubset",
|
|
||||||
"element",
|
|
||||||
"notelement",
|
|
||||||
"angle",
|
|
||||||
"gradient",
|
|
||||||
"product",
|
|
||||||
"logicaland",
|
|
||||||
"logicalor",
|
|
||||||
"arrowdblboth",
|
|
||||||
"arrowdblleft",
|
|
||||||
"arrowdblup",
|
|
||||||
"arrowdblright",
|
|
||||||
"arrowdbldown",
|
|
||||||
"angleleft",
|
|
||||||
"registersans",
|
|
||||||
"copyrightsans",
|
|
||||||
"trademarksans",
|
|
||||||
"angleright",
|
|
||||||
"mathplus",
|
|
||||||
"mathminus",
|
|
||||||
"mathasterisk",
|
|
||||||
"mathnumbersign",
|
|
||||||
"dotmath",
|
|
||||||
"mathequal",
|
|
||||||
"mathtilde",
|
|
||||||
(char *) NULL
|
|
||||||
};
|
|
|
@ -1,269 +0,0 @@
|
||||||
/*
|
|
||||||
* text-writer -- RTF-to-text translation writer code.
|
|
||||||
*
|
|
||||||
* Read RTF input, write text of document (text extraction).
|
|
||||||
*
|
|
||||||
* Wrapper must call WriterInit() once before processing any files,
|
|
||||||
* then set up input and call BeginFile() for each input file.
|
|
||||||
*
|
|
||||||
* This installs callbacks for the text and control token classes.
|
|
||||||
* The control class is necessary so that special characters such as
|
|
||||||
* \par, \tab, \sect, etc. can be converted.
|
|
||||||
*
|
|
||||||
* It's problematic what to do with text in headers and footers, and
|
|
||||||
* what to do about tables.
|
|
||||||
*
|
|
||||||
* This really is quite a stupid program, for instance, it could keep
|
|
||||||
* track of the current leader character and dump that out when a tab
|
|
||||||
* is encountered.
|
|
||||||
*
|
|
||||||
* 04 Feb 91 Paul DuBois dubois@primate.wisc.edu
|
|
||||||
*
|
|
||||||
* This software may be redistributed without restriction and used for
|
|
||||||
* any purpose whatsoever.
|
|
||||||
*
|
|
||||||
* 04 Feb 91
|
|
||||||
* -Created.
|
|
||||||
* 27 Feb 91
|
|
||||||
* - Updated for distribution 1.05.
|
|
||||||
* 13 Jul 93
|
|
||||||
* - Updated to compile under THINK C 6.0.
|
|
||||||
* 31 Aug 93
|
|
||||||
* - Added Mike Sendall's entries for Macintosh char map.
|
|
||||||
* 07 Sep 93
|
|
||||||
* - Uses charset map and output sequence map for character translation.
|
|
||||||
* 11 Mar 94
|
|
||||||
* - Updated for 1.10 distribution.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
#include "rtf.h"
|
|
||||||
#include "rtf2text.h"
|
|
||||||
#include "wine/debug.h"
|
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(richedit);
|
|
||||||
|
|
||||||
static void TextClass (RTF_Info *info);
|
|
||||||
static void ControlClass (RTF_Info *info);
|
|
||||||
static void Destination (RTF_Info *info);
|
|
||||||
static void SpecialChar (RTF_Info *info);
|
|
||||||
static void PutStdChar (RTF_Info *info, int stdCode);
|
|
||||||
static void PutLitChar (RTF_Info *info, int c);
|
|
||||||
static void PutLitStr (RTF_Info *info, char *s);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Initialize the writer.
|
|
||||||
*/
|
|
||||||
|
|
||||||
void
|
|
||||||
WriterInit (RTF_Info *info )
|
|
||||||
{
|
|
||||||
RTFReadOutputMap (info, info->outMap,1);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
int
|
|
||||||
BeginFile (RTF_Info *info )
|
|
||||||
{
|
|
||||||
/* install class callbacks */
|
|
||||||
|
|
||||||
RTFSetClassCallback (info, rtfText, TextClass);
|
|
||||||
RTFSetClassCallback (info, rtfControl, ControlClass);
|
|
||||||
|
|
||||||
return (1);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Write out a character. rtfMajor contains the input character, rtfMinor
|
|
||||||
* contains the corresponding standard character code.
|
|
||||||
*
|
|
||||||
* If the input character isn't in the charset map, try to print some
|
|
||||||
* representation of it.
|
|
||||||
*/
|
|
||||||
|
|
||||||
static void
|
|
||||||
TextClass (RTF_Info *info)
|
|
||||||
{
|
|
||||||
char buf[rtfBufSiz];
|
|
||||||
|
|
||||||
TRACE("\n");
|
|
||||||
|
|
||||||
if (info->rtfFormat == SF_TEXT)
|
|
||||||
PutLitChar (info, info->rtfMajor);
|
|
||||||
else if (info->rtfMinor != rtfSC_nothing)
|
|
||||||
PutStdChar (info, info->rtfMinor);
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (info->rtfMajor < 128) /* in ASCII range */
|
|
||||||
sprintf (buf, "[[%c]]", info->rtfMajor);
|
|
||||||
else
|
|
||||||
sprintf (buf, "[[\\'%02x]]", info->rtfMajor);
|
|
||||||
PutLitStr (info, buf);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static void
|
|
||||||
ControlClass (RTF_Info *info)
|
|
||||||
{
|
|
||||||
TRACE("\n");
|
|
||||||
switch (info->rtfMajor)
|
|
||||||
{
|
|
||||||
case rtfDestination:
|
|
||||||
Destination (info);
|
|
||||||
break;
|
|
||||||
case rtfSpecialChar:
|
|
||||||
SpecialChar (info);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This function notices destinations that should be ignored
|
|
||||||
* and skips to their ends. This keeps, for instance, picture
|
|
||||||
* data from being considered as plain text.
|
|
||||||
*/
|
|
||||||
|
|
||||||
static void
|
|
||||||
Destination (RTF_Info *info)
|
|
||||||
{
|
|
||||||
|
|
||||||
TRACE("\n");
|
|
||||||
|
|
||||||
switch (info->rtfMinor)
|
|
||||||
{
|
|
||||||
case rtfPict:
|
|
||||||
case rtfFNContSep:
|
|
||||||
case rtfFNContNotice:
|
|
||||||
case rtfInfo:
|
|
||||||
case rtfIndexRange:
|
|
||||||
case rtfITitle:
|
|
||||||
case rtfISubject:
|
|
||||||
case rtfIAuthor:
|
|
||||||
case rtfIOperator:
|
|
||||||
case rtfIKeywords:
|
|
||||||
case rtfIComment:
|
|
||||||
case rtfIVersion:
|
|
||||||
case rtfIDoccomm:
|
|
||||||
RTFSkipGroup (info);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The reason these use the rtfSC_xxx thingies instead of just writing
|
|
||||||
* out ' ', '-', '"', etc., is so that the mapping for these characters
|
|
||||||
* can be controlled by the text-map file.
|
|
||||||
*/
|
|
||||||
|
|
||||||
void SpecialChar (RTF_Info *info)
|
|
||||||
{
|
|
||||||
|
|
||||||
TRACE("\n");
|
|
||||||
|
|
||||||
switch (info->rtfMinor)
|
|
||||||
{
|
|
||||||
case rtfPage:
|
|
||||||
case rtfSect:
|
|
||||||
case rtfRow:
|
|
||||||
case rtfLine:
|
|
||||||
case rtfPar:
|
|
||||||
PutLitChar (info, '\n');
|
|
||||||
break;
|
|
||||||
case rtfCell:
|
|
||||||
PutStdChar (info, rtfSC_space); /* make sure cells are separated */
|
|
||||||
break;
|
|
||||||
case rtfNoBrkSpace:
|
|
||||||
PutStdChar (info, rtfSC_nobrkspace);
|
|
||||||
break;
|
|
||||||
case rtfTab:
|
|
||||||
PutLitChar (info, '\t');
|
|
||||||
break;
|
|
||||||
case rtfNoBrkHyphen:
|
|
||||||
PutStdChar (info, rtfSC_nobrkhyphen);
|
|
||||||
break;
|
|
||||||
case rtfBullet:
|
|
||||||
PutStdChar (info, rtfSC_bullet);
|
|
||||||
break;
|
|
||||||
case rtfEmDash:
|
|
||||||
PutStdChar (info, rtfSC_emdash);
|
|
||||||
break;
|
|
||||||
case rtfEnDash:
|
|
||||||
PutStdChar (info, rtfSC_endash);
|
|
||||||
break;
|
|
||||||
case rtfLQuote:
|
|
||||||
PutStdChar (info, rtfSC_quoteleft);
|
|
||||||
break;
|
|
||||||
case rtfRQuote:
|
|
||||||
PutStdChar (info, rtfSC_quoteright);
|
|
||||||
break;
|
|
||||||
case rtfLDblQuote:
|
|
||||||
PutStdChar (info, rtfSC_quotedblleft);
|
|
||||||
break;
|
|
||||||
case rtfRDblQuote:
|
|
||||||
PutStdChar (info, rtfSC_quotedblright);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Eventually this should keep track of the destination of the
|
|
||||||
* current state and only write text when in the initial state.
|
|
||||||
*
|
|
||||||
* If the output sequence is unspecified in the output map, write
|
|
||||||
* the character's standard name instead. This makes map deficiencies
|
|
||||||
* obvious and provides incentive to fix it. :-)
|
|
||||||
*/
|
|
||||||
|
|
||||||
void PutStdChar (RTF_Info *info, int stdCode)
|
|
||||||
{
|
|
||||||
|
|
||||||
char *oStr = (char *) NULL;
|
|
||||||
char buf[rtfBufSiz];
|
|
||||||
|
|
||||||
/* if (stdCode == rtfSC_nothing)
|
|
||||||
RTFPanic ("Unknown character code, logic error\n");
|
|
||||||
*/
|
|
||||||
TRACE("\n");
|
|
||||||
|
|
||||||
oStr = info->outMap[stdCode];
|
|
||||||
if (oStr == (char *) NULL) /* no output sequence in map */
|
|
||||||
{
|
|
||||||
sprintf (buf, "[[%s]]", RTFStdCharName (info, stdCode));
|
|
||||||
oStr = buf;
|
|
||||||
}
|
|
||||||
PutLitStr (info, oStr);
|
|
||||||
}
|
|
||||||
|
|
||||||
void PutLitChar (RTF_Info *info, int c)
|
|
||||||
{
|
|
||||||
if( info->dwOutputCount >= ( sizeof info->OutputBuffer - 1 ) )
|
|
||||||
RTFFlushOutputBuffer( info );
|
|
||||||
info->OutputBuffer[info->dwOutputCount++] = c;
|
|
||||||
}
|
|
||||||
|
|
||||||
void RTFFlushOutputBuffer( RTF_Info *info )
|
|
||||||
{
|
|
||||||
info->OutputBuffer[info->dwOutputCount] = 0;
|
|
||||||
SendMessageA( info->hwndEdit, EM_REPLACESEL, FALSE, (LPARAM) info->OutputBuffer );
|
|
||||||
info->dwOutputCount = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void PutLitStr (RTF_Info *info, char *str )
|
|
||||||
{
|
|
||||||
int len = strlen( str );
|
|
||||||
if( ( len + info->dwOutputCount + 1 ) > sizeof info->OutputBuffer )
|
|
||||||
RTFFlushOutputBuffer( info );
|
|
||||||
if( ( len + 1 ) >= sizeof info->OutputBuffer )
|
|
||||||
{
|
|
||||||
SendMessageA( info->hwndEdit, EM_REPLACESEL, FALSE, (LPARAM) str );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
strcpy( &info->OutputBuffer[info->dwOutputCount], str );
|
|
||||||
info->dwOutputCount += len;
|
|
||||||
}
|
|
|
@ -1,172 +0,0 @@
|
||||||
/*
|
|
||||||
* Output sequence map for rtf2text
|
|
||||||
*
|
|
||||||
* Field 1 is the standard character name. Field 2 is the output sequence
|
|
||||||
* to produce for that character.
|
|
||||||
*
|
|
||||||
* The output sequence is simply a string of characters. If it contains
|
|
||||||
* whitespace, it may be quoted. If it contains quotes, it may be quoted
|
|
||||||
* with a different quote character.
|
|
||||||
*
|
|
||||||
* characters in ASCII range (32-127
|
|
||||||
*/
|
|
||||||
|
|
||||||
char *text_map[] = {
|
|
||||||
"space" ," ",
|
|
||||||
"exclam" ,"!",
|
|
||||||
"quotedbl" ,"\"",
|
|
||||||
"numbersign" ,"#",
|
|
||||||
"dollar" ,"$",
|
|
||||||
"percent" ,"%",
|
|
||||||
"ampersand" ,"&",
|
|
||||||
"quoteright" ,"'",
|
|
||||||
"parenleft" ,"(",
|
|
||||||
"parenright" ,")",
|
|
||||||
"asterisk" ,"*",
|
|
||||||
"plus" ,"+",
|
|
||||||
"comma" ,",",
|
|
||||||
"hyphen" ,"-",
|
|
||||||
"period" ,".",
|
|
||||||
"slash" ,"/",
|
|
||||||
"zero" ,"0",
|
|
||||||
"one" ,"1",
|
|
||||||
"two" ,"2",
|
|
||||||
"three" ,"3",
|
|
||||||
"four" ,"4",
|
|
||||||
"five" ,"5",
|
|
||||||
"six" ,"6",
|
|
||||||
"seven" ,"7",
|
|
||||||
"eight" ,"8",
|
|
||||||
"nine" ,"9",
|
|
||||||
"colon" ,":",
|
|
||||||
"semicolon" ,";",
|
|
||||||
"less" ,"<",
|
|
||||||
"equal" ,"=",
|
|
||||||
"greater" ,">",
|
|
||||||
"question" ,"?",
|
|
||||||
"at" ,"@",
|
|
||||||
"A" ,"A",
|
|
||||||
"B" ,"B",
|
|
||||||
"C" ,"C",
|
|
||||||
"D" ,"D",
|
|
||||||
"E" ,"E",
|
|
||||||
"F" ,"F",
|
|
||||||
"G" ,"G",
|
|
||||||
"H" ,"H",
|
|
||||||
"I" ,"I",
|
|
||||||
"J" ,"J",
|
|
||||||
"K" ,"K",
|
|
||||||
"L" ,"L",
|
|
||||||
"M" ,"M",
|
|
||||||
"N" ,"N",
|
|
||||||
"O" ,"O",
|
|
||||||
"P" ,"P",
|
|
||||||
"Q" ,"Q",
|
|
||||||
"R" ,"R",
|
|
||||||
"S" ,"S",
|
|
||||||
"T" ,"T",
|
|
||||||
"U" ,"U",
|
|
||||||
"V" ,"V",
|
|
||||||
"W" ,"W",
|
|
||||||
"X" ,"X",
|
|
||||||
"Y" ,"Y",
|
|
||||||
"Z" ,"Z",
|
|
||||||
"bracketleft" ,"[",
|
|
||||||
"backslash" ,"\\",
|
|
||||||
"bracketright" ,"]",
|
|
||||||
"asciicircum" ,"^",
|
|
||||||
"underscore" ,"_",
|
|
||||||
"quoteleft" ,"`",
|
|
||||||
"a" ,"a",
|
|
||||||
"b" ,"b",
|
|
||||||
"c" ,"c",
|
|
||||||
"d" ,"d",
|
|
||||||
"e" ,"e",
|
|
||||||
"f" ,"f",
|
|
||||||
"g" ,"g",
|
|
||||||
"h" ,"h",
|
|
||||||
"i" ,"i",
|
|
||||||
"j" ,"j",
|
|
||||||
"k" ,"k",
|
|
||||||
"l" ,"l",
|
|
||||||
"m" ,"m",
|
|
||||||
"n" ,"n",
|
|
||||||
"o" ,"o",
|
|
||||||
"p" ,"p",
|
|
||||||
"q" ,"q",
|
|
||||||
"r" ,"r",
|
|
||||||
"s" ,"s",
|
|
||||||
"t" ,"t",
|
|
||||||
"u" ,"u",
|
|
||||||
"v" ,"v",
|
|
||||||
"w" ,"w",
|
|
||||||
"x" ,"x",
|
|
||||||
"y" ,"y",
|
|
||||||
"z" ,"z",
|
|
||||||
"braceleft" ,"{",
|
|
||||||
"bar" ,"|",
|
|
||||||
"braceright" ,"}",
|
|
||||||
"asciitilde" ,"~",
|
|
||||||
"AE" ,"AE",
|
|
||||||
"OE" ,"OE",
|
|
||||||
"acute" ,"'",
|
|
||||||
"ae" ,"ae",
|
|
||||||
"angleleft" ,"<",
|
|
||||||
"angleright" ,">",
|
|
||||||
"arrowboth" ,"<->",
|
|
||||||
"arrowdblboth" ,"<=>",
|
|
||||||
"arrowdblleft" ,"<=",
|
|
||||||
"arrowdblright" ,"=>",
|
|
||||||
"arrowleft" ,"<-",
|
|
||||||
"arrowright" ,"->",
|
|
||||||
"bullet" ,"o",
|
|
||||||
"cent" ,"cent",
|
|
||||||
"circumflex" ,"^",
|
|
||||||
"copyright" ,"(c)",
|
|
||||||
"copyrightsans" ,"(c)",
|
|
||||||
"degree" ,"deg.",
|
|
||||||
"divide" ,"/",
|
|
||||||
"dotlessi" ,"i",
|
|
||||||
"ellipsis" ,"...",
|
|
||||||
"emdash" ,"--",
|
|
||||||
"endash" ,"-",
|
|
||||||
"fi" ,"fi",
|
|
||||||
"fl" ,"fl",
|
|
||||||
"fraction" ,"/",
|
|
||||||
"germandbls" ,"ss",
|
|
||||||
"grave" ,"`",
|
|
||||||
"greaterequal" ,">=",
|
|
||||||
"guillemotleft" ,"<<",
|
|
||||||
"guillemotright" ,">>",
|
|
||||||
"guilsinglleft" ,"<",
|
|
||||||
"guilsinglright" ,">",
|
|
||||||
"lessequal" ,"<=",
|
|
||||||
"logicalnot" ,"~",
|
|
||||||
"mathasterisk" ,"*",
|
|
||||||
"mathequal" ,"=",
|
|
||||||
"mathminus" ,"-",
|
|
||||||
"mathnumbersign" ,"#",
|
|
||||||
"mathplus" ,"+",
|
|
||||||
"mathtilde" ,"~",
|
|
||||||
"minus" ,"-",
|
|
||||||
"mu" ,"u",
|
|
||||||
"multiply" ,"x",
|
|
||||||
"nobrkhyphen" ,"-",
|
|
||||||
"nobrkspace" ," ",
|
|
||||||
"notequal" ,"!=",
|
|
||||||
"oe" ,"oe",
|
|
||||||
"onehalf" ,"1/2",
|
|
||||||
"onequarter" ,"1/4",
|
|
||||||
"periodcentered" ,".",
|
|
||||||
"plusminus" ,"+/-",
|
|
||||||
"quotedblbase" ,",,",
|
|
||||||
"quotedblleft" ,"\"",
|
|
||||||
"quotedblright" ,"\"",
|
|
||||||
"quotesinglbase" ,",",
|
|
||||||
"registered" ,"reg.",
|
|
||||||
"registersans" ,"reg.",
|
|
||||||
"threequarters" ,"3/4",
|
|
||||||
"tilde" ,"~",
|
|
||||||
"trademark" ,"(TM)",
|
|
||||||
"trademarksans" ,"(TM)"
|
|
||||||
};
|
|
Loading…
Reference in a new issue