]> git.lyx.org Git - features.git/commitdiff
Rename files under src/tex2lyx
authorBo Peng <bpeng@lyx.org>
Thu, 26 Apr 2007 04:53:06 +0000 (04:53 +0000)
committerBo Peng <bpeng@lyx.org>
Thu, 26 Apr 2007 04:53:06 +0000 (04:53 +0000)
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

13 files changed:
development/cmake/src/tex2lyx/CMakeLists.txt
development/scons/scons_manifest.py
src/tex2lyx/Makefile.am
src/tex2lyx/context.C
src/tex2lyx/context.h
src/tex2lyx/math.C
src/tex2lyx/preamble.C
src/tex2lyx/table.C
src/tex2lyx/tex2lyx.C
src/tex2lyx/tex2lyx.h
src/tex2lyx/texparser.C
src/tex2lyx/texparser.h
src/tex2lyx/text.C

index ab414e8c6eb98af889aa6d87f840d28ed2f64264..417bbb4902bed150835d290431cc4ef6226a63cd 100644 (file)
@@ -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
 )
 
index b5e31f1572fe54dd56ed77ab1d6c74c2b01c9317..9efae2cb2fe41809361f60ee68b7fa71da856698 100644 (file)
@@ -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
 ''')
 
index 1481063aa7537892d6cd3b6c2c48489b7946b903..c887d39075c3d7f15cde6659f557383ed4db2a2b 100644 (file)
@@ -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 = \
index 12404d9d12711564dbd08203c6a5500425e4223b..36d1ec17828bad6cebd2edf6a968817c695f2598 100644 (file)
@@ -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 {
index 7e795185ec74c99b413d0472158927f4d721b0c8..307e0d65e660884cf0311914557c619a06c6edfe 100644 (file)
@@ -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.
  *
index 7e03031872761828328c8b50acd89a51dff519e8..c2af18f0095ec17d0a30a81e525b1a576c43f536 100644 (file)
@@ -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.
  *
index 5b1344570b92bc79d9d0a34d7c14d571b600690e..db16af20815700728b67eef83187232154e6b7dc 100644 (file)
@@ -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.
  *
index 1179a55c0459552b1d9aee12ed371494abe8a37a..35de97af6a5ef8ad0d9c5082ff9c8a3fb0c92dff 100644 (file)
@@ -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;
 
 
index b421c1f1ed9e2fc33ae63fd4a41d75d86b501f0a..81afdaec6f03648678be8b3b2677d0c479df7ca6 100644 (file)
@@ -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"
index 4452c77b79096531f5fde8c59a4c9bf3adebd2a4..bde27dab57325008b1900e280775e591144a67ee 100644 (file)
@@ -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,
index 52cb324eb2c2a131283c2eeef13906c0347799e4..cdd5c3992160ac3a3d39d03b70a1f0b2bed9a074 100644 (file)
@@ -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>
index 8a1f37132f91f5cb311d9e914c38646f49942e1c..5c8489821001d64d9db75e1726e64279da0dc144 100644 (file)
@@ -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.
  *
index 5db0711a5c65502319ed2a2ed2f8b24561ad2557..136903a283fdcbd32690ab4f15056fd860675696 100644 (file)
@@ -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"