mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Rename .C ==> .cpp for files in src, part one
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18018 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
9a17e559f2
commit
00e305c9d9
@ -184,7 +184,7 @@ A typical working sequence:
|
||||
(build lyx, client and tex2lyx, options like qt_dir will be carried
|
||||
over here)
|
||||
> scons rebuild=lyxbase
|
||||
(working on lyx_main.C, so only need to rebuild lyxbase)
|
||||
(working on LyX.cpp, so only need to rebuild lyxbase)
|
||||
> scons
|
||||
(build again, only lyxbase will be rebuilt)
|
||||
> scons prefix=/usr/site DESTDIR=/install/dir
|
||||
|
@ -33,7 +33,7 @@ AC_DEFUN([CHECK_WITH_PSPELL],
|
||||
test "$with_pspell" = "no" && lyx_use_pspell=false
|
||||
|
||||
if $lyx_use_pspell ; then
|
||||
AC_CHECK_HEADERS(pspell/pspell.h,, lyx_use_pspell=false)
|
||||
AC_CHECK_HEADERS(pspell/PSpell.h,, lyx_use_pspell=false)
|
||||
AC_CHECK_LIB(pspell, main, LIBS="-lpspell $LIBS", lyx_use_pspell=false)
|
||||
|
||||
AC_MSG_CHECKING([whether to use pspell])
|
||||
|
@ -3,7 +3,7 @@ dnl Process with autoconf to generate configure script -*- sh -*-
|
||||
AC_INIT(LyX,1.5.0svn,[lyx-devel@lists.lyx.org],[lyx])
|
||||
AC_SUBST(LYX_DATE, ["Sat, April 21, 2007"])
|
||||
AC_PREREQ(2.52)
|
||||
AC_CONFIG_SRCDIR(src/main.C)
|
||||
AC_CONFIG_SRCDIR(src/main.cpp)
|
||||
AC_CONFIG_HEADERS([src/config.h])
|
||||
|
||||
AC_CONFIG_AUX_DIR(config)
|
||||
|
@ -24,15 +24,15 @@ file(GLOB lyx_sources ${TOP_SRC_DIR}/src/${LYX_CPP_FILES})
|
||||
file(GLOB lyx_headers ${TOP_SRC_DIR}/src/${LYX_HPP_FILES})
|
||||
|
||||
list(REMOVE_ITEM lyx_sources
|
||||
${TOP_SRC_DIR}/src/aspell.C
|
||||
${TOP_SRC_DIR}/src/pspell.C
|
||||
${TOP_SRC_DIR}/src/ispell.C
|
||||
${TOP_SRC_DIR}/src/Variables.C
|
||||
${TOP_SRC_DIR}/src/Sectioning.C)
|
||||
${TOP_SRC_DIR}/src/ASpell.cpp
|
||||
${TOP_SRC_DIR}/src/PSpell.cpp
|
||||
${TOP_SRC_DIR}/src/ISpell.cpp
|
||||
${TOP_SRC_DIR}/src/Variables.cpp
|
||||
${TOP_SRC_DIR}/src/Section.cpp)
|
||||
|
||||
if(ASPELL_FOUND)
|
||||
include_directories(${ASPELL_INCLUDE_DIR})
|
||||
set(lyx_sources ${lyx_sources} ${TOP_SRC_DIR}/src/aspell.C)
|
||||
set(lyx_sources ${lyx_sources} ${TOP_SRC_DIR}/src/ASpell.cpp)
|
||||
endif(ASPELL_FOUND)
|
||||
|
||||
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||||
|
@ -9,34 +9,34 @@ project(tex2lyx)
|
||||
|
||||
|
||||
set(LINKED_FILES
|
||||
${TOP_SRC_DIR}/src/FloatList.C
|
||||
${TOP_SRC_DIR}/src/Floating.C
|
||||
${TOP_SRC_DIR}/src/counters.C
|
||||
${TOP_SRC_DIR}/src/lyxlayout.C
|
||||
${TOP_SRC_DIR}/src/lyxtextclass.C
|
||||
${TOP_SRC_DIR}/src/lyxlex.C
|
||||
${TOP_SRC_DIR}/src/FloatList.cpp
|
||||
${TOP_SRC_DIR}/src/Floating.cpp
|
||||
${TOP_SRC_DIR}/src/Counters.cpp
|
||||
${TOP_SRC_DIR}/src/LyXLayout.cpp
|
||||
${TOP_SRC_DIR}/src/LyXTextClass.cpp
|
||||
${TOP_SRC_DIR}/src/LyXLex.cpp
|
||||
)
|
||||
|
||||
set(tex2lyx_sources
|
||||
${TOP_SRC_DIR}/src/tex2lyx/boost.C
|
||||
${TOP_SRC_DIR}/src/tex2lyx/boost.cpp
|
||||
${TOP_SRC_DIR}/src/tex2lyx/context.C
|
||||
${TOP_SRC_DIR}/src/tex2lyx/gettext.C
|
||||
${TOP_SRC_DIR}/src/tex2lyx/lengthcommon.C
|
||||
${TOP_SRC_DIR}/src/tex2lyx/lyxfont.C
|
||||
${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/text.C
|
||||
${TOP_SRC_DIR}/src/tex2lyx/text.cpp
|
||||
)
|
||||
|
||||
set(tex2lyx_headers
|
||||
${TOP_SRC_DIR}/src/lyxlayout.h
|
||||
${TOP_SRC_DIR}/src/lyxtextclass.h
|
||||
${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/lyxfont.h
|
||||
${TOP_SRC_DIR}/src/tex2lyx/LyXFont.h
|
||||
${TOP_SRC_DIR}/src/tex2lyx/texparser.h
|
||||
${TOP_SRC_DIR}/src/tex2lyx/tex2lyx.h
|
||||
)
|
||||
@ -44,13 +44,13 @@ set(tex2lyx_headers
|
||||
include_directories(BEFORE ${TOP_SRC_DIR}/src/tex2lyx)
|
||||
|
||||
if(MSVC)
|
||||
SET_SOURCE_FILES_PROPERTIES(${TOP_SRC_DIR}/src/lyxlayout.C ${TOP_SRC_DIR}/src/lyxtextclass.C
|
||||
SET_SOURCE_FILES_PROPERTIES(${TOP_SRC_DIR}/src/LyXLayout.cpp ${TOP_SRC_DIR}/src/LyXTextClass.cpp
|
||||
PROPERTIES COMPILE_FLAGS
|
||||
"/FI${TOP_SRC_DIR}/src/tex2lyx/lyxfont.h /FI${TOP_SRC_DIR}/src/tex2lyx/Spacing.h")
|
||||
"/FI${TOP_SRC_DIR}/src/tex2lyx/LyXFont.h /FI${TOP_SRC_DIR}/src/tex2lyx/Spacing.h")
|
||||
else(MSVC)
|
||||
SET_SOURCE_FILES_PROPERTIES(${TOP_SRC_DIR}/src/lyxlayout.C ${TOP_SRC_DIR}/src/lyxtextclass.C
|
||||
SET_SOURCE_FILES_PROPERTIES(${TOP_SRC_DIR}/src/LyXLayout.cpp ${TOP_SRC_DIR}/src/LyXTextClass.cpp
|
||||
PROPERTIES COMPILE_FLAGS
|
||||
"-include ${TOP_SRC_DIR}/src/tex2lyx/lyxfont.h -include ${TOP_SRC_DIR}/src/tex2lyx/Spacing.h")
|
||||
"-include ${TOP_SRC_DIR}/src/tex2lyx/LyXFont.h -include ${TOP_SRC_DIR}/src/tex2lyx/Spacing.h")
|
||||
endif(MSVC)
|
||||
|
||||
#TODO
|
||||
|
@ -1793,8 +1793,8 @@ if build_tex2lyx:
|
||||
print "Processing files in src/tex2lyx..."
|
||||
|
||||
#
|
||||
for file in ['FloatList.C', 'Floating.C', 'counters.C', 'lyxlayout.h', 'lyxlayout.C',
|
||||
'lyxtextclass.h', 'lyxtextclass.C', 'lyxlex.C', 'lyxlex_pimpl.C']:
|
||||
for file in ['FloatList.cpp', 'Floating.cpp', 'Counters.cpp', 'LyXLayout.h', 'LyXLayout.cpp',
|
||||
'LyXTextClass.h', 'LyXTextClass.cpp', 'LyXLex.cpp', 'lyxlex_pimpl.C']:
|
||||
frontend_env.Command('$BUILDDIR/common/tex2lyx/'+file, '$TOP_SRCDIR/src/'+file,
|
||||
[Copy('$TARGET', '$SOURCE')])
|
||||
|
||||
@ -1824,14 +1824,14 @@ if build_lyxbase:
|
||||
env.substFile('$BUILDDIR/common/version.C', '$TOP_SRCDIR/src/version.C.in')
|
||||
|
||||
if env.has_key('USE_ASPELL') and env['USE_ASPELL']:
|
||||
src_post_files.append('aspell.C')
|
||||
src_post_files.append('ASpell.cpp')
|
||||
elif env.has_key('USE_PSPELL') and env['USE_PSPELL']:
|
||||
src_post_files.append('pspell.C')
|
||||
src_post_files.append('PSpell.cpp')
|
||||
elif env.has_key('USE_ISPELL') and env['USE_ISPELL']:
|
||||
src_post_files.append('ispell.C')
|
||||
src_post_files.append('ISpell.cpp')
|
||||
|
||||
# msvc requires at least one source file with main()
|
||||
# so I exclude main.C from lyxbase
|
||||
# so I exclude main.cpp from lyxbase
|
||||
lyxbase_pre = env.StaticLibrary(
|
||||
target = '$LOCALLIBPATH/lyxbase_pre',
|
||||
source = ['$BUILDDIR/common/%s' % x for x in src_pre_files]
|
||||
@ -1850,7 +1850,7 @@ if build_lyx:
|
||||
#
|
||||
lyx = frontend_env.Program(
|
||||
target = '$BUILDDIR/lyx',
|
||||
source = ['$BUILDDIR/common/main.C'] + \
|
||||
source = ['$BUILDDIR/common/main.cpp'] + \
|
||||
utils.createResFromIcon(frontend_env, 'lyx_32x32.ico', '$LOCALLIBPATH/lyx.rc'),
|
||||
LIBS = [
|
||||
'lyxbase_pre',
|
||||
|
@ -910,46 +910,46 @@ src_frontends_qt4_files = Split('''
|
||||
|
||||
src_client_header_files = Split('''
|
||||
debug.h
|
||||
messages.h
|
||||
Messages.h
|
||||
''')
|
||||
|
||||
|
||||
src_client_files = Split('''
|
||||
boost.C
|
||||
boost.cpp
|
||||
client.C
|
||||
debug.C
|
||||
gettext.C
|
||||
messages.C
|
||||
debug.cpp
|
||||
gettext.cpp
|
||||
Messages.cpp
|
||||
''')
|
||||
|
||||
|
||||
src_tex2lyx_header_files = Split('''
|
||||
Spacing.h
|
||||
context.h
|
||||
lyxfont.h
|
||||
LyXFont.h
|
||||
tex2lyx.h
|
||||
texparser.h
|
||||
''')
|
||||
|
||||
|
||||
src_tex2lyx_files = Split('''
|
||||
FloatList.C
|
||||
Floating.C
|
||||
boost.C
|
||||
FloatList.cpp
|
||||
Floating.cpp
|
||||
boost.cpp
|
||||
context.C
|
||||
counters.C
|
||||
gettext.C
|
||||
lengthcommon.C
|
||||
lyxfont.C
|
||||
lyxlayout.C
|
||||
lyxlex.C
|
||||
lyxtextclass.C
|
||||
Counters.cpp
|
||||
gettext.cpp
|
||||
lengthcommon.cpp
|
||||
LyXFont.cpp
|
||||
LyXLayout.cpp
|
||||
LyXLex.cpp
|
||||
LyXTextClass.cpp
|
||||
math.C
|
||||
preamble.C
|
||||
table.C
|
||||
tex2lyx.C
|
||||
texparser.C
|
||||
text.C
|
||||
text.cpp
|
||||
''')
|
||||
|
||||
|
||||
@ -959,7 +959,7 @@ src_header_files = Split('''
|
||||
BufferView.h
|
||||
Bullet.h
|
||||
Chktex.h
|
||||
Color.h
|
||||
color.h
|
||||
ConverterCache.h
|
||||
CutAndPaste.h
|
||||
DepTable.h
|
||||
@ -978,7 +978,7 @@ src_header_files = Split('''
|
||||
ParagraphParameters.h
|
||||
PrinterParams.h
|
||||
RowList_fwd.h
|
||||
Sectioning.h
|
||||
Section.h
|
||||
Spacing.h
|
||||
SpellBase.h
|
||||
Thesaurus.h
|
||||
@ -987,204 +987,204 @@ src_header_files = Split('''
|
||||
UpdateFlags.h
|
||||
Variables.h
|
||||
WordLangTuple.h
|
||||
aspell_local.h
|
||||
author.h
|
||||
box.h
|
||||
buffer.h
|
||||
ASpell_local.h
|
||||
Author.h
|
||||
Box.h
|
||||
Buffer.h
|
||||
buffer_funcs.h
|
||||
bufferlist.h
|
||||
bufferparams.h
|
||||
BufferList.h
|
||||
BufferParams.h
|
||||
bufferview_funcs.h
|
||||
changes.h
|
||||
converter.h
|
||||
coordcache.h
|
||||
counters.h
|
||||
cursor.h
|
||||
cursor_slice.h
|
||||
Changes.h
|
||||
Converter.h
|
||||
CoordCache.h
|
||||
Counters.h
|
||||
LCursor.h
|
||||
CursorSlice.h
|
||||
debug.h
|
||||
dimension.h
|
||||
dispatchresult.h
|
||||
dociterator.h
|
||||
encoding.h
|
||||
errorlist.h
|
||||
exporter.h
|
||||
Dimension.h
|
||||
DispatchResult.h
|
||||
DocIterator.h
|
||||
Encoding.h
|
||||
ErrorList.h
|
||||
Exporter.h
|
||||
factory.h
|
||||
format.h
|
||||
funcrequest.h
|
||||
Format.h
|
||||
FuncRequest.h
|
||||
gettext.h
|
||||
graph.h
|
||||
importer.h
|
||||
insetiterator.h
|
||||
intl.h
|
||||
ispell.h
|
||||
kbmap.h
|
||||
kbsequence.h
|
||||
language.h
|
||||
Graph.h
|
||||
Importer.h
|
||||
InsetIterator.h
|
||||
Intl.h
|
||||
ISpell.h
|
||||
kb_keymap.h
|
||||
kb_sequence.h
|
||||
Language.h
|
||||
layout.h
|
||||
lengthcommon.h
|
||||
lfuns.h
|
||||
lyx_cb.h
|
||||
lyx_main.h
|
||||
LyX.h
|
||||
lyx_sty.h
|
||||
lyxfind.h
|
||||
lyxfont.h
|
||||
lyxfunc.h
|
||||
lyxgluelength.h
|
||||
lyxlayout.h
|
||||
LyXFont.h
|
||||
LyXFunc.h
|
||||
LyXGlueLength.h
|
||||
LyXLayout.h
|
||||
lyxlayout_ptr_fwd.h
|
||||
lyxlength.h
|
||||
lyxlex.h
|
||||
lyxrc.h
|
||||
lyxrow.h
|
||||
lyxserver.h
|
||||
lyxsocket.h
|
||||
lyxtext.h
|
||||
lyxtextclass.h
|
||||
lyxtextclasslist.h
|
||||
lyxvc.h
|
||||
messages.h
|
||||
metricsinfo.h
|
||||
mover.h
|
||||
LyXLength.h
|
||||
LyXLex.h
|
||||
LyXRC.h
|
||||
Row.h
|
||||
LyXServer.h
|
||||
LyXServerSocket.h
|
||||
LyXText.h
|
||||
LyXTextClass.h
|
||||
LyXTextClassList.h
|
||||
LyXVC.h
|
||||
Messages.h
|
||||
MetricsInfo.h
|
||||
Mover.h
|
||||
output.h
|
||||
output_docbook.h
|
||||
output_latex.h
|
||||
output_plaintext.h
|
||||
outputparams.h
|
||||
OutputParams.h
|
||||
paper.h
|
||||
paragraph.h
|
||||
Paragraph.h
|
||||
paragraph_funcs.h
|
||||
ParagraphMetrics.h
|
||||
pariterator.h
|
||||
pspell.h
|
||||
ParIterator.h
|
||||
PSpell.h
|
||||
rowpainter.h
|
||||
session.h
|
||||
Session.h
|
||||
sgml.h
|
||||
tabular.h
|
||||
LyXTabular.h
|
||||
tex-accent.h
|
||||
tex-strings.h
|
||||
texrow.h
|
||||
TexRow.h
|
||||
TextMetrics.h
|
||||
toc.h
|
||||
trans.h
|
||||
trans_decl.h
|
||||
trans_mgr.h
|
||||
undo.h
|
||||
vc-backend.h
|
||||
Trans.h
|
||||
KmodInfo.h
|
||||
TransState.h
|
||||
Undo.h
|
||||
VCBackend.h
|
||||
version.h
|
||||
vspace.h
|
||||
VSpace.h
|
||||
''')
|
||||
|
||||
|
||||
src_pre_files = Split('''
|
||||
Bidi.C
|
||||
BranchList.C
|
||||
BufferView.C
|
||||
Bullet.C
|
||||
Chktex.C
|
||||
Color.C
|
||||
ConverterCache.C
|
||||
CutAndPaste.C
|
||||
DepTable.C
|
||||
FloatList.C
|
||||
Floating.C
|
||||
FontIterator.C
|
||||
FuncStatus.C
|
||||
InsetList.C
|
||||
LColor.C
|
||||
LaTeX.C
|
||||
LaTeXFeatures.C
|
||||
LyXAction.C
|
||||
MenuBackend.C
|
||||
ParagraphParameters.C
|
||||
Spacing.C
|
||||
TocBackend.C
|
||||
ToolbarBackend.C
|
||||
author.C
|
||||
boost.C
|
||||
buffer.C
|
||||
buffer_funcs.C
|
||||
bufferlist.C
|
||||
bufferparams.C
|
||||
bufferview_funcs.C
|
||||
changes.C
|
||||
converter.C
|
||||
coordcache.C
|
||||
counters.C
|
||||
cursor.C
|
||||
cursor_slice.C
|
||||
debug.C
|
||||
dociterator.C
|
||||
encoding.C
|
||||
errorlist.C
|
||||
exporter.C
|
||||
factory.C
|
||||
format.C
|
||||
funcrequest.C
|
||||
gettext.C
|
||||
graph.C
|
||||
importer.C
|
||||
insetiterator.C
|
||||
intl.C
|
||||
kbmap.C
|
||||
kbsequence.C
|
||||
language.C
|
||||
lengthcommon.C
|
||||
lyx_cb.C
|
||||
lyx_main.C
|
||||
lyx_sty.C
|
||||
lyxfind.C
|
||||
lyxfont.C
|
||||
lyxfunc.C
|
||||
lyxgluelength.C
|
||||
lyxlayout.C
|
||||
lyxlength.C
|
||||
lyxlex.C
|
||||
lyxrc.C
|
||||
lyxrow.C
|
||||
lyxserver.C
|
||||
lyxsocket.C
|
||||
lyxtextclass.C
|
||||
lyxtextclasslist.C
|
||||
lyxvc.C
|
||||
messages.C
|
||||
metricsinfo.C
|
||||
mover.C
|
||||
output.C
|
||||
output_docbook.C
|
||||
output_latex.C
|
||||
output_plaintext.C
|
||||
outputparams.C
|
||||
paragraph.C
|
||||
paragraph_funcs.C
|
||||
ParagraphMetrics.C
|
||||
pariterator.C
|
||||
rowpainter.C
|
||||
session.C
|
||||
sgml.C
|
||||
tex-accent.C
|
||||
tex-strings.C
|
||||
texrow.C
|
||||
text.C
|
||||
text2.C
|
||||
text3.C
|
||||
TextMetrics.C
|
||||
toc.C
|
||||
trans.C
|
||||
trans_mgr.C
|
||||
undo.C
|
||||
vc-backend.C
|
||||
Bidi.cpp
|
||||
BranchList.cpp
|
||||
BufferView.cpp
|
||||
Bullet.cpp
|
||||
Chktex.cpp
|
||||
color.cpp
|
||||
ConverterCache.cpp
|
||||
CutAndPaste.cpp
|
||||
DepTable.cpp
|
||||
FloatList.cpp
|
||||
Floating.cpp
|
||||
FontIterator.cpp
|
||||
FuncStatus.cpp
|
||||
InsetList.cpp
|
||||
LColor.cpp
|
||||
LaTeX.cpp
|
||||
LaTeXFeatures.cpp
|
||||
LyXAction.cpp
|
||||
MenuBackend.cpp
|
||||
ParagraphParameters.cpp
|
||||
Spacing.cpp
|
||||
TocBackend.cpp
|
||||
ToolbarBackend.cpp
|
||||
Author.cpp
|
||||
boost.cpp
|
||||
Buffer.cpp
|
||||
buffer_funcs.cpp
|
||||
BufferList.cpp
|
||||
BufferParams.cpp
|
||||
bufferview_funcs.cpp
|
||||
Changes.cpp
|
||||
Converter.cpp
|
||||
CoordCache.cpp
|
||||
Counters.cpp
|
||||
LCursor.cpp
|
||||
CursorSlice.cpp
|
||||
debug.cpp
|
||||
DocIterator.cpp
|
||||
Encoding.cpp
|
||||
ErrorList.cpp
|
||||
Exporter.cpp
|
||||
factory.cpp
|
||||
Format.cpp
|
||||
FuncRequest.cpp
|
||||
gettext.cpp
|
||||
Graph.cpp
|
||||
Importer.cpp
|
||||
InsetIterator.cpp
|
||||
Intl.cpp
|
||||
kb_keymap.cpp
|
||||
kb_sequence.cpp
|
||||
Language.cpp
|
||||
lengthcommon.cpp
|
||||
lyx_cb.cpp
|
||||
LyX.cpp
|
||||
lyx_sty.cpp
|
||||
lyxfind.cpp
|
||||
LyXFont.cpp
|
||||
LyXFunc.cpp
|
||||
LyXGlueLength.cpp
|
||||
LyXLayout.cpp
|
||||
LyXLength.cpp
|
||||
LyXLex.cpp
|
||||
LyXRC.cpp
|
||||
Row.cpp
|
||||
LyXServer.cpp
|
||||
LyXServerSocket.cpp
|
||||
LyXTextClass.cpp
|
||||
LyXTextClassList.cpp
|
||||
LyXVC.cpp
|
||||
Messages.cpp
|
||||
MetricsInfo.cpp
|
||||
Mover.cpp
|
||||
output.cpp
|
||||
output_docbook.cpp
|
||||
output_latex.cpp
|
||||
output_plaintext.cpp
|
||||
OutputParams.cpp
|
||||
Paragraph.cpp
|
||||
paragraph_funcs.cpp
|
||||
ParagraphMetrics.cpp
|
||||
ParIterator.cpp
|
||||
rowpainter.cpp
|
||||
Session.cpp
|
||||
sgml.cpp
|
||||
tex-accent.cpp
|
||||
tex-strings.cpp
|
||||
TexRow.cpp
|
||||
text.cpp
|
||||
text2.cpp
|
||||
text3.cpp
|
||||
TextMetrics.cpp
|
||||
toc.cpp
|
||||
Trans.cpp
|
||||
TransState.cpp
|
||||
Undo.cpp
|
||||
VCBackend.cpp
|
||||
version.C
|
||||
vspace.C
|
||||
VSpace.cpp
|
||||
''')
|
||||
|
||||
|
||||
src_post_files = Split('''
|
||||
tabular.C
|
||||
dimension.C
|
||||
PrinterParams.C
|
||||
box.C
|
||||
Thesaurus.C
|
||||
SpellBase.C
|
||||
LyXTabular.cpp
|
||||
Dimension.cpp
|
||||
PrinterParams.cpp
|
||||
Box.cpp
|
||||
Thesaurus.cpp
|
||||
SpellBase.cpp
|
||||
''')
|
||||
|
||||
|
||||
|
@ -2770,7 +2770,7 @@ LightBlue
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
La lista completa si trova correntemente solo nel file sorgente LColor.C
|
||||
La lista completa si trova correntemente solo nel file sorgente LColor.cpp
|
||||
\end_layout
|
||||
|
||||
\begin_layout Section
|
||||
|
@ -1,20 +1,20 @@
|
||||
src/BufferView.C
|
||||
src/Chktex.C
|
||||
src/CutAndPaste.C
|
||||
src/LColor.C
|
||||
src/LaTeX.C
|
||||
src/MenuBackend.C
|
||||
src/SpellBase.C
|
||||
src/buffer.C
|
||||
src/buffer_funcs.C
|
||||
src/bufferlist.C
|
||||
src/bufferparams.C
|
||||
src/bufferview_funcs.C
|
||||
src/client/debug.C
|
||||
src/converter.C
|
||||
src/debug.C
|
||||
src/exporter.C
|
||||
src/format.C
|
||||
src/BufferView.cpp
|
||||
src/Chktex.cpp
|
||||
src/CutAndPaste.cpp
|
||||
src/LColor.cpp
|
||||
src/LaTeX.cpp
|
||||
src/MenuBackend.cpp
|
||||
src/SpellBase.cpp
|
||||
src/Buffer.cpp
|
||||
src/buffer_funcs.cpp
|
||||
src/BufferList.cpp
|
||||
src/BufferParams.cpp
|
||||
src/bufferview_funcs.cpp
|
||||
src/client/debug.cpp
|
||||
src/Converter.cpp
|
||||
src/debug.cpp
|
||||
src/Exporter.cpp
|
||||
src/Format.cpp
|
||||
src/frontends/LyXView.cpp
|
||||
src/frontends/WorkArea.cpp
|
||||
src/frontends/controllers/ControlAboutlyx.cpp
|
||||
@ -74,7 +74,7 @@ src/frontends/qt4/Qt2BC.h
|
||||
src/frontends/qt4/UrlView.cpp
|
||||
src/frontends/qt4/Validator.cpp
|
||||
src/gettext.h
|
||||
src/importer.C
|
||||
src/Importer.cpp
|
||||
src/insets/InsetBase.cpp
|
||||
src/insets/InsetBibtex.cpp
|
||||
src/insets/InsetBox.cpp
|
||||
@ -108,16 +108,16 @@ src/insets/InsetVSpace.cpp
|
||||
src/insets/InsetWrap.cpp
|
||||
src/insets/RenderGraphic.cpp
|
||||
src/insets/RenderPreview.cpp
|
||||
src/ispell.C
|
||||
src/kbsequence.C
|
||||
src/lengthcommon.C
|
||||
src/lyx_cb.C
|
||||
src/lyx_main.C
|
||||
src/lyxfind.C
|
||||
src/lyxfont.C
|
||||
src/lyxfunc.C
|
||||
src/lyxrc.C
|
||||
src/lyxvc.C
|
||||
src/ISpell.cpp
|
||||
src/kb_sequence.cpp
|
||||
src/lengthcommon.cpp
|
||||
src/lyx_cb.cpp
|
||||
src/LyX.cpp
|
||||
src/lyxfind.cpp
|
||||
src/LyXFont.cpp
|
||||
src/LyXFunc.cpp
|
||||
src/LyXRC.cpp
|
||||
src/LyXVC.cpp
|
||||
src/mathed/InsetFormulaMacro.cpp
|
||||
src/mathed/InsetMathAMSArray.cpp
|
||||
src/mathed/InsetMathCases.cpp
|
||||
@ -128,16 +128,16 @@ src/mathed/InsetMathRef.cpp
|
||||
src/mathed/InsetMathSplit.cpp
|
||||
src/mathed/InsetMathSubstack.cpp
|
||||
src/mathed/MathMacroTemplate.cpp
|
||||
src/output.C
|
||||
src/output_plaintext.C
|
||||
src/paragraph.C
|
||||
src/rowpainter.C
|
||||
src/output.cpp
|
||||
src/output_plaintext.cpp
|
||||
src/Paragraph.cpp
|
||||
src/rowpainter.cpp
|
||||
src/support/filefilterlist.C
|
||||
src/support/os_win32.C
|
||||
src/support/package.C.in
|
||||
src/support/userinfo.C
|
||||
src/tex-strings.C
|
||||
src/text.C
|
||||
src/text2.C
|
||||
src/text3.C
|
||||
src/vspace.C
|
||||
src/tex-strings.cpp
|
||||
src/text.cpp
|
||||
src/text2.cpp
|
||||
src/text3.cpp
|
||||
src/VSpace.cpp
|
||||
|
12
src/Bidi.C
12
src/Bidi.C
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file Bidi.C
|
||||
* \file Bidi.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -11,11 +11,11 @@
|
||||
#include <config.h>
|
||||
|
||||
#include "Bidi.h"
|
||||
#include "buffer.h"
|
||||
#include "lyxfont.h"
|
||||
#include "lyxrow.h"
|
||||
#include "lyxrc.h"
|
||||
#include "paragraph.h"
|
||||
#include "Buffer.h"
|
||||
#include "LyXFont.h"
|
||||
#include "Row.h"
|
||||
#include "LyXRC.h"
|
||||
#include "Paragraph.h"
|
||||
|
||||
|
||||
namespace lyx {
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file BranchList.C
|
||||
* \file BranchList.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -30,7 +30,7 @@
|
||||
#ifndef BRANCHES_H
|
||||
#define BRANCHES_H
|
||||
|
||||
#include "Color.h"
|
||||
#include "color.h"
|
||||
|
||||
#include "support/docstring.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file BufferView.C
|
||||
* \file BufferView.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -16,44 +16,44 @@
|
||||
|
||||
#include "BufferView.h"
|
||||
|
||||
#include "buffer.h"
|
||||
#include "Buffer.h"
|
||||
#include "buffer_funcs.h"
|
||||
#include "bufferlist.h"
|
||||
#include "bufferparams.h"
|
||||
#include "BufferList.h"
|
||||
#include "BufferParams.h"
|
||||
#include "bufferview_funcs.h"
|
||||
#include "coordcache.h"
|
||||
#include "CoordCache.h"
|
||||
#include "CutAndPaste.h"
|
||||
#include "debug.h"
|
||||
#include "dispatchresult.h"
|
||||
#include "errorlist.h"
|
||||
#include "DispatchResult.h"
|
||||
#include "ErrorList.h"
|
||||
#include "factory.h"
|
||||
#include "FloatList.h"
|
||||
#include "funcrequest.h"
|
||||
#include "FuncRequest.h"
|
||||
#include "FuncStatus.h"
|
||||
#include "gettext.h"
|
||||
#include "intl.h"
|
||||
#include "insetiterator.h"
|
||||
#include "language.h"
|
||||
#include "Intl.h"
|
||||
#include "InsetIterator.h"
|
||||
#include "Language.h"
|
||||
#include "LaTeXFeatures.h"
|
||||
#include "lyx_cb.h" // added for Dispatch functions
|
||||
#include "lyx_main.h"
|
||||
#include "LyX.h"
|
||||
#include "lyxfind.h"
|
||||
#include "lyxfunc.h"
|
||||
#include "lyxlayout.h"
|
||||
#include "lyxtext.h"
|
||||
#include "lyxtextclass.h"
|
||||
#include "lyxrc.h"
|
||||
#include "session.h"
|
||||
#include "paragraph.h"
|
||||
#include "LyXFunc.h"
|
||||
#include "LyXLayout.h"
|
||||
#include "LyXText.h"
|
||||
#include "LyXTextClass.h"
|
||||
#include "LyXRC.h"
|
||||
#include "Session.h"
|
||||
#include "Paragraph.h"
|
||||
#include "paragraph_funcs.h"
|
||||
#include "ParagraphParameters.h"
|
||||
#include "pariterator.h"
|
||||
#include "texrow.h"
|
||||
#include "ParIterator.h"
|
||||
#include "TexRow.h"
|
||||
#include "toc.h"
|
||||
#include "undo.h"
|
||||
#include "vspace.h"
|
||||
#include "Undo.h"
|
||||
#include "VSpace.h"
|
||||
#include "WordLangTuple.h"
|
||||
#include "metricsinfo.h"
|
||||
#include "MetricsInfo.h"
|
||||
|
||||
#include "insets/InsetBibtex.h"
|
||||
#include "insets/InsetCommand.h" // ChangeRefs
|
||||
@ -1205,7 +1205,7 @@ bool BufferView::workAreaDispatch(FuncRequest const & cmd0)
|
||||
//metrics_info_.y1 = ymin of button;
|
||||
//metrics_info_.y2 = ymax of button;
|
||||
//
|
||||
// Unfortunately, rowpainter.C:paintText() does not distinguish
|
||||
// Unfortunately, rowpainter.cpp:paintText() does not distinguish
|
||||
// between background updates and text updates. So we use the hammer
|
||||
// solution for now. We could also avoid the updateMetrics() below
|
||||
// by using the first and last pit of the CoordCache. Have a look
|
||||
|
@ -15,9 +15,9 @@
|
||||
#ifndef BUFFER_VIEW_H
|
||||
#define BUFFER_VIEW_H
|
||||
|
||||
#include "coordcache.h"
|
||||
#include "cursor.h"
|
||||
#include "metricsinfo.h"
|
||||
#include "CoordCache.h"
|
||||
#include "LCursor.h"
|
||||
#include "MetricsInfo.h"
|
||||
#include "TextMetrics.h"
|
||||
#include "UpdateFlags.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file Bullet.C
|
||||
* \file Bullet.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file Chktex.C
|
||||
* \file Chktex.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file Color.C
|
||||
* \file color.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 "Color.h"
|
||||
#include "color.h"
|
||||
|
||||
#include "LColor.h"
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file Color.h
|
||||
* \file color.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file ConverterCache.C
|
||||
* \file ConverterCache.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -15,8 +15,8 @@
|
||||
#include "ConverterCache.h"
|
||||
|
||||
#include "debug.h"
|
||||
#include "lyxrc.h"
|
||||
#include "mover.h"
|
||||
#include "LyXRC.h"
|
||||
#include "Mover.h"
|
||||
|
||||
#include "support/filetools.h"
|
||||
#include "support/lyxlib.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* \file CutAndPaste.C
|
||||
* \file CutAndPaste.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -15,26 +15,26 @@
|
||||
|
||||
#include "CutAndPaste.h"
|
||||
|
||||
#include "buffer.h"
|
||||
#include "Buffer.h"
|
||||
#include "buffer_funcs.h"
|
||||
#include "bufferparams.h"
|
||||
#include "cursor.h"
|
||||
#include "BufferParams.h"
|
||||
#include "LCursor.h"
|
||||
#include "debug.h"
|
||||
#include "errorlist.h"
|
||||
#include "funcrequest.h"
|
||||
#include "ErrorList.h"
|
||||
#include "FuncRequest.h"
|
||||
#include "gettext.h"
|
||||
#include "insetiterator.h"
|
||||
#include "language.h"
|
||||
#include "InsetIterator.h"
|
||||
#include "Language.h"
|
||||
#include "lfuns.h"
|
||||
#include "lyxfunc.h"
|
||||
#include "lyxrc.h"
|
||||
#include "lyxtext.h"
|
||||
#include "lyxtextclasslist.h"
|
||||
#include "paragraph.h"
|
||||
#include "LyXFunc.h"
|
||||
#include "LyXRC.h"
|
||||
#include "LyXText.h"
|
||||
#include "LyXTextClassList.h"
|
||||
#include "Paragraph.h"
|
||||
#include "paragraph_funcs.h"
|
||||
#include "ParagraphParameters.h"
|
||||
#include "pariterator.h"
|
||||
#include "undo.h"
|
||||
#include "ParIterator.h"
|
||||
#include "Undo.h"
|
||||
|
||||
#include "insets/InsetCharStyle.h"
|
||||
#include "insets/InsetTabular.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file DepTable.C
|
||||
* \file DepTable.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file FloatList.C
|
||||
* \file FloatList.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file Floating.C
|
||||
* \file Floating.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file src/FontIterator.C
|
||||
* \file src/FontIterator.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -14,9 +14,9 @@
|
||||
|
||||
#include "FontIterator.h"
|
||||
|
||||
#include "buffer.h"
|
||||
#include "lyxtext.h"
|
||||
#include "paragraph.h"
|
||||
#include "Buffer.h"
|
||||
#include "LyXText.h"
|
||||
#include "Paragraph.h"
|
||||
|
||||
|
||||
namespace lyx {
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef FONTITERATOR_H
|
||||
#define FONTITERATOR_H
|
||||
|
||||
#include "lyxfont.h"
|
||||
#include "LyXFont.h"
|
||||
|
||||
#include "support/types.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file FuncStatus.C
|
||||
* \file FuncStatus.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file InsetList.C
|
||||
* \file InsetList.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -13,8 +13,8 @@
|
||||
|
||||
#include "InsetList.h"
|
||||
|
||||
#include "buffer.h"
|
||||
#include "bufferparams.h"
|
||||
#include "Buffer.h"
|
||||
#include "BufferParams.h"
|
||||
#include "BranchList.h"
|
||||
#include "debug.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file LColor.C
|
||||
* \file LColor.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -190,7 +190,7 @@ string const LColor::getX11Name(LColor::color c) const
|
||||
return it->second.x11name;
|
||||
|
||||
lyxerr << "LyX internal error: Missing color"
|
||||
" entry in LColor.C for " << c << '\n'
|
||||
" entry in LColor.cpp for " << c << '\n'
|
||||
<< "Using black." << endl;
|
||||
return "black";
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file LaTeX.C
|
||||
* \file LaTeX.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -15,10 +15,10 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "bufferlist.h"
|
||||
#include "BufferList.h"
|
||||
#include "LaTeX.h"
|
||||
#include "gettext.h"
|
||||
#include "lyxrc.h"
|
||||
#include "LyXRC.h"
|
||||
#include "debug.h"
|
||||
#include "DepTable.h"
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
#ifndef LATEX_H
|
||||
#define LATEX_H
|
||||
|
||||
#include "outputparams.h"
|
||||
#include "OutputParams.h"
|
||||
|
||||
#include "support/docstring.h"
|
||||
#include "support/filename.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file LaTeXFeatures.C
|
||||
* \file LaTeXFeatures.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -16,17 +16,17 @@
|
||||
|
||||
#include "LaTeXFeatures.h"
|
||||
|
||||
#include "bufferparams.h"
|
||||
#include "Color.h"
|
||||
#include "BufferParams.h"
|
||||
#include "color.h"
|
||||
#include "debug.h"
|
||||
#include "encoding.h"
|
||||
#include "Encoding.h"
|
||||
#include "Floating.h"
|
||||
#include "FloatList.h"
|
||||
#include "LColor.h"
|
||||
#include "language.h"
|
||||
#include "lyxlex.h"
|
||||
#include "Language.h"
|
||||
#include "LyXLex.h"
|
||||
#include "lyx_sty.h"
|
||||
#include "lyxrc.h"
|
||||
#include "LyXRC.h"
|
||||
|
||||
#include "support/docstream.h"
|
||||
#include "support/filetools.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
#define LATEXFEATURES_H
|
||||
|
||||
|
||||
#include "outputparams.h"
|
||||
#include "OutputParams.h"
|
||||
#include "support/docstring.h"
|
||||
|
||||
#include <set>
|
||||
@ -39,7 +39,7 @@ class Language;
|
||||
* packages which don't have special requirements are handled automatically.
|
||||
* If your new package does need special consideration you'll need to alter
|
||||
* string const getPackages() const;
|
||||
* Remember to update the validate function in buffer.C and paragraph.C
|
||||
* Remember to update the validate function in Buffer.cpp and Paragraph.cpp
|
||||
* when you do so.
|
||||
*/
|
||||
class LaTeXFeatures {
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file LyXAction.C
|
||||
* \file LyXAction.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -16,7 +16,7 @@
|
||||
#include "LyXAction.h"
|
||||
|
||||
#include "debug.h"
|
||||
#include "funcrequest.h"
|
||||
#include "FuncRequest.h"
|
||||
|
||||
#include "support/lstrings.h"
|
||||
|
||||
|
334
src/Makefile.am
334
src/Makefile.am
@ -11,9 +11,9 @@ endif
|
||||
SUBDIRS = mathed insets graphics support frontends . $(CLIENT) tex2lyx
|
||||
|
||||
EXTRA_DIST = config.h.in stamp-h.in version.C.in \
|
||||
Sectioning.h \
|
||||
Sectioning.C \
|
||||
Variables.C \
|
||||
Section.h \
|
||||
Section.cpp \
|
||||
Variables.cpp \
|
||||
Variables.h \
|
||||
paper.h \
|
||||
pch.h
|
||||
@ -35,7 +35,7 @@ EXTRA_PROGRAMS = lyx-qt4
|
||||
|
||||
lyx_qt4_LDADD = $(lyx_OBJECTS) $(LYX_PRE_LIBS) \
|
||||
frontends/qt4/libqt4.la $(LYX_POST_LIBS) $(OTHERLIBS)
|
||||
lyx_qt4_SOURCES = main.C
|
||||
lyx_qt4_SOURCES = main.cpp
|
||||
|
||||
lyx$(EXEEXT): $(FRONTENDS_PROGS)
|
||||
rm -f $@
|
||||
@ -48,237 +48,237 @@ BUILT_SOURCES = $(PCH_FILE) version.C
|
||||
AM_CPPFLAGS += $(PCH_FLAGS) $(BOOST_INCLUDES)
|
||||
|
||||
if USE_ASPELL
|
||||
ASPELL = aspell.C aspell_local.h
|
||||
ASPELL = ASpell.cpp ASpell_local.h
|
||||
endif
|
||||
if USE_PSPELL
|
||||
PSPELL = pspell.C pspell.h
|
||||
PSPELL = PSpell.cpp PSpell.h
|
||||
endif
|
||||
if USE_ISPELL
|
||||
ISPELL = ispell.C ispell.h
|
||||
ISPELL = ISpell.cpp ISpell.h
|
||||
endif
|
||||
|
||||
|
||||
|
||||
lyx_SOURCES = \
|
||||
Bidi.C \
|
||||
Bidi.cpp \
|
||||
Bidi.h \
|
||||
BufferView.C \
|
||||
BufferView.cpp \
|
||||
BufferView.h \
|
||||
Bullet.C \
|
||||
Bullet.cpp \
|
||||
Bullet.h \
|
||||
BranchList.C \
|
||||
BranchList.cpp \
|
||||
BranchList.h \
|
||||
Chktex.C \
|
||||
Chktex.cpp \
|
||||
Chktex.h \
|
||||
Color.C \
|
||||
Color.h \
|
||||
ConverterCache.C \
|
||||
color.cpp \
|
||||
color.h \
|
||||
ConverterCache.cpp \
|
||||
ConverterCache.h \
|
||||
CutAndPaste.C \
|
||||
CutAndPaste.cpp \
|
||||
CutAndPaste.h \
|
||||
DepTable.C \
|
||||
DepTable.cpp \
|
||||
DepTable.h \
|
||||
FloatList.C \
|
||||
FloatList.cpp \
|
||||
FloatList.h \
|
||||
Floating.C \
|
||||
Floating.cpp \
|
||||
Floating.h \
|
||||
FontIterator.C \
|
||||
FontIterator.cpp \
|
||||
FontIterator.h \
|
||||
FuncStatus.C \
|
||||
FuncStatus.cpp \
|
||||
FuncStatus.h \
|
||||
InsetList.C \
|
||||
InsetList.cpp \
|
||||
InsetList.h \
|
||||
LColor.C \
|
||||
LColor.cpp \
|
||||
LColor.h \
|
||||
LaTeX.C \
|
||||
LaTeX.cpp \
|
||||
LaTeX.h \
|
||||
LaTeXFeatures.C \
|
||||
LaTeXFeatures.cpp \
|
||||
LaTeXFeatures.h \
|
||||
LyXAction.C \
|
||||
LyXAction.cpp \
|
||||
LyXAction.h \
|
||||
MenuBackend.C \
|
||||
MenuBackend.cpp \
|
||||
MenuBackend.h \
|
||||
ParagraphList.h \
|
||||
ParagraphList_fwd.h \
|
||||
ParagraphParameters.C \
|
||||
ParagraphParameters.cpp \
|
||||
ParagraphParameters.h \
|
||||
PrinterParams.C \
|
||||
PrinterParams.cpp \
|
||||
PrinterParams.h \
|
||||
RowList_fwd.h \
|
||||
Spacing.C \
|
||||
Spacing.cpp \
|
||||
Spacing.h \
|
||||
Thesaurus.C \
|
||||
Thesaurus.cpp \
|
||||
Thesaurus.h \
|
||||
ToolbarBackend.C \
|
||||
ToolbarBackend.cpp \
|
||||
ToolbarBackend.h \
|
||||
UpdateFlags.h \
|
||||
WordLangTuple.h \
|
||||
author.C \
|
||||
author.h \
|
||||
Author.cpp \
|
||||
Author.h \
|
||||
boost.cpp \
|
||||
box.h \
|
||||
box.C \
|
||||
buffer.C \
|
||||
buffer.h \
|
||||
buffer_funcs.C \
|
||||
Box.h \
|
||||
Box.cpp \
|
||||
Buffer.cpp \
|
||||
Buffer.h \
|
||||
buffer_funcs.cpp \
|
||||
buffer_funcs.h \
|
||||
bufferlist.C \
|
||||
bufferlist.h \
|
||||
bufferparams.C \
|
||||
bufferparams.h \
|
||||
bufferview_funcs.C \
|
||||
BufferList.cpp \
|
||||
BufferList.h \
|
||||
BufferParams.cpp \
|
||||
BufferParams.h \
|
||||
bufferview_funcs.cpp \
|
||||
bufferview_funcs.h \
|
||||
changes.C \
|
||||
changes.h \
|
||||
Changes.cpp \
|
||||
Changes.h \
|
||||
config.h.in \
|
||||
converter.C \
|
||||
converter.h \
|
||||
counters.C \
|
||||
counters.h \
|
||||
coordcache.C \
|
||||
coordcache.h \
|
||||
cursor.C \
|
||||
cursor.h \
|
||||
cursor_slice.C \
|
||||
cursor_slice.h \
|
||||
debug.C \
|
||||
Converter.cpp \
|
||||
Converter.h \
|
||||
Counters.cpp \
|
||||
Counters.h \
|
||||
CoordCache.cpp \
|
||||
CoordCache.h \
|
||||
LCursor.cpp \
|
||||
LCursor.h \
|
||||
CursorSlice.cpp \
|
||||
CursorSlice.h \
|
||||
debug.cpp \
|
||||
debug.h \
|
||||
dimension.C \
|
||||
dimension.h \
|
||||
dociterator.C \
|
||||
dociterator.h \
|
||||
dispatchresult.h \
|
||||
encoding.C \
|
||||
encoding.h \
|
||||
errorlist.C \
|
||||
errorlist.h \
|
||||
exporter.C \
|
||||
exporter.h \
|
||||
gettext.C \
|
||||
Dimension.cpp \
|
||||
Dimension.h \
|
||||
DocIterator.cpp \
|
||||
DocIterator.h \
|
||||
DispatchResult.h \
|
||||
Encoding.cpp \
|
||||
Encoding.h \
|
||||
ErrorList.cpp \
|
||||
ErrorList.h \
|
||||
Exporter.cpp \
|
||||
Exporter.h \
|
||||
gettext.cpp \
|
||||
gettext.h \
|
||||
factory.h \
|
||||
factory.C \
|
||||
format.C \
|
||||
format.h \
|
||||
funcrequest.h \
|
||||
funcrequest.C \
|
||||
graph.C \
|
||||
graph.h \
|
||||
importer.C \
|
||||
importer.h \
|
||||
intl.C \
|
||||
intl.h \
|
||||
insetiterator.C \
|
||||
insetiterator.h \
|
||||
kbmap.C \
|
||||
kbmap.h \
|
||||
kbsequence.C \
|
||||
kbsequence.h \
|
||||
language.C \
|
||||
language.h \
|
||||
session.C \
|
||||
session.h \
|
||||
factory.cpp \
|
||||
Format.cpp \
|
||||
Format.h \
|
||||
FuncRequest.h \
|
||||
FuncRequest.cpp \
|
||||
Graph.cpp \
|
||||
Graph.h \
|
||||
Importer.cpp \
|
||||
Importer.h \
|
||||
Intl.cpp \
|
||||
Intl.h \
|
||||
InsetIterator.cpp \
|
||||
InsetIterator.h \
|
||||
kb_keymap.cpp \
|
||||
kb_keymap.h \
|
||||
kb_sequence.cpp \
|
||||
kb_sequence.h \
|
||||
Language.cpp \
|
||||
Language.h \
|
||||
Session.cpp \
|
||||
Session.h \
|
||||
layout.h \
|
||||
lengthcommon.C \
|
||||
lengthcommon.cpp \
|
||||
lengthcommon.h \
|
||||
lfuns.h \
|
||||
lyx_cb.C \
|
||||
lyx_cb.cpp \
|
||||
lyx_cb.h \
|
||||
lyx_main.C \
|
||||
lyx_main.h \
|
||||
lyx_sty.C \
|
||||
LyX.cpp \
|
||||
LyX.h \
|
||||
lyx_sty.cpp \
|
||||
lyx_sty.h \
|
||||
lyxfont.C \
|
||||
lyxfont.h \
|
||||
lyxfind.C \
|
||||
LyXFont.cpp \
|
||||
LyXFont.h \
|
||||
lyxfind.cpp \
|
||||
lyxfind.h \
|
||||
lyxfunc.C \
|
||||
lyxfunc.h \
|
||||
lyxgluelength.C \
|
||||
lyxgluelength.h \
|
||||
lyxlayout.C \
|
||||
lyxlayout.h \
|
||||
LyXFunc.cpp \
|
||||
LyXFunc.h \
|
||||
LyXGlueLength.cpp \
|
||||
LyXGlueLength.h \
|
||||
LyXLayout.cpp \
|
||||
LyXLayout.h \
|
||||
lyxlayout_ptr_fwd.h \
|
||||
lyxlength.C \
|
||||
lyxlength.h \
|
||||
lyxlex.C \
|
||||
lyxlex.h \
|
||||
lyxrc.C \
|
||||
lyxrc.h \
|
||||
lyxrow.C \
|
||||
lyxrow.h \
|
||||
lyxserver.C \
|
||||
lyxserver.h \
|
||||
lyxsocket.C \
|
||||
lyxsocket.h \
|
||||
lyxtext.h \
|
||||
lyxtextclass.C \
|
||||
lyxtextclass.h \
|
||||
lyxtextclasslist.C \
|
||||
lyxtextclasslist.h \
|
||||
lyxvc.C \
|
||||
lyxvc.h \
|
||||
messages.C \
|
||||
messages.h \
|
||||
metricsinfo.C \
|
||||
metricsinfo.h \
|
||||
mover.C \
|
||||
mover.h \
|
||||
output.C \
|
||||
LyXLength.cpp \
|
||||
LyXLength.h \
|
||||
LyXLex.cpp \
|
||||
LyXLex.h \
|
||||
LyXRC.cpp \
|
||||
LyXRC.h \
|
||||
Row.cpp \
|
||||
Row.h \
|
||||
LyXServer.cpp \
|
||||
LyXServer.h \
|
||||
LyXServerSocket.cpp \
|
||||
LyXServerSocket.h \
|
||||
LyXText.h \
|
||||
LyXTextClass.cpp \
|
||||
LyXTextClass.h \
|
||||
LyXTextClassList.cpp \
|
||||
LyXTextClassList.h \
|
||||
LyXVC.cpp \
|
||||
LyXVC.h \
|
||||
Messages.cpp \
|
||||
Messages.h \
|
||||
MetricsInfo.cpp \
|
||||
MetricsInfo.h \
|
||||
Mover.cpp \
|
||||
Mover.h \
|
||||
output.cpp \
|
||||
output.h \
|
||||
outputparams.C \
|
||||
outputparams.h \
|
||||
output_docbook.C \
|
||||
OutputParams.cpp \
|
||||
OutputParams.h \
|
||||
output_docbook.cpp \
|
||||
output_docbook.h \
|
||||
output_latex.C \
|
||||
output_latex.cpp \
|
||||
output_latex.h \
|
||||
output_plaintext.C \
|
||||
output_plaintext.cpp \
|
||||
output_plaintext.h \
|
||||
paper.h \
|
||||
paragraph.C \
|
||||
paragraph.h \
|
||||
ParagraphMetrics.C \
|
||||
Paragraph.cpp \
|
||||
Paragraph.h \
|
||||
ParagraphMetrics.cpp \
|
||||
ParagraphMetrics.h \
|
||||
paragraph_funcs.C \
|
||||
paragraph_funcs.cpp \
|
||||
paragraph_funcs.h \
|
||||
pariterator.C \
|
||||
pariterator.h \
|
||||
$(ASPELL) $(PSPELL) $(ISPELL) SpellBase.C \
|
||||
ParIterator.cpp \
|
||||
ParIterator.h \
|
||||
$(ASPELL) $(PSPELL) $(ISPELL) SpellBase.cpp \
|
||||
SpellBase.h \
|
||||
rowpainter.C \
|
||||
rowpainter.cpp \
|
||||
rowpainter.h \
|
||||
sgml.C \
|
||||
sgml.cpp \
|
||||
sgml.h \
|
||||
tabular.C \
|
||||
tabular.h \
|
||||
tex-accent.C \
|
||||
LyXTabular.cpp \
|
||||
LyXTabular.h \
|
||||
tex-accent.cpp \
|
||||
tex-accent.h \
|
||||
tex-strings.C \
|
||||
tex-strings.cpp \
|
||||
tex-strings.h \
|
||||
texrow.C \
|
||||
texrow.h \
|
||||
text.C \
|
||||
text2.C \
|
||||
text3.C \
|
||||
TextMetrics.C \
|
||||
TexRow.cpp \
|
||||
TexRow.h \
|
||||
text.cpp \
|
||||
text2.cpp \
|
||||
text3.cpp \
|
||||
TextMetrics.cpp \
|
||||
TextMetrics.h \
|
||||
TocBackend.C \
|
||||
TocBackend.cpp \
|
||||
TocBackend.h \
|
||||
toc.C \
|
||||
toc.cpp \
|
||||
toc.h \
|
||||
trans.C \
|
||||
trans.h \
|
||||
trans_decl.h \
|
||||
trans_mgr.C \
|
||||
trans_mgr.h \
|
||||
undo.C \
|
||||
undo.h \
|
||||
vc-backend.C \
|
||||
vc-backend.h \
|
||||
Trans.cpp \
|
||||
Trans.h \
|
||||
KmodInfo.h \
|
||||
TransState.cpp \
|
||||
TransState.h \
|
||||
Undo.cpp \
|
||||
Undo.h \
|
||||
VCBackend.cpp \
|
||||
VCBackend.h \
|
||||
version.C \
|
||||
version.h \
|
||||
vspace.C \
|
||||
vspace.h
|
||||
VSpace.cpp \
|
||||
VSpace.h
|
||||
|
||||
version.C: stamp-version
|
||||
@:
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file MenuBackend.C
|
||||
* \file MenuBackend.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -18,24 +18,24 @@
|
||||
#include "MenuBackend.h"
|
||||
|
||||
#include "BranchList.h"
|
||||
#include "buffer.h"
|
||||
#include "bufferlist.h"
|
||||
#include "bufferparams.h"
|
||||
#include "Buffer.h"
|
||||
#include "BufferList.h"
|
||||
#include "BufferParams.h"
|
||||
#include "CutAndPaste.h"
|
||||
#include "debug.h"
|
||||
#include "exporter.h"
|
||||
#include "Exporter.h"
|
||||
#include "Floating.h"
|
||||
#include "FloatList.h"
|
||||
#include "format.h"
|
||||
#include "Format.h"
|
||||
#include "gettext.h"
|
||||
#include "importer.h"
|
||||
#include "kbmap.h"
|
||||
#include "session.h"
|
||||
#include "Importer.h"
|
||||
#include "kb_keymap.h"
|
||||
#include "Session.h"
|
||||
#include "LyXAction.h"
|
||||
#include "lyx_main.h" // for lastfiles
|
||||
#include "lyxfunc.h"
|
||||
#include "lyxlex.h"
|
||||
#include "paragraph.h"
|
||||
#include "LyX.h" // for lastfiles
|
||||
#include "LyXFunc.h"
|
||||
#include "LyXLex.h"
|
||||
#include "Paragraph.h"
|
||||
#include "TocBackend.h"
|
||||
#include "ToolbarBackend.h"
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
#define MENUBACKEND_H
|
||||
|
||||
#include "FuncStatus.h"
|
||||
#include "funcrequest.h"
|
||||
#include "FuncRequest.h"
|
||||
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
||||
#ifndef PARAGRAPH_LIST_H
|
||||
#define PARAGRAPH_LIST_H
|
||||
|
||||
#include "paragraph.h"
|
||||
#include "Paragraph.h"
|
||||
|
||||
#include "support/RandomAccessList.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file paragraph.C
|
||||
* \file Paragraph.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -19,25 +19,25 @@
|
||||
|
||||
#include "ParagraphMetrics.h"
|
||||
|
||||
#include "buffer.h"
|
||||
#include "bufferparams.h"
|
||||
#include "counters.h"
|
||||
#include "encoding.h"
|
||||
#include "Buffer.h"
|
||||
#include "BufferParams.h"
|
||||
#include "Counters.h"
|
||||
#include "Encoding.h"
|
||||
#include "debug.h"
|
||||
#include "gettext.h"
|
||||
#include "language.h"
|
||||
#include "Language.h"
|
||||
#include "LaTeXFeatures.h"
|
||||
#include "lyxfont.h"
|
||||
#include "lyxrc.h"
|
||||
#include "lyxrow.h"
|
||||
#include "outputparams.h"
|
||||
#include "LyXFont.h"
|
||||
#include "LyXRC.h"
|
||||
#include "Row.h"
|
||||
#include "OutputParams.h"
|
||||
#include "paragraph_funcs.h"
|
||||
|
||||
#include "rowpainter.h"
|
||||
|
||||
#include "sgml.h"
|
||||
#include "texrow.h"
|
||||
#include "vspace.h"
|
||||
#include "TexRow.h"
|
||||
#include "VSpace.h"
|
||||
|
||||
#include "frontends/FontMetrics.h"
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
#ifndef PARAGRAPH_METRICS_H
|
||||
#define PARAGRAPH_METRICS_H
|
||||
|
||||
#include "paragraph.h"
|
||||
#include "Paragraph.h"
|
||||
|
||||
namespace lyx {
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file ParagraphParameters.C
|
||||
* \file ParagraphParameters.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -16,12 +16,12 @@
|
||||
|
||||
#include "ParagraphParameters.h"
|
||||
|
||||
#include "buffer.h"
|
||||
#include "Buffer.h"
|
||||
#include "gettext.h"
|
||||
#include "lyxlayout.h"
|
||||
#include "lyxlex.h"
|
||||
#include "lyxtext.h"
|
||||
#include "paragraph.h"
|
||||
#include "LyXLayout.h"
|
||||
#include "LyXLex.h"
|
||||
#include "LyXText.h"
|
||||
#include "Paragraph.h"
|
||||
#include "tex-strings.h"
|
||||
|
||||
#include "support/lstrings.h"
|
||||
|
@ -15,7 +15,7 @@
|
||||
#define PARAGRAPHPARAMETERS_H
|
||||
|
||||
#include "layout.h"
|
||||
#include "lyxlength.h"
|
||||
#include "LyXLength.h"
|
||||
#include "Spacing.h"
|
||||
|
||||
#include "support/types.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file PrinterParams.C
|
||||
* \file PrinterParams.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -12,7 +12,7 @@
|
||||
#ifndef PRINTERPARAMS_H
|
||||
#define PRINTERPARAMS_H
|
||||
|
||||
#include "lyxrc.h"
|
||||
#include "LyXRC.h"
|
||||
|
||||
|
||||
namespace lyx {
|
||||
|
@ -12,7 +12,7 @@
|
||||
#ifndef ROW_LIST_FWD_H
|
||||
#define ROW_LIST_FWD_H
|
||||
|
||||
#include "lyxrow.h"
|
||||
#include "Row.h"
|
||||
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file Sectioning.C
|
||||
* \file Section.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 "Sectioning.h"
|
||||
#include "Section.h"
|
||||
|
||||
|
||||
namespace lyx {
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file Sectioning.h
|
||||
* \file Section.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -9,10 +9,10 @@
|
||||
* Full author contact details are available in file CREDITS.
|
||||
*/
|
||||
|
||||
#ifndef SECTIONING_H
|
||||
#define SECTIONING_H
|
||||
#ifndef SECTION_H
|
||||
#define SECTION_H
|
||||
|
||||
#include "lyxfont.h"
|
||||
#include "LyXFont.h"
|
||||
|
||||
#include <map>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file Spacing.C
|
||||
* \file Spacing.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file SpellBase.C
|
||||
* \file SpellBase.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file src/TextMetrics.C
|
||||
* \file src/TextMetrics.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -19,22 +19,22 @@
|
||||
|
||||
#include "TextMetrics.h"
|
||||
|
||||
#include "buffer.h"
|
||||
#include "bufferparams.h"
|
||||
#include "Buffer.h"
|
||||
#include "BufferParams.h"
|
||||
#include "BufferView.h"
|
||||
#include "paragraph_funcs.h"
|
||||
#include "pariterator.h"
|
||||
#include "coordcache.h"
|
||||
#include "ParIterator.h"
|
||||
#include "CoordCache.h"
|
||||
#include "debug.h"
|
||||
#include "funcrequest.h"
|
||||
#include "FuncRequest.h"
|
||||
#include "FontIterator.h"
|
||||
#include "LColor.h"
|
||||
#include "lyxlength.h"
|
||||
#include "lyxrc.h"
|
||||
#include "lyxtext.h"
|
||||
#include "metricsinfo.h"
|
||||
#include "LyXLength.h"
|
||||
#include "LyXRC.h"
|
||||
#include "LyXText.h"
|
||||
#include "MetricsInfo.h"
|
||||
#include "ParagraphParameters.h"
|
||||
#include "vspace.h"
|
||||
#include "VSpace.h"
|
||||
|
||||
#include "frontends/FontMetrics.h"
|
||||
#include "frontends/Painter.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file Thesaurus.C
|
||||
* \file Thesaurus.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file TocBackend.C
|
||||
* \file TocBackend.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -14,12 +14,12 @@
|
||||
|
||||
#include "TocBackend.h"
|
||||
|
||||
#include "buffer.h"
|
||||
#include "bufferparams.h"
|
||||
#include "Buffer.h"
|
||||
#include "BufferParams.h"
|
||||
#include "FloatList.h"
|
||||
#include "funcrequest.h"
|
||||
#include "FuncRequest.h"
|
||||
#include "LyXAction.h"
|
||||
#include "paragraph.h"
|
||||
#include "Paragraph.h"
|
||||
#include "debug.h"
|
||||
|
||||
#include "insets/InsetOptArg.h"
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
#include "pariterator.h"
|
||||
#include "ParIterator.h"
|
||||
|
||||
#include "support/docstream.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file ToolbarBackend.C
|
||||
* \file ToolbarBackend.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -12,8 +12,8 @@
|
||||
#include <config.h>
|
||||
|
||||
#include "ToolbarBackend.h"
|
||||
#include "funcrequest.h"
|
||||
#include "lyxlex.h"
|
||||
#include "FuncRequest.h"
|
||||
#include "LyXLex.h"
|
||||
#include "debug.h"
|
||||
#include "gettext.h"
|
||||
#include "LyXAction.h"
|
||||
|
@ -13,7 +13,7 @@
|
||||
#ifndef TOOLBAR_BACKEND_H
|
||||
#define TOOLBAR_BACKEND_H
|
||||
|
||||
#include "funcrequest.h"
|
||||
#include "FuncRequest.h"
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file Variables.C
|
||||
* \file Variables.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file aspell.C
|
||||
* \file ASpell.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -15,7 +15,7 @@
|
||||
|
||||
#include <aspell.h>
|
||||
|
||||
#include "aspell_local.h"
|
||||
#include "ASpell_local.h"
|
||||
#include "WordLangTuple.h"
|
||||
|
||||
#include <boost/assert.hpp>
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file aspell_local.h
|
||||
* \file ASpell_local.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file author.C
|
||||
* \file Author.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 "author.h"
|
||||
#include "Author.h"
|
||||
|
||||
#include "support/lstrings.h"
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file author.h
|
||||
* \file Author.h
|
||||
* 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 "lyx_main.h"
|
||||
#include "LyX.h"
|
||||
#include "debug.h"
|
||||
#include "support/lyxlib.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file box.C
|
||||
* \file Box.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -8,11 +8,11 @@
|
||||
* Full author contact details are available in file CREDITS.
|
||||
*/
|
||||
|
||||
// Code moved out of line and out of box.h by Angus (7 Jan 2002)
|
||||
// Code moved out of line and out of Box.h by Angus (7 Jan 2002)
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "box.h"
|
||||
#include "Box.h"
|
||||
|
||||
#include "support/std_ostream.h"
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file box.h
|
||||
* \file Box.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
44
src/buffer.C
44
src/buffer.C
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file buffer.C
|
||||
* \file Buffer.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -10,44 +10,44 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "buffer.h"
|
||||
#include "Buffer.h"
|
||||
|
||||
#include "author.h"
|
||||
#include "Author.h"
|
||||
#include "BranchList.h"
|
||||
#include "buffer_funcs.h"
|
||||
#include "bufferlist.h"
|
||||
#include "bufferparams.h"
|
||||
#include "counters.h"
|
||||
#include "BufferList.h"
|
||||
#include "BufferParams.h"
|
||||
#include "Counters.h"
|
||||
#include "Bullet.h"
|
||||
#include "Chktex.h"
|
||||
#include "debug.h"
|
||||
#include "encoding.h"
|
||||
#include "errorlist.h"
|
||||
#include "exporter.h"
|
||||
#include "format.h"
|
||||
#include "funcrequest.h"
|
||||
#include "Encoding.h"
|
||||
#include "ErrorList.h"
|
||||
#include "Exporter.h"
|
||||
#include "Format.h"
|
||||
#include "FuncRequest.h"
|
||||
#include "gettext.h"
|
||||
#include "insetiterator.h"
|
||||
#include "language.h"
|
||||
#include "InsetIterator.h"
|
||||
#include "Language.h"
|
||||
#include "LaTeX.h"
|
||||
#include "LaTeXFeatures.h"
|
||||
#include "LyXAction.h"
|
||||
#include "lyxlex.h"
|
||||
#include "lyxtext.h"
|
||||
#include "lyxrc.h"
|
||||
#include "lyxvc.h"
|
||||
#include "messages.h"
|
||||
#include "LyXLex.h"
|
||||
#include "LyXText.h"
|
||||
#include "LyXRC.h"
|
||||
#include "LyXVC.h"
|
||||
#include "Messages.h"
|
||||
#include "output.h"
|
||||
#include "output_docbook.h"
|
||||
#include "output_latex.h"
|
||||
#include "paragraph.h"
|
||||
#include "Paragraph.h"
|
||||
#include "paragraph_funcs.h"
|
||||
#include "ParagraphParameters.h"
|
||||
#include "pariterator.h"
|
||||
#include "ParIterator.h"
|
||||
#include "sgml.h"
|
||||
#include "texrow.h"
|
||||
#include "TexRow.h"
|
||||
#include "TocBackend.h"
|
||||
#include "undo.h"
|
||||
#include "Undo.h"
|
||||
#include "version.h"
|
||||
|
||||
#include "insets/InsetBibitem.h"
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file buffer.h
|
||||
* \file Buffer.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -12,10 +12,10 @@
|
||||
#ifndef BUFFER_H
|
||||
#define BUFFER_H
|
||||
|
||||
#include "errorlist.h"
|
||||
#include "ErrorList.h"
|
||||
#include "InsetList.h"
|
||||
|
||||
#include "dociterator.h"
|
||||
#include "DocIterator.h"
|
||||
#include "ParagraphList_fwd.h"
|
||||
|
||||
#include "support/filename.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file buffer_funcs.C
|
||||
* \file buffer_funcs.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -13,27 +13,27 @@
|
||||
#include <config.h>
|
||||
|
||||
#include "buffer_funcs.h"
|
||||
#include "buffer.h"
|
||||
#include "bufferlist.h"
|
||||
#include "bufferparams.h"
|
||||
#include "dociterator.h"
|
||||
#include "counters.h"
|
||||
#include "errorlist.h"
|
||||
#include "Buffer.h"
|
||||
#include "BufferList.h"
|
||||
#include "BufferParams.h"
|
||||
#include "DocIterator.h"
|
||||
#include "Counters.h"
|
||||
#include "ErrorList.h"
|
||||
#include "Floating.h"
|
||||
#include "FloatList.h"
|
||||
#include "gettext.h"
|
||||
#include "language.h"
|
||||
#include "Language.h"
|
||||
#include "LaTeX.h"
|
||||
#include "lyxtextclass.h"
|
||||
#include "paragraph.h"
|
||||
#include "LyXTextClass.h"
|
||||
#include "Paragraph.h"
|
||||
#include "paragraph_funcs.h"
|
||||
#include "ParagraphList.h"
|
||||
#include "ParagraphParameters.h"
|
||||
#include "pariterator.h"
|
||||
#include "lyxvc.h"
|
||||
#include "texrow.h"
|
||||
#include "ParIterator.h"
|
||||
#include "LyXVC.h"
|
||||
#include "TexRow.h"
|
||||
#include "TocBackend.h"
|
||||
#include "vc-backend.h"
|
||||
#include "VCBackend.h"
|
||||
|
||||
#include "frontends/Alert.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file bufferlist.C
|
||||
* \file BufferList.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -10,18 +10,18 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "bufferlist.h"
|
||||
#include "BufferList.h"
|
||||
|
||||
#include "author.h"
|
||||
#include "buffer.h"
|
||||
#include "bufferparams.h"
|
||||
#include "Author.h"
|
||||
#include "Buffer.h"
|
||||
#include "BufferParams.h"
|
||||
#include "debug.h"
|
||||
#include "gettext.h"
|
||||
#include "session.h"
|
||||
#include "Session.h"
|
||||
#include "lyx_cb.h"
|
||||
#include "lyx_main.h"
|
||||
#include "LyX.h"
|
||||
#include "output_latex.h"
|
||||
#include "paragraph.h"
|
||||
#include "Paragraph.h"
|
||||
#include "ParagraphList.h"
|
||||
|
||||
#include "frontends/Alert.h"
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file bufferlist.h
|
||||
* \file BufferList.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -116,7 +116,7 @@ private:
|
||||
void emergencyWrite(Buffer * buf);
|
||||
};
|
||||
|
||||
/// Implementation is in lyx_main.C
|
||||
/// Implementation is in LyX.cpp
|
||||
extern BufferList & theBufferList();
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file bufferparams.C
|
||||
* \file BufferParams.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -15,26 +15,26 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "bufferparams.h"
|
||||
#include "BufferParams.h"
|
||||
|
||||
#include "author.h"
|
||||
#include "Author.h"
|
||||
#include "BranchList.h"
|
||||
#include "Bullet.h"
|
||||
#include "debug.h"
|
||||
#include "encoding.h"
|
||||
#include "Encoding.h"
|
||||
#include "gettext.h"
|
||||
#include "language.h"
|
||||
#include "Language.h"
|
||||
#include "LaTeXFeatures.h"
|
||||
#include "LColor.h"
|
||||
#include "lyxfont.h"
|
||||
#include "lyxlex.h"
|
||||
#include "lyxrc.h"
|
||||
#include "lyxtextclasslist.h"
|
||||
#include "outputparams.h"
|
||||
#include "LyXFont.h"
|
||||
#include "LyXLex.h"
|
||||
#include "LyXRC.h"
|
||||
#include "LyXTextClassList.h"
|
||||
#include "OutputParams.h"
|
||||
#include "tex-strings.h"
|
||||
#include "Spacing.h"
|
||||
#include "texrow.h"
|
||||
#include "vspace.h"
|
||||
#include "TexRow.h"
|
||||
#include "VSpace.h"
|
||||
|
||||
#include "frontends/Alert.h"
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file bufferparams.h
|
||||
* \file BufferParams.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -15,7 +15,7 @@
|
||||
#ifndef BUFFERPARAMS_H
|
||||
#define BUFFERPARAMS_H
|
||||
|
||||
#include "lyxtextclass.h"
|
||||
#include "LyXTextClass.h"
|
||||
#include "paper.h"
|
||||
|
||||
#include "insets/InsetQuotes.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file bufferview_funcs.C
|
||||
* \file bufferview_funcs.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -16,20 +16,20 @@
|
||||
|
||||
#include "bufferview_funcs.h"
|
||||
|
||||
#include "author.h"
|
||||
#include "buffer.h"
|
||||
#include "bufferparams.h"
|
||||
#include "Author.h"
|
||||
#include "Buffer.h"
|
||||
#include "BufferParams.h"
|
||||
#include "BufferView.h"
|
||||
#include "cursor.h"
|
||||
#include "coordcache.h"
|
||||
#include "LCursor.h"
|
||||
#include "CoordCache.h"
|
||||
#include "gettext.h"
|
||||
#include "language.h"
|
||||
#include "Language.h"
|
||||
#include "LColor.h"
|
||||
#include "lyxlex.h"
|
||||
#include "lyxrow.h"
|
||||
#include "paragraph.h"
|
||||
#include "LyXLex.h"
|
||||
#include "Row.h"
|
||||
#include "Paragraph.h"
|
||||
#include "ParagraphParameters.h"
|
||||
#include "pariterator.h"
|
||||
#include "ParIterator.h"
|
||||
|
||||
#include "frontends/Alert.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file changes.C
|
||||
* \file Changes.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 "changes.h"
|
||||
#include "Changes.h"
|
||||
#include "debug.h"
|
||||
|
||||
#include <boost/assert.hpp>
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file changes.h
|
||||
* \file Changes.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -21,11 +21,11 @@ lyxclient_LDADD = \
|
||||
lyxclient_SOURCES = \
|
||||
boost.cpp \
|
||||
client.C \
|
||||
debug.C \
|
||||
debug.cpp \
|
||||
debug.h \
|
||||
gettext.C \
|
||||
messages.C \
|
||||
messages.h
|
||||
gettext.cpp \
|
||||
Messages.cpp \
|
||||
Messages.h
|
||||
|
||||
lyxclient.1:
|
||||
cp -p $(srcdir)/lyxclient.man lyxclient.1
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "lyx_main.h"
|
||||
#include "LyX.h"
|
||||
#include "debug.h"
|
||||
#include "support/lyxlib.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file debug.C
|
||||
* \file debug.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file src/gettext.C
|
||||
* \file src/gettext.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -12,7 +12,7 @@
|
||||
#include <config.h>
|
||||
|
||||
#include "gettext.h"
|
||||
#include "messages.h"
|
||||
#include "Messages.h"
|
||||
|
||||
|
||||
namespace lyx {
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* \file messages.C
|
||||
/* \file Messages.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -9,7 +9,7 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "messages.h"
|
||||
#include "Messages.h"
|
||||
#include "debug.h"
|
||||
#include "support/filetools.h"
|
||||
#include "support/package.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
// -*- C++ -*-
|
||||
/* \file messages.h
|
||||
/* \file Messages.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file converter.C
|
||||
* \file Converter.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -10,18 +10,18 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "converter.h"
|
||||
#include "Converter.h"
|
||||
|
||||
#include "ConverterCache.h"
|
||||
#include "buffer.h"
|
||||
#include "Buffer.h"
|
||||
#include "buffer_funcs.h"
|
||||
#include "bufferparams.h"
|
||||
#include "BufferParams.h"
|
||||
#include "debug.h"
|
||||
#include "format.h"
|
||||
#include "Format.h"
|
||||
#include "gettext.h"
|
||||
#include "language.h"
|
||||
#include "Language.h"
|
||||
#include "LaTeX.h"
|
||||
#include "mover.h"
|
||||
#include "Mover.h"
|
||||
|
||||
#include "frontends/Alert.h"
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file converter.h
|
||||
* \file Converter.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -12,8 +12,8 @@
|
||||
#ifndef CONVERTER_H
|
||||
#define CONVERTER_H
|
||||
|
||||
#include "graph.h"
|
||||
#include "outputparams.h"
|
||||
#include "Graph.h"
|
||||
#include "OutputParams.h"
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
@ -162,11 +162,11 @@ private:
|
||||
};
|
||||
|
||||
/// The global instance.
|
||||
/// Implementation is in lyx_main.C.
|
||||
/// Implementation is in LyX.cpp.
|
||||
extern Converters & theConverters();
|
||||
|
||||
/// The global copy after reading lyxrc.defaults.
|
||||
/// Implementation is in lyx_main.C.
|
||||
/// Implementation is in LyX.cpp.
|
||||
extern Converters & theSystemConverters();
|
||||
|
||||
} // namespace lyx
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* \file coordcache.C
|
||||
/* \file CoordCache.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -9,10 +9,10 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "coordcache.h"
|
||||
#include "CoordCache.h"
|
||||
#include "debug.h"
|
||||
|
||||
#include "lyxtext.h"
|
||||
#include "LyXText.h"
|
||||
|
||||
#include "insets/InsetBase.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// -*- C++ -*-
|
||||
/* \file coordcache.h
|
||||
/* \file CoordCache.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file counters.C
|
||||
* \file Counters.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -12,7 +12,7 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "counters.h"
|
||||
#include "Counters.h"
|
||||
#include "debug.h"
|
||||
|
||||
#include "support/lstrings.h"
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file counters.h
|
||||
* \file Counters.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
30
src/cursor.C
30
src/cursor.C
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file cursor.C
|
||||
* \file LCursor.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -14,24 +14,24 @@
|
||||
|
||||
#include "BufferView.h"
|
||||
#include "bufferview_funcs.h"
|
||||
#include "buffer.h"
|
||||
#include "cursor.h"
|
||||
#include "coordcache.h"
|
||||
#include "Buffer.h"
|
||||
#include "LCursor.h"
|
||||
#include "CoordCache.h"
|
||||
#include "CutAndPaste.h"
|
||||
#include "debug.h"
|
||||
#include "dispatchresult.h"
|
||||
#include "encoding.h"
|
||||
#include "funcrequest.h"
|
||||
#include "language.h"
|
||||
#include "DispatchResult.h"
|
||||
#include "Encoding.h"
|
||||
#include "FuncRequest.h"
|
||||
#include "Language.h"
|
||||
#include "lfuns.h"
|
||||
#include "lyxfont.h"
|
||||
#include "lyxfunc.h" // only for setMessage()
|
||||
#include "lyxrc.h"
|
||||
#include "lyxrow.h"
|
||||
#include "lyxtext.h"
|
||||
#include "paragraph.h"
|
||||
#include "LyXFont.h"
|
||||
#include "LyXFunc.h" // only for setMessage()
|
||||
#include "LyXRC.h"
|
||||
#include "Row.h"
|
||||
#include "LyXText.h"
|
||||
#include "Paragraph.h"
|
||||
#include "paragraph_funcs.h"
|
||||
#include "pariterator.h"
|
||||
#include "ParIterator.h"
|
||||
|
||||
#include "insets/InsetTabular.h"
|
||||
#include "insets/InsetText.h"
|
||||
|
12
src/cursor.h
12
src/cursor.h
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file cursor.h
|
||||
* \file LCursor.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -9,11 +9,11 @@
|
||||
* Full author contact details are available in file CREDITS.
|
||||
*/
|
||||
|
||||
#ifndef CURSOR_H
|
||||
#define CURSOR_H
|
||||
#ifndef LCURSOR_H
|
||||
#define LCURSOR_H
|
||||
|
||||
#include "dispatchresult.h"
|
||||
#include "dociterator.h"
|
||||
#include "DispatchResult.h"
|
||||
#include "DocIterator.h"
|
||||
|
||||
#include <iosfwd>
|
||||
#include <vector>
|
||||
@ -313,4 +313,4 @@ public:
|
||||
|
||||
} // namespace lyx
|
||||
|
||||
#endif // LYXCURSOR_H
|
||||
#endif // LYXLCURSOR_H
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file cursor_slice.C
|
||||
* \file CursorSlice.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -13,10 +13,10 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "cursor_slice.h"
|
||||
#include "CursorSlice.h"
|
||||
#include "debug.h"
|
||||
#include "lyxtext.h"
|
||||
#include "paragraph.h"
|
||||
#include "LyXText.h"
|
||||
#include "Paragraph.h"
|
||||
|
||||
#include "mathed/InsetMath.h"
|
||||
#include "mathed/MathArray.h"
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file cursor_slice.h
|
||||
* \file CursorSlice.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file debug.C
|
||||
* \file debug.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file dimension.C
|
||||
* \file Dimension.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 "dimension.h"
|
||||
#include "Dimension.h"
|
||||
|
||||
namespace lyx {
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file dimension.h
|
||||
* \file Dimension.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file dispatchresult.h
|
||||
* \file DispatchResult.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file dociterator.C
|
||||
* \file DocIterator.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -11,11 +11,11 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "dociterator.h"
|
||||
#include "DocIterator.h"
|
||||
|
||||
#include "debug.h"
|
||||
#include "lyxtext.h"
|
||||
#include "paragraph.h"
|
||||
#include "LyXText.h"
|
||||
#include "Paragraph.h"
|
||||
|
||||
#include "mathed/MathArray.h"
|
||||
#include "mathed/InsetMath.h"
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file dociterator.h
|
||||
* \file DocIterator.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -12,7 +12,7 @@
|
||||
#ifndef DOCITERATOR_H
|
||||
#define DOCITERATOR_H
|
||||
|
||||
#include "cursor_slice.h"
|
||||
#include "CursorSlice.h"
|
||||
|
||||
#include <vector>
|
||||
#include <iosfwd>
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file encoding.C
|
||||
* \file Encoding.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -12,12 +12,12 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "encoding.h"
|
||||
#include "Encoding.h"
|
||||
|
||||
#include "debug.h"
|
||||
#include "LaTeXFeatures.h"
|
||||
#include "lyxlex.h"
|
||||
#include "lyxrc.h"
|
||||
#include "LyXLex.h"
|
||||
#include "LyXRC.h"
|
||||
|
||||
#include "support/filename.h"
|
||||
#include "support/lstrings.h"
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file encoding.h
|
||||
* \file Encoding.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file errorlist.C
|
||||
* \file ErrorList.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 "errorlist.h"
|
||||
#include "ErrorList.h"
|
||||
|
||||
|
||||
namespace lyx {
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file errorlist.h
|
||||
* \file ErrorList.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \file exporter.C
|
||||
* \file Exporter.cpp
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -16,18 +16,18 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "exporter.h"
|
||||
#include "Exporter.h"
|
||||
|
||||
#include "buffer.h"
|
||||
#include "Buffer.h"
|
||||
#include "buffer_funcs.h"
|
||||
#include "bufferparams.h"
|
||||
#include "converter.h"
|
||||
#include "format.h"
|
||||
#include "BufferParams.h"
|
||||
#include "Converter.h"
|
||||
#include "Format.h"
|
||||
#include "gettext.h"
|
||||
#include "lyxrc.h"
|
||||
#include "mover.h"
|
||||
#include "LyXRC.h"
|
||||
#include "Mover.h"
|
||||
#include "output_plaintext.h"
|
||||
#include "outputparams.h"
|
||||
#include "OutputParams.h"
|
||||
#include "frontends/Alert.h"
|
||||
|
||||
#include "support/filetools.h"
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file exporter.h
|
||||
* \file Exporter.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user