1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
2000-07-24 13:53:19 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1995-2001 The LyX Team.
|
2000-07-24 13:53:19 +00:00
|
|
|
*
|
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
#ifndef TEX_STRINGS
|
|
|
|
#define TEX_STRINGS
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// this file should perhaps be split into even smaler parts
|
|
|
|
|
|
|
|
///
|
1999-11-15 12:01:38 +00:00
|
|
|
extern char const * string_paragraph_separation[];
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
1999-11-15 12:01:38 +00:00
|
|
|
extern char const * string_quotes_language[];
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
1999-11-15 12:01:38 +00:00
|
|
|
extern char const * string_papersize[];
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
1999-11-15 12:01:38 +00:00
|
|
|
extern char const * string_paperpackages[];
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
1999-11-15 12:01:38 +00:00
|
|
|
extern char const * string_orientation[];
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
1999-11-15 12:01:38 +00:00
|
|
|
extern char const * string_footnotekinds[];
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
1999-11-15 12:01:38 +00:00
|
|
|
extern char const * string_align[];
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// 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
|
|
|
|
// 27 times in the object file. (Asger)
|
|
|
|
|
|
|
|
///
|
1999-11-15 12:01:38 +00:00
|
|
|
extern char const * tex_graphics[];
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
///
|
1999-11-15 12:01:38 +00:00
|
|
|
extern char const * tex_fonts[];
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#endif
|