]> git.lyx.org Git - lyx.git/blobdiff - src/ChangeLog
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / ChangeLog
index a791b44d1af4fce05ca49227341b32f97d45262d..44351a0565c096015b4ebae3bbf5acdacf263415 100644 (file)
+2004-11-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * broken_headers.h: remove
+       
+       * Makefile.am (lyx_SOURCES): remove broken_headers.h
+
+2004-11-24  Alfredo Braunstein  <abraunst@lyx.org>
+
+       * BufferView.[Ch]: remove top_y, introduce anchor_ref,
+       offset_ref accessors
+
+       * BufferView_Pimpl.[Ch]: introduce anchor_ref_, offser_ref_, remove
+       top_y_, merge fitcursor with update
+       (updateScrollbar, scrollDocView, fitCursor, center, update): new
+       coord scheme
+       (metrics): introduce
+       (workAreaDispatch): adapt to new coord scheme
+       (redoCurrentBuffer): remove
+
+       * FontIterator.[Ch]: Use Paragraph & instead of pit_type 
+
+       * bufferview_funcs.[Ch]: introduce coordOffset, getPos, status,
+       CurStatus enum.
+       
+       * coordcache.[Ch]: add paragraph cache and helpers
+
+       * CursorSlice.[Ch]: rename CursorSlice::par to CursorSlice::pit,
+       adjust everywhere
+
+       * cursor.[Ch] (getDim): fix, (getPos) use coordOffset
+       (targetX, setTargetX): introduce
+
+       * lyxrow.[Ch]: simplify, remove ascent_of_text, y_offset, rename
+       baseline -> ascent, as the rest of lyx
+
+       * lyxtext.h: remove redoParagraphs, updateParPositions,
+       fullRebreak, redoParagraphInternal. move dist to anon namespace in
+       tabular.C (doesn't belong here), remove xo_, yo_ cache, makes it
+       have ascent/descent (ascent is ascent of first par)
+
+       * metricsinfo.h: add ViewMetricsInfo struct to use in the metrics
+       step of BufferView
+
+       * paragraph.[Ch]: unify dimension handling with the rest of lyx
+
+       * paragraph_funcs.[Ch] (getParsInRange, outerPar): remove.
+
+       * pariterator.C: fix infinite loop introduced in par->pit renaming
+
+       * rowPainter.[Ch]: big rewrite: separate drawSelection from draw
+       in insets and LyXText, draw two off-screen paragraphs using
+       NullPainter, and adapt to new coord scheme
+
+       * text.C: 
+       * text2.C: 
+       * text3.C: adapt lfun handlers to the new coord scheme, which
+       means: there's only guaranteed coord information for onscreen pars
+       plus one above and one below. This implies that one can do search
+       from y coordinates in the range [-1,workHeight]
+
+2004-11-25  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * rename a lot of InsetOld to InsetBase
+
+2004-11-25  Angus Leeming  <leeming@lyx.org>
+
+       * BufferView_pimpl.C:
+       * lyx_cb.C:
+       * lyxfunc.C: s/globbing.h/filefilterlist.h/ in #includes.
+
+2004-11-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * lyxfunc.C (getStatus, dispatch): use FuncStatus::message; only
+       call BufferView::getStatus if LCursor::getStatus did nothing
+       (setStatusMessage, getStatusMessage): removed.
+
+       * FuncStatus.C (message): new methods. Used to provide an error
+       message indicating why a command is disabled.
+       (clear, |=, FuncStatus): update for message.
+
+2004-11-23  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * lyxfunc.C (dispatch): always call sendDispatchMessage
+
+2004-11-24  Alfredo Braunstein  <abraunst@lyx.org>
+
+       * BufferView.C:
+       * BufferView_pimpl.C:
+       * CutAndPaste.C:
+       * FontIterator.C:
+       * buffer.C:
+       * cursor.C:
+       * cursor_slice.[Ch]:
+       * dociterator.[Ch]:
+       * lyxfind.C:
+       * paragraph_funcs.C:
+       * pariterator.C:
+       * rowpainter.C:
+       * text.C:
+       * text2.C:
+       * text3.C:
+       * undo.C: par->pit renaming
+
+2004-11-23  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * tabular.C (cellstruct): use initialization, store a shared_ptr
+       to insettext instead of the insettext directly, adjust to fit.
+       (operator=):  new function
+       (swap): new function
+       (rowstruct): use initialization
+       (columnstruct): use initialization
+       (ltType): use initialization
+
+
+       * lyxlength.h (swap): new function
+
+       * LColor.[Ch] (operator=): use the common semantics
+
+2004-11-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * lyxfind.C (findNextChange): update the bufferview after setting
+       the selection.
+
+2004-11-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * text3.C (getStatus): disable LFUN_INSET_OPTARG when the max
+       number of InsetOptArgs has already been inserted.
+
+       * output_latex.C (latexOptArgInsets): new method. This outputs all
+       the optarg insets, up to the limit defined in the layout file.
+       (optArgInset): removed
+       (TeXOnePar): call latexOptArgInsets; correctly update texrow
+
+2004-11-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * paragraph.C (isLetter): remove special spellchecker-related
+       code; return true also for digits
+       (isWord, isKomma): remove
+
+       * text.C (cursorRightOneWord, cursorLeftOneWord, getWord):
+       * lyxfind.C (MatchString()): use isLetter instead of isWord
+
+2004-11-17  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * pariterator.h (operatir=): comment out un-implemented member
+       function.
+
+       * paragraph.h: resolve ambiguity found by gcc 4.0 with the use of a
+       static cast.
+
+2004-11-17  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * lyxfont.h: include LColor.h to satisfy concept checks.
+
+2004-11-16  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * pariterator.h: add typdefs for value_type, difference_type,
+       pointer and reference to satisfy concept checks. Also add default
+       constructor for same reason.
+
+       * pariterator.C (operator++): add post-increment operator to
+       satisfy concept checks.
+
+       * lyxtextclasslist.h: include lyxtextclass.h to satisfy concept
+       checks.
+
+       * RowList_fwd.h: include lyxrow.h to satisfy concept checks.
+
+       * ParagraphList_fwd.h: include paragraph.h to satisfy concept
+       checks. Also rename base_type to BaseType to follow naming
+       standard better.
+
+       * FloatList.h: include Floating.h to satisfy concept checks.
+
+2004-11-15  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * lyxfunc.C (getStatus): when the origin of the request is menu or
+       toolbar, and the LyXView does not have focus, do as if there was
+       no buffer (bug 1720)
+
+       * lyxfunc.C (getStatus, dispatch): propagate the origin of a
+       FuncRequest to individual entries of LFUN_SEQUENCE
+
+2004-11-10  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * output_latex.C (TeXOnePar): override runparams.moving_arg
+       according to the needprotect value of the current paragraph (bug
+       1739)
+
+       * paragraph.C (simpleTeXOnePar): no need to override
+       runparams.moving_args here
+
+2004-11-14  John Spray  <spray_john@users.sourceforge.net>
+
+       * vspace.C: fix off-by-one-error, related to fix #1682
+
+2004-11-11  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
+
+       * lengthcommon.C: a more general fix for bug 1682
+
+2004-11-11  Alfredo Braunstein  <abraunst@lyx.org>
+
+       * text.C (backspace): fix crash
+
+2004-11-09  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * format.[Ch] (getFormatFromFile): new method
+       * exporter.C: s/getFormatFromContents/formats.getFormatFromFile/
+
+2004-11-09  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * lengthcommon.C (unitFromString): fix off-by-one error (bug 1682)
+
+2004-11-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * lyxfunc.C (dispatch): remove the verbose argument
+       (sendDispatchMessage): ditto. Use the origin of the FuncRequest
+       instead
+
+       * kbmap.C (defkey): set the origin of func to KEYBOARD
+
+       * MenuBackend.C (MenuItem):
+       * ToolbarBackend.C (add): set the origin of func to UI
+
+       * funcrequest.[Ch]: add origin member, which indicates which part
+       of LyX requests an action
+
+2004-11-07  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * converter.C (move): don't lie in the error message
+       * converter.h (isReachable, move): document
+
+2004-11-07  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * buffer.C: remove unused using lyx::support::atoi
+       * paragraph_funcs.C: ditto
+
+2004-11-06  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * bufferlist.C (exists): use bind and equal_to instead of
+       compare_memfun
+       (getBuffer): ditto
+       * lyxtextclasslist.C (NumberOfClass): ditto
+
+       * cursor.C (insert): use for_each instead of explicit for loop
+
+       * bufferlist.C (getFileNames): use std::transform and
+       std::back_inserter instead of std::copy and lyx::back_inserter_fun.
+
+       * buffer_funcs.C (bufferErrors): use for_each instead of explicit
+       for loop
+
+       * buffer.C (changeLanguage): use for_each instead of explicit for
+       loop
+       (hasParWithID): implement using getParFromID
+
+       * LaTeXFeatures.C: ws change only
+
+       * CutAndPaste.C (replaceSelectionWithString): Use a temporary var
+       to cleanup a bit.
+
+       * BufferView_pimpl.C (trackChanges): use for_each instead of
+       expilicit for loop
+
+2004-11-04  André Pönitz  <poenitz@gmx.net>
+
+       * undo.h:
+       * undo.C (textUndoOrRedo): fix crash when creating undo information.
+
+       * dociterator.C (asDocIterator): use hard assert again.
+
+2004-11-04  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * lyxlength.C (asLatexString): rewrite so that it does not use
+       snprintf anymore
+
+2004-11-02  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * text3.C (specialChar, dispatch): make sure cursor moves to the
+       right after inserting an inset
+
+2004-11-02  José Matos  <jamatos@lyx.org>
+
+       * output_docbook.C (docbook):
+       * paragraph.C (getID):
+       * sgml.[Ch] (openTag, cleanID): escape characters inside ids to
+       garantee that the output is always legal.
+
+       * tabular.C (docbook):
+       * outputprams.[Ch]: remove mixed contents.
+
+2004-11-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * text2.C (setCounter): prevent endless loop
+
+2004-11-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * exporter.C (copyFile): use the mover instead of support::copy()
+       * exporter.C (Export): pass format and latex name to copyFile()
+       * exporter.h (addExternalFile): document
+       * mover.[Ch] (do_copy, do_rename): new methods with 3 arguments
+
+2004-10-31  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
+
+       * text.C (leftMargin): do not indent paragraphs in charstyle insets.
+
+2004-10-30  José Matos  <jamatos@lyx.org>
+
+       * paragraph.[Ch] (onlyText): Checks if the paragraph contains only
+       text and no inset or font change. This allows to use CDATA
+       sections just for the whole paragraph.
+
+2004-10-30  José Matos  <jamatos@lyx.org>
+
+       * paragraph.C (getFirstWord): remove unused variable.
+
+2004-10-30  José Matos  <jamatos@lyx.org>
+
+       * paragraph.C (getFirstWord): the content should always be escaped
+       there.
+       (simpleDocBookOnePar):
+       * output_docbook.C (makeEnvironment): replace reference to CDATA
+       to style pass_thru.
+
+2004-10-30  José Matos  <jamatos@lyx.org>
+
+       * paragraph.C (simpleDocBookOnePar): fix reference to CDATA.
+
+2004-10-30  José Matos  <jamatos@lyx.org>
+
+       * output_docbook.C (makeParagraphs):
+       * paragraph.[Ch] (emptyTag): for docbook and company, if the
+       standard paragraph has only a given type of content drop the wrapper.
+
+2004-10-29  José Matos  <jamatos@lyx.org>
+
+       * output_docbook.C (makeEnvironment):
+       * sgml.C (openTag):
+       * paragraph.[Ch] (getID): rename function, and return it enclosed in id="...".
+
+2004-10-29 Andreas Vox  <vox@isp.uni-luebeck.de>
+
+       * sgml.[Ch] (uniqueID): returns a unique id for a given label.
+       (cleanID): sanitize any id.
+
+2004-10-29  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * buffer.C, lyxlex_pimpl.C:
+       * lyxlex_pimpl.C (setFile):
+       s/getExtFromContents/getFormatFromContents/
+
+2004-10-28  José Matos  <jamatos@lyx.org>
+
+       * output_docbook.C (makeEnvironment): move id to broadest possible
+       scope.
+
+       * sgml.C (openTag): apply substitution of <> for all attributes.
+
+2004-10-28  José Matos  <jamatos@lyx.org>
+
+       * buffer.C (makeLinuxDocFile, makeDocBookFile):
+       * output_docbook.C (makeParagraph, makeEnvironment, makeCommand):
+       * output_linuxdoc.C (linuxdocParagraphs): use new openTag and closeTag.
+
+       * sgml.[Ch]: new version for open and closeTag for paragraph and
+       for strings. Now they handle the ids of paragraphs.
+
+2004-10-26  Angus Leeming  <leeming@lyx.org>
+
+       * Makefile.am: add mover.[Ch].
+
+       * converter.C (convert, move): use the new Movers to move external
+       files to the temp directory.
+
+       * lyx_main.C (init): ensure that the global system_movers data
+       is initialised.
+
+       * lyxrc.[Ch]: code to read and write 'copiers' from/to the
+       preferences file.
+
+       * mover.[Ch]: new files, defining a Mover as a utility to move an
+       external file between directories and, if necessary, manipulate this
+       file using a helper script.
+
+2004-10-25  José Matos  <jamatos@lyx.org>
+
+       * output_docbook.C (makeCommand): merge two if's that tested the
+       same condition.
+
+2004-10-25  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * sgml.C (escapeString): fix warning in a better way
+
+2004-10-25  José Matos  <jamatos@lyx.org>
+
+       * sgml.C (escapeString): import the require boosts header file for
+       tie, and avoid a signed unsigned comparison.
+
+2004-10-25  José Matos  <jamatos@lyx.org>
+
+       * sgml.h: add #include <string>
+
+2004-10-25  José Matos  <jamatos@lyx.org>
+
+       * sgml.[Ch] (escapeString): new function to escape all the string.
+
+2004-10-24  José Matos  <jamatos@lyx.org>
+
+       * paragraph.[Ch] (getFirstWord): new function to get the first
+       word. Useful for description.
+       (simpleDocBookOnePar): remove depth argument, add another that
+       says where to start the paragraph.
+
+       * output_docbook.C (makeParagraph, makeEnvironment, makeCommand):
+       use the new functions to fix cleanly the support for descriptions.
+
+2004-10-24  José Matos  <jamatos@lyx.org>
+
+       * buffer.C (makeLinuxDocFile, makeDocBookFile):
+       * output_docbook.C (makeParagraph, makeEnvironment, makeCommand):
+       * output_linuxdoc.C (linuxdocParagraphs):
+       * sgml.[Ch] (openTag): )move paragraph counting code to openTag, and
+       add buffer as argument.
+
+2004-10-24  José Matos  <jamatos@lyx.org>
+
+       * output_docbook.C (makeEnvironment, searchEnvironment): place
+       CDATA inside paragraphs and fix scope for listitems.
+
+2004-10-24  José Matos  <jamatos@lyx.org>
+
+       * output_docbook.C: remove using statement for stack.
+
+2004-10-23  José Matos  <jamatos@lyx.org>
+
+       * buffer.C (makeDocBookFile): reorganize the comments about lyx.
+       * output_docbook.[Ch]: new functions to encapsulate the way lyx exports
+       docbook. The new scheme is recursive and makes use of iterators, the
+       same as latex export works.
+       * paragraph.C (simpleDocBookOnePar): removed coud that does not deal
+       directly with the paragraph contents. This code was moved up to
+       output_docbook.C (docbookParagraphs).
+       * sgml.C (openTag, closeTag): removed unneeded newlines.
+       (closeEnvTags) removed.
+
+2004-10-23  André Pönitz  <poenitz@gmx.net>
+
+       * undo.C (textUndoOrRedo):
+       * dociterator.C (asDocIterator): work around crash
+
+       * cursor.C (getStatus): replace ASSERT by more verbose error message
+         and manual correction of the problem. Should increase stability
+         while providing more sensible information.
+
+2004-10-18  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * lyxfunc.C (getStatus,dispatch): handle LFUN_(PREVIOUS|NEXT)BUFFER
+
+       * bufferlist.C (previous, next): new methods
+
+       * lfuns.h:
+       * LyXAction.C (init): add LFUN_NEXTBUFFER and LFUN_PREVIOUSBUFFER
+
+2004-10-18  Andreas Vox  <vox@isp.uni-luebeck.de>
+
+       * buffer.C (makeDocBookFile): add dsssl stylesheet control
+       entities to preamble.
+
+2004-10-18  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * messages.C (Pimpl): strip off translation context information
+
+2004-10-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * BufferView_pimpl.C (setBuffer): when closing a buffer, make sure
+       the cursor is correct (bug 1694)
+
+2004-10-13  José Matos  <jamatos@lyx.org>
+
+       * output_docbook.C (docbookParagraphs): fix closing tags in the
+       end of the document.
+
+2004-10-09  José Matos  <jamatos@lyx.org>
+
+       * buffer.C: format up to 237.
+       * bufferparams.C (write): use tostr to convert booleans to strings.
+
+2004-10-08  Martin Vermeer  <martin.vermeer@hut.fi>
+
+       * lyxrc.C: add to tooltip about using xindy to prefs (xforms)
+
+2004-10-07  Martin Vermeer  <martin.vermeer@hut.fi>
+
+       * LaTeX.C: implement use of babel language in xindy.
+
+2004-10-05  José Matos  <jamatos@lyx.org>
+
+       * bufferparams.[Ch] (readBullets, readBulletsLaTeX): new methods.
+       Add new translators to help reading and writing the lyx file.
+
+2004-10-05  José Matos  <jamatos@lyx.org>
+
+       * ParagraphParameters.C (read):
+       * text.C (readParToken): replace nexToken by more appropriate lex
+       methods.
+
+2004-10-05  Hartmut Haase  <hha4491@atomstromfrei.de>
+
+       * LaTeX.C (runMakeIndex):
+       * lyxrc.[Ch] (read, write, getDescription): make the indexing command
+       (usually 'makeindex') configurable.
+
+       * lastfiles.h (maxlastfiles): define the maximum number of 'lastfiles'
+       with a variable rather than with a number.
+
+2004-09-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * output_latex.C (TeXOnePar): make sure font setting is the first
+       thing that gets output (and the last at the end). Should fix bug
+       1404.
+
+2004-09-26  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * pch.h: use proper signal include
+
+       * LaTeX.h: Use preferred calling of Boost.Signal
+       * buffer.h: ditto
+
+2004-09-26  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * pch.h: dont include <boost/function/function0.hpp>
+
+       * Makefile.am (lyx_SOURCES): remove ShareContainer.h
+
+       * paragraph_pimpl.h: remove usage of ShareContainer
+
+       * paragraph_pimpl.C: remove initialization of ShareContainer.
+
+2004-09-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       Fix bug #1666
+
+       * BufferView.C (putSelectionAt): change the semantics when
+       backwards == true: now, this just swaps cursor and anchor wrt the
+       forward case
+
+       * BufferView.h (putSelectionAt): add some documentation
+
+       * lyxfind.C (findBackwards): rewrite using while(). In particular,
+       make sure backwardChar is done at least once (to avoid getting
+       stuck)
+       (findNextChange): use putSelectionAt in the forward direction
+       (operator()): use Paragraph::isWord
+
+2004-09-16  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * Spacing.C (set): c_str fix
+
+2004-09-09  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * lyx_cb.C (Reconfigure): quote the name of configure script in
+       case it contains spaces
+
+2004-09-04  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * client: new dir
+
+       * Makefile.am (SUBDIRS): change order of subdirs and add client dir
+       (BOOST_LIBS): use top_buildir when looking for the file
+
+2004-08-30  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * pch.h: do not use include boost/format.hpp, multiple symbols
+               will result (gcc bug)
+
+
+2004-08-23  José Matos  <jamatos@lyx.org>
+
+       * bufferparams.C (readToken): fix reading of the author field.
+
+2004-08-20  José Matos  <jamatos@lyx.org>
+
+       * lyxrc.C: remove support/translator.h inclusion since it is not used.
+
+2004-08-20  José Matos  <jamatos@lyx.org>
+
+       * lyxlex.[Ch] (findToken): remove function.
+
+       * ParagraphParameters.C (findToken):
+       * bufferparams.C (findToken): replace call for previous function
+       with local copy. This local function has one more argument, the
+       read string argument.
+
+2004-08-16  José Matos  <jamatos@lyx.org>
+
+       * ParagraphParameters.C (write):
+       * Spacing.C (writeFile):
+       * bufferparams.C (writeLaTeX):
+       * lyx_cb.C (Reconfigure):
+       * paragraph.C (write):
+       * tabular.C (write): remove unnecessary space at end of line.
+
+
+2004-08-16  José Matos  <jamatos@lyx.org>
+
+       * text.C (readParagraph): remove debug message.
+
+2004-08-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * tabular.C (asciiBottomHLine, asciiPrintCell, asciiTopHLine): fix
+       crash
+
+       * output_plaintext.C (asciiParagraph): set depth correctly
+
+       * outputparams.h: add member depth
+
+       * paragraph_funcs.C (ownerPar): remove.
+
+       * text2.C (setCounter): remove first_pit; comment out some
+       non-working code that uses ownerPar
+
+       * BufferView.C (getParentLanguage): remove. Not used anymore, and
+       uses ownerPar
+
+2004-08-16  José Matos  <jamatos@lyx.org>
+
+       * text.C (readParToken, readParagraph, read): report all unknown tokens.
+       For the same level of importance use the same chanel to report problems.
+       (read): add code to deal with \begin_body and \end_body.
+
+
+2004-08-15  José Matos  <jamatos@lyx.org>
+
+       * lyxlex.C (getString): fix comment, buffer::readBody is now
+       buffer:readDocument.
+
+       * tex-strings.C (string_papersize): Default -> default,
+       Custom -> custom, for consistency with other options.
+
+2004-08-15  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * pch.h: new file
+
+       * Makefile.am: support pch
+
+2004-08-15  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * text.C (readParToken): remove the static LyXFont variable and
+       pass it as a parameter instead. This fixes a nasty bug where an
+       inset will be inserted with a bad font in some situations
+       (readParagraph): adapt
+
+       * text2.C (setCounter): reduce number of calls to pars_[pit]
+
+       * text.C (singleWidth): add an assert, fix a test
+
+       * rowpainter.C (paintText): reduce number of calls to singleWidth
+
+       * paragraph.C (isHfill):
+       (isNewline): ws only
+
+2004-08-14  André Pönitz  <poenitz@gmx.net>
+
+       * text.C:
+       * text2.C:
+       * rowpainter.C:
+       * lyxtext.h (several functions): use a Paragraph & argument
+       instead of par_type
+
+2004-08-15  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * metricsinfo.h: add a new field ltr_pos to PainterInfo
+
+       * rowpainter.C (paintInset): initialize PainterInfo::ltr_pos
+
+       * text.C (singleWidth): remove useless test
+
+2004-08-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * tabular.h: remove bogus comments
+
+       * tabular.C (getDescentOfRow):
+       (isPartOfMultiColumn): add assertions
+
+       * lyxlength.C (inPixels): remove #warning
+
+2004-08-14  André Pönitz  <poenitz@gmx.net>
+
+       * paragraph.h: inline getChar()
+
+       * BufferView.h: remove unused declarations
+
+2004-08-14  José Matos  <jamatos@lyx.org>
+
+       * Buffer.[Ch] (readDocument): new name for old readBody.
+       * Buffer.C: new file format, new keywords: \begin_document,
+       \begin_header, \begin_body, \end_body.
+
+       * bufferparams.C (readToken): replace all calls to lex.nextToken
+       by lex.next(). Do the same to eatLine except where really needed.
+
+       * lyxfont.C (lyxWriteChanges): remove whitespaces in the end of
+       line when writing to the lyx file.
+
+       * output_plaintext.C (asciiParagraph): fix Bibliography style
+       handling.
+
+       * text.C (read): fix end of file handling.
+
+2004-08-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * MenuBackend.C (Menu::operator[]): new method to access
+       individual menu items
+       (Menu::hasFunc): new method. search for an item that corresponds
+       to a given func
+       (MenuBackend::specialMenu): new method
+       (MenuBackend::expand): if a special menu has been set, skip
+       entries whose func() appears in this menu
+
+2004-08-14  Lars Gullik Bjonnes  <larsbj@lyx.org>
+
+       * text3.C: use Debug::DEBUG a bit more
+
+       * text.C (leftMargin): try to simplify a tiny bit change var x to
+       l_margin. Dont output the wide margins always.
+       (rightMargin): no margin in inner texts
+
+       * rowpainter.h (nestMargin): new func
+       (changebarMargin): new func
+       (rightMargin): new func
+
+       * rowpainter.C (paintDepthBar): changebarMargin and nestMargin is
+       now functions.
+       (paintLast): ditto
+
+       * factory.C (createInset): modify setDrawFrame
+
+       * cursor.C: use Debug::DEBUG a bit more
+
+2004-08-14  André Pönitz  <poenitz@gmx.net>
+
+       * coordcache.[Ch]:
+       * Makefile.am: new files to accomodate an 'external' (x,y)-position
+       cache for all insets in (at least partially) visible (top-level)
+       paragraphs.
+
+       * BufferView_pimpl.C: reset external coord cache before every update.
+       This means the coord cache only contains valid entries.
+
+2004-08-14  Lars Gullik Bjonnes  <larsbj@lyx.org>
+
+       bug 1096
+       * BufferView_pimpl.C (getInsetByCode): move function out of class
+       and change in to a template in anon namespace. Also fix to do what
+       suits us better.
+
+2004-08-13  Lars Gullik Bjonnes  <larsbj@lyx.org>
+
+       bug 1305
+       * paragraph_funcs.C (moveItem): use Paragraph::value_type instead
+       of char
+       (breakParagraph): rename par to par_offset and use a local
+       reference. Add code to keep the language over a rebreak.
+       (breakParagraphConservative): rename par to par_offset, use a
+       local reference
+       (mergeParagraph): ditto
+       (outerHook): ditto
+       (isFirstInSequence): ditto
+       (outerFont): rename pit to par_offset
+
+       * paragraph.C: ws change
+       * paragraph.h: ditto
+       * text3.C: ditto
+       * text.C: ditto
+
+2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * paragraph_pimpl.C (simpleTeXSpecialChars): remove special
+       treatment for ']'
+
+       * paragraph.C (simpleTeXOnePar): when we have a \item with
+       optional argument, enclose the argument with curly brackets (in
+       case it contains a closing square bracket)
+
+       * text2.C (editXY):
+       * text2.C (editXY):
+       * text3.C (checkInsetHit): constify
+
+2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * LyXAction.C (init): mark LFUN_WORD_FIND as working in read-only
+       documents (bug 1629)
+
+2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       Fix toggling of collapsable insets with the mouse (bug 1558)
+
+       * lyxfunc.C (dispatch): adapt to LCursor changes
+
+       * BufferView_pimpl.C (workAreaDispatch): adapt to LCursor changes;
+       make sure that dispatch is not invoked twice
+
+       * cursor.C (needsUpdate): new method
+       (dispatch): return void
+       (result): new method, to access the DispatchResult of the cursor.
+
+2004-08-13  José Matos  <jamatos@lyx.org>
+
+       * tabular.C (docbook): close empty tags in XML. Fix bug 1147.
+
+2004-08-13  André Pönitz  <poenitz@gmx.net>
+
+       * cursor.C (macroModeClose): use plainInsert instead of niceInsert.
+
+       * CutAndPaste.C (eraseSelection): fix cursor position after erasing
+         multiple cells
+
+2004-08-12  André Pönitz  <poenitz@gmx.net>
+
+       * text3.C: take out the 'cursor right' form insertInset and only
+       do it in those places when it is really needed. Fixes crash on
+       C-m...
+
+2004-08-08  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * lyxfunc.C (dispatch): implement LFUN_SAVE_AS_DEFAULT
+
+       * BufferView_pimpl.C (setBuffer): initialize the current font of
+       the underlying LyXText
+
+2004-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * kbsequence.C (print): use UI native formatting for menu
+       shortcuts
+
+       * text.C (insertChar): call Paragraph::insertChar with a font
+       argument (cosmetic)
+
+       * paragraph.C (insertInset, insertChar): the version that takes a
+       LyXFont argument is now a wrapper around the other one (the
+       opposite used to be true).
+
+       * paragraph_pimpl.C (insertInset, insertChar): remove the LyXFont
+       argument. Font setting is done in Paragraph now.
+
+2004-08-04  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * outputparams.h: add new members intitle and lang.
+
+       * paragraph.C (simpleTeXOnePar): initialize rp.lang and
+       rp.intitle. Actually use rp in call to simpleTeXSpecialChars
+
+2004-08-01  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * text3.C (dispatch): remove special handling of button 4 and 5,
+       it is now taken care of in the frontend code.
+
+2004-07-25  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * Spacing.h: add <string> (STLPort compile fix)
+
+2004-08-02  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
+
+       * LaTeXFeatures.C: (jurabib) \RequirePackage -> \usepackage
+
+2004-07-25  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * lyxlex_pimpl.C (compare_tags): chagne return type of operator()
+       to bool.
+
+       * converter.C (showMessage): inherit from unary_function, make
+       operator() const.
+
+       * buffer.C (writeFile): initialize retval
+
+       * InsetList.h: rename private variable list to list_
+       * InsetList.[Ch]: adjust accordingly.
+
+2004-07-24  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * text3.C, text2.C, text.C, tabular.C, paragraph_funcs.C, paragraph.C:
+       * lyxlength.C, lyxgluelength.C, lyxfunc.C, lyxfont.C, lyxfind.C:
+       * kbmap.C, funcrequest.C, factory.C, cursor.C, counters.C:
+       * bufferview_funcs.C, bufferparams.C, buffer.C, Spacing.C:
+       * ParagraphParameters.C, LaTeXFeatures.C: replace
+       "support/std_sstream.h" with <sstream>
+
+2004-07-23  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * lyxserver.C (startPipe): use this (pointer) not *this (reference)
+       * lyxsocket.C (LyXServerSocket): ditto
+       (serverCallback): ditto
+
+2004-07-23  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
+
+       * LaTeXFeatures.C: check release date when loading jurabib.
+
+2004-07-22  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * lyxserver.C (startPipe): call register_socket_callback
+       (endPipe): call unregister_socket_callback
+
+2004-07-21  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * lyxsocket.C (LyXServerSocket): reduce max outstanding clients to 3
+       (LyXServerSocket): register the callback
+       (LyXServerSocket): unregister the callback
+       (fd): delete function
+       (serverCallback): improve error checking and setup the callbacks.
+       (dataCallback): change arg to fd.
+       (writeln): new func (copied fro the client socket) used for server
+       write to client.
+       (LyXDataSocket): simplify
+       (~LyXDataSocket): close ann unregiser callback
+       (server): delete function
+       (fd): delete function
+       (readln): small changes, improve some std::string usage
+       (writeln): constify a bit
+
+2004-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * kbmap.C (find1keybinding): new method, only used by LyX/Mac with
+       Qt frontend
+
+2004-07-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * BufferView_pimpl.C (setBuffer): set the layout combox value only
+       after it has been populated
+
+2004-06-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * text2.C (insertInset): move cursor when inserting inset.
+
+2004-06-30  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * kbmap.C (findbindings): a couple of new methods. returns a
+       container of kb_sequence objects. The real work is done by the
+       private recursive version
+       (printbindings): uses findbindings to print out a bracketed list
+       of bindings (renamed from findbinding).
+
+       * MenuBackend.C (binding): use kb_keymap::findbindings
+
+       * lyxfunc.C (sendDispatchMessage): use use kb_keymap::printbindings.
+
+2004-07-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * buffer.C: up LYX_FORMAT to 235 (needed for the paperpackage fix)
+
+2004-06-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * paragraph.C (isWord): return true on insets that report
+       isLetter().
+
+       * text.C (getWord): use Paragraph::isWord to decide what is in a
+       word and what is not; fix bug 1609.
+
+2004-06-27  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
+
+       * tex-strings.C: add "none" to string_paperpackages[], fixes
+       off-by-one-error in the paperpackage selection.
+
+       * lyxlex.[Ch]:
+       * tex-strings.[Ch]: char const * string[n]
+       -> char const * const string[]
+
+2004-06-10  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * lyxfunc.C (getStatus): if lyx_gui::getStatus disables the
+       command, return early.
+
+2004-06-18  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * debug.h: add DEBUG to enum and fix size of ANY.
+
+       * debug.C: add support for Debug::DEBUG
+       (showTags): cast errorTags.level to unsigned int
+
+       * BufferView_pimpl.C (fitCursor): use Debug::DEBUG
+       (redoCurrentBuffer): ditto
+       (updateScrollbar): ditto
+       * cursor.C (dispatch): ditto
+       * text2.C (setLayout): ditto
+       (setFont): ditto
+       (updateCounters): ditto
+       (editXY): ditto
+       (deleteEmptyParagraphMechanism): ditto
+
+2004-06-09  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * Makefile.am (dist_noinst_DATA): use the dist_ and noinst_
+       annotations to cleanup the Makefile slightly.
+
+2004-05-10  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * lyxrc.C: do not set user_email to a default value but use empty
+       instead. The entry used to be translated, which does not work
+       since at the point where lyxrc is constructed there is no
+       translation service available
+
+       * messages.C (getLocaleDir): remove and use directly
+       lyx_localedir() instead
+
+2004-06-02  Angus Leeming  <leeming@lyx.org>
+
+       Fix crash caused by dereferencing null pointer 'exportdata' in
+       OutputParams by creating a new ExportData variable on the heap,
+       storing it in a boost::shared_ptr.
+       The crash was triggered when generating an Instant Preview
+       of an external inset.
+
+       * Makefile.am: add outputparams.C
+
+       * outputparams.[Ch]: store exportdata as a shared_ptr<Exportdata>.
+       (c-tor): allocate memory to it.
+
+       * exporter.C (c-tor): associated changes.
+
+2004-06-01  Angus Leeming  <leeming@lyx.org>
+
+       * output_linuxdoc.C (linuxdocParagraphs): Check that the paragraph
+       contains data before calling isInset(0). (Bug 1513.)
+
+2004-06-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * exporter.C (checkOverwrite): new method
+       * exporter.C (copyFile): new method
+       * exporter.C (Export): copy referenced files to the document dir
+       * exporter.[Ch]: new class ExportedFile
+       * exporter.[Ch]: new class ExportData. Contains currently the
+       names of referenced external files
+       * outputparams.h: add exportdata member.
+
+2004-05-28  Lars Gullik Bjonnes  <larsbj@gullik.net>
+
+       * Makefile.am (DISTCLEANFILES): add version.C, stamp-version and
+       version.C-tmp
+
+2004-05-19  Angus Leeming  <leeming@lyx.org>
+
+       * LaTeXFeatures.C:
+       * ToolbarBackend.C:
+       * bufferparams.C:
+       * lyxfunc.C: small changes due to the introduction of namespace
+       lyx::frontend and the moving of namespace biblio to lyx::biblio.
+
+2004-05-18  Alfredo Braunstein  <abraunst@lyx.org>
+
+       * text3.C (dispatch): supress update when only moving the cursor
+       * cursor.C (selHandle): remove commented code
+
+2004-05-17  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * paragraph.C (startTeXParParams): correct column count
+       * CutAndPaste.C (pasteSelection): remove const_cast
+       * output_docbook.C (docbookParagraphs): remove const_cast
+       * output_latex.C (TeXEnvironment, TeXOnePar, TeXDeeper): remove
+       const_cast and return ParagraphList::const_iterator
+       * output_linuxdoc.C (linuxdocParagraphs): remove const_cast
+       * output_plaintext.C (writeFileAscii): remove const_cast
+       * paragraph.[Ch] (simpleTeXOnePar): make const
+       * paragraph_funcs.C (outerPar): use const iterators
+       * paragraph_pimpl.C (validate): use const iterators
+       * text.C (setHeightOfRow): use const iterators
+
+2004-05-17  Angus Leeming  <leeming@lyx.org>
+
+       * lfuns.h:
+       * LyXAction.C (init): new LFUN_INSET_REFRESH.
+
+       * lyxfunc.C (dispatch): in the LFUN_BUFFERPARAMS_APPLY block loop
+       over all insets and dispatch LFUN_INSET_REFRESH to any citation insets
+       if the citation engine has changed.
+
+2004-05-14  José Matos  <jamatos@lyx.org>
+
+       * buffer.C (makeDocBookFile): add a default Formal Public Identifier
+       if the textclass does not provide it. Have it different for sgml and
+       xml.
+       support the language of document.
+       * output_docbook.C (docbookParagraphs):
+       * paragraph.[Ch] (getDocbookId): new function that gets the id of the
+       first anchor as the id of the paragraph, remove special case code.
+       * sgml.C (escapeChar): escape only < & >.
+
+2004-05-14  Angus Leeming  <leeming@lyx.org>
+
+       * bufferparams.h: move biblio::CiteEngine enum here to minimize
+       dependencies on src/frontends/controllers/biblio.h. Define a
+       CiteEngine_enum wrapper class to enable the enum to be forward
+       declared.
+
+2004-05-12  Angus Leeming  <leeming@lyx.org>
+
+       * buffer.C: up LYX_FORMAT to 234.
+       * bufferparams.[Ch]: replace the three bools, use_natbib, use_jurabib,
+       use_numerical_citations with a single biblio::CiteEngine cite_engine
+       variable.
+       * LaTeXFeatures.C (getPackages): use BufferParams::cite_engine.
+
+2004-05-13  José Matos  <jamatos@lyx.org>
+
+       * converter.h:
+       * converter.C (Converter, readFlags): add xml member.
+       * outputparams.h: add XML flavor.
+       * buffer.C (makeDocBookFile): add support for the sgml/xml distinction.
+
+2004-05-03  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * lyxfunc.C (dispatch):
+       (getStatus): fix handling of LFUN_SEQUENCE
+
+2004-04-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * debug.C (showLevel): do not forget the end-of-line marker
+
+2004-04-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * kbmap.C (read): do not stop parsing a bind file when an error
+       occurs (bug 1575)
+
+2004-04-29  Angus Leeming  <leeming@lyx.org>
+
+       * cursor.C:
+       * factory.C:
+       * pariterator.C:
+       * text2.C: wrap a bunch of #warning statements
+       inside #ifdef WITH_WARNINGS blocks.
+
+2004-04-29  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * buffer.C: increment format to 233.
+
+2004-04-28  Angus Leeming  <leeming@lyx.org>
+
+       * BufferView_pimpl.C:
+       * lyxfunc.C:
+       * text3.C:
+       s/updateToolbar()/updateToolbars()/
+       s/Toolbar.h/Toolbars.h/
+
+2004-04-28  Angus Leeming  <leeming@lyx.org>
+
+       * BufferView.[Ch] (c-tor):
+       * BufferView_pimpl.[Ch] (c-tor): no longer receives x,y position.
+       No longer passes these data to the WorkArea generator.
+
+2004-04-28  Angus Leeming  <leeming@lyx.org>
+
+       * BufferView_pimpl.C (c-tor): pass LyXView & to WorkArea generator.
+
+2004-04-26  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * LaTeXFeatures.C, lyx_sty.[Ch]: add \lyxdot macro
+
 2003-09-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
 
        * output_latex.C (TeXEnvironment): make sure that there is a line