mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
04d8b7b72b
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3852 a592a061-630c-0410-9148-cb99ea01b6c8
78 lines
1.6 KiB
C++
78 lines
1.6 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file MathsSymbols.h
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author Alejandro Aguilar Sierra
|
|
* \author John Levon, moz@compsoc.man.ac.uk
|
|
*/
|
|
|
|
#ifndef MATHS_SYMBOLS_H
|
|
#define MATHS_SYMBOLS_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
/// values used by the xforms callbacks
|
|
enum MathsCallbackValues {
|
|
MM_GREEK,
|
|
MM_ARROW,
|
|
MM_BOP,
|
|
MM_BRELATS,
|
|
MM_VARSIZE,
|
|
MM_MISC,
|
|
MM_FRAC,
|
|
MM_SQRT,
|
|
MM_DELIM,
|
|
MM_SUPER,
|
|
MM_SUB,
|
|
MM_SUBSUPER,
|
|
MM_MATRIX,
|
|
MM_EQU,
|
|
MM_DECO,
|
|
MM_SPACE,
|
|
MM_STYLE,
|
|
MM_DOTS,
|
|
MM_AMS_MISC,
|
|
MM_AMS_ARROWS,
|
|
MM_AMS_BREL,
|
|
MM_AMS_NREL,
|
|
MM_AMS_OPS,
|
|
MM_FUNC
|
|
};
|
|
|
|
extern char const * function_names[];
|
|
extern int const nr_function_names;
|
|
extern char const * latex_arrow[];
|
|
extern int const nr_latex_arrow;
|
|
extern char const * latex_bop[];
|
|
extern int const nr_latex_bop;
|
|
extern char const * latex_brel[];
|
|
extern int const nr_latex_brel;
|
|
extern char const * latex_dots[];
|
|
extern int const nr_latex_dots;
|
|
extern char const * latex_greek[];
|
|
extern int const nr_latex_greek;
|
|
extern char const * latex_misc[];
|
|
extern int const nr_latex_misc;
|
|
extern char const * latex_varsz[];
|
|
extern int const nr_latex_varsz;
|
|
extern char const * latex_ams_misc[];
|
|
extern int const nr_latex_ams_misc;
|
|
extern char const * latex_ams_arrows[];
|
|
extern int const nr_latex_ams_arrows;
|
|
extern char const * latex_ams_rel[];
|
|
extern int const nr_latex_ams_rel;
|
|
extern char const * latex_ams_nrel[];
|
|
extern int const nr_latex_ams_nrel;
|
|
extern char const * latex_ams_ops[];
|
|
extern int const nr_latex_ams_ops;
|
|
|
|
|
|
|
|
char const ** get_pixmap_from_symbol(char const *, int, int);
|
|
|
|
#endif /* MATHS_SYMBOLS_H */
|