X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftex-strings.h;h=28c59ed4d5c6e9b06710ae2d932d3cab7d292883;hb=89b422b320a352e503c0625820da1073805d74a9;hp=8d06300fdf233f385a1e1469596b6777d0e80e89;hpb=45a03f4f67bb00f8142e465c615f348f0622eb32;p=lyx.git diff --git a/src/tex-strings.h b/src/tex-strings.h index 8d06300fdf..28c59ed4d5 100644 --- a/src/tex-strings.h +++ b/src/tex-strings.h @@ -1,46 +1,54 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. +/** + * \file tex-strings.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * ====================================================== */ + * \author Lars Gullik Bjønnes + * \author Jean-Marc Lasgouttes + * + * Full author contact details are available in file CREDITS. + */ #ifndef TEX_STRINGS #define TEX_STRINGS -#ifdef __GNUG__ -#pragma interface -#endif - -// this file should perhaps be split into even smaler parts +namespace lyx { /// -extern char const * string_paragraph_separation[]; +extern char const * const string_paragraph_separation[]; /// -extern char const * string_quotes_language[]; +extern char const * const string_quotes_language[]; /// -extern char const * string_papersize[]; +extern char const * const string_papersize[]; /// -extern char const * string_paperpackages[]; +extern char const * const string_orientation[]; /// -extern char const * string_orientation[]; +extern char const * const string_footnotekinds[]; /// -extern char const * string_footnotekinds[]; -/// -extern char const * string_align[]; +extern char const * const string_align[]; // The following was moved from tex-defs.h to here, because tex-defs.h is -// used all over. As it happens, that meant that these strings were included +// used all over. As it happens, that meant that these strings were included // 27 times in the object file. (Asger) /// -extern char const * tex_graphics[]; +extern char const * const tex_graphics[]; /// -extern char const * tex_fonts[]; +extern char const * const tex_fonts_roman[]; +/// +extern char const * tex_fonts_roman_gui[]; +/// +extern char const * const tex_fonts_sans[]; +/// +extern char const * tex_fonts_sans_gui[]; +/// +extern char const * const tex_fonts_monospaced[]; +/// +extern char const * tex_fonts_monospaced_gui[]; + + +} // namespace lyx #endif