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