]> git.lyx.org Git - features.git/blob - ChangeLog
b9191f14376334f753740c2394bf8c7edbf542e2
[features.git] / ChangeLog
1 2000-04-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
2
3         * src/font.[Ch]: new files. Contains the metric functions for
4         fonts, takes a LyXFont as parameter. Better separation of concepts.
5         
6         * src/lyxfont.[Ch]: move the metric functions to font.[Ch] several
7         changes because of this.
8
9         * src/PainterBase.[Ch] (width): remove, use the ones in font.C instead
10
11         * src/*: compile with -Winline and move functions that don't
12         inline out of line.
13         
14         * src/lyx_cb.C (stringOnlyContains): use string::find_first_not_of
15         instead of strspn.
16
17 2000-04-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
18
19         * src/paragraph.C (GetLabelstring): renamed from GetLabestring.
20         (various files changed because of this)
21
22         * src/Painter.C (text): fixed the drawing of smallcaps.
23
24         * src/lyxfont.[Ch] (drawText): removed unused member func.
25         (drawString): ditto
26
27         * src/*.C: added needed "using" statements and "std::" qualifiers. 
28
29 2000-03-31  Lars Gullik Bjønnes  <larsbj@lyx.org>
30
31         * src/*.h: removed all use of "using" from header files use
32         qualifier std:: instead. 
33
34 2000-04-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
35
36         * src/text.C (Backspace): some additional cleanups (we already
37         know whether cursor.pos is 0 or not).
38
39         * lib/reLyX/Makefile.am (DESTDIR): add an empty value (since
40         automake does not provide one).
41
42         * src/bmtable.h: replace C++ comments with C comments.
43
44 2000-04-02  Dekel Tsur <dekel@math.tau.ac.il>
45
46         * src/screen.C (ShowCursor): Change the shape of the cursor if
47         the current language is not equal to the language of the document.
48         (If the cursor change its shape unexpectedly, then you've found a bug)
49
50         * src/insets/insettext.C (LocalDispatch, UpdateLocal) Fixed some
51         bugs [I hope...]
52
53         * src/insets/insetnumber.[Ch]: New files.
54
55         * src/LyXAction.C (init)
56         * src/lyxfunc.C (dispatch): Add command number-inset-insert
57
58         * lyxrc.example
59         * src/lyxrc.C: Renamed command \auto_mathmode to \number_inset
60
61         * src/lyxparagraph.h
62         * src/paragraph.C: Changed insetlist to Vector<InsetTable>.
63         (the vector is kept sorted).
64
65         * src/text.C (GetVisibleRow): Draw selection correctly when there
66         is both LTR and RTL text.
67
68         * src/paragraph.C (Clone): Use the assignment operator for cloning,
69         which is much faster.
70
71         * src/text.C (GetVisibleRow and other): Do not draw the last space 
72         in a row if the direction of the last letter is not equal to the
73         direction of the paragraph.
74
75         * src/lyxfont.C (latexWriteStartChanges):
76         Check that font language is not equal to basefont language.
77         (latexWriteEndChanges): ditto
78
79         * src/lyx_cb.C (StyleReset): Don't change the language while using
80         the font-default command.
81
82         * src/paragraph.C (GetFirstFontSettings): Handle correctly an
83         empty paragraph before a footnote.
84
85         * src/insets/insetcommand.C (draw): Increase x correctly.
86
87         * src/screen.C (ShowCursor): Change cursor shape if
88         current language != document language.
89
90         * src/lyxfunc.C (dispatch): Added calls to owner->view()->setState()
91
92 2000-03-31  Juergen Vigna  <jug@sad.it>
93
94         * src/paragraph.C (GetInset): commented out text[pos] = ' '
95         (Clone): changed mode how the paragraph-data is copied to the
96         new clone-paragraph.
97
98         * src/lyxfunc.C (Dispatch): fixed small problem when calling
99         GetInset(pos) with no inset anymore there (in inset UNDO)
100
101         * src/insets/insetcommand.C (draw): small fix as here x is
102         incremented not as much as width() returns (2 before, 2 behind = 4)
103
104 2000-03-30  Juergen Vigna  <jug@sad.it>
105
106         * src/insets/insettext.C (InsetText): small fix in initialize
107         widthOffset (should not be done in the init() function)
108
109 2000-03-29  Amir Karger <karger@lyx.org>
110
111         * lib/examples/it_ItemizeBullets.lyx: translation by 
112         Stefano Mastella
113
114         * Implemented \textasciitilde and fixed a tiny bug in reLyX
115
116 2000-03-29  Juergen Vigna  <jug@sad.it>
117
118         * src/insets/insetcollapsable.C (Clone): same as in InsetFoot
119
120         * src/insets/insetfoot.C (Clone): small change as for the below
121         new init function in the text-inset
122
123         * src/insets/insettext.C (init): new function as I've seen that
124         clone did not copy the Paragraph-Data!
125         (LocalDispatch): Added code so that now we have some sort of Undo
126         functionality (well actually we HAVE Undo ;)
127
128         * src/text.C (Backspace): Small fix for the a | a Backspace problem
129
130 2000-03-24  Dekel Tsur <dekel@math.tau.ac.il>
131         
132         * src/paragraph.C (AutoDeleteInsets) Fixed a bug (wrong positions
133         were erased)
134
135 2000-03-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
136
137         * src/main.C: added a runtime check that verifies that the xforms
138         header used when building LyX and the library used when running
139         LyX match. Exit with a message if they don't match. This is a
140         version number check only.
141
142         * src/buffer.C (save): Don't allocate memory on the heap for
143         struct utimbuf times.
144
145         * *: some using changes, use iosfwd instead of the real headers.
146
147         * src/lyxfont.C use char const * instead of string for the static
148         strings. Rewrite some functions to use sstream.
149
150 2000-03-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
151
152         * src/text.C (Backspace): hopefully fix the dreaded backaspace
153         bug. 
154
155 2000-03-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
156
157         * lib/layouts/svjog.layout: new file, for Springer-Verlag Journal
158         of Geodesy (from Martin Vermeer)
159
160         * lib/layouts/svjour.inc: include file for the Springer svjour
161         class. It can be used to support journals other than JoG.
162
163         * lib/Makefile.am: use $(DESTDIR) make variable (from Arkadiusz
164         Miskiewicz <misiek@pld.org.pl>)
165         * lib/reLyX/Makefile.am: ditto.
166
167 2000-03-27  Juergen Vigna  <jug@sad.it>
168
169         * src/insets/insettext.C: added Cut/Copy/Paste inside insets,
170         also some modifications with operations on selected text.
171
172         * src/BufferView.C (checkInsetHit): Now hopefully fixed all the
173         problems with clicking on insets (last famous words ;)
174
175         * src/insets/insetcommand.C (draw): 
176         (width): Changed to have a bit of space before and after the inset so
177         that the blinking cursor can be seen (otherwise it was hidden)
178
179 2000-03-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
180
181         * config/gettext.m4 (AM_WITH_NLS): fix a gettext bug where -lintl
182         would not be added to the link list when an installed gettext (not
183         part of libc) is found.
184
185 2000-03-24  Juergen Vigna  <jug@sad.it>
186
187         * src/insets/insetcollapsable.C (Edit): 
188         * src/mathed/formula.C (InsetButtonRelease): 
189         (InsetButtonPress): fixed for new handling of ButtonPress/Release
190         handling.
191
192         * src/BufferView.C (workAreaButtonPress): 
193         (workAreaButtonRelease): 
194         (checkInsetHit): Finally fixed the clicking on insets be handled
195         correctly!
196
197         * src/insets/insetert.C (Edit): inserted this call so that ERT
198         insets work always with LaTeX-font
199
200 2000-03-21  Kayvan A. Sylvan  <kayvan@camel.internal.sylvan.com>
201
202         * src/lyx_main.C (easyParse): Removed misplaced gui=false which
203         caused lyx to startup with no GUI in place, causing in a crash
204         upon startup when called with arguments.
205
206 2000-03-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
207
208         * src/FontLoader.C: better initialization of dummyXFontStruct.
209
210 2000-03-20 José Abílio Matos <jamatos@lyx.org>
211
212         * src/lyxrc.[Ch] Removed \sgml_extra_options, added 6 other flags
213         for linuxdoc and docbook import and export format options.
214
215         * lib/lyxrc.example Example of default values for the previous flags.
216
217         * src/lyx_cb.C Use those flags instead of the hardwired values for
218         linuxdoc and docbook export.
219
220         * src/lyxfunc.[Ch] Added HTML export for linuxdoc and docbook, added
221         linuxdoc import.
222
223         * src/menus.C Added menus entries for the new import/exports formats.
224         
225 2000-03-09 André Pönitz <poenitz@mathematik.tu-chemnitz.de>
226
227         * src/lyxrc.*: Added support for running without Gui 
228         (\use_gui false)
229           
230         * src/FontLoader.C: sensible defaults if no fonts are needed
231
232         * src/lyx_cb.C: New function ShowMessage (writes either to the
233         minibuffer or cout in case of no gui
234         New function AskOverwrite for common stuff
235         Consequently various changes to call these functions
236
237         * src/lyx_main.C:  allow gui = false and handle lyxrc \use_gui false
238         wild guess at sensible screen resolution when having no gui
239
240         * src/lyxfont.C: no gui, no fonts... set some defaults
241
242 2000-03-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
243
244         * src/LColor.C: made the command inset background a bit lighter.
245
246 2000-03-20  Hartmut Goebel <goebel@noris.net>
247
248         * lib/layouts/stdstruct.inc: split into stdtitle.inc and
249         stdstruct.inc. Koma-Script added some title elements which
250         otherwise have been listed below "bibliography". This split allows
251         adding title elements to where they belong.
252
253         * lib/layouts/scrclass.inc: changed to include stdtitle.inc, then
254         define the additional tilte elements and then include
255         stdstruct.inc. 
256
257         * many other layout files: changed to include stdtitle.inc just
258         before stdstruct.inc.
259
260 2000-03-18 Dekel Tsur <dekel@math.tau.ac.il>
261
262         * src/buffer.C: (save) Added the option to store all backup files
263         in a single directory
264
265         * src/lyxrc.[Ch]: Added variable \backupdir_path
266
267         * lib/lyxrc.example: Added descriptions of recently added variables
268
269         * src/insets/insetbib.[Ch]: Fixed few bugs (crash when editing a
270         bibtex inset, not closing the bibtex popup when deleting the inset)
271
272 2000-03-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
273
274         * src/lyx_cb.C: add a couple using directives.
275
276 2000-03-17 José Abílio Matos <jamatos@lyx.org>
277         * src/lyx_cb.C (RunLinuxDoc) Removed the flag==-1 option for linuxdoc 
278         import based on the filename.
279         
280         * src/bufferlist.C () Removed the call to RunLinuxDoc where a linuxdoc
281         file would be imported at start, if the filename where of a sgml file.
282
283         * src/support/filetools.C (IsSGMLfilename) Removed, no longer needed.
284         
285         * src/support/filetools.h (IsSGMLfilename) Removed, no longer needed.
286         
287 2000-03-16 Dekel Tsur <dekel@math.tau.ac.il>
288         * src/lyxfont.h Replaced the member variable bits.direction by the
289         member variable lang. Made many changes in other files.
290         This allows having a multi-lingual document
291
292         * src/lyxfunc.C, src/lyx_cb.C Added a new command "language <l>"
293         that change the current language to <l>.
294         Removed the command "font-rtl"
295
296         * src/buffer.C Changed LYX_FORMAT to 2.16 (as I changed the file
297         format for Hebrew documents)
298
299         * src/lyxrc.C, src/lyxfunc.C Added a new lyxrc command "auto_mathmode"
300         When auto_mathmode is "true", pressing a digit key in normal mode 
301         will cause entering into mathmode.
302         If auto_mathmode is "rtl" then this behavior will be active only
303         when writing right-to-left text.
304
305         * src/text2.C (InsertStringA) The string is inserted using the
306         current font.
307
308         * src/paragraph.C (GetEndLabel) Gives a correct result for
309         footnote paragraphs.
310
311         * src/paragraph.C (PreviousBeforeFootnote) Fixed a small bug
312
313 2000-03-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
314
315         * src/text.C (Backspace): move RemoveParagraph and RemoveRow in
316         front of PasteParagraph. Never insert a ' '. This should at least
317         fix some cause for the segfaults that we have been experiencing,
318         it also fixes backspace behaviour slightly. (Phu!)
319
320         * src/support/lstrings.C (compare_no_case): some change to make it
321         compile with gcc 2.95.2 and stdlibc++-v3
322
323         * src/text2.C (MeltFootnoteEnvironment): change type o
324         first_footnote_par_is_not_empty to bool.
325
326         * src/lyxparagraph.h: make text private. Changes in other files
327         because of this.
328         (fitToSize): new function
329         (setContentsFromPar): new function
330         (clearContents): new function
331         (SetChar): new function
332
333         * src/paragraph.C (readSimpleWholeFile): deleted.
334
335         * src/lyx_cb.C (InsertAsciiFile): don't use a LyXParagraph to hold
336         the file, just use a simple string instead. Also read the file in
337         a more maintainable manner.
338
339         * src/text2.C (InsertStringA): deleted.
340         (InsertStringB): deleted.
341
342 2000-03-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
343
344         * src/text2.C (DeleteEmptyParagraphMechanism): don't run,
345         RedoParagraphs from the doublespace handling part, just set status
346         to NEED_MORE_REFRESH. Also don't update cursor position (should be
347         done, but perhaps not like this.)
348
349 2000-03-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
350
351         * src/text2.C (InsertStringA): don't forget to insert a META_INSET
352         character when inserting an inset.
353
354 2000-03-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
355
356         * src/bufferparams.C (readLanguage): now takes "default" into
357         consideration.
358
359         * src/lyx_main.C (LyX): remove the setup of lyxrc. (new)
360         also initialize the toplevel_keymap with the default bindings from
361         lyxrc. 
362         
363         * src/buffer.C (Buffer): remove lyxrc from the parameters.
364
365         * all files using lyxrc: have lyxrc as a real variable and not a
366         pointer. remove all extern LyXRC * lyxrc. The equiv to this is
367         done in lyxrc.h.
368         
369         * src/lyxrc.C: remove double call to defaultKeyBindings
370
371         * src/toolbar.[Ch]: Let the ToolbarDefaults handle the reading of
372         toolbar defauls using lyxlex. Remove enums, structs, functions
373         related to this. 
374
375         * src/lyxrc.h: use ToolbarDefaults instead of Toolbar for storing
376         toolbar defaults. Also store default keybindings in a map.
377
378         * src/ToolbarDefaults.[Ch]: New file. This class is used for
379         storing the toolbar defaults without any xforms dependencies. 
380
381         * src/insets/figinset.C: patch posted to list by Andre Poenitz
382         applied. Changed to use iterators.
383
384 2000-03-11  Kayvan A. Sylvan  <kayvan@satyr.sylvan.com>
385
386         * development/lyx.spec.in: Fix to ``unset LINGUAS'' line for
387         systems that don't have LINGUAS set to begin with.
388
389 2000-03-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
390
391         * src/text2.C (DeleteEmptyParagraphMechanism): small fix posted to
392         the list by Dekel Tsur.
393
394 2000-03-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
395
396         * src/insets/insetgraphics.C (GraphicxCB): declare with "C" linkage.
397         * src/insets/form_graphics.C: ditto.
398
399         * src/insets/inseturl.C (Latex): the free_spc argument is not used.
400
401 2000-03-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
402
403         * src/bufferparams.C (readLanguage): use the new language map
404
405         * src/intl.C (InitKeyMapper): use the new language map
406
407         * src/lyx_gui.C (create_forms): use the new language map
408
409         * src/language.[Ch]: New files. Used for holding the information
410         about each language. Now! Use this new language map enhance it and
411         make it really usable for our needs. 
412
413 2000-03-09 Dekel Tsur <dekel@math.tau.ac.il>
414         
415         * screen.C (ShowCursor): Removed duplicate code.
416         (ShowManualCursor): Support for 3 cursor shapes: Bar (default),
417         L (LTR text in RTL document), and reversed-L (RTL text in LTR document)
418         
419         * src/text.C (NextBreakPoint,Fill): Moved declaration of left_margin
420
421         * src/lyxtext.h
422         * src/text.C  Added TransformChar method. Used for rendering Arabic
423         text correctly (change the glyphs of the letter according to the
424         position in the word)
425
426         * src/buffer.C
427         * src/paragraph.C
428         * src/lyxrc.h
429         * src/lyxrc.C  Added lyxrc command {language_command_begin,
430         language_command_end,language_command_ltr,language_command_rtl,
431         language_package} which allows the use of either arabtex or Omega
432         for Arabic
433
434         * src/lyx_gui.C (init)
435         * src/lyxrc.h
436         * src/lyxrc.C Added lyxrc command screen_font_encoding_menu. Allows
437         to use encoding for menu fonts which is different than the encoding
438         for screen fonts
439
440         * src/buffer.C (makeLaTeXFile): If params.language = "default",
441         do not load the babel package.
442         To write an English document with Hebrew/Arabic, change the document
443         language to "english".
444
445         * src/text2.C (SetCounter): Fixed appendix labels for Hebrew document
446         (alphaCounter): changed to return char
447         (loweralphaCounter, hebrewCounter, romanCounter): New functions
448
449         * lib/lyxrc.example  Added examples for Hebrew/Arabic
450
451         * src/layout.h
452         * src/layout.C  Added layout command endlabeltype
453
454         * src/paragraph.C Added GetEndLabel(),LastPhysicalPar() const
455
456         * src/text.C (GetVisibleRow): Draw a box at the end of proof layout
457
458 2000-03-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
459
460         * src/mathed/math_delim.C (search_deco): return a
461         math_deco_struct* instead of index.
462
463 2000-03-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
464
465         * All files with a USE_OSTREAM_ONLY within: removed all code that
466         was unused when USE_OSTREAM_ONLY is defined.
467         
468         * src/support/lyxalgo.h (sorted): rewrote to use plain '<' instead
469         of any less. Removed header and using.
470
471         * src/text.C (GetVisibleRow): draw the string "Page Break
472         (top/bottom)" on screen when drawing a pagebreak line.
473
474 2000-03-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
475
476         * lib/doc/LaTeXConfig.lyx.in: add description of textclass llncs.
477
478         * src/mathed/math_macro.C (draw): do some cast magic.
479         (Metrics): ditto.
480
481         * src/mathed/math_defs.h: change byte* argument to byte const*.
482
483         * src/mathed/formulamacro.[Ch]: add free_spc to Latex() method.
484
485         * src/insets/insetfoot.[Ch]: Clone() always returns an Inset* (well I
486         know it is right to return InsetFoot* too, but cxx does not like
487         it...). 
488
489         * src/insets/insetcollapsable.[Ch] (Clone): make const.
490
491         * development/lyx.spec.in: unset LINGUAS to avoid i18n problems.
492
493         * src/mathed/math_delim.C: change == to proper assignment.
494
495 2000-03-09  Juergen Vigna  <jug@sad.it>
496
497         * src/insets/insettext.C (setPos): fixed various cursor positioning
498         problems (via mouse and cursor-keys)
499         (LocalDispatch): added posibility to add a Ctrl-Enter inside a text
500         inset (still a small display problem but it works ;)
501
502         * src/insets/insetcollapsable.C (draw): added button_top_y and
503         button_bottom_y to have correct values for clicking on the inset.
504
505         * src/support/lyxalgo.h: commented out 'using std::less'
506
507 2000-03-08  Juergen Vigna  <jug@sad.it>
508
509         * src/insets/insetcollapsable.C (InsetButtonRelease): Now a
510         Button-Release event closes as it is alos the Release-Event
511         which opens it.
512
513         * src/lyxfunc.C (Dispatch): forgot a break in the LFUN_INSET_ERT
514
515 2000-03-07  Kayvan A. Sylvan  <kayvan@camel.internal.sylvan.com>
516
517         * lib/layouts/literate-scrap.inc: Fixed initial comment. Now we
518         can add multiple spaces in Scrap (literate programming) styles...
519         which, by the way, is how I got hooked on LyX to begin with.
520  
521         * src/mathed/formula.C (Write): Added dummy variable to an
522         inset::Latex() call.
523         (Latex): Add free_spacing boolean to inset::Latex()
524
525         * src/mathed/formula.h (Latex): Added free_spacing boolean arg.
526         
527         * src/insets/lyxinset.h: Changed definition of the inset::Latex()
528         virtual function to include the free_spacing boolean from
529         the containing paragraph's style.
530  
531         * src/insets/inseturl.C, src/insets/inseturl.h (Latex):
532         Added free_spacing boolean arg to match inset.h
533         
534         * src/insets/insettext.C, src/insets/insettext.h (Latex):
535         Added free_spacing boolean arg to match inset.h
536         
537         * src/insets/insetspecialchar.C, src/insets/insetspecialchar.h (Latex):
538         Added free_spacing boolean and made sure that if in a free_spacing
539         paragraph, that we output normal space if there is a protected space.
540         
541         * src/insets/insetref.C, src/insets/insetref.h (Latex):
542         Added free_spacing boolean arg to match inset.h
543         
544         * src/insets/insetquotes.C, src/insets/insetquotes.h (Latex):
545         Added free_spacing boolean arg to match inset.h
546         
547         * src/insets/insetparent.C, src/insets/insetparent.h (Latex):
548         Added free_spacing boolean arg to match inset.h
549         
550         * src/insets/insetlatexaccent.C, src/insets/insetlatexaccent.h (Latex):
551         Added free_spacing boolean arg to match inset.h
552         
553         * src/insets/insetlatex.C, src/insets/insetlatex.h (Latex):
554         Added free_spacing boolean arg to match inset.h
555         
556         * src/insets/insetlabel.C, src/insets/insetlabel.h (Latex): Added
557         free_spacing boolean arg to match inset.h 
558         
559         * src/insets/insetinfo.C, src/insets/insetinfo.h (Latex):
560         Added free_spacing boolean arg to match inset.h
561         
562         * src/insets/insetinclude.C, src/insets/insetinclude.h (Latex):
563         Added free_spacing boolean arg to match inset.h
564         
565         * src/insets/insetgraphics.C, src/insets/insetgraphics.h (Latex):
566         Added free_spacing boolean arg to match inset.h
567         
568         * src/insets/inseterror.C, src/insets/inseterror.h (Latex):
569         Added free_spacing boolean arg to match inset.h
570         
571         * src/insets/insetcommand.C, src/insets/insetcommand.h (Latex):
572         Added free_spacing boolean arg to match inset.h
573         
574         * src/insets/insetbib.C, src/insets/insetbib.h (Latex): Added
575         free_spacing boolean arg to match inset.h
576         
577         * src/insets/figinset.C, src/insets/figinset.h (Latex): Added
578         free_spacing boolean arg to match inset.h
579         
580         * src/text2.C (DeleteEmptyParagraphMechanism): Fix this to
581         ignore free_spacing paragraphs. The user's spaces are left
582         alone. 
583         
584         * src/text.C (InsertChar): Fixed the free_spacing layout
585         attribute behavior. Now, if free_spacing is set, you can
586         add multiple spaces in a paragraph with impunity (and they
587         get output verbatim).
588         (SelectSelectedWord): Added dummy argument to inset::Latex()
589         call.
590         
591         * src/paragraph.C (TeXOnePar): Added dummy args to inset::Latex(...)
592         calls.
593         
594         * src/lyxfunc.C (Dispatch): Hard-spaces input in free_spacing
595         paragraph layouts now only input a simple space instead.
596         Special character insets don't make any sense in free-spacing
597         paragraphs.
598         
599         * src/buffer.C (parseSingleLyXformat2Token): Code to convert
600         hard-spaces in the *input* file to simple spaces if the layout
601         is free-spacing. This converts old files which had to have
602         hard-spaces in free-spacing layouts where a simple space was
603         preferrable.
604         (writeFileAscii): Added free_spacing check to pass to the newly
605         reworked inset::Latex(...) methods. The inset::Latex() code
606         ensures that hard-spaces in free-spacing paragraphs get output
607         as spaces (rather than "~").
608         
609 2000-03-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
610         
611         * src/mathed/math_delim.C (draw): draw the empty placeholder
612         delims with a onoffdash line.
613         (struct math_deco_compare): struct that holds the "functors" used
614         for the sort and the binary search in math_deco_table.
615         (class init_deco_table): class used for initial sort of the
616         math_deco_table. 
617         (search_deco): use lower_bound to do a binary search in the
618         math_deco_table.
619
620 2000-03-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
621
622         * src/lyxrc.C: a small secret thingie...
623
624         * src/lyxlex.C (printTable): changed to take a ostream as paramter
625         and to not flush the stream as often as it used to.
626
627         * src/support/lyxalgo.h: new file 
628         (sorted): template function used for checking if a sequence is
629         sorted or not. Two versions with and without user supplied
630         compare. Uses same compare as std::sort.
631
632         * src/lyxlex.C (LyXLex): check if the table is sorted, if not sort
633         it and give warning on lyxerr.
634         (pushTable): ditto
635         (struct compare_tags): struct with function operators used for
636         checking if sorted, sorting and lower_bound.
637         (search_kw): use lower_bound instead of manually implemented
638         binary search.
639
640 2000-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
641
642         * src/insets/insetcollapsable.h: fix Clone() declaration.
643         * src/insets/insetfoot.h: ditto.
644
645         * src/insets/lyxinset.h: remove an extra comma at the end of enum.
646
647 2000-03-08  Juergen Vigna  <jug@sad.it>
648
649         * src/insets/lyxinset.h: added owner call which tells us if
650         this inset is inside another inset. Changed also the return-type
651         of Editable to an enum so it tells clearer what the return-value is.
652
653         * src/insets/insettext.C (computeTextRows): fixed computing of
654         textinsets which split automatically on more rows.
655
656         * src/insets/insetert.[Ch]: changed this to be of BaseType
657         InsetCollapsable.
658
659         * src/insets/insetfoot.[Ch]: added footnote inset
660
661         * src/insets/insetcollapsable.[Ch]: added this BaseClass for
662         collapsable insets (like footnote, ert, ...)
663
664 2000-03-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
665
666         * src/lyxdraw.h: remvoe file
667
668         * src/lyxdraw.C: remove file
669
670         * src/insets/insettext.C: added <algorithm>.
671
672 2000-03-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
673
674         * src/mathed/math_panel.C (delim_cb): case MM_OK use string stream
675         (matrix_cb): case MM_OK use string stream
676
677         * src/mathed/formula.C (LocalDispatch): case LFUN_SETXY use string
678         stream.
679
680         * src/mathed/math_macro.C (draw): use string stream
681         (Metrics): use string stream
682
683         * src/paragraph.C (TeXFootnote): for case LyXParagraph::FIG, write
684         directly to the ostream.
685
686         * src/vspace.C (asString): use string stream.
687         (asString): use string stream
688         (asLatexString): use string stream
689
690         * src/lyx_cb.C (UpdateLayoutDocument): use string stream for
691         setting Spacing::Other.
692
693         * src/LaTeXFeatures.C (getPackages): use string stream instead of
694         sprintf when creating the stretch vale.
695
696         * src/text2.C (alphaCounter): changed to return a string and to
697         not use a static variable internally. Also fixed a one-off bug.
698         (SetCounter): changed the drawing of the labels to use string
699         streams instead of sprintf.
700
701         * src/support/lyxmanip.h: rewrite the newlineanDepth ostream
702         manipulator to use a scheme that does not require library support.
703         This is also the way it is done in the new GNU libstdc++. Should
704         work with DEC cxx now. 
705
706 2000-03-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
707
708         * src/mathed/math_inset.h (Write(ostream & os): add a space at the
709         end. This fixes a bug. 
710
711         * src/mathed (all files concerned with file writing): apply the
712         USE_OSTREAM_ONLY changes to mathed too.
713         
714         * src/support/DebugStream.h: make the constructor explicit.
715
716         * src/lyxfont.C (latexWriteStartChanges): small bug related to
717         count and ostream squashed.
718
719 2000-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
720
721         * src/support/Makefile.am (libsupport_la_SOURCES): add lyxmanip.h.
722
723         * src/buffer.C (makeLaTeXFile): add a .c_str(), since
724         ostringstream uses STL strings, and we might not.
725
726         * src/insets/insetspecialchar.C: add using directive.
727         * src/insets/insettext.C: ditto.
728
729 2000-03-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
730
731         * lib/layouts/seminar.layout: feeble attempt at a layout for
732         seminar.cls, far from completet and could really use some looking
733         at from people used to write layout files.
734
735         * src/support/lyxmanip.h (newlineAndDepth): ostream manipulator to
736         use instead of the AddNewlineAndDepth funtion in lyx_cb.C. This is
737         a lot nicer and works nicely with ostreams.
738
739         * src/mathed/formula.C (draw): a slightly different solution that
740         the one posted to the list, but I think this one works too. (font
741         size wrong in headers.)
742
743         * src/insets/insettext.C (computeTextRows): some fiddling on
744         Jürgens turf, added some comments that he should read.
745
746         * src/lyxrc.C: remove all traces of RC_NOMENUACCELERATORS, never
747         used and it gave compiler warnings.
748         RC_SHOW_BANNER + "\\show_banner" added, also to reading and
749         writing of lyxrc.
750
751         * src/lyx_gui.C (create_forms): do the right thing when
752         show_banner is true/false.
753
754         * src/lyx_cb.C (TimerCB): no need to close or do anything if
755         show_banner is false.
756
757         * most file writing files: Now use iostreams to do almost all of
758         the writing. Also instead of passing string &, we now use
759         stringstreams. mathed output is still not adapted to iostreams.
760         This change can be turned off by commenting out all the occurences
761         of the "#define USE_OSTREAM_ONLY 1" lines.
762         
763         * src/WorkArea.C (createPixmap): don't output debug messages.
764         (WorkArea): don't output debug messages.
765
766         * lib/lyxrc.example: added a comment about the new variable
767         \show_banner 
768
769         * development/Code_rules/Rules: Added some more commente about how
770         to build class interfaces and on how better encapsulation can be
771         achieved. 
772
773 2000-03-03  Juergen Vigna  <jug@sad.it>
774
775         * src/insets/insetert.C (InsetERT): Now ERT-insets break row
776         automatically with the width of the LyX-Window
777
778         * src/insets/insettext.C (computeTextRows): fixed update bug in
779         displaying text-insets (scrollvalues where not initialized!)
780
781 2000-03-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
782
783         * src/mathed/math_utils.C (MathedLookupBOP): using only res->id ==
784         id in the check of the result from lower_bound is not enough since
785         lower_bound can return last too, and then res->id will not be a
786         valid construct.
787
788         *  all insets and some code that use them: I have conditionalized
789         removed the Latex(string & out, ...) this means that only the
790         Latex(ostream &, ...) will be used. This is a work in progress to
791         move towards using streams for all output of files. 
792
793         * src/text.C (GetColumnNearX): initialize LyXParagraph::size_type
794         c to 0.
795
796 2000-03-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
797
798         * src/mathed/math_utils.C (MathedLookupBOP): fix the search
799         routine (this fixes bug where greek letters were surrounded by too
800         much white space).
801
802         * src/support/filetools.C (findtexfile): change a bit the search
803         algorithm, to fix bug introduced in 1.1.4. Note that --format is
804         no longer passed to kpsewhich, we may have to change that later.
805
806         * config/lyxinclude.m4 (LYX_PROG_CXX): better version-dependent
807         warning options to avoid problems with X header files (from Angus
808         Leeming).
809         * acinclude.m4: regenerated.
810
811 2000-03-02  Juergen Vigna  <jug@sad.it>
812
813         * src/insets/insettext.C (WriteParagraphData): Using the
814         par->writeFile() function for writing paragraph-data.
815         (Read): Using buffer->parseSingleLyXformat2Token()-function
816         for parsing paragraph data!
817
818         * src/buffer.C (readLyXformat2): removed all parse data and using
819         the new parseSingleLyXformat2Token()-function.
820         (parseSingleLyXformat2Token): added this function to parse (read)
821         lyx-file-format (this is called also from text-insets now!)
822
823 2000-03-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
824
825         * src/paragraph.C (BeginningOfMainBody): initialize previous_char
826         and temp.
827
828         * src/lyxfunc.C (Dispatch(LFUN_MENUSEARCH)): Do the Search dialog
829         directly instead of going through a func. One very bad thing: a
830         static LyXFindReplace, but I don't know where to place it. 
831
832         * src/lyxfr1.C (GetCurrentSelectionAsString): rewritten to use a
833         string instead of char[]. Also changed to static.
834         (GetSelectionOrWordAtCursor): changed to static inline
835         (SetSelectionOverLenChars): ditto.
836
837         * src/lyxfr0.[Ch] src/lyxfr1.[Ch]: rewrite to get rid of
838         current_view and global variables. both classes has changed names
839         and LyXFindReplace is not inherited from SearchForm.
840         
841         * src/lyx_gui_misc.C (CloseAllBufferRelatedPopups): remove the
842         fl_form_search form.
843
844         * src/lyx_gui.C (create_forms): removed the fl_form_search form.
845
846 2000-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
847
848         * lib/bind/*.bind: make sure 'buffer-previous' function is not
849         bound (from Kayvan).
850
851         * src/insets/Makefile.am (libinsets_la_SOURCES): add BoundingBox.h.
852
853         * lib/layouts/stdletter.inc: fix line spacing in Send_To_Address.
854
855 2000-03-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
856
857         * some things that I should comment but the local pub says head to
858         swirly... 
859         
860         * comment out all code that belongs to the Roff code for Ascii
861         export of tables. (this is unused)
862         
863         * src/LyXView.C: use correct type for global variable
864         current_layout. (LyXTextClass::size_type)
865
866         * some code to get the new insetgraphics closer to working I'd be
867         grateful for any help.
868         
869         * src/BufferView2.C (insertInset): use the return type of
870         NumberOfLayout properly. (also changes in other files)
871
872         * src/insets/insetspecialchar.[Ch]: add the PROTECTED SEPARATOR to
873         this as a test. I want to know what breaks because of this.
874
875         * src/BufferView.[Ch] (tripleClick): name change from trippleClick.
876
877 2000-02-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
878
879         * lib/layouts/stdlists.inc: changed the lyxlist latex definition
880         to use a \makebox in the label, this allows proper justification
881         with out using protected spaces or multiple hfills. Now it is
882         "label" for left justified, "\hfill label\hfill" for center, and
883         "\hfill label" for right justified. UserGuide.lyx sec. 3.3.6.5
884         should be changed accordingly. 
885
886 2000-02-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
887
888         * src/lyxtext.h: change SetLayout() to take a
889         LyXTextClass::size_type instead of a char (when there is more than
890         127 layouts in a class); also change type of copylayouttype.
891         * src/text2.C (SetLayout): ditto.
892         * src/LyXView.C (updateLayoutChoice): ditto.
893
894         * src/LaTeX.C (scanLogFile): errors where the line number was not
895         given just after the '!'-line were ignored (from Dekel Tsur).
896
897         * lib/lyxrc.example: fix description of \date_insert_format
898
899         * lib/layouts/llncs.layout: new layout, contributed by Martin
900         Vermeer. 
901
902 2000-02-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
903
904         * config/lyxinclude.m4 (LYX_PROG_CXX): remove case support for gcc
905         2.7.* and add case support for gcc 2.96*. Gcc 2.96 only exists in
906         cvs at gcc.gnu.org (currently it fails with ICE on insetbib.C,
907         insetindex.C, insetloa.C, insettext.C, filetools.C, BufferView.C,
908         BufferView2.C, LyXView.C, buffer.C, lyx_cb.C, lyxfunc.C,
909         paragraph.C, text.C, text2.C)
910
911 2000-02-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
912
913         * src/insets/insettext.C (LocalDispatch): remove extra break
914         statement. 
915
916         * src/insets/insetert.[Ch] (Clone): change return value to Inset*
917         * src/insets/insettext.[Ch] (Clone): change return value to Inset*
918
919         * src/mathed/formulamacro.[Ch] (draw): add missing const qualifier
920         * src/insets/insettext.[Ch] (GetCursorPos): ditto
921
922         * src/insets/insetbib.h: move InsetBibkey::Holder and
923         InsetCitation::Holder in public space.
924
925 2000-02-25  Lars Gullik Bjønnes <larsbj@lyx.org>
926
927         * src/insets/insettext.h: small change to get the new files from
928         Juergen to compile (use "string", not "class string").
929
930         * src/insets/insettext.[Ch], src/insets/insertert.[Ch]: use string
931         const & as parameter to LocalDispatch, use LyXFont const & as
932         paramter to some other func. This also had impacto on lyxinsets.h
933         and the two mathed insets.
934
935 2000-02-24  Juergen Vigna  <jug@sad.it>
936
937         * src/buffer.C:
938         * src/commandtags.h: 
939         * src/LyXAction.C:
940         * src/lyxfunc.C: added code for LFUN_INSET_ERT and LFUN_INSET_TEXT
941
942         * src/BufferView.h
943         * src/BufferView.C
944         * src/BufferView2.C: added/updated code for various inset-functions
945
946         * src/insets/insetert.[Ch]: added implementation of InsetERT
947
948         * src/insets/insettext.[Ch]: added implementation of InsetText
949
950         * src/insets/inset.C (Edit): added "unsigned int button" parameter
951         (draw): added preliminary code for inset scrolling not finshed yet
952
953         * src/insets/inset.C (LocalDispatch): changed arg parameter to string
954         as it is in lyxfunc.C now
955
956         * src/insets/lyxinset.h: Added functions for text-insets
957
958 2000-02-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
959
960         * src/lyx_cb.C src/UpdateInset.[Ch]: move the updateinsetlist into
961         BufferView and reimplement the list as a queue put inside its own
962         class.
963
964         * src/bufferlist.[Ch] (updateInset): remove func, not needed.
965
966         * several files: use the new interface to the "updateinsetlist"
967         
968         * src/WorkArea.C (work_area_handler): call BufferView::doubleClick
969         on doubleclick.
970         (work_area_handler): call BufferView::trippleClick on trippleclick.
971
972         * src/BufferView.C (doubleClick): new function, selects word on
973         doubleclick. 
974         (trippleClick): new function, selects line on trippleclick.
975
976 2000-02-22  Allan Rae  <rae@lyx.org>
977
978         * lib/bind/xemacs.bind: buffer-previous not supported
979
980 2000-02-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
981
982         * src/insets/insettoc.[Ch] (LinuxDoc, DocBook): mark the methods
983         as const.
984
985 2000-02-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
986
987         * src/bufferlist.C: get rid of current_view from this file
988
989         * src/spellchecker.C: get rid of current_view from this file
990
991         * src/vspace.C: get rid of current_view from this file
992         (inPixels): added BufferView parameter for this func
993         (asLatexCommand): added a BufferParams for this func
994
995         * src/text.C src/text2.C: get rid of current_view from these
996         files.
997         
998         * src/lyxfont.C (getFontDirection): move this function here from
999         text.C
1000         
1001         * src/bufferparams.C (getDocumentDirection): move this function
1002         here from text.C
1003
1004         * src/paragraph.C (getParDirection): move this function here from
1005         text.C 
1006         (getLetterDirection): ditto
1007         
1008 2000-02-18  Lars Gullik Bjønnes  <larsbj@lyx.org>
1009
1010         * WorkArea, Painter, LyXScreen: Fixed the crash that occured on
1011         resize due to wrong pixmap beeing used. Also took the opurtunity
1012         to make the LyXScreen stateless on regard to WorkArea and some
1013         general cleanup in the same files.
1014         
1015 2000-02-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
1016
1017         * src/Makefile.am: add missing direction.h
1018
1019         * src/PainterBase.h: made the width functions const.
1020         
1021         * lib/kbd/iso8859-1.cdef: fix a couple of entries and define some
1022         missing ones.
1023         
1024         * src/insets/insetcommand.C (draw): draw Editable as buttons.
1025
1026         * src/insets/insetlatexaccent.C (draw): make the accents draw
1027         better, at present this will only work well with iso8859-1.
1028         
1029         * several files: remove the old drawing code, now we use the new
1030         painter only.
1031
1032         * several files: remove support for mono_video, reverse_video and
1033         fast selection.
1034
1035 2000-02-17  Juergen Vigna  <jug@sad.it>
1036
1037         * src/mathed/math_cursor.[Ch] (SelGetArea): Changed form int * to
1038         int ** as we have to return the pointer, otherwise we have only
1039         NULL pointers in the returning function.
1040
1041 2000-02-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1042
1043         * src/LaTeX.C (operator()): quote file name when running latex.
1044
1045 2000-02-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
1046
1047         * src/toolbar.C (set): use fl_set_object_helper for the tooltop
1048         (bubble tip), this removes our special handling of this.
1049
1050         * Remove all code that is unused now that we have the new
1051         workarea. (Code that are not active when NEW_WA is defined.)
1052
1053         * Make the uses of XSync not conditionalized on define USE_XSYNC.
1054         
1055 2000-02-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1056
1057         * src/lyxfunc.C (Dispatch): fix LFUN_LAYOUT when giving a
1058         nonexisting layout; correctly redirect obsoleted layouts.
1059
1060         * lib/lyxrc.example: document \view_dvi_paper_option
1061
1062         * src/lyxrc.[Ch]: add support for the \view_dvi_paper_option
1063         variable. 
1064
1065         * src/lyx_cb.C (RunScript): handle $$FName for command names. 
1066         (PreviewDVI): handle the view_dvi_paper_option variable.
1067         [Both from Roland Krause]
1068
1069 2000-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
1070
1071         * src/Painter.C (text(int,int,char,LyXFont)): call text(int, int,
1072         char const *, int, LyXFont)
1073         (text(int, int, string, LyXFont)): ditto 
1074
1075         * src/text.C (InsertCharInTable): attempt to fix the double-space
1076         feature in tables too.
1077         (BackspaceInTable): ditto.
1078         (GetVisibleRow): make bottom pagebreak line be a onoff line.
1079
1080 2000-02-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
1081
1082         * src/text2.C (owner): only complain if owner_ is set and bv != 0
1083
1084         * src/BufferView.C (resizeCurrentBuffer): set the owner of the
1085         newly found text in textcache to this.
1086         (buffer): set the owner of the text put into the textcache to 0
1087
1088         * src/insets/figinset.C (draw): fixed the drawing of figures with
1089         the new Painter.
1090
1091         * src/text.C src/mathed/math_cursor.C: nailed and fixed the
1092         drawing of mathframe, hfills, protected space, table lines. I have
1093         now no outstanding drawing problems with the new Painter code. 
1094
1095 2000-02-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1096
1097         * src/PainterBase.C (ellipse, circle): do not specify the default
1098         arguments. 
1099
1100         * src/LColor.h: add using directive.
1101
1102         * src/Painter.[Ch]: change return type of methods from Painter& to
1103         PainterBase&. Add a using directive.
1104
1105         * src/WorkArea.C: wrap xforms callbacks in C functions
1106         C_WorkArea_xxx. 
1107
1108         * lib/layouts/foils.layout: font fix and simplifications from Carl
1109         Ollivier-Gooch.
1110
1111 2000-02-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
1112
1113         * a lot of files: The Painter, LColor and WorkArea from the old
1114         devel branch has been ported to lyx-devel. Some new files and a
1115         lot of #ifdeffed code. The new workarea is enabled by default, but
1116         if you want to test the new Painter and LColor you have to compile
1117         with USE_PAINTER defined (do this in config.h f.ex.) There are
1118         still some rought edges, and I'd like some help to clear those
1119         out. It looks stable (loads and displays the Userguide very well).
1120         
1121
1122 2000-02-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1123
1124         * src/buffer.C (pop_tag): revert to the previous implementation
1125         (use a global variable for both loops).
1126
1127         * lib/kbd/iso8859-1.cdef: fix definition for \"{e}.
1128
1129         * src/lyxrc.C (LyXRC): change slightly default date format.
1130
1131         * src/paragraph.C (TeXOnePar): Generate a correct latex file when
1132         there is an English text with a footnote that starts with a Hebrew
1133         paragraph, or vice versa.
1134         (TeXFootnote): ditto.
1135
1136         * src/text.C (LeftMargin): allow for negative values for
1137         parindent. Thanks to Philip Lehman <lehman@gmx.net> for testing
1138         this out.
1139
1140         * src/lyx_gui.C (create_forms): add iso88595 as a possible choice
1141         for input encoding (cyrillic)
1142
1143 2000-02-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1144
1145         * src/lyx_gui.C (create_forms): make combo box taller (from Dekel
1146         Tsur). 
1147
1148         * src/toolbar.C (set): ditto
1149         * src/insets/insetbib.C (create_form_citation_form): ditto
1150
1151         * lib/CREDITS: added Dekel Tsur.
1152
1153         * lib/kbd/hebrew.kmap, lib/kbd/null.kmap,
1154         lib/layouts/heb-article.layout, lib/layouts/heb-letter.layout: new
1155         hebrew supports files from Dekel Tsur.
1156         
1157         * lib/kbd/iso8859-8.cdef: new file, from Tzafrir Cohen
1158         <tzafrir@technion.ac.il> 
1159
1160         * src/lyxrc.C: put \date_insert_format at the right place.
1161
1162         * src/buffer.C (makeLaTeXFile): fix the handling of
1163         BufferParams::sides when writing out latex files.
1164
1165         * src/BufferView2.C: add a "using" directive.
1166
1167         * src/support/lyxsum.C (sum): when we use lyxstring,
1168         ostringstream::str needs an additional .c_str().
1169
1170 2000-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
1171
1172         * src/support/filetools.C (ChangeExtension): patch from Etienne
1173         applied.
1174
1175         * src/TextCache.C (show): remove const_cast and make second
1176         parameter non-const LyXText *.
1177
1178         * src/TextCache.h: use non const LyXText in show.
1179
1180         * src/paragraph.C (SimpleTeXSpecialChars): patch to make urls work
1181         with hebrew.
1182
1183 2000-02-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1184
1185         * src/support/lyxsum.C: rework to be more flexible.
1186         
1187         * several places: don't check if a pointer is 0 if you are going
1188         to delete it.
1189
1190         * src/text.C: remove some dead code.
1191
1192         * src/insets/figinset.C: remove some dead code
1193         
1194         * src/buffer.C: move the BufferView funcs to BufferView2.C
1195         remove all support for insetlatexdel
1196         remove support for oldpapersize stuff
1197         made some member funcs const
1198
1199         * src/kbmap.C: use a std::list to store the bindings in.
1200         
1201         * src/BufferView2.C: new file
1202
1203         * src/kbsequence.[Ch]: new files
1204         
1205         * src/LyXAction.C + others: remove all trace of buffer-previous
1206         
1207         * src/Bullet.[Ch]: moved ITEMIZE_DEFAULTS inside Bullet.C so that we
1208         only have one copy in the binary of this table.
1209         
1210         * hebrew patch: moved some functions from LyXText to more
1211         appropriate places. (LyXParagraph, BufferParams, LyXFont)
1212         
1213         * several files: remove support for XForms older than 0.88
1214         whitespace changes.
1215         remove some #if 0 #endif code
1216         
1217         * src/TextCache.[Ch]: new file. Holds the textcache.
1218
1219         * src/BufferView.C: changes to use the new TextCache interface.
1220         (waitForX): remove the now unused code.
1221         
1222         * src/BackStack.h: remove some commented code
1223
1224         * lib/bind/emacs.bind: remove binding for buffer-previous
1225
1226 2000-02-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
1227
1228         * applied the hebrew patch.
1229
1230         * src/lyxrow.h: make sure that all Row variables are initialized.
1231
1232         * src/text2.C (TextHandleUndo): comment out a delete, this might
1233         introduce a memory leak, but should also help us to not try to
1234         read freed memory. We need to look at this one.
1235
1236         * src/paragraph.C (SimpleDocBookOneTablePar): initialize column to 0
1237         (LyXParagraph): initalize footnotekind.
1238
1239         * src/lyxrc.C (output): added case RC_DATE_INSERT_FORMAT. Jug
1240         forgot this when applying the patch. Please heed the warnings.
1241
1242         * src/BufferView.C (buffer): a fix for the buffer-reload problem
1243         (aka. reformat problem)
1244
1245         * src/bufferlist.C (exists): made const, and use const_iterator
1246         (isLoaded): new func.
1247         (release): use std::find to find the correct buffer.
1248
1249         * src/bufferlist.h: made getState a const func.
1250         made empty a const func.
1251         made exists a const func.
1252         new func: isLoaded
1253
1254 2000-02-01  Juergen Vigna  <jug@sad.it>
1255
1256         * src/lyxfunc.C lyxrc.C: changed from insert-date to date-insert
1257
1258         * po/it.po: updated a bit the italian po file and also changed the
1259         'file nuovo' for newfile to 'filenuovo' without a space, this did
1260         annoy me a lot :)
1261         
1262         * src/lyxrc.C (LyXRC): added support for a default insert_date_format
1263         for the new insert_date command.
1264
1265         * src/lyxfunc.C (Dispatch): added support for a insert_date function
1266         from jdblair, to insert a date into the current text conforming to
1267         a strftime format (for now only considering the locale-set and not
1268         the document-language).
1269
1270 2000-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1271
1272         * src/lyxfont.C (textWidth): hopefully better fix for the Array
1273         Bounds Read error seen by purify. The problem was that islower is
1274         a macros which takes an unsigned char and uses it as an index for
1275         in array of characters properties (and is thus subject to the
1276         above error).
1277         (drawText): ditto.
1278
1279         * src/lyx_cb.C (UpdateLayoutDocument): use a switch to set
1280         correctly the paper sides radio buttons.
1281         (UpdateDocumentButtons): ditto.
1282
1283 2000-01-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
1284
1285         * src/kbmap.C (getsym + others): change to return unsigned int,
1286         returning a long can give problems on 64 bit systems. (I assume
1287         that int is 32bit on 64bit systems)
1288
1289 2000-01-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1290
1291         * src/lyxfunc.C (processKeyEvent): fix a the buffer returned by
1292         LyXLookupString to be zero-terminated. Really fixes problems seen
1293         by purify, I think.
1294
1295 2000-01-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
1296
1297         * src/lyxfunc.C (processKeyEvent): "fix" so that we never try to
1298         write a (char*)0 to the lyxerr stream.
1299
1300         * src/lastfiles.C: move algorithm before the using statemets.
1301
1302 2000-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1303
1304         * src/lastfiles.C: move using directives in global scope (egcs 1.x
1305         complains otherwise).
1306         * src/table.C: ditto
1307
1308         * lib/reLyX/reLyX.in: use variable @LYX_DIR@ as built-in data
1309         directory. 
1310
1311         * lib/reLyX/configure.in (LYX_DIR): re-introduce this variable
1312         that I removed earlier... It is really needed.
1313
1314         * lib/examples/multicol.lyx: new file, splitted from Extended.lyx. 
1315
1316 2000-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1317
1318         * INSTALL: update xforms home page URL.
1319
1320         * lib/configure.m4: fix a bug with unreadable layout files.
1321
1322         * src/table.C (calculate_width_of_column): add "using std::max"
1323         directive. 
1324
1325 2000-01-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
1326
1327         * several files: marked several lines with "DEL LINE", this is
1328         lines that can be deleted without changing anything.
1329         if (<ptr>) // DEL LINE  /* this line is _never_ needed. Delete
1330                                    checks this anyway */
1331                 delete <ptr>
1332
1333         * src/insets/insetlatexaccent.C: Changed some debugs to Debug::KEY
1334
1335         * src/DepTable.C (update): add a "+" at the end when the checksum
1336         is different. (debugging string only)
1337
1338         * src/paragraph.C (ReturnNextInsetPointer): fix bug that caused
1339         the next inset to not be displayed. This should also fix the list
1340         of labels in the "Insert Crossreference" dialog.
1341
1342 2000-01-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
1343
1344         * src/support/LSubstring.C (LSubstring): set pos to string::npos
1345         when regex was not found.
1346
1347         * src/support/lstrings.C (lowercase): use handcoded transform always.
1348         (uppercase): ditto
1349
1350         * src/text.C (Delete): fixed the crash. cursor.par->prev and
1351         old_cursor.par->prev could be 0.
1352
1353         * several files: changed post inc/dec to pre inc/dec
1354         
1355         * src/lastfiles.C (writeFile): use ostream_iterator and copy to
1356         write the lastfiles to file.
1357
1358         * src/BufferView.C (buffer): only show TextCache info when debugging
1359         (buffer): ditto
1360         (resizeCurrentBuffer): ditto
1361         (workAreaExpose): ditto
1362
1363         * lib/kbd/iso8859-7.cdef: changed to new quoting scheme
1364
1365         * lib/kbd/iso8859-2.cdef: changed to new quoting scheme
1366
1367         * src/insets/insetlatexaccent.C (Draw): make the display of UMLAUT
1368         a bit better by removing the special case for \i and \j.
1369
1370 2000-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1371
1372         * src/lyx_main.C (easyParse): remove test for bad comand line
1373         options, since this broke all xforms-related parsing.
1374
1375         * src/kbmap.C (getsym): set return type to unsigned long, as
1376         declared in header. On an alpha, long is _not_ the same as int.
1377
1378         * src/support/LOstream.h: add a "using std::flush;"
1379
1380         * src/insets/figinset.C: ditto.
1381
1382 2000-01-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
1383
1384         * src/bufferlist.C (write): use blinding fast file copy instead of
1385         "a char at a time", now we are doing it the C++ way.
1386
1387         * src/insets/figinset.C: get rid of struct pidwaitpit, use a
1388         std::list<int> instead.
1389         (addpidwait): reflect move to std::list<int>
1390         (sigchldchecker): ditto
1391
1392         * src/bmtable.c (fl_set_bmtable_file): have arguments in the X r5
1393         version also. 
1394
1395         * src/paragraph.C (FirstPhysicalPar): remove assert and comment
1396         that obviously was wrong...
1397
1398         * src/lyxfont.C (textWidth): have c as char c[2] instead of char
1399         c, this avoids warnings with purify and islower.
1400
1401         * src/insets/figinset.C: rename struct queue to struct
1402         queue_element and rewrite to use a std::queue. gsqueue is now a
1403         std::queue<queue_element>
1404         (runqueue): reflect move to std::queue
1405         (addwait): ditto
1406
1407         * src/support/lstrings.h (tostr): specialize for bool, otherwise
1408         we would get "1" "0" instead of "true" "false. Also make the tostr
1409         functions inline.
1410
1411 2000-01-21  Juergen Vigna  <jug@sad.it>
1412
1413         * src/buffer.C (writeFileAscii): Disabled code for special groff
1414         handling of tabulars till I fix this in table.C
1415
1416 2000-01-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1417
1418         * src/support/mkdir.C (mkdir): change second argument of mkdir to
1419         unsigned long int.
1420         * src/support/lyxlib.h: ditto.
1421
1422 2000-01-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
1423
1424         * src/insets/insetlatexaccent.C (Draw): make accents on top of 'i'
1425         and 'j' look better. This might fix the "macron" bug that has been
1426         observed.
1427
1428         * src/support/lstrings.[Ch] (tostr): reimplement all the tostr
1429         functions as one template function. Delete the old versions.
1430
1431         * src/support/lyxsum.C: move using std::ifstream inside
1432         MODERN_STL_STREAMS
1433
1434         * src/support/Makefile.am (libsupport_la_SOURCES): added mkdir.C
1435         and putenv.C
1436
1437         * src/mathed/formulamacro.C: delete #include "bufferlist.h" never used
1438
1439         * src/mathed/formula.C: delete #include "bufferlist.h" never used
1440
1441         * src/insets/figinset.C (InitFigures): use new instead of malloc
1442         to allocate memory for figures and bitmaps.
1443         (DoneFigures): use delete[] instead of free to deallocate memory
1444         for figures and bitmaps.
1445         (runqueue): use new to allocate 
1446         (getfigdata): use new/delete[] instead of malloc/free
1447         (RegisterFigure): ditto
1448
1449         * some files: moved some declarations closer to first use, small
1450         whitespace changes use preincrement instead of postincrement where
1451         it does not make a difference.
1452         
1453         * src/kbmap.[Ch]: delete code according to define NO_HASH, it is a
1454         step on the way to use stl::containers for key maps. 
1455
1456         * src/bufferlist.h: add a typedef for const_iterator and const
1457         versions of begin and end.
1458
1459         * src/bufferlist.[Ch]: change name of member variable _state to
1460         state_. (avoid reserved names)
1461         (makePup): removed
1462         (getFileNames): returns the filenames of the buffers in a vector.
1463
1464         * configure.in (ALL_LINGUAS): added ro
1465
1466         * src/support/putenv.C: new file
1467
1468         * src/support/mkdir.C: new file
1469
1470 2000-01-20  Allan Rae <rae@lyx.org>
1471
1472         * lib/layouts/IEEEtran.layout: Added several theorem environments
1473
1474         * lib/templates/IEEEtran.lyx: Example theorem environments and a
1475         couple of minor additions.
1476
1477         * lib/doc/LaTeXConfig.lyx.in:  Use URL insets for ftp sites 
1478         (except for those in footnotes of course)
1479
1480 2000-01-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
1481
1482         * src/lyxlookup.C (CloseLyXLookup): set xic=0; after destruction. 
1483
1484         * src/mathed/math_utils.C (MathedLookupBOP): rewrite to use
1485         std::sort and std::lower_bound instead of qsort and handwritten
1486         binarysearch.
1487         (struct compara): struct that holds the functors used by std::sort
1488         and std::lower_bound in MathedLookupBOP.
1489
1490 2000-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1491
1492         * src/support/LAssert.h: do not do partial specialization. We do
1493         not really need it.
1494
1495         * src/support/lyxlib.h: note that lyx::getUserName() and
1496         lyx::date() are not in use right now. Should these be suppressed?
1497
1498         * src/buffer.C (makeLaTeXFile): we do not need the user name here.
1499         (makeLinuxDocFile): do not put date and user name in linuxdoc
1500         headers. 
1501
1502         * src/support/lyxlib.h (kill): change first argument to long int,
1503         since that's what solaris uses.
1504
1505         * src/support/kill.C (kill): fix declaration to match prototype.
1506
1507         * config/lyxinclude.m4 (LYX_CXX_NAMESPACES): fix the macro to
1508         actually check whether namespaces are supported. This is not what
1509         it used to do.
1510
1511         * src/support/lyxsum.C: add a using directive.
1512
1513 2000-01-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
1514
1515         * src/support/kill.C: if we have namespace support we don't have
1516         to include lyxlib.h.
1517
1518         * src/support/lyxlib.h: use namespace lyx if supported.
1519
1520 2000-01-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
1521
1522         * src/support/date.C: new file
1523
1524         * src/support/chdir.C: new file
1525
1526         * src/support/getUserName.C: new file
1527
1528         * src/support/getcwd.C: new file
1529
1530         * src/support/abort.C: new file
1531
1532         * src/support/kill.C: new file
1533
1534         * src/support/lyxlib.h: moved all the functions in this file
1535         insede struct lyx. Added also kill and abort to this struct. This
1536         is a way to avoid the "kill is not defined in <csignal>", we make
1537         C++ wrappers for functions that are not ANSI C or ANSI C++.
1538
1539         * src/support/lyxsum.C (sum): use #ifdef MODERN_STL_STREAMS
1540         instead of #if __GLIBCPP__. Since lyxsum is now put inside struct
1541         lyx it has been renamed to sum.
1542
1543 2000-01-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1544
1545         * src/text.C: add using directives for std::min and std::max.
1546
1547 2000-01-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1548
1549         * src/texrow.C (getIdFromRow): actually return something useful in
1550         id and pos. Hopefully fixes the bug with positionning of errorbox
1551         insets. 
1552
1553         * src/lyx_main.C (easyParse): output an error and exit if an
1554         incorrect command line option has been given.
1555
1556         * src/spellchecker.C (ispell_check_word): document a memory leak.
1557
1558         * src/bufferlist.C (write): fix mismatched allocation/deletion,
1559         where a "struct utimbuf" is allocated with "new" and deleted with
1560         "delete[]". 
1561
1562 2000-01-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
1563
1564         * src/text2.C (CutSelection): don't delete double spaces.
1565         (PasteSelection): ditto
1566         (CopySelection): ditto
1567         
1568         * src/text.C (Backspace): don't delete double spaces.
1569
1570         * src/lyxlex.C (next): fix a bug that were only present with
1571         conformant std::istream::get to read comment lines, use
1572         std::istream::getline instead. This seems to fix the problem.
1573
1574 2000-01-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
1575
1576         * src/text2.C (DeleteEmptyParagraphMechanism): fix for the "not
1577         allowed to insert space before space" editing problem. Please read
1578         commends at the beginning of the function. Comments about usage
1579         are very welcome.
1580
1581         * src/text.C (InsertChar): fix for the "not allowed to insert
1582         space before space" editing problem.
1583
1584         * src/text2.C (DeleteEmptyParagraphMechanism): when
1585         IsEmptyTableRow can only return false this last "else if" will
1586         always be a no-op. Commented out.
1587
1588         * src/text.C (RedoParagraph): As far as I can understand tmp
1589         cursor is not really needed.
1590
1591         * src/lyxtext.[Ch] (IsEmptyTableCell): commented out. As used at
1592         present it could only return false anyway. 
1593         (several functions): Did something not so smart...added a const
1594         specifier on a lot of methods.
1595         
1596         * src/paragraph.C (BreakParagraph): removed the tmp->text.reserve
1597         and add a tmp->text.resize. The LyXParagraph constructor does the
1598         resize for us.
1599         (BreakParagraphConservative): ditto
1600
1601         * src/support/path.h (Path): add a define so that the wrong usage
1602         "Path("/tmp") will be flagged as a compilation error:
1603         "`unnamed_Path' undeclared (first use this function)"
1604
1605 2000-01-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1606
1607         * config/lyxinclude.m4 (LYX_FUNC_PUTENV_ARGTYPE): fix the macro,
1608         which was bogus for several reasons.
1609
1610         * src/LaTeX.C (scanAux): fix the regular expression used to scan
1611         .aux files. 
1612         (runBibTeX): ditto.
1613
1614         * autogen.sh: do not use "type -path" (what's that anyway?).
1615
1616         * src/support/filetools.C (findtexfile): remove extraneous space
1617         which caused a kpsewhich warning (at least with kpathsea version
1618         3.0). 
1619
1620 2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
1621
1622         * src/mathed/Makefile.am (noinst_LTLIBRARIES): use .la
1623
1624         * src/insets/Makefile.am (noinst_LTLIBRARIES): use .la
1625
1626         * src/Makefile.am (lyx_DEPENDENCIES): switch back to .la libs
1627
1628 2000-01-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1629
1630         * src/paragraph.C (BreakParagraph): do not reserve space on text
1631         if we don't need to (otherwise, if pos_end < pos, we end up
1632         reserving huge amounts of memory due to bad unsigned karma).
1633         (BreakParagraphConservative): ditto, although I have not seen
1634         evidence the bug can happen here.
1635
1636         * src/lyxparagraph.h: add a using std::list.
1637
1638 2000-01-11  Juergen Vigna  <jug@sad.it>
1639
1640         * src/menus.C (MenuDocu): output an Alert if the documentation-file
1641         could not be found.
1642
1643 2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
1644
1645         * src/vc-backend.C (doVCCommand): change to be static and take one
1646         more parameter: the path to chdir too be fore executing the command.
1647         (retrive): new function equiv to "co -r"
1648
1649         * src/bufferlist.C (loadLyXFile): implement the missing parts if
1650         file_not_found_hook is true.
1651
1652         * src/lyxvc.C (file_not_found_hook): implement file_not_found_hook.
1653
1654         * src/support/filetools.C (IsFileWriteable): use FileInfo to check
1655         if a file is readwrite,readonly...anything else.
1656
1657 2000-01-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
1658
1659         * src/lyx_cb.C (MakeLaTeXOutput): name change from MakeDVIOutput
1660         (CreatePostscript): name change from MenuRunDVIPS (or something)
1661         (PreviewPostscript): name change from MenuPreviewPS
1662         (PreviewDVI): name change from MenuPreviewDVI
1663
1664         * lib/lyxrc.example: added \pdflatex_command, \pdf_mode,
1665         \view_pdf_command., \pdf_to_ps_command
1666
1667         * lib/configure.m4: added search for PDF viewer, and search for
1668         PDF to PS converter. 
1669         (lyxrc.defaults output): add \pdflatex_command,
1670         \view_pdf_command and \pdf_to_ps_command.
1671
1672         * src/lyx_cb.C (MenuPreviewDVI): renamed from MenuPreview.
1673
1674         * src/bufferlist.C (write): we don't use blocksize for anything so
1675         I removed it.
1676
1677 2000-01-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1678
1679         * src/support/block.h: disable operator T* (), since it causes
1680         problems with both compilers I tried. See comments in the file.
1681
1682         * lib/reLyX/configure.in: do not define LYX_DIR. support flag
1683         --with-lyxname. 
1684
1685         * lib/reLyX/reLyX.in: change LYX_DIR to pkgdatadir; change env.
1686         variable LYX_DIR_10x to LYX_DIR_11x.
1687
1688         * src/Makefile.am: replace variable LYX_DIR with pkgdatadir.
1689
1690         * INSTALL: document --with-lyxname.
1691         * NEWS: ditto.
1692
1693         * configure.in: new configure flag --with-lyxname which allows to
1694         choose the name under which lyx is installed. Default is "lyx", of
1695         course. It used to be possible to do this with --program-suffix,
1696         but the later has in fact a different meaning for autoconf.
1697
1698         * src/support/lstrings.h (lstrchr): reformat a bit.
1699
1700         * src/lyxlex.h: include LIstream.h, for Sun CC this time.
1701         * src/mathed/math_defs.h: ditto.
1702
1703 2000-01-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
1704
1705         * src/lyxrc.[Ch]: New tag and variable "\make_backup". Defaults to
1706         true, decides if we create a backup file or not when saving. New
1707         tag and variable \pdf_mode, defaults to false. New tag and
1708         variable \pdflatex_command, defaults to pdflatex. New tag and
1709         variable \view_pdf_command, defaults to xpdf. New tag and variable
1710         \pdf_to_ps_command, defaults to pdf2ps.
1711
1712 2000-01-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
1713
1714         * src/bufferlist.C (close): don't call insetUnlock if the buffer
1715         does not have a BufferView.
1716         (unlockInset): ditto + don't access the_locking_inset if the
1717         buffer does not have a BufferView.
1718
1719         * src/LyXView.C (KeyPressMask_raw_callback): add a XSync in
1720         certain circumstances so that we don't continue a keyboard
1721         operation long after the key was released. Try f.ex. to load a
1722         large document, press PageDown for some seconds and then release
1723         it. Before this change the document would contine to scroll for
1724         some time, with this change it stops imidiatly.
1725
1726         * src/support/block.h: don't allocate more space than needed. As
1727         long as we don't try to write to the arr[x] in a array_type arr[x]
1728         it is perfectly ok. (if you write to it you might segfault).
1729         added operator value_type*() so that is possible to pass the array
1730         to functions expecting a C-pointer.
1731
1732         * lib/Makefile.am (dist-hook): don't fail completely if unable to
1733         cvs.
1734
1735         * intl/*: updated to gettext 0.10.35, tried to add our own
1736         required modifications. Please verify.
1737
1738         * po/*: updated to gettext 0.10.35, tried to add our own required
1739         modifications. Please verify.
1740         
1741         * src/support/lstrings.C (tostr): go at fixing the problem with
1742         cxx and stringstream. When stringstream is used return
1743         oss.str().c_str() so that problems with lyxstring and basic_string
1744         are avoided. Note that the best solution would be for cxx to use
1745         basic_string all the way, but it is not conformant yet. (it seems)
1746
1747         * src/lyx_cb.C + other files: moved several global functions to
1748         class BufferView, some have been moved to BufferView.[Ch] others
1749         are still located in lyx_cb.C. Code changes because of this. (part
1750         of "get rid of current_view project".)
1751
1752         * src/buffer.C + other files: moved several Buffer functions to
1753         class BufferView, the functions are still present in buffer.C.
1754         Code changes because of this.
1755
1756         * config/lcmessage.m4: updated to most recent. used when creating
1757         acinclude.m4.
1758
1759         * config/progtest.m4: updated to most recent. used when creating
1760         acinclude.m4.
1761         
1762         * config/gettext.m4: updated to most recent. applied patch for
1763         tmplinguas.
1764
1765         * config/gettext.m4.patch: new file that shows what changes we
1766         have done to the local copy of gettext.m4.
1767
1768         * config/libtool.m4: new file, used in creation of acinclude.m4
1769
1770         * config/lyxinclude.m4: new file, this is the lyx created m4
1771         macros, used in making acinclude.m4.
1772         
1773         * autogen.sh: GNU m4 discovered as a separate task not as part of
1774         the lib/configure creation. 
1775         Generate acinlucde from files in config. Actually cat
1776         lyxinclude.m4, libtool.m4 and gettext.m4 together. This makes it
1777         easier to upgrade .m4 files that really are external.
1778
1779         * src/Spacing.h: moved using std::istringstream to right after
1780         <sstream>. This should fix the problem seen with some compilers.
1781
1782 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
1783
1784         * src/lyx_cb.C: began some work to remove the dependency a lot of
1785         functions have on BufferView::text, even if not really needed.
1786         (GetCurrentTextClass): removed this func, it only hid the
1787         current_view. 
1788
1789         * src/Makefile.am (lyx_DEPENDENCIES): use support/libsupport.la I
1790         forgot this in last commit.
1791
1792         * src/Bullet.C (bulletEntry): use static char const *[] for the
1793         tables, becuase of this the return arg had to change to string.
1794         (bulletSize): ditto
1795         (~Bullet): removed unneeded destructor
1796
1797         * src/BufferView.C (beforeChange): moved from lyx_cb.C
1798         (insetSleep): moved from Buffer
1799         (insetWakeup): moved from Buffer
1800         (insetUnlock): moved from Buffer
1801
1802         * buffer.[Ch], BufferView.[Ch] + others: moved the_locking_inset
1803         from Buffer to BufferView.
1804         
1805         * acinclude.m4: include libtool.m4 from libtool 1.3.4.
1806
1807         * config/ltmain.sh: updated to version 1.3.4 of libtool
1808
1809         * config/ltconfig: updated to version 1.3.4 of libtool
1810
1811 2000-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1812
1813
1814         * src/buffer.C (pop_tag): fix a dubious for() loop initialization.
1815         Did I get that right?
1816
1817         * src/lyxlex.h: add a "using" directive or two.
1818         * src/Spacing.h: ditto.
1819         * src/insets/figinset.C: ditto.
1820         * src/support/filetools.C: ditto.
1821         * src/support/lstrings.C: ditto.
1822         * src/BufferView.C: ditto.
1823         * src/bufferlist.C: ditto.
1824         * src/lyx_cb.C: ditto.
1825         * src/lyxlex.C: ditto.
1826
1827         * NEWS: add some changes for 1.1.4.
1828         
1829 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
1830
1831         * src/BufferView.C: first go at a TextCache to speed up switching
1832         between documents.
1833
1834 2000-01-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1835
1836         * lib/examples/ItemizeBullets.lyx: update from Tino Meinen. 
1837         * lib/examples/nl_voorbeeld_ruw.lyx: ditto.
1838         * lib/examples/nl_voorbeeld_verlyxt.lyx: ditto.
1839         * lib/examples/nl_opsommingstekens.lyx: new translation from Tino
1840         Meinen.
1841         
1842         * src/mathed/math_defs.h (MathedRowSt): make sure that all
1843         members of the struct are correctly initialized to 0 (detected by
1844         purify) 
1845         * src/lyxrc.C (LyXRC): ditto for print_adapt_output.
1846         * src/insets/figinset.C (InsetFig): ditto for pswid and pshgh.
1847
1848         * src/insets/figinset.C (sigchldchecker): use "delete" to free a
1849         pidwait, since it was allocated with "new". This was potentially
1850         very bad. Thanks to Michael Schmitt for running purify for us.
1851
1852
1853 2000-01-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1854
1855         * src/lyx_gui_misc.C: add a 'using std::make_pair;' statement.
1856
1857         * src/lyx_gui_misc.h: add a 'using std::pair;' statement.
1858
1859 1999-12-30  Allan Rae  <rae@lyx.org>
1860
1861         * lib/templates/IEEEtran.lyx: minor change
1862
1863         * src/lyxvc.C (registrer, checkIn), src/lyx_cb.C (MenuInsertLabel),
1864         src/mathed/formula.C (LocalDispatch): askForText changes
1865
1866         * src/lyx_gui_misc.[Ch] (askForText): now returns a bool also so we 
1867         know when a user has cancelled input. Fixes annoying problems with
1868         inserting labels and version control.
1869
1870 1999-12-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
1871
1872         * src/support/lstrings.C (tostr): rewritten to use strstream and
1873         stringstream
1874
1875 1999-12-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
1876
1877         * src/support/filetools.C (IsFileWriteable): use fstream to check
1878         (IsDirWriteable): use fileinfo to check
1879
1880         * src/support/filetools.h (FilePtr): whole class deleted
1881
1882         * src/insets/figinset.C (GetPSSizes): rewritten to use ifstream.
1883
1884         * src/lyxparagraph.h (readSimpleWholeFile): make arg istream
1885
1886         * src/lyx_cb.C (InsertAsciiFile): use ifstream instead of FilePtr
1887
1888         * src/bufferlist.C (write): use ifstream and ofstream instead of
1889         FILE*
1890
1891         * src/Spacing.h: use istrstream instead of sscanf
1892
1893         * src/mathed/math_defs.h: change first arg to istream from FILE*
1894
1895         * src/buffer.C (insertLyXFile): use ifstream instead of FilePtr
1896
1897         * src/mathed/math_parser.C: have yyis to be an istream 
1898         (LexGetArg): use istream (yyis)
1899         (yylex): ditto
1900         (mathed_parse): ditto
1901         (mathed_parser_file): first arg istream instead of FILE*, set yyis
1902
1903         * src/mathed/formula.C (Read): rewritten to use istream
1904
1905         * src/mathed/formulamacro.C (Read): rewritten to use istream
1906
1907         * src/lyxlex.h (~LyXLex): deleted desturctor 
1908         (getStream): new function, returns an istream
1909         (getFile): deleted funtion
1910         (IsOK): return is.good();
1911
1912         * src/lyxlex.C (LyXLex): delete file and owns_file
1913         (setFile): open an filebuf and assign that to a istream instead of
1914         using FILE*
1915         (setStream): new function, takes an istream as arg. 
1916         (setFile): deleted function
1917         (EatLine): rewritten us use istream instead of FILE*
1918         (next): ditto
1919         (nextToken): ditto
1920
1921         * src/table.C (LyXTable): use istream instead of FILE*
1922         (Read): rewritten to take an istream instead of FILE*
1923
1924 1999-12-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1925
1926         * src/buffer.C (Dispatch): remove an extraneous break statement.
1927
1928         * src/support/filetools.C (QuoteName): change to do simple
1929         'quoting'. More work is necessary. Also changed to do nothing
1930         under emx (needs fix too).
1931         (Putenv): Cast the argument of putenv() with PUTENV_TYPE_ARG.
1932
1933         * acinclude.m4 (STL_STRING_FWD_H_LOCATION): add the comment for
1934         config.h.in to the AC_DEFINE_UNQUOTED() call.
1935         (LYX_FUNC_PUTENV_ARGTYPE): new macro. Checks whether putenv()
1936         needs char * as argument (because Solaris 7 declares it like
1937         that). 
1938
1939         * acconfig.h: remove placeholder for STL_STRING_FWD_H_LOCATION;
1940         remove definition of BZERO.
1941
1942 1999-12-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
1943
1944         * src/support/LRegex.C: include <regex.h> if HAVE_REGEX_H is
1945         defined, "lyxregex.h" if not.
1946
1947         * src/support/Makefile.am (noinst_LTLIBRARIES): changed from
1948         pkglib_ to noinst_
1949         (REGEX): new variable that is set to regex.c lyxregex.h when
1950         AM_CONDITIONAL USE_REGEX is set.
1951         (libsupport_la_SOURCES): add $(REGEX)
1952
1953         * src/mathed/Makefile.am (noinst_LTLIBRARIES): changed from
1954         pkglib_ to noinst_
1955
1956         * src/insets/Makefile.am (noinst_LTLIBRARIES): changed from
1957         pkglib_ to noinst_
1958
1959         * configure.in: add call to LYX_REGEX 
1960
1961         * acinclude.m4 (LYX_REGEX): checks if we need to use the included
1962         regex or not. Uses a a AM_CONDITIONAL to decide what to compile. 
1963
1964 1999-12-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1965
1966         * lib/bind/fi_menus.bind: new file, from
1967         pauli.virtanen@saunalahti.fi. 
1968
1969         * src/buffer.C (getBibkeyList): pass the parameter delim to
1970         InsetInclude::getKeys and InsetBibtex::getKeys.
1971
1972         * src/insets/insetinclude.[Ch] (getKeys): add parameter delim, which
1973         is passed to Buffer::getBibkeyList
1974         
1975         * src/insets/insetbib.[Ch] (getKeys): add parameter delim, and use it
1976         instead of the hardcoded comma.
1977
1978         * src/insets/insetbib.C (getKeys): make sure that there are not
1979         leading blanks in bibtex keys. Normal latex does not care, but
1980         harvard.sty seems to dislike blanks at the beginning of citation
1981         keys. In particular, the retturn value of the function is
1982
1983         * INSTALL: make it clear that libstdc++ is needed and that gcc
1984         2.7.x probably does not work.
1985
1986         * src/support/filetools.C (findtexfile): make debug message go to
1987         the LATEX channel
1988         * src/insets/insetbib.C (getKeys): ditto
1989
1990         * src/debug.C (showTags): make sure that the output is correctly
1991         aligned. 
1992
1993         * configure.in: add a comment for TWO_COLOR_ICON define.
1994
1995         * acconfig.h: remove all the entries that already defined in
1996         configure.in or acinclude.m4.
1997
1998         * src/buffer.C (makeLaTeXFile): headers of latex file also changed
1999         to avoid user name, date and copyright.
2000
2001 1999-12-21  Juergen Vigna  <jug@sad.it>
2002
2003         * src/table.C (Read): Now read bogus row format informations
2004                 if the format is < 5 so that afterwards the table can
2005                 be read by lyx but without any format-info. Fixed the
2006                 crash we experienced when not doing this.
2007
2008 1999-12-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
2009
2010         * src/text2.C (RedoHeightOfParagraph): rename arg cursor -> cur
2011         (RedoDrawingOfParagraph): ditto
2012         (RedoParagraphs): ditto
2013         (RemoveTableRow): ditto
2014
2015         * src/text.C (Fill): rename arg paperwidth -> paper_width
2016
2017         * src/buffer.C (insertLyXFile): rename var filename -> fname
2018         (writeFile): rename arg filename -> fname
2019         (writeFileAscii): ditto
2020         (makeLaTeXFile): ditto
2021         (makeLinuxDocFile): ditto
2022         (makeDocBookFile): ditto
2023
2024         * src/LaTeX.C (runMakeIndex): change arg name from file -> f
2025         (runBibTeX): ditto
2026
2027         * src/Makefile.am (lyx_SOURCES): add bmtable.c and remove bmtable.C
2028
2029         * src/bmtable.h: add extern "C" on this file when __cplusplus is
2030         defined.
2031
2032         * src/bmtable.c: new file, a C'ified copy of bmtable.C, this is
2033         compiled by a C compiler not C++. 
2034
2035         * src/layout.h (LyXTextClass): added typedef for const_iterator
2036         (LyXTextClassList): added typedef for const_iterator + member
2037         functions begin and end.
2038
2039         * src/LyXView.C (UpdateDocumentClassChoice): rewritten to use
2040         iterators to fill the choice_class.
2041         (updateLayoutChoice): rewritten to use iterators to fill the
2042         layoutlist in the toolbar.
2043
2044         * src/BufferView.h (BufferView::work_area_width): removed unused
2045         variable. 
2046
2047         * src/lyx_gui_misc.C (WarnReadonly): added string parameter 'file'
2048
2049         * src/buffer.C (sgmlOpenTag): drop the use of the static space array
2050         (sgmlCloseTag): ditto
2051
2052         * src/support/lstrings.h: return type of countChar changed to
2053         unsigned char.
2054
2055         * src/support/lstrings.C (countChar): use HAVE_STD_COUNT to choose
2056         what version of this func to use. Also made to return unsigned int.
2057
2058         * configure.in: call LYX_STD_COUNT 
2059
2060         * acinclude.m4 (LYX_STD_COUNT): new function checks for a standard
2061         conforming std::count. 
2062
2063 1999-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2064
2065         * src/mathed/math_draw.C (Draw, Metrics): fix a bug where a prime
2066         and a subscript would give bad display (patch from Dekel Tsur
2067         <dekel@math.tau.ac.il>). 
2068
2069         * src/insets/insetlatexaccent.h: make sure ACCENT_TYPES is public. 
2070
2071         * src/spellchecker.C (create_ispell_pipe): use a const_cast to
2072         please sun CC.
2073
2074         * src/chset.h: add a few 'using' directives
2075
2076         * src/lyxfunc.C (Dispatch): check that LFUN_UNKNOWN_ACTION is not
2077         triggered when no buffer is active
2078
2079         * src/layout.C: removed `break' after `return' in switch(), since
2080         it is unreachable.
2081
2082         * src/lyx_main.C (init): make sure LyX can be ran in place even
2083         when libtool has done its magic with shared libraries. Fix the
2084         test for the case when the system directory has not been found.
2085
2086         * src/lyx_cb.C (MenuMakeLaTeX): make sure to keep the full path
2087         name for the latex file.
2088         (MenuMakeHTML): ditto
2089
2090         * src/buffer.h: add an optional boolean argument, which is passed
2091         to ChangeExtension.
2092
2093 1999-12-20  Allan Rae  <rae@lyx.org>
2094
2095         * lib/templates/IEEEtran.lyx: small correction and update.
2096
2097         * configure.in: Attempted to use LYX_PATH_HEADER
2098
2099         * src/stl_string_fwd.h: Don't need HAVE_STL_STRING_FWD_H anymore
2100
2101         * acconfig.h, acinclude.m4 (LYX_STL_STRING_FWD): totally revised after
2102         input from JMarc.  Now use preprocessor to find the header.
2103         Also stopped making HAVE_STL_STRING_FWD_H and extended the comments.
2104         (LYX_PATH_HEADER): My, so far, failed attempt to generalize
2105         LYX_STL_STRING_FWD.  See comments in file.      
2106
2107 1999-12-19  Asger Alstrup Nielsen  <alstrup@diku.dk>
2108
2109         * The global MiniBuffer * minibuffer variable is dead.
2110         
2111         * The global FD_form_main * fd_form_main variable is dead.
2112
2113 1999-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2114
2115         * src/toolbar.C (set): condition #warning on WITH_WARNINGS
2116
2117         * src/table.h: add the LOstream.h header
2118         * src/debug.h: ditto
2119         
2120         * src/LyXAction.h: change the explaination of the ReadOnly
2121         attribute: is indicates that the function _can_ be used.
2122
2123         * src/LyXAction.C (init): find-replace _can_ be used in read-only
2124         mode. 
2125
2126 1999-12-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2127
2128         * src/lyxfont.C (ascent): Make sure that char is _always_ used as
2129         unsigned. 
2130         (descent): ditto
2131         (lbearing): ditto
2132         (rbearing): ditto
2133
2134         * src/paragraph.C (GetWord): assert on pos>=0
2135         (GetChar): ditto
2136         
2137         * src/support/lyxstring.C: condition the use of an invariant on
2138         ENABLE_ASSERTIONS 
2139         * src/support/lyxstring.h: ditto
2140
2141         * src/Bullet.[Ch]: replace DEBUG_AS_DEFAULT by ENABLE_ASSERTIONS.
2142         Use LAssert.h instead of plain assert().
2143
2144         * src/support/lstrings.h: add LAssert.h, in case it is needed.
2145
2146         * src/lyxfunc.C: do not include LAssert.h, it is not used.
2147         * src/support/filetools.C: ditto
2148
2149         * src/support/LAssert.h: make Assert a no-op if ENABLE_ASSERTIONS
2150         is not defined. 
2151
2152         * INSTALL: document the new configure flags
2153         
2154         * configure.in: suppress --with-debug; add --enable-assertions
2155
2156         * acinclude.m4: various changes in alignment of help strings.
2157
2158 1999-12-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
2159
2160         * src/kbmap.C: commented out the use of the hash map in kb_map,
2161         beginning of movement to a stl::container. 
2162
2163         * several files: removed code that was not in effect when
2164         MOVE_TEXT was defined.
2165         
2166         * lib/kbd/iso8859-1.cdef: removed bogus backslashes. Backslashes
2167         for escaping should not be used. We can discuss if the string
2168         should be enclosed in f.ex. [] instead of "".
2169
2170         * src/trans_mgr.C (insert): use the new returned value from
2171         encodeString to get deadkeys and keymaps done correctly.
2172
2173         * src/chset.C (encodeString): changed to return a pair, to tell
2174         what to use if we know the string.
2175
2176         * src/lyxscreen.h (fillArc): new function.
2177
2178         * src/FontInfo.C (resize): rewritten to use more std::string like
2179         structore, especially string::replace.
2180
2181         * src/insets/insetlatexaccent.C (Draw): use fillArc for the
2182         approp. accents.
2183
2184         * configure.in (chmod +x some scripts): remove config/gcc-hack 
2185
2186 1999-12-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2187
2188         * src/buffer.C (writeFile): change once again the top comment in a
2189         .lyx file to point to www.lyx.org and to use LYX_DOCVERSION
2190         instead of an hardcoded version number.
2191         (makeDocBookFile): ditto
2192
2193         * src/version.h: add new define LYX_DOCVERSION
2194
2195         * po/de.po: update from Pit Sütterlin
2196         * lib/bind/de_menus.bind: ditto.
2197         
2198         * src/lyxfunc.C (Dispatch): call MenuExport()
2199         * src/buffer.C (Dispatch): ditto
2200
2201         * src/lyx_cb.C (MenuMakeHTML): new function, moved from
2202         LyXFunc::Dispatch().
2203         (MenuExport): new function, moved from
2204         LyXFunc::Dispatch().
2205
2206         * src/trans_mgr.C (insert): small cleanup
2207         * src/chset.C (loadFile): ditto
2208
2209         * lib/kbd/iso8859-1.cdef: add missing backslashes
2210
2211 1999-12-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
2212
2213         * src/insets/insetlatexaccent.C (Lbearing): new function, used to
2214         help with placing the manually drawn accents better.
2215         (Rbearing): ditto
2216         (Draw): x2 and hg changed to float to minimize rounding errors and
2217         help place the accents better.
2218
2219         * src/lyxfont.C (ascent): fixed faulty static_cast, casting from
2220         unsigned short to char is just wrong...cast the char to unsigned
2221         char instead so that the two values can compare sanely. This
2222         should also make the display of insetlatexaccents better and
2223         perhaps also some other insets.
2224         (descent): ditto
2225         (lbearing): new function
2226         (rbearing): ditto
2227
2228 1999-12-15  Allan Rae  <rae@lyx.org>
2229
2230         * src/stl_string_fwd.h, src/Makefile.am (lyx_SOURCES):  added new
2231         header that provides a wrapper around the very annoying SGI STL header
2232         of the same name.
2233
2234         * src/support/lyxstring.C, src/LString.h:
2235         removed old SGI-STL-compatability attempts.
2236
2237         * configure.in: Use LYX_STL_STRING_FWD.
2238
2239         * acinclude.m4 (LYX_STL_STRING_FWD), acconfig.h: Test if 
2240         stl_string_fwd.h is around and try to determine it's location.
2241         Major improvement over previous SGI STL 3.2 compatability.
2242         Three small problems remain with this function due to my zero
2243         knowledge of autoconf.  JMarc and lgb see the comments in the code.
2244
2245 1999-12-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2246
2247         * src/broken_const.h, config/hack-gcc, config/README: removed
2248         
2249         * configure.in: remove --with-gcc-hack option; do not call
2250         LYX_CXX_STL_STACK 
2251
2252         * INSTALL: remove documentation of --with-broken-const and
2253         --with-gcc-hack
2254         
2255         * acconfig.h: remove all trace of BROKEN_CONST define
2256
2257         * src/buffer.C (makeDocBookFile): update version number in output
2258         file. 
2259         (SimpleDocBookOnePar): fix an assert when trying to a character
2260         access beyond string length
2261         [Patch from Jose']
2262
2263 1999-12-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2264
2265         * po/de.po: fix the Export menu
2266
2267         * lyx.man: update the description of -dbg
2268
2269         * src/lyx_main.C (setDebuggingLevel): call Debug::showLevel()
2270         (commandLineHelp): updated
2271         (easyParse): show list of available debug levels if -dbg is passed
2272         without argument.
2273
2274         * src/Makefile.am: add debug.C
2275
2276         * src/debug.h: moved some code to debug.C
2277
2278         * src/debug.C: new file. Contains code to set and show debug
2279         level. 
2280
2281         * src/layout.C: remove 'break' after 'continue' in switch
2282         statements, since these cannot be reached.
2283
2284 1999-12-13  Allan Rae  <rae@lyx.org>
2285
2286         * src/mathed/math_hash.C (math_hash): renamed from hash(), name clash.
2287         (in_word_set): hash() -> math_hash()
2288
2289         * src/LString.h: Used USING_EXCEPTIONS in SGI STL-3.2 support 
2290
2291         * acconfig.h: Added a test for whether we are using exceptions in the
2292         current compilation run. If so USING_EXCEPTIONS is defined.
2293
2294         * config.in: Check for existance of stl_string_fwd.h
2295         * src/LString.h: If compiling --with-included-string and SGI's
2296         STL version 3.2 is present (see above test) we need to block their
2297         forward declaration of string and supply a __get_c_string().
2298         However, it turns out this is only necessary if compiling with
2299         exceptions enabled so I've a bit more to add yet.
2300
2301         * src/insets/figinset.[Ch], src/insets/insetinclude.C,
2302           src/insets/insetloa.C, src/layout.h, src/lyxparagraph.h,
2303           src/support/LRegex.h, src/undo.h:
2304         Shuffle the order of the included files a little to ensure that
2305         LString.h gets included before anything that includes stl_string_fwd.h
2306
2307         *  src/support/lyxstring.C: We need to #include LString.h instead of
2308         lyxstring.h to get the necessary definition of __get_c_string.
2309         (__get_c_string): New function.  This is defined static just like SGI's
2310         although why they need to do this I'm not sure.  Perhaps it should be
2311         in lstrings.C instead.
2312
2313         * lib/templates/IEEEtran.lyx:  New template file.
2314
2315 1999-12-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
2316         
2317         * Makefile.in.in (MKINSTALLDIRS): use $(srcdir)/@MKINSTALLDIRS@
2318         * intl/Makefile.in (MKINSTALLDIRS):  ditto
2319
2320         * src/LyXAction.C (init): changed to hold the LFUN data in a
2321         automatic array in stead of in callso to newFunc, this speeds up
2322         compilation a lot. Also all the memory used by the array is
2323         returned when the init is completed.
2324
2325         * a lot of files: compiled with -Wold-style-cast, changed most of
2326         the reported offenders to C++ style casts. Did not change the
2327         offenders in C files. 
2328
2329         * src/trans.h (Match): change argument type to unsigned int.
2330
2331         * src/support/DebugStream.C: fix some types on the streambufs so
2332         that it works on a conforming implementation.
2333
2334 1999-12-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2335
2336         * lib/examples/example_{raw,lyxified}.lyx: fix embarassing sentence.
2337
2338         * src/support/lyxstring.C: remove the inline added earlier since
2339         they cause a bunch of unsatisfied symbols when linking with dec
2340         cxx. Cxx likes to have the body of inlines at the place where they
2341         are declared.
2342
2343         * src/trans.C (AddDeadkey): add an 'unsigned char' cast to avoid
2344         accessing negative bounds in array. This fixes the crash when
2345         inserting accented characters.
2346         * src/trans.h (Match): ditto
2347
2348         * src/buffer.C (Dispatch): since this is a void, it should not try
2349         to return anything...
2350
2351 1999-12-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
2352
2353         * src/buffer.h: removed the two friends from Buffer. Some changes
2354         because of this. Buffer::getFileName and Buffer::setFileName
2355         renamed to Buffer::fileName() and Buffer::fileName(...).
2356
2357 1999-12-09  Lars Gullik Bjønnes <larsbj@lyx.org>
2358
2359         * buffer.[Ch], BufferView.[Ch] + other files: Moved Buffer::text
2360         and Buffer::update(short) to BufferView. This move is currently
2361         controlled by a define MOVE_TEXT, this will be removed when all
2362         shows to be ok. This move paves the way for better separation
2363         between buffer contents and buffer view. One side effect is that
2364         the BufferView needs a rebreak when swiching buffers, if we want
2365         to avoid this we can add a cache that holds pointers to LyXText's
2366         that is not currently in use. 
2367
2368         * buffer.[Ch], lyx_main.C: small changes to the "-export" patch by
2369         André Pönitz. 
2370
2371 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
2372
2373         * buffer.[Ch]: Dispatch() - new dispatcher on the buffer level
2374
2375         * lyx_main.C: new command line option -x (or --execute) and
2376           -e (or --export). Now direct conversion from .lyx to .tex
2377           (.dvi, .ps, ...) is possible  ('lyx file.lyx --export latex')
2378           Unfortunately, X is still needed and the GUI pops up during the
2379           process...
2380
2381 1999-12-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2382
2383         * src/Spacing.C: add a using directive to bring stream stuff into
2384         normal namespace.
2385         * src/paragraph.C: ditto
2386         * src/buffer.C: ditto
2387
2388         * NEWS: updated a bit the new features of 1.1.3 (took a few things
2389         from Lars' announcement).
2390
2391         * lib/examples/nl_voorbeeld_{ruw,verlyxt}.lyx: new tutorial
2392         example files from Tino Meinen.
2393         
2394 1999-12-06  Allan Rae  <rae@lyx.org>
2395
2396         * src/LaTeX.C (runBibTeX): fix typo in accessing submatch pair.
2397
2398 1999-12-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
2399
2400         * src/support/lyxstring.C: added a lot of inline for no good
2401         reason
2402         
2403         * src/lyxfont.[Ch]: removed latexWriteStartChanges, and
2404         latexWriteEndChanges, they were not used.
2405         
2406         * src/layout.h (operator<<): output operator for PageSides
2407
2408         * src/mathed/math_iter.C (my_memcpy): slightly changed.
2409
2410         * some example files: loaded in LyX 1.0.4 and saved again to update
2411         certain constructs (table format) 
2412
2413         * a lot of files: did the change to use fstream/iostream for all
2414         writing of files. Done with a close look at Andre Poenitz's patch.
2415
2416         * some files: whitespace changes.
2417         
2418 1999-12-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2419
2420         * src/mathed/math_iter.C (my_memcpy): new function. Since the
2421         built-in memcpy() is broken on egcs and gcc 2.95 for alpha
2422         architecture, we provide our own. It is used unconditionnally, but
2423         I do not think this is a performance problem. Thanks to Angus
2424         Leeming <a.leeming@ic.ac.uk> for the code (and again to Michal
2425         Jaegermann <michal@ellpspace.math.ualberta.ca> for finding it the
2426         first time).
2427         (GetInset): use my_memcpy.
2428         (Insert): ditto
2429         (Copy): ditto
2430
2431         * lib/chkconfig.ltx: some cleanup of the latex code. I am not sure
2432         it is easier to understand, but it uses less TeX-only constructs now.
2433
2434         * acinclude.m4 (LYX_SEARCH_PROG): make it work when the PATH
2435         elements contain spaces
2436
2437         * lib/configure: regenerated
2438         
2439         * lib/configure.m4 (SEARCH_PROG): make it work when the PATH
2440         elements contain spaces; display the list of programs that are
2441         tried.
2442
2443         * autogen.sh: make sure lib/configure is executable
2444
2445         * lib/examples/*: rename the tutorial examples to begin with the
2446         two-letters language code.
2447
2448         * src/lyxfunc.C (getStatus): do not query current font if no
2449         buffer exists.
2450
2451         * src/lyx_cb.C (RunScript): use QuoteName
2452         (MenuRunDvips): ditto
2453         (PrintApplyCB): ditto
2454
2455         * src/support/filetools.[Ch] (QuoteName): new function. Add quotes
2456         around argument, so that it works well with the current shell.
2457         Does not work properly with OS/2 shells currently.
2458
2459         * src/LaTeXLog.C (ShowLatexLog): use Buffer::getLatexName
2460         * src/LyXSendto.C (SendtoApplyCB): ditto
2461         * src/lyxfunc.C (Dispatch): ditto
2462         * src/buffer.C (runLaTeX): ditto
2463         (runLiterate): ditto
2464         (buildProgram): ditto
2465         (runChktex): ditto
2466         * src/lyx_cb.C (RunScript): ditto
2467         (MenuMakeLaTeX): ditto
2468         
2469         * src/buffer.h (getLatexName): new method 
2470
2471         * src/support/filetools.C (MakeLatexName): renamed from SpaceLess
2472
2473 1999-12-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2474
2475         * images/sqrt.xpm: change name of the sqrt icon to sqrt_xpm.
2476         * src/mathed/math_panel.C (mathed_get_pixmap_from_icon): ditto
2477         (create_math_panel): ditto
2478
2479         * src/lyxfunc.C (getStatus): re-activate the code which gets
2480         current font and cursor; add test for export to html.
2481
2482         * src/lyxrc.C (read): remove unreachable break statements; add a
2483         few "using".
2484
2485         * src/bmtable.C (fl_set_bmtable_data): add a const_cast.
2486         
2487 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
2488
2489         * src/mathed/formula.C (LocalDispatch): fix small whitspace bug
2490         introduced by faulty regex.
2491         * src/buffer.C: ditto
2492         * src/lastfiles.C: ditto
2493         * src/paragraph.C: ditto
2494         * src/table.C: ditto
2495         * src/vspace.C: ditto
2496         * src/insets/figinset.C: ditto
2497         Note: most of these is absolutely harmless, except the one in
2498         src/mathed formula.C.
2499
2500 1999-11-30  Kayvan A. Sylvan  <kayvan@satyr.sylvan.com>
2501
2502         * src/ImportNoweb.C (documentclass): fixed bounds for substr
2503           operation, yielding correct results for the reLyX command.
2504
2505 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
2506
2507         * src/support/filetools.C (ExpandPath): removed an over eager
2508         Assert.
2509         (ReplaceEnvironmentPath): ditto
2510
2511         * src/toolbar.C (BubbleTimerCB): use C++ style casts. This clearly
2512         shows that we are doing something fishy in our code...
2513         (BubblePost): ditto
2514         (ToolbarCB): ditto
2515
2516         * src/lyxrc.C (read): use a double switch trick to get more help
2517         from the compiler. (the same trick is used in layout.C)
2518         (write): new function. opens a ofstream and pass that to output
2519         (output): new function, takes a ostream and writes the lyxrc
2520         elemts to it. uses a dummy switch to make sure no elements are
2521         forgotten. 
2522
2523         * src/lyxlex.h: added a struct pushpophelper for use in functions
2524         with more than one exit point.
2525
2526         * src/lyxlex.[Ch] (GetInteger): made it const
2527         (GetFloat): ditto
2528         (GetBool): ditto
2529
2530         * src/lyxfunc.C (Dispatch): added case for LFUN_SAVEPREFERENCES
2531
2532         * src/layout.[hC] : LayoutTags splitted into several enums, new
2533         methods created, better error handling cleaner use of lyxlex. Read
2534         the diff.
2535
2536         * src/bmtable.[Ch]: change some member prototypes because of the
2537         image const changes. 
2538
2539         * commandtags.h, src/LyXAction.C (init): new function:
2540         "preferences-save", saves the lyxrc entries into .lyx/preferences.
2541         This file is not read automatically but you can add \input
2542         preferences to your lyxrc if you want to. We need to discuss how
2543         to handle this. 
2544
2545         * src/LaTeX.C (runBibTeX): use regex to match for the needed lines
2546         in .aux, also remove .bib and .bst files from dependencies when
2547         running bibtex.
2548
2549         * src/BufferView.C, src/LyXView.C: add const_cast several places
2550         because of changes to images.
2551
2552         * lib/images/*: same change as for images/*
2553         
2554         * lib/lyxrc.example: Default for accept_compound is false not no.
2555
2556         * images/*: changed to be const, however I have som misgivings
2557         about this change so it might be changed back.
2558
2559 1999-11-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2560
2561         * lib/configure, po/POTFILES.in: regenerated
2562
2563         * autogen.sh: autogenerate lib/configure from lib/configure.m4
2564
2565         * config/lib_configure.m4: removed
2566         
2567         * lib/configure.m4: new file (was config/lib_configure.m4)
2568
2569         * configure.in: do not test for rtti, since we do not use it.
2570         
2571 1999-11-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
2572
2573         * src/support/lyxstring.C (lyxstring::Srep): Changed to use a
2574         doubling of allocated space scheme. This makes it faster for large
2575         strings end to use less memory for small strings. xtra rememoved. 
2576
2577         * src/insets/figinset.C (waitalarm): commented out.
2578         (GhostscriptMsg): use static_cast
2579         (GhostscriptMsg): use new instead of malloc to allocate memory for
2580         cmap. also delete the memory after use.
2581
2582         * src/lyx_cb.C (SetXtermCursor): made cursor_undefined a bool
2583
2584         * src/LaTeX.C (scanAux): new method. Scans the .aux file and looks
2585         for changes in bibtex database or style.
2586         (runBibTeX): remove all .bib and .bst files from dep before we
2587         begin. 
2588         (run): use scanAuc in when dep file already exist.
2589
2590         * src/DepTable.C (remove_files_with_extension): new method
2591         (exist): new method
2592
2593         * src/DepTable.[Ch]: made many of the methods const. 
2594
2595 1999-11-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2596
2597         * src/bufferparams.C: make sure that the default textclass is
2598         "article". It used to be the first one by description order, but
2599         now the first one is "docbook".
2600
2601         * src/lyx_main.C (setDebuggingLevel): change type of argument to
2602         string; call Debug::value.
2603         (easyParse): pass complete argument to setDebuggingLevel().
2604
2605         * src/debug.h (value): fix the code that parses debug levels.
2606
2607         * src/debug.h: add new debug type ACTION, reserved for LyXAction
2608         class.  
2609
2610         * src/LyXAction.C: use Debug::ACTION as debug channel.
2611
2612         * src/lyxlookup.C: make the debug statements go to Debug::KEY.
2613
2614         * NEWS: updated for the future 1.1.3 release.
2615
2616         * src/mathed/symbol_def.h: swap the definitions of \varepsilon and
2617         \epsilon. Now \epsilon shows as red text, and \varepsilon shows as
2618         it should. This is of course a controversial change (since many
2619         people will find that their lyx workscreen is suddenly full of
2620         red), but done for the sake of correctness.
2621
2622         * src/mathed/formulamacro.h, src/mathed/math_macro.[Ch],
2623           src/mathed/math_root.[Ch] (Clone): return a MathedInset*  
2624
2625         * src/insets/inseterror.h, src/insets/inseturl.h,
2626           src/insets/insetinfo.h, src/insets/figinset.h,
2627           src/mathed/formulamacro.h, src/mathed/math_macro.h
2628           (EditMessage): add a missing const and add _() to make sure that
2629         translation happens
2630
2631         * src/ImportNoweb.C, src/LyXAction.h, src/insets/figinset.C,
2632           src/insets/insetbib.C, src/support/filetools.C: add `using'
2633         directives for cxx.  
2634
2635         * src/lyxfunc.C (Dispatch): make sure nothing bad happens when
2636         doing 'Insert index of last word' at the beginning of a paragraph.
2637
2638 1999-11-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
2639
2640         * several files: white-space changes.
2641
2642         * src/mathed/formula.C: removed IsAlpha and IsDigit
2643
2644         * src/insets/insetbib.C (getKeys): use findtexfile to look for the
2645         .bib file. use a ifstream instead of FilePtr when parsing the .bib
2646         file for keys.
2647
2648         * src/insets/figinset.C (GetPSSizes): don't break when
2649         "EndComments" is seen. But break when a boundingbox is read.
2650
2651         * all classes inherited from Inset: return value of Clone
2652         changed back to Inset *.
2653
2654         * all classes inherited form MathInset: return value of Clone
2655         changed back to MathedInset *.
2656         
2657         * src/insets/figinset.C (runqueue): use a ofstream to output the
2658         gs/ps file. Might need some setpresicion or setw. However I can
2659         see no problem with the current code.
2660         (runqueue): use sleep instead of the alarm/signal code. I just
2661         can't see the difference.
2662
2663         * src/paragraph.C (LyXParagraph): reserve space in the new
2664         paragraph and resize the inserted paragraph to just fit.
2665
2666         * src/lyxfunc.h (operator|=): added operator for func_status.
2667
2668         * src/lyxfunc.C (MenuNew): use FileInfo instead of FilePtr to
2669         check for readable file.
2670
2671         * src/lyx_cb.C (MenuMakeLaTeX): use FileInfo instead of FilePtr to
2672         check for readable file.
2673         (MenuMakeLinuxDoc): ditto
2674         (MenuMakeDocBook): ditto
2675         (MenuMakeAscii): ditto
2676         (InsertAsciiFile): split the test for openable and readable
2677
2678         * src/bmtable.C (draw_bitmaptable): use
2679         fl_state[fl_get_vclass()].depth instead of DefualtScreen.
2680
2681         * src/LaTeX.C, src/support/filetools.[Ch]: moved do_popen and
2682         findtexfile from LaTeX to filetools.
2683         
2684         * src/ImportNoweb.C (documentclass): rewrote to use ifstream
2685         instead of FilePtr. Needs to be verified by a literate user.
2686
2687 1999-11-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2688
2689         * src/mathed/formula.[Ch] (GetCursorPos): add a missing 'const'.
2690         (EditMessage): likewise.
2691
2692         * src/paragraph.C (SimpleTeXSpecialChars): output ~ and ^
2693         respectively as \textasciitilde and \textasciicircum.
2694
2695 1999-11-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
2696
2697         * src/support/lyxstring.h: made the methods that take iterators
2698         use const_iterator.
2699
2700         * src/support/lstrings.C (countChar): use std::cound(itr, itr, val)
2701         (regexMatch): made is use the real regex class.
2702
2703         * src/support/Makefile.am: changed to use libtool
2704
2705         * src/support/.cvsignore: added *.lo, .libs and libsupport.la
2706
2707         * src/mathed/math_defs.h: made the mathaligns be in a enum instead
2708         of defines.
2709         (MathIsInset ++): changed several macros to be inline functions
2710         instead. 
2711
2712         * src/mathed/Makefile.am: changed to use libtool
2713
2714         * src/mathed/.cvsignore: added *.lo, .libs and libmathed.la
2715
2716         * src/insets/inset* : Clone changed to const and return type is
2717         the true insettype not just Inset*.
2718         
2719         * src/insets/Makefile.am: changed to use libtool
2720
2721         * src/insets/.cvsignore: added *.lo, .libs and libinsets.la
2722
2723         * src/undo.[Ch] : added empty() and changed some of the method
2724         names.
2725         
2726         * src/texrow.[Ch]: rewrote to store texrow's in a std::list.
2727
2728         * src/lyxparagraph.h: use id() and id(...) instead of getID and
2729         setID use block<> for the bullets array, added const several places.
2730
2731         * src/lyxfunc.C (getStatus): new function
2732
2733         * src/lyxfunc.[Ch] : small changes to take advantage of the new
2734         LyXAction, added const to several funtions.
2735
2736         * src/filedlg.[Ch]: rewrote to store userchache and groupchache in
2737         a std::map, and to store the dir items in a vector.
2738
2739         * src/Makefile.am (lyx_DEPENDENCIES): changed to use libtool files
2740         as dependencies.
2741
2742         * src/LyXView.[Ch] + other files : changed currentView to view.
2743         
2744         * src/LyXAction.[Ch] : ported from the old devel branch.
2745         
2746         * src/.cvsignore: added .libs and a.out
2747
2748         * configure.in : changes to use libtool. 
2749
2750         * acinclude.m4 : inserted libtool.m4
2751
2752         * .cvsignore: added libtool
2753
2754 1999-11-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2755
2756         * src/Makefile.am (lyx_DEPENDENCIES): give the explicit object
2757         file name in insets and mathed directories (otherwise the
2758         dependency is not taken in account under cygwin).
2759
2760         * src/text2.C (InsertString[AB]): make sure that we do not try to
2761         read characters past the string length.
2762
2763 1999-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2764
2765         * lib/doc/LaTeXConfig.lyx.in, 
2766           lib/chkconfig.ltx: remove the test for linuxdoc-sgml.sty.
2767
2768         * src/buffer.C (writeFile): Do not add a comment on top of .lyx
2769         file saying who created them and when this heppened; this is
2770         useless and annoys tools like cvs.
2771
2772         * lib/layouts/g-brief-{en,de}.layout,
2773           lib/templates/g-brief-{en,de}.lyx: new versions of the textclass
2774         from Thomas Hartkens <thomas@hartkens.de>.
2775
2776         * src/{insets,mathed}/Makefile.am: do not declare an empty
2777         LDFLAGS, so that it can be set at configure time (useful on Irix
2778         for -n32 flag).
2779
2780         * lib/reLyX/configure.in: make sure that the prefix is set
2781         correctly in LYX_DIR.
2782
2783 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
2784
2785         * src/commandtags.h: introduction of a new tag 'LFUN_SEQUENCE' to
2786         be used by 'command-sequence' this allows to bind a key to a
2787         sequence of LyX-commands
2788         (Example: 'command-sequence math-insert alpha; math-insert beta;")
2789
2790         * src/LyXAction.C: add "command-sequence"
2791
2792         * src/LyXFunction.C: handling of "command-sequence"
2793
2794         * src/LyXFunction.[hC] changed LyXFunc::Dispatch(string const
2795          &cmd, string const &arg) to LyXFunc::Dispatch(string const& s)
2796
2797         * src/lyxserver.C, src/minibuffer.C: Use this new interface
2798
2799 1999-11-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2800
2801         * src/buffer.C (writeFile): Do not output a comment giving user
2802         and date at the beginning of a .lyx file. This is useless and
2803         annoys cvs anyway; update version number to 1.1.
2804
2805         * src/Makefile.am (LYX_DIR): add this definition, so that a
2806         default path is hardcoded in LyX.
2807
2808         * configure.in: Use LYX_GNU_GETTEXT.
2809
2810         * acinclude.m4 (LYX_GNU_GETTEXT): new macro, essentially a copy of
2811         AM_GNU_GETTEXT with a bug fixed. 
2812
2813         * src/lyx_cb.C (RunLinuxDoc): add a cast to please dec cxx.
2814
2815         * src/chset.C: add "using std::ifstream;" to please dec cxx.
2816
2817         * src/lyx_main.C (init), INSTALL.OS2: the environment variable
2818         which is used to point to LyX data is now LYX_DIR_11x.
2819
2820         * lyx.man: convert to a unix text file; small updates.
2821
2822 1999-11-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
2823
2824         * src/support/LSubstring.[Ch]: made the second arg of most of the
2825         constructors be a const reference. 
2826
2827         * src/mathed/math_parser.C (LexInitCodes): small bug introduced by
2828         me fixed.
2829
2830         * src/support/lyxstring.[Ch] (swap): added missing member function
2831         and specialization of swap(str, str); 
2832
2833         * src/menus.C (ShowBufferMenu): to use the new BufferStorage
2834
2835         * src/bufferlist.[Ch]: use the new BufferStorage class and remove all
2836         trace of the old one.
2837
2838         * src/undo.[Ch]: made the undostack use std::list to store undo's in
2839         put the member definitions in undo.C.
2840
2841         * src/lyxparagraph.h, src/paragraph.C + a lot of files: removed
2842         NEW_TEXT and have now only code that was included when this was
2843         defined. 
2844
2845         * src/intl.C (LCombo): use static_cast
2846         (LCombo2): ditto
2847         (DispatchCallback): ditto
2848
2849         * src/definitions.h: removed whole file
2850         
2851         * src/commandtags.h: comment out LFUN_INSERT_INSET_LATEX
2852
2853         * src/chset.[Ch]: a lot rewritten, does not use lyxlex for cdef
2854         parsing and stores in a std:map. a regex defines the file format.
2855         removed unneeded members.
2856
2857         * src/bufferparams.h: added several enums from definitions.h here.
2858         Removed unsused destructor. Changed some types to use proper enum
2859         types. use block to have the temp_bullets and user_defined_bullets
2860         and to make the whole class assignable.
2861
2862         * src/bufferparams.C (Copy): removed this functions, use a default
2863         assignment instead. 
2864
2865         * src/buffer.h: made isLatex, isLinuxDoc, isDocBook, isSGML and
2866         isLiterate const.
2867
2868         * src/buffer.C (readLyXformat2): commend out all that have with
2869         oldpapersize to do. also comment out all that hve to do with
2870         insetlatex and insetlatexdel. 
2871         (setOldPaperStuff): commented out
2872
2873         * src/Makefile.am (lyx_SOURCES): remove definitions.h, add undo.C
2874
2875         * src/LyXAction.C: remove use of inset-latex-insert
2876
2877         * src/mathed/math_panel.C (button_cb): use static_cast
2878
2879         * src/insets/Makefile.am (insets_o_SOURCES): removed
2880         insetlatex.[Ch] 
2881
2882         * src/support/lyxstring.C (helper): use the unsigned long
2883         specifier, UL, instead of a static_cast.
2884
2885         * src/support/Makefile.am (libsupport_a_SOURCES): added block.h
2886
2887         * src/support/block.h: new file. to be used as a c-style array in
2888         classes, so that the class can be assignable.
2889
2890 1999-11-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2891
2892         * src/lyx_gui_misc.C (askForText): when fl_show_input() returns
2893         NULL, make sure to return an empty string (it is not possible to
2894         set a string to NULL).
2895
2896 1999-11-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2897
2898         * src/support/LRegex.C: use regex_t instead of re_pattern_buffer.
2899
2900         * src/support/lyxstring.C (helper): fix bogus cast in assertion.
2901
2902         * src/{mathed,insets}/Makefile.am (CXXLINK): add $(LDFLAGS) to the
2903         link line, so that Irix users (for example) can set it explicitely to
2904         "-n32".
2905         
2906         * src/Makefile.am (lyx_LDADD): use LYX_LIB as a variable, so that
2907         it can be overidden at make time (static or dynamic link, for
2908         example).
2909         
2910         * src/vc-backend.C, src/LaTeXFeatures.h, 
2911           src/support/LRegex.C, src/support/LRegex.h: add a few "using" 
2912         statements to bring templates to global namespace.
2913
2914 1999-11-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
2915
2916         * src/support/lyxstring.C (operator[] const): make it standard
2917         conforming. 
2918
2919         * src/minibuffer.C (Init): changed to reflect that more
2920         information is given from the lyxvc and need not be provided here.
2921
2922         * src/lyxvc.[Ch]: rewrote to use the vc-backend.
2923         
2924         * src/Makefile.am (lyx_SOURCES): add vc-backend.[Ch]
2925
2926         * src/LyXView.C (UpdateTimerCB): use static_cast
2927         (KeyPressMask_raw_callback): ditto
2928
2929         * src/BufferView.[Ch]: name change _owner -> owner_ and _buffer ->
2930         buffer_, a lot of changes because of this. currentBuffer() ->
2931         buffer(), setBuffer(...) -> buffer(...), getOwner() -> owner(),
2932         also changes to other files because of this.
2933
2934 1999-11-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
2935
2936         * src/vc-backend.[Ch]: new files. The backends for vc handling,
2937         have no support for RCS and partial support for CVS, will be
2938         improved later.
2939         
2940         * src/insets/ several files: changes because of function name
2941         changes in Bufferview and LyXView.
2942         
2943         * src/mathed/math_symbols.C (math_insert_symbol): use static_cast
2944
2945         * src/support/LSubstring.[Ch]: new files. These implement a
2946         Substring that can be very convenient to use. i.e. is this
2947         possible:
2948         string a = "Mary had a little sheep";
2949         Substring(a, "sheep") = "lamb";
2950         a is now "Mary has a little lamb".
2951
2952         * src/support/LRegex.[Ch]: a regex class that can be used to pick
2953         out patterns and subpatterns of strings. It is used by LSubstring
2954         and also by vc-backend.C
2955         
2956         * src/support/lyxstring.C: went over all the assertions used and
2957         tried to correct the wrong ones and flag which of them is required
2958         by the standard. some bugs found because of this. Also removed a
2959         couple of assertions.
2960
2961         * src/support/Makefile.am (libsupport_a_SOURCES): added
2962         LSubstring.[Ch] and LRegex.[Ch]
2963
2964         * src/support/FileInfo.h: have struct stat buf as an object and
2965         not a pointer to one, some changes because of this.
2966
2967         * src/LaTeXFeatures.C (getTClassPreamble): also use the
2968         information in layout when adding the layouts preamble to the
2969         textclass preamble.
2970
2971         * src/LaTeXFeatures.h: use a vector<bool> to store the layout
2972         usage in.
2973
2974         * configure.in (CPPFLAGS): use AC_CHECK_FUNCS to check for XOpenIM
2975         because of bug in OS/2.
2976
2977 1999-11-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2978
2979         * lib/layouts/lyxmacros.inc (lyxcode): set the font with
2980         \verbatim@font instead of \ttfamily, so that it can be redefined.
2981
2982         * src/BackStack.h, src/DepTable.C, src/DepTable.h, src/LaTeX.C,
2983           src/LaTeX.h, src/lastfiles.C, src/lastfiles.h, src/layout.C,
2984           src/layout.h, src/text2.C: add 'using' directive to bring the
2985         STL templates we need from the std:: namespace to the global one.
2986         Needed by DEC cxx in strict ansi mode.
2987
2988         * src/support/LIstream.h,src/support/LOstream.h,
2989           src/support/lyxstring.h,src/table.h,
2990           src/lyxlookup.h: do not include <config.h> in header
2991         files. This should be done in the .C files only.
2992
2993         * development/lyx.spec.in: WHATSNEW has been renamed to NEWS
2994         (from Kayvan).
2995         
2996
2997 1999-11-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2998
2999         * config/lib_configure.m4,lib/configure,lib/lyxrc.example: update
3000         from Kayvan to fix the tth invokation.
3001
3002         * development/lyx.spec.in: updates from Kayvan to reflect the
3003         changes of file names.
3004
3005 1999-11-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
3006
3007         * src/text2.C (InsertStringB): use std::copy
3008         (InsertStringA): use std::copy
3009
3010         * src/bufferlist.C: use a vector to store the buffers in. This is
3011         an internal change and should not affect any other thing.
3012         
3013         * src/BufferView.C (waitForX): use XSync instead of the lengthy
3014         stuff in waitForX.
3015
3016         * src/text.C (Fill): fix potential bug, one off bug.
3017
3018 1999-11-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3019
3020         * src/Makefile.am (lyx_main.o): add more files it depends on.
3021
3022         * src/lyx_cb.C (addNewlineAndDepth): parameters in wrong order.
3023
3024         * src/support/lyxstring.C: use size_t for the reference count,
3025         size, reserved memory and xtra.
3026         (internal_compare): new private member function. Now the compare
3027         functions should work for std::strings that have embedded '\0'
3028         characters.
3029         (compare): all compare functions rewritten to use
3030         internal_compare.
3031         
3032 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
3033
3034         * src/support/lyxstring.C (compare): pass c_str()
3035         (compare): pass c_str
3036         (compare): pass c_str
3037
3038 1999-11-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3039
3040         * src/support/DebugStream.C: <config.h> was not included correctly.
3041
3042         * lib/configure: forgot to re-generate it :( I'll make this file
3043         auto generated soon.
3044
3045 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
3046
3047         * acinclude.m4 (cross_compiling): add -fpermissive when gcc 2.95.x
3048         is used.
3049
3050         * src/support/lyxstring.C: some changes from length() to rep->sz.
3051         avoids a function call.
3052
3053         * src/support/filetools.C (SpaceLess): yet another version of the
3054         algorithm...now per Jean-Marc's suggestions.
3055
3056 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
3057
3058         * src/layout.C (less_textclass_desc): functor for use in sorting
3059         of textclasses. 
3060         (LyXTextClass::Read): sort the textclasses after reading.
3061         
3062         * src/support/filetools.C (SpaceLess): new version of the
3063         SpaceLess functions. What problems does this one give? Please
3064         report.
3065
3066         * images/banner_bw.xbm: made the arrays unsigned char *
3067
3068 1999-11-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3069
3070         * src/support/lyxstring.C (find): remove bogus assertion in the
3071         two versions of find where this has not been done yet.
3072
3073         * src/support/lyxlib.h: add missing int return type to
3074         lyx::chdir(). 
3075
3076         * src/menus.C (ShowFileMenu): disable exporting to html if no
3077         html export command is present.
3078
3079         * config/lib_configure.m4: add a test for an HTML converter. The
3080         programs checked for are, in this order: tth, latex2html and
3081         hevea. 
3082
3083         * lib/configure: generated from config/lib_configure.m4.
3084
3085         * src/lyxfunc.C (Dispatch): update and improve the execution of an
3086         html converter. The parameters are now passed through $$FName and
3087         $$OutName, instead of standard input/output.
3088
3089         * src/lyxrc.{C,h}: rename \tth_command to \html_command.
3090
3091         * lib/lyxrc.example: update description of \html_command. 
3092         add "quotes" around \screen_font_xxx font setting examples to help
3093         people who use fonts with spaces in their names.
3094
3095 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
3096
3097         * Distribution files: updates for v1.1.2
3098
3099         * src/support/lyxstring.C (find): remove bogus assert and return
3100         npos for the same condition.
3101
3102 1999-11-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
3103
3104         * added patch for OS/2 from SMiyata.
3105
3106 1999-10-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
3107
3108         * src/text2.C (CutSelection): make space_wrapped a bool
3109         (CutSelection): dont declare int i until we have to.
3110         (alphaCounter): return a char const *.
3111
3112 1999-10-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3113
3114         * src/support/syscall.C (Systemcalls::kill): 
3115           src/support/filetools.C (PutEnv, PutEnvPath): 
3116           src/lyx_cb.C (addNewlineAndDepth): 
3117           src/FontInfo.C (FontInfo::resize): condition some #warning
3118         directives with WITH_WARNINGS.
3119         
3120
3121 1999-10-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
3122
3123         * src/layout.[Ch] + several files: access to class variables
3124         limited and made accessor functions instead a lot of code changed
3125         becuase of this. Also instead of returning pointers often a const
3126         reference is returned instead.
3127         
3128         * src/form1.C (create_form_Figure): added a couple fo "no-c-format"
3129
3130         * src/Makefile.am (dist-hook): added used to remove the CVS from
3131         cheaders upon creating a dist
3132         (EXTRA_DIST): added cheaders
3133
3134         * src/support/lstrings.C (tostr(char)): fix it to handle param as
3135         a character not as a small integer. 
3136
3137         * src/support/lyxstring.C (find): removed Assert and added i >=
3138         rep->sz to the first if.
3139
3140 1999-10-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
3141
3142         * src/layout.[Ch] src/BufferView.C src/LaTeXFeatures.C
3143         src/LyXView.C src/buffer.C src/bufferparams.C
3144         src/lyx_cb.C src/lyxfunc.C src/paragraph.C src/text.C 
3145         src/text2.C src/insets/insetinclude.C:
3146         lyxlayout renamed to textclasslist.
3147
3148         * src/layout.C: some lyxerr changes.
3149
3150         * src/layout.[Ch] (LyXLayout::Read): changed second paramter to
3151         LyXTextClass. rewrote LT_COPYSTYLE, rewrote LT_OBSOLETEDBY
3152         (LyXLayoutList): removed all traces of this class.
3153         (LyXTextClass::Read): rewrote LT_STYLE
3154         (LyXTextClass::hasLayout): new function
3155         (LyXTextClass::GetLayout): rewritten to return an iterator + has
3156         both const and nonconst version.
3157         (LyXTextClass::delete_layout): new function.
3158         (LyXTextClassList::Style): bug fix. do the right thing if layout
3159         is to big.
3160         (LyXTextClassList::NumberOfLayout): new acces to layoutlist.
3161         (LyXTextClassList::NameOfLayout): ditto 
3162         (LyXTextClassList::Load): ditto
3163
3164         * src/buffer.C (makeLaTeXFile): new access to layoutlist
3165
3166         * src/LaTeXFeatures.C (getTClassPreamble): new access to layoutlist
3167
3168         * src/LyXAction.C (LookupFunc): added a workaround for sun
3169         compiler, on the other hand...we don't know if the current code
3170         compiles on sun at all...
3171
3172         * src/support/filetools.C (CleanupPath): subst fix
3173
3174         * src/insets/insetbib.C (delDatabase): subst fix, this looks
3175         _really_ weird.
3176
3177         * src/support/filetools.C (PutEnvPath): subst fix, how come nobody
3178         complained about this one?
3179
3180         * src/insets/insetinclude.C (Latex): subst fix
3181
3182         * src/insets/insetbib.C (getKeys): subst fix
3183
3184         * src/LyXSendto.C (SendtoApplyCB): subst fix
3185
3186         * src/lyx_main.C (init): subst fix
3187
3188         * src/layout.C (Read): subst fix
3189
3190         * src/lyx_sendfax_main.C (button_send): subst fix
3191
3192         * src/buffer.C (RoffAsciiTable): subst fix
3193
3194         * src/lyx_cb.C (MenuFax): subst fix
3195         (PrintApplyCB): subst fix
3196
3197 1999-10-26  Juergen Vigna  <jug@sad.it>
3198
3199         * src/table.C (TexEndOfCell) + (DocBookEndOfCell): removed some #if 0
3200
3201         (Read): Cleaned up this code so now we read only format vestion >= 5
3202
3203 1999-10-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
3204
3205         * src/support/filetools.C (PutEnvPath): subst fix for EMX, how
3206         come nobody has complained about this one?
3207
3208         * src/insets/insetinclude.C (Latex): subst fix
3209
3210         * src/insets/insetbib.C (getKeys): subst fix
3211
3212         * src/lyx_main.C (init): subst fix
3213
3214         * src/layout.C (Read): subst fix
3215
3216         * src/buffer.C (RoffAsciiTable): subst fix
3217
3218         * src/lyx_cb.C (MenuFax): subst fix.
3219
3220         * src/layout.[hC] + some other files: rewrote to use
3221         std::container to store textclasses and layouts in.
3222         Simplified, removed a lot of code. Make all classes
3223         assignable. Further simplifications and review of type
3224         use still to be one. 
3225
3226         * src/menus.C (ShowFileMenu/ShowFileMenu2): Use the iterators from
3227         lastfiles to create the lastfiles partr of the menu.
3228
3229         * src/lastfiles.[Ch]: rewritten to use deque to store the
3230         lastfiles in. Uses fstream for reading and writing. Simplifies
3231         code.
3232
3233         * src/support/syscall.C: remove explicit cast.
3234
3235         * src/BufferView.C (CursorToggleCB): removed code snippets that
3236         were commented out.
3237         use explicat C++ style casts instead of C style casts. also use
3238         u_vdata instea of passing pointers in longs.
3239
3240         * src/PaperLayout.C: removed code snippets that were commented out.
3241
3242         * src/lyx_gui_misc.C: removed code snippets that were commented out. 
3243
3244         * src/lyx_main.C: removed code snippets that wer commented out.
3245
3246         * src/paragraph.C: removed code snippets that were commented out.
3247
3248         * src/lyxvc.C (logClose): use static_cast
3249         (logUpdate): ditto
3250         (viewLog): remove explicit cast to void*
3251         (showLog): removed old commented code
3252
3253         * src/menus.C: use static_cast instead of C style casts. use
3254         u_vdata instead of u_ldata. remove explicit cast to (long) for
3255         pointers. Removed old code that was commented out.
3256
3257         * src/insets/inset.C: removed old commented func
3258
3259         * src/insets/insetref.C (InsetRef): removed old code that had been
3260         commented out for a long time.
3261         (Edit): ditto
3262         (escape): removed C style cast
3263
3264         * src/insets/insetlatexaccent.C (Draw): removed old commented code
3265
3266         * src/insets/insetlatex.C (Draw): removed old commented code
3267         (Read): rewritten to use string
3268
3269         * src/insets/insetlabel.C (escape): removed C style cast
3270
3271         * src/insets/insetindex.h: removed vdata and ldata from FD_index_form
3272
3273         * src/insets/insetindex.C: use static_cast and u_vdata, removed
3274         old commented code.
3275
3276         * src/insets/insetinclude.h: removed a couple of stupid bools
3277
3278         * src/insets/insetinclude.C (include_cb): use static_cast and u_data.
3279         (Clone): remove C style cast
3280         (getKeys): changed list to lst because of std::list
3281
3282         * src/insets/inseterror.C (Draw): removed som old commented code.
3283
3284         * src/insets/insetcommand.C (Draw): removed some old commented code.
3285
3286         * src/insets/insetbib.C (bibitem_cb): removed code that has been
3287         commented out forever.
3288         (bibitem_cb): use static_cast instead of C style cast
3289         use of vdata changed to u_vdata.
3290
3291         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forward the data
3292         parameter.
3293         (CloseUrlCB): use static_cast instead of C style cast.
3294         (CloseUrlCB): added a fl_free form...it seemed to be missing.
3295
3296         * src/insets/insetinfo.C (Edit): pass object in u_vdata instead
3297         (C_InsetInfo_CloseInfoCB): forward the ob parameter
3298         (CloseInfoCB): static_cast from ob->u_vdata instead.
3299         (Edit): removed bogus arg from fl_set_object_shortcut, set to 1
3300         instead. 
3301
3302         * src/insets/inseterror.C (Edit): pass object in u_vdata instead
3303         (C_InsetError_CloseErrorCB): forward the ob parameter
3304         (CloseErrorCB): static_cast from ob->u_vdata instead.
3305
3306         * src/vspace.h: include LString.h since we use string in this class.
3307
3308         * src/vspace.C (lyx_advance): changed name from advance because of
3309         nameclash with stl. And since we cannot use namespaces yet...I
3310         used a lyx_ prefix instead. Expect this to change when we begin
3311         using namespaces.
3312
3313         * src/BufferView.[Ch] (BufferView::~BufferView): removed 
3314
3315         * src/BackStack.h: rewrote to use std::stack. made BackStackItem
3316         and removed now defunct constructor and deconstructor.
3317
3318         * src/BufferView.h: have backstack as a object not as a pointer.
3319         removed initialization from constructor. added include for BackStack 
3320
3321         * development/lyx.spec.in (%build): add CFLAGS also.
3322
3323         * src/screen.C (drawFrame): removed another warning.
3324
3325 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3326
3327         * renamed WHATSNEW to NEWS (usual GNU style), CHANGES to
3328         OLD-CHANGES (not used anymore) and modified INSTALL, INSTALL.OS2,
3329         README and ANNOUNCE a bit for the next release. More work is
3330         needed, of course.
3331
3332         * src/paragraph.C (SimpleTeXBlanks): spaces are automatically made
3333         unbreakable if we are in freespacing mode (LyX-Code), but not in
3334         latex mode.
3335
3336 1999-10-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
3337
3338         * src/BackStack.h: fixed initialization order in constructor
3339
3340         * Makefile.am (MAINTAINERCLEANFILES): removed po/POTFILES.in
3341
3342         * acinclude.m4 (VERSION): new rules for when a version is
3343         development, added also a variable for prerelease.
3344         (warnings): we set with_warnings=yes for prereleases
3345         (lyx_opt): prereleases compile with same optimization as development 
3346         (CXXFLAGS): only use pedantic if we are a development version 
3347
3348         * src/BufferView.C (restorePosition): don't do anything if the
3349         backstack is empty.
3350
3351         * src/BackStack.h: added member empty, use this to test if there
3352         is anything to pop...
3353
3354 1999-10-25  Juergen Vigna  <jug@sad.it>
3355
3356         * forms/form1.fd +
3357         * forms/layout_forms.fd +
3358         * forms/latexoptions.fd +
3359         * lyx.fd: changed for various form resize issues
3360
3361         * src/mathed/math_panel.C +
3362         * src/insets/inseterror.C +
3363         * src/insets/insetinfo.C +
3364         * src/insets/inseturl.C +
3365         * src/insets/inseturl.h +
3366         * src/LaTeXLog.C +
3367         * src/LyXSendto.C +
3368         * src/PaperLayout.C +
3369         * src/ParagraphExtra.C +
3370         * src/TableLayout.C +
3371         * src/form1.C +
3372         * src/layout_forms.C +
3373         * src/lyx.C +
3374         * src/lyx_cb.C +
3375         * src/lyx_gui.C +
3376         * src/lyxfr0.C +
3377         * src/lyxfunc.C +
3378         * src/lyxvc.C +
3379         * src/menus.C: fixed various resize issues. So now forms can be
3380         resized savely or not be resized at all.
3381         
3382         * forms/form_url.fd +
3383         * src/insets/form_url.[Ch]: added because it's cleaner and easier
3384         to modify IMO.
3385
3386         * src/insets/Makefile.am: added files form_url.[Ch]
3387         
3388 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3389
3390         * INSTALL: it is now possible to compile LyX with digital C++ 6.1
3391         (and presumably 6.2).
3392
3393         * src/{BufferView,LyXView,combox,filedlg,intl,lyxserver,lyxvc,
3394         menus,minibuffer,toolbar}.{C,h}: added C_xxx wrappers around
3395         remaining static member callbacks. 
3396
3397         * src/lyxfunc.C (Dispatch): Use _() instead of N_() fot minibuffer
3398         messages. 
3399
3400         * src/support/lyxstring.h: declare struct Srep as friend of
3401         lyxstring, since DEC cxx complains otherwise.
3402
3403 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
3404
3405 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
3406
3407         * src/LaTeX.C (run): made run_bibtex also depend on files with
3408         extension ".bst"
3409         (runBibTeX): added scans for "\\bibstyle", now also ".bst" files
3410         are put into the dependency file.
3411
3412         * src/spellchecker.C (create_ispell_pipe): removed old #warning,
3413         the code has shown itself to work
3414         (create_ispell_pipe): removed another warning, added a comment
3415         instead. 
3416
3417         * src/minibuffer.C (ExecutingCB): removed code that has been
3418         commented out a long time
3419
3420         * src/lyxfunc.C (processKeyEvent): removed some very old commented
3421         out code + a warning.
3422
3423         * src/support/lyxstring.h: comment out the three private
3424         operators, when compiling with string ansi conforming compilers
3425         they make problems.
3426
3427         * src/mathed/math_symbols.C (AddBitmap): change 6th arg to be
3428         unsigned char *.
3429         (pixmapFromBitmapData): change type of bdata to be unsigned char *
3430         (pixmapFromBitmapData): add a reinterpret_cast in the call to
3431         XCreateImage
3432
3433         * src/mathed/math_panel.h: change 6th arg to AddBitmap to be
3434         unsigned char *
3435
3436         * src/mathed/math_panel.C (create_math_panel): remove explicit
3437         casts
3438
3439         * src/bmtable.h: change last paramter to fl_set_bmtable_data to be
3440         unsigned char *.
3441
3442         * src/bmtable.C (struct BMTABLE_SPEC): make bdata unsigned char *
3443         (draw_bitmaptable): add a reinterpret_cast to sp->bdata in the call
3444         to XCreatePixmapFromBitmapData
3445         (fl_set_bmtable_data): change the last argument to be unsigned
3446         char *
3447         (fl_set_bmtable_file): change bdata to unsinged char *, change bw
3448         and bh to be unsigned int, remove explicit casts in call to
3449         XReadBitmapFileData.
3450
3451         * images/arrows.xbm: made the arrays unsigned char *
3452         * images/varsz.xbm: ditto
3453         * images/misc.xbm: ditto
3454         * images/greek.xbm: ditto
3455         * images/dots.xbm: ditto
3456         * images/brel.xbm: ditto
3457         * images/bop.xbm: ditto
3458
3459         * Makefile.am (MAINTAINERCLEANFILES): added po/POTFILES.in
3460
3461         * acinclude.m4 (LYX_GXX_STRENGHT_REDUCE): removed. 
3462         (LYX_PROG_CXX): added -pedantic to g++ compile options when
3463         with-warnings, removed the __STRING_ANSI__ hack, seems to not be
3464         needed. 
3465         (LYX_CXX_CHEADERS): added <clocale> to the test. 
3466
3467 1999-10-23  Lars Gullik Bjønnes  <larsbj@lyx.org>
3468
3469         * src/lyx_cb.C (addNewlineAndDepth): changed to use string::append.
3470
3471         * src/support/lyxstring.C (append): fixed something that must be a
3472         bug, rep->assign was used instead of rep->append.
3473
3474         * src/support/Makefile.am (libsupport_a_SOURCES): added LIstream.h
3475         and LOstream.h
3476
3477         * src/lyxfunc.C (processKeyEvent): removed faulty line that made
3478         lyx insert double chars. Fix spotted by Kayvan.
3479
3480 1999-10-23  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
3481
3482         * Fixed the tth support. I messed up with the Emacs patch apply feature
3483         and omitted the changes in lyxrc.C.
3484
3485 1999-10-22  Juergen Vigna  <jug@sad.it>
3486
3487         * src/insets/figinset.C (CallbackFig): Just changed the defines a bit.
3488
3489         * src/lyx_cb.C (MenuInsertRef) + 
3490         * src/lyx_gui.C (create_forms): Inserted fl_set_form_minsize so that
3491         the form cannot be resized under it limits (fixes a segfault)
3492         
3493         * src/lyx.C (create_form_form_ref) +
3494         * forms/lyx.fd: Changed Gravity on name input field so that it is
3495         resized correctly.
3496
3497 1999-10-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3498
3499         * configure.in: use LYX_CXX_STL_MODERN_STREAMS; check for headers
3500         <ostream> and <istream>.
3501         
3502         * acinclude.m4 (LYX_CXX_STL_MODERN_STREAMS): new test. Checks
3503         whether <fstream> provides the latest standard features, or if we
3504         have an oldstyle library (like in egcs).
3505         (LYX_CXX_STL_STRING): fix the test.
3506
3507         * src/support/DebugStream.{C,h}: use L{I,O}stream.h and condition the
3508         code on MODERN_STL_STREAM.
3509
3510         * src/support/lyxstring.h: use L{I,O}stream.h.
3511
3512         * src/support/L{I,O}stream.h: new files, designed to setup
3513         correctly streams for our use
3514           - includes the right header depending on STL capabilities
3515           - puts std::ostream and std::endl (for LOStream.h) or
3516           std::istream (LIStream.h) in toplevel namespace.
3517
3518 1999-10-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
3519
3520         * src/LaTeX.C (run): added a check in 0 sumchange so that if it
3521         was a bib file that had been changed we ensure that bibtex is run.
3522         (runBibTeX): enhanced to extract the names of the bib files and
3523         getting their absolute path and enter them into the dep file.
3524         (findtexfile): static func that is used to look for tex-files,
3525         checks for absolute patchs and tries also with kpsewhich.
3526         Alternative ways of finding the correct files are wanted. Will
3527         probably be moved.
3528         (do_popen): function that runs a command using popen and returns
3529         the whole output of that command in a string. Should be moved to
3530         somewhere else.
3531
3532         * src/DepTable.[Ch] (extchanged): new function that returns true if a
3533         file with extension ext has changed.
3534
3535         * src/insets/figinset.C: added ifdef guards around the fl_free
3536         code that jug commented out. Now it is commented out when
3537         compiling with XForms == 0.89.
3538
3539         * src/support/lyxstring.C: moved the definition of lyxstring::Srep
3540         to lyxstring.C, and only keep a forward declaration in
3541         lyxstring.h. Simplifies the header file a bit and should help a
3542         bit on compile time too. Also changes to Srep will not mandate a
3543         recompile of code just using string.
3544         (~lyxstring): definition moved here since it uses srep.
3545         (size): definition moved here since it uses srep.
3546
3547         * src/support/lyxstring.h: removed a couple of "inline" that should
3548         not be there.
3549
3550 1999-10-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3551
3552         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forgot to pass
3553         the 'ob' argument.
3554
3555 1999-10-21  Juergen Vigna  <jug@sad.it>
3556
3557         * src/table.C (SetPWidth): Just a small fix so the alignment is not
3558         set to left if I just remove the width entry (or it is empty).
3559
3560         * src/text2.C (SetCursorIntern): Fixed a bug calculating to use wrong
3561         paragraph when having dummy paragraphs.
3562
3563 1999-10-20  Juergen Vigna  <jug@sad.it>
3564
3565         * src/insets/figinset.C: just commented some fl_free_form calls
3566         and added warnings so that this calls should be activated later
3567         again. This avoids for now a segfault, but we have a memory leak!
3568
3569         * src/lyxfunc.C (processKeyEvent) (Dispatch): changed
3570         'const char * argument' to 'string argument', this should
3571         fix some Asserts() in lyxstring.C.
3572
3573         * src/lyxfunc.h: Removed the function argAsString(const char *)
3574         as it is not used anymore.
3575
3576 1999-10-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
3577
3578         * src/support/lyxstring.C (getline): reads now _all_ chars. uses
3579         get instead of >>
3580
3581         * src/Literate.h: some funcs moved from public to private to make
3582         interface clearer. Unneeded args removed.
3583
3584         * src/Literate.C (scanLiterateLogFile): rewritten to use iostream
3585         instead of lyxlex.
3586         (scanBuildLogFile): ditto
3587
3588         * src/LaTeX.C (scanLogFile): merged LaTeX Error handling into
3589         normal TeX Error. Still room for improvement.
3590
3591         * src/LaTeX.[Ch]: removed scanError. Wrong place and not needed.
3592
3593         * src/buffer.C (insertErrors): changes to make the error
3594         desctription show properly.
3595
3596         * src/LaTeX.C (deplog): removed the test for file in lyx doc dir.
3597         could never happen
3598
3599         * src/support/lyxstring.C (helper): changed to use
3600         sizeof(object->rep->ref).
3601         (operator>>): changed to use a pointer instead.
3602
3603         * src/support/lyxstring.h: changed const reference & to value_type
3604         const & lets see if that helps.
3605
3606 1999-10-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
3607
3608         * Makefile.am (rpmdist): fixed to have non static package and
3609         verison.
3610
3611         * src/support/lyxstring.C: removed the compilation guards
3612
3613         * src/vspace.C (nextToken): use i + 1  instead of ++i. Maks things
3614         a bit clearer.
3615
3616         * src/support/Makefile.am (LYXSTRING): bruker USE_LYXSTRING for
3617         conditional compile of lyxstring.Ch
3618
3619         * acinclude.m4 (LYX_CXX_STL_STRING): new and improved, still a
3620         stupid check, but it is a lot better than the bastring hack. 
3621         (LYX_CXX_STL_STRING): bruker nå AM_CONDITIONAL(USE_LYXSTRING  
3622
3623         * several files: changed string::erase into string::clear. Not
3624         really needed.
3625         
3626         * src/chset.C (encodeString): use a char temporary instead
3627
3628         * src/table.C (TexEndOfCell): added tostr around
3629         column_of_cell(fcell+i)+1 and around right_column_of_cell(fcell+i)+1
3630         (TexEndOfCell): ditto
3631         (TexEndOfCell): ditto
3632         (TexEndOfCell): ditto
3633         (DocBookEndOfCell): ditto
3634         (DocBookEndOfCell): ditto
3635         (DocBookEndOfCell): ditto
3636         (DocBookEndOfCell): ditto
3637
3638         * src/paragraph.C (TeXEnvironment): added tostr around foot_count -1
3639
3640         * src/lyxfr1.C (SearchReplaceAllCB): added tostr around replace_count
3641
3642         * src/lyx_cb.C (MenuRunLaTeX): added tostr around ret
3643         (MenuBuildProg): added tostr around ret
3644         (MenuRunChktex): added tostr around ret
3645         (DocumentApplyCB): added tostr around ret
3646
3647         * src/chset.C (encodeString): added tostr around t->ic
3648
3649         * src/buffer.C (makeLaTeXFile): added tostr around secnumdepth
3650         (makeLaTeXFile): added tostr around tocdepth
3651         (makeLaTeXFile): added tostr around ftcound - 1
3652
3653         * src/insets/insetbib.C (setCounter): added tostr around counter.
3654
3655         * src/support/lyxstring.h: added an operator+=(int) to catch more
3656         mistakes. 
3657
3658         * src/support/lyxstring.C (lyxstring): We DON'T allow NULL pointers.
3659         (lyxstring): We DON'T allow NULL pointers.
3660
3661 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3662
3663         * src/mathed/math_macro.C (MathMacroArgument::Write,
3664         MathMacroTemplate::WriteDef): add tostr() around macro arg numbers
3665         when writing them out.
3666
3667         * src/LString.C: remove, since it is not used anymore.
3668         
3669         * src/support/lyxstring.C: condition the content to
3670         USE_INCLUDED_STRING macro.
3671
3672         * src/mathed/math_symbols.C, src/support/lstrings.C,
3673         src/support/lyxstring.C: add `using' directive to specify what
3674         we need in <algorithm>. I do not think that we need to
3675         conditionalize this, but any thought is appreciated.
3676
3677         * many files: change all callback functions to "C" linkage
3678         functions to please strict C++ compilers like DEC cxx 6.1 in mode
3679         strict_ansi. Those who were static are now global. 
3680             The case of callbacks which are static class members is
3681         trickier, since we have to make C wrappers around them (see
3682         InsetError, InsetInfo and InsetUrl). The same holds for friends. I
3683         did not finish this yet, since it defeats the purpose of
3684         encapsulation, and I am not sure what the best route is.
3685
3686 1999-10-19  Juergen Vigna  <jug@sad.it>
3687
3688         * src/support/lyxstring.C (lyxstring): we permit to have a null
3689         pointer as assignment value and just don't assign it.
3690
3691         * src/vspace.C (nextToken): corrected this function substituting
3692         find_first(_not)_of with find_last_of.
3693
3694         * src/TableLayout.C (UpdateLayoutTable) (TableOptionsCB)
3695                 (TableOptCloseCB) (TableSpeCloseCB):
3696         inserted fl_set_focus call for problem with fl_hide_form() in
3697         xforms-0.89.
3698
3699 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3700
3701         * src/lyx_cb.C (LayoutsCB): fix bug where int was added to a
3702         string. 
3703
3704 1999-10-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3705
3706         * src/lyxrc.C (Read): RC_PRINTEXSTRAOPTIONS now uses
3707         LyXLex::next() and not eatline() to get its argument.
3708
3709 1999-10-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
3710
3711         * src/DepTable.[Ch]: rewritten to store the dependencies in a map
3712         instead, use fstreams for io of the depfile, removed unneeded
3713         functions and variables. 
3714
3715         * src/LaTeX.[Ch] (class TeXErrors): rewrote to store the errors in a
3716         vector instead, removed all functions and variables that is not in
3717         use.
3718
3719 1999-10-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
3720
3721         * src/buffer.C (insertErrors): use new interface to TeXError
3722
3723         * Makefile.am (rpmdist): added a rpmdist target
3724
3725         * lib/reLyX/Makefile.am: added RelyxFigure.pm and Verbatim.pm as
3726         per Kayvan's instructions.
3727
3728 1999-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3729
3730         * src/Makefile.am: add a definition for localedir, so that locales
3731         are found after installation (Kayvan)
3732
3733 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
3734
3735         * development/.cvsignore: new file.
3736
3737 1999-10-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3738
3739         * acinclude.m4 (LYX_CXX_CHEADERS): New macro. Checks whether the
3740         C++ compiler provides wrappers for C headers and use our alternate
3741         version otherwise.
3742
3743         * configure.in: use LYX_CXX_CHEADERS.
3744
3745         * src/cheader/: new directory, populated with cname headers from
3746         libstdc++-2.8.1. They are a bit old, but probably good enough for
3747         what we want (support compilers who lack them).
3748         
3749         * src/insets/Makefile.am, src/mathed/Makefile.am: remove src/support
3750         from includes. It turns out is was stupid.
3751  
3752 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
3753
3754         * lib/Makefile.am (install-data-local): forgot a ';'
3755         (install-data-local): forgot a '\'
3756         (libinstalldirs): needed after all. reintroduced.
3757
3758 1999-10-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
3759
3760         * configure.in (AC_OUTPUT): added lyx.spec
3761
3762         * development/lyx.spec: removed file
3763
3764         * development/lyx.spec.in: new file
3765
3766         * po/*.po: merged with lyx.pot becuase of make distcheck
3767         
3768         * lib/Makefile.am (dist-hook): added dist-hook so that
3769         documentation files will be included when doing a make
3770         dist/distdir/distcheck. Requires cvs export -r HEAD lyxdoc to run.
3771         (pkgdata_SCRIPTS): added configure.cmd for now, we can use som
3772         conditional later.
3773         more: tried to make install do the right thing, exclude CVS dirs
3774         etc.
3775
3776         * src/LaTeXLog.C (ShowLatexLog): reordered som statements so that
3777         Path would fit in more nicely.
3778
3779         * all files that used to use pathstack: uses now Path instead.
3780         This change was a lot easier than expected.
3781         
3782         * src/support/path.h: new file
3783
3784         * src/support/Makefile.am (libsupport_a_SOURCES): added path.h
3785
3786         * src/Makefile.am (lyx_SOURCES): removed pathstack.[Ch]
3787
3788         * src/support/lyxstring.C (getline): Default arg was given for
3789         para 3. removed.
3790
3791         * Configure.cmd: removed file 
3792
3793 1999-10-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3794
3795         * src/support/DebugStream.[Ch]: remove the explicit std:: before
3796         streams classes and types, add the proper 'using' statements when
3797         MODERN_STL is defined.
3798         
3799         * src/debug.h: move the << operator definition after the inclusion
3800         of DebugStream.h
3801
3802         * src/support/filetools.C: include "LAssert.h", which is needed
3803         later. 
3804
3805         * src/insets/Makefile.am, src/mathed/Makefile.am: add src/support
3806         to includes. 
3807
3808         * src/lyxfont.h, src/commandtags.h, src/mathed/math_defs.h:
3809         include "debug.h" to define a proper ostream.
3810
3811 1999-10-12  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
3812
3813         * src/sys*: Cleaned up the Systemcall stuff a bit. Added "kill(int)"
3814           method to the SystemCall class which can kill a process, but it's
3815           not fully implemented yet.
3816
3817         * src/*.C: Changed Systemcalls::Startscript() to startscript()
3818
3819         * src/support/FileInfo.h: Better documentation  
3820
3821         * src/lyxfunc.C: Added support for buffer-export html
3822         
3823         * src/menus.C: Added Export->As HTML...
3824         
3825         * lib/bind/*.bind: Added short-cut for buffer-export html
3826
3827         * src/lyxrc.*: Added support for new \tth_command
3828         
3829         * lib/lyxrc.example: Added stuff for new \tth_command
3830
3831 1999-10-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
3832
3833         * lib/Makefile.am (IMAGES): removed images/README
3834         (pkgdata_SCRIPTS): use this instead of bin_SCRIPTS to that it
3835         installes in correct place. Check permisions is installed
3836         correctly.
3837
3838         * src/LaTeX.C: some no-op changes moved declaration of some
3839         variables around.
3840
3841         * src/LaTeX.h (LATEX_H): changed include guard name
3842
3843 1999-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3844
3845         * lib/reLyX/Makefile.am: install noweb2lyx.
3846
3847         * lib/Makefile.am: install configure. 
3848
3849         * lib/reLyX/configure.in: declare a config aux dir; set package
3850         name to lyx (not sure what the best solution is); generate noweb2lyx.
3851
3852         * lib/layouts/egs.layout: fix the bibliography layout.
3853
3854 1999-10-08  Jürgen Vigna <jug@sad.it>
3855
3856         * src/support/filetools.C (FileOpenSearch): Fixed a bug where
3857         when in the PATH was something like /usr/bin;;/bin (note: the ;;)
3858         it returned without continuing to search the path.
3859         
3860 1999-10-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
3861
3862         * src/insets/insetquotes.C (Draw): Simplified a gread deal. This
3863         also fixes a bug. It is not allowed to do tricks with std::strings
3864         like: string a("hei"); &a[e]; this will not give what you
3865         think... Any reason for the complexity in this func?
3866
3867 1999-10-06  Asger Alstrup Nielsen  <alstrup@diku.dk>
3868
3869         * Updated README and INSTALL a bit, mostly to check that my
3870         CVS rights are correctly set up.
3871
3872 1999-10-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
3873
3874         * src/support/lyxstring.C (helper): removed bogus Assert. strlen
3875         does not allow '\0' chars but lyxstring and std::string does.
3876
3877 1999-10-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
3878
3879         * autogen.sh (AUTOCONF): let the autogen script create the
3880         POTFILES.in file too. POTFILES.in should perhaps now not be
3881         included in the cvs module.
3882
3883         * some more files changed to use C++ includes instead of C ones.
3884
3885         * src/filedlg.C (Reread): fixed a bug wrt Time. It was appended
3886         not assigned.
3887         (Reread): added tostr to nlink. buggy output otherwise.
3888         (Reread): added a string() around szMode when assigning to Buffer,
3889         without this I got a log of garbled info strings.
3890
3891         * acconfig.h: commented out the PTR_AS_INT macros. They should not
3892         be needed.
3893
3894         * I have added several ostream & operator<<(ostream &, some_type)
3895         functions. This has been done to avoid casting and warnings when
3896         outputting enums to lyxerr. This as thus eliminated a lot of
3897         explicit casts and has made the code clearer. Among the enums
3898         affected: kb_action, InsetLatexAccent::ACCENT_TYPE, a couple of
3899         mathed enums, some font enum the Debug::type enum. 
3900
3901         * src/support/lyxstring.h (clear): missing method. equivalent of
3902         erase(0, npos).
3903
3904         * all files that contained "stderr": rewrote constructs that used
3905         stderr to use lyxerr instead. (except bmtable)
3906
3907         * src/support/DebugStream.h (level): and the passed t with
3908         Debug::ANY to avoid spurious bits set.
3909
3910         * src/debug.h (Debug::type value): made it accept strings of the
3911         type INFO,INIT,KEY.
3912
3913         * configure.in (Check for programs): Added a check for kpsewhich,
3914         the latex generation will use this later to better the dicovery of
3915         all used files. 
3916
3917         * src/BufferView.C (create_view): we don't need to cast this to
3918         (void*) that is done automatically.
3919         (WorkAreaButtonPress): removed some dead code.
3920
3921 1999-10-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3922
3923         * src/minibuffer.C (Init): make sure that the "Welcome to LyX!"
3924         is not overwritten when translated (David Sua'rez de Lis).
3925
3926         * lib/CREDITS: Added David Sua'rez de Lis
3927
3928         * lib/reLyX/configure.in: setup LYX_DIR correctly in reLyX.
3929
3930         * src/bufferparams.C (BufferParams): default input encoding is now
3931         "latin1" 
3932
3933         * acinclude.m4 (cross_compiling): comment out macro
3934         LYX_GXX_STRENGTH_REDUCE. 
3935
3936         * acconfig.h: make sure that const is not defined (to empty) when
3937         we are compiling C++. Remove commented out code using SIZEOF_xx
3938         macros.
3939         
3940         * configure.in : move the test for const and inline as late as
3941         possible so that these C tests do not interefere with C++ ones.
3942         Remove the call to LYX_GXX_STRENGTH_REDUCE, since its usefulness
3943         has not been proven. 
3944
3945 1999-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3946
3947         * src/table.C (getDocBookAlign): remove bad default value for
3948         isColumn parameter.
3949
3950         * src/menus.C (ShowFileMenu): add a missing tostr() for lastfiles
3951         shortcut. 
3952         (ShowFileMenu2): ditto.
3953
3954         * lib/reLyX/.cvsignore: add configure and aclocal.m4 to the list
3955         of files to ignore.
3956
3957 1999-10-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3958
3959         * Most files: finished the change from the old error code to use
3960         DebugStream for all lyxerr debugging. Only minor changes remain
3961         (e.g. the setting of debug levels using strings instead of number) 
3962
3963 1999-10-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
3964
3965         * src/layout.C (Add): Changed to use compare_no_case instead of
3966         strcasecmp.
3967
3968         * src/FontInfo.C: changed loop variable type too string::size_type.
3969
3970 1999-10-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
3971
3972         * src/support/Makefile.am: added -I${srcdir}/../ to INCLUDES and
3973         set ETAGS_ARGS to --c++ 
3974
3975 1999-09-30  Lars Gullik Bjønnes  <larsbj@lyx.org>
3976
3977         * src/table.C (DocBookEndOfCell): commented out two unused variables
3978
3979         * src/paragraph.C: commented out four unused variables. 
3980
3981         * src/lyx_cb.C (TocUpdateCB): moved variable i and added a new i
3982         insed a if clause with type string::size_type.
3983
3984         * src/lyxfr1.C (IsSearchStringInText): changed iSrch from int to
3985         string::size_type.
3986
3987         * src/lyxfunc.C (Dispatch): use string::size_type as loop variable.
3988
3989         * src/lyx_cb.C (ReplaceWord): use string::size_type as loop
3990         variable, also changed loop to go from 0 to lenght + 1, instead of
3991         -1 to length. This should be correct.
3992
3993         * src/LaTeX.C (scanError): use string::size_type as loop variable
3994         type.
3995
3996         * src/BufferView.C (WorkAreaButtonPress): moved #if 0 up two lines
3997         (l.896) since y_tmp and row was not used anyway.
3998
3999         * src/insets/insetref.C (escape): use string::size_type as loop
4000         variable type.
4001
4002         * src/insets/insetquotes.C (Width): use string::size_type as loop
4003         variable type.
4004         (Draw): use string::size_type as loop variable type.
4005
4006         * src/insets/insetlatexaccent.C (checkContents): use
4007         string::size_type as loop variable type.
4008
4009         * src/insets/insetlabel.C (escape): use string::size_type as loop
4010         variable type.
4011
4012         * src/insets/insetinfo.C: added an extern for current_view.
4013
4014         * src/insets/insetcommand.C (scanCommand): use string::size_type
4015         as loop variable type.
4016
4017         * most files: removed the RCS tags. With them we had to recompile
4018         a lot of files after a simple cvs commit. Also we have never used
4019         them for anything meaningful. 
4020
4021         * most files: tags-query-replace NULL 0. As adviced several plases
4022         we now use "0" instead of "NULL" in our code. 
4023
4024         * src/support/filetools.C (SpaceLess): use string::size_type as
4025         loop variable type.
4026
4027 1999-09-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
4028
4029         * src/paragraph.C: fixed up some more string stuff.
4030
4031 1999-09-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
4032
4033         * src/support/filetools.h: make modestr a std::string.
4034
4035         * src/filetools.C (GetEnv): made ch really const.
4036
4037         * src/lyxlib.h: removed the Maximum and Minimum inline functions,
4038         made code that used these use max/min from <algorithm> instead.
4039
4040         * changed several c library include files to their equivalent c++
4041         library include files. All is not changed yet.
4042
4043         * created a support subdir in src, put lyxstring and lstrings
4044         there + the extra files atexit, fileblock, strerror. Created
4045         Makefile.am. edited configure.in and src/Makefile.am to use this
4046         new subdir. More files moved to support.
4047
4048         * imported som of the functions from repository lyx, filetools
4049         
4050         * ran tags-query-replace on LString -> string, corrected the bogus
4051         cases. Tried to make use of lstrings.[hC], debugged a lot. There
4052         is still some errors in there. This is errors where too much or
4053         too litle get deleted from strings (string::erase, string::substr,
4054         string::replace), there can also be some off by one errors, or
4055         just plain wrong use of functions from lstrings. Viewing of quotes
4056         is wrong. 
4057
4058         * LyX is now running fairly well with string, but there are
4059         certainly some bugs yet (see above) also string is quite different
4060         from LString among others in that it does not allow null pointers
4061         passed in and will abort if it gets any.
4062         
4063         * Added the revtex4 files I forgot when setting up the repository.
4064
4065 1999-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
4066
4067         * All over: Tried to clean everything up so that only the files
4068           that we really need are included in the cvs repository.
4069         * Switched to use automake.
4070         * Generaton of reLyX is not perfect, LYX_DIR does not get substituted.
4071         * Install has not been checked.
4072
4073 1999-09-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
4074
4075         * po/pt.po: Three errors:
4076                l.533 and l.538 format specification error
4077                l. 402 duplicate entry, I just deleted it.
4078