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