]> git.lyx.org Git - features.git/blob - ChangeLog
Fixed a bug related with the initialization of include_label.
[features.git] / ChangeLog
1 2000-07-02 José Abílio Matos <jamatos@fep.up.pt>
2
3         *  src/insets/insetinclude.C (InsetInclude): fixed
4         initialization of include_label.
5         (unique_id): now returns a string.
6
7 2000-07-01 José Abílio Matos <jamatos@fep.up.pt>
8
9         * src/LaTeXFeatures.h: new member IncludedFiles, for
10         a map of key, included file name.
11
12         * src/LaTeXFeatures.C (getIncludedFiles): returns a string
13         with the included files for inclusion in SGML preamble,
14         i. e., linuxdoc and docbook.
15
16         * src/buffer.h:
17         * src/buffer.C (makeLinuxDocFile): takes two new arguments,
18         nice (is the generated linuxdoc code to be exported?), that
19         allows to remove column, and only_body that will be true for
20         slave documents. Insets are allowed inside SGML font type.
21         New handling of the SGML preamble for included files.
22         (makeDocBookFile): the same for docbook.
23
24         * src/insets/insetinclude.h:
25         * src/insets/insetinclude.C (Validate): keeps a list of included files.
26         (Linuxdoc): 
27         (DocBook): new export methods.
28
29         * src/lyx_cb.C: adjust to the new calling sequence for makeLinuxDocFile
30         and makeDocBookFile.
31
32         * src/lyx_main.C (easyParse): accept linuxdoc and docbook as
33         formats to export with command line argument -x.
34
35 2000-06-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
36
37         * src/BufferView_pimpl.h: remove member variables lyx_focus and
38         work_area_focus
39
40         * src/BufferView_pimpl.C (Pimpl): delete init of work_area_focus
41         and lyx_focus
42         (cursorToggle): remove special handling of lyx focus.
43
44 2000-06-28  Juergen Vigna  <jug@sad.it>
45
46         * src/text.C (GetVisibleRow): fixed clearing of text if rowHeight >
47         insetHeight.
48
49 2000-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
50
51         * src/insets/insetindex.C (Edit): add a callback when popup is
52         closed by the WM.
53
54         * src/insets/insettext.C (LocalDispatch): 
55         * src/insets/insetmarginal.h: 
56         * src/insets/insetlist.h: 
57         * src/insets/insetfoot.h: 
58         * src/insets/insetfloat.h: 
59         * src/insets/insetert.h: add a missing std:: qualifier.
60
61 2000-06-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
62
63         * src/support/lyxsum.C (sum): '\0' teminate file read when using
64         strstream. 
65
66         * src/insets/lyxinset.h: add FLOAT_CODE and MINIPAGE_CODE
67
68         * src/insets/insettext.C (Read): remove tmptok unused variable
69         (LocalDispatch): add not working LFUN_PARAGRAPH_SPACING
70         (InsertInset): change for new InsetInset code
71
72         * src/insets/insettext.h: add TEXT inline method
73
74         * src/insets/insettext.C: remove TEXT macro
75
76         * src/insets/insetmarginal.C (Write): new method
77         (Latex): change output slightly
78
79         * src/insets/insetfoot.C (Write): new method
80         (Latex): change output slightly (don't use endl when no need)
81
82         * src/insets/insetert.C (Write): new method
83
84         * src/insets/insetcollapsable.h: make button_length, button_top_y
85         and button_bottm_y protected.
86
87         * src/insets/insetcollapsable.C (Write): simplify code by using
88         tostr. Also do not output the float name, the children class
89         should to that to get control over own arguments
90
91         * src/insets/insetfloat.[Ch] src/insets/insetlist.[Ch]
92         src/insets/insetminipage.[Ch]:
93         new files
94
95         * src/insets/Makefile.am (libinsets_la_SOURCES): add new files
96         
97         * src/lyxfunc.C (Dispatch): cases for new insets/commands
98
99         * src/Makefile.am (lyx_SOURCES): add the new files
100
101         * src/LyXAction.C (init): add LFUN_INSET_MARGINAL,
102         LFUN_INSET_MINIPAGE, LFUN_INSET_FLOAT, LFUN_INSET_LIST
103         * src/commandtags.h: ditto
104         
105         * src/LaTeXFeatures.h: add a std::set of used floattypes
106
107         * src/LaTeXFeatures.C (getPackages): add basic support for float.sty
108
109         * src/FloatList.[Ch] src/Floating.h: new files
110
111         * src/CutAndPaste.C (SwitchLayoutsBetweenClasses): change call to
112         InsertInset. 
113         * src/lyx_cb.C (TableApplyCB): ditto
114         * src/text.C: ditto
115         * src/text2.C: ditto
116         * src/buffer.C (SimpleLinuxDocOnePar): ditto
117         (parseSingleLyXformat2Token): ditto + add code for
118         backwards compability for old float styles + add code for new insets
119         
120         * src/lyxparagraph.[Ch] (InsertChar(size_type, char, LyXFont)): new
121         method
122         (InsertInset(size_type, Inset *, LyXFont)): new method
123         (InsetChar(size_type, char)): changed to use the other InsetChar
124         with a LyXFont(ALL_INHERIT).
125         (InsetInset(size_type, Inset*)): changed to use InsetChar to
126         insert the META_INSET.
127         
128         * sigc++/thread.cc (Privete<int>::operator int&): move definition
129         out of line. 
130         * sigc++/thread.h (Threads): from here
131
132         * sigc++/scope.cc (ScopeIterator_::ScopeIterator_): move
133         definition out of line
134         * sigc++/scope.h: from here
135
136 2000-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
137
138         * src/lyxrc.C (read): make sure the .kmap files exist when a keymap
139         is specified (adapted from a patch from edscott <edscott@imp.mx>).
140
141         * Makefile.am (bindist): new target.
142
143         * INSTALL: add instructions for doing a binary distribution.
144
145         * development/tools/README.bin.example: update a bit. 
146
147 2000-06-26  Lior Silberman <slior@math.huji.ac.il>
148
149         * src/lyxrc.C: 
150         * lib/lyxrc.example: new lyxrc tag \set_color.
151
152         * src/lyxfunc.C (Dispatch): 
153         * src/commandtags.h: 
154         * src/LyXAction.C: new lyxfunc "set-color".
155
156         * src/LColor.[Ch] (setColor): new method to set colors from a lyxname
157         and an x11name given as strings.
158
159         * src/ColorHandler.[Ch] (updateColor): new method. Updates the GC
160         cache when a color is changed.
161
162 2000-06-26  Juergen Vigna  <jug@sad.it>
163
164         * src/lyxrow.C (width): added this functions and variable.
165
166         * src/insets/insetcite.C (create_form_citation_form): some Gravity
167         changes.
168
169         * src/text.C (SetHeightOfRow): fixed calcualting of width.
170
171 2000-06-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
172
173         * images/undo_bw.xpm: new icon.
174         * images/redo_bw.xpm: ditto.
175
176         * configure.in (INSTALL_SCRIPT): change value to
177         ${INSTALL} to avoid failures of install-script target.
178         * lib/reLyX/configure.in (INSTALL_SCRIPT): ditto
179
180         * src/BufferView.h: add a magic "friend" declaration to please
181         compaq cxx.
182
183 2000-06-23  Angus Leeming <a.leeming@ic.ac.uk>
184
185         * forms/cite.fd: modified to allow resizing without messing
186         up the dialog.
187
188         * src/insetcite.C: Uses code from cite.fd almost without
189         tweaking. ;-)
190         User can now resize dialog in the x-direction.
191         Resizing the dialog in the y-direction is prevented, as the
192         code does this intelligently already.
193
194 2000-06-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
195
196         * INSTALL: remove obsolete entry in "problems" section.
197
198         * lib/examples/sl_*.lyx: update of the slovenian examples.
199
200         * src/support/FileInfo.[Ch] (getBlockSize): remove.
201
202 2000-06-23  Juergen Vigna  <jug@sad.it>
203
204         * src/lyxtext.h: added a 'cleared' flag to draw() function.
205
206         * src/buffer.C (resize): delete the LyXText of textinsets.
207
208         * src/paragraph.C (SetInsetOwner): set the owner in the insets too.
209
210         * src/insets/lyxinset.h: added another parameter 'cleared' to
211         the draw() function.
212
213         * src/lyxfunc.C (processKeyEvent): move cursor to the right of the
214         unlocking inset in inset.
215
216 2000-06-22  Juergen Vigna  <jug@sad.it>
217
218         * src/lyxscreen.h: added some y_offset/x_offset parameters for drawings
219         of insets and moved first to LyXText.
220
221         * src/mathed/formulamacro.[Ch]:
222         * src/mathed/formula.[Ch]: changed prototype of draw() and GetCursorPos
223
224 2000-06-21  Juergen Vigna  <jug@sad.it>
225
226         * src/text.C (GetVisibleRow): look if I should clear the area or not
227         using Inset::doClearArea() function.
228
229         * src/insets/lyxinset.h: added doClearArea() function and
230         modified draw(Painter &, ...) to draw(BufferView *, ...)
231
232         * src/text2.C (UpdateInset): return bool insted of int
233
234 2000-06-20  Dekel Tsur  <dekel@math.tau.ac.il>
235
236         * src/lyx_gui.C (create_forms): Add "Reset" option to the language 
237         combox in the character popup
238
239         * src/lyx_cb.C (UserFreeFont): Add argument to the method:
240         BufferParams const & params
241
242 2000-06-20  Juergen Vigna  <jug@sad.it>
243
244         * src/insets/insettext.C (SetParagraphData): set insetowner on
245         2- paragraphs.
246
247 2000-06-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
248
249         * src/Timeout.[Ch]: Change to use signals instead of callbacks.
250         * src/LyXView.h (struct FD_form_main): remove, LyXView inherits
251         from SigC::Object
252         (form_main_): remove
253         
254         * src/LyXView.C (LyXView_AutosaveTimerCB): remove 
255         (create_form_form_main): remove FD_form_main stuff, connect to
256         autosave_timeout signal
257
258         * src/LyXView.[Ch] (getMainForm): remove 
259         (UpdateTimerCB): remove
260         * src/BufferView_pimpl.h: inherit from SigC::Object
261
262         * src/BufferView_pimpl.C (Pimpl): connect to cursor_timeout with
263         signal instead of callback
264
265         * src/BufferView.[Ch] (cursorToggleCB): remove 
266
267 2000-06-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
268
269         * src/BufferView_pimpl.C: changes because of the one below
270
271         * src/screen.[Ch]: Made the lyxscreen take LyXText as argument
272         instead of storing a pointer to a LyXText. 
273
274         * src/buffer.[Ch]: apply Baruch's remove isdviclean patch. 
275
276 2000-06-10  Dekel Tsur  <dekel@math.tau.ac.il>
277
278         * src/lyxparagraph.h
279
280         * src/paragraph.C: Changed fontlist to a sorted vector.
281                                          
282 2000-06-19  Juergen Vigna  <jug@sad.it>
283
284         * src/BufferView.h: added screen() function.
285
286         * src/insets/insettext.C (LocalDispatch): some selection code
287         fixed.
288
289         * src/vspace.C (nextToken): use stringfunctions instead of sscanf.
290
291         * src/insets/insettext.C (SetParagraphData):
292         (Read): 
293         (InsetText):  fixes for multiple paragraphs.
294
295 2000-06-17  Kayvan A. Sylvan  <kayvan@sylvan.com>
296
297         * development/lyx.spec.in: Call configure with ``--without-warnings''
298         to work around a bug with the Makefiles when doing ``make lyxrpm''.
299         This should be fine, however, since we generally don't want to be
300         verbose when making an RPM.
301         
302 2000-06-16  Dekel Tsur  <dekel@math.tau.ac.il>
303
304         * lib/scripts/fig2pstex.py: New file
305
306 2000-06-16  Juergen Vigna  <jug@sad.it>
307
308         * src/insets/insettabular.C (UpdateLocal): 
309         * src/insets/insettext.C (UpdateLocal): fixed mark_dirty problem.
310         (LocalDispatch): Changed all functions to use LyXText.
311
312 2000-06-15  Juergen Vigna  <jug@sad.it>
313
314         * src/text.C (SetHeightOfRow): call inset::update before requesting
315         any width/height.
316
317         * src/insets/insettext.C (update): 
318         * src/insets/insettabular.C (update): added implementation
319
320         * src/insets/lyxinset.h: added update function
321
322 2000-06-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
323
324         * src/text.C (SelectNextWord): protect against null pointers with
325         old-style string streams. (fix from Paul Theo Gonciari
326         <gptheo@yahoo.com>) 
327
328         * src/cite.[Ch]: remove erroneous files.
329
330         * lib/configure.m4: update the list of created directories.
331
332         * src/lyxrow.C: include <config.h>
333         * src/lyxcursor.C: ditto.
334
335 2000-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
336
337         * lib/examples/decimal.lyx: new example file from Mike.
338
339         * src/insets/ExternalTemplate.C (readTemplates): Use LibFileSearch()
340         to find template definitions (from Dekel)
341
342         * src/frontends/.cvsignore: add a few things.
343
344         * src/frontends/xforms/input_validators.[ch]: remove C++ comments.
345
346         * src/Timeout.C (TimeOut): remove default argument.
347
348         * src/LyXView.C (LyXView_AutosaveTimerCB): this should not have
349         "C" linkage.
350
351         * src/insets/ExternalTemplate.C: add a "using" directive.
352
353         * src/lyx_main.h: remove the act_ struct, which seems unused
354         anyway. 
355
356 2000-06-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
357
358         * LyX Developers Meeting: All files changed, due to random C++ (by
359         coincidence) code generator script.
360
361         - external inset (cool!)
362         - initial online editing of preferences
363         - insettabular breaks insettext(s contents)
364         - cleanup
365         - some DocBook fixes
366         - example files update
367         - other cool stuff, create a diff and look for yourself.
368
369 2000-06-09  The Great LyX Application  <lyx@localhost.localdomain>
370
371         * src/insets/insettext.C (computeTextRows): if the maxWidth is
372         -1 this is a non-line-breaking textinset.
373
374         * src/insets/insettabular.C (GetMaxWidthOfCell): returns now -1
375         if there is no width set.
376
377 2000-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
378
379         * Lots of files: Merged the dialogbase branch.
380
381 2000-06-09  Allan Rae  <rae@lyx.org>
382
383         * src/xtl/, src/lyxfunc.[Ch], src/buffer.[Ch]:  Removed XTL and
384         and the Dispatch methods that used it.
385
386         * src/frontends/Liason.[Ch]: replaced with a Liason namespace for 
387         access to functions formerly kept in Dispatch.
388
389 2000-05-19  Allan Rae  <rae@lyx.org>
390
391         * src/PrinterParams.h, src/buffer.C, src/frontends/xforms/FormPrint.C:
392         made to_page and count_copies integers again.  from_page remains a
393         string however because I want to allow entry of a print range like
394         "1,4,22-25" using this field.
395
396         * src/LyXAction.C: added action info and commands for buffer-print-xtl
397         and printer-params-get.  These aren't useful from the minibuffer but
398         could be used by a script/LyXServer app provided it passes a suitable
399         auto_mem_buffer.  I guess I should take a look at how the LyXServer
400         works and make it support xtl buffers.
401
402         * sigc++/: updated to libsigc++-1.0.1
403
404         * src/xtl/: updated to xtl-1.3.pl.11
405
406         * forms/makefile, forms/fdfix.sh, forms/layout_forms.fd: Made sure
407         those changes done to the files in src/ are actually recreated when
408         they  get regenerated. Please don't ever accept a patch that changes a
409         dialog unless that patch includes the changes to the corresponding *.fd
410         file.
411
412         * src/lyx_cb.C, src/support/lstrings.[hC]: Moved Stephen Witt's
413         stringOnlyContains, renamed it and generalised it.
414
415         * lots-of-files: Rolled the "rae" branch over into the "dialogbase"
416         branch.  Removed the remaining old form_print code.
417
418 2000-04-26  Allan Rae  <rae@lyx.org>
419
420         * ChangeLog, development/tools/lxtl.sh: D'oh! Got caught in the same
421         trap I was trying to fix with the ID: fields in src/xtl/  :-)
422
423 2000-04-25  Allan Rae  <rae@lyx.org>
424
425         * src/xtl/: Updated to incorporate Angus's two patches as well as mine
426         against a base of xtl-1.3.pl.4
427
428         * development/tools/lxtl.sh: fixed a couple of silly typos and now
429         filter the Id: entries so they still show the xtl version number
430         they are based on.
431
432         * src/support/lxtl.h: removed auto_mem_buffer which is now incorporated
433         into the src/xtl code.  Patch still pending with José (XTL)
434
435 2000-04-24  Allan Rae  <rae@lyx.org>
436
437         * src/lyxfunc.[Ch] (Dispatch): Use a mem buffer as a parameter. This is
438         both more generic and much safer. Use the new template functions.
439         * src/buffer.[Ch] (Dispatch): ditto.
440
441         * src/frontends/xforms/FormPrint.C (update): Use new template functions
442         and mem buffer more intelligently. Also a little general cleanup.
443         (apply): ditto.
444
445         * configure.in (AC_OUTPUT): Extra stuff for xtl that I forgot.
446         * development/tools/lxtl.sh: Ditto.  Makefile.am + .cvsignore
447         * src/xtl/Makefile.am: ditto.
448         * src/xtl/.cvsignore: ditto.
449         * src/Makefile.am: ditto.
450
451         * src/PrinterParams.h: Removed the macros member functions. Added a
452         testInvariant member function.  A bit of tidying up and commenting.
453         Included Angus's idea for fixing operation with egcs-1.1.2.
454
455         * src/support/lxtl.h: Many changes.  Added auto_mem_buffer -- a really
456         cool expansion of XTL's mem_buffer to support automatic memory
457         management within the buffer itself.  Removed the various macros and
458         replaced them with template functions that use either auto_mem_buffer
459         or mem_buffer depending on a #define.  The mem_buffer support will
460         disappear as soon as the auto_mem_buffer is confirmed to be good on
461         other platforms/compilers.  That is, it's there so you've got something
462         to compare against.
463
464         * src/xtl/objio.h: Changes to support auto_mem_buffer.  This has
465         effectively forked XTL.  However I expect José will include my code
466         into the next major release.  Also fixed a memory leak.
467         * src/xtl/text.h: ditto.
468         * src/xtl/xdr.h: ditto.
469         * src/xtl/giop.h: ditto.
470
471 2000-04-16  Allan Rae  <rae@lyx.org>
472
473         * acinclude.m4, sigc++/acinclude.m4:  Removed -- they're generated
474         by autogen.sh and removed by maintainer-clean anyway.
475         * .cvsignore, sigc++/.cvsignore:  Support the above.
476
477         * sigc++/.cvsignore: Forgot that retbind.h was generated.
478
479         * src/buffer.C (Dispatch): Couldn't print a single page. Fixed.
480
481         * src/frontends/xforms/FormPrint.[Ch]: Switched to C callbacks using
482         macros, renamed static callback-target member functions to suit new
483         scheme and made them public.
484         * src/frontends/xforms/forms/form_print.fd: ditto.
485         * src/frontends/xforms/forms/form_copyright.fd: ditto.
486
487         * src/support/lxtl.h: small cleanup to use typedef instead of #define
488         for gui_format.
489
490         * src/xtl/: New directory containing a minimal distribution of XTL.
491         This is XTL-1.3.pl.4.
492
493         * development/tools/lxtl.sh: A script to generate the above mini-dist.
494
495 2000-04-15  Allan Rae  <rae@lyx.org>
496
497         * development/tools/makeLyXsigc.sh: Remove the library version numbers
498
499         * sigc++/:  Updated to libsigc++-1.0.0
500
501 2000-04-14  Allan Rae  <rae@lyx.org>
502
503         * src/frontends/xforms/xform_macros.h: Remove specific macros and just
504         use the generic ones in future.  I'll modify my conversion script.
505
506         * src/frontends/xforms/FormCopyright.C: Reverse the earlier change.
507
508         * src/lyx_gui_misc.[Ch]: Removed references to form_print.
509         (CloseAllBufferRelatedDialogs): Renamed.
510         (updateAllVisibleBufferRelatedDialogs): ditto. Added LaTeXLog
511
512         * src/frontends/xforms/FormCopyright.C: Use the specific macros instead
513         of the generic ones.  These are the same ones my conversion script
514         generates.
515
516         * src/PrinterParams.h: Allow you to print a range of odd or even pages.
517         * src/frontends/xforms/FormPrint.C (apply, update): ditto+small cleanup
518         * src/buffer.C (Dispatch): ditto
519
520         * src/LyXView.C (LyXView): Use new signals instead of old hard coded
521         functions for updating and hiding buffer dependent dialogs.
522         * src/BufferView.C (buffer): ditto
523         * src/buffer.C (setReadonly): ditto
524         * src/lyxfunc.C (CloseBuffer): ditto
525
526         * src/buffer.h: Take setReadonly() out of line so I don't have to include
527         Dialogs.h, and hence all the SigC stuff, into every file that includes
528         buffer.h.  We also don't need to include lyx_gui_misc.h in everything.
529
530         * src/BufferView2.C: reduce the number of headers included by buffer.h
531
532 2000-04-11  Allan Rae  <rae@lyx.org>
533
534         * src/frontends/xforms/xform_macros.h:  A small collection of macros
535         for building C callbacks.
536
537         * src/frontends/xforms/Makefile.am: Added above file.
538
539         * src/frontends/xforms/FormCopyright.[Ch]: Revised the C callback
540         scheme again.  This time it should work for JMarc.  If this is
541         successful I'll revise my conversion script to automate some of this.
542         The static member functions in the class also have to be public for
543         this scheme will work.  If the scheme works (it's almost identical to
544         the way BufferView::cursorToggleCB is handled so it should work) then
545         FormCopyright and FormPrint will be ready for inclusion into the main
546         trunk immediately after 1.1.5 is released -- provided we're prepared
547         for complaints about lame compilers not handling XTL.
548
549         * src/support/lxtl.h: Switched to XDR_format instead of raw_format.
550
551 2000-04-07  Allan Rae  <rae@lyx.org>
552
553         * config/lyxinclude.m4:  A bit more tidying up (Angus)
554
555         * src/LString.h: JMarc's <string> header fix
556
557         * src/PrinterParams.h: Used string for most data to remove some
558         ugly code in the Print dialog and avoid even uglier code when 
559         appending the ints to a string for output.
560
561         * src/buffer.C (Dispatch): Added a couple of braces to fix an error
562         and moved "default:" back to the end of switch statement.  Cleaned
563         up the printing so it uses the right function calls and so the
564         "print to file" option actually puts the file in the right directory.
565
566         * src/frontends/xforms/Dialogs.C: Added FormPrint (Angus).
567
568         * src/frontends/xforms/FormPrint.C (PrintInputCB): moved input checking
569         and Ok+Apply button control into a separate method: input (Angus).
570         (input) Cleaned it up and improved it to be very thorough now.
571         (All CB) static_cast used instead of C style cast (Angus).  This will
572         probably change again once we've worked out how to keep gcc-2.8.1 happy
573         with real C callbacks.
574         (update) add a few "default:" labels to switches. Egcs-1.1.2 seems to
575         ignore some of the bool settings and has random numbers instead. Needs
576         some more investigation.  Added other input length checks and checking
577         of file and printer names.
578
579         * src/frontends/xforms/FormPrint.h: Removed pragma statement so it
580         would link (Angus).  Seems the old code doesn't compile with the pragma
581         statement either.  Separated callback entries from internal methods.
582
583         * src/lyxfunc.C (Dispatch): LFUN_MENUPRINT calls new dialog (Angus).
584
585 2000-03-17  Allan Rae  <rae@lyx.org>
586
587         * src/lyxfunc.[Ch] (isAvailable): This is only temporary.  Do we really
588         need it?  Maybe it could go in Dialogs instead?  I could make it a
589         LFUN but you'd have to call Dispatch(int, int, char*) with dummy
590         values to get the bool return value.
591         (Dispatch): New overloaded method for xtl support.
592
593         * src/frontends/xforms/FormCopyright.[Ch]: Modified to use a friendly
594         extern "C" callback instead of static member functions.  Hopefully,
595         JMarc will be able to compile this.  I haven't changed 
596         forms/form_copyright.fd yet. Breaking one of my own rules already.
597
598         * src/commandtags.h: New xtl-based LFUN's no description in LyXAction
599         because they aren't useful from the minibuffer.  Maybe a LyXServer
600         might want a help message though?
601
602         * src/buffer.[Ch] (Dispatch): New overloaded method for xtl support.
603
604         * config/lyxinclude.m4: Changes to g++ flags to suit compiling with
605         xtl which needs both rtti and exceptions.
606
607         * src/support/Makefile.am:
608         * src/support/lxtl.h: New file.  Some helper macros for using XTL.
609
610         * src/frontends/xforms/input_validators.[ch]: input filters and
611         validators.  These conrol what keys are valid in input boxes.
612         Use them and write some more.  Much better idea than waiting till
613         after the user has pressed Ok to say that the input fields don't make
614         sense.
615
616         * src/frontends/xforms/Makefile.am:
617         * src/frontends/xforms/forms/form_print.fd:
618         * src/frontends/xforms/forms/makefile:
619         * src/frontends/xforms/FormPrint.[Ch]: Ported previous print form to
620         new scheme.  Still have to make sure I haven't missed anything from
621         the current implementation.
622
623         * src/Makefile.am, src/PrinterParams.h: New data store.
624
625         * other files: Added a couple of copyright notices.
626
627 2000-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
628
629         * src/insets/insetbib.h: move Holder struct in public space.
630
631         * src/frontends/include/DialogBase.h: use SigC:: only when
632         SIGC_CXX_NAMESPACES is defined.
633         * src/frontends/include/Dialogs.h: ditto.
634
635         * sigc++/Makefile.am (%.h): use the autodected GNU m4.
636
637         * src/frontends/xforms/FormCopyright.[Ch]: do not
638         mention SigC:: explicitely.
639
640 2000-03-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
641
642         * config/lyxinclude.m4 (LYX_USE_FRONTEND): move the code which
643         deals with testing KDE in main configure.in
644         * configure.in: ditto.
645
646 2000-02-22  Allan Rae  <rae@lyx.org>
647
648         * Lots of files: Merged from HEAD
649
650         * All Makefile.am (ETAGS_ARGS): use parameter that is also compatible
651         with the etags shipped with SuSE-6.3 (fancier than gnu-etags).
652
653         * autogen.sh: Fix JMarcs complaints by building a sigc++/acinclude.m4
654
655         * sigc++/: new minidist.
656
657 2000-02-14  Allan Rae  <rae@lyx.org>
658
659         * development/tools/makeLyXsigc.sh:  Small fix for Makefile.am
660
661 2000-02-08  Juergen Vigna  <jug@sad.it>
662
663         * src/frontends/kde/dlg/formcopyrightdialog.kdevdlg: the dialog data
664         file for the buildin GUI builder of KDevelop of the copyright-dialog.
665
666         * src/frontends/kde/lyxgui.kdevprj: I added this as I use KDevelop
667         for this port and so it is much easier for other people to port
668         dialogs in a common development environment.
669
670         * src/frontends/kde/formcopyrightdialog_moc.C: needed MOC file for
671         the QT/KDE implementation.
672
673         * src/frontends/kde/Dialogs.C:
674         * src/frontends/kde/FormCopyright.C:
675         * src/frontends/kde/FormCopyright.h:
676         * src/frontends/kde/Makefile.am:
677         * src/frontends/kde/formcopyrightdialog.C:
678         * src/frontends/kde/formcopyrightdialog.h:
679         * src/frontends/kde/formcopyrightdialogdata.C: added this source-files
680         for the kde support of the Copyright-Dialog.
681
682         * src/frontends/Makefile.am (AUTOMAKE_OPTIONS): now uses @FRONTEND@
683         subdir-substitution instead of hardcoded 'xforms' as we now have also
684         the kde subdir.
685
686         * src/frontends/include/DialogBase.h (Object): just commented the
687         label after #endif (nasty warning and I don't like warnings ;)
688
689         * src/main.C (main): added KApplication initialization if using
690         KDE frontend-GUI.
691
692         * src/lyx_gui.C (runTime): added support for multiple toolkit support.
693         For now only the KDE event-loop is added if frontend==kde.
694
695         * src/Makefile.am (lyx_DEPENDENCIES): added @FRONTEND_xxx@ support
696
697         * configure.in: added support for the --with-frontend[=value] option
698
699         * autogen.sh: added kde.m4 file to list of config-files
700
701         * acconfig.h: added define for KDEGUI-support
702
703         * config/kde.m4: added configuration functions for KDE-port
704
705         * config/lyxinclude.m4: added --with-frontend[=value] option with
706         support for xforms and KDE.
707
708 2000-02-08  Allan Rae <rae@lyx.org>
709
710         * all Makefile.am:  Fixed up so the make targets dist, distclean, 
711         install and uninstall all work even if builddir != srcdir.  Still
712         have a new sigc++ minidist update to come.
713
714         * config/lyxinclude.m4: Some more builddir!=srcdir fixes.
715
716 2000-02-01  Allan Rae <rae@lyx.org>
717
718         * config/lyxinclude.m4, development/tools/makeLyXsigc.sh:
719         Many mods to get builddir != srcdir working.
720         
721         * sigc++/: Upgraded to 0.8.7.  This includes many needed fixes both
722         for building on NT and so we can do the builddir != srcdir stuff.
723
724 2000-01-30  Allan Rae <rae@lyx.org>
725
726         * sigc++/doc/*: Selected documentation for the libsigc++ mini dist.
727         This will stay in "rae" branch.  We probably don't really need it in
728         the main trunk as anyone who wants to help programming it should get
729         a full library installed also.  So they can check both included and
730         system supplied library compilation.
731
732         * sigc++/*, sigc++/macros/*, config/sigc++.m4, config/lyxinclude.m4:
733         Added a 'mini' distribution of libsigc++.  If you feel the urge to 
734         change something in these directories - Resist it.  If you can't 
735         resist the urge then you should modify the following script and rebuild
736         the dist.  LYX_WITH_SIGC in lyxinclude.m4 is the wrapper to make it
737         all happen.  Still uses a hacked version of libsigc++'s configure.in.
738         I'm quite happy with the results.  I'm not sure the extra work to turn
739         the sigc++/configure.in into a few extra AC_DEFUNs in sigc++.m4 is
740         worth the trouble and would probably lead to extra maintenance 
741         headaches.
742         I haven't tested the following important make targets: install, dist.
743         Not ready for prime time but very close.  Maybe 1.1.5.
744
745         * development/tools/makeLyXsigc.sh:  A shell script to automatically
746         generate our mini-dist of libsigc++.  It can only be used with a CVS
747         checkout of libsigc++ not a tarball distribution.  It's well commented.
748         This will end up as part of the libsigc++ distribution so other apps
749         can easily have an included mini-dist.  If someone makes mods to the
750         sigc++ subpackage without modifying this script to generate those
751         changes I'll be very upset!
752
753         * src/frontends/:  Started the gui/system indep structure.
754
755         * src/frontends/include/Dialogs.h: Dialog container. All the Signal<>s
756         to access the gui-indep dialogs are in this class.  Much improved
757         design compared to previous revision.  Lars,  please refrain from
758         moving this header into src/ like you did with Popups.h last time.
759
760         * src/frontends/include/DialogBase.h: Abstract base class for dialogs.
761
762         * src/frontends/xforms/:  Started the gui-indep system with a single
763         dialog: FormCopyright.  Initial testing of use of libsigc++ was very
764         successful.
765
766         * src/frontends/xforms/forms: Repository for the xforms .fd files.
767         Here you'll find a very useful makefile and automated fdfix.sh that
768         makes updating dailogs a no-brainer -- provided you follow the rules
769         set out in the README.  I'm thinking about adding another script to
770         automatically generate skeleton code for a new dialog given just the
771         name of the dialog.
772
773         * src/commandtags.h, src/lyxfunc.C, src/menus.C:
774         * src/credits.{Ch}, src/credits_form.{Ch}, forms/credits_form.fd:
775         Made FormCopyright gui-indep and added a lyxfunc to get to it.
776
777 2000-06-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
778
779         * src/support/LSubstring.C (operator): simplify
780
781         * src/lyxtext.h: removed bparams, use buffer_->params instead
782         
783         * src/lyxrow.h: make Row a real class, move all variables to
784         private and use accessors.
785
786         * src/lyxparagraph.h (getParLanguage): add BufferParamas as
787         arguament.
788         (isRightToLeftPar): ditto
789         (ChangeLanguage): ditto
790         (isMultiLingual): ditto
791         (String): ditto
792         (TeXOnePar): ditto
793         (SimpleTeXOnePar): ditto
794         (TeXEnvironment): ditto
795         (GetEndLabel): ditto
796         (SetLayout): ditto
797         (SetOnlyLayout): ditto
798         (BreakParagraph): ditto
799         (BreakParagraphConservative): ditto
800         (GetFontSettings): ditto
801         (getFont): ditto
802         (CopyIntoMinibuffer): ditto
803         (CutIntoMinibuffer): ditto
804         (PasteParagraph): ditto
805         (SetPExtraType): ditto
806         (UnsetPExtraType): ditto
807         (DocBookContTableRows): ditto
808         (SimpleDocBookOneTablePar): ditto
809         (TeXDeeper): ditto
810         (TeXFootnote): ditto
811         (SimpleTeXOneTablePar): ditto
812         (TeXContTableRows): ditto
813         (SimpleTeXSpecialChars): ditto
814         
815
816         * src/lyxcursor.h: make LyXCursor a real class, move all variables
817         to private and use accessors.
818
819         * src/lyx_cb.C: remove char updatetimer, and all code that uses
820         this, we did not use it anymore and has not been for ages. Just a
821         waste of cpu cycles.
822
823         * src/language.h: make Language a real class, move all variables
824         to private and use accessors.
825
826         * src/BufferView_pimpl.C (Pimpl): use new timer code.
827         (create_view): remove
828         (update): some changes for new timer
829         (cursorToggle): use new timer
830         (beforeChange): change for new timer
831
832         * src/BufferView.h (cursorToggleCB): removed last paramter because
833         of new timer code. 
834
835         * src/BufferView.C (C_BufferView_CursorToggleCB): removed 
836         (cursorToggleCB): change because of new timer code
837
838         * lib/CREDITS: updated own mailaddress
839
840 2000-06-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
841
842         * src/support/filetools.C (PutEnv): fix the code in case neither
843         putenv() nor setenv() have been found.
844
845         * INSTALL: mention the install-strip Makefile target.
846
847         * src/LyXAction.C (init): make LFUN_BUILDPROG available in
848         read-only documents.
849
850 2000-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
851
852         * lib/reLyX/configure.in (VERSION): avoid using a previously
853         generated reLyX wrapper to find out $prefix.
854
855         * lib/examples/eu_adibide_lyx-atua.lyx: 
856         * lib/examples/eu_adibide_gordina.lyx: new examples for the Basque
857         translation of the Tutorial (Dooteo)
858
859 2000-06-06  Angus Leeming <a.leeming@ic.ac.uk>
860
861         * forms/cite.fd: new citation dialog
862
863         * src/insetcite.[Ch]: the new citation dialog is moved into
864         its own files.
865
866         * src/insetbib.C: InsetBibtex::getKeys() uses STL containers
867         (Dekel).
868
869         * src/insets/insetcommand.h: data members made private. 
870
871 2000-06-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
872
873         * LyX 1.1.5 released
874
875 2000-06-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
876
877         * src/version.h (LYX_RELEASE): to 1.1.5
878
879         * src/spellchecker.C (RunSpellChecker): return false if the
880         spellchecker dies upon creation.
881
882 2000-06-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
883
884         * lib/reLyX/reLyXmain.pl, lib/reLyX/LastLyX.pm: fix suffix of file
885         in \include{} (from Tomasz Motylewski <motyl@stan.chemie.unibas.ch>) 
886         
887         * NEWS: update.
888
889         * lib/CREDITS: update entry for Martin Vermeer.
890
891 2000-06-06  Dekel Tsur  <dekel@math.tau.ac.il>
892
893         * src/text.C (draw): Draw foreign language bars at the bottom of
894         the row instead of at the baseline.
895
896         * lib/examples/Minipage.lyx: Use the new multi-lingual support.
897
898 2000-06-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
899
900         * lib/bind/de_menus.bind: updated
901
902 2000-06-05  Dekel Tsur  <dekel@math.tau.ac.il>
903
904         * forms/lyx.fd: Correct gravity for objects in form_toc and form_ref
905
906 2000-06-05  Dekel Tsur  <dekel@math.tau.ac.il>
907
908         * src/menus.C (Limit_string_length): New function
909         (ShowTocMenu): Limit the number of items/length of items in the
910         LOT/LOF/LOA menus.
911
912         * src/paragraph.C (String): Correct result for a paragraph inside
913         a footnote.
914
915 2000-06-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
916
917         * src/bufferlist.C (close): test of buf->getuser() == NULL
918
919 2000-06-02  Dekel Tsur  <dekel@math.tau.ac.il>
920
921         * src/BufferView2.C (removeAutoInsets): Fix a bug: 
922         Do not call to SetCursor when the paragraph is a closed footnote!
923
924 2000-06-01  Dekel Tsur  <dekel@math.tau.ac.il>
925
926         * src/insets/insetlabel.C (Edit): Mark buffer as dirty when a
927         label is changed.
928
929         * src/text.C (SetCursor): Made the computation of cursor_vpos safer.
930
931 2000-05-31 Dekel Tsur  <dekel@math.tau.ac.il>
932
933         * forms/lyx.fd
934         * src/lyx_cb.C (RefSelectCB): Added "Go Back" button in the insert
935         reference popup, that activates the reference-back action
936
937         * src/menus.C (ShowRefsMenu): Added "Go Back" menu item.
938
939         * src/menus.C (Add_to_refs_menu): Limit the size of each item in
940         the menus. Also fixed a bug.
941
942         * src/lyx_cb.C (updateAllVisibleBufferRelatedPopups): Do not close 
943         the math panels when switching buffers (unless new buffer is readonly).
944
945         * src/BufferView.C (NoSavedPositions)
946         * src/BufferView_pimpl.C (NoSavedPositions): New methods
947
948 2000-06-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
949
950         * src/lyx_cb.C (MakeLaTeXOutput): we run MakeLaTeXOutput regard
951         less of dvi dirty or not.
952
953         * src/trans_mgr.[Ch] (insert): change first parameter to string
954         const &.  
955
956         * src/chset.[Ch] (encodeString): add const to first parameter
957
958 2000-05-31  Lars Gullik Bjønnes  <larsbj@lyx.org>
959
960         * src/support/lyxstring.C (begin): fix a "shared" string bug. use
961         rep->get_own_copy()
962         (end): ditto
963
964         * src/LaTeX.C (deplog): better searching for dependency files in
965         the latex log. Uses now regexps.
966
967         * lib/layouts/stdlists.inc (lyxlist): fix the label to use \hfil
968         instead of the box hack or \hfill. 
969
970 2000-05-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
971
972         * src/lyxfunc.C (doImportHelper): do not create the file before
973         doing the actual import. 
974         (doImportASCIIasLines): create a new file before doing the insert.
975         (doImportASCIIasParagraphs): ditto.
976
977         * lib/lyxrc.example: remove mention of non-existing commands
978
979         * lyx.man: remove mention of color-related switches.
980
981         * src/lyxrc.C: remove RC_SELECTIONCOLOR and RC_BACKGROUNDCOLOR. 
982
983         * src/lyx_gui.C: remove all the color-related ressources, which
984         are not used anymore.
985
986         * src/lyx_gui_misc.C (WarnReadonly): use MakeDisplayPath on file
987         name. 
988
989 2000-05-31 Dekel Tsur  <dekel@math.tau.ac.il>
990
991         * src/lyxrc.C (read): Add a missing break in the switch
992
993 2000-05-30 Dekel Tsur  <dekel@math.tau.ac.il>
994
995         * src/text2.C (InsertStringA): Fix a bug with insertion into table
996         
997         * src/trans_mgr.C (insertVerbatim): Do not use insetquote when the
998         text is Hebrew.
999                              
1000 2000-05-27  Dekel Tsur  <dekel@math.tau.ac.il>
1001
1002         * src/text.C (draw): draw bars under foreign language words.
1003         
1004         * src/LColor.[Ch]: add LColor::language
1005                             
1006 2000-05-27 Dekel Tsur  <dekel@math.tau.ac.il>
1007
1008         * src/lyxcursor.h (boundary): New member variable
1009
1010         * src/text.C (IsBoundary): New methods
1011
1012         * src/text.C: Use the above for currect cursor movement when there
1013         is both RTL & LTR text.
1014         
1015         * src/text2.C: ditto
1016         
1017         * src/bufferview_funcs.C (ToggleAndShow): ditto
1018
1019 2000-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1020
1021         * src/text.C (DeleteLineForward): set selection to true to avoid
1022         that DeleteEmptyParagraphMechanism does some magic. This is how it
1023         is done in all other functions, and seems reasonable.
1024         (DeleteWordForward): do not jump over non-word stuff, since
1025         CursorRightOneWord() already does it.
1026         
1027         Remove the CHECK tag from DeleteLineForward, DeleteWordForward and
1028         DeleteWordBackward, since they seem safe to me (since selection is
1029         set to "true") DeleteEmptyParagraphMechanism does nothing.
1030
1031 2000-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1032
1033         * src/lyx_main.C (easyParse): simplify the code by factoring the
1034         part that removes parameters from the command line.
1035         (LyX): check wether wrong command line options have been given.
1036
1037 2000-05-29  Lior Silberman <slior@math.huji.ac.il>
1038
1039         * src/lyx_main.C : add support for specifying user LyX
1040         directory via command line option -userdir.
1041
1042 2000-05-26 Dekel Tsur  <dekel@math.tau.ac.il>
1043
1044         * src/menus.C (Add_to_toc_menu): Limit the number of popups, and
1045         the number of items per popup.
1046         (Add_to_refs_menu): Ditto.
1047         
1048 2000-05-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1049
1050         * src/lyxparagraph.h: renamed ClearParagraph() to
1051         StripLeadingSpaces() and moved it to paragraph.C. We pass the
1052         textclass as parameter, and do nothing if free_spacing is
1053         true. This fixes part of the line-delete-forward problems.
1054
1055         * src/CutAndPaste.C (cutSelection): use StripLeadingSpaces.
1056         (pasteSelection): ditto.
1057         (SwitchLayoutsBetweenClasses): more translatable strings.
1058
1059         * src/text2.C (CutSelection): use StripLeadingSpaces.
1060         (PasteSelection): ditto.
1061         (DeleteEmptyParagraphMechanism): ditto.
1062
1063 2000-05-26  Juergen Vigna  <jug@sad.it>
1064
1065         * src/TabularLayout.C (TabularOptionsCB): removed delete-table as this
1066         is not needed in tabular insets.
1067
1068         * src/insets/insettabular.C (TabularFeatures): added missing features.
1069
1070         * src/tabular.C (DeleteColumn):
1071         (AppendColumn): 
1072         (AppendRow): implemented this functions
1073         (cellsturct::operator=): clone the inset too; 
1074
1075 2000-05-23  Juergen Vigna  <jug@sad.it>
1076
1077         * src/insets/insettabular.C (LocalDispatch): better selection support
1078         when having multicolumn-cells.
1079
1080 2000-05-26  Jose Abilio Oliveira Matos <jamatos@novalis.fc.up.pt>
1081
1082         * lib/layouts/linuxdoc.layout: fix indentation of paragraphs.
1083
1084 2000-05-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1085
1086         * src/ColorHandler.C (getGCForeground): put more test into _()
1087
1088         * lib/examples/eu_splash.lyx: new file (Basque translation) from
1089         Dooteo. 
1090
1091         * config/lyxinclude.m4 (LYX_PROG_CXX): use ${CXX} and not g++ to
1092         get the version.
1093
1094 2000-05-25 Dekel Tsur  <dekel@math.tau.ac.il>
1095
1096         * src/lyx_cb.C (RefUpdateCB): disable appropriate buttons when
1097         there are no labels, or when buffer is readonly.
1098
1099         * src/menus.C (ShowRefsMenu) disable appropriate menu items when
1100         there are no labels, buffer is SGML, or when buffer is readonly.
1101
1102 2000-05-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
1103
1104         * src/LColor.C (LColor): change a couple of grey40 to grey60
1105         (LColor): rewore initalization to make compiles go some magnitude
1106         faster.
1107         (getGUIName): don't use gettext until we need the string.
1108
1109 2000-05-09  Dekel Tsur  <dekel@math.tau.ac.il>
1110
1111         * src/Bullet.[Ch]: Fixed a small bug.
1112
1113 2000-05-21  Dekel Tsur  <dekel@math.tau.ac.il>
1114
1115         * src/paragraph.C (String): Several fixes/improvements
1116
1117         * src/insets/insetbib.[Ch] (InsetCitation::Ascii) New method
1118
1119 2000-05-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
1120
1121         * src/paragraph.C (String): give more correct output.
1122
1123 2000-05-20  Dekel Tsur  <dekel@math.tau.ac.il>
1124
1125         * src/lyxfont.C (stateText) Do not output the language if it is
1126         eqaul to the language of the document.
1127
1128         * src/paragraph.C (TeXOnePar): Do not put language switch commands
1129         between two paragraphs with the same language.
1130
1131         * src/paragraph.C (getParLanguage) Return a correct answer for an
1132         empty dummy paragraph.
1133
1134         * src/menus.C (ShowTocMenu): Do not draw lines between LOF/LOT/LOA
1135         menus.
1136
1137         * src/menus.C (ShowLayoutMenu) Add "Start of Appendix" item to the
1138         layout menu.
1139
1140         * src/lyx_gui.C (init): Try to use helvetica (or fixed) fonts for
1141         the menus/popup, if requested fonts are unavailable.
1142
1143 2000-05-22  Juergen Vigna  <jug@sad.it>
1144
1145         * src/insets/insettabular.C (LocalDispatch): added some more cursor
1146         movement support (Up/Down/Tab/Shift-Tab).
1147         (LocalDispatch): added also preliminari cursor-selection.
1148
1149         * src/LyXAction.C (init): added SHIFT-Tab as tab-backward.
1150
1151         * src/paragraph.C (PasteParagraph): Hopefully now right!
1152
1153 2000-05-22  Garst R. Reese  <reese@isn.net>
1154
1155         * layouts/hollywood.layout, broadway.layout : move Dialogue to top
1156          of list, change all references to Environment to Command
1157         * tex/hollywood.cls : rewrite environments as commands, add 
1158         \uppercase to interiorshot and exteriorshot to force uppecase.
1159         * tex/broadway.cls : rewrite environments as commands. Tweak
1160         whitespace.
1161
1162 2000-05-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1163
1164         * src/menus.C (Add_to_toc_menu): fix the code which limits the
1165         size of items: use a constant intead of the hardcoded 40, and more
1166         importantly do not remove the %m and %x tags added at the end.
1167         (Add_to_refs_menu): use vector::size_type instead of
1168         unsigned int as basic types for the variables. _Please_ do not
1169         assume that size_t is equal to unsigned int. On an alpha, this is
1170         unsigned long, which is _not_ the same.
1171
1172         * src/language.C (initL): remove language "hungarian", since it
1173         seems that "magyar" is better.
1174
1175 2000-05-22  Juergen Vigna  <jug@sad.it>
1176
1177         * src/CutAndPaste.C: hopefully fixed memory the problem defenitively!
1178
1179         * src/tabular.C (OldFormatRead): added \end_deeper to the end LyXTable
1180         end markers!
1181
1182         * src/paragraph.C (PasteParagraph): Possibly a memory leak as
1183         next was deleted but not set to 0.
1184
1185 2000-05-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
1186
1187         * src/language.C (initL): change the initialization of languages
1188         so that compiles goes _fast_.
1189
1190         * src/menus.C (Add_to_toc_menu): limit the line length in TOC to
1191         40 chars.
1192
1193         * src/lyxfunc.C (processKeyEvent): initalize keysym_return to 0.
1194
1195 2000-05-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
1196
1197         * release 1.1.5pre3
1198
1199 2000-05-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
1200
1201         * src/WorkArea.C (request_clipboard_cb): give "C" linkage.
1202
1203 2000-05-19  Dekel Tsur  <dekel@math.tau.ac.il>
1204
1205         * src/commandtags.h
1206         * src/LyXAction.C
1207         * src/lyxfunc.C (Dispatch): Added LFUN_LOFVIEW, LFUN_LOTVIEW
1208         and LFUN_LOAVIEW
1209         
1210         * src/insets/insetlo*.[Ch]: Made editable
1211
1212 2000-05-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
1213
1214         * src/text2.C (SetSelection): call BufferView::stuffClipboard with
1215         the current selection.
1216
1217         * src/BufferView_pimpl.C (stuffClipboard): new method
1218
1219         * src/BufferView.C (stuffClipboard): new method
1220
1221         * src/paragraph.C (String): new method
1222
1223         * src/LColor.C (getFromLyXName): return LColor::inherit instead of
1224         LColor::ignore when lyxname is not found.
1225
1226         * src/BufferView.C (pasteSelection): new method
1227
1228         * src/BufferView_pimpl.C (pasteSelection): new method
1229
1230         * src/lyxfunc.C (Dispatch): use the new clipboard functions.
1231
1232         * src/WorkArea.C (request_clipboard_cb): new static function
1233         (getClipboard): new method
1234         (putClipboard): new method
1235
1236 2000-05-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
1237
1238         * LyX 1.1.5pre2 released
1239
1240 2000-05-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
1241
1242         * src/vspace.C (operator=): removed
1243         (operator=): removed
1244
1245         * src/lyx_gui_misc.C (askForText): manually set the type in make_pair
1246
1247         * src/layout.C (NumberOfClass): manually set the type in make_pair
1248         (NumberOfLayout): ditto
1249
1250         * src/language.C: use the Language constructor for ignore_lang
1251
1252         * src/language.h: add constructors to struct Language
1253
1254         * src/BufferView_pimpl.C (scrollDown): change to pair<float, float>
1255
1256         * src/text2.C (SetCursorIntern): comment out #warning
1257
1258         * src/mathed/math_symbols.C (pixmapFromBitmapData): add const_cast
1259
1260         * src/mathed/math_iter.h: initialize sx and sw to 0
1261
1262 2000-05-10  Dekel Tsur  <dekel@math.tau.ac.il>
1263
1264         * forms/lyx.fd: Redesign of form_ref
1265
1266         * src/LaTeXFeatures.[Ch]
1267         * src/buffer.C
1268         * src/lyx_cb.C
1269         * src/menus.C   
1270         * src/insets/insetref.[Ch]: Added support for varioref and prettyref.
1271
1272         * src/buffer.h
1273         * src/lyxparagraph.h: Added new classes: LyXParagraph::inset_iterator
1274         and Buffer::inset_iterator.
1275
1276         * src/menus.C: Added new menus: TOC and Refs.
1277
1278         * src/insets/insetlabel.C (Edit) Made InsetLabel editable.
1279
1280         * src/buffer.C (getTocList): New method.
1281
1282         * src/BufferView2.C (ChangeRefs): New method.
1283
1284         * src/buffer.C (getLabelList): New method. It replaces the old
1285         getReferenceList. The return type is vector<string> instead of 
1286         string.
1287
1288         * src/insets/insetinclude.C (getLabelList): New method. Replaces
1289         the old getLabel() and GetNumberOfLabels() methods.
1290         * src/insets/insetlabel.C (getLabelList): ditto
1291         * src/mathed/formula.C (getLabelList): ditto
1292         
1293         * src/paragraph.C (String): New method.
1294
1295         * src/lyx_cb.C (TocSelectCB,TocUpdateCB): Rewritten.
1296         Uses the new getTocList() method. 
1297         TocSelectCB() now calls to TocUpdateCB() before moving the cursor, 
1298         which automatically updates the contents of the browser.
1299         (RefUpdateCB): Use the new getLabelList method.
1300
1301         * src/lyxfunc.C (Dispatch): Give an error if the label is not found.
1302         
1303         * src/BufferView2.C (gotoLabel) Use the new getLabelList method.
1304
1305         * src/spellchecker.C: Added using std::reverse;
1306
1307 2000-05-19  Juergen Vigna  <jug@sad.it>
1308
1309         * src/tabular.C (Validate): fixed/added validating of LaTeXFeatures.
1310
1311         * src/insets/insettext.C (computeTextRows): small fix for display of
1312         1 character after a newline.
1313
1314         * src/tabular.C (OldFormatRead): fixed the OldFormatRead with regard
1315         to cont-rows!
1316
1317 2000-05-18  Juergen Vigna  <jug@sad.it>
1318
1319         * src/insets/insettabular.C (TabularFeatures): fixed update of display
1320         when changing width of column.
1321
1322         * src/tabular.C (set_row_column_number_info): setting of
1323         autobreak rows if necessary.
1324
1325 2000-05-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1326
1327         * src/lyxvc.C (toggleReadOnly): use VCS::status() instead of stat()
1328
1329         * src/vc-backend.*: renamed stat() to status() and vcstat to
1330         vcstatus. It happens that Tru64 Unix 5.0 has stat() as a macro and
1331         compilation broke. The new name seems more relevant, anyway.
1332
1333 2000-05-17  Juergen Vigna  <jug@sad.it>
1334
1335         * src/BufferView2.C (removeAutoInsets): fixed use of AutoDeleteInsets
1336         which was wrong if the removing caused removing of rows!
1337
1338         * src/lyxlex_pimpl.C (next, nextToken): insert support for pushToken.
1339         (pushToken): new function.
1340
1341         * src/text2.C (CutSelection): fix problem discovered with purify
1342
1343 2000-05-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1344
1345         * src/debug.C (showTags): enlarge the first column, now that we
1346         have 6-digits debug codes.
1347
1348         * lib/layouts/hollywood.layout:
1349         * lib/tex/hollywood.cls:        
1350         * lib/tex/brodway.cls: 
1351         * lib/layouts/brodway.layout: more commands and fewer
1352         environments. Preambles moved in the .cls files. Broadway now has 
1353         more options on scene numbering and less whitespace (from Garst)
1354
1355         * src/insets/insetbib.C (getKeys): make sure that we are in the
1356         document directory, in case the bib file is there.
1357
1358         * src/insets/insetbib.C (Latex): revert bogus change.
1359
1360 2000-05-16  Juergen Vigna  <jug@sad.it>
1361
1362         * src/insets/insettabular.C (UnlockInsetInInset): Changes to update
1363         the TabularLayout on cursor move.
1364
1365         * src/TabularLayout.C (TabularOptionsCB): Wrong call to MenuLayoutTable
1366
1367         * src/insets/insettabular.C (Clone): Clone the LyXTabular for
1368         undo-handling.
1369         (getCellXPos): 
1370         (draw): fixed cursor position and drawing so that the cursor is
1371         visible when before the tabular-inset.
1372
1373         * src/insets/insettext.C (init): drawLockedFrame was not initialized
1374         when creating from old insettext.
1375
1376         * src/tabular.C (Clone): added Clone of text-inset for undo-handling.
1377
1378 2000-05-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1379
1380         * lib/tex/hollywood.cls: better algorithm for page breaks (Garst)
1381         * lib/tex/brodway.cls: ditto 
1382
1383         * lib/layouts/brodway.layout: change alignment of parenthical
1384         layout (Garst)
1385         
1386 2000-05-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1387
1388         * config/lyxinclude.m4 (LYX_PATH_XFORMS): make it clear that only
1389         versions 0.88 and 0.89 are supported.
1390
1391 2000-05-15  Juergen Vigna  <jug@sad.it>
1392
1393         * src/insets/insetcollapsable.C (draw): enhancements in drawing and
1394         width calculating.
1395
1396         * src/insets/insettext.C (computeTextRows): redone completely this
1397         function in a much cleaner way, because of problems when having a
1398         fixed maxWidth.
1399         (draw): added a frame border when the inset is locked.
1400         (SetDrawLockedFrame): this sets if we draw the border or not.
1401         (SetFrameColor): this sets the frame color (default=insetframe).
1402
1403         * src/insets/lyxinset.h: added x() and y() functions which return
1404         the top_x and top_baseline values. Added a GetFirstLockingInsetOfType
1405         function which is needed to see if we have a locking inset of some
1406         type in this inset (needed for now in insettabular).
1407
1408         * src/vspace.C (inPixels): the same function also without a BufferView
1409         parameter as so it is easier to use it in some ocasions.
1410
1411         * src/lyxfunc.C: changed all places where insertInset was used so
1412         that now if it couldn't be inserted it is deleted!
1413
1414         * src/TabularLayout.C: 
1415         * src/TableLayout.C: added support for new tabular-inset!
1416
1417         * src/BufferView2.C (insertInset): this now returns a bool if the
1418         inset was really inserted!!!
1419
1420         * src/tabular.C (GetLastCellInRow): 
1421         (GetFirstCellInRow): new helper functions.
1422         (Latex): implemented for new tabular class.
1423         (TeXCellPostamble): 
1424         (TeXCellPreamble): 
1425         (TeXBottomHLine): 
1426         (TeXTopHLine): new Latex() helper functions.
1427
1428 2000-05-12  Juergen Vigna  <jug@sad.it>
1429
1430         * src/mathed/formulamacro.C (Read): 
1431         * src/mathed/formula.C (Read): read also the \end_inset here!
1432
1433 2000-05-10  Dekel Tsur  <dekel@math.tau.ac.il>
1434
1435         * src/mathed/math_write.C (MathParInset::Write): Fixed a bug:
1436         crush when saving formulae with unbalanced parenthesis.
1437
1438 20000-05-11  Dekel Tsur  <dekel@math.tau.ac.il>
1439
1440         * src/layout.C: Add new keyword "endlabelstring" to layout file
1441
1442         * src/text.C (GetVisibleRow): Draw endlabel string.
1443
1444         * lib/layouts/broadway.layout
1445         * lib/layouts/hollywood.layout: Added endlabel for the
1446         Parenthetical layout.
1447
1448         * lib/layouts/heb-article.layout: Do not use slanted font shape
1449         for Theorem like environments.
1450
1451         * src/buffer.C (makeLaTeXFile): Always add "american" to 
1452         the UsedLanguages list if document language is RTL. 
1453
1454 2000-05-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1455
1456         * add addendum to README.OS2 and small patch (from SMiyata)
1457
1458 2000-05-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1459
1460         * many files: correct the calls to ChangeExtension().
1461
1462         * src/support/filetools.C (ChangeExtension): remove the no_path
1463         argument, which does not belong there. Use OnlyFileName() instead.
1464
1465         * src/insets/insetbib.C (Latex): use absolute paths for bibtex
1466         files when LaTeXing a non-nice latex file.
1467
1468         * src/lyxlookup.C (isDeadEvent): use a switch statement instead of
1469         a chain of "if". Return false when deadkeys are not handled.
1470         
1471         * src/lyx_main.C (LyX): adapted the code for default bindings.
1472
1473         * src/kbmap.C (defaultKeyBindings): new method. Performs the default
1474         bindings for basic functionality (except deadkeys).
1475         (deadKeyBindings): new method. Performs the bindings of deadkeys.
1476
1477         * src/lyxrc.C (defaultKeyBindings): moved to lyx_main.C 
1478         several methods: handle override_x_deadkeys.
1479
1480         * src/lyxrc.h: remove the "bindings" map, which did not make much
1481         sense anyway. New variable override_x_deadkeys, defaulting to "true".
1482         
1483 2000-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1484
1485         * src/lyxfont.C (stateText): use a saner method to determine
1486         whether the font is "default". Seems to fix the crash with DEC
1487         cxx. 
1488
1489         * src/Bullet.[Ch] (Bullet): remove const on parameters.
1490
1491 2000-05-08  Juergen Vigna  <jug@sad.it>
1492
1493         * src/insets/insettabular.C (InsetButtonRelease): Now opens the
1494         TabularLayoutMenu with mouse-button-3
1495         (LocalDispatch): added LFUN_MENU_LAYOUT to open the Tabular-Layout.
1496
1497         * src/TabularLayout.C: added this file for having a Layout for
1498         tabular-insets.
1499
1500 2000-05-05  Juergen Vigna  <jug@sad.it>
1501
1502         * src/insets/insettabular.C (UpdateLocal): resetCursorPos when
1503         recalculating inset-widths.
1504         (TabularFeatures): activated this function so that I can change
1505         tabular-features via menu.
1506
1507         * src/menus.C (ShowEditMenu): inserted support for insettabular so
1508         that I can test some functions with the Table menu.
1509
1510 2000-05-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
1511
1512         * src/lyxfont.C (stateText): guard against stupid c++libs.
1513
1514         * src/tabular.C: add using std::vector
1515         some whitespace changes, + removed som autogenerated code.
1516
1517         * src/buffer.C (parseSingleLyXformat2Token): stupid bug.
1518
1519 2000-05-05  Juergen Vigna  <jug@sad.it>
1520
1521         * src/tabular.[Ch]: now using std:vector instead of arrays for all the
1522         row, columns and cellstructures.
1523
1524 2000-05-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
1525
1526         * lib/lyxrc.example: remove obsolete entries.
1527
1528         * src/buffer.C (parseSingleLyXformat2Token): patch from dekel, fix
1529         reading of protected_separator for free_spacing.
1530
1531 2000-05-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1532
1533         * src/text.C (draw): do not display an exclamation mark in the
1534         margin for margin notes. This is confusing, ugly and
1535         uninformative. 
1536
1537         * src/LaTeXFeatures.C (getPackages): load amssymb also when 'Use
1538         AMS math' is checked.
1539
1540         * src/buffer.C (makeLaTeXFile): do not depend on the textclass
1541         name to see whether including the amsmath package is needed.
1542
1543 2000-05-05  Dekel Tsur  <dekel@math.tau.ac.il>
1544
1545         * src/paragraph.C (validate): Compute UsedLanguages correctly
1546         (don't insert the american language if it doesn't appear in the
1547         document)
1548
1549         * src/paragraph.C (TeXOnePar,SimpleTeXOnePar,SimpleTeXSpecialChars)
1550         The argument of \thanks{} command is considered moving argument
1551
1552         * src/paragraph.C (SimpleTeXOnePar): Put \protect before \\ if in
1553         moving argument.
1554
1555 2000-05-04  Dekel Tsur  <dekel@math.tau.ac.il>
1556
1557         * src/text.C (GetVisibleRow): Improved drawing of vertical lines
1558         for appendix/minipage/depth. The lines can be now both in the footnote 
1559         frame, and outside the frame.
1560
1561         * src/text.C (SingleWidth,draw): Correct rendering of Hebrew vowels
1562         points ("nikud")
1563
1564 2000-05-05  Juergen Vigna  <jug@sad.it>
1565
1566         * src/table.[Ch]: removed the inset and buffer stuff as this is now
1567         neede only in tabular.[Ch].
1568
1569 2000-05-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
1570
1571         * src/insets/insetspecialchar.C (Read): allow command == '~' for
1572         PROTECTED_SEPARATOR 
1573         (Write): write '~' for PROTECTED_SEPARATOR
1574
1575 2000-05-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1576
1577         * src/lyxparagraph.h: add a friend struct matchIT after the struct
1578         InsetTable.
1579
1580         * src/mathed/formula.C (drawStr): rename size to siz.
1581
1582         * src/insets/figinset.C (RestoreForm): rename pflags to piflags,
1583         possibly fix a bug by not changing the pflags = flags to piflags =
1584         flags.
1585
1586 2000-05-05  Juergen Vigna  <jug@sad.it>
1587
1588         * src/insets/insetbib.C: moved using directive
1589
1590         * src/ImportNoweb.C: small fix for being able to compile (missing
1591         include cstdlib)
1592
1593 2000-05-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1594
1595         * config/lyxinclude.m4 (LYX_CXX_STL_STRING): change the test not
1596         to use clear, since we don't depend on this in the code. Add test
1597         for string::compare
1598
1599 2000-05-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1600
1601         * (various *.C files): add using std::foo directives to please dec
1602         cxx.
1603
1604         * replace calls to string::clear() to string::erase() (Angus)
1605
1606         * src/cheaders/cmath: modified to provide std::abs.
1607
1608 2000-05-04  Juergen Vigna  <jug@sad.it>
1609
1610         * src/insets/insettext.C: Prepared all for inserting of multiple
1611         paragraphs. Still display stuff to do (alignment and other things),
1612         but I would like to use LyXText to do this when we cleaned out the
1613         table-support stuff.
1614
1615         * src/insets/insettabular.C: Changed lot of stuff and added lots
1616         of functionality still a lot to do.
1617
1618         * src/tabular.C: Various functions changed name and moved to be
1619         const functions. Added new Read and Write functions and changed
1620         lots of things so it works good with tabular-insets (also removed
1621         some stuff which is not needed anymore * hacks *).
1622
1623         * src/lyxcursor.h: added operators == and != which just look if
1624         par and pos are (not) equal.
1625
1626         * src/buffer.C (latexParagraphs): inserted this function to latex
1627         all paragraphs form par to endpar as then I can use this too for
1628         text-insets.
1629
1630         * src/text2.C (SetLayout): Changed this to use a cursor this is needed
1631         so that I can call this to from text insets with their own cursor.
1632
1633         * src/buffer.C (makeLaTeXFile): added the output of one \n after the
1634         output off all paragraphs (because of the fix below)!
1635
1636         * src/paragraph.C (TeXOnePar): removed output of \n when we are in
1637         the very last paragraph (this could be also the last paragraph of an
1638         inset!)
1639
1640         * src/texrow.h: added rows() call which returns the count-variable.
1641
1642 2000-05-03  Jose Abilio Oliveira Matos <jamatos@novalis.fc.up.pt>
1643
1644         * lib/lyxrc.example: fix examples for exporting SGML to HTML.
1645
1646         * lib/configure.m4: better autodetection of DocBook tools.
1647
1648 2000-04-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
1649
1650         * src/lyx_main.C (easyParse): use lyxerr instead of cerr.
1651
1652         * src/lyx_cb.C: add using std::reverse;
1653
1654         * src/LaTeX.C (run): on error always run deleteFilesOnError before
1655         returning.
1656
1657         * src/LaTeX.[Ch] (deleteFilesOnError): new method. unlinks some
1658         selected files. Should fix repeated errors from generated files.
1659
1660 2000-04-27  Dekel Tsur  <dekel@math.tau.ac.il>
1661
1662         * src/lyx_cb.C (TocUpdateCB): Reverse strings for Hebrew paragraphs
1663
1664         * src/spellchecker.C (RunSpellChecker): Reverse Hebrew strings in
1665         the spellchecker popup. 
1666
1667         * lib/lyxrc.example:  Removed the \number_inset section
1668
1669 2000-04-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1670
1671         * src/insets/figinset.C (various): Use IsFileReadable() to make
1672         sure that the file actually exist. Relying on ghostscripts errors
1673         is a bad idea since they can lead to X server crashes.  
1674
1675 2000-04-27  Claus Hentschel <claus.hentschel@mbau.fh-hannover.de>
1676
1677         * intl/loadmsgcat.c (_nl_load_domain): pass O_BINARY as flag to
1678         open under CYGWIN 
1679
1680         * lib/lyxrc.example: smallish typo in description of
1681         \view_dvi_paper_option 
1682
1683 2000-04-26  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
1684
1685         * src/lyxfunc.h:
1686         * src/lyxfunc.C: doImportHelper to factor out common code of the
1687         various import methods. New functions doImportASCIIasLines,
1688         doImportASCIIasParagraphs, doImportLaTeX, doImportNoWeb,
1689         doImportLinuxDoc  for the  format specific parts.
1690
1691         * buffer.h:
1692         * buffer.C: Dispatch  returns now a bool to indicate success
1693
1694         * lyx_gui.h:
1695         * lyx_gui.C: Add getLyXView() for member access
1696
1697         * lyx_main.C: Change logic for batch commands: First try
1698         Buffer::Dispatch (possibly without GUI), if that fails, use
1699         LyXFunc::Dispatch
1700
1701         * lyx_main.C: Add support for --import command line switch.
1702         Now 'lyx --import ascii file.txt' opens the GUI with file.txt loaded.
1703         Available Formats: Everything  accepted by 'buffer-import <format>'
1704
1705 2000-04-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
1706
1707         * src/lyx_gui.C (create_forms): small oneliner from Garst to have
1708         unnumbered parts.
1709
1710         * src/lyx_cb.C (ScreenApplyCB): clear the textcache so that the
1711         documents will be reformatted upon reentry.
1712
1713 2000-04-27  Juergen Vigna  <jug@sad.it>
1714
1715         * src/CutAndPaste.C (pasteSelection): last paragraph was not returned
1716         correctly only last pos this was a bug.
1717
1718 2000-04-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
1719
1720         * release of lyx-1.1.5pre1
1721
1722 2000-04-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1723
1724         * src/insets/insettabular.[Ch]: fix the Clone() declaration.
1725
1726         * src/menus.C: revert the change of naming (Figure->Graphic...)
1727         from 2000-04-11. It was incomplete and bad.
1728         
1729         * src/LColor.[Ch]: add LColor::depthbar.
1730         * src/text.C (GetVisibleRow): use it.
1731
1732         * README: update the languages list.
1733
1734 2000-04-25  Dekel Tsur  <dekel@math.tau.ac.il>
1735
1736         * src/text.C (GetVisibleRow): show the depth of paragraphs using
1737         vertical bars.
1738
1739 2000-04-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
1740
1741         * README: remove sections that were just wrong.
1742
1743         * src/text2.C (GetRowNearY): remove currentrow code
1744
1745         * src/text.C (GetRow): remove currentrow code
1746
1747         * src/screen.C (Update): rewritten a bit.
1748         (SmallUpdate): removed func
1749
1750         * src/lyxtext.h (text_status): removed NEED_LITTLE_REFRESH, never
1751         used.
1752         (FullRebreak): return bool
1753         (currentrow): remove var
1754         (currentrow_y): ditto
1755
1756         * src/lyxscreen.h (Draw): change arg to unsigned long
1757         (FitCursor): return bool
1758         (FitManualCursor): ditto
1759         (Smallpdate): remove func
1760         (first): change to unsigned long
1761         (DrawOneRow): change second arg to long (from long &)
1762         (screen_refresh_y): remove var
1763         (scree_refresh_row): ditto
1764         
1765         * src/lyxrow.h: change baseline to usigned int from unsigned
1766         short, this brings some implicit/unsigned issues out in the open.
1767
1768         * src/lyxfunc.C (moveCursorUpdate): update(0) == update(-2) change
1769         accordingly.
1770         (Dispatch): don't call updateScrollbar after fitCursor. Use update
1771         instead of smallUpdate.
1772
1773         * src/lyxcursor.h: change y to unsigned long
1774
1775         * src/buffer.h: don't call updateScrollbar after fitcursor
1776
1777         * src/buffer.C (parseSingleLyXformat2Token): move variables to
1778         where they are used. Removed "\\direction", this was not present
1779         in 1.1.4 and is already obsolete. Commented out some code that I
1780         believe to never be called.
1781         (runLiterate): don't call updateScrollbar after fitCursor
1782         (runLaTeX): ditto
1783         (buildProgram): ditto
1784         (runChktex): ditto
1785
1786         * src/WorkArea.h (workWidth): change return val to unsigned
1787         (width): ditto
1788         (height): ditto
1789         (redraw): remove the button redraws
1790         (setScrollbarValue): change for scrollbar
1791         (getScrollbarValue): change for scrollbar
1792         (getScrollbarBounds): change for scrollbar
1793
1794         * src/WorkArea.C (C_WorkArea_up_cb): removed func
1795         (C_WorkArea_down_cb): removed func
1796         (WorkArea): use fl_add_scrollbar instead of two buttons and a slider.
1797         (resize): change for scrollbar
1798         (setScrollbar): ditto
1799         (setScrollbarBounds): ditto
1800         (setScrollbarIncrements): ditto
1801         (up_cb): removed func
1802         (down_cb): removed func
1803         (scroll_cb): change for scrollbar
1804         (work_area_handler): ditto
1805
1806         * src/BufferView_pimpl.C (fitCursor): only call updateScrollbar
1807         when FitCursor did something.
1808         (updateScrollbar): some unsigned changes
1809         (downCB): removed func
1810         (scrollUpOnePage): removed func
1811         (scrollDownOnePage): remvoed func
1812         (workAreaMotionNotify): don't call screen->FitCursor but use
1813         fitCursor instead. and bool return val
1814         (workAreaButtonPress): ditto
1815         (workAreaButtonRelease): some unsigned changes
1816         (checkInsetHit): ditto
1817         (workAreaExpose): ditto
1818         (update): parts rewritten, comments about the signed char arg added
1819         (smallUpdate): removed func
1820         (cursorPrevious): call needed updateScrollbar
1821         (cursorNext): ditto
1822
1823         * src/BufferView2.C (allFloats): don't call updateScrollbar after
1824         fitCursor.
1825
1826         * src/BufferView.[Ch] (upCB): removed func
1827         (downCB): removed func
1828         (smallUpdate): removed func
1829
1830 2000-04-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
1831
1832         * src/lyxtext.h src/text.C src/text2.C: removed support for the
1833         currentrow, currentrow_y optimization. This did not help a lot and
1834         if we want to do this kind of optimization we should rather use
1835         cursor.row instead of the currentrow. 
1836
1837         * src/buffer.C (parseSingleLyXformat2Token): fixed mistake in
1838         buffer spacing and klyx spacing support.
1839
1840 2000-04-25  Dekel Tsur  <dekel@math.tau.ac.il>
1841
1842         * src/spellchecker.C (RunSpellChecker): Speedup spellchecking by
1843         a factor of 50!
1844
1845 2000-04-26  Juergen Vigna  <jug@sad.it>
1846
1847         * src/insets/figinset.C: fixes to Lars sstream changes!
1848
1849 2000-04-23  Dekel Tsur  <dekel@math.tau.ac.il>
1850
1851         * A lot of files: Added Ascii(ostream &) methods to all inset
1852         classes. Used when exporting to ASCII.
1853         
1854         * src/buffer.C (writeFileAscii,RoffAsciiTable)
1855         * src/paragraph.C (RoffContTableRows): Use the Ascii() methods
1856         instead of Latex()
1857
1858         * src/text2.C (ToggleFree): Disabled implicit word selection when
1859         there is a change in the language
1860         
1861         * src/insets/insetspecialchar.C (Linuxdoc,DocBook): Fixed a bug:
1862         no output was generated for end-of-sentence inset.
1863         
1864         * src/insets/lyxinset.h
1865         * src/buffer.C
1866         * src/lyxfunc.C
1867         * src/paragraph.C: Removed the insetnumber code
1868
1869         * src/text.C (SelectWordWhenUnderCursor): Cleaned the code.
1870
1871 2000-04-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
1872
1873         * src/buffer.C (parseSingleLyXformat2Token): remove no_isolatin1,
1874         no_babel and no_epsfig completely from the file.
1875         (parseSingleLyXformat2Token): add handling for per-paragraph
1876         spacing as written by klyx.
1877
1878         * src/insets/figinset.C: applied patch by Andre. Made it work with
1879         ostringstream too.
1880
1881 2000-04-20  Juergen Vigna  <jug@sad.it>
1882
1883         * src/insets/insettext.C (cutSelection): 
1884         (copySelection): Fixed with selection from right to left.
1885         (draw): now the rows are not recalculated at every draw.
1886         (computeTextRows): for now reset the inset-owner here (this is
1887         important for an undo or copy where the inset-owner is not set
1888         automatically!)
1889
1890         * src/BufferView_pimpl.C (workAreaMotionNotify): when passing the
1891         motion to the_locking_inset screen->first was forgotten, this was
1892         not important till we got multiline insets.
1893
1894 2000-04-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1895
1896         * src/mathed/formulamacro.C (Latex): remove CHECK comment, since
1897         code seems to be alright (it is code changed by Dekel, and the
1898         intent is indeed that all macros should be defined \protect'ed)
1899
1900         * NEWS: a bit of reorganisation of the new user-visible features.
1901
1902 2000-04-19  Juergen Vigna  <jug@sad.it>
1903
1904         * src/insets/insettext.C (init): using a LyXCursor now for cursor
1905         position. Set the inset_owner of the used paragraph so that it knows
1906         that it is inside an inset. Fixed cursor handling with mouse and
1907         cursor keys. Fixed wrong timed inset redraws and lots of other changes
1908         and cleanups to make TextInsets work better.
1909
1910         * src/insets/insettext.h: Using a LyXCursor now. Added a clear() call.
1911         Changed parameters of various functions and added LockInsetInInset().
1912
1913         * src/insets/insettext.C: 
1914
1915         * src/insets/insetcollapsable.h: 
1916         * src/insets/insetcollapsable.C: 
1917         * src/insets/insetfoot.h: 
1918         * src/insets/insetfoot.C: 
1919         * src/insets/insetert.h: 
1920         * src/insets/insetert.C: cleaned up the code so that it works now
1921         correctly with insettext.
1922
1923         * src/insets/inset.C: 
1924         * src/insets/lyxinset.h: inserted inset_owner and some more changes so
1925         that insets in insets are supported right.
1926
1927         * src/table.h: 
1928         * src/table.C: lots of changes for use with inset tabular (and cleanup)
1929
1930         * src/paragraph.C: some small fixes
1931
1932         * src/debug.h: inserted INSETS debug info
1933
1934         * src/lyxfunc.C (Dispatch): added code for InsetTabular and some inset
1935         fixes (f.ex. calling LFUN_DOWN if exiting inset with LFUN_DOWN).
1936
1937         * src/commandtags.h: 
1938         * src/LyXAction.C: insert code for InsetTabular.
1939
1940         * src/BufferView_pimpl.C (workAreaMotionNotify): do return always if
1941         not Button1MotionMask.
1942         (workAreaButtonRelease): send always a InsetButtonRelease event to
1943         the_locking_inset.
1944         (checkInsetHit): some setCursor fixes (always with insets).
1945
1946         * src/BufferView2.C (lockInset): returns a bool now and extended for
1947         locking insets inside insets.
1948         (showLockedInsetCursor): it is important to have the cursor always
1949         before the locked inset.
1950         (fitLockedInsetCursor): forgot adding of InsetInInsetY()-offset.
1951
1952         * src/BufferView.h: made lockInset return a bool.
1953
1954         * src/lyxtext.h: inserted function SetCursor(LyXCursor, ...).
1955
1956         * src/text2.C (SetCursor): This now has a version with a LyXCursor
1957         that is used also internally but can be called as public to have back
1958         a cursor pos which is not set internally.
1959         (SetCursorIntern): Changed to use above function.
1960
1961         * src/CutAndPaste.C (DeleteBuffer): forgot to inizialize textclass
1962
1963 2000-04-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
1964
1965         * ANNOUNCE: 
1966         * INSTALL: 
1967         * UPGRADING: 
1968         * NEWS: updated for prerelease of 1.1.5. Please comment and send
1969         patches for things that should be in or should be changed.
1970
1971         * src/* [insetfiles]: change "usigned char fragile" to bool
1972         fragile. There was only one point that could that be questioned
1973         and that is commented in formulamacro.C. Grep for "CHECK".
1974         
1975         * src/CutAndPaste.C (getBufferTextClass): unused func, removed.
1976         (DeleteBuffer): take it out of CutAndPaste and make it static.
1977
1978 2000-04-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
1979
1980         * src/paragraph.C (TeXOnePar): use the new method in Spacing to
1981         output the spacing envir commands. Also the new commands used in
1982         the LaTeX output makes the result better.
1983
1984         * src/Spacing.C (writeEnvirBegin): new method
1985         (writeEnvirEnd): new method
1986
1987 2000-04-18  Juergen Vigna  <jug@sad.it>
1988
1989         * src/CutAndPaste.C: made textclass a static member of the class
1990         as otherwise it is not accesed right!!!
1991
1992 2000-04-17  Dekel Tsur  <dekel@math.tau.ac.il>
1993
1994         * forms/layout_forms.fd
1995         * src/layout_forms.h
1996         * src/layout_forms.C (create_form_form_character)
1997         * src/lyx_cb.C (UserFreeFont)
1998         * src/lyx_gui.C (create_forms): Added GUI support for multi-lingual
1999        documents (in the layout->character popup).
2000
2001 2000-04-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2002
2003         * src/spellchecker.C (create_ispell_pipe): fix a bug where
2004         \spell_command was in fact not honored (from Kevin Atkinson).
2005
2006         * src/lyx_gui.C (~LyXGUI): make sure lyxViews is deleted when
2007         quitting (Angus)
2008
2009         * src/lyx_gui.h: make lyxViews private (Angus)
2010
2011 2000-04-15  Dekel Tsur  <dekel@math.tau.ac.il>
2012
2013         * src/mathed/math_write.C
2014         (MathMatrixInset::Write) Put \protect before \begin{array} and
2015         \end{array} if fragile
2016         (MathParInset::Write): Put \protect before \\ if fragile
2017
2018 2000-04-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
2019
2020         * src/lyx_gui.C (LyXGUI): initialize the LyXColorHandler. The
2021         initialization if the LyXColorHandler must be done after the
2022         connections to the XServer has been established.
2023
2024         * src/insets/figinset.C (runqueue): change the grabing a bit. Also
2025         get the background pixel from the lyxColorhandler so that the
2026         figures are rendered with the correct background color.
2027         (NextToken): removed functions.
2028         (GetPSSizes): use ifs >> string instead of NextToken.
2029
2030         * src/Painter.[Ch]: the color cache moved out of this file. 
2031
2032         * src/ColorHandler.[Ch]: new files. Holds the gc cache for color
2033         and lines.  
2034
2035 2000-04-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
2036
2037         * src/WorkArea.C (work_area_handler): call BufferView::enterView
2038         and Buffer::leaveView when FL_ENTER and FL_LEAVE.
2039
2040         * src/BufferView.C (enterView): new func
2041         (leaveView): new func
2042
2043         * src/BufferView_pimpl.C (enterView): new func, sets xterm cursor
2044         when approp.
2045         (leaveView): new func, undefines xterm cursor when approp.
2046
2047         * src/bufferview_funcs.C: moved SetXCursor to BufferView_pimp.C
2048         (AllowInput): delete the Workarea cursor handling from this func.
2049
2050         * src/Painter.C (underline): draw a slimer underline in most cases.
2051
2052         * src/lyx_main.C (error_handler): use extern "C"
2053
2054 2000-04-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
2055
2056         * src/insets/figinset.C (DocBook): small patch from Jose (jamatos)
2057         sent directly to me.
2058
2059         * src/text2.C (DeleteEmptyParagraphMechanism): small patch posted
2060         to the list by Dekel.
2061
2062         * src/lyxfunc.C (Dispatch): make PARAGRAPH_SPACING compile with
2063         strstream too.
2064
2065         * src/bufferview_funcs.[Ch]: two new files, moved several of the
2066         methods from lyx_cb.here.
2067
2068         * src/lyx_cb.C: in addition to the above; removed input_prohibited
2069         it was not used.
2070
2071 2000-04-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
2072
2073         * src/lyx_cb.[Ch]: made several functions take a BufferView* arg
2074         instead of using current_view directly. 
2075
2076         * src/lyxfunc.C (Dispatch): the paragraph-spacing implementation
2077
2078         * src/LyXAction.C (init): add the paragraph-spacing command.
2079
2080         * src/commandtags.h: add enum for LFUN_PARAGRAPH_SPACING
2081
2082         * src/buffer.C (parseSingleLyXformat2Token): read the paragraph spacing
2083
2084         * src/lyx_cb.C (CurrentState): output a string when the spacing is
2085         different from the documents.
2086
2087         * src/text.C (SetHeightOfRow): take paragraph spacing into
2088         account, paragraph spacing takes precedence over buffer spacing
2089         (GetVisibleRow): ditto
2090
2091         * src/paragraph.C (writeFile): output the spacing parameter too.
2092         (validate): set the correct features if spacing is used in the
2093         paragraph. 
2094         (Clear): set spacing to default
2095         (MakeSameLayout): spacing too
2096         (HasSameLayout): spacing too
2097         (SetLayout): spacing too
2098         (TeXOnePar): output the spacing commands
2099
2100         * src/lyxparagraph.h: added a spacing variable for use with
2101         per-paragraph spacing.
2102
2103         * src/Spacing.h: add a Default spacing and a method to check if
2104         the current spacing is default. also added an operator==
2105
2106         * src/text2.C (DeleteEmptyParagraphMechanism): added a
2107         RedoParagraphs.
2108
2109 2000-04-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2110
2111         * src/lyxserver.C (callback): fix dispatch of functions
2112
2113         * src/insets/insetlatexaccent.C (checkContents): turn bogus
2114         printf() into lyxerr call. 
2115
2116         * src/tex-strings.C (tex_fonts): add "pslatex" to the choice of
2117         fonts. 
2118
2119         * src/menus.C (ShowInsertMenu): rename "Figure" to "Graphic",
2120         "Table" to "Table Box", "Float" to "Floating Material"; deletes
2121         the "Float" from each of the subitems.
2122         (ShowHelpMenu): add entry for "FAQ" and "TOC".
2123
2124         * src/support/DebugStream.h: add an #ifdef to work around a gcc
2125         2.8.x compiler error. Yes, I know, gcc 2.8.1 is bad, but I
2126         documented the change so that the workaround can be nuked later.
2127
2128         * src/lyx_gui_misc.C (getScreenDPI): new function. Code moved from 
2129         LyX::init().
2130         
2131         * src/lyxlex_pimpl.C (next): do not re-declare the default value
2132         of arguments.
2133         * src/buffer.C (getLatexName): ditto
2134         (setReadonly): ditto
2135
2136 2000-04-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
2137
2138         * src/LaTeXFeatures.h: add a const reference to BufferParams, to
2139         avoid some uses of current_view. Added also a bufferParams()
2140         method to get at this.
2141
2142         * src/lyxtext.h: changed params->buffer and paramters->bparams.
2143
2144 2000-04-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
2145
2146         * src/lyxparagraph.[Ch]: removed
2147         operator<(LyXParagraph::InsetTable..., added a struct matchIT
2148         with operators used by lower_bound and
2149         upper_bound in InsetTable's
2150         Make struct InsetTable private again. Used matchpos.
2151
2152 2000-04-08  Dekel Tsur  <dekel@math.tau.ac.il>
2153         
2154         * src/lyx_cb.C (DocumentApplyCB): When changing the language of the
2155         document, the language of existing text is changed (unless the
2156         document is multi-lingual)
2157
2158         * src/buffer.C (ChangeLanguage,isMultiLingual) New methods.
2159
2160         * src/paragraph.C (ChangeLanguage,isMultiLingual) New methods.
2161
2162         * A lot of files: A rewrite of the Right-to-Left support.
2163                                                                            
2164 2000-04-10  Juergen Vigna  <jug@sad.it>
2165
2166         * src/BufferView2.C (showLockedInsetCursor): small bugfix for
2167         misplaced cursor when inset in inset is locked.
2168
2169         * src/insets/insettext.C (LocalDispatch): small fix so that a
2170         BREAKLINE is not inserted if we don't permit it with autBreakRows.
2171
2172         * src/insets/insetfoot.C (GetDrawFont): implemented this as the
2173         footnote font should be decreased in size twice when displaying.
2174
2175         * src/insets/insettext.C (GetDrawFont): inserted this function as
2176         the drawing-font may differ from the real paragraph font.
2177
2178         * src/lyxfunc.C (processKeyEvent): fixed Esc-handling when unlocking
2179         insets (inset in inset!).
2180
2181         * src/insets/insetfoot.C (InsertInsetAllowed): implemented the below
2182         function here because we don't want footnotes inside footnotes.
2183
2184         * src/insets/insettext.C (InsetText): forgot to set autoBreakRows for
2185         Cloned insets.
2186         (init): now set the inset_owner in paragraph.C
2187         (LocalDispatch): added some resetPos() in the right position
2188         (cutSelection): 
2189         (copySelection): 
2190         (pasteSelection): changed to use the new CutAndPaste-Class.
2191
2192         * src/insets/lyxinset.h: inserted new function InsertInsetAllowed
2193         which tells if it is allowed to insert another inset inside this one.
2194
2195         * src/lyx_cb.C (DocumentApplyCB): Using CutAndPaste-Class for
2196         SwitchLayoutsBetweenClasses.
2197
2198         * src/text2.C (InsertInset): checking of the new paragraph-function
2199         InsertInsetAllowed.
2200         (DeleteSimpleCutBuffer): removed (for now only with #ifdef) as this
2201         is not needed anymore here!
2202         (CutSelection): 
2203         (CopySelection): 
2204         (PasteSelection): redone (also with #ifdef) so that now this uses
2205         the CutAndPaste-Class.
2206         (SwitchLayoutsBetweenClasses): removed here and implemented in the
2207         CutAndPaste-Class.
2208         
2209         * src/CutAndPaste.[Ch]: added this for clean handling of CutAndPaste
2210         from/to text/insets.
2211
2212         * src/paragraph.C (LyXParagraph): inserted new inset_owner pointer
2213         so that the paragraph knows if it is inside an (text)-inset.
2214         (InsertFromMinibuffer): changed return-value to bool as now it
2215         may happen that an inset is not inserted in the paragraph.
2216         (InsertInsetAllowed): this checks if it is allowed to insert an
2217         inset in this paragraph.
2218         (PasteParagraph): 
2219         (BreakParagraphConservative): 
2220         (BreakParagraph) : small change for the above change of the return
2221         value of InsertFromMinibuffer.
2222
2223         * src/lyxparagraph.h: added inset_owner and the functions to handle
2224         this (SetInsetOwner(), InInset() and InsertInsetAllowed()).
2225
2226 2000-04-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
2227
2228         * src/BufferView.[Ch], src/BufferView_pimpl.[Ch]: move more
2229         functions from BufferView to BufferView::Pimpl to ease maintence.
2230         
2231         * src/text2.C (DeleteEmptyParagraphMechanism): update the cursor
2232         correctly. Also use SetCursorIntern instead of SetCursor.
2233
2234         * src/insets/insetinfo.C (draw): draw InsetInfo notes with the
2235         correct color.
2236
2237 2000-04-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
2238
2239         * src/WorkArea.C (belowMouse): manually implement below mouse.
2240
2241         * src/*: Add "explicit" on several constructors, I added probably
2242         some unneeded ones. A couple of changes to code because of this.
2243
2244         * src/BufferView.[Ch]: Used the "pimpl" idiom to hide more of the
2245         implementation and private parts from the users of BufferView. Not
2246         quite finished.
2247
2248         * src/lyxlex.[Ch]: Used the "pimpl" idiom to hide more of the
2249         implementation and private parts from the users of LyXLex. Not
2250         quite finished.
2251
2252         * src/BufferView_pimpl.[Ch]: new files
2253
2254         * src/lyxlex_pimpl.[Ch]: new files
2255
2256         * src/LyXView.[Ch]: some inline functions move out-of-line
2257
2258 2000-04-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2259
2260         * src/lyxparagraph.h: make struct InsetTable public.
2261
2262         * src/support/lyxstring.h: change lyxstring::difference_type to be
2263         ptrdiff_t. Add std:: modifiers to streams.
2264
2265         * src/font.C: include the <cctype> header, for islower() and
2266         isupper(). 
2267
2268 2000-04-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
2269
2270         * src/font.[Ch]: new files. Contains the metric functions for
2271         fonts, takes a LyXFont as parameter. Better separation of concepts.
2272         
2273         * src/lyxfont.[Ch]: move the metric functions to font.[Ch] several
2274         changes because of this.
2275
2276         * src/PainterBase.[Ch] (width): remove, use the ones in font.C instead
2277
2278         * src/*: compile with -Winline and move functions that don't
2279         inline out of line.
2280         
2281         * src/lyx_cb.C (stringOnlyContains): use string::find_first_not_of
2282         instead of strspn.
2283
2284 2000-04-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
2285
2286         * src/paragraph.C (GetLabelstring): renamed from GetLabestring.
2287         (various files changed because of this)
2288
2289         * src/Painter.C (text): fixed the drawing of smallcaps.
2290
2291         * src/lyxfont.[Ch] (drawText): removed unused member func.
2292         (drawString): ditto
2293
2294         * src/*.C: added needed "using" statements and "std::" qualifiers. 
2295
2296 2000-03-31  Lars Gullik Bjønnes  <larsbj@lyx.org>
2297
2298         * src/*.h: removed all use of "using" from header files use
2299         qualifier std:: instead. 
2300
2301 2000-04-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2302
2303         * src/text.C (Backspace): some additional cleanups (we already
2304         know whether cursor.pos is 0 or not).
2305
2306         * lib/reLyX/Makefile.am (DESTDIR): add an empty value (since
2307         automake does not provide one).
2308
2309         * src/bmtable.h: replace C++ comments with C comments.
2310
2311 2000-04-02  Dekel Tsur <dekel@math.tau.ac.il>
2312
2313         * src/screen.C (ShowCursor): Change the shape of the cursor if
2314         the current language is not equal to the language of the document.
2315         (If the cursor change its shape unexpectedly, then you've found a bug)
2316
2317         * src/insets/insettext.C (LocalDispatch, UpdateLocal) Fixed some
2318         bugs [I hope...]
2319
2320         * src/insets/insetnumber.[Ch]: New files.
2321
2322         * src/LyXAction.C (init)
2323         * src/lyxfunc.C (dispatch): Add command number-inset-insert
2324
2325         * lyxrc.example
2326         * src/lyxrc.C: Renamed command \auto_mathmode to \number_inset
2327
2328         * src/lyxparagraph.h
2329         * src/paragraph.C: Changed insetlist to Vector<InsetTable>.
2330         (the vector is kept sorted).
2331
2332         * src/text.C (GetVisibleRow): Draw selection correctly when there
2333         is both LTR and RTL text.
2334
2335         * src/paragraph.C (Clone): Use the assignment operator for cloning,
2336         which is much faster.
2337
2338         * src/text.C (GetVisibleRow and other): Do not draw the last space 
2339         in a row if the direction of the last letter is not equal to the
2340         direction of the paragraph.
2341
2342         * src/lyxfont.C (latexWriteStartChanges):
2343         Check that font language is not equal to basefont language.
2344         (latexWriteEndChanges): ditto
2345
2346         * src/lyx_cb.C (StyleReset): Don't change the language while using
2347         the font-default command.
2348
2349         * src/paragraph.C (GetFirstFontSettings): Handle correctly an
2350         empty paragraph before a footnote.
2351
2352         * src/insets/insetcommand.C (draw): Increase x correctly.
2353
2354         * src/screen.C (ShowCursor): Change cursor shape if
2355         current language != document language.
2356
2357         * src/lyxfunc.C (dispatch): Added calls to owner->view()->setState()
2358
2359 2000-03-31  Juergen Vigna  <jug@sad.it>
2360
2361         * src/paragraph.C (GetInset): commented out text[pos] = ' '
2362         (Clone): changed mode how the paragraph-data is copied to the
2363         new clone-paragraph.
2364
2365         * src/lyxfunc.C (Dispatch): fixed small problem when calling
2366         GetInset(pos) with no inset anymore there (in inset UNDO)
2367
2368         * src/insets/insetcommand.C (draw): small fix as here x is
2369         incremented not as much as width() returns (2 before, 2 behind = 4)
2370
2371 2000-03-30  Juergen Vigna  <jug@sad.it>
2372
2373         * src/insets/insettext.C (InsetText): small fix in initialize
2374         widthOffset (should not be done in the init() function)
2375
2376 2000-03-29  Amir Karger <karger@lyx.org>
2377
2378         * lib/examples/it_ItemizeBullets.lyx: translation by 
2379         Stefano Mastella
2380
2381         * Implemented \textasciitilde and fixed a tiny bug in reLyX
2382
2383 2000-03-29  Juergen Vigna  <jug@sad.it>
2384
2385         * src/insets/insetcollapsable.C (Clone): same as in InsetFoot
2386
2387         * src/insets/insetfoot.C (Clone): small change as for the below
2388         new init function in the text-inset
2389
2390         * src/insets/insettext.C (init): new function as I've seen that
2391         clone did not copy the Paragraph-Data!
2392         (LocalDispatch): Added code so that now we have some sort of Undo
2393         functionality (well actually we HAVE Undo ;)
2394
2395         * src/text.C (Backspace): Small fix for the a | a Backspace problem
2396
2397 2000-03-24  Dekel Tsur <dekel@math.tau.ac.il>
2398         
2399         * src/paragraph.C (AutoDeleteInsets) Fixed a bug (wrong positions
2400         were erased)
2401
2402 2000-03-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
2403
2404         * src/main.C: added a runtime check that verifies that the xforms
2405         header used when building LyX and the library used when running
2406         LyX match. Exit with a message if they don't match. This is a
2407         version number check only.
2408
2409         * src/buffer.C (save): Don't allocate memory on the heap for
2410         struct utimbuf times.
2411
2412         * *: some using changes, use iosfwd instead of the real headers.
2413
2414         * src/lyxfont.C use char const * instead of string for the static
2415         strings. Rewrite some functions to use sstream.
2416
2417 2000-03-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2418
2419         * src/text.C (Backspace): hopefully fix the dreaded backaspace
2420         bug. 
2421
2422 2000-03-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2423
2424         * lib/layouts/svjog.layout: new file, for Springer-Verlag Journal
2425         of Geodesy (from Martin Vermeer)
2426
2427         * lib/layouts/svjour.inc: include file for the Springer svjour
2428         class. It can be used to support journals other than JoG.
2429
2430         * lib/Makefile.am: use $(DESTDIR) make variable (from Arkadiusz
2431         Miskiewicz <misiek@pld.org.pl>)
2432         * lib/reLyX/Makefile.am: ditto.
2433
2434 2000-03-27  Juergen Vigna  <jug@sad.it>
2435
2436         * src/insets/insettext.C: added Cut/Copy/Paste inside insets,
2437         also some modifications with operations on selected text.
2438
2439         * src/BufferView.C (checkInsetHit): Now hopefully fixed all the
2440         problems with clicking on insets (last famous words ;)
2441
2442         * src/insets/insetcommand.C (draw): 
2443         (width): Changed to have a bit of space before and after the inset so
2444         that the blinking cursor can be seen (otherwise it was hidden)
2445
2446 2000-03-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2447
2448         * config/gettext.m4 (AM_WITH_NLS): fix a gettext bug where -lintl
2449         would not be added to the link list when an installed gettext (not
2450         part of libc) is found.
2451
2452 2000-03-24  Juergen Vigna  <jug@sad.it>
2453
2454         * src/insets/insetcollapsable.C (Edit): 
2455         * src/mathed/formula.C (InsetButtonRelease): 
2456         (InsetButtonPress): fixed for new handling of ButtonPress/Release
2457         handling.
2458
2459         * src/BufferView.C (workAreaButtonPress): 
2460         (workAreaButtonRelease): 
2461         (checkInsetHit): Finally fixed the clicking on insets be handled
2462         correctly!
2463
2464         * src/insets/insetert.C (Edit): inserted this call so that ERT
2465         insets work always with LaTeX-font
2466
2467 2000-03-21  Kayvan A. Sylvan  <kayvan@camel.internal.sylvan.com>
2468
2469         * src/lyx_main.C (easyParse): Removed misplaced gui=false which
2470         caused lyx to startup with no GUI in place, causing in a crash
2471         upon startup when called with arguments.
2472
2473 2000-03-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2474
2475         * src/FontLoader.C: better initialization of dummyXFontStruct.
2476
2477 2000-03-20 José Abílio Matos <jamatos@lyx.org>
2478
2479         * src/lyxrc.[Ch] Removed \sgml_extra_options, added 6 other flags
2480         for linuxdoc and docbook import and export format options.
2481
2482         * lib/lyxrc.example Example of default values for the previous flags.
2483
2484         * src/lyx_cb.C Use those flags instead of the hardwired values for
2485         linuxdoc and docbook export.
2486
2487         * src/lyxfunc.[Ch] Added HTML export for linuxdoc and docbook, added
2488         linuxdoc import.
2489
2490         * src/menus.C Added menus entries for the new import/exports formats.
2491         
2492 2000-03-09 André Pönitz <poenitz@mathematik.tu-chemnitz.de>
2493
2494         * src/lyxrc.*: Added support for running without Gui 
2495         (\use_gui false)
2496           
2497         * src/FontLoader.C: sensible defaults if no fonts are needed
2498
2499         * src/lyx_cb.C: New function ShowMessage (writes either to the
2500         minibuffer or cout in case of no gui
2501         New function AskOverwrite for common stuff
2502         Consequently various changes to call these functions
2503
2504         * src/lyx_main.C:  allow gui = false and handle lyxrc \use_gui false
2505         wild guess at sensible screen resolution when having no gui
2506
2507         * src/lyxfont.C: no gui, no fonts... set some defaults
2508
2509 2000-03-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2510
2511         * src/LColor.C: made the command inset background a bit lighter.
2512
2513 2000-03-20  Hartmut Goebel <goebel@noris.net>
2514
2515         * lib/layouts/stdstruct.inc: split into stdtitle.inc and
2516         stdstruct.inc. Koma-Script added some title elements which
2517         otherwise have been listed below "bibliography". This split allows
2518         adding title elements to where they belong.
2519
2520         * lib/layouts/scrclass.inc: changed to include stdtitle.inc, then
2521         define the additional tilte elements and then include
2522         stdstruct.inc. 
2523
2524         * many other layout files: changed to include stdtitle.inc just
2525         before stdstruct.inc.
2526
2527 2000-03-18 Dekel Tsur <dekel@math.tau.ac.il>
2528
2529         * src/buffer.C: (save) Added the option to store all backup files
2530         in a single directory
2531
2532         * src/lyxrc.[Ch]: Added variable \backupdir_path
2533
2534         * lib/lyxrc.example: Added descriptions of recently added variables
2535
2536         * src/insets/insetbib.[Ch]: Fixed few bugs (crash when editing a
2537         bibtex inset, not closing the bibtex popup when deleting the inset)
2538
2539 2000-03-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2540
2541         * src/lyx_cb.C: add a couple using directives.
2542
2543 2000-03-17 José Abílio Matos <jamatos@lyx.org>
2544         * src/lyx_cb.C (RunLinuxDoc) Removed the flag==-1 option for linuxdoc 
2545         import based on the filename.
2546         
2547         * src/bufferlist.C () Removed the call to RunLinuxDoc where a linuxdoc
2548         file would be imported at start, if the filename where of a sgml file.
2549
2550         * src/support/filetools.C (IsSGMLfilename) Removed, no longer needed.
2551         
2552         * src/support/filetools.h (IsSGMLfilename) Removed, no longer needed.
2553         
2554 2000-03-16 Dekel Tsur <dekel@math.tau.ac.il>
2555         * src/lyxfont.h Replaced the member variable bits.direction by the
2556         member variable lang. Made many changes in other files.
2557         This allows having a multi-lingual document
2558
2559         * src/lyxfunc.C, src/lyx_cb.C Added a new command "language <l>"
2560         that change the current language to <l>.
2561         Removed the command "font-rtl"
2562
2563         * src/buffer.C Changed LYX_FORMAT to 2.16 (as I changed the file
2564         format for Hebrew documents)
2565
2566         * src/lyxrc.C, src/lyxfunc.C Added a new lyxrc command "auto_mathmode"
2567         When auto_mathmode is "true", pressing a digit key in normal mode 
2568         will cause entering into mathmode.
2569         If auto_mathmode is "rtl" then this behavior will be active only
2570         when writing right-to-left text.
2571
2572         * src/text2.C (InsertStringA) The string is inserted using the
2573         current font.
2574
2575         * src/paragraph.C (GetEndLabel) Gives a correct result for
2576         footnote paragraphs.
2577
2578         * src/paragraph.C (PreviousBeforeFootnote) Fixed a small bug
2579
2580 2000-03-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
2581
2582         * src/text.C (Backspace): move RemoveParagraph and RemoveRow in
2583         front of PasteParagraph. Never insert a ' '. This should at least
2584         fix some cause for the segfaults that we have been experiencing,
2585         it also fixes backspace behaviour slightly. (Phu!)
2586
2587         * src/support/lstrings.C (compare_no_case): some change to make it
2588         compile with gcc 2.95.2 and stdlibc++-v3
2589
2590         * src/text2.C (MeltFootnoteEnvironment): change type o
2591         first_footnote_par_is_not_empty to bool.
2592
2593         * src/lyxparagraph.h: make text private. Changes in other files
2594         because of this.
2595         (fitToSize): new function
2596         (setContentsFromPar): new function
2597         (clearContents): new function
2598         (SetChar): new function
2599
2600         * src/paragraph.C (readSimpleWholeFile): deleted.
2601
2602         * src/lyx_cb.C (InsertAsciiFile): don't use a LyXParagraph to hold
2603         the file, just use a simple string instead. Also read the file in
2604         a more maintainable manner.
2605
2606         * src/text2.C (InsertStringA): deleted.
2607         (InsertStringB): deleted.
2608
2609 2000-03-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
2610
2611         * src/text2.C (DeleteEmptyParagraphMechanism): don't run,
2612         RedoParagraphs from the doublespace handling part, just set status
2613         to NEED_MORE_REFRESH. Also don't update cursor position (should be
2614         done, but perhaps not like this.)
2615
2616 2000-03-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2617
2618         * src/text2.C (InsertStringA): don't forget to insert a META_INSET
2619         character when inserting an inset.
2620
2621 2000-03-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
2622
2623         * src/bufferparams.C (readLanguage): now takes "default" into
2624         consideration.
2625
2626         * src/lyx_main.C (LyX): remove the setup of lyxrc. (new)
2627         also initialize the toplevel_keymap with the default bindings from
2628         lyxrc. 
2629         
2630         * src/buffer.C (Buffer): remove lyxrc from the parameters.
2631
2632         * all files using lyxrc: have lyxrc as a real variable and not a
2633         pointer. remove all extern LyXRC * lyxrc. The equiv to this is
2634         done in lyxrc.h.
2635         
2636         * src/lyxrc.C: remove double call to defaultKeyBindings
2637
2638         * src/toolbar.[Ch]: Let the ToolbarDefaults handle the reading of
2639         toolbar defauls using lyxlex. Remove enums, structs, functions
2640         related to this. 
2641
2642         * src/lyxrc.h: use ToolbarDefaults instead of Toolbar for storing
2643         toolbar defaults. Also store default keybindings in a map.
2644
2645         * src/ToolbarDefaults.[Ch]: New file. This class is used for
2646         storing the toolbar defaults without any xforms dependencies. 
2647
2648         * src/insets/figinset.C: patch posted to list by Andre Poenitz
2649         applied. Changed to use iterators.
2650
2651 2000-03-11  Kayvan A. Sylvan  <kayvan@satyr.sylvan.com>
2652
2653         * development/lyx.spec.in: Fix to ``unset LINGUAS'' line for
2654         systems that don't have LINGUAS set to begin with.
2655
2656 2000-03-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
2657
2658         * src/text2.C (DeleteEmptyParagraphMechanism): small fix posted to
2659         the list by Dekel Tsur.
2660
2661 2000-03-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2662
2663         * src/insets/insetgraphics.C (GraphicxCB): declare with "C" linkage.
2664         * src/insets/form_graphics.C: ditto.
2665
2666         * src/insets/inseturl.C (Latex): the free_spc argument is not used.
2667
2668 2000-03-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
2669
2670         * src/bufferparams.C (readLanguage): use the new language map
2671
2672         * src/intl.C (InitKeyMapper): use the new language map
2673
2674         * src/lyx_gui.C (create_forms): use the new language map
2675
2676         * src/language.[Ch]: New files. Used for holding the information
2677         about each language. Now! Use this new language map enhance it and
2678         make it really usable for our needs. 
2679
2680 2000-03-09 Dekel Tsur <dekel@math.tau.ac.il>
2681         
2682         * screen.C (ShowCursor): Removed duplicate code.
2683         (ShowManualCursor): Support for 3 cursor shapes: Bar (default),
2684         L (LTR text in RTL document), and reversed-L (RTL text in LTR document)
2685         
2686         * src/text.C (NextBreakPoint,Fill): Moved declaration of left_margin
2687
2688         * src/lyxtext.h
2689         * src/text.C  Added TransformChar method. Used for rendering Arabic
2690         text correctly (change the glyphs of the letter according to the
2691         position in the word)
2692
2693         * src/buffer.C
2694         * src/paragraph.C
2695         * src/lyxrc.h
2696         * src/lyxrc.C  Added lyxrc command {language_command_begin,
2697         language_command_end,language_command_ltr,language_command_rtl,
2698         language_package} which allows the use of either arabtex or Omega
2699         for Arabic
2700
2701         * src/lyx_gui.C (init)
2702         * src/lyxrc.h
2703         * src/lyxrc.C Added lyxrc command screen_font_encoding_menu. Allows
2704         to use encoding for menu fonts which is different than the encoding
2705         for screen fonts
2706
2707         * src/buffer.C (makeLaTeXFile): If params.language = "default",
2708         do not load the babel package.
2709         To write an English document with Hebrew/Arabic, change the document
2710         language to "english".
2711
2712         * src/text2.C (SetCounter): Fixed appendix labels for Hebrew document
2713         (alphaCounter): changed to return char
2714         (loweralphaCounter, hebrewCounter, romanCounter): New functions
2715
2716         * lib/lyxrc.example  Added examples for Hebrew/Arabic
2717
2718         * src/layout.h
2719         * src/layout.C  Added layout command endlabeltype
2720
2721         * src/paragraph.C Added GetEndLabel(),LastPhysicalPar() const
2722
2723         * src/text.C (GetVisibleRow): Draw a box at the end of proof layout
2724
2725 2000-03-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
2726
2727         * src/mathed/math_delim.C (search_deco): return a
2728         math_deco_struct* instead of index.
2729
2730 2000-03-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
2731
2732         * All files with a USE_OSTREAM_ONLY within: removed all code that
2733         was unused when USE_OSTREAM_ONLY is defined.
2734         
2735         * src/support/lyxalgo.h (sorted): rewrote to use plain '<' instead
2736         of any less. Removed header and using.
2737
2738         * src/text.C (GetVisibleRow): draw the string "Page Break
2739         (top/bottom)" on screen when drawing a pagebreak line.
2740
2741 2000-03-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2742
2743         * lib/doc/LaTeXConfig.lyx.in: add description of textclass llncs.
2744
2745         * src/mathed/math_macro.C (draw): do some cast magic.
2746         (Metrics): ditto.
2747
2748         * src/mathed/math_defs.h: change byte* argument to byte const*.
2749
2750         * src/mathed/formulamacro.[Ch]: add free_spc to Latex() method.
2751
2752         * src/insets/insetfoot.[Ch]: Clone() always returns an Inset* (well I
2753         know it is right to return InsetFoot* too, but cxx does not like
2754         it...). 
2755
2756         * src/insets/insetcollapsable.[Ch] (Clone): make const.
2757
2758         * development/lyx.spec.in: unset LINGUAS to avoid i18n problems.
2759
2760         * src/mathed/math_delim.C: change == to proper assignment.
2761
2762 2000-03-09  Juergen Vigna  <jug@sad.it>
2763
2764         * src/insets/insettext.C (setPos): fixed various cursor positioning
2765         problems (via mouse and cursor-keys)
2766         (LocalDispatch): added posibility to add a Ctrl-Enter inside a text
2767         inset (still a small display problem but it works ;)
2768
2769         * src/insets/insetcollapsable.C (draw): added button_top_y and
2770         button_bottom_y to have correct values for clicking on the inset.
2771
2772         * src/support/lyxalgo.h: commented out 'using std::less'
2773
2774 2000-03-08  Juergen Vigna  <jug@sad.it>
2775
2776         * src/insets/insetcollapsable.C (InsetButtonRelease): Now a
2777         Button-Release event closes as it is alos the Release-Event
2778         which opens it.
2779
2780         * src/lyxfunc.C (Dispatch): forgot a break in the LFUN_INSET_ERT
2781
2782 2000-03-07  Kayvan A. Sylvan  <kayvan@camel.internal.sylvan.com>
2783
2784         * lib/layouts/literate-scrap.inc: Fixed initial comment. Now we
2785         can add multiple spaces in Scrap (literate programming) styles...
2786         which, by the way, is how I got hooked on LyX to begin with.
2787  
2788         * src/mathed/formula.C (Write): Added dummy variable to an
2789         inset::Latex() call.
2790         (Latex): Add free_spacing boolean to inset::Latex()
2791
2792         * src/mathed/formula.h (Latex): Added free_spacing boolean arg.
2793         
2794         * src/insets/lyxinset.h: Changed definition of the inset::Latex()
2795         virtual function to include the free_spacing boolean from
2796         the containing paragraph's style.
2797  
2798         * src/insets/inseturl.C, src/insets/inseturl.h (Latex):
2799         Added free_spacing boolean arg to match inset.h
2800         
2801         * src/insets/insettext.C, src/insets/insettext.h (Latex):
2802         Added free_spacing boolean arg to match inset.h
2803         
2804         * src/insets/insetspecialchar.C, src/insets/insetspecialchar.h (Latex):
2805         Added free_spacing boolean and made sure that if in a free_spacing
2806         paragraph, that we output normal space if there is a protected space.
2807         
2808         * src/insets/insetref.C, src/insets/insetref.h (Latex):
2809         Added free_spacing boolean arg to match inset.h
2810         
2811         * src/insets/insetquotes.C, src/insets/insetquotes.h (Latex):
2812         Added free_spacing boolean arg to match inset.h
2813         
2814         * src/insets/insetparent.C, src/insets/insetparent.h (Latex):
2815         Added free_spacing boolean arg to match inset.h
2816         
2817         * src/insets/insetlatexaccent.C, src/insets/insetlatexaccent.h (Latex):
2818         Added free_spacing boolean arg to match inset.h
2819         
2820         * src/insets/insetlatex.C, src/insets/insetlatex.h (Latex):
2821         Added free_spacing boolean arg to match inset.h
2822         
2823         * src/insets/insetlabel.C, src/insets/insetlabel.h (Latex): Added
2824         free_spacing boolean arg to match inset.h 
2825         
2826         * src/insets/insetinfo.C, src/insets/insetinfo.h (Latex):
2827         Added free_spacing boolean arg to match inset.h
2828         
2829         * src/insets/insetinclude.C, src/insets/insetinclude.h (Latex):
2830         Added free_spacing boolean arg to match inset.h
2831         
2832         * src/insets/insetgraphics.C, src/insets/insetgraphics.h (Latex):
2833         Added free_spacing boolean arg to match inset.h
2834         
2835         * src/insets/inseterror.C, src/insets/inseterror.h (Latex):
2836         Added free_spacing boolean arg to match inset.h
2837         
2838         * src/insets/insetcommand.C, src/insets/insetcommand.h (Latex):
2839         Added free_spacing boolean arg to match inset.h
2840         
2841         * src/insets/insetbib.C, src/insets/insetbib.h (Latex): Added
2842         free_spacing boolean arg to match inset.h
2843         
2844         * src/insets/figinset.C, src/insets/figinset.h (Latex): Added
2845         free_spacing boolean arg to match inset.h
2846         
2847         * src/text2.C (DeleteEmptyParagraphMechanism): Fix this to
2848         ignore free_spacing paragraphs. The user's spaces are left
2849         alone. 
2850         
2851         * src/text.C (InsertChar): Fixed the free_spacing layout
2852         attribute behavior. Now, if free_spacing is set, you can
2853         add multiple spaces in a paragraph with impunity (and they
2854         get output verbatim).
2855         (SelectSelectedWord): Added dummy argument to inset::Latex()
2856         call.
2857         
2858         * src/paragraph.C (TeXOnePar): Added dummy args to inset::Latex(...)
2859         calls.
2860         
2861         * src/lyxfunc.C (Dispatch): Hard-spaces input in free_spacing
2862         paragraph layouts now only input a simple space instead.
2863         Special character insets don't make any sense in free-spacing
2864         paragraphs.
2865         
2866         * src/buffer.C (parseSingleLyXformat2Token): Code to convert
2867         hard-spaces in the *input* file to simple spaces if the layout
2868         is free-spacing. This converts old files which had to have
2869         hard-spaces in free-spacing layouts where a simple space was
2870         preferrable.
2871         (writeFileAscii): Added free_spacing check to pass to the newly
2872         reworked inset::Latex(...) methods. The inset::Latex() code
2873         ensures that hard-spaces in free-spacing paragraphs get output
2874         as spaces (rather than "~").
2875         
2876 2000-03-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
2877         
2878         * src/mathed/math_delim.C (draw): draw the empty placeholder
2879         delims with a onoffdash line.
2880         (struct math_deco_compare): struct that holds the "functors" used
2881         for the sort and the binary search in math_deco_table.
2882         (class init_deco_table): class used for initial sort of the
2883         math_deco_table. 
2884         (search_deco): use lower_bound to do a binary search in the
2885         math_deco_table.
2886
2887 2000-03-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
2888
2889         * src/lyxrc.C: a small secret thingie...
2890
2891         * src/lyxlex.C (printTable): changed to take a ostream as paramter
2892         and to not flush the stream as often as it used to.
2893
2894         * src/support/lyxalgo.h: new file 
2895         (sorted): template function used for checking if a sequence is
2896         sorted or not. Two versions with and without user supplied
2897         compare. Uses same compare as std::sort.
2898
2899         * src/lyxlex.C (LyXLex): check if the table is sorted, if not sort
2900         it and give warning on lyxerr.
2901         (pushTable): ditto
2902         (struct compare_tags): struct with function operators used for
2903         checking if sorted, sorting and lower_bound.
2904         (search_kw): use lower_bound instead of manually implemented
2905         binary search.
2906
2907 2000-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2908
2909         * src/insets/insetcollapsable.h: fix Clone() declaration.
2910         * src/insets/insetfoot.h: ditto.
2911
2912         * src/insets/lyxinset.h: remove an extra comma at the end of enum.
2913
2914 2000-03-08  Juergen Vigna  <jug@sad.it>
2915
2916         * src/insets/lyxinset.h: added owner call which tells us if
2917         this inset is inside another inset. Changed also the return-type
2918         of Editable to an enum so it tells clearer what the return-value is.
2919
2920         * src/insets/insettext.C (computeTextRows): fixed computing of
2921         textinsets which split automatically on more rows.
2922
2923         * src/insets/insetert.[Ch]: changed this to be of BaseType
2924         InsetCollapsable.
2925
2926         * src/insets/insetfoot.[Ch]: added footnote inset
2927
2928         * src/insets/insetcollapsable.[Ch]: added this BaseClass for
2929         collapsable insets (like footnote, ert, ...)
2930
2931 2000-03-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
2932
2933         * src/lyxdraw.h: remvoe file
2934
2935         * src/lyxdraw.C: remove file
2936
2937         * src/insets/insettext.C: added <algorithm>.
2938
2939 2000-03-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
2940
2941         * src/mathed/math_panel.C (delim_cb): case MM_OK use string stream
2942         (matrix_cb): case MM_OK use string stream
2943
2944         * src/mathed/formula.C (LocalDispatch): case LFUN_SETXY use string
2945         stream.
2946
2947         * src/mathed/math_macro.C (draw): use string stream
2948         (Metrics): use string stream
2949
2950         * src/paragraph.C (TeXFootnote): for case LyXParagraph::FIG, write
2951         directly to the ostream.
2952
2953         * src/vspace.C (asString): use string stream.
2954         (asString): use string stream
2955         (asLatexString): use string stream
2956
2957         * src/lyx_cb.C (UpdateLayoutDocument): use string stream for
2958         setting Spacing::Other.
2959
2960         * src/LaTeXFeatures.C (getPackages): use string stream instead of
2961         sprintf when creating the stretch vale.
2962
2963         * src/text2.C (alphaCounter): changed to return a string and to
2964         not use a static variable internally. Also fixed a one-off bug.
2965         (SetCounter): changed the drawing of the labels to use string
2966         streams instead of sprintf.
2967
2968         * src/support/lyxmanip.h: rewrite the newlineanDepth ostream
2969         manipulator to use a scheme that does not require library support.
2970         This is also the way it is done in the new GNU libstdc++. Should
2971         work with DEC cxx now. 
2972
2973 2000-03-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
2974
2975         * src/mathed/math_inset.h (Write(ostream & os): add a space at the
2976         end. This fixes a bug. 
2977
2978         * src/mathed (all files concerned with file writing): apply the
2979         USE_OSTREAM_ONLY changes to mathed too.
2980         
2981         * src/support/DebugStream.h: make the constructor explicit.
2982
2983         * src/lyxfont.C (latexWriteStartChanges): small bug related to
2984         count and ostream squashed.
2985
2986 2000-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2987
2988         * src/support/Makefile.am (libsupport_la_SOURCES): add lyxmanip.h.
2989
2990         * src/buffer.C (makeLaTeXFile): add a .c_str(), since
2991         ostringstream uses STL strings, and we might not.
2992
2993         * src/insets/insetspecialchar.C: add using directive.
2994         * src/insets/insettext.C: ditto.
2995
2996 2000-03-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
2997
2998         * lib/layouts/seminar.layout: feeble attempt at a layout for
2999         seminar.cls, far from completet and could really use some looking
3000         at from people used to write layout files.
3001
3002         * src/support/lyxmanip.h (newlineAndDepth): ostream manipulator to
3003         use instead of the AddNewlineAndDepth funtion in lyx_cb.C. This is
3004         a lot nicer and works nicely with ostreams.
3005
3006         * src/mathed/formula.C (draw): a slightly different solution that
3007         the one posted to the list, but I think this one works too. (font
3008         size wrong in headers.)
3009
3010         * src/insets/insettext.C (computeTextRows): some fiddling on
3011         Jürgens turf, added some comments that he should read.
3012
3013         * src/lyxrc.C: remove all traces of RC_NOMENUACCELERATORS, never
3014         used and it gave compiler warnings.
3015         RC_SHOW_BANNER + "\\show_banner" added, also to reading and
3016         writing of lyxrc.
3017
3018         * src/lyx_gui.C (create_forms): do the right thing when
3019         show_banner is true/false.
3020
3021         * src/lyx_cb.C (TimerCB): no need to close or do anything if
3022         show_banner is false.
3023
3024         * most file writing files: Now use iostreams to do almost all of
3025         the writing. Also instead of passing string &, we now use
3026         stringstreams. mathed output is still not adapted to iostreams.
3027         This change can be turned off by commenting out all the occurences
3028         of the "#define USE_OSTREAM_ONLY 1" lines.
3029         
3030         * src/WorkArea.C (createPixmap): don't output debug messages.
3031         (WorkArea): don't output debug messages.
3032
3033         * lib/lyxrc.example: added a comment about the new variable
3034         \show_banner 
3035
3036         * development/Code_rules/Rules: Added some more commente about how
3037         to build class interfaces and on how better encapsulation can be
3038         achieved. 
3039
3040 2000-03-03  Juergen Vigna  <jug@sad.it>
3041
3042         * src/insets/insetert.C (InsetERT): Now ERT-insets break row
3043         automatically with the width of the LyX-Window
3044
3045         * src/insets/insettext.C (computeTextRows): fixed update bug in
3046         displaying text-insets (scrollvalues where not initialized!)
3047
3048 2000-03-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
3049
3050         * src/mathed/math_utils.C (MathedLookupBOP): using only res->id ==
3051         id in the check of the result from lower_bound is not enough since
3052         lower_bound can return last too, and then res->id will not be a
3053         valid construct.
3054
3055         *  all insets and some code that use them: I have conditionalized
3056         removed the Latex(string & out, ...) this means that only the
3057         Latex(ostream &, ...) will be used. This is a work in progress to
3058         move towards using streams for all output of files. 
3059
3060         * src/text.C (GetColumnNearX): initialize LyXParagraph::size_type
3061         c to 0.
3062
3063 2000-03-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3064
3065         * src/mathed/math_utils.C (MathedLookupBOP): fix the search
3066         routine (this fixes bug where greek letters were surrounded by too
3067         much white space).
3068
3069         * src/support/filetools.C (findtexfile): change a bit the search
3070         algorithm, to fix bug introduced in 1.1.4. Note that --format is
3071         no longer passed to kpsewhich, we may have to change that later.
3072
3073         * config/lyxinclude.m4 (LYX_PROG_CXX): better version-dependent
3074         warning options to avoid problems with X header files (from Angus
3075         Leeming).
3076         * acinclude.m4: regenerated.
3077
3078 2000-03-02  Juergen Vigna  <jug@sad.it>
3079
3080         * src/insets/insettext.C (WriteParagraphData): Using the
3081         par->writeFile() function for writing paragraph-data.
3082         (Read): Using buffer->parseSingleLyXformat2Token()-function
3083         for parsing paragraph data!
3084
3085         * src/buffer.C (readLyXformat2): removed all parse data and using
3086         the new parseSingleLyXformat2Token()-function.
3087         (parseSingleLyXformat2Token): added this function to parse (read)
3088         lyx-file-format (this is called also from text-insets now!)
3089
3090 2000-03-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
3091
3092         * src/paragraph.C (BeginningOfMainBody): initialize previous_char
3093         and temp.
3094
3095         * src/lyxfunc.C (Dispatch(LFUN_MENUSEARCH)): Do the Search dialog
3096         directly instead of going through a func. One very bad thing: a
3097         static LyXFindReplace, but I don't know where to place it. 
3098
3099         * src/lyxfr1.C (GetCurrentSelectionAsString): rewritten to use a
3100         string instead of char[]. Also changed to static.
3101         (GetSelectionOrWordAtCursor): changed to static inline
3102         (SetSelectionOverLenChars): ditto.
3103
3104         * src/lyxfr0.[Ch] src/lyxfr1.[Ch]: rewrite to get rid of
3105         current_view and global variables. both classes has changed names
3106         and LyXFindReplace is not inherited from SearchForm.
3107         
3108         * src/lyx_gui_misc.C (CloseAllBufferRelatedPopups): remove the
3109         fl_form_search form.
3110
3111         * src/lyx_gui.C (create_forms): removed the fl_form_search form.
3112
3113 2000-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3114
3115         * lib/bind/*.bind: make sure 'buffer-previous' function is not
3116         bound (from Kayvan).
3117
3118         * src/insets/Makefile.am (libinsets_la_SOURCES): add BoundingBox.h.
3119
3120         * lib/layouts/stdletter.inc: fix line spacing in Send_To_Address.
3121
3122 2000-03-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
3123
3124         * some things that I should comment but the local pub says head to
3125         swirly... 
3126         
3127         * comment out all code that belongs to the Roff code for Ascii
3128         export of tables. (this is unused)
3129         
3130         * src/LyXView.C: use correct type for global variable
3131         current_layout. (LyXTextClass::size_type)
3132
3133         * some code to get the new insetgraphics closer to working I'd be
3134         grateful for any help.
3135         
3136         * src/BufferView2.C (insertInset): use the return type of
3137         NumberOfLayout properly. (also changes in other files)
3138
3139         * src/insets/insetspecialchar.[Ch]: add the PROTECTED SEPARATOR to
3140         this as a test. I want to know what breaks because of this.
3141
3142         * src/BufferView.[Ch] (tripleClick): name change from trippleClick.
3143
3144 2000-02-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
3145
3146         * lib/layouts/stdlists.inc: changed the lyxlist latex definition
3147         to use a \makebox in the label, this allows proper justification
3148         with out using protected spaces or multiple hfills. Now it is
3149         "label" for left justified, "\hfill label\hfill" for center, and
3150         "\hfill label" for right justified. UserGuide.lyx sec. 3.3.6.5
3151         should be changed accordingly. 
3152
3153 2000-02-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3154
3155         * src/lyxtext.h: change SetLayout() to take a
3156         LyXTextClass::size_type instead of a char (when there is more than
3157         127 layouts in a class); also change type of copylayouttype.
3158         * src/text2.C (SetLayout): ditto.
3159         * src/LyXView.C (updateLayoutChoice): ditto.
3160
3161         * src/LaTeX.C (scanLogFile): errors where the line number was not
3162         given just after the '!'-line were ignored (from Dekel Tsur).
3163
3164         * lib/lyxrc.example: fix description of \date_insert_format
3165
3166         * lib/layouts/llncs.layout: new layout, contributed by Martin
3167         Vermeer. 
3168
3169 2000-02-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
3170
3171         * config/lyxinclude.m4 (LYX_PROG_CXX): remove case support for gcc
3172         2.7.* and add case support for gcc 2.96*. Gcc 2.96 only exists in
3173         cvs at gcc.gnu.org (currently it fails with ICE on insetbib.C,
3174         insetindex.C, insetloa.C, insettext.C, filetools.C, BufferView.C,
3175         BufferView2.C, LyXView.C, buffer.C, lyx_cb.C, lyxfunc.C,
3176         paragraph.C, text.C, text2.C)
3177
3178 2000-02-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3179
3180         * src/insets/insettext.C (LocalDispatch): remove extra break
3181         statement. 
3182
3183         * src/insets/insetert.[Ch] (Clone): change return value to Inset*
3184         * src/insets/insettext.[Ch] (Clone): change return value to Inset*
3185
3186         * src/mathed/formulamacro.[Ch] (draw): add missing const qualifier
3187         * src/insets/insettext.[Ch] (GetCursorPos): ditto
3188
3189         * src/insets/insetbib.h: move InsetBibkey::Holder and
3190         InsetCitation::Holder in public space.
3191
3192 2000-02-25  Lars Gullik Bjønnes <larsbj@lyx.org>
3193
3194         * src/insets/insettext.h: small change to get the new files from
3195         Juergen to compile (use "string", not "class string").
3196
3197         * src/insets/insettext.[Ch], src/insets/insertert.[Ch]: use string
3198         const & as parameter to LocalDispatch, use LyXFont const & as
3199         paramter to some other func. This also had impacto on lyxinsets.h
3200         and the two mathed insets.
3201
3202 2000-02-24  Juergen Vigna  <jug@sad.it>
3203
3204         * src/buffer.C:
3205         * src/commandtags.h: 
3206         * src/LyXAction.C:
3207         * src/lyxfunc.C: added code for LFUN_INSET_ERT and LFUN_INSET_TEXT
3208
3209         * src/BufferView.h
3210         * src/BufferView.C
3211         * src/BufferView2.C: added/updated code for various inset-functions
3212
3213         * src/insets/insetert.[Ch]: added implementation of InsetERT
3214
3215         * src/insets/insettext.[Ch]: added implementation of InsetText
3216
3217         * src/insets/inset.C (Edit): added "unsigned int button" parameter
3218         (draw): added preliminary code for inset scrolling not finshed yet
3219
3220         * src/insets/inset.C (LocalDispatch): changed arg parameter to string
3221         as it is in lyxfunc.C now
3222
3223         * src/insets/lyxinset.h: Added functions for text-insets
3224
3225 2000-02-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
3226
3227         * src/lyx_cb.C src/UpdateInset.[Ch]: move the updateinsetlist into
3228         BufferView and reimplement the list as a queue put inside its own
3229         class.
3230
3231         * src/bufferlist.[Ch] (updateInset): remove func, not needed.
3232
3233         * several files: use the new interface to the "updateinsetlist"
3234         
3235         * src/WorkArea.C (work_area_handler): call BufferView::doubleClick
3236         on doubleclick.
3237         (work_area_handler): call BufferView::trippleClick on trippleclick.
3238
3239         * src/BufferView.C (doubleClick): new function, selects word on
3240         doubleclick. 
3241         (trippleClick): new function, selects line on trippleclick.
3242
3243 2000-02-22  Allan Rae  <rae@lyx.org>
3244
3245         * lib/bind/xemacs.bind: buffer-previous not supported
3246
3247 2000-02-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3248
3249         * src/insets/insettoc.[Ch] (LinuxDoc, DocBook): mark the methods
3250         as const.
3251
3252 2000-02-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
3253
3254         * src/bufferlist.C: get rid of current_view from this file
3255
3256         * src/spellchecker.C: get rid of current_view from this file
3257
3258         * src/vspace.C: get rid of current_view from this file
3259         (inPixels): added BufferView parameter for this func
3260         (asLatexCommand): added a BufferParams for this func
3261
3262         * src/text.C src/text2.C: get rid of current_view from these
3263         files.
3264         
3265         * src/lyxfont.C (getFontDirection): move this function here from
3266         text.C
3267         
3268         * src/bufferparams.C (getDocumentDirection): move this function
3269         here from text.C
3270
3271         * src/paragraph.C (getParDirection): move this function here from
3272         text.C 
3273         (getLetterDirection): ditto
3274         
3275 2000-02-18  Lars Gullik Bjønnes  <larsbj@lyx.org>
3276
3277         * WorkArea, Painter, LyXScreen: Fixed the crash that occured on
3278         resize due to wrong pixmap beeing used. Also took the opurtunity
3279         to make the LyXScreen stateless on regard to WorkArea and some
3280         general cleanup in the same files.
3281         
3282 2000-02-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
3283
3284         * src/Makefile.am: add missing direction.h
3285
3286         * src/PainterBase.h: made the width functions const.
3287         
3288         * lib/kbd/iso8859-1.cdef: fix a couple of entries and define some
3289         missing ones.
3290         
3291         * src/insets/insetcommand.C (draw): draw Editable as buttons.
3292
3293         * src/insets/insetlatexaccent.C (draw): make the accents draw
3294         better, at present this will only work well with iso8859-1.
3295         
3296         * several files: remove the old drawing code, now we use the new
3297         painter only.
3298
3299         * several files: remove support for mono_video, reverse_video and
3300         fast selection.
3301
3302 2000-02-17  Juergen Vigna  <jug@sad.it>
3303
3304         * src/mathed/math_cursor.[Ch] (SelGetArea): Changed form int * to
3305         int ** as we have to return the pointer, otherwise we have only
3306         NULL pointers in the returning function.
3307
3308 2000-02-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3309
3310         * src/LaTeX.C (operator()): quote file name when running latex.
3311
3312 2000-02-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
3313
3314         * src/toolbar.C (set): use fl_set_object_helper for the tooltop
3315         (bubble tip), this removes our special handling of this.
3316
3317         * Remove all code that is unused now that we have the new
3318         workarea. (Code that are not active when NEW_WA is defined.)
3319
3320         * Make the uses of XSync not conditionalized on define USE_XSYNC.
3321         
3322 2000-02-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3323
3324         * src/lyxfunc.C (Dispatch): fix LFUN_LAYOUT when giving a
3325         nonexisting layout; correctly redirect obsoleted layouts.
3326
3327         * lib/lyxrc.example: document \view_dvi_paper_option
3328
3329         * src/lyxrc.[Ch]: add support for the \view_dvi_paper_option
3330         variable. 
3331
3332         * src/lyx_cb.C (RunScript): handle $$FName for command names. 
3333         (PreviewDVI): handle the view_dvi_paper_option variable.
3334         [Both from Roland Krause]
3335
3336 2000-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
3337
3338         * src/Painter.C (text(int,int,char,LyXFont)): call text(int, int,
3339         char const *, int, LyXFont)
3340         (text(int, int, string, LyXFont)): ditto 
3341
3342         * src/text.C (InsertCharInTable): attempt to fix the double-space
3343         feature in tables too.
3344         (BackspaceInTable): ditto.
3345         (GetVisibleRow): make bottom pagebreak line be a onoff line.
3346
3347 2000-02-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
3348
3349         * src/text2.C (owner): only complain if owner_ is set and bv != 0
3350
3351         * src/BufferView.C (resizeCurrentBuffer): set the owner of the
3352         newly found text in textcache to this.
3353         (buffer): set the owner of the text put into the textcache to 0
3354
3355         * src/insets/figinset.C (draw): fixed the drawing of figures with
3356         the new Painter.
3357
3358         * src/text.C src/mathed/math_cursor.C: nailed and fixed the
3359         drawing of mathframe, hfills, protected space, table lines. I have
3360         now no outstanding drawing problems with the new Painter code. 
3361
3362 2000-02-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3363
3364         * src/PainterBase.C (ellipse, circle): do not specify the default
3365         arguments. 
3366
3367         * src/LColor.h: add using directive.
3368
3369         * src/Painter.[Ch]: change return type of methods from Painter& to
3370         PainterBase&. Add a using directive.
3371
3372         * src/WorkArea.C: wrap xforms callbacks in C functions
3373         C_WorkArea_xxx. 
3374
3375         * lib/layouts/foils.layout: font fix and simplifications from Carl
3376         Ollivier-Gooch.
3377
3378 2000-02-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
3379
3380         * a lot of files: The Painter, LColor and WorkArea from the old
3381         devel branch has been ported to lyx-devel. Some new files and a
3382         lot of #ifdeffed code. The new workarea is enabled by default, but
3383         if you want to test the new Painter and LColor you have to compile
3384         with USE_PAINTER defined (do this in config.h f.ex.) There are
3385         still some rought edges, and I'd like some help to clear those
3386         out. It looks stable (loads and displays the Userguide very well).
3387         
3388
3389 2000-02-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3390
3391         * src/buffer.C (pop_tag): revert to the previous implementation
3392         (use a global variable for both loops).
3393
3394         * lib/kbd/iso8859-1.cdef: fix definition for \"{e}.
3395
3396         * src/lyxrc.C (LyXRC): change slightly default date format.
3397
3398         * src/paragraph.C (TeXOnePar): Generate a correct latex file when
3399         there is an English text with a footnote that starts with a Hebrew
3400         paragraph, or vice versa.
3401         (TeXFootnote): ditto.
3402
3403         * src/text.C (LeftMargin): allow for negative values for
3404         parindent. Thanks to Philip Lehman <lehman@gmx.net> for testing
3405         this out.
3406
3407         * src/lyx_gui.C (create_forms): add iso88595 as a possible choice
3408         for input encoding (cyrillic)
3409
3410 2000-02-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3411
3412         * src/lyx_gui.C (create_forms): make combo box taller (from Dekel
3413         Tsur). 
3414
3415         * src/toolbar.C (set): ditto
3416         * src/insets/insetbib.C (create_form_citation_form): ditto
3417
3418         * lib/CREDITS: added Dekel Tsur.
3419
3420         * lib/kbd/hebrew.kmap, lib/kbd/null.kmap,
3421         lib/layouts/heb-article.layout, lib/layouts/heb-letter.layout: new
3422         hebrew supports files from Dekel Tsur.
3423         
3424         * lib/kbd/iso8859-8.cdef: new file, from Tzafrir Cohen
3425         <tzafrir@technion.ac.il> 
3426
3427         * src/lyxrc.C: put \date_insert_format at the right place.
3428
3429         * src/buffer.C (makeLaTeXFile): fix the handling of
3430         BufferParams::sides when writing out latex files.
3431
3432         * src/BufferView2.C: add a "using" directive.
3433
3434         * src/support/lyxsum.C (sum): when we use lyxstring,
3435         ostringstream::str needs an additional .c_str().
3436
3437 2000-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
3438
3439         * src/support/filetools.C (ChangeExtension): patch from Etienne
3440         applied.
3441
3442         * src/TextCache.C (show): remove const_cast and make second
3443         parameter non-const LyXText *.
3444
3445         * src/TextCache.h: use non const LyXText in show.
3446
3447         * src/paragraph.C (SimpleTeXSpecialChars): patch to make urls work
3448         with hebrew.
3449
3450 2000-02-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3451
3452         * src/support/lyxsum.C: rework to be more flexible.
3453         
3454         * several places: don't check if a pointer is 0 if you are going
3455         to delete it.
3456
3457         * src/text.C: remove some dead code.
3458
3459         * src/insets/figinset.C: remove some dead code
3460         
3461         * src/buffer.C: move the BufferView funcs to BufferView2.C
3462         remove all support for insetlatexdel
3463         remove support for oldpapersize stuff
3464         made some member funcs const
3465
3466         * src/kbmap.C: use a std::list to store the bindings in.
3467         
3468         * src/BufferView2.C: new file
3469
3470         * src/kbsequence.[Ch]: new files
3471         
3472         * src/LyXAction.C + others: remove all trace of buffer-previous
3473         
3474         * src/Bullet.[Ch]: moved ITEMIZE_DEFAULTS inside Bullet.C so that we
3475         only have one copy in the binary of this table.
3476         
3477         * hebrew patch: moved some functions from LyXText to more
3478         appropriate places. (LyXParagraph, BufferParams, LyXFont)
3479         
3480         * several files: remove support for XForms older than 0.88
3481         whitespace changes.
3482         remove some #if 0 #endif code
3483         
3484         * src/TextCache.[Ch]: new file. Holds the textcache.
3485
3486         * src/BufferView.C: changes to use the new TextCache interface.
3487         (waitForX): remove the now unused code.
3488         
3489         * src/BackStack.h: remove some commented code
3490
3491         * lib/bind/emacs.bind: remove binding for buffer-previous
3492
3493 2000-02-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
3494
3495         * applied the hebrew patch.
3496
3497         * src/lyxrow.h: make sure that all Row variables are initialized.
3498
3499         * src/text2.C (TextHandleUndo): comment out a delete, this might
3500         introduce a memory leak, but should also help us to not try to
3501         read freed memory. We need to look at this one.
3502
3503         * src/paragraph.C (SimpleDocBookOneTablePar): initialize column to 0
3504         (LyXParagraph): initalize footnotekind.
3505
3506         * src/lyxrc.C (output): added case RC_DATE_INSERT_FORMAT. Jug
3507         forgot this when applying the patch. Please heed the warnings.
3508
3509         * src/BufferView.C (buffer): a fix for the buffer-reload problem
3510         (aka. reformat problem)
3511
3512         * src/bufferlist.C (exists): made const, and use const_iterator
3513         (isLoaded): new func.
3514         (release): use std::find to find the correct buffer.
3515
3516         * src/bufferlist.h: made getState a const func.
3517         made empty a const func.
3518         made exists a const func.
3519         new func: isLoaded
3520
3521 2000-02-01  Juergen Vigna  <jug@sad.it>
3522
3523         * src/lyxfunc.C lyxrc.C: changed from insert-date to date-insert
3524
3525         * po/it.po: updated a bit the italian po file and also changed the
3526         'file nuovo' for newfile to 'filenuovo' without a space, this did
3527         annoy me a lot :)
3528         
3529         * src/lyxrc.C (LyXRC): added support for a default insert_date_format
3530         for the new insert_date command.
3531
3532         * src/lyxfunc.C (Dispatch): added support for a insert_date function
3533         from jdblair, to insert a date into the current text conforming to
3534         a strftime format (for now only considering the locale-set and not
3535         the document-language).
3536
3537 2000-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3538
3539         * src/lyxfont.C (textWidth): hopefully better fix for the Array
3540         Bounds Read error seen by purify. The problem was that islower is
3541         a macros which takes an unsigned char and uses it as an index for
3542         in array of characters properties (and is thus subject to the
3543         above error).
3544         (drawText): ditto.
3545
3546         * src/lyx_cb.C (UpdateLayoutDocument): use a switch to set
3547         correctly the paper sides radio buttons.
3548         (UpdateDocumentButtons): ditto.
3549
3550 2000-01-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
3551
3552         * src/kbmap.C (getsym + others): change to return unsigned int,
3553         returning a long can give problems on 64 bit systems. (I assume
3554         that int is 32bit on 64bit systems)
3555
3556 2000-01-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3557
3558         * src/lyxfunc.C (processKeyEvent): fix a the buffer returned by
3559         LyXLookupString to be zero-terminated. Really fixes problems seen
3560         by purify, I think.
3561
3562 2000-01-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
3563
3564         * src/lyxfunc.C (processKeyEvent): "fix" so that we never try to
3565         write a (char*)0 to the lyxerr stream.
3566
3567         * src/lastfiles.C: move algorithm before the using statemets.
3568
3569 2000-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3570
3571         * src/lastfiles.C: move using directives in global scope (egcs 1.x
3572         complains otherwise).
3573         * src/table.C: ditto
3574
3575         * lib/reLyX/reLyX.in: use variable @LYX_DIR@ as built-in data
3576         directory. 
3577
3578         * lib/reLyX/configure.in (LYX_DIR): re-introduce this variable
3579         that I removed earlier... It is really needed.
3580
3581         * lib/examples/multicol.lyx: new file, splitted from Extended.lyx. 
3582
3583 2000-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3584
3585         * INSTALL: update xforms home page URL.
3586
3587         * lib/configure.m4: fix a bug with unreadable layout files.
3588
3589         * src/table.C (calculate_width_of_column): add "using std::max"
3590         directive. 
3591
3592 2000-01-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
3593
3594         * several files: marked several lines with "DEL LINE", this is
3595         lines that can be deleted without changing anything.
3596         if (<ptr>) // DEL LINE  /* this line is _never_ needed. Delete
3597                                    checks this anyway */
3598                 delete <ptr>
3599
3600         * src/insets/insetlatexaccent.C: Changed some debugs to Debug::KEY
3601
3602         * src/DepTable.C (update): add a "+" at the end when the checksum
3603         is different. (debugging string only)
3604
3605         * src/paragraph.C (ReturnNextInsetPointer): fix bug that caused
3606         the next inset to not be displayed. This should also fix the list
3607         of labels in the "Insert Crossreference" dialog.
3608
3609 2000-01-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
3610
3611         * src/support/LSubstring.C (LSubstring): set pos to string::npos
3612         when regex was not found.
3613
3614         * src/support/lstrings.C (lowercase): use handcoded transform always.
3615         (uppercase): ditto
3616
3617         * src/text.C (Delete): fixed the crash. cursor.par->prev and
3618         old_cursor.par->prev could be 0.
3619
3620         * several files: changed post inc/dec to pre inc/dec
3621         
3622         * src/lastfiles.C (writeFile): use ostream_iterator and copy to
3623         write the lastfiles to file.
3624
3625         * src/BufferView.C (buffer): only show TextCache info when debugging
3626         (buffer): ditto
3627         (resizeCurrentBuffer): ditto
3628         (workAreaExpose): ditto
3629
3630         * lib/kbd/iso8859-7.cdef: changed to new quoting scheme
3631
3632         * lib/kbd/iso8859-2.cdef: changed to new quoting scheme
3633
3634         * src/insets/insetlatexaccent.C (Draw): make the display of UMLAUT
3635         a bit better by removing the special case for \i and \j.
3636
3637 2000-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3638
3639         * src/lyx_main.C (easyParse): remove test for bad comand line
3640         options, since this broke all xforms-related parsing.
3641
3642         * src/kbmap.C (getsym): set return type to unsigned long, as
3643         declared in header. On an alpha, long is _not_ the same as int.
3644
3645         * src/support/LOstream.h: add a "using std::flush;"
3646
3647         * src/insets/figinset.C: ditto.
3648
3649 2000-01-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
3650
3651         * src/bufferlist.C (write): use blinding fast file copy instead of
3652         "a char at a time", now we are doing it the C++ way.
3653
3654         * src/insets/figinset.C: get rid of struct pidwaitpit, use a
3655         std::list<int> instead.
3656         (addpidwait): reflect move to std::list<int>
3657         (sigchldchecker): ditto
3658
3659         * src/bmtable.c (fl_set_bmtable_file): have arguments in the X r5
3660         version also. 
3661
3662         * src/paragraph.C (FirstPhysicalPar): remove assert and comment
3663         that obviously was wrong...
3664
3665         * src/lyxfont.C (textWidth): have c as char c[2] instead of char
3666         c, this avoids warnings with purify and islower.
3667
3668         * src/insets/figinset.C: rename struct queue to struct
3669         queue_element and rewrite to use a std::queue. gsqueue is now a
3670         std::queue<queue_element>
3671         (runqueue): reflect move to std::queue
3672         (addwait): ditto
3673
3674         * src/support/lstrings.h (tostr): specialize for bool, otherwise
3675         we would get "1" "0" instead of "true" "false. Also make the tostr
3676         functions inline.
3677
3678 2000-01-21  Juergen Vigna  <jug@sad.it>
3679
3680         * src/buffer.C (writeFileAscii): Disabled code for special groff
3681         handling of tabulars till I fix this in table.C
3682
3683 2000-01-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3684
3685         * src/support/mkdir.C (mkdir): change second argument of mkdir to
3686         unsigned long int.
3687         * src/support/lyxlib.h: ditto.
3688
3689 2000-01-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
3690
3691         * src/insets/insetlatexaccent.C (Draw): make accents on top of 'i'
3692         and 'j' look better. This might fix the "macron" bug that has been
3693         observed.
3694
3695         * src/support/lstrings.[Ch] (tostr): reimplement all the tostr
3696         functions as one template function. Delete the old versions.
3697
3698         * src/support/lyxsum.C: move using std::ifstream inside
3699         MODERN_STL_STREAMS
3700
3701         * src/support/Makefile.am (libsupport_la_SOURCES): added mkdir.C
3702         and putenv.C
3703
3704         * src/mathed/formulamacro.C: delete #include "bufferlist.h" never used
3705
3706         * src/mathed/formula.C: delete #include "bufferlist.h" never used
3707
3708         * src/insets/figinset.C (InitFigures): use new instead of malloc
3709         to allocate memory for figures and bitmaps.
3710         (DoneFigures): use delete[] instead of free to deallocate memory
3711         for figures and bitmaps.
3712         (runqueue): use new to allocate 
3713         (getfigdata): use new/delete[] instead of malloc/free
3714         (RegisterFigure): ditto
3715
3716         * some files: moved some declarations closer to first use, small
3717         whitespace changes use preincrement instead of postincrement where
3718         it does not make a difference.
3719         
3720         * src/kbmap.[Ch]: delete code according to define NO_HASH, it is a
3721         step on the way to use stl::containers for key maps. 
3722
3723         * src/bufferlist.h: add a typedef for const_iterator and const
3724         versions of begin and end.
3725
3726         * src/bufferlist.[Ch]: change name of member variable _state to
3727         state_. (avoid reserved names)
3728         (makePup): removed
3729         (getFileNames): returns the filenames of the buffers in a vector.
3730
3731         * configure.in (ALL_LINGUAS): added ro
3732
3733         * src/support/putenv.C: new file
3734
3735         * src/support/mkdir.C: new file
3736
3737 2000-01-20  Allan Rae <rae@lyx.org>
3738
3739         * lib/layouts/IEEEtran.layout: Added several theorem environments
3740
3741         * lib/templates/IEEEtran.lyx: Example theorem environments and a
3742         couple of minor additions.
3743
3744         * lib/doc/LaTeXConfig.lyx.in:  Use URL insets for ftp sites 
3745         (except for those in footnotes of course)
3746
3747 2000-01-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
3748
3749         * src/lyxlookup.C (CloseLyXLookup): set xic=0; after destruction. 
3750
3751         * src/mathed/math_utils.C (MathedLookupBOP): rewrite to use
3752         std::sort and std::lower_bound instead of qsort and handwritten
3753         binarysearch.
3754         (struct compara): struct that holds the functors used by std::sort
3755         and std::lower_bound in MathedLookupBOP.
3756
3757 2000-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3758
3759         * src/support/LAssert.h: do not do partial specialization. We do
3760         not really need it.
3761
3762         * src/support/lyxlib.h: note that lyx::getUserName() and
3763         lyx::date() are not in use right now. Should these be suppressed?
3764
3765         * src/buffer.C (makeLaTeXFile): we do not need the user name here.
3766         (makeLinuxDocFile): do not put date and user name in linuxdoc
3767         headers. 
3768
3769         * src/support/lyxlib.h (kill): change first argument to long int,
3770         since that's what solaris uses.
3771
3772         * src/support/kill.C (kill): fix declaration to match prototype.
3773
3774         * config/lyxinclude.m4 (LYX_CXX_NAMESPACES): fix the macro to
3775         actually check whether namespaces are supported. This is not what
3776         it used to do.
3777
3778         * src/support/lyxsum.C: add a using directive.
3779
3780 2000-01-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
3781
3782         * src/support/kill.C: if we have namespace support we don't have
3783         to include lyxlib.h.
3784
3785         * src/support/lyxlib.h: use namespace lyx if supported.
3786
3787 2000-01-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
3788
3789         * src/support/date.C: new file
3790
3791         * src/support/chdir.C: new file
3792
3793         * src/support/getUserName.C: new file
3794
3795         * src/support/getcwd.C: new file
3796
3797         * src/support/abort.C: new file
3798
3799         * src/support/kill.C: new file
3800
3801         * src/support/lyxlib.h: moved all the functions in this file
3802         insede struct lyx. Added also kill and abort to this struct. This
3803         is a way to avoid the "kill is not defined in <csignal>", we make
3804         C++ wrappers for functions that are not ANSI C or ANSI C++.
3805
3806         * src/support/lyxsum.C (sum): use #ifdef MODERN_STL_STREAMS
3807         instead of #if __GLIBCPP__. Since lyxsum is now put inside struct
3808         lyx it has been renamed to sum.
3809
3810 2000-01-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3811
3812         * src/text.C: add using directives for std::min and std::max.
3813
3814 2000-01-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3815
3816         * src/texrow.C (getIdFromRow): actually return something useful in
3817         id and pos. Hopefully fixes the bug with positionning of errorbox
3818         insets. 
3819
3820         * src/lyx_main.C (easyParse): output an error and exit if an
3821         incorrect command line option has been given.
3822
3823         * src/spellchecker.C (ispell_check_word): document a memory leak.
3824
3825         * src/bufferlist.C (write): fix mismatched allocation/deletion,
3826         where a "struct utimbuf" is allocated with "new" and deleted with
3827         "delete[]". 
3828
3829 2000-01-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
3830
3831         * src/text2.C (CutSelection): don't delete double spaces.
3832         (PasteSelection): ditto
3833         (CopySelection): ditto
3834         
3835         * src/text.C (Backspace): don't delete double spaces.
3836
3837         * src/lyxlex.C (next): fix a bug that were only present with
3838         conformant std::istream::get to read comment lines, use
3839         std::istream::getline instead. This seems to fix the problem.
3840
3841 2000-01-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
3842
3843         * src/text2.C (DeleteEmptyParagraphMechanism): fix for the "not
3844         allowed to insert space before space" editing problem. Please read
3845         commends at the beginning of the function. Comments about usage
3846         are very welcome.
3847
3848         * src/text.C (InsertChar): fix for the "not allowed to insert
3849         space before space" editing problem.
3850
3851         * src/text2.C (DeleteEmptyParagraphMechanism): when
3852         IsEmptyTableRow can only return false this last "else if" will
3853         always be a no-op. Commented out.
3854
3855         * src/text.C (RedoParagraph): As far as I can understand tmp
3856         cursor is not really needed.
3857
3858         * src/lyxtext.[Ch] (IsEmptyTableCell): commented out. As used at
3859         present it could only return false anyway. 
3860         (several functions): Did something not so smart...added a const
3861         specifier on a lot of methods.
3862         
3863         * src/paragraph.C (BreakParagraph): removed the tmp->text.reserve
3864         and add a tmp->text.resize. The LyXParagraph constructor does the
3865         resize for us.
3866         (BreakParagraphConservative): ditto
3867
3868         * src/support/path.h (Path): add a define so that the wrong usage
3869         "Path("/tmp") will be flagged as a compilation error:
3870         "`unnamed_Path' undeclared (first use this function)"
3871
3872 2000-01-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3873
3874         * config/lyxinclude.m4 (LYX_FUNC_PUTENV_ARGTYPE): fix the macro,
3875         which was bogus for several reasons.
3876
3877         * src/LaTeX.C (scanAux): fix the regular expression used to scan
3878         .aux files. 
3879         (runBibTeX): ditto.
3880
3881         * autogen.sh: do not use "type -path" (what's that anyway?).
3882
3883         * src/support/filetools.C (findtexfile): remove extraneous space
3884         which caused a kpsewhich warning (at least with kpathsea version
3885         3.0). 
3886
3887 2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
3888
3889         * src/mathed/Makefile.am (noinst_LTLIBRARIES): use .la
3890
3891         * src/insets/Makefile.am (noinst_LTLIBRARIES): use .la
3892
3893         * src/Makefile.am (lyx_DEPENDENCIES): switch back to .la libs
3894
3895 2000-01-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3896
3897         * src/paragraph.C (BreakParagraph): do not reserve space on text
3898         if we don't need to (otherwise, if pos_end < pos, we end up
3899         reserving huge amounts of memory due to bad unsigned karma).
3900         (BreakParagraphConservative): ditto, although I have not seen
3901         evidence the bug can happen here.
3902
3903         * src/lyxparagraph.h: add a using std::list.
3904
3905 2000-01-11  Juergen Vigna  <jug@sad.it>
3906
3907         * src/menus.C (MenuDocu): output an Alert if the documentation-file
3908         could not be found.
3909
3910 2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
3911
3912         * src/vc-backend.C (doVCCommand): change to be static and take one
3913         more parameter: the path to chdir too be fore executing the command.
3914         (retrive): new function equiv to "co -r"
3915
3916         * src/bufferlist.C (loadLyXFile): implement the missing parts if
3917         file_not_found_hook is true.
3918
3919         * src/lyxvc.C (file_not_found_hook): implement file_not_found_hook.
3920
3921         * src/support/filetools.C (IsFileWriteable): use FileInfo to check
3922         if a file is readwrite,readonly...anything else.
3923
3924 2000-01-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
3925
3926         * src/lyx_cb.C (MakeLaTeXOutput): name change from MakeDVIOutput
3927         (CreatePostscript): name change from MenuRunDVIPS (or something)
3928         (PreviewPostscript): name change from MenuPreviewPS
3929         (PreviewDVI): name change from MenuPreviewDVI
3930
3931         * lib/lyxrc.example: added \pdflatex_command, \pdf_mode,
3932         \view_pdf_command., \pdf_to_ps_command
3933
3934         * lib/configure.m4: added search for PDF viewer, and search for
3935         PDF to PS converter. 
3936         (lyxrc.defaults output): add \pdflatex_command,
3937         \view_pdf_command and \pdf_to_ps_command.
3938
3939         * src/lyx_cb.C (MenuPreviewDVI): renamed from MenuPreview.
3940
3941         * src/bufferlist.C (write): we don't use blocksize for anything so
3942         I removed it.
3943
3944 2000-01-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3945
3946         * src/support/block.h: disable operator T* (), since it causes
3947         problems with both compilers I tried. See comments in the file.
3948
3949         * lib/reLyX/configure.in: do not define LYX_DIR. support flag
3950         --with-lyxname. 
3951
3952         * lib/reLyX/reLyX.in: change LYX_DIR to pkgdatadir; change env.
3953         variable LYX_DIR_10x to LYX_DIR_11x.
3954
3955         * src/Makefile.am: replace variable LYX_DIR with pkgdatadir.
3956
3957         * INSTALL: document --with-lyxname.
3958         * NEWS: ditto.
3959
3960         * configure.in: new configure flag --with-lyxname which allows to
3961         choose the name under which lyx is installed. Default is "lyx", of
3962         course. It used to be possible to do this with --program-suffix,
3963         but the later has in fact a different meaning for autoconf.
3964
3965         * src/support/lstrings.h (lstrchr): reformat a bit.
3966
3967         * src/lyxlex.h: include LIstream.h, for Sun CC this time.
3968         * src/mathed/math_defs.h: ditto.
3969
3970 2000-01-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
3971
3972         * src/lyxrc.[Ch]: New tag and variable "\make_backup". Defaults to
3973         true, decides if we create a backup file or not when saving. New
3974         tag and variable \pdf_mode, defaults to false. New tag and
3975         variable \pdflatex_command, defaults to pdflatex. New tag and
3976         variable \view_pdf_command, defaults to xpdf. New tag and variable
3977         \pdf_to_ps_command, defaults to pdf2ps.
3978
3979 2000-01-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
3980
3981         * src/bufferlist.C (close): don't call insetUnlock if the buffer
3982         does not have a BufferView.
3983         (unlockInset): ditto + don't access the_locking_inset if the
3984         buffer does not have a BufferView.
3985
3986         * src/LyXView.C (KeyPressMask_raw_callback): add a XSync in
3987         certain circumstances so that we don't continue a keyboard
3988         operation long after the key was released. Try f.ex. to load a
3989         large document, press PageDown for some seconds and then release
3990         it. Before this change the document would contine to scroll for
3991         some time, with this change it stops imidiatly.
3992
3993         * src/support/block.h: don't allocate more space than needed. As
3994         long as we don't try to write to the arr[x] in a array_type arr[x]
3995         it is perfectly ok. (if you write to it you might segfault).
3996         added operator value_type*() so that is possible to pass the array
3997         to functions expecting a C-pointer.
3998
3999         * lib/Makefile.am (dist-hook): don't fail completely if unable to
4000         cvs.
4001
4002         * intl/*: updated to gettext 0.10.35, tried to add our own
4003         required modifications. Please verify.
4004
4005         * po/*: updated to gettext 0.10.35, tried to add our own required
4006         modifications. Please verify.
4007         
4008         * src/support/lstrings.C (tostr): go at fixing the problem with
4009         cxx and stringstream. When stringstream is used return
4010         oss.str().c_str() so that problems with lyxstring and basic_string
4011         are avoided. Note that the best solution would be for cxx to use
4012         basic_string all the way, but it is not conformant yet. (it seems)
4013
4014         * src/lyx_cb.C + other files: moved several global functions to
4015         class BufferView, some have been moved to BufferView.[Ch] others
4016         are still located in lyx_cb.C. Code changes because of this. (part
4017         of "get rid of current_view project".)
4018
4019         * src/buffer.C + other files: moved several Buffer functions to
4020         class BufferView, the functions are still present in buffer.C.
4021         Code changes because of this.
4022
4023         * config/lcmessage.m4: updated to most recent. used when creating
4024         acinclude.m4.
4025
4026         * config/progtest.m4: updated to most recent. used when creating
4027         acinclude.m4.
4028         
4029         * config/gettext.m4: updated to most recent. applied patch for
4030         tmplinguas.
4031
4032         * config/gettext.m4.patch: new file that shows what changes we
4033         have done to the local copy of gettext.m4.
4034
4035         * config/libtool.m4: new file, used in creation of acinclude.m4
4036
4037         * config/lyxinclude.m4: new file, this is the lyx created m4
4038         macros, used in making acinclude.m4.
4039         
4040         * autogen.sh: GNU m4 discovered as a separate task not as part of
4041         the lib/configure creation. 
4042         Generate acinlucde from files in config. Actually cat
4043         lyxinclude.m4, libtool.m4 and gettext.m4 together. This makes it
4044         easier to upgrade .m4 files that really are external.
4045
4046         * src/Spacing.h: moved using std::istringstream to right after
4047         <sstream>. This should fix the problem seen with some compilers.
4048
4049 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
4050
4051         * src/lyx_cb.C: began some work to remove the dependency a lot of
4052         functions have on BufferView::text, even if not really needed.
4053         (GetCurrentTextClass): removed this func, it only hid the
4054         current_view. 
4055
4056         * src/Makefile.am (lyx_DEPENDENCIES): use support/libsupport.la I
4057         forgot this in last commit.
4058
4059         * src/Bullet.C (bulletEntry): use static char const *[] for the
4060         tables, becuase of this the return arg had to change to string.
4061         (bulletSize): ditto
4062         (~Bullet): removed unneeded destructor
4063
4064         * src/BufferView.C (beforeChange): moved from lyx_cb.C
4065         (insetSleep): moved from Buffer
4066         (insetWakeup): moved from Buffer
4067         (insetUnlock): moved from Buffer
4068
4069         * buffer.[Ch], BufferView.[Ch] + others: moved the_locking_inset
4070         from Buffer to BufferView.
4071         
4072         * acinclude.m4: include libtool.m4 from libtool 1.3.4.
4073
4074         * config/ltmain.sh: updated to version 1.3.4 of libtool
4075
4076         * config/ltconfig: updated to version 1.3.4 of libtool
4077
4078 2000-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4079
4080
4081         * src/buffer.C (pop_tag): fix a dubious for() loop initialization.
4082         Did I get that right?
4083
4084         * src/lyxlex.h: add a "using" directive or two.
4085         * src/Spacing.h: ditto.
4086         * src/insets/figinset.C: ditto.
4087         * src/support/filetools.C: ditto.
4088         * src/support/lstrings.C: ditto.
4089         * src/BufferView.C: ditto.
4090         * src/bufferlist.C: ditto.
4091         * src/lyx_cb.C: ditto.
4092         * src/lyxlex.C: ditto.
4093
4094         * NEWS: add some changes for 1.1.4.
4095         
4096 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
4097
4098         * src/BufferView.C: first go at a TextCache to speed up switching
4099         between documents.
4100
4101 2000-01-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4102
4103         * lib/examples/ItemizeBullets.lyx: update from Tino Meinen. 
4104         * lib/examples/nl_voorbeeld_ruw.lyx: ditto.
4105         * lib/examples/nl_voorbeeld_verlyxt.lyx: ditto.
4106         * lib/examples/nl_opsommingstekens.lyx: new translation from Tino
4107         Meinen.
4108         
4109         * src/mathed/math_defs.h (MathedRowSt): make sure that all
4110         members of the struct are correctly initialized to 0 (detected by
4111         purify) 
4112         * src/lyxrc.C (LyXRC): ditto for print_adapt_output.
4113         * src/insets/figinset.C (InsetFig): ditto for pswid and pshgh.
4114
4115         * src/insets/figinset.C (sigchldchecker): use "delete" to free a
4116         pidwait, since it was allocated with "new". This was potentially
4117         very bad. Thanks to Michael Schmitt for running purify for us.
4118
4119
4120 2000-01-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4121
4122         * src/lyx_gui_misc.C: add a 'using std::make_pair;' statement.
4123
4124         * src/lyx_gui_misc.h: add a 'using std::pair;' statement.
4125
4126 1999-12-30  Allan Rae  <rae@lyx.org>
4127
4128         * lib/templates/IEEEtran.lyx: minor change
4129
4130         * src/lyxvc.C (registrer, checkIn), src/lyx_cb.C (MenuInsertLabel),
4131         src/mathed/formula.C (LocalDispatch): askForText changes
4132
4133         * src/lyx_gui_misc.[Ch] (askForText): now returns a bool also so we 
4134         know when a user has cancelled input. Fixes annoying problems with
4135         inserting labels and version control.
4136
4137 1999-12-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
4138
4139         * src/support/lstrings.C (tostr): rewritten to use strstream and
4140         stringstream
4141
4142 1999-12-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
4143
4144         * src/support/filetools.C (IsFileWriteable): use fstream to check
4145         (IsDirWriteable): use fileinfo to check
4146
4147         * src/support/filetools.h (FilePtr): whole class deleted
4148
4149         * src/insets/figinset.C (GetPSSizes): rewritten to use ifstream.
4150
4151         * src/lyxparagraph.h (readSimpleWholeFile): make arg istream
4152
4153         * src/lyx_cb.C (InsertAsciiFile): use ifstream instead of FilePtr
4154
4155         * src/bufferlist.C (write): use ifstream and ofstream instead of
4156         FILE*
4157
4158         * src/Spacing.h: use istrstream instead of sscanf
4159
4160         * src/mathed/math_defs.h: change first arg to istream from FILE*
4161
4162         * src/buffer.C (insertLyXFile): use ifstream instead of FilePtr
4163
4164         * src/mathed/math_parser.C: have yyis to be an istream 
4165         (LexGetArg): use istream (yyis)
4166         (yylex): ditto
4167         (mathed_parse): ditto
4168         (mathed_parser_file): first arg istream instead of FILE*, set yyis
4169
4170         * src/mathed/formula.C (Read): rewritten to use istream
4171
4172         * src/mathed/formulamacro.C (Read): rewritten to use istream
4173
4174         * src/lyxlex.h (~LyXLex): deleted desturctor 
4175         (getStream): new function, returns an istream
4176         (getFile): deleted funtion
4177         (IsOK): return is.good();
4178
4179         * src/lyxlex.C (LyXLex): delete file and owns_file
4180         (setFile): open an filebuf and assign that to a istream instead of
4181         using FILE*
4182         (setStream): new function, takes an istream as arg. 
4183         (setFile): deleted function
4184         (EatLine): rewritten us use istream instead of FILE*
4185         (next): ditto
4186         (nextToken): ditto
4187
4188         * src/table.C (LyXTable): use istream instead of FILE*
4189         (Read): rewritten to take an istream instead of FILE*
4190
4191 1999-12-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4192
4193         * src/buffer.C (Dispatch): remove an extraneous break statement.
4194
4195         * src/support/filetools.C (QuoteName): change to do simple
4196         'quoting'. More work is necessary. Also changed to do nothing
4197         under emx (needs fix too).
4198         (Putenv): Cast the argument of putenv() with PUTENV_TYPE_ARG.
4199
4200         * acinclude.m4 (STL_STRING_FWD_H_LOCATION): add the comment for
4201         config.h.in to the AC_DEFINE_UNQUOTED() call.
4202         (LYX_FUNC_PUTENV_ARGTYPE): new macro. Checks whether putenv()
4203         needs char * as argument (because Solaris 7 declares it like
4204         that). 
4205
4206         * acconfig.h: remove placeholder for STL_STRING_FWD_H_LOCATION;
4207         remove definition of BZERO.
4208
4209 1999-12-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
4210
4211         * src/support/LRegex.C: include <regex.h> if HAVE_REGEX_H is
4212         defined, "lyxregex.h" if not.
4213
4214         * src/support/Makefile.am (noinst_LTLIBRARIES): changed from
4215         pkglib_ to noinst_
4216         (REGEX): new variable that is set to regex.c lyxregex.h when
4217         AM_CONDITIONAL USE_REGEX is set.
4218         (libsupport_la_SOURCES): add $(REGEX)
4219
4220         * src/mathed/Makefile.am (noinst_LTLIBRARIES): changed from
4221         pkglib_ to noinst_
4222
4223         * src/insets/Makefile.am (noinst_LTLIBRARIES): changed from
4224         pkglib_ to noinst_
4225
4226         * configure.in: add call to LYX_REGEX 
4227
4228         * acinclude.m4 (LYX_REGEX): checks if we need to use the included
4229         regex or not. Uses a a AM_CONDITIONAL to decide what to compile. 
4230
4231 1999-12-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4232
4233         * lib/bind/fi_menus.bind: new file, from
4234         pauli.virtanen@saunalahti.fi. 
4235
4236         * src/buffer.C (getBibkeyList): pass the parameter delim to
4237         InsetInclude::getKeys and InsetBibtex::getKeys.
4238
4239         * src/insets/insetinclude.[Ch] (getKeys): add parameter delim, which
4240         is passed to Buffer::getBibkeyList
4241         
4242         * src/insets/insetbib.[Ch] (getKeys): add parameter delim, and use it
4243         instead of the hardcoded comma.
4244
4245         * src/insets/insetbib.C (getKeys): make sure that there are not
4246         leading blanks in bibtex keys. Normal latex does not care, but
4247         harvard.sty seems to dislike blanks at the beginning of citation
4248         keys. In particular, the retturn value of the function is
4249
4250         * INSTALL: make it clear that libstdc++ is needed and that gcc
4251         2.7.x probably does not work.
4252
4253         * src/support/filetools.C (findtexfile): make debug message go to
4254         the LATEX channel
4255         * src/insets/insetbib.C (getKeys): ditto
4256
4257         * src/debug.C (showTags): make sure that the output is correctly
4258         aligned. 
4259
4260         * configure.in: add a comment for TWO_COLOR_ICON define.
4261
4262         * acconfig.h: remove all the entries that already defined in
4263         configure.in or acinclude.m4.
4264
4265         * src/buffer.C (makeLaTeXFile): headers of latex file also changed
4266         to avoid user name, date and copyright.
4267
4268 1999-12-21  Juergen Vigna  <jug@sad.it>
4269
4270         * src/table.C (Read): Now read bogus row format informations
4271                 if the format is < 5 so that afterwards the table can
4272                 be read by lyx but without any format-info. Fixed the
4273                 crash we experienced when not doing this.
4274
4275 1999-12-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
4276
4277         * src/text2.C (RedoHeightOfParagraph): rename arg cursor -> cur
4278         (RedoDrawingOfParagraph): ditto
4279         (RedoParagraphs): ditto
4280         (RemoveTableRow): ditto
4281
4282         * src/text.C (Fill): rename arg paperwidth -> paper_width
4283
4284         * src/buffer.C (insertLyXFile): rename var filename -> fname
4285         (writeFile): rename arg filename -> fname
4286         (writeFileAscii): ditto
4287         (makeLaTeXFile): ditto
4288         (makeLinuxDocFile): ditto
4289         (makeDocBookFile): ditto
4290
4291         * src/LaTeX.C (runMakeIndex): change arg name from file -> f
4292         (runBibTeX): ditto
4293
4294         * src/Makefile.am (lyx_SOURCES): add bmtable.c and remove bmtable.C
4295
4296         * src/bmtable.h: add extern "C" on this file when __cplusplus is
4297         defined.
4298
4299         * src/bmtable.c: new file, a C'ified copy of bmtable.C, this is
4300         compiled by a C compiler not C++. 
4301
4302         * src/layout.h (LyXTextClass): added typedef for const_iterator
4303         (LyXTextClassList): added typedef for const_iterator + member
4304         functions begin and end.
4305
4306         * src/LyXView.C (UpdateDocumentClassChoice): rewritten to use
4307         iterators to fill the choice_class.
4308         (updateLayoutChoice): rewritten to use iterators to fill the
4309         layoutlist in the toolbar.
4310
4311         * src/BufferView.h (BufferView::work_area_width): removed unused
4312         variable. 
4313
4314         * src/lyx_gui_misc.C (WarnReadonly): added string parameter 'file'
4315
4316         * src/buffer.C (sgmlOpenTag): drop the use of the static space array
4317         (sgmlCloseTag): ditto
4318
4319         * src/support/lstrings.h: return type of countChar changed to
4320         unsigned char.
4321
4322         * src/support/lstrings.C (countChar): use HAVE_STD_COUNT to choose
4323         what version of this func to use. Also made to return unsigned int.
4324
4325         * configure.in: call LYX_STD_COUNT 
4326
4327         * acinclude.m4 (LYX_STD_COUNT): new function checks for a standard
4328         conforming std::count. 
4329
4330 1999-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4331
4332         * src/mathed/math_draw.C (Draw, Metrics): fix a bug where a prime
4333         and a subscript would give bad display (patch from Dekel Tsur
4334         <dekel@math.tau.ac.il>). 
4335
4336         * src/insets/insetlatexaccent.h: make sure ACCENT_TYPES is public. 
4337
4338         * src/spellchecker.C (create_ispell_pipe): use a const_cast to
4339         please sun CC.
4340
4341         * src/chset.h: add a few 'using' directives
4342
4343         * src/lyxfunc.C (Dispatch): check that LFUN_UNKNOWN_ACTION is not
4344         triggered when no buffer is active
4345
4346         * src/layout.C: removed `break' after `return' in switch(), since
4347         it is unreachable.
4348
4349         * src/lyx_main.C (init): make sure LyX can be ran in place even
4350         when libtool has done its magic with shared libraries. Fix the
4351         test for the case when the system directory has not been found.
4352
4353         * src/lyx_cb.C (MenuMakeLaTeX): make sure to keep the full path
4354         name for the latex file.
4355         (MenuMakeHTML): ditto
4356
4357         * src/buffer.h: add an optional boolean argument, which is passed
4358         to ChangeExtension.
4359
4360 1999-12-20  Allan Rae  <rae@lyx.org>
4361
4362         * lib/templates/IEEEtran.lyx: small correction and update.
4363
4364         * configure.in: Attempted to use LYX_PATH_HEADER
4365
4366         * src/stl_string_fwd.h: Don't need HAVE_STL_STRING_FWD_H anymore
4367
4368         * acconfig.h, acinclude.m4 (LYX_STL_STRING_FWD): totally revised after
4369         input from JMarc.  Now use preprocessor to find the header.
4370         Also stopped making HAVE_STL_STRING_FWD_H and extended the comments.
4371         (LYX_PATH_HEADER): My, so far, failed attempt to generalize
4372         LYX_STL_STRING_FWD.  See comments in file.      
4373
4374 1999-12-19  Asger Alstrup Nielsen  <alstrup@diku.dk>
4375
4376         * The global MiniBuffer * minibuffer variable is dead.
4377         
4378         * The global FD_form_main * fd_form_main variable is dead.
4379
4380 1999-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4381
4382         * src/toolbar.C (set): condition #warning on WITH_WARNINGS
4383
4384         * src/table.h: add the LOstream.h header
4385         * src/debug.h: ditto
4386         
4387         * src/LyXAction.h: change the explaination of the ReadOnly
4388         attribute: is indicates that the function _can_ be used.
4389
4390         * src/LyXAction.C (init): find-replace _can_ be used in read-only
4391         mode. 
4392
4393 1999-12-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4394
4395         * src/lyxfont.C (ascent): Make sure that char is _always_ used as
4396         unsigned. 
4397         (descent): ditto
4398         (lbearing): ditto
4399         (rbearing): ditto
4400
4401         * src/paragraph.C (GetWord): assert on pos>=0
4402         (GetChar): ditto
4403         
4404         * src/support/lyxstring.C: condition the use of an invariant on
4405         ENABLE_ASSERTIONS 
4406         * src/support/lyxstring.h: ditto
4407
4408         * src/Bullet.[Ch]: replace DEBUG_AS_DEFAULT by ENABLE_ASSERTIONS.
4409         Use LAssert.h instead of plain assert().
4410
4411         * src/support/lstrings.h: add LAssert.h, in case it is needed.
4412
4413         * src/lyxfunc.C: do not include LAssert.h, it is not used.
4414         * src/support/filetools.C: ditto
4415
4416         * src/support/LAssert.h: make Assert a no-op if ENABLE_ASSERTIONS
4417         is not defined. 
4418
4419         * INSTALL: document the new configure flags
4420         
4421         * configure.in: suppress --with-debug; add --enable-assertions
4422
4423         * acinclude.m4: various changes in alignment of help strings.
4424
4425 1999-12-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
4426
4427         * src/kbmap.C: commented out the use of the hash map in kb_map,
4428         beginning of movement to a stl::container. 
4429
4430         * several files: removed code that was not in effect when
4431         MOVE_TEXT was defined.
4432         
4433         * lib/kbd/iso8859-1.cdef: removed bogus backslashes. Backslashes
4434         for escaping should not be used. We can discuss if the string
4435         should be enclosed in f.ex. [] instead of "".
4436
4437         * src/trans_mgr.C (insert): use the new returned value from
4438         encodeString to get deadkeys and keymaps done correctly.
4439
4440         * src/chset.C (encodeString): changed to return a pair, to tell
4441         what to use if we know the string.
4442
4443         * src/lyxscreen.h (fillArc): new function.
4444
4445         * src/FontInfo.C (resize): rewritten to use more std::string like
4446         structore, especially string::replace.
4447
4448         * src/insets/insetlatexaccent.C (Draw): use fillArc for the
4449         approp. accents.
4450
4451         * configure.in (chmod +x some scripts): remove config/gcc-hack 
4452
4453 1999-12-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4454
4455         * src/buffer.C (writeFile): change once again the top comment in a
4456         .lyx file to point to www.lyx.org and to use LYX_DOCVERSION
4457         instead of an hardcoded version number.
4458         (makeDocBookFile): ditto
4459
4460         * src/version.h: add new define LYX_DOCVERSION
4461
4462         * po/de.po: update from Pit Sütterlin
4463         * lib/bind/de_menus.bind: ditto.
4464         
4465         * src/lyxfunc.C (Dispatch): call MenuExport()
4466         * src/buffer.C (Dispatch): ditto
4467
4468         * src/lyx_cb.C (MenuMakeHTML): new function, moved from
4469         LyXFunc::Dispatch().
4470         (MenuExport): new function, moved from
4471         LyXFunc::Dispatch().
4472
4473         * src/trans_mgr.C (insert): small cleanup
4474         * src/chset.C (loadFile): ditto
4475
4476         * lib/kbd/iso8859-1.cdef: add missing backslashes
4477
4478 1999-12-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
4479
4480         * src/insets/insetlatexaccent.C (Lbearing): new function, used to
4481         help with placing the manually drawn accents better.
4482         (Rbearing): ditto
4483         (Draw): x2 and hg changed to float to minimize rounding errors and
4484         help place the accents better.
4485
4486         * src/lyxfont.C (ascent): fixed faulty static_cast, casting from
4487         unsigned short to char is just wrong...cast the char to unsigned
4488         char instead so that the two values can compare sanely. This
4489         should also make the display of insetlatexaccents better and
4490         perhaps also some other insets.
4491         (descent): ditto
4492         (lbearing): new function
4493         (rbearing): ditto
4494
4495 1999-12-15  Allan Rae  <rae@lyx.org>
4496
4497         * src/stl_string_fwd.h, src/Makefile.am (lyx_SOURCES):  added new
4498         header that provides a wrapper around the very annoying SGI STL header
4499         of the same name.
4500
4501         * src/support/lyxstring.C, src/LString.h:
4502         removed old SGI-STL-compatability attempts.
4503
4504         * configure.in: Use LYX_STL_STRING_FWD.
4505
4506         * acinclude.m4 (LYX_STL_STRING_FWD), acconfig.h: Test if 
4507         stl_string_fwd.h is around and try to determine it's location.
4508         Major improvement over previous SGI STL 3.2 compatability.
4509         Three small problems remain with this function due to my zero
4510         knowledge of autoconf.  JMarc and lgb see the comments in the code.
4511
4512 1999-12-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4513
4514         * src/broken_const.h, config/hack-gcc, config/README: removed
4515         
4516         * configure.in: remove --with-gcc-hack option; do not call
4517         LYX_CXX_STL_STACK 
4518
4519         * INSTALL: remove documentation of --with-broken-const and
4520         --with-gcc-hack
4521         
4522         * acconfig.h: remove all trace of BROKEN_CONST define
4523
4524         * src/buffer.C (makeDocBookFile): update version number in output
4525         file. 
4526         (SimpleDocBookOnePar): fix an assert when trying to a character
4527         access beyond string length
4528         [Patch from Jose']
4529
4530 1999-12-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4531
4532         * po/de.po: fix the Export menu
4533
4534         * lyx.man: update the description of -dbg
4535
4536         * src/lyx_main.C (setDebuggingLevel): call Debug::showLevel()
4537         (commandLineHelp): updated
4538         (easyParse): show list of available debug levels if -dbg is passed
4539         without argument.
4540
4541         * src/Makefile.am: add debug.C
4542
4543         * src/debug.h: moved some code to debug.C
4544
4545         * src/debug.C: new file. Contains code to set and show debug
4546         level. 
4547
4548         * src/layout.C: remove 'break' after 'continue' in switch
4549         statements, since these cannot be reached.
4550
4551 1999-12-13  Allan Rae  <rae@lyx.org>
4552
4553         * src/mathed/math_hash.C (math_hash): renamed from hash(), name clash.
4554         (in_word_set): hash() -> math_hash()
4555
4556         * src/LString.h: Used USING_EXCEPTIONS in SGI STL-3.2 support 
4557
4558         * acconfig.h: Added a test for whether we are using exceptions in the
4559         current compilation run. If so USING_EXCEPTIONS is defined.
4560
4561         * config.in: Check for existance of stl_string_fwd.h
4562         * src/LString.h: If compiling --with-included-string and SGI's
4563         STL version 3.2 is present (see above test) we need to block their
4564         forward declaration of string and supply a __get_c_string().
4565         However, it turns out this is only necessary if compiling with
4566         exceptions enabled so I've a bit more to add yet.
4567
4568         * src/insets/figinset.[Ch], src/insets/insetinclude.C,
4569           src/insets/insetloa.C, src/layout.h, src/lyxparagraph.h,
4570           src/support/LRegex.h, src/undo.h:
4571         Shuffle the order of the included files a little to ensure that
4572         LString.h gets included before anything that includes stl_string_fwd.h
4573
4574         *  src/support/lyxstring.C: We need to #include LString.h instead of
4575         lyxstring.h to get the necessary definition of __get_c_string.
4576         (__get_c_string): New function.  This is defined static just like SGI's
4577         although why they need to do this I'm not sure.  Perhaps it should be
4578         in lstrings.C instead.
4579
4580         * lib/templates/IEEEtran.lyx:  New template file.
4581
4582 1999-12-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
4583         
4584         * Makefile.in.in (MKINSTALLDIRS): use $(srcdir)/@MKINSTALLDIRS@
4585         * intl/Makefile.in (MKINSTALLDIRS):  ditto
4586
4587         * src/LyXAction.C (init): changed to hold the LFUN data in a
4588         automatic array in stead of in callso to newFunc, this speeds up
4589         compilation a lot. Also all the memory used by the array is
4590         returned when the init is completed.
4591
4592         * a lot of files: compiled with -Wold-style-cast, changed most of
4593         the reported offenders to C++ style casts. Did not change the
4594         offenders in C files. 
4595
4596         * src/trans.h (Match): change argument type to unsigned int.
4597
4598         * src/support/DebugStream.C: fix some types on the streambufs so
4599         that it works on a conforming implementation.
4600
4601 1999-12-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4602
4603         * lib/examples/example_{raw,lyxified}.lyx: fix embarassing sentence.
4604
4605         * src/support/lyxstring.C: remove the inline added earlier since
4606         they cause a bunch of unsatisfied symbols when linking with dec
4607         cxx. Cxx likes to have the body of inlines at the place where they
4608         are declared.
4609
4610         * src/trans.C (AddDeadkey): add an 'unsigned char' cast to avoid
4611         accessing negative bounds in array. This fixes the crash when
4612         inserting accented characters.
4613         * src/trans.h (Match): ditto
4614
4615         * src/buffer.C (Dispatch): since this is a void, it should not try
4616         to return anything...
4617
4618 1999-12-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
4619
4620         * src/buffer.h: removed the two friends from Buffer. Some changes
4621         because of this. Buffer::getFileName and Buffer::setFileName
4622         renamed to Buffer::fileName() and Buffer::fileName(...).
4623
4624 1999-12-09  Lars Gullik Bjønnes <larsbj@lyx.org>
4625
4626         * buffer.[Ch], BufferView.[Ch] + other files: Moved Buffer::text
4627         and Buffer::update(short) to BufferView. This move is currently
4628         controlled by a define MOVE_TEXT, this will be removed when all
4629         shows to be ok. This move paves the way for better separation
4630         between buffer contents and buffer view. One side effect is that
4631         the BufferView needs a rebreak when swiching buffers, if we want
4632         to avoid this we can add a cache that holds pointers to LyXText's
4633         that is not currently in use. 
4634
4635         * buffer.[Ch], lyx_main.C: small changes to the "-export" patch by
4636         André Pönitz. 
4637
4638 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
4639
4640         * buffer.[Ch]: Dispatch() - new dispatcher on the buffer level
4641
4642         * lyx_main.C: new command line option -x (or --execute) and
4643           -e (or --export). Now direct conversion from .lyx to .tex
4644           (.dvi, .ps, ...) is possible  ('lyx file.lyx --export latex')
4645           Unfortunately, X is still needed and the GUI pops up during the
4646           process...
4647
4648 1999-12-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4649
4650         * src/Spacing.C: add a using directive to bring stream stuff into
4651         normal namespace.
4652         * src/paragraph.C: ditto
4653         * src/buffer.C: ditto
4654
4655         * NEWS: updated a bit the new features of 1.1.3 (took a few things
4656         from Lars' announcement).
4657
4658         * lib/examples/nl_voorbeeld_{ruw,verlyxt}.lyx: new tutorial
4659         example files from Tino Meinen.
4660         
4661 1999-12-06  Allan Rae  <rae@lyx.org>
4662
4663         * src/LaTeX.C (runBibTeX): fix typo in accessing submatch pair.
4664
4665 1999-12-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
4666
4667         * src/support/lyxstring.C: added a lot of inline for no good
4668         reason
4669         
4670         * src/lyxfont.[Ch]: removed latexWriteStartChanges, and
4671         latexWriteEndChanges, they were not used.
4672         
4673         * src/layout.h (operator<<): output operator for PageSides
4674
4675         * src/mathed/math_iter.C (my_memcpy): slightly changed.
4676
4677         * some example files: loaded in LyX 1.0.4 and saved again to update
4678         certain constructs (table format) 
4679
4680         * a lot of files: did the change to use fstream/iostream for all
4681         writing of files. Done with a close look at Andre Poenitz's patch.
4682
4683         * some files: whitespace changes.
4684         
4685 1999-12-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4686
4687         * src/mathed/math_iter.C (my_memcpy): new function. Since the
4688         built-in memcpy() is broken on egcs and gcc 2.95 for alpha
4689         architecture, we provide our own. It is used unconditionnally, but
4690         I do not think this is a performance problem. Thanks to Angus
4691         Leeming <a.leeming@ic.ac.uk> for the code (and again to Michal
4692         Jaegermann <michal@ellpspace.math.ualberta.ca> for finding it the
4693         first time).
4694         (GetInset): use my_memcpy.
4695         (Insert): ditto
4696         (Copy): ditto
4697
4698         * lib/chkconfig.ltx: some cleanup of the latex code. I am not sure
4699         it is easier to understand, but it uses less TeX-only constructs now.
4700
4701         * acinclude.m4 (LYX_SEARCH_PROG): make it work when the PATH
4702         elements contain spaces
4703
4704         * lib/configure: regenerated
4705         
4706         * lib/configure.m4 (SEARCH_PROG): make it work when the PATH
4707         elements contain spaces; display the list of programs that are
4708         tried.
4709
4710         * autogen.sh: make sure lib/configure is executable
4711
4712         * lib/examples/*: rename the tutorial examples to begin with the
4713         two-letters language code.
4714
4715         * src/lyxfunc.C (getStatus): do not query current font if no
4716         buffer exists.
4717
4718         * src/lyx_cb.C (RunScript): use QuoteName
4719         (MenuRunDvips): ditto
4720         (PrintApplyCB): ditto
4721
4722         * src/support/filetools.[Ch] (QuoteName): new function. Add quotes
4723         around argument, so that it works well with the current shell.
4724         Does not work properly with OS/2 shells currently.
4725
4726         * src/LaTeXLog.C (ShowLatexLog): use Buffer::getLatexName
4727         * src/LyXSendto.C (SendtoApplyCB): ditto
4728         * src/lyxfunc.C (Dispatch): ditto
4729         * src/buffer.C (runLaTeX): ditto
4730         (runLiterate): ditto
4731         (buildProgram): ditto
4732         (runChktex): ditto
4733         * src/lyx_cb.C (RunScript): ditto
4734         (MenuMakeLaTeX): ditto
4735         
4736         * src/buffer.h (getLatexName): new method 
4737
4738         * src/support/filetools.C (MakeLatexName): renamed from SpaceLess
4739
4740 1999-12-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4741
4742         * images/sqrt.xpm: change name of the sqrt icon to sqrt_xpm.
4743         * src/mathed/math_panel.C (mathed_get_pixmap_from_icon): ditto
4744         (create_math_panel): ditto
4745
4746         * src/lyxfunc.C (getStatus): re-activate the code which gets
4747         current font and cursor; add test for export to html.
4748
4749         * src/lyxrc.C (read): remove unreachable break statements; add a
4750         few "using".
4751
4752         * src/bmtable.C (fl_set_bmtable_data): add a const_cast.
4753         
4754 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
4755
4756         * src/mathed/formula.C (LocalDispatch): fix small whitspace bug
4757         introduced by faulty regex.
4758         * src/buffer.C: ditto
4759         * src/lastfiles.C: ditto
4760         * src/paragraph.C: ditto
4761         * src/table.C: ditto
4762         * src/vspace.C: ditto
4763         * src/insets/figinset.C: ditto
4764         Note: most of these is absolutely harmless, except the one in
4765         src/mathed formula.C.
4766
4767 1999-11-30  Kayvan A. Sylvan  <kayvan@satyr.sylvan.com>
4768
4769         * src/ImportNoweb.C (documentclass): fixed bounds for substr
4770           operation, yielding correct results for the reLyX command.
4771
4772 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
4773
4774         * src/support/filetools.C (ExpandPath): removed an over eager
4775         Assert.
4776         (ReplaceEnvironmentPath): ditto
4777
4778         * src/toolbar.C (BubbleTimerCB): use C++ style casts. This clearly
4779         shows that we are doing something fishy in our code...
4780         (BubblePost): ditto
4781         (ToolbarCB): ditto
4782
4783         * src/lyxrc.C (read): use a double switch trick to get more help
4784         from the compiler. (the same trick is used in layout.C)
4785         (write): new function. opens a ofstream and pass that to output
4786         (output): new function, takes a ostream and writes the lyxrc
4787         elemts to it. uses a dummy switch to make sure no elements are
4788         forgotten. 
4789
4790         * src/lyxlex.h: added a struct pushpophelper for use in functions
4791         with more than one exit point.
4792
4793         * src/lyxlex.[Ch] (GetInteger): made it const
4794         (GetFloat): ditto
4795         (GetBool): ditto
4796
4797         * src/lyxfunc.C (Dispatch): added case for LFUN_SAVEPREFERENCES
4798
4799         * src/layout.[hC] : LayoutTags splitted into several enums, new
4800         methods created, better error handling cleaner use of lyxlex. Read
4801         the diff.
4802
4803         * src/bmtable.[Ch]: change some member prototypes because of the
4804         image const changes. 
4805
4806         * commandtags.h, src/LyXAction.C (init): new function:
4807         "preferences-save", saves the lyxrc entries into .lyx/preferences.
4808         This file is not read automatically but you can add \input
4809         preferences to your lyxrc if you want to. We need to discuss how
4810         to handle this. 
4811
4812         * src/LaTeX.C (runBibTeX): use regex to match for the needed lines
4813         in .aux, also remove .bib and .bst files from dependencies when
4814         running bibtex.
4815
4816         * src/BufferView.C, src/LyXView.C: add const_cast several places
4817         because of changes to images.
4818
4819         * lib/images/*: same change as for images/*
4820         
4821         * lib/lyxrc.example: Default for accept_compound is false not no.
4822
4823         * images/*: changed to be const, however I have som misgivings
4824         about this change so it might be changed back.
4825
4826 1999-11-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4827
4828         * lib/configure, po/POTFILES.in: regenerated
4829
4830         * autogen.sh: autogenerate lib/configure from lib/configure.m4
4831
4832         * config/lib_configure.m4: removed
4833         
4834         * lib/configure.m4: new file (was config/lib_configure.m4)
4835
4836         * configure.in: do not test for rtti, since we do not use it.
4837         
4838 1999-11-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
4839
4840         * src/support/lyxstring.C (lyxstring::Srep): Changed to use a
4841         doubling of allocated space scheme. This makes it faster for large
4842         strings end to use less memory for small strings. xtra rememoved. 
4843
4844         * src/insets/figinset.C (waitalarm): commented out.
4845         (GhostscriptMsg): use static_cast
4846         (GhostscriptMsg): use new instead of malloc to allocate memory for
4847         cmap. also delete the memory after use.
4848
4849         * src/lyx_cb.C (SetXtermCursor): made cursor_undefined a bool
4850
4851         * src/LaTeX.C (scanAux): new method. Scans the .aux file and looks
4852         for changes in bibtex database or style.
4853         (runBibTeX): remove all .bib and .bst files from dep before we
4854         begin. 
4855         (run): use scanAuc in when dep file already exist.
4856
4857         * src/DepTable.C (remove_files_with_extension): new method
4858         (exist): new method
4859
4860         * src/DepTable.[Ch]: made many of the methods const. 
4861
4862 1999-11-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4863
4864         * src/bufferparams.C: make sure that the default textclass is
4865         "article". It used to be the first one by description order, but
4866         now the first one is "docbook".
4867
4868         * src/lyx_main.C (setDebuggingLevel): change type of argument to
4869         string; call Debug::value.
4870         (easyParse): pass complete argument to setDebuggingLevel().
4871
4872         * src/debug.h (value): fix the code that parses debug levels.
4873
4874         * src/debug.h: add new debug type ACTION, reserved for LyXAction
4875         class.  
4876
4877         * src/LyXAction.C: use Debug::ACTION as debug channel.
4878
4879         * src/lyxlookup.C: make the debug statements go to Debug::KEY.
4880
4881         * NEWS: updated for the future 1.1.3 release.
4882
4883         * src/mathed/symbol_def.h: swap the definitions of \varepsilon and
4884         \epsilon. Now \epsilon shows as red text, and \varepsilon shows as
4885         it should. This is of course a controversial change (since many
4886         people will find that their lyx workscreen is suddenly full of
4887         red), but done for the sake of correctness.
4888
4889         * src/mathed/formulamacro.h, src/mathed/math_macro.[Ch],
4890           src/mathed/math_root.[Ch] (Clone): return a MathedInset*  
4891
4892         * src/insets/inseterror.h, src/insets/inseturl.h,
4893           src/insets/insetinfo.h, src/insets/figinset.h,
4894           src/mathed/formulamacro.h, src/mathed/math_macro.h
4895           (EditMessage): add a missing const and add _() to make sure that
4896         translation happens
4897
4898         * src/ImportNoweb.C, src/LyXAction.h, src/insets/figinset.C,
4899           src/insets/insetbib.C, src/support/filetools.C: add `using'
4900         directives for cxx.  
4901
4902         * src/lyxfunc.C (Dispatch): make sure nothing bad happens when
4903         doing 'Insert index of last word' at the beginning of a paragraph.
4904
4905 1999-11-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
4906
4907         * several files: white-space changes.
4908
4909         * src/mathed/formula.C: removed IsAlpha and IsDigit
4910
4911         * src/insets/insetbib.C (getKeys): use findtexfile to look for the
4912         .bib file. use a ifstream instead of FilePtr when parsing the .bib
4913         file for keys.
4914
4915         * src/insets/figinset.C (GetPSSizes): don't break when
4916         "EndComments" is seen. But break when a boundingbox is read.
4917
4918         * all classes inherited from Inset: return value of Clone
4919         changed back to Inset *.
4920
4921         * all classes inherited form MathInset: return value of Clone
4922         changed back to MathedInset *.
4923         
4924         * src/insets/figinset.C (runqueue): use a ofstream to output the
4925         gs/ps file. Might need some setpresicion or setw. However I can
4926         see no problem with the current code.
4927         (runqueue): use sleep instead of the alarm/signal code. I just
4928         can't see the difference.
4929
4930         * src/paragraph.C (LyXParagraph): reserve space in the new
4931         paragraph and resize the inserted paragraph to just fit.
4932
4933         * src/lyxfunc.h (operator|=): added operator for func_status.
4934
4935         * src/lyxfunc.C (MenuNew): use FileInfo instead of FilePtr to
4936         check for readable file.
4937
4938         * src/lyx_cb.C (MenuMakeLaTeX): use FileInfo instead of FilePtr to
4939         check for readable file.
4940         (MenuMakeLinuxDoc): ditto
4941         (MenuMakeDocBook): ditto
4942         (MenuMakeAscii): ditto
4943         (InsertAsciiFile): split the test for openable and readable
4944
4945         * src/bmtable.C (draw_bitmaptable): use
4946         fl_state[fl_get_vclass()].depth instead of DefualtScreen.
4947
4948         * src/LaTeX.C, src/support/filetools.[Ch]: moved do_popen and
4949         findtexfile from LaTeX to filetools.
4950         
4951         * src/ImportNoweb.C (documentclass): rewrote to use ifstream
4952         instead of FilePtr. Needs to be verified by a literate user.
4953
4954 1999-11-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4955
4956         * src/mathed/formula.[Ch] (GetCursorPos): add a missing 'const'.
4957         (EditMessage): likewise.
4958
4959         * src/paragraph.C (SimpleTeXSpecialChars): output ~ and ^
4960         respectively as \textasciitilde and \textasciicircum.
4961
4962 1999-11-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
4963
4964         * src/support/lyxstring.h: made the methods that take iterators
4965         use const_iterator.
4966
4967         * src/support/lstrings.C (countChar): use std::cound(itr, itr, val)
4968         (regexMatch): made is use the real regex class.
4969
4970         * src/support/Makefile.am: changed to use libtool
4971
4972         * src/support/.cvsignore: added *.lo, .libs and libsupport.la
4973
4974         * src/mathed/math_defs.h: made the mathaligns be in a enum instead
4975         of defines.
4976         (MathIsInset ++): changed several macros to be inline functions
4977         instead. 
4978
4979         * src/mathed/Makefile.am: changed to use libtool
4980
4981         * src/mathed/.cvsignore: added *.lo, .libs and libmathed.la
4982
4983         * src/insets/inset* : Clone changed to const and return type is
4984         the true insettype not just Inset*.
4985         
4986         * src/insets/Makefile.am: changed to use libtool
4987
4988         * src/insets/.cvsignore: added *.lo, .libs and libinsets.la
4989
4990         * src/undo.[Ch] : added empty() and changed some of the method
4991         names.
4992         
4993         * src/texrow.[Ch]: rewrote to store texrow's in a std::list.
4994
4995         * src/lyxparagraph.h: use id() and id(...) instead of getID and
4996         setID use block<> for the bullets array, added const several places.
4997
4998         * src/lyxfunc.C (getStatus): new function
4999
5000         * src/lyxfunc.[Ch] : small changes to take advantage of the new
5001         LyXAction, added const to several funtions.
5002
5003         * src/filedlg.[Ch]: rewrote to store userchache and groupchache in
5004         a std::map, and to store the dir items in a vector.
5005
5006         * src/Makefile.am (lyx_DEPENDENCIES): changed to use libtool files
5007         as dependencies.
5008
5009         * src/LyXView.[Ch] + other files : changed currentView to view.
5010         
5011         * src/LyXAction.[Ch] : ported from the old devel branch.
5012         
5013         * src/.cvsignore: added .libs and a.out
5014
5015         * configure.in : changes to use libtool. 
5016
5017         * acinclude.m4 : inserted libtool.m4
5018
5019         * .cvsignore: added libtool
5020
5021 1999-11-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5022
5023         * src/Makefile.am (lyx_DEPENDENCIES): give the explicit object
5024         file name in insets and mathed directories (otherwise the
5025         dependency is not taken in account under cygwin).
5026
5027         * src/text2.C (InsertString[AB]): make sure that we do not try to
5028         read characters past the string length.
5029
5030 1999-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5031
5032         * lib/doc/LaTeXConfig.lyx.in, 
5033           lib/chkconfig.ltx: remove the test for linuxdoc-sgml.sty.
5034
5035         * src/buffer.C (writeFile): Do not add a comment on top of .lyx
5036         file saying who created them and when this heppened; this is
5037         useless and annoys tools like cvs.
5038
5039         * lib/layouts/g-brief-{en,de}.layout,
5040           lib/templates/g-brief-{en,de}.lyx: new versions of the textclass
5041         from Thomas Hartkens <thomas@hartkens.de>.
5042
5043         * src/{insets,mathed}/Makefile.am: do not declare an empty
5044         LDFLAGS, so that it can be set at configure time (useful on Irix
5045         for -n32 flag).
5046
5047         * lib/reLyX/configure.in: make sure that the prefix is set
5048         correctly in LYX_DIR.
5049
5050 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
5051
5052         * src/commandtags.h: introduction of a new tag 'LFUN_SEQUENCE' to
5053         be used by 'command-sequence' this allows to bind a key to a
5054         sequence of LyX-commands
5055         (Example: 'command-sequence math-insert alpha; math-insert beta;")
5056
5057         * src/LyXAction.C: add "command-sequence"
5058
5059         * src/LyXFunction.C: handling of "command-sequence"
5060
5061         * src/LyXFunction.[hC] changed LyXFunc::Dispatch(string const
5062          &cmd, string const &arg) to LyXFunc::Dispatch(string const& s)
5063
5064         * src/lyxserver.C, src/minibuffer.C: Use this new interface
5065
5066 1999-11-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5067
5068         * src/buffer.C (writeFile): Do not output a comment giving user
5069         and date at the beginning of a .lyx file. This is useless and
5070         annoys cvs anyway; update version number to 1.1.
5071
5072         * src/Makefile.am (LYX_DIR): add this definition, so that a
5073         default path is hardcoded in LyX.
5074
5075         * configure.in: Use LYX_GNU_GETTEXT.
5076
5077         * acinclude.m4 (LYX_GNU_GETTEXT): new macro, essentially a copy of
5078         AM_GNU_GETTEXT with a bug fixed. 
5079
5080         * src/lyx_cb.C (RunLinuxDoc): add a cast to please dec cxx.
5081
5082         * src/chset.C: add "using std::ifstream;" to please dec cxx.
5083
5084         * src/lyx_main.C (init), INSTALL.OS2: the environment variable
5085         which is used to point to LyX data is now LYX_DIR_11x.
5086
5087         * lyx.man: convert to a unix text file; small updates.
5088
5089 1999-11-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
5090
5091         * src/support/LSubstring.[Ch]: made the second arg of most of the
5092         constructors be a const reference. 
5093
5094         * src/mathed/math_parser.C (LexInitCodes): small bug introduced by
5095         me fixed.
5096
5097         * src/support/lyxstring.[Ch] (swap): added missing member function
5098         and specialization of swap(str, str); 
5099
5100         * src/menus.C (ShowBufferMenu): to use the new BufferStorage
5101
5102         * src/bufferlist.[Ch]: use the new BufferStorage class and remove all
5103         trace of the old one.
5104
5105         * src/undo.[Ch]: made the undostack use std::list to store undo's in
5106         put the member definitions in undo.C.
5107
5108         * src/lyxparagraph.h, src/paragraph.C + a lot of files: removed
5109         NEW_TEXT and have now only code that was included when this was
5110         defined. 
5111
5112         * src/intl.C (LCombo): use static_cast
5113         (LCombo2): ditto
5114         (DispatchCallback): ditto
5115
5116         * src/definitions.h: removed whole file
5117         
5118         * src/commandtags.h: comment out LFUN_INSERT_INSET_LATEX
5119
5120         * src/chset.[Ch]: a lot rewritten, does not use lyxlex for cdef
5121         parsing and stores in a std:map. a regex defines the file format.
5122         removed unneeded members.
5123
5124         * src/bufferparams.h: added several enums from definitions.h here.
5125         Removed unsused destructor. Changed some types to use proper enum
5126         types. use block to have the temp_bullets and user_defined_bullets
5127         and to make the whole class assignable.
5128
5129         * src/bufferparams.C (Copy): removed this functions, use a default
5130         assignment instead. 
5131
5132         * src/buffer.h: made isLatex, isLinuxDoc, isDocBook, isSGML and
5133         isLiterate const.
5134
5135         * src/buffer.C (readLyXformat2): commend out all that have with
5136         oldpapersize to do. also comment out all that hve to do with
5137         insetlatex and insetlatexdel. 
5138         (setOldPaperStuff): commented out
5139
5140         * src/Makefile.am (lyx_SOURCES): remove definitions.h, add undo.C
5141
5142         * src/LyXAction.C: remove use of inset-latex-insert
5143
5144         * src/mathed/math_panel.C (button_cb): use static_cast
5145
5146         * src/insets/Makefile.am (insets_o_SOURCES): removed
5147         insetlatex.[Ch] 
5148
5149         * src/support/lyxstring.C (helper): use the unsigned long
5150         specifier, UL, instead of a static_cast.
5151
5152         * src/support/Makefile.am (libsupport_a_SOURCES): added block.h
5153
5154         * src/support/block.h: new file. to be used as a c-style array in
5155         classes, so that the class can be assignable.
5156
5157 1999-11-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5158
5159         * src/lyx_gui_misc.C (askForText): when fl_show_input() returns
5160         NULL, make sure to return an empty string (it is not possible to
5161         set a string to NULL).
5162
5163 1999-11-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5164
5165         * src/support/LRegex.C: use regex_t instead of re_pattern_buffer.
5166
5167         * src/support/lyxstring.C (helper): fix bogus cast in assertion.
5168
5169         * src/{mathed,insets}/Makefile.am (CXXLINK): add $(LDFLAGS) to the
5170         link line, so that Irix users (for example) can set it explicitely to
5171         "-n32".
5172         
5173         * src/Makefile.am (lyx_LDADD): use LYX_LIB as a variable, so that
5174         it can be overidden at make time (static or dynamic link, for
5175         example).
5176         
5177         * src/vc-backend.C, src/LaTeXFeatures.h, 
5178           src/support/LRegex.C, src/support/LRegex.h: add a few "using" 
5179         statements to bring templates to global namespace.
5180
5181 1999-11-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
5182
5183         * src/support/lyxstring.C (operator[] const): make it standard
5184         conforming. 
5185
5186         * src/minibuffer.C (Init): changed to reflect that more
5187         information is given from the lyxvc and need not be provided here.
5188
5189         * src/lyxvc.[Ch]: rewrote to use the vc-backend.
5190         
5191         * src/Makefile.am (lyx_SOURCES): add vc-backend.[Ch]
5192
5193         * src/LyXView.C (UpdateTimerCB): use static_cast
5194         (KeyPressMask_raw_callback): ditto
5195
5196         * src/BufferView.[Ch]: name change _owner -> owner_ and _buffer ->
5197         buffer_, a lot of changes because of this. currentBuffer() ->
5198         buffer(), setBuffer(...) -> buffer(...), getOwner() -> owner(),
5199         also changes to other files because of this.
5200
5201 1999-11-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
5202
5203         * src/vc-backend.[Ch]: new files. The backends for vc handling,
5204         have no support for RCS and partial support for CVS, will be
5205         improved later.
5206         
5207         * src/insets/ several files: changes because of function name
5208         changes in Bufferview and LyXView.
5209         
5210         * src/mathed/math_symbols.C (math_insert_symbol): use static_cast
5211
5212         * src/support/LSubstring.[Ch]: new files. These implement a
5213         Substring that can be very convenient to use. i.e. is this
5214         possible:
5215         string a = "Mary had a little sheep";
5216         Substring(a, "sheep") = "lamb";
5217         a is now "Mary has a little lamb".
5218
5219         * src/support/LRegex.[Ch]: a regex class that can be used to pick
5220         out patterns and subpatterns of strings. It is used by LSubstring
5221         and also by vc-backend.C
5222         
5223         * src/support/lyxstring.C: went over all the assertions used and
5224         tried to correct the wrong ones and flag which of them is required
5225         by the standard. some bugs found because of this. Also removed a
5226         couple of assertions.
5227
5228         * src/support/Makefile.am (libsupport_a_SOURCES): added
5229         LSubstring.[Ch] and LRegex.[Ch]
5230
5231         * src/support/FileInfo.h: have struct stat buf as an object and
5232         not a pointer to one, some changes because of this.
5233
5234         * src/LaTeXFeatures.C (getTClassPreamble): also use the
5235         information in layout when adding the layouts preamble to the
5236         textclass preamble.
5237
5238         * src/LaTeXFeatures.h: use a vector<bool> to store the layout
5239         usage in.
5240
5241         * configure.in (CPPFLAGS): use AC_CHECK_FUNCS to check for XOpenIM
5242         because of bug in OS/2.
5243
5244 1999-11-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5245
5246         * lib/layouts/lyxmacros.inc (lyxcode): set the font with
5247         \verbatim@font instead of \ttfamily, so that it can be redefined.
5248
5249         * src/BackStack.h, src/DepTable.C, src/DepTable.h, src/LaTeX.C,
5250           src/LaTeX.h, src/lastfiles.C, src/lastfiles.h, src/layout.C,
5251           src/layout.h, src/text2.C: add 'using' directive to bring the
5252         STL templates we need from the std:: namespace to the global one.
5253         Needed by DEC cxx in strict ansi mode.
5254
5255         * src/support/LIstream.h,src/support/LOstream.h,
5256           src/support/lyxstring.h,src/table.h,
5257           src/lyxlookup.h: do not include <config.h> in header
5258         files. This should be done in the .C files only.
5259
5260         * development/lyx.spec.in: WHATSNEW has been renamed to NEWS
5261         (from Kayvan).
5262         
5263
5264 1999-11-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5265
5266         * config/lib_configure.m4,lib/configure,lib/lyxrc.example: update
5267         from Kayvan to fix the tth invokation.
5268
5269         * development/lyx.spec.in: updates from Kayvan to reflect the
5270         changes of file names.
5271
5272 1999-11-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
5273
5274         * src/text2.C (InsertStringB): use std::copy
5275         (InsertStringA): use std::copy
5276
5277         * src/bufferlist.C: use a vector to store the buffers in. This is
5278         an internal change and should not affect any other thing.
5279         
5280         * src/BufferView.C (waitForX): use XSync instead of the lengthy
5281         stuff in waitForX.
5282
5283         * src/text.C (Fill): fix potential bug, one off bug.
5284
5285 1999-11-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
5286
5287         * src/Makefile.am (lyx_main.o): add more files it depends on.
5288
5289         * src/lyx_cb.C (addNewlineAndDepth): parameters in wrong order.
5290
5291         * src/support/lyxstring.C: use size_t for the reference count,
5292         size, reserved memory and xtra.
5293         (internal_compare): new private member function. Now the compare
5294         functions should work for std::strings that have embedded '\0'
5295         characters.
5296         (compare): all compare functions rewritten to use
5297         internal_compare.
5298         
5299 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
5300
5301         * src/support/lyxstring.C (compare): pass c_str()
5302         (compare): pass c_str
5303         (compare): pass c_str
5304
5305 1999-11-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5306
5307         * src/support/DebugStream.C: <config.h> was not included correctly.
5308
5309         * lib/configure: forgot to re-generate it :( I'll make this file
5310         auto generated soon.
5311
5312 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
5313
5314         * acinclude.m4 (cross_compiling): add -fpermissive when gcc 2.95.x
5315         is used.
5316
5317         * src/support/lyxstring.C: some changes from length() to rep->sz.
5318         avoids a function call.
5319
5320         * src/support/filetools.C (SpaceLess): yet another version of the
5321         algorithm...now per Jean-Marc's suggestions.
5322
5323 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
5324
5325         * src/layout.C (less_textclass_desc): functor for use in sorting
5326         of textclasses. 
5327         (LyXTextClass::Read): sort the textclasses after reading.
5328         
5329         * src/support/filetools.C (SpaceLess): new version of the
5330         SpaceLess functions. What problems does this one give? Please
5331         report.
5332
5333         * images/banner_bw.xbm: made the arrays unsigned char *
5334
5335 1999-11-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5336
5337         * src/support/lyxstring.C (find): remove bogus assertion in the
5338         two versions of find where this has not been done yet.
5339
5340         * src/support/lyxlib.h: add missing int return type to
5341         lyx::chdir(). 
5342
5343         * src/menus.C (ShowFileMenu): disable exporting to html if no
5344         html export command is present.
5345
5346         * config/lib_configure.m4: add a test for an HTML converter. The
5347         programs checked for are, in this order: tth, latex2html and
5348         hevea. 
5349
5350         * lib/configure: generated from config/lib_configure.m4.
5351
5352         * src/lyxfunc.C (Dispatch): update and improve the execution of an
5353         html converter. The parameters are now passed through $$FName and
5354         $$OutName, instead of standard input/output.
5355
5356         * src/lyxrc.{C,h}: rename \tth_command to \html_command.
5357
5358         * lib/lyxrc.example: update description of \html_command. 
5359         add "quotes" around \screen_font_xxx font setting examples to help
5360         people who use fonts with spaces in their names.
5361
5362 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
5363
5364         * Distribution files: updates for v1.1.2
5365
5366         * src/support/lyxstring.C (find): remove bogus assert and return
5367         npos for the same condition.
5368
5369 1999-11-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
5370
5371         * added patch for OS/2 from SMiyata.
5372
5373 1999-10-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
5374
5375         * src/text2.C (CutSelection): make space_wrapped a bool
5376         (CutSelection): dont declare int i until we have to.
5377         (alphaCounter): return a char const *.
5378
5379 1999-10-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5380
5381         * src/support/syscall.C (Systemcalls::kill): 
5382           src/support/filetools.C (PutEnv, PutEnvPath): 
5383           src/lyx_cb.C (addNewlineAndDepth): 
5384           src/FontInfo.C (FontInfo::resize): condition some #warning
5385         directives with WITH_WARNINGS.
5386         
5387
5388 1999-10-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
5389
5390         * src/layout.[Ch] + several files: access to class variables
5391         limited and made accessor functions instead a lot of code changed
5392         becuase of this. Also instead of returning pointers often a const
5393         reference is returned instead.
5394         
5395         * src/form1.C (create_form_Figure): added a couple fo "no-c-format"
5396
5397         * src/Makefile.am (dist-hook): added used to remove the CVS from
5398         cheaders upon creating a dist
5399         (EXTRA_DIST): added cheaders
5400
5401         * src/support/lstrings.C (tostr(char)): fix it to handle param as
5402         a character not as a small integer. 
5403
5404         * src/support/lyxstring.C (find): removed Assert and added i >=
5405         rep->sz to the first if.
5406
5407 1999-10-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
5408
5409         * src/layout.[Ch] src/BufferView.C src/LaTeXFeatures.C
5410         src/LyXView.C src/buffer.C src/bufferparams.C
5411         src/lyx_cb.C src/lyxfunc.C src/paragraph.C src/text.C 
5412         src/text2.C src/insets/insetinclude.C:
5413         lyxlayout renamed to textclasslist.
5414
5415         * src/layout.C: some lyxerr changes.
5416
5417         * src/layout.[Ch] (LyXLayout::Read): changed second paramter to
5418         LyXTextClass. rewrote LT_COPYSTYLE, rewrote LT_OBSOLETEDBY
5419         (LyXLayoutList): removed all traces of this class.
5420         (LyXTextClass::Read): rewrote LT_STYLE
5421         (LyXTextClass::hasLayout): new function
5422         (LyXTextClass::GetLayout): rewritten to return an iterator + has
5423         both const and nonconst version.
5424         (LyXTextClass::delete_layout): new function.
5425         (LyXTextClassList::Style): bug fix. do the right thing if layout
5426         is to big.
5427         (LyXTextClassList::NumberOfLayout): new acces to layoutlist.
5428         (LyXTextClassList::NameOfLayout): ditto 
5429         (LyXTextClassList::Load): ditto
5430
5431         * src/buffer.C (makeLaTeXFile): new access to layoutlist
5432
5433         * src/LaTeXFeatures.C (getTClassPreamble): new access to layoutlist
5434
5435         * src/LyXAction.C (LookupFunc): added a workaround for sun
5436         compiler, on the other hand...we don't know if the current code
5437         compiles on sun at all...
5438
5439         * src/support/filetools.C (CleanupPath): subst fix
5440
5441         * src/insets/insetbib.C (delDatabase): subst fix, this looks
5442         _really_ weird.
5443
5444         * src/support/filetools.C (PutEnvPath): subst fix, how come nobody
5445         complained about this one?
5446
5447         * src/insets/insetinclude.C (Latex): subst fix
5448
5449         * src/insets/insetbib.C (getKeys): subst fix
5450
5451         * src/LyXSendto.C (SendtoApplyCB): subst fix
5452
5453         * src/lyx_main.C (init): subst fix
5454
5455         * src/layout.C (Read): subst fix
5456
5457         * src/lyx_sendfax_main.C (button_send): subst fix
5458
5459         * src/buffer.C (RoffAsciiTable): subst fix
5460
5461         * src/lyx_cb.C (MenuFax): subst fix
5462         (PrintApplyCB): subst fix
5463
5464 1999-10-26  Juergen Vigna  <jug@sad.it>
5465
5466         * src/table.C (TexEndOfCell) + (DocBookEndOfCell): removed some #if 0
5467
5468         (Read): Cleaned up this code so now we read only format vestion >= 5
5469
5470 1999-10-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
5471
5472         * src/support/filetools.C (PutEnvPath): subst fix for EMX, how
5473         come nobody has complained about this one?
5474
5475         * src/insets/insetinclude.C (Latex): subst fix
5476
5477         * src/insets/insetbib.C (getKeys): subst fix
5478
5479         * src/lyx_main.C (init): subst fix
5480
5481         * src/layout.C (Read): subst fix
5482
5483         * src/buffer.C (RoffAsciiTable): subst fix
5484
5485         * src/lyx_cb.C (MenuFax): subst fix.
5486
5487         * src/layout.[hC] + some other files: rewrote to use
5488         std::container to store textclasses and layouts in.
5489         Simplified, removed a lot of code. Make all classes
5490         assignable. Further simplifications and review of type
5491         use still to be one. 
5492
5493         * src/menus.C (ShowFileMenu/ShowFileMenu2): Use the iterators from
5494         lastfiles to create the lastfiles partr of the menu.
5495
5496         * src/lastfiles.[Ch]: rewritten to use deque to store the
5497         lastfiles in. Uses fstream for reading and writing. Simplifies
5498         code.
5499
5500         * src/support/syscall.C: remove explicit cast.
5501
5502         * src/BufferView.C (CursorToggleCB): removed code snippets that
5503         were commented out.
5504         use explicat C++ style casts instead of C style casts. also use
5505         u_vdata instea of passing pointers in longs.
5506
5507         * src/PaperLayout.C: removed code snippets that were commented out.
5508
5509         * src/lyx_gui_misc.C: removed code snippets that were commented out. 
5510
5511         * src/lyx_main.C: removed code snippets that wer commented out.
5512
5513         * src/paragraph.C: removed code snippets that were commented out.
5514
5515         * src/lyxvc.C (logClose): use static_cast
5516         (logUpdate): ditto
5517         (viewLog): remove explicit cast to void*
5518         (showLog): removed old commented code
5519
5520         * src/menus.C: use static_cast instead of C style casts. use
5521         u_vdata instead of u_ldata. remove explicit cast to (long) for
5522         pointers. Removed old code that was commented out.
5523
5524         * src/insets/inset.C: removed old commented func
5525
5526         * src/insets/insetref.C (InsetRef): removed old code that had been
5527         commented out for a long time.
5528         (Edit): ditto
5529         (escape): removed C style cast
5530
5531         * src/insets/insetlatexaccent.C (Draw): removed old commented code
5532
5533         * src/insets/insetlatex.C (Draw): removed old commented code
5534         (Read): rewritten to use string
5535
5536         * src/insets/insetlabel.C (escape): removed C style cast
5537
5538         * src/insets/insetindex.h: removed vdata and ldata from FD_index_form
5539
5540         * src/insets/insetindex.C: use static_cast and u_vdata, removed
5541         old commented code.
5542
5543         * src/insets/insetinclude.h: removed a couple of stupid bools
5544
5545         * src/insets/insetinclude.C (include_cb): use static_cast and u_data.
5546         (Clone): remove C style cast
5547         (getKeys): changed list to lst because of std::list
5548
5549         * src/insets/inseterror.C (Draw): removed som old commented code.
5550
5551         * src/insets/insetcommand.C (Draw): removed some old commented code.
5552
5553         * src/insets/insetbib.C (bibitem_cb): removed code that has been
5554         commented out forever.
5555         (bibitem_cb): use static_cast instead of C style cast
5556         use of vdata changed to u_vdata.
5557
5558         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forward the data
5559         parameter.
5560         (CloseUrlCB): use static_cast instead of C style cast.
5561         (CloseUrlCB): added a fl_free form...it seemed to be missing.
5562
5563         * src/insets/insetinfo.C (Edit): pass object in u_vdata instead
5564         (C_InsetInfo_CloseInfoCB): forward the ob parameter
5565         (CloseInfoCB): static_cast from ob->u_vdata instead.
5566         (Edit): removed bogus arg from fl_set_object_shortcut, set to 1
5567         instead. 
5568
5569         * src/insets/inseterror.C (Edit): pass object in u_vdata instead
5570         (C_InsetError_CloseErrorCB): forward the ob parameter
5571         (CloseErrorCB): static_cast from ob->u_vdata instead.
5572
5573         * src/vspace.h: include LString.h since we use string in this class.
5574
5575         * src/vspace.C (lyx_advance): changed name from advance because of
5576         nameclash with stl. And since we cannot use namespaces yet...I
5577         used a lyx_ prefix instead. Expect this to change when we begin
5578         using namespaces.
5579
5580         * src/BufferView.[Ch] (BufferView::~BufferView): removed 
5581
5582         * src/BackStack.h: rewrote to use std::stack. made BackStackItem
5583         and removed now defunct constructor and deconstructor.
5584
5585         * src/BufferView.h: have backstack as a object not as a pointer.
5586         removed initialization from constructor. added include for BackStack 
5587
5588         * development/lyx.spec.in (%build): add CFLAGS also.
5589
5590         * src/screen.C (drawFrame): removed another warning.
5591
5592 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5593
5594         * renamed WHATSNEW to NEWS (usual GNU style), CHANGES to
5595         OLD-CHANGES (not used anymore) and modified INSTALL, INSTALL.OS2,
5596         README and ANNOUNCE a bit for the next release. More work is
5597         needed, of course.
5598
5599         * src/paragraph.C (SimpleTeXBlanks): spaces are automatically made
5600         unbreakable if we are in freespacing mode (LyX-Code), but not in
5601         latex mode.
5602
5603 1999-10-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
5604
5605         * src/BackStack.h: fixed initialization order in constructor
5606
5607         * Makefile.am (MAINTAINERCLEANFILES): removed po/POTFILES.in
5608
5609         * acinclude.m4 (VERSION): new rules for when a version is
5610         development, added also a variable for prerelease.
5611         (warnings): we set with_warnings=yes for prereleases
5612         (lyx_opt): prereleases compile with same optimization as development 
5613         (CXXFLAGS): only use pedantic if we are a development version 
5614
5615         * src/BufferView.C (restorePosition): don't do anything if the
5616         backstack is empty.
5617
5618         * src/BackStack.h: added member empty, use this to test if there
5619         is anything to pop...
5620
5621 1999-10-25  Juergen Vigna  <jug@sad.it>
5622
5623         * forms/form1.fd +
5624         * forms/layout_forms.fd +
5625         * forms/latexoptions.fd +
5626         * lyx.fd: changed for various form resize issues
5627
5628         * src/mathed/math_panel.C +
5629         * src/insets/inseterror.C +
5630         * src/insets/insetinfo.C +
5631         * src/insets/inseturl.C +
5632         * src/insets/inseturl.h +
5633         * src/LaTeXLog.C +
5634         * src/LyXSendto.C +
5635         * src/PaperLayout.C +
5636         * src/ParagraphExtra.C +
5637         * src/TableLayout.C +
5638         * src/form1.C +
5639         * src/layout_forms.C +
5640         * src/lyx.C +
5641         * src/lyx_cb.C +
5642         * src/lyx_gui.C +
5643         * src/lyxfr0.C +
5644         * src/lyxfunc.C +
5645         * src/lyxvc.C +
5646         * src/menus.C: fixed various resize issues. So now forms can be
5647         resized savely or not be resized at all.
5648         
5649         * forms/form_url.fd +
5650         * src/insets/form_url.[Ch]: added because it's cleaner and easier
5651         to modify IMO.
5652
5653         * src/insets/Makefile.am: added files form_url.[Ch]
5654         
5655 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5656
5657         * INSTALL: it is now possible to compile LyX with digital C++ 6.1
5658         (and presumably 6.2).
5659
5660         * src/{BufferView,LyXView,combox,filedlg,intl,lyxserver,lyxvc,
5661         menus,minibuffer,toolbar}.{C,h}: added C_xxx wrappers around
5662         remaining static member callbacks. 
5663
5664         * src/lyxfunc.C (Dispatch): Use _() instead of N_() fot minibuffer
5665         messages. 
5666
5667         * src/support/lyxstring.h: declare struct Srep as friend of
5668         lyxstring, since DEC cxx complains otherwise.
5669
5670 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
5671
5672 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
5673
5674         * src/LaTeX.C (run): made run_bibtex also depend on files with
5675         extension ".bst"
5676         (runBibTeX): added scans for "\\bibstyle", now also ".bst" files
5677         are put into the dependency file.
5678
5679         * src/spellchecker.C (create_ispell_pipe): removed old #warning,
5680         the code has shown itself to work
5681         (create_ispell_pipe): removed another warning, added a comment
5682         instead. 
5683
5684         * src/minibuffer.C (ExecutingCB): removed code that has been
5685         commented out a long time
5686
5687         * src/lyxfunc.C (processKeyEvent): removed some very old commented
5688         out code + a warning.
5689
5690         * src/support/lyxstring.h: comment out the three private
5691         operators, when compiling with string ansi conforming compilers
5692         they make problems.
5693
5694         * src/mathed/math_symbols.C (AddBitmap): change 6th arg to be
5695         unsigned char *.
5696         (pixmapFromBitmapData): change type of bdata to be unsigned char *
5697         (pixmapFromBitmapData): add a reinterpret_cast in the call to
5698         XCreateImage
5699
5700         * src/mathed/math_panel.h: change 6th arg to AddBitmap to be
5701         unsigned char *
5702
5703         * src/mathed/math_panel.C (create_math_panel): remove explicit
5704         casts
5705
5706         * src/bmtable.h: change last paramter to fl_set_bmtable_data to be
5707         unsigned char *.
5708
5709         * src/bmtable.C (struct BMTABLE_SPEC): make bdata unsigned char *
5710         (draw_bitmaptable): add a reinterpret_cast to sp->bdata in the call
5711         to XCreatePixmapFromBitmapData
5712         (fl_set_bmtable_data): change the last argument to be unsigned
5713         char *
5714         (fl_set_bmtable_file): change bdata to unsinged char *, change bw
5715         and bh to be unsigned int, remove explicit casts in call to
5716         XReadBitmapFileData.
5717
5718         * images/arrows.xbm: made the arrays unsigned char *
5719         * images/varsz.xbm: ditto
5720         * images/misc.xbm: ditto
5721         * images/greek.xbm: ditto
5722         * images/dots.xbm: ditto
5723         * images/brel.xbm: ditto
5724         * images/bop.xbm: ditto
5725
5726         * Makefile.am (MAINTAINERCLEANFILES): added po/POTFILES.in
5727
5728         * acinclude.m4 (LYX_GXX_STRENGHT_REDUCE): removed. 
5729         (LYX_PROG_CXX): added -pedantic to g++ compile options when
5730         with-warnings, removed the __STRING_ANSI__ hack, seems to not be
5731         needed. 
5732         (LYX_CXX_CHEADERS): added <clocale> to the test. 
5733
5734 1999-10-23  Lars Gullik Bjønnes  <larsbj@lyx.org>
5735
5736         * src/lyx_cb.C (addNewlineAndDepth): changed to use string::append.
5737
5738         * src/support/lyxstring.C (append): fixed something that must be a
5739         bug, rep->assign was used instead of rep->append.
5740
5741         * src/support/Makefile.am (libsupport_a_SOURCES): added LIstream.h
5742         and LOstream.h
5743
5744         * src/lyxfunc.C (processKeyEvent): removed faulty line that made
5745         lyx insert double chars. Fix spotted by Kayvan.
5746
5747 1999-10-23  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
5748
5749         * Fixed the tth support. I messed up with the Emacs patch apply feature
5750         and omitted the changes in lyxrc.C.
5751
5752 1999-10-22  Juergen Vigna  <jug@sad.it>
5753
5754         * src/insets/figinset.C (CallbackFig): Just changed the defines a bit.
5755
5756         * src/lyx_cb.C (MenuInsertRef) + 
5757         * src/lyx_gui.C (create_forms): Inserted fl_set_form_minsize so that
5758         the form cannot be resized under it limits (fixes a segfault)
5759         
5760         * src/lyx.C (create_form_form_ref) +
5761         * forms/lyx.fd: Changed Gravity on name input field so that it is
5762         resized correctly.
5763
5764 1999-10-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5765
5766         * configure.in: use LYX_CXX_STL_MODERN_STREAMS; check for headers
5767         <ostream> and <istream>.
5768         
5769         * acinclude.m4 (LYX_CXX_STL_MODERN_STREAMS): new test. Checks
5770         whether <fstream> provides the latest standard features, or if we
5771         have an oldstyle library (like in egcs).
5772         (LYX_CXX_STL_STRING): fix the test.
5773
5774         * src/support/DebugStream.{C,h}: use L{I,O}stream.h and condition the
5775         code on MODERN_STL_STREAM.
5776
5777         * src/support/lyxstring.h: use L{I,O}stream.h.
5778
5779         * src/support/L{I,O}stream.h: new files, designed to setup
5780         correctly streams for our use
5781           - includes the right header depending on STL capabilities
5782           - puts std::ostream and std::endl (for LOStream.h) or
5783           std::istream (LIStream.h) in toplevel namespace.
5784
5785 1999-10-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
5786
5787         * src/LaTeX.C (run): added a check in 0 sumchange so that if it
5788         was a bib file that had been changed we ensure that bibtex is run.
5789         (runBibTeX): enhanced to extract the names of the bib files and
5790         getting their absolute path and enter them into the dep file.
5791         (findtexfile): static func that is used to look for tex-files,
5792         checks for absolute patchs and tries also with kpsewhich.
5793         Alternative ways of finding the correct files are wanted. Will
5794         probably be moved.
5795         (do_popen): function that runs a command using popen and returns
5796         the whole output of that command in a string. Should be moved to
5797         somewhere else.
5798
5799         * src/DepTable.[Ch] (extchanged): new function that returns true if a
5800         file with extension ext has changed.
5801
5802         * src/insets/figinset.C: added ifdef guards around the fl_free
5803         code that jug commented out. Now it is commented out when
5804         compiling with XForms == 0.89.
5805
5806         * src/support/lyxstring.C: moved the definition of lyxstring::Srep
5807         to lyxstring.C, and only keep a forward declaration in
5808         lyxstring.h. Simplifies the header file a bit and should help a
5809         bit on compile time too. Also changes to Srep will not mandate a
5810         recompile of code just using string.
5811         (~lyxstring): definition moved here since it uses srep.
5812         (size): definition moved here since it uses srep.
5813
5814         * src/support/lyxstring.h: removed a couple of "inline" that should
5815         not be there.
5816
5817 1999-10-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5818
5819         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forgot to pass
5820         the 'ob' argument.
5821
5822 1999-10-21  Juergen Vigna  <jug@sad.it>
5823
5824         * src/table.C (SetPWidth): Just a small fix so the alignment is not
5825         set to left if I just remove the width entry (or it is empty).
5826
5827         * src/text2.C (SetCursorIntern): Fixed a bug calculating to use wrong
5828         paragraph when having dummy paragraphs.
5829
5830 1999-10-20  Juergen Vigna  <jug@sad.it>
5831
5832         * src/insets/figinset.C: just commented some fl_free_form calls
5833         and added warnings so that this calls should be activated later
5834         again. This avoids for now a segfault, but we have a memory leak!
5835
5836         * src/lyxfunc.C (processKeyEvent) (Dispatch): changed
5837         'const char * argument' to 'string argument', this should
5838         fix some Asserts() in lyxstring.C.
5839
5840         * src/lyxfunc.h: Removed the function argAsString(const char *)
5841         as it is not used anymore.
5842
5843 1999-10-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
5844
5845         * src/support/lyxstring.C (getline): reads now _all_ chars. uses
5846         get instead of >>
5847
5848         * src/Literate.h: some funcs moved from public to private to make
5849         interface clearer. Unneeded args removed.
5850
5851         * src/Literate.C (scanLiterateLogFile): rewritten to use iostream
5852         instead of lyxlex.
5853         (scanBuildLogFile): ditto
5854
5855         * src/LaTeX.C (scanLogFile): merged LaTeX Error handling into
5856         normal TeX Error. Still room for improvement.
5857
5858         * src/LaTeX.[Ch]: removed scanError. Wrong place and not needed.
5859
5860         * src/buffer.C (insertErrors): changes to make the error
5861         desctription show properly.
5862
5863         * src/LaTeX.C (deplog): removed the test for file in lyx doc dir.
5864         could never happen
5865
5866         * src/support/lyxstring.C (helper): changed to use
5867         sizeof(object->rep->ref).
5868         (operator>>): changed to use a pointer instead.
5869
5870         * src/support/lyxstring.h: changed const reference & to value_type
5871         const & lets see if that helps.
5872
5873 1999-10-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
5874
5875         * Makefile.am (rpmdist): fixed to have non static package and
5876         verison.
5877
5878         * src/support/lyxstring.C: removed the compilation guards
5879
5880         * src/vspace.C (nextToken): use i + 1  instead of ++i. Maks things
5881         a bit clearer.
5882
5883         * src/support/Makefile.am (LYXSTRING): bruker USE_LYXSTRING for
5884         conditional compile of lyxstring.Ch
5885
5886         * acinclude.m4 (LYX_CXX_STL_STRING): new and improved, still a
5887         stupid check, but it is a lot better than the bastring hack. 
5888         (LYX_CXX_STL_STRING): bruker nå AM_CONDITIONAL(USE_LYXSTRING  
5889
5890         * several files: changed string::erase into string::clear. Not
5891         really needed.
5892         
5893         * src/chset.C (encodeString): use a char temporary instead
5894
5895         * src/table.C (TexEndOfCell): added tostr around
5896         column_of_cell(fcell+i)+1 and around right_column_of_cell(fcell+i)+1
5897         (TexEndOfCell): ditto
5898         (TexEndOfCell): ditto
5899         (TexEndOfCell): ditto
5900         (DocBookEndOfCell): ditto
5901         (DocBookEndOfCell): ditto
5902         (DocBookEndOfCell): ditto
5903         (DocBookEndOfCell): ditto
5904
5905         * src/paragraph.C (TeXEnvironment): added tostr around foot_count -1
5906
5907         * src/lyxfr1.C (SearchReplaceAllCB): added tostr around replace_count
5908
5909         * src/lyx_cb.C (MenuRunLaTeX): added tostr around ret
5910         (MenuBuildProg): added tostr around ret
5911         (MenuRunChktex): added tostr around ret
5912         (DocumentApplyCB): added tostr around ret
5913
5914         * src/chset.C (encodeString): added tostr around t->ic
5915
5916         * src/buffer.C (makeLaTeXFile): added tostr around secnumdepth
5917         (makeLaTeXFile): added tostr around tocdepth
5918         (makeLaTeXFile): added tostr around ftcound - 1
5919
5920         * src/insets/insetbib.C (setCounter): added tostr around counter.
5921
5922         * src/support/lyxstring.h: added an operator+=(int) to catch more
5923         mistakes. 
5924
5925         * src/support/lyxstring.C (lyxstring): We DON'T allow NULL pointers.
5926         (lyxstring): We DON'T allow NULL pointers.
5927
5928 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5929
5930         * src/mathed/math_macro.C (MathMacroArgument::Write,
5931         MathMacroTemplate::WriteDef): add tostr() around macro arg numbers
5932         when writing them out.
5933
5934         * src/LString.C: remove, since it is not used anymore.
5935         
5936         * src/support/lyxstring.C: condition the content to
5937         USE_INCLUDED_STRING macro.
5938
5939         * src/mathed/math_symbols.C, src/support/lstrings.C,
5940         src/support/lyxstring.C: add `using' directive to specify what
5941         we need in <algorithm>. I do not think that we need to
5942         conditionalize this, but any thought is appreciated.
5943
5944         * many files: change all callback functions to "C" linkage
5945         functions to please strict C++ compilers like DEC cxx 6.1 in mode
5946         strict_ansi. Those who were static are now global. 
5947             The case of callbacks which are static class members is
5948         trickier, since we have to make C wrappers around them (see
5949         InsetError, InsetInfo and InsetUrl). The same holds for friends. I
5950         did not finish this yet, since it defeats the purpose of
5951         encapsulation, and I am not sure what the best route is.
5952
5953 1999-10-19  Juergen Vigna  <jug@sad.it>
5954
5955         * src/support/lyxstring.C (lyxstring): we permit to have a null
5956         pointer as assignment value and just don't assign it.
5957
5958         * src/vspace.C (nextToken): corrected this function substituting
5959         find_first(_not)_of with find_last_of.
5960
5961         * src/TableLayout.C (UpdateLayoutTable) (TableOptionsCB)
5962                 (TableOptCloseCB) (TableSpeCloseCB):
5963         inserted fl_set_focus call for problem with fl_hide_form() in
5964         xforms-0.89.
5965
5966 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5967
5968         * src/lyx_cb.C (LayoutsCB): fix bug where int was added to a
5969         string. 
5970
5971 1999-10-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5972
5973         * src/lyxrc.C (Read): RC_PRINTEXSTRAOPTIONS now uses
5974         LyXLex::next() and not eatline() to get its argument.
5975
5976 1999-10-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
5977
5978         * src/DepTable.[Ch]: rewritten to store the dependencies in a map
5979         instead, use fstreams for io of the depfile, removed unneeded
5980         functions and variables. 
5981
5982         * src/LaTeX.[Ch] (class TeXErrors): rewrote to store the errors in a
5983         vector instead, removed all functions and variables that is not in
5984         use.
5985
5986 1999-10-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
5987
5988         * src/buffer.C (insertErrors): use new interface to TeXError
5989
5990         * Makefile.am (rpmdist): added a rpmdist target
5991
5992         * lib/reLyX/Makefile.am: added RelyxFigure.pm and Verbatim.pm as
5993         per Kayvan's instructions.
5994
5995 1999-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5996
5997         * src/Makefile.am: add a definition for localedir, so that locales
5998         are found after installation (Kayvan)
5999
6000 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
6001
6002         * development/.cvsignore: new file.
6003
6004 1999-10-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6005
6006         * acinclude.m4 (LYX_CXX_CHEADERS): New macro. Checks whether the
6007         C++ compiler provides wrappers for C headers and use our alternate
6008         version otherwise.
6009
6010         * configure.in: use LYX_CXX_CHEADERS.
6011
6012         * src/cheader/: new directory, populated with cname headers from
6013         libstdc++-2.8.1. They are a bit old, but probably good enough for
6014         what we want (support compilers who lack them).
6015         
6016         * src/insets/Makefile.am, src/mathed/Makefile.am: remove src/support
6017         from includes. It turns out is was stupid.
6018  
6019 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
6020
6021         * lib/Makefile.am (install-data-local): forgot a ';'
6022         (install-data-local): forgot a '\'
6023         (libinstalldirs): needed after all. reintroduced.
6024
6025 1999-10-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
6026
6027         * configure.in (AC_OUTPUT): added lyx.spec
6028
6029         * development/lyx.spec: removed file
6030
6031         * development/lyx.spec.in: new file
6032
6033         * po/*.po: merged with lyx.pot becuase of make distcheck
6034         
6035         * lib/Makefile.am (dist-hook): added dist-hook so that
6036         documentation files will be included when doing a make
6037         dist/distdir/distcheck. Requires cvs export -r HEAD lyxdoc to run.
6038         (pkgdata_SCRIPTS): added configure.cmd for now, we can use som
6039         conditional later.
6040         more: tried to make install do the right thing, exclude CVS dirs
6041         etc.
6042
6043         * src/LaTeXLog.C (ShowLatexLog): reordered som statements so that
6044         Path would fit in more nicely.
6045
6046         * all files that used to use pathstack: uses now Path instead.
6047         This change was a lot easier than expected.
6048         
6049         * src/support/path.h: new file
6050
6051         * src/support/Makefile.am (libsupport_a_SOURCES): added path.h
6052
6053         * src/Makefile.am (lyx_SOURCES): removed pathstack.[Ch]
6054
6055         * src/support/lyxstring.C (getline): Default arg was given for
6056         para 3. removed.
6057
6058         * Configure.cmd: removed file 
6059
6060 1999-10-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6061
6062         * src/support/DebugStream.[Ch]: remove the explicit std:: before
6063         streams classes and types, add the proper 'using' statements when
6064         MODERN_STL is defined.
6065         
6066         * src/debug.h: move the << operator definition after the inclusion
6067         of DebugStream.h
6068
6069         * src/support/filetools.C: include "LAssert.h", which is needed
6070         later. 
6071
6072         * src/insets/Makefile.am, src/mathed/Makefile.am: add src/support
6073         to includes. 
6074
6075         * src/lyxfont.h, src/commandtags.h, src/mathed/math_defs.h:
6076         include "debug.h" to define a proper ostream.
6077
6078 1999-10-12  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
6079
6080         * src/sys*: Cleaned up the Systemcall stuff a bit. Added "kill(int)"
6081           method to the SystemCall class which can kill a process, but it's
6082           not fully implemented yet.
6083
6084         * src/*.C: Changed Systemcalls::Startscript() to startscript()
6085
6086         * src/support/FileInfo.h: Better documentation  
6087
6088         * src/lyxfunc.C: Added support for buffer-export html
6089         
6090         * src/menus.C: Added Export->As HTML...
6091         
6092         * lib/bind/*.bind: Added short-cut for buffer-export html
6093
6094         * src/lyxrc.*: Added support for new \tth_command
6095         
6096         * lib/lyxrc.example: Added stuff for new \tth_command
6097
6098 1999-10-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
6099
6100         * lib/Makefile.am (IMAGES): removed images/README
6101         (pkgdata_SCRIPTS): use this instead of bin_SCRIPTS to that it
6102         installes in correct place. Check permisions is installed
6103         correctly.
6104
6105         * src/LaTeX.C: some no-op changes moved declaration of some
6106         variables around.
6107
6108         * src/LaTeX.h (LATEX_H): changed include guard name
6109
6110 1999-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6111
6112         * lib/reLyX/Makefile.am: install noweb2lyx.
6113
6114         * lib/Makefile.am: install configure. 
6115
6116         * lib/reLyX/configure.in: declare a config aux dir; set package
6117         name to lyx (not sure what the best solution is); generate noweb2lyx.
6118
6119         * lib/layouts/egs.layout: fix the bibliography layout.
6120
6121 1999-10-08  Jürgen Vigna <jug@sad.it>
6122
6123         * src/support/filetools.C (FileOpenSearch): Fixed a bug where
6124         when in the PATH was something like /usr/bin;;/bin (note: the ;;)
6125         it returned without continuing to search the path.
6126         
6127 1999-10-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
6128
6129         * src/insets/insetquotes.C (Draw): Simplified a gread deal. This
6130         also fixes a bug. It is not allowed to do tricks with std::strings
6131         like: string a("hei"); &a[e]; this will not give what you
6132         think... Any reason for the complexity in this func?
6133
6134 1999-10-06  Asger Alstrup Nielsen  <alstrup@diku.dk>
6135
6136         * Updated README and INSTALL a bit, mostly to check that my
6137         CVS rights are correctly set up.
6138
6139 1999-10-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
6140
6141         * src/support/lyxstring.C (helper): removed bogus Assert. strlen
6142         does not allow '\0' chars but lyxstring and std::string does.
6143
6144 1999-10-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
6145
6146         * autogen.sh (AUTOCONF): let the autogen script create the
6147         POTFILES.in file too. POTFILES.in should perhaps now not be
6148         included in the cvs module.
6149
6150         * some more files changed to use C++ includes instead of C ones.
6151
6152         * src/filedlg.C (Reread): fixed a bug wrt Time. It was appended
6153         not assigned.
6154         (Reread): added tostr to nlink. buggy output otherwise.
6155         (Reread): added a string() around szMode when assigning to Buffer,
6156         without this I got a log of garbled info strings.
6157
6158         * acconfig.h: commented out the PTR_AS_INT macros. They should not
6159         be needed.
6160
6161         * I have added several ostream & operator<<(ostream &, some_type)
6162         functions. This has been done to avoid casting and warnings when
6163         outputting enums to lyxerr. This as thus eliminated a lot of
6164         explicit casts and has made the code clearer. Among the enums
6165         affected: kb_action, InsetLatexAccent::ACCENT_TYPE, a couple of
6166         mathed enums, some font enum the Debug::type enum. 
6167
6168         * src/support/lyxstring.h (clear): missing method. equivalent of
6169         erase(0, npos).
6170
6171         * all files that contained "stderr": rewrote constructs that used
6172         stderr to use lyxerr instead. (except bmtable)
6173
6174         * src/support/DebugStream.h (level): and the passed t with
6175         Debug::ANY to avoid spurious bits set.
6176
6177         * src/debug.h (Debug::type value): made it accept strings of the
6178         type INFO,INIT,KEY.
6179
6180         * configure.in (Check for programs): Added a check for kpsewhich,
6181         the latex generation will use this later to better the dicovery of
6182         all used files. 
6183
6184         * src/BufferView.C (create_view): we don't need to cast this to
6185         (void*) that is done automatically.
6186         (WorkAreaButtonPress): removed some dead code.
6187
6188 1999-10-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6189
6190         * src/minibuffer.C (Init): make sure that the "Welcome to LyX!"
6191         is not overwritten when translated (David Sua'rez de Lis).
6192
6193         * lib/CREDITS: Added David Sua'rez de Lis
6194
6195         * lib/reLyX/configure.in: setup LYX_DIR correctly in reLyX.
6196
6197         * src/bufferparams.C (BufferParams): default input encoding is now
6198         "latin1" 
6199
6200         * acinclude.m4 (cross_compiling): comment out macro
6201         LYX_GXX_STRENGTH_REDUCE. 
6202
6203         * acconfig.h: make sure that const is not defined (to empty) when
6204         we are compiling C++. Remove commented out code using SIZEOF_xx
6205         macros.
6206         
6207         * configure.in : move the test for const and inline as late as
6208         possible so that these C tests do not interefere with C++ ones.
6209         Remove the call to LYX_GXX_STRENGTH_REDUCE, since its usefulness
6210         has not been proven. 
6211
6212 1999-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6213
6214         * src/table.C (getDocBookAlign): remove bad default value for
6215         isColumn parameter.
6216
6217         * src/menus.C (ShowFileMenu): add a missing tostr() for lastfiles
6218         shortcut. 
6219         (ShowFileMenu2): ditto.
6220
6221         * lib/reLyX/.cvsignore: add configure and aclocal.m4 to the list
6222         of files to ignore.
6223
6224 1999-10-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
6225
6226         * Most files: finished the change from the old error code to use
6227         DebugStream for all lyxerr debugging. Only minor changes remain
6228         (e.g. the setting of debug levels using strings instead of number) 
6229
6230 1999-10-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
6231
6232         * src/layout.C (Add): Changed to use compare_no_case instead of
6233         strcasecmp.
6234
6235         * src/FontInfo.C: changed loop variable type too string::size_type.
6236
6237 1999-10-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
6238
6239         * src/support/Makefile.am: added -I${srcdir}/../ to INCLUDES and
6240         set ETAGS_ARGS to --c++ 
6241
6242 1999-09-30  Lars Gullik Bjønnes  <larsbj@lyx.org>
6243
6244         * src/table.C (DocBookEndOfCell): commented out two unused variables
6245
6246         * src/paragraph.C: commented out four unused variables. 
6247
6248         * src/lyx_cb.C (TocUpdateCB): moved variable i and added a new i
6249         insed a if clause with type string::size_type.
6250
6251         * src/lyxfr1.C (IsSearchStringInText): changed iSrch from int to
6252         string::size_type.
6253
6254         * src/lyxfunc.C (Dispatch): use string::size_type as loop variable.
6255
6256         * src/lyx_cb.C (ReplaceWord): use string::size_type as loop
6257         variable, also changed loop to go from 0 to lenght + 1, instead of
6258         -1 to length. This should be correct.
6259
6260         * src/LaTeX.C (scanError): use string::size_type as loop variable
6261         type.
6262
6263         * src/BufferView.C (WorkAreaButtonPress): moved #if 0 up two lines
6264         (l.896) since y_tmp and row was not used anyway.
6265
6266         * src/insets/insetref.C (escape): use string::size_type as loop
6267         variable type.
6268
6269         * src/insets/insetquotes.C (Width): use string::size_type as loop
6270         variable type.
6271         (Draw): use string::size_type as loop variable type.
6272
6273         * src/insets/insetlatexaccent.C (checkContents): use
6274         string::size_type as loop variable type.
6275
6276         * src/insets/insetlabel.C (escape): use string::size_type as loop
6277         variable type.
6278
6279         * src/insets/insetinfo.C: added an extern for current_view.
6280
6281         * src/insets/insetcommand.C (scanCommand): use string::size_type
6282         as loop variable type.
6283
6284         * most files: removed the RCS tags. With them we had to recompile
6285         a lot of files after a simple cvs commit. Also we have never used
6286         them for anything meaningful. 
6287
6288         * most files: tags-query-replace NULL 0. As adviced several plases
6289         we now use "0" instead of "NULL" in our code. 
6290
6291         * src/support/filetools.C (SpaceLess): use string::size_type as
6292         loop variable type.
6293
6294 1999-09-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
6295
6296         * src/paragraph.C: fixed up some more string stuff.
6297
6298 1999-09-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
6299
6300         * src/support/filetools.h: make modestr a std::string.
6301
6302         * src/filetools.C (GetEnv): made ch really const.
6303
6304         * src/lyxlib.h: removed the Maximum and Minimum inline functions,
6305         made code that used these use max/min from <algorithm> instead.
6306
6307         * changed several c library include files to their equivalent c++
6308         library include files. All is not changed yet.
6309
6310         * created a support subdir in src, put lyxstring and lstrings
6311         there + the extra files atexit, fileblock, strerror. Created
6312         Makefile.am. edited configure.in and src/Makefile.am to use this
6313         new subdir. More files moved to support.
6314
6315         * imported som of the functions from repository lyx, filetools
6316         
6317         * ran tags-query-replace on LString -> string, corrected the bogus
6318         cases. Tried to make use of lstrings.[hC], debugged a lot. There
6319         is still some errors in there. This is errors where too much or
6320         too litle get deleted from strings (string::erase, string::substr,
6321         string::replace), there can also be some off by one errors, or
6322         just plain wrong use of functions from lstrings. Viewing of quotes
6323         is wrong. 
6324
6325         * LyX is now running fairly well with string, but there are
6326         certainly some bugs yet (see above) also string is quite different
6327         from LString among others in that it does not allow null pointers
6328         passed in and will abort if it gets any.
6329         
6330         * Added the revtex4 files I forgot when setting up the repository.
6331
6332 1999-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
6333
6334         * All over: Tried to clean everything up so that only the files
6335           that we really need are included in the cvs repository.
6336         * Switched to use automake.
6337         * Generaton of reLyX is not perfect, LYX_DIR does not get substituted.
6338         * Install has not been checked.
6339
6340 1999-09-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
6341
6342         * po/pt.po: Three errors:
6343                l.533 and l.538 format specification error
6344                l. 402 duplicate entry, I just deleted it.
6345