mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
Rename files under src/tex2lyx
src/tex2lyx/lyxfont.C src/tex2lyx/LyXFont.cpp LyXFont src/tex2lyx/lyxfont.h src/tex2lyx/LyXFont.h LyXFont src/tex2lyx/texparser.C src/tex2lyx/Parser.cpp ['Token', 'Parser'] src/tex2lyx/tex2lyx.C src/tex2lyx/tex2lyx.cpp NOCLASSES src/tex2lyx/texparser.h src/tex2lyx/Parser.h ['Token', 'Parser'] src/tex2lyx/text.C src/tex2lyx/text.cpp NOCLASSES src/tex2lyx/tex2lyx.h src/tex2lyx/tex2lyx.h NOCLASSES src/tex2lyx/context.C src/tex2lyx/Context.cpp ['Font', 'Context'] src/tex2lyx/gettext.C src/tex2lyx/gettext.cpp NOCLASSES src/tex2lyx/boost.C src/tex2lyx/boost.cpp NOCLASSES src/tex2lyx/table.C src/tex2lyx/table.cpp NOCLASSES src/tex2lyx/preamble.C src/tex2lyx/preamble.cpp NOCLASSES src/tex2lyx/math.C src/tex2lyx/math.cpp NOCLASSES src/tex2lyx/context.h src/tex2lyx/Context.h ['Font', 'Context'] src/tex2lyx/Spacing.h src/tex2lyx/Spacing.h Spacing src/tex2lyx/lengthcommon.C src/tex2lyx/lengthcommon.cpp NOCLASSES git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18022 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
bacd98eab6
commit
8cc88bf1ec
@ -19,15 +19,15 @@ set(LINKED_FILES
|
||||
|
||||
set(tex2lyx_sources
|
||||
${TOP_SRC_DIR}/src/tex2lyx/boost.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/context.C
|
||||
${TOP_SRC_DIR}/src/tex2lyx/Context.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/gettext.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/lengthcommon.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/LyXFont.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/texparser.C
|
||||
${TOP_SRC_DIR}/src/tex2lyx/tex2lyx.C
|
||||
${TOP_SRC_DIR}/src/tex2lyx/preamble.C
|
||||
${TOP_SRC_DIR}/src/tex2lyx/math.C
|
||||
${TOP_SRC_DIR}/src/tex2lyx/table.C
|
||||
${TOP_SRC_DIR}/src/tex2lyx/Parser.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/tex2lyx.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/preamble.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/math.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/table.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/text.cpp
|
||||
)
|
||||
|
||||
@ -35,9 +35,9 @@ set(tex2lyx_headers
|
||||
${TOP_SRC_DIR}/src/LyXLayout.h
|
||||
${TOP_SRC_DIR}/src/LyXTextClass.h
|
||||
${TOP_SRC_DIR}/src/tex2lyx/Spacing.h
|
||||
${TOP_SRC_DIR}/src/tex2lyx/context.h
|
||||
${TOP_SRC_DIR}/src/tex2lyx/Context.h
|
||||
${TOP_SRC_DIR}/src/tex2lyx/LyXFont.h
|
||||
${TOP_SRC_DIR}/src/tex2lyx/texparser.h
|
||||
${TOP_SRC_DIR}/src/tex2lyx/Parser.h
|
||||
${TOP_SRC_DIR}/src/tex2lyx/tex2lyx.h
|
||||
)
|
||||
|
||||
|
@ -925,10 +925,10 @@ src_client_files = Split('''
|
||||
|
||||
src_tex2lyx_header_files = Split('''
|
||||
Spacing.h
|
||||
context.h
|
||||
Context.h
|
||||
LyXFont.h
|
||||
tex2lyx.h
|
||||
texparser.h
|
||||
Parser.h
|
||||
''')
|
||||
|
||||
|
||||
@ -936,7 +936,7 @@ src_tex2lyx_files = Split('''
|
||||
FloatList.cpp
|
||||
Floating.cpp
|
||||
boost.cpp
|
||||
context.C
|
||||
Context.cpp
|
||||
Counters.cpp
|
||||
gettext.cpp
|
||||
lengthcommon.cpp
|
||||
@ -944,11 +944,11 @@ src_tex2lyx_files = Split('''
|
||||
LyXLayout.cpp
|
||||
LyXLex.cpp
|
||||
LyXTextClass.cpp
|
||||
math.C
|
||||
preamble.C
|
||||
table.C
|
||||
tex2lyx.C
|
||||
texparser.C
|
||||
math.cpp
|
||||
preamble.cpp
|
||||
table.cpp
|
||||
tex2lyx.cpp
|
||||
Parser.cpp
|
||||
text.cpp
|
||||
''')
|
||||
|
||||
|
@ -7,8 +7,8 @@ DISTCLEANFILES += tex2lyx.1 $(LINKED_FILES)
|
||||
#noinst_LTLIBRARIES = libtexparser.la
|
||||
#
|
||||
#libtexparser_la_SOURCES = \
|
||||
# texparser.C \
|
||||
# texparser.h
|
||||
# Parser.cpp \
|
||||
# Parser.h
|
||||
#
|
||||
#tex2lyx_LDADD = libtexparser.la
|
||||
|
||||
@ -38,19 +38,19 @@ tex2lyx_SOURCES = \
|
||||
$(LINKED_FILES) \
|
||||
Spacing.h \
|
||||
boost.cpp \
|
||||
context.C \
|
||||
context.h \
|
||||
Context.cpp \
|
||||
Context.h \
|
||||
gettext.cpp \
|
||||
lengthcommon.cpp \
|
||||
LyXFont.cpp \
|
||||
LyXFont.h \
|
||||
texparser.C \
|
||||
texparser.h \
|
||||
tex2lyx.C \
|
||||
Parser.cpp \
|
||||
Parser.h \
|
||||
tex2lyx.cpp \
|
||||
tex2lyx.h \
|
||||
preamble.C \
|
||||
math.C \
|
||||
table.C \
|
||||
preamble.cpp \
|
||||
math.cpp \
|
||||
table.cpp \
|
||||
text.cpp
|
||||
|
||||
tex2lyx_LDADD = \
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file context.C
|
||||
* \file Context.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -13,7 +13,7 @@
|
||||
#include <iostream>
|
||||
|
||||
#include "support/lstrings.h"
|
||||
#include "context.h"
|
||||
#include "Context.h"
|
||||
|
||||
|
||||
namespace lyx {
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file context.h
|
||||
* \file Context.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file math.C
|
||||
* \file math.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file preamble.C
|
||||
* \file preamble.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file table.C
|
||||
* \file table.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -36,7 +36,7 @@ using std::string;
|
||||
using std::vector;
|
||||
|
||||
|
||||
// filled in preamble.C
|
||||
// filled in preamble.cpp
|
||||
std::map<char, int> special_columns;
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file tex2lyx.C
|
||||
* \file tex2lyx.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -13,7 +13,7 @@
|
||||
#include <config.h>
|
||||
|
||||
#include "tex2lyx.h"
|
||||
#include "context.h"
|
||||
#include "Context.h"
|
||||
|
||||
#include "debug.h"
|
||||
#include "LyXTextClass.h"
|
||||
|
@ -13,7 +13,7 @@
|
||||
#ifndef TEX2LYX_H
|
||||
#define TEX2LYX_H
|
||||
|
||||
#include "texparser.h"
|
||||
#include "Parser.h"
|
||||
#include "LyXTextClass.h"
|
||||
|
||||
#include <iosfwd>
|
||||
@ -28,7 +28,7 @@ namespace support { class FileName; }
|
||||
|
||||
class Context;
|
||||
|
||||
/// in preamble.C
|
||||
/// in preamble.cpp
|
||||
LyXTextClass const parse_preamble(Parser & p, std::ostream & os, std::string const & forceclass);
|
||||
|
||||
/// used packages with options
|
||||
@ -52,16 +52,16 @@ void parse_text_in_inset(Parser & p, std::ostream & os, unsigned flags,
|
||||
bool outer, Context const & context);
|
||||
|
||||
|
||||
/// in math.C
|
||||
/// in math.cpp
|
||||
void parse_math(Parser & p, std::ostream & os, unsigned flags, mode_type mode);
|
||||
|
||||
|
||||
/// in table.C
|
||||
/// in table.cpp
|
||||
void handle_tabular(Parser & p, std::ostream & os, bool is_long_tabular,
|
||||
Context & context);
|
||||
|
||||
|
||||
/// in tex2lyx.C
|
||||
/// in tex2lyx.cpp
|
||||
std::string const trim(std::string const & a, char const * p = " \t\n\r");
|
||||
|
||||
void split(std::string const & s, std::vector<std::string> & result,
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file texparser.C
|
||||
* \file Parser.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -10,7 +10,7 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "texparser.h"
|
||||
#include "Parser.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file texparser.h
|
||||
* \file Parser.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include <config.h>
|
||||
|
||||
#include "tex2lyx.h"
|
||||
#include "context.h"
|
||||
#include "Context.h"
|
||||
#include "FloatList.h"
|
||||
#include "lengthcommon.h"
|
||||
#include "support/lstrings.h"
|
||||
|
Loading…
Reference in New Issue
Block a user