X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FChangeLog;h=59ece2c11fbd40caf9d80dbdb8aa9fd77129af52;hb=d473dff41766665868f7e802181acbbbfb076657;hp=2acaf85e29953e8206502004b1eeef53d5e9d817;hpb=c158a7987bbc6e90b14e8e6d69d62fa4c43fad6d;p=lyx.git diff --git a/src/ChangeLog b/src/ChangeLog index 2acaf85e29..59ece2c11f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,244 @@ + +2004-04-05 André Pönitz + + * cursor.[Ch] (valign, halign...): remove unneeded functions + +2004-04-05 Angus Leeming + + * lyxlength.[Ch] (unit_name et al.): const-correct. + +2004-04-05 Angus Leeming + + * BufferView_pimpl.C: + * buffer.C: + * counters.C: + * cursor.C: + * lyxfunc.C + * paragraph.C: + * pariterator.C: + * text.C: + * text2.C: + * text3.C: wrap #warning calls inside #ifdef WITH_WARNINGS blocks. + +2004-04-01 Alfredo Braunstein + + * text3.C (getStatus): add LFUN_BEGINNINGBUF + +2004-04-01 Alfredo Braunstein + + * lyxfind.C: add a couple of inTexted() tests + other small fixes + * BufferView_pimpl.[Ch] (getStatus) + * BufferView.[Ch] (getStatus): add + * lyxfunc.C (getStatus): move lfuns handled in + BufferView::dispatch to te function above + * Cursor.C (setSelection): set selection() = true + +2004-04-01 Alfredo Braunstein + + * lyxfunc.C (getStatus): enable LFUN_WORD_{FIND,REPLACE} + +2004-03-31 Angus Leeming + + * lyxfunc.C (dispatch): Fall through to the generic + Dialogs::show("preamble"). + +2004-03-31 Angus Leeming + + * lyxfunc.C (dispatch): Fall through to the generic + Dialogs::show("spellchecker"). + +2004-03-31 Angus Leeming + + * lyxfunc.C (getStatus, dispatch): changed invocation of the + preferences dialog. + +2004-03-31 Alfredo Braunstein + + * BufferView.C + * cursor.[Ch] + * dociterator.[Ch]: + * insetiterator.[Ch]: + * lyxfind.C: + * lyxfunc.C: + * pariterator.[Ch]: + * text2.C: + * undo.[Ch]: s/DocumentIterator/DocIterator/g + +2004-03-31 Alfredo Braunstein + + * BufferView.C (setCursor, putSelectionAt): call edit to open the + insets where we are putting the cursor. + +2004-03-31 Angus Leeming + + * lfuns.h: + * LyXAction.C: new lfun LFUN_LYXRC_APPLY. + + * lyxrc.[Ch] (read, write): overloaded member functions taking + a std::[io]stream arguments. + + * lyxfunc.C (getStatus, dispatch): handle LFUN_LYXRC_APPLY. + +2004-03-31 Angus Leeming + + * lyxfunc.C (loadTextclass): new helper function, invoked by two of + dispatch's case blocks, LFUN_TEXTCLASS_APPLY and LFUN_TEXTCLASS_LOAD. + + * lyxtextclass.C (load): if the text class couldn't be loaded, then + don't overwrite 'loaded_ = false' with 'loaded_ = true' ! + +2004-03-31 Angus Leeming + + * lyxfunc.C (dispatch): remove the cursor-manipulation code from + the LFUN_ALL_INSETS_TOGGLE code. + +2004-03-30 Angus Leeming + + * lyxfunc.C (dispatch): the specialization Dialogs::showDocument + has died. Fall through to the generic Dialogs::show("document"). + +2004-03-30 Angus Leeming + + * lfuns.h: + * LyXAction.C: new lfuns LFUN_LANGUAGE_BUFFER, LFUN_TEXTCLASS_APPLY, + LFUN_TEXTCLASS_LOAD, LFUN_SAVE_AS_DEFAULT, LFUN_BUFFERPARAMS_APPLY. + + * lyxfunc.C (getStatus, dispatch): define the actions for these + lfuns. Little more than a cut and pste job from ControlDocument.C + + * lyxtextclass.[Ch] (loaded): accessor for the private bool loaded_. + +2004-03-30 Angus Leeming + + * lfuns.h: + * LyXAction.C (init): new lfuns, LFUN_KEYMAP_TOGGLE, + LFUN_NEXT_INSET_TOGGLE, LFUN_ALL_INSETS_TOGGLE. + + * lyxfunc.C (dispatch): LFUN_ALL_INSETS_TOGGLE is used to toggle the + open/closed state of ollapsable insets. Usage: + + all-inset-toggle , where + == "open" || "closed" || "toggle" and + is an identifier for a 'type' of inset. Eg "branch", "ert",... + + * lyxtext.h, text2.C (toggleInset): removed. + + * text3.C (dispatch): split the existing LFUN_INSET_TOGGLE in two, + LFUN_KEYMAP_TOGGLE and LFUN_NEXT_INSET_TOGGLE. LFUN_NEXT_INSET_TOGGLE + now passes LFUN_INSET_TOGGLE to the found inset. + + * InsetList.[Ch] (insetsOpenCloseBranch): removed. Functionality + is now invoked as "all-insets-toggle toggle branch". + +2004-03-30 Angus Leeming + + * dociterator.C: + * insetiterator.C: + * pariterator.[Ch]: added/corrected header blurb. + +2004-03-30 Alfredo Braunstein + + * dociterator.[Ch]: add an inset_ member + (backwardPos): implemented + (backwardPos, forwardPos): use inset_ when the stack is empty. + (doc_iterator_begin, doc_iterator_end): implemented + * pariterator.[Ch]: adjust, add begin, end + * insetiterator.[Ch]: adjust, add begin, end + * cursor.C: + * document.C: + * BufferView.C: + * BufferView_pimpl.C: + * CutAndPaste.C: adjust + +2004-03-29 Jürgen Spitzmüller + + * buffer.C: increment file format to 232. + * LaTeXFeatures.C: add bibtopic package. + * bufferparams.[Ch]: param \use_bibtopic. + + * lyxrc.[Ch]: add lyxrc bibtex_command + * LaTeX.C: use rc.bibtex_command instead of hardcoded string. + + * buffer.C: increment file format to 231. + +2004-03-28 Alfredo Braunstein + + * dociterator.C: implement forwardPar + * iterators.[Ch]: remove, replaced by + * pariterator.[Ch]: this. derive ParIterator from DocumentIterator + * BufferView.C: + * BufferView_pimpl.C: + * CutAndPaste.C: + * buffer.C: + * bufferview_funcs.C: + * cursor.C: + * lyxfind.C + * lyxfunc.C + * paragraph_funcs.C + * toc.C: + * Makefile.am: adjust + +2004-03-28 Alfredo Braunstein + + * CutAndPaste.C (pasteSelection): fix 2 crashes + (eraseSelection): fix a crash + * paragraph_funcs.C: remove a warning + +2004-03-28 Angus Leeming + + * lfuns.h: + * LyXAction.C (init): new LFUN_PRINT. + + * lyxfunc.C (getStatus, dispatch): handle LFUN_PRINT. + +2004-03-27 Angus Leeming + + * lfuns.h: + * LyXAction.C (init): new LFUN_EXPORT_CUSTOM. + + * lyxfunc.C (getStatus, dispatch): handle LFUN_EXPORT_CUSTOM. + +2004-03-27 Angus Leeming + + * paragraph_funcs.C (moveItem): fix memory leaks, ensure that + insetlist always contains non-null pointers to insets. + +2004-03-26 Angus Leeming + + * src/BufferView_pimpl.C: + * src/CutAndPaste.C: + * src/buffer.C: + * src/iterators.C: + * src/output_plaintext.C: + * src/outputparams.h: + * src/paragraph_funcs.C: + * src/rowpainter.C: + * src/text.C: + * src/text2.C: + * src/frontends/controllers/ControlErrorList.C: + * src/frontends/gtk/FileDialogPrivate.C: + * src/frontends/gtk/GPainter.C: + * src/frontends/gtk/GToolbar.C: + * src/frontends/qt2/QRef.C: + * src/mathed/math_scriptinset.C: squash compiler warnings. + +2004-03-26 Angus Leeming + + * ispell.C (LaunchIspell::start): + * lyx_cb.C (AutoSaveBuffer::start): + invoke run(DontWait) rather than runNonBlocking(). + +2004-03-26 Alfredo Braunstein + + * buffer_funcs.C (readFile): add cancel button to two prompt dialogs + +2004-03-26 Jean-Marc Lasgouttes + + * kbsequence.C (print): adjust + + * kbmap.C (printKeySym): rename and change signature + (printKey): use LyXKeySym::print() + 2004-03-26 Martin Vermeer * undo.C: add using std::advance to compile for stlport