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