X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=ChangeLog;h=b3ffb672a4400effa0bfbcf107bbe8a5a10c2f22;hb=b0389b631b1a00de088cbfb67f961f952b168e24;hp=f481ca50e112ec58f62c191295e184d972d80b08;hpb=1d37337a2e5b2cfc302ab263553679d2f3c6b9b3;p=lyx.git diff --git a/ChangeLog b/ChangeLog index f481ca50e1..b3ffb672a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,161 @@ +2000-09-26 Jean-Marc Lasgouttes + + * lib/layouts/siamltex.layout: new textclass for SIAM journals, + from Kornelia Pietsch + + * src/frontends/xforms/Menubar_pimpl.C: menu buttons are now + created in the constructors in different groups. Then set() just + have to show the groups as needed. This fixes the redraw problems + (and is how the old menu code worked). + + * src/support/lyxlib.h: declare the methods as static when we do + not have namespaces. + +2000-09-26 Juergen Vigna + + * src/buffer.C (asciiParagraph): new function. + (writeFileAscii): new function with parameter ostream. + (writeFileAscii): use now asciiParagraph. + + * various inset files: added the linelen parameter to the Ascii-func. + + * src/tabular.C (Write): fixed error in writing file introduced by + the last changes from Lars. + + * lib/bind/menus.bind: removed not supported functions. + + * src/insets/insettext.C (Ascii): implemented this function. + + * src/insets/lyxinset.h (Ascii): added linelen parameter. + + * src/tabular.C (write_attribute[int,string,bool]): new functions. + (Write): use of the write_attribute functions. + + * src/bufferlist.C (close): fixed reasking question! + +2000-09-26 Lars Gullik Bjønnes + + * src/support/unlink.C src/support/remove.C src/support/mkdir.C: + new files use the everwhere possible. + + * several files: + * src/form1.C src/form1.h src/layout_forms.C src/layout_forms.h + src/log_form.C src/lyx.C: + regenerated + + * src/buffer.C (runLaTeX): remove func + + * src/PaperLayout.C: removed file + * src/ParagraphExtra.C: likewise + * src/bullet_forms.C: likewise + * src/bullet_forms.h: likewise + * src/bullet_forms_cb.C: likewise + + * src/Makefile.am (lyx_SOURCES): remove PaperLayout.C, + ParagraphExtra.C, bullet_forms.C, bullet_forms.h and + bullet_forms_cb.C + + * several files: remove all traces of the old fd_form_paragraph, + and functions belonging to that. + + * several files: remove all traces of the old fd_form_document, + and functions belonging to that. + + * several files: constify local variables were possible. + + * several files: remove all code that was dead when NEW_EXPORT was + defined + + * several files: removed string::c_str in as many places as + possible. + + * forms/makefile (SRCS,OBJS,COBJS): removed bullet_forms.[fd,c,C] + (e): be a bit more outspoken when patching + (updatesrc): only move files if changed. + + * forms/layout_forms.h.patch: regenerated + + * forms/layout_forms.fd: remove form_document and form_paragraph + and form_quotes and form_paper and form_table_options and + form_paragraph_extra + + * forms/form1.fd: remove form_table + + * forms/fdfix.sh: remove sed rules for fl_set_object_lcolor and + the fdui->... rewrite. Update some comments to xforms 0.88 + + * forms/bullet_forms.C.patch: removed file + * forms/bullet_forms.fd: likewise + * forms/bullet_forms.h.patch: likewise + + * development/Code_rules/Rules: added a section on switch + statements. Updated some comment to xforms 0.88. + +2000-09-26 Jean-Marc Lasgouttes + + * src/buffer.C (readFile): make sure that the whole version number + is read after \lyxformat (even when it contains a comma) + + * lib/ui/default.ui: change shortcut of math menu to M-a. + +2000-09-25 Jean-Marc Lasgouttes + + * src/vspace.C (nextToken): use isStrDbl() to check for proper + double values. + + * src/LyXView.C (updateWindowTitle): show the full files name in + window title, limited to 30 characters. + + * src/support/lyxstring.C (lyxstring): fix it correctly this time. + When a number of characters has been given, we should not assume + that the string is 0-terminated. + + * src/intl.C (InitKeyMapper): remove a bunch of string::c_str() + calls (fixes some memory leaks) + + * src/intl.[Ch]: add a destructor for Intl, in order to delete the + trans member on exit. + +2000-09-22 Jean-Marc Lasgouttes + + * src/converter.C (GetReachable): fix typo. + + * src/lyxlex.C (GetFloat): rewrite to use strToDbl() and + understand ',' instead of '.'. + (GetInteger): rewrite to use strToInt(). + +2000-09-26 Juergen Vigna + + * src/frontends/xforms/FormParagraph.C: fixed de/activation of fields, + better visibility and error-message on wrong VSpace input. + + * src/language.C (initL): added english again. + 2000-09-25 Juergen Vigna + * src/frontends/kde/Dialogs.C (Dialogs): + * src/frontends/gnome/Dialogs.C (Dialogs): + * src/frontends/kde/Makefile.am: + * src/frontends/gnome/Makefile.am: added FormParagraph from xforms. + + * src/frontends/xforms/forms/makefile: added form_paragraph.fd. + + * src/frontends/xforms/Dialogs.C (Dialogs): added FormParagraph. + + * src/frontends/xforms/Makefile.am: added files for FormParagraph. + + * src/frontends/xforms/FormParagraph.C: + * src/frontends/xforms/FormParagraph.h: + * src/frontends/xforms/form_paragraph.C: + * src/frontends/xforms/form_paragraph.h: + * src/frontends/xforms/forms/form_paragraph.fd: new files for the new + paragraph layout. + + * src/lyxfunc.C (Dispatch): call the new layout paragraph. + + * src/tabular.C (OldFormatRead): forgot to delete the temporary + Paragraph-Data after use. + * src/insets/insettext.C (LocalDispatch): don't set the layout on non breakable paragraphs.