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