]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ChangeLog
partial inset toggling ; insetAllowed stuff
[lyx.git] / src / insets / ChangeLog
index 27b3e1df423177b5bdef8d16afc28042349e0af2..64e55b4823b5d8a8befb81764dcaa2dc2a003221 100644 (file)
@@ -1,3 +1,121 @@
+2001-07-18  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
+
+       * many files: update to match the change below
+
+       * inset.h (insetAllowed): renamed from insertInsetAllowed;
+       implement the version which takes an inset here.
+
+       * insetcollapsable.[Ch]: implement open and isOpen
+
+       * inset.h: remove insertInsetAllowed from Inset
+       (open): new method, to open or close an inset
+       (isOpen): returns the status of an inset
+       (isCollapsable, colapse): removed
+
+2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
+
+       * insetquotes.C (dispString): display french guillemets when using
+       ISO8859-15.
+
+2001-07-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * insetcollapsable.h: remove bogus return statements
+
+2001-07-18  Juergen Vigna  <jug@sad.it>
+
+       * insettabular.C (selectNextWord): fixed spellchecking for the
+       first cell of a tabular (wasn't entered!)
+
+2001-07-17  Juergen Vigna  <jug@sad.it>
+
+       * various files: implemented the below functions.
+       
+       * inset.h: added functions
+       - virtual string selectNextWord(BufferView *, float & value) const;
+       - virtual void selectSelectedWord(BufferView *) { return; }
+       - virtual void toggleSelection(BufferView *, bool /*kill_selection*/)
+       needed for spellchecking correctly!
+
+2001-07-16  Lars Gullik Bjønnes  <larsbj@birdstep.com>
+
+       * insetert.C (latex): write out all paragraphs.
+
+2001-07-17  Baruch Even  <baruch@lyx.org>
+
+       * insetgraphics.C (draw): Removed unneeded casts.
+
+2001-07-16  Juergen Vigna  <jug@sad.it>
+
+       * insettext.C (update): fixed small oversight (reset lt to 0).
+
+2001-07-14  Baruch Even  <baruch@lyx.org>
+
+       * insetgraphics.h:
+       * insetgraphics.C: Added a copy c-tor and handled the same_id case. 
+
+2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
+
+       Consistent use of Lsstream.h:
+       * figinset.C: removed using std::ostringstream directive.
+
+       * insetgraphics.C (createLatexOptions):
+       * insetinclude.C (unique_id):
+       std::ostringstream -> ostringstream.
+       * insettext.C (localDispatch): std::istringstream -> istringstream.
+
+2001-07-13  Juergen Vigna  <jug@sad.it>
+
+       * insetfloat.C (insertInsetAllowed): added missing const_cast.
+
+       * insetcollapsable.C (getLockingInset): ditto.
+
+2001-07-12  Juergen Vigna  <jug@sad.it>
+
+       * insetcollapsable.h: added implementation of new function for
+       collapsable status.
+
+       * various files: added implementation of new insertInsetAllowed-func
+       and redone the function a bit more.
+       
+       * inset.h: added isCollapsable(), bool collapsed(),
+       collapsed(BufferView *, bool) and insertInsetAllowed(Inset::Code).
+
+       * insetfloat.C (insertInsetAllowed): make a bit more checks.
+
+       * insettext.C (getLyXText): use 'lt' to assure we're not erasing the
+       LyXText which is marked for removal while we're using it!
+
+       * insettext.h: added private LyXText * lt to use it to assure we are
+       not deleting our LyXText while we're using it!
+
+2001-07-11  Juergen Vigna  <jug@sad.it>
+
+       * insettext.C (insertInset): check if we are before the inset after
+       inserting it! This check IS needed. Remove the Undo-Call as it is
+       called in LyXText::insertInset!
+
+       * insettext.h: added struct InnerCache.
+
+       * insettext.C (deleteLyXText): insert a new InnerCache mechanism so
+       that we ONLY delete the LyXText in the getLyXText() routine. So we
+       are sure we don't delete LyXText while someone is working with it!
+
+2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
+
+       * insetexternal.C: (*it). -> it->
+       * insettext.C: ditto
+
+2001-07-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * insetcollapsable.C (edit): always open collapsed insets (even if
+       they are not autocollapsable)
+
+       * insetcommand.C (operator=): simplify.
+
+2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
+
+       * insetert.C (latex): handle META_NEWLINE
+
 2001-07-09  Juergen Vigna  <jug@sad.it>
 
        * insetert.h: a normal InsetText can insert insets, but we won't.