]> git.lyx.org Git - features.git/blob - ChangeLog
applied the hebrew patch
[features.git] / ChangeLog
1 2000-02-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
2
3         * applied the hebrew patch.
4
5         * src/lyxrow.h: make sure that all Row variables are initialized.
6
7         * src/text2.C (TextHandleUndo): comment out a delete, this might
8         introduce a memory leak, but should also help us to not try to
9         read freed memory. We need to look at this one.
10
11         * src/paragraph.C (SimpleDocBookOneTablePar): initialize column to 0
12         (LyXParagraph): initalize footnotekind.
13
14         * src/lyxrc.C (output): added case RC_DATE_INSERT_FORMAT. Jug
15         forgot this when applying the patch. Please heed the warnings.
16
17         * src/BufferView.C (buffer): a fix for the buffer-reload problem
18         (aka. reformat problem)
19
20         * src/bufferlist.C (exists): made const, and use const_iterator
21         (isLoaded): new func.
22         (release): use std::find to find the correct buffer.
23
24         * src/bufferlist.h: made getState a const func.
25         made empty a const func.
26         made exists a const func.
27         new func: isLoaded
28
29 2000-02-01  Juergen Vigna  <jug@sad.it>
30
31         * src/lyxfunc.C lyxrc.C: changed from insert-date to date-insert
32
33         * po/it.po: updated a bit the italian po file and also changed the
34         'file nuovo' for newfile to 'filenuovo' without a space, this did
35         annoy me a lot :)
36         
37         * src/lyxrc.C (LyXRC): added support for a default insert_date_format
38         for the new insert_date command.
39
40         * src/lyxfunc.C (Dispatch): added support for a insert_date function
41         from jdblair, to insert a date into the current text conforming to
42         a strftime format (for now only considering the locale-set and not
43         the document-language).
44
45 2000-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
46
47         * src/lyxfont.C (textWidth): hopefully better fix for the Array
48         Bounds Read error seen by purify. The problem was that islower is
49         a macros which takes an unsigned char and uses it as an index for
50         in array of characters properties (and is thus subject to the
51         above error).
52         (drawText): ditto.
53
54         * src/lyx_cb.C (UpdateLayoutDocument): use a switch to set
55         correctly the paper sides radio buttons.
56         (UpdateDocumentButtons): ditto.
57
58 2000-01-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
59
60         * src/lyxfunc.C (processKeyEvent): fix a the buffer returned by
61         LyXLookupString to be zero-terminated. Really fixes problems seen
62         by purify, I think.
63
64 2000-01-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
65
66         * src/lyxfunc.C (processKeyEvent): "fix" so that we never try to
67         write a (char*)0 to the lyxerr stream.
68
69         * src/lastfiles.C: move algorithm before the using statemets.
70
71 2000-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
72
73         * src/lastfiles.C: move using directives in global scope (egcs 1.x
74         complains otherwise).
75         * src/table.C: ditto
76
77         * lib/reLyX/reLyX.in: use variable @LYX_DIR@ as built-in data
78         directory. 
79
80         * lib/reLyX/configure.in (LYX_DIR): re-introduce this variable
81         that I removed earlier... It is really needed.
82
83         * lib/examples/multicol.lyx: new file, splitted from Extended.lyx. 
84
85 2000-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
86
87         * INSTALL: update xforms home page URL.
88
89         * lib/configure.m4: fix a bug with unreadable layout files.
90
91         * src/table.C (calculate_width_of_column): add "using std::max"
92         directive. 
93
94 2000-01-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
95
96         * several files: marked several lines with "DEL LINE", this is
97         lines that can be deleted without changing anything.
98         if (<ptr>) // DEL LINE  /* this line is _never_ needed. Delete
99                                    checks this anyway */
100                 delete <ptr>
101
102         * src/insets/insetlatexaccent.C: Changed some debugs to Debug::KEY
103
104         * src/DepTable.C (update): add a "+" at the end when the checksum
105         is different. (debugging string only)
106
107         * src/paragraph.C (ReturnNextInsetPointer): fix bug that caused
108         the next inset to not be displayed. This should also fix the list
109         of labels in the "Insert Crossreference" dialog.
110
111 2000-01-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
112
113         * src/support/LSubstring.C (LSubstring): set pos to string::npos
114         when regex was not found.
115
116         * src/support/lstrings.C (lowercase): use handcoded transform always.
117         (uppercase): ditto
118
119         * src/text.C (Delete): fixed the crash. cursor.par->prev and
120         old_cursor.par->prev could be 0.
121
122         * several files: changed post inc/dec to pre inc/dec
123         
124         * src/lastfiles.C (writeFile): use ostream_iterator and copy to
125         write the lastfiles to file.
126
127         * src/BufferView.C (buffer): only show TextCache info when debugging
128         (buffer): ditto
129         (resizeCurrentBuffer): ditto
130         (workAreaExpose): ditto
131
132         * lib/kbd/iso8859-7.cdef: changed to new quoting scheme
133
134         * lib/kbd/iso8859-2.cdef: changed to new quoting scheme
135
136         * src/insets/insetlatexaccent.C (Draw): make the display of UMLAUT
137         a bit better by removing the special case for \i and \j.
138
139 2000-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
140
141         * src/lyx_main.C (easyParse): remove test for bad comand line
142         options, since this broke all xforms-related parsing.
143
144         * src/kbmap.C (getsym): set return type to unsigned long, as
145         declared in header. On an alpha, long is _not_ the same as int.
146
147         * src/support/LOstream.h: add a "using std::flush;"
148
149         * src/insets/figinset.C: ditto.
150
151 2000-01-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
152
153         * src/bufferlist.C (write): use blinding fast file copy instead of
154         "a char at a time", now we are doing it the C++ way.
155
156         * src/insets/figinset.C: get rid of struct pidwaitpit, use a
157         std::list<int> instead.
158         (addpidwait): reflect move to std::list<int>
159         (sigchldchecker): ditto
160
161         * src/bmtable.c (fl_set_bmtable_file): have arguments in the X r5
162         version also. 
163
164         * src/paragraph.C (FirstPhysicalPar): remove assert and comment
165         that obviously was wrong...
166
167         * src/lyxfont.C (textWidth): have c as char c[2] instead of char
168         c, this avoids warnings with purify and islower.
169
170         * src/insets/figinset.C: rename struct queue to struct
171         queue_element and rewrite to use a std::queue. gsqueue is now a
172         std::queue<queue_element>
173         (runqueue): reflect move to std::queue
174         (addwait): ditto
175
176         * src/support/lstrings.h (tostr): specialize for bool, otherwise
177         we would get "1" "0" instead of "true" "false. Also make the tostr
178         functions inline.
179
180 2000-01-21  Juergen Vigna  <jug@sad.it>
181
182         * src/buffer.C (writeFileAscii): Disabled code for special groff
183         handling of tabulars till I fix this in table.C
184
185 2000-01-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
186
187         * src/support/mkdir.C (mkdir): change second argument of mkdir to
188         unsigned long int.
189         * src/support/lyxlib.h: ditto.
190
191 2000-01-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
192
193         * src/insets/insetlatexaccent.C (Draw): make accents on top of 'i'
194         and 'j' look better. This might fix the "macron" bug that has been
195         observed.
196
197         * src/support/lstrings.[Ch] (tostr): reimplement all the tostr
198         functions as one template function. Delete the old versions.
199
200         * src/support/lyxsum.C: move using std::ifstream inside
201         MODERN_STL_STREAMS
202
203         * src/support/Makefile.am (libsupport_la_SOURCES): added mkdir.C
204         and putenv.C
205
206         * src/mathed/formulamacro.C: delete #include "bufferlist.h" never used
207
208         * src/mathed/formula.C: delete #include "bufferlist.h" never used
209
210         * src/insets/figinset.C (InitFigures): use new instead of malloc
211         to allocate memory for figures and bitmaps.
212         (DoneFigures): use delete[] instead of free to deallocate memory
213         for figures and bitmaps.
214         (runqueue): use new to allocate 
215         (getfigdata): use new/delete[] instead of malloc/free
216         (RegisterFigure): ditto
217
218         * some files: moved some declarations closer to first use, small
219         whitespace changes use preincrement instead of postincrement where
220         it does not make a difference.
221         
222         * src/kbmap.[Ch]: delete code according to define NO_HASH, it is a
223         step on the way to use stl::containers for key maps. 
224
225         * src/bufferlist.h: add a typedef for const_iterator and const
226         versions of begin and end.
227
228         * src/bufferlist.[Ch]: change name of member variable _state to
229         state_. (avoid reserved names)
230         (makePup): removed
231         (getFileNames): returns the filenames of the buffers in a vector.
232
233         * configure.in (ALL_LINGUAS): added ro
234
235         * src/support/putenv.C: new file
236
237         * src/support/mkdir.C: new file
238
239 2000-01-20  Allan Rae <rae@lyx.org>
240
241         * lib/layouts/IEEEtran.layout: Added several theorem environments
242
243         * lib/templates/IEEEtran.lyx: Example theorem environments and a
244         couple of minor additions.
245
246         * lib/doc/LaTeXConfig.lyx.in:  Use URL insets for ftp sites 
247         (except for those in footnotes of course)
248
249 2000-01-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
250
251         * src/lyxlookup.C (CloseLyXLookup): set xic=0; after destruction. 
252
253         * src/mathed/math_utils.C (MathedLookupBOP): rewrite to use
254         std::sort and std::lower_bound instead of qsort and handwritten
255         binarysearch.
256         (struct compara): struct that holds the functors used by std::sort
257         and std::lower_bound in MathedLookupBOP.
258
259 2000-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
260
261         * src/support/LAssert.h: do not do partial specialization. We do
262         not really need it.
263
264         * src/support/lyxlib.h: note that lyx::getUserName() and
265         lyx::date() are not in use right now. Should these be suppressed?
266
267         * src/buffer.C (makeLaTeXFile): we do not need the user name here.
268         (makeLinuxDocFile): do not put date and user name in linuxdoc
269         headers. 
270
271         * src/support/lyxlib.h (kill): change first argument to long int,
272         since that's what solaris uses.
273
274         * src/support/kill.C (kill): fix declaration to match prototype.
275
276         * config/lyxinclude.m4 (LYX_CXX_NAMESPACES): fix the macro to
277         actually check whether namespaces are supported. This is not what
278         it used to do.
279
280         * src/support/lyxsum.C: add a using directive.
281
282 2000-01-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
283
284         * src/support/kill.C: if we have namespace support we don't have
285         to include lyxlib.h.
286
287         * src/support/lyxlib.h: use namespace lyx if supported.
288
289 2000-01-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
290
291         * src/support/date.C: new file
292
293         * src/support/chdir.C: new file
294
295         * src/support/getUserName.C: new file
296
297         * src/support/getcwd.C: new file
298
299         * src/support/abort.C: new file
300
301         * src/support/kill.C: new file
302
303         * src/support/lyxlib.h: moved all the functions in this file
304         insede struct lyx. Added also kill and abort to this struct. This
305         is a way to avoid the "kill is not defined in <csignal>", we make
306         C++ wrappers for functions that are not ANSI C or ANSI C++.
307
308         * src/support/lyxsum.C (sum): use #ifdef MODERN_STL_STREAMS
309         instead of #if __GLIBCPP__. Since lyxsum is now put inside struct
310         lyx it has been renamed to sum.
311
312 2000-01-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
313
314         * src/text.C: add using directives for std::min and std::max.
315
316 2000-01-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
317
318         * src/texrow.C (getIdFromRow): actually return something useful in
319         id and pos. Hopefully fixes the bug with positionning of errorbox
320         insets. 
321
322         * src/lyx_main.C (easyParse): output an error and exit if an
323         incorrect command line option has been given.
324
325         * src/spellchecker.C (ispell_check_word): document a memory leak.
326
327         * src/bufferlist.C (write): fix mismatched allocation/deletion,
328         where a "struct utimbuf" is allocated with "new" and deleted with
329         "delete[]". 
330
331 2000-01-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
332
333         * src/text2.C (CutSelection): don't delete double spaces.
334         (PasteSelection): ditto
335         (CopySelection): ditto
336         
337         * src/text.C (Backspace): don't delete double spaces.
338
339         * src/lyxlex.C (next): fix a bug that were only present with
340         conformant std::istream::get to read comment lines, use
341         std::istream::getline instead. This seems to fix the problem.
342
343 2000-01-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
344
345         * src/text2.C (DeleteEmptyParagraphMechanism): fix for the "not
346         allowed to insert space before space" editing problem. Please read
347         commends at the beginning of the function. Comments about usage
348         are very welcome.
349
350         * src/text.C (InsertChar): fix for the "not allowed to insert
351         space before space" editing problem.
352
353         * src/text2.C (DeleteEmptyParagraphMechanism): when
354         IsEmptyTableRow can only return false this last "else if" will
355         always be a no-op. Commented out.
356
357         * src/text.C (RedoParagraph): As far as I can understand tmp
358         cursor is not really needed.
359
360         * src/lyxtext.[Ch] (IsEmptyTableCell): commented out. As used at
361         present it could only return false anyway. 
362         (several functions): Did something not so smart...added a const
363         specifier on a lot of methods.
364         
365         * src/paragraph.C (BreakParagraph): removed the tmp->text.reserve
366         and add a tmp->text.resize. The LyXParagraph constructor does the
367         resize for us.
368         (BreakParagraphConservative): ditto
369
370         * src/support/path.h (Path): add a define so that the wrong usage
371         "Path("/tmp") will be flagged as a compilation error:
372         "`unnamed_Path' undeclared (first use this function)"
373
374 2000-01-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
375
376         * config/lyxinclude.m4 (LYX_FUNC_PUTENV_ARGTYPE): fix the macro,
377         which was bogus for several reasons.
378
379         * src/LaTeX.C (scanAux): fix the regular expression used to scan
380         .aux files. 
381         (runBibTeX): ditto.
382
383         * autogen.sh: do not use "type -path" (what's that anyway?).
384
385         * src/support/filetools.C (findtexfile): remove extraneous space
386         which caused a kpsewhich warning (at least with kpathsea version
387         3.0). 
388
389 2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
390
391         * src/mathed/Makefile.am (noinst_LTLIBRARIES): use .la
392
393         * src/insets/Makefile.am (noinst_LTLIBRARIES): use .la
394
395         * src/Makefile.am (lyx_DEPENDENCIES): switch back to .la libs
396
397 2000-01-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
398
399         * src/paragraph.C (BreakParagraph): do not reserve space on text
400         if we don't need to (otherwise, if pos_end < pos, we end up
401         reserving huge amounts of memory due to bad unsigned karma).
402         (BreakParagraphConservative): ditto, although I have not seen
403         evidence the bug can happen here.
404
405         * src/lyxparagraph.h: add a using std::list.
406
407 2000-01-11  Juergen Vigna  <jug@sad.it>
408
409         * src/menus.C (MenuDocu): output an Alert if the documentation-file
410         could not be found.
411
412 2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
413
414         * src/vc-backend.C (doVCCommand): change to be static and take one
415         more parameter: the path to chdir too be fore executing the command.
416         (retrive): new function equiv to "co -r"
417
418         * src/bufferlist.C (loadLyXFile): implement the missing parts if
419         file_not_found_hook is true.
420
421         * src/lyxvc.C (file_not_found_hook): implement file_not_found_hook.
422
423         * src/support/filetools.C (IsFileWriteable): use FileInfo to check
424         if a file is readwrite,readonly...anything else.
425
426 2000-01-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
427
428         * src/lyx_cb.C (MakeLaTeXOutput): name change from MakeDVIOutput
429         (CreatePostscript): name change from MenuRunDVIPS (or something)
430         (PreviewPostscript): name change from MenuPreviewPS
431         (PreviewDVI): name change from MenuPreviewDVI
432
433         * lib/lyxrc.example: added \pdflatex_command, \pdf_mode,
434         \view_pdf_command., \pdf_to_ps_command
435
436         * lib/configure.m4: added search for PDF viewer, and search for
437         PDF to PS converter. 
438         (lyxrc.defaults output): add \pdflatex_command,
439         \view_pdf_command and \pdf_to_ps_command.
440
441         * src/lyx_cb.C (MenuPreviewDVI): renamed from MenuPreview.
442
443         * src/bufferlist.C (write): we don't use blocksize for anything so
444         I removed it.
445
446 2000-01-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
447
448         * src/support/block.h: disable operator T* (), since it causes
449         problems with both compilers I tried. See comments in the file.
450
451         * lib/reLyX/configure.in: do not define LYX_DIR. support flag
452         --with-lyxname. 
453
454         * lib/reLyX/reLyX.in: change LYX_DIR to pkgdatadir; change env.
455         variable LYX_DIR_10x to LYX_DIR_11x.
456
457         * src/Makefile.am: replace variable LYX_DIR with pkgdatadir.
458
459         * INSTALL: document --with-lyxname.
460         * NEWS: ditto.
461
462         * configure.in: new configure flag --with-lyxname which allows to
463         choose the name under which lyx is installed. Default is "lyx", of
464         course. It used to be possible to do this with --program-suffix,
465         but the later has in fact a different meaning for autoconf.
466
467         * src/support/lstrings.h (lstrchr): reformat a bit.
468
469         * src/lyxlex.h: include LIstream.h, for Sun CC this time.
470         * src/mathed/math_defs.h: ditto.
471
472 2000-01-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
473
474         * src/lyxrc.[Ch]: New tag and variable "\make_backup". Defaults to
475         true, decides if we create a backup file or not when saving. New
476         tag and variable \pdf_mode, defaults to false. New tag and
477         variable \pdflatex_command, defaults to pdflatex. New tag and
478         variable \view_pdf_command, defaults to xpdf. New tag and variable
479         \pdf_to_ps_command, defaults to pdf2ps.
480
481 2000-01-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
482
483         * src/bufferlist.C (close): don't call insetUnlock if the buffer
484         does not have a BufferView.
485         (unlockInset): ditto + don't access the_locking_inset if the
486         buffer does not have a BufferView.
487
488         * src/LyXView.C (KeyPressMask_raw_callback): add a XSync in
489         certain circumstances so that we don't continue a keyboard
490         operation long after the key was released. Try f.ex. to load a
491         large document, press PageDown for some seconds and then release
492         it. Before this change the document would contine to scroll for
493         some time, with this change it stops imidiatly.
494
495         * src/support/block.h: don't allocate more space than needed. As
496         long as we don't try to write to the arr[x] in a array_type arr[x]
497         it is perfectly ok. (if you write to it you might segfault).
498         added operator value_type*() so that is possible to pass the array
499         to functions expecting a C-pointer.
500
501         * lib/Makefile.am (dist-hook): don't fail completely if unable to
502         cvs.
503
504         * intl/*: updated to gettext 0.10.35, tried to add our own
505         required modifications. Please verify.
506
507         * po/*: updated to gettext 0.10.35, tried to add our own required
508         modifications. Please verify.
509         
510         * src/support/lstrings.C (tostr): go at fixing the problem with
511         cxx and stringstream. When stringstream is used return
512         oss.str().c_str() so that problems with lyxstring and basic_string
513         are avoided. Note that the best solution would be for cxx to use
514         basic_string all the way, but it is not conformant yet. (it seems)
515
516         * src/lyx_cb.C + other files: moved several global functions to
517         class BufferView, some have been moved to BufferView.[Ch] others
518         are still located in lyx_cb.C. Code changes because of this. (part
519         of "get rid of current_view project".)
520
521         * src/buffer.C + other files: moved several Buffer functions to
522         class BufferView, the functions are still present in buffer.C.
523         Code changes because of this.
524
525         * config/lcmessage.m4: updated to most recent. used when creating
526         acinclude.m4.
527
528         * config/progtest.m4: updated to most recent. used when creating
529         acinclude.m4.
530         
531         * config/gettext.m4: updated to most recent. applied patch for
532         tmplinguas.
533
534         * config/gettext.m4.patch: new file that shows what changes we
535         have done to the local copy of gettext.m4.
536
537         * config/libtool.m4: new file, used in creation of acinclude.m4
538
539         * config/lyxinclude.m4: new file, this is the lyx created m4
540         macros, used in making acinclude.m4.
541         
542         * autogen.sh: GNU m4 discovered as a separate task not as part of
543         the lib/configure creation. 
544         Generate acinlucde from files in config. Actually cat
545         lyxinclude.m4, libtool.m4 and gettext.m4 together. This makes it
546         easier to upgrade .m4 files that really are external.
547
548         * src/Spacing.h: moved using std::istringstream to right after
549         <sstream>. This should fix the problem seen with some compilers.
550
551 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
552
553         * src/lyx_cb.C: began some work to remove the dependency a lot of
554         functions have on BufferView::text, even if not really needed.
555         (GetCurrentTextClass): removed this func, it only hid the
556         current_view. 
557
558         * src/Makefile.am (lyx_DEPENDENCIES): use support/libsupport.la I
559         forgot this in last commit.
560
561         * src/Bullet.C (bulletEntry): use static char const *[] for the
562         tables, becuase of this the return arg had to change to string.
563         (bulletSize): ditto
564         (~Bullet): removed unneeded destructor
565
566         * src/BufferView.C (beforeChange): moved from lyx_cb.C
567         (insetSleep): moved from Buffer
568         (insetWakeup): moved from Buffer
569         (insetUnlock): moved from Buffer
570
571         * buffer.[Ch], BufferView.[Ch] + others: moved the_locking_inset
572         from Buffer to BufferView.
573         
574         * acinclude.m4: include libtool.m4 from libtool 1.3.4.
575
576         * config/ltmain.sh: updated to version 1.3.4 of libtool
577
578         * config/ltconfig: updated to version 1.3.4 of libtool
579
580 2000-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
581
582
583         * src/buffer.C (pop_tag): fix a dubious for() loop initialization.
584         Did I get that right?
585
586         * src/lyxlex.h: add a "using" directive or two.
587         * src/Spacing.h: ditto.
588         * src/insets/figinset.C: ditto.
589         * src/support/filetools.C: ditto.
590         * src/support/lstrings.C: ditto.
591         * src/BufferView.C: ditto.
592         * src/bufferlist.C: ditto.
593         * src/lyx_cb.C: ditto.
594         * src/lyxlex.C: ditto.
595
596         * NEWS: add some changes for 1.1.4.
597         
598 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
599
600         * src/BufferView.C: first go at a TextCache to speed up switching
601         between documents.
602
603 2000-01-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
604
605         * lib/examples/ItemizeBullets.lyx: update from Tino Meinen. 
606         * lib/examples/nl_voorbeeld_ruw.lyx: ditto.
607         * lib/examples/nl_voorbeeld_verlyxt.lyx: ditto.
608         * lib/examples/nl_opsommingstekens.lyx: new translation from Tino
609         Meinen.
610         
611         * src/mathed/math_defs.h (MathedRowSt): make sure that all
612         members of the struct are correctly initialized to 0 (detected by
613         purify) 
614         * src/lyxrc.C (LyXRC): ditto for print_adapt_output.
615         * src/insets/figinset.C (InsetFig): ditto for pswid and pshgh.
616
617         * src/insets/figinset.C (sigchldchecker): use "delete" to free a
618         pidwait, since it was allocated with "new". This was potentially
619         very bad. Thanks to Michael Schmitt for running purify for us.
620
621
622 2000-01-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
623
624         * src/lyx_gui_misc.C: add a 'using std::make_pair;' statement.
625
626         * src/lyx_gui_misc.h: add a 'using std::pair;' statement.
627
628 1999-12-30  Allan Rae  <rae@lyx.org>
629
630         * lib/templates/IEEEtran.lyx: minor change
631
632         * src/lyxvc.C (registrer, checkIn), src/lyx_cb.C (MenuInsertLabel),
633         src/mathed/formula.C (LocalDispatch): askForText changes
634
635         * src/lyx_gui_misc.[Ch] (askForText): now returns a bool also so we 
636         know when a user has cancelled input. Fixes annoying problems with
637         inserting labels and version control.
638
639 1999-12-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
640
641         * src/support/lstrings.C (tostr): rewritten to use strstream and
642         stringstream
643
644 1999-12-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
645
646         * src/support/filetools.C (IsFileWriteable): use fstream to check
647         (IsDirWriteable): use fileinfo to check
648
649         * src/support/filetools.h (FilePtr): whole class deleted
650
651         * src/insets/figinset.C (GetPSSizes): rewritten to use ifstream.
652
653         * src/lyxparagraph.h (readSimpleWholeFile): make arg istream
654
655         * src/lyx_cb.C (InsertAsciiFile): use ifstream instead of FilePtr
656
657         * src/bufferlist.C (write): use ifstream and ofstream instead of
658         FILE*
659
660         * src/Spacing.h: use istrstream instead of sscanf
661
662         * src/mathed/math_defs.h: change first arg to istream from FILE*
663
664         * src/buffer.C (insertLyXFile): use ifstream instead of FilePtr
665
666         * src/mathed/math_parser.C: have yyis to be an istream 
667         (LexGetArg): use istream (yyis)
668         (yylex): ditto
669         (mathed_parse): ditto
670         (mathed_parser_file): first arg istream instead of FILE*, set yyis
671
672         * src/mathed/formula.C (Read): rewritten to use istream
673
674         * src/mathed/formulamacro.C (Read): rewritten to use istream
675
676         * src/lyxlex.h (~LyXLex): deleted desturctor 
677         (getStream): new function, returns an istream
678         (getFile): deleted funtion
679         (IsOK): return is.good();
680
681         * src/lyxlex.C (LyXLex): delete file and owns_file
682         (setFile): open an filebuf and assign that to a istream instead of
683         using FILE*
684         (setStream): new function, takes an istream as arg. 
685         (setFile): deleted function
686         (EatLine): rewritten us use istream instead of FILE*
687         (next): ditto
688         (nextToken): ditto
689
690         * src/table.C (LyXTable): use istream instead of FILE*
691         (Read): rewritten to take an istream instead of FILE*
692
693 1999-12-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
694
695         * src/buffer.C (Dispatch): remove an extraneous break statement.
696
697         * src/support/filetools.C (QuoteName): change to do simple
698         'quoting'. More work is necessary. Also changed to do nothing
699         under emx (needs fix too).
700         (Putenv): Cast the argument of putenv() with PUTENV_TYPE_ARG.
701
702         * acinclude.m4 (STL_STRING_FWD_H_LOCATION): add the comment for
703         config.h.in to the AC_DEFINE_UNQUOTED() call.
704         (LYX_FUNC_PUTENV_ARGTYPE): new macro. Checks whether putenv()
705         needs char * as argument (because Solaris 7 declares it like
706         that). 
707
708         * acconfig.h: remove placeholder for STL_STRING_FWD_H_LOCATION;
709         remove definition of BZERO.
710
711 1999-12-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
712
713         * src/support/LRegex.C: include <regex.h> if HAVE_REGEX_H is
714         defined, "lyxregex.h" if not.
715
716         * src/support/Makefile.am (noinst_LTLIBRARIES): changed from
717         pkglib_ to noinst_
718         (REGEX): new variable that is set to regex.c lyxregex.h when
719         AM_CONDITIONAL USE_REGEX is set.
720         (libsupport_la_SOURCES): add $(REGEX)
721
722         * src/mathed/Makefile.am (noinst_LTLIBRARIES): changed from
723         pkglib_ to noinst_
724
725         * src/insets/Makefile.am (noinst_LTLIBRARIES): changed from
726         pkglib_ to noinst_
727
728         * configure.in: add call to LYX_REGEX 
729
730         * acinclude.m4 (LYX_REGEX): checks if we need to use the included
731         regex or not. Uses a a AM_CONDITIONAL to decide what to compile. 
732
733 1999-12-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
734
735         * lib/bind/fi_menus.bind: new file, from
736         pauli.virtanen@saunalahti.fi. 
737
738         * src/buffer.C (getBibkeyList): pass the parameter delim to
739         InsetInclude::getKeys and InsetBibtex::getKeys.
740
741         * src/insets/insetinclude.[Ch] (getKeys): add parameter delim, which
742         is passed to Buffer::getBibkeyList
743         
744         * src/insets/insetbib.[Ch] (getKeys): add parameter delim, and use it
745         instead of the hardcoded comma.
746
747         * src/insets/insetbib.C (getKeys): make sure that there are not
748         leading blanks in bibtex keys. Normal latex does not care, but
749         harvard.sty seems to dislike blanks at the beginning of citation
750         keys. In particular, the retturn value of the function is
751
752         * INSTALL: make it clear that libstdc++ is needed and that gcc
753         2.7.x probably does not work.
754
755         * src/support/filetools.C (findtexfile): make debug message go to
756         the LATEX channel
757         * src/insets/insetbib.C (getKeys): ditto
758
759         * src/debug.C (showTags): make sure that the output is correctly
760         aligned. 
761
762         * configure.in: add a comment for TWO_COLOR_ICON define.
763
764         * acconfig.h: remove all the entries that already defined in
765         configure.in or acinclude.m4.
766
767         * src/buffer.C (makeLaTeXFile): headers of latex file also changed
768         to avoid user name, date and copyright.
769
770 1999-12-21  Juergen Vigna  <jug@sad.it>
771
772         * src/table.C (Read): Now read bogus row format informations
773                 if the format is < 5 so that afterwards the table can
774                 be read by lyx but without any format-info. Fixed the
775                 crash we experienced when not doing this.
776
777 1999-12-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
778
779         * src/text2.C (RedoHeightOfParagraph): rename arg cursor -> cur
780         (RedoDrawingOfParagraph): ditto
781         (RedoParagraphs): ditto
782         (RemoveTableRow): ditto
783
784         * src/text.C (Fill): rename arg paperwidth -> paper_width
785
786         * src/buffer.C (insertLyXFile): rename var filename -> fname
787         (writeFile): rename arg filename -> fname
788         (writeFileAscii): ditto
789         (makeLaTeXFile): ditto
790         (makeLinuxDocFile): ditto
791         (makeDocBookFile): ditto
792
793         * src/LaTeX.C (runMakeIndex): change arg name from file -> f
794         (runBibTeX): ditto
795
796         * src/Makefile.am (lyx_SOURCES): add bmtable.c and remove bmtable.C
797
798         * src/bmtable.h: add extern "C" on this file when __cplusplus is
799         defined.
800
801         * src/bmtable.c: new file, a C'ified copy of bmtable.C, this is
802         compiled by a C compiler not C++. 
803
804         * src/layout.h (LyXTextClass): added typedef for const_iterator
805         (LyXTextClassList): added typedef for const_iterator + member
806         functions begin and end.
807
808         * src/LyXView.C (UpdateDocumentClassChoice): rewritten to use
809         iterators to fill the choice_class.
810         (updateLayoutChoice): rewritten to use iterators to fill the
811         layoutlist in the toolbar.
812
813         * src/BufferView.h (BufferView::work_area_width): removed unused
814         variable. 
815
816         * src/lyx_gui_misc.C (WarnReadonly): added string parameter 'file'
817
818         * src/buffer.C (sgmlOpenTag): drop the use of the static space array
819         (sgmlCloseTag): ditto
820
821         * src/support/lstrings.h: return type of countChar changed to
822         unsigned char.
823
824         * src/support/lstrings.C (countChar): use HAVE_STD_COUNT to choose
825         what version of this func to use. Also made to return unsigned int.
826
827         * configure.in: call LYX_STD_COUNT 
828
829         * acinclude.m4 (LYX_STD_COUNT): new function checks for a standard
830         conforming std::count. 
831
832 1999-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
833
834         * src/mathed/math_draw.C (Draw, Metrics): fix a bug where a prime
835         and a subscript would give bad display (patch from Dekel Tsur
836         <dekel@math.tau.ac.il>). 
837
838         * src/insets/insetlatexaccent.h: make sure ACCENT_TYPES is public. 
839
840         * src/spellchecker.C (create_ispell_pipe): use a const_cast to
841         please sun CC.
842
843         * src/chset.h: add a few 'using' directives
844
845         * src/lyxfunc.C (Dispatch): check that LFUN_UNKNOWN_ACTION is not
846         triggered when no buffer is active
847
848         * src/layout.C: removed `break' after `return' in switch(), since
849         it is unreachable.
850
851         * src/lyx_main.C (init): make sure LyX can be ran in place even
852         when libtool has done its magic with shared libraries. Fix the
853         test for the case when the system directory has not been found.
854
855         * src/lyx_cb.C (MenuMakeLaTeX): make sure to keep the full path
856         name for the latex file.
857         (MenuMakeHTML): ditto
858
859         * src/buffer.h: add an optional boolean argument, which is passed
860         to ChangeExtension.
861
862 1999-12-20  Allan Rae  <rae@lyx.org>
863
864         * lib/templates/IEEEtran.lyx: small correction and update.
865
866         * configure.in: Attempted to use LYX_PATH_HEADER
867
868         * src/stl_string_fwd.h: Don't need HAVE_STL_STRING_FWD_H anymore
869
870         * acconfig.h, acinclude.m4 (LYX_STL_STRING_FWD): totally revised after
871         input from JMarc.  Now use preprocessor to find the header.
872         Also stopped making HAVE_STL_STRING_FWD_H and extended the comments.
873         (LYX_PATH_HEADER): My, so far, failed attempt to generalize
874         LYX_STL_STRING_FWD.  See comments in file.      
875
876 1999-12-19  Asger Alstrup Nielsen  <alstrup@diku.dk>
877
878         * The global MiniBuffer * minibuffer variable is dead.
879         
880         * The global FD_form_main * fd_form_main variable is dead.
881
882 1999-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
883
884         * src/toolbar.C (set): condition #warning on WITH_WARNINGS
885
886         * src/table.h: add the LOstream.h header
887         * src/debug.h: ditto
888         
889         * src/LyXAction.h: change the explaination of the ReadOnly
890         attribute: is indicates that the function _can_ be used.
891
892         * src/LyXAction.C (init): find-replace _can_ be used in read-only
893         mode. 
894
895 1999-12-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
896
897         * src/lyxfont.C (ascent): Make sure that char is _always_ used as
898         unsigned. 
899         (descent): ditto
900         (lbearing): ditto
901         (rbearing): ditto
902
903         * src/paragraph.C (GetWord): assert on pos>=0
904         (GetChar): ditto
905         
906         * src/support/lyxstring.C: condition the use of an invariant on
907         ENABLE_ASSERTIONS 
908         * src/support/lyxstring.h: ditto
909
910         * src/Bullet.[Ch]: replace DEBUG_AS_DEFAULT by ENABLE_ASSERTIONS.
911         Use LAssert.h instead of plain assert().
912
913         * src/support/lstrings.h: add LAssert.h, in case it is needed.
914
915         * src/lyxfunc.C: do not include LAssert.h, it is not used.
916         * src/support/filetools.C: ditto
917
918         * src/support/LAssert.h: make Assert a no-op if ENABLE_ASSERTIONS
919         is not defined. 
920
921         * INSTALL: document the new configure flags
922         
923         * configure.in: suppress --with-debug; add --enable-assertions
924
925         * acinclude.m4: various changes in alignment of help strings.
926
927 1999-12-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
928
929         * src/kbmap.C: commented out the use of the hash map in kb_map,
930         beginning of movement to a stl::container. 
931
932         * several files: removed code that was not in effect when
933         MOVE_TEXT was defined.
934         
935         * lib/kbd/iso8859-1.cdef: removed bogus backslashes. Backslashes
936         for escaping should not be used. We can discuss if the string
937         should be enclosed in f.ex. [] instead of "".
938
939         * src/trans_mgr.C (insert): use the new returned value from
940         encodeString to get deadkeys and keymaps done correctly.
941
942         * src/chset.C (encodeString): changed to return a pair, to tell
943         what to use if we know the string.
944
945         * src/lyxscreen.h (fillArc): new function.
946
947         * src/FontInfo.C (resize): rewritten to use more std::string like
948         structore, especially string::replace.
949
950         * src/insets/insetlatexaccent.C (Draw): use fillArc for the
951         approp. accents.
952
953         * configure.in (chmod +x some scripts): remove config/gcc-hack 
954
955 1999-12-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
956
957         * src/buffer.C (writeFile): change once again the top comment in a
958         .lyx file to point to www.lyx.org and to use LYX_DOCVERSION
959         instead of an hardcoded version number.
960         (makeDocBookFile): ditto
961
962         * src/version.h: add new define LYX_DOCVERSION
963
964         * po/de.po: update from Pit Sütterlin
965         * lib/bind/de_menus.bind: ditto.
966         
967         * src/lyxfunc.C (Dispatch): call MenuExport()
968         * src/buffer.C (Dispatch): ditto
969
970         * src/lyx_cb.C (MenuMakeHTML): new function, moved from
971         LyXFunc::Dispatch().
972         (MenuExport): new function, moved from
973         LyXFunc::Dispatch().
974
975         * src/trans_mgr.C (insert): small cleanup
976         * src/chset.C (loadFile): ditto
977
978         * lib/kbd/iso8859-1.cdef: add missing backslashes
979
980 1999-12-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
981
982         * src/insets/insetlatexaccent.C (Lbearing): new function, used to
983         help with placing the manually drawn accents better.
984         (Rbearing): ditto
985         (Draw): x2 and hg changed to float to minimize rounding errors and
986         help place the accents better.
987
988         * src/lyxfont.C (ascent): fixed faulty static_cast, casting from
989         unsigned short to char is just wrong...cast the char to unsigned
990         char instead so that the two values can compare sanely. This
991         should also make the display of insetlatexaccents better and
992         perhaps also some other insets.
993         (descent): ditto
994         (lbearing): new function
995         (rbearing): ditto
996
997 1999-12-15  Allan Rae  <rae@lyx.org>
998
999         * src/stl_string_fwd.h, src/Makefile.am (lyx_SOURCES):  added new
1000         header that provides a wrapper around the very annoying SGI STL header
1001         of the same name.
1002
1003         * src/support/lyxstring.C, src/LString.h:
1004         removed old SGI-STL-compatability attempts.
1005
1006         * configure.in: Use LYX_STL_STRING_FWD.
1007
1008         * acinclude.m4 (LYX_STL_STRING_FWD), acconfig.h: Test if 
1009         stl_string_fwd.h is around and try to determine it's location.
1010         Major improvement over previous SGI STL 3.2 compatability.
1011         Three small problems remain with this function due to my zero
1012         knowledge of autoconf.  JMarc and lgb see the comments in the code.
1013
1014 1999-12-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1015
1016         * src/broken_const.h, config/hack-gcc, config/README: removed
1017         
1018         * configure.in: remove --with-gcc-hack option; do not call
1019         LYX_CXX_STL_STACK 
1020
1021         * INSTALL: remove documentation of --with-broken-const and
1022         --with-gcc-hack
1023         
1024         * acconfig.h: remove all trace of BROKEN_CONST define
1025
1026         * src/buffer.C (makeDocBookFile): update version number in output
1027         file. 
1028         (SimpleDocBookOnePar): fix an assert when trying to a character
1029         access beyond string length
1030         [Patch from Jose']
1031
1032 1999-12-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1033
1034         * po/de.po: fix the Export menu
1035
1036         * lyx.man: update the description of -dbg
1037
1038         * src/lyx_main.C (setDebuggingLevel): call Debug::showLevel()
1039         (commandLineHelp): updated
1040         (easyParse): show list of available debug levels if -dbg is passed
1041         without argument.
1042
1043         * src/Makefile.am: add debug.C
1044
1045         * src/debug.h: moved some code to debug.C
1046
1047         * src/debug.C: new file. Contains code to set and show debug
1048         level. 
1049
1050         * src/layout.C: remove 'break' after 'continue' in switch
1051         statements, since these cannot be reached.
1052
1053 1999-12-13  Allan Rae  <rae@lyx.org>
1054
1055         * src/mathed/math_hash.C (math_hash): renamed from hash(), name clash.
1056         (in_word_set): hash() -> math_hash()
1057
1058         * src/LString.h: Used USING_EXCEPTIONS in SGI STL-3.2 support 
1059
1060         * acconfig.h: Added a test for whether we are using exceptions in the
1061         current compilation run. If so USING_EXCEPTIONS is defined.
1062
1063         * config.in: Check for existance of stl_string_fwd.h
1064         * src/LString.h: If compiling --with-included-string and SGI's
1065         STL version 3.2 is present (see above test) we need to block their
1066         forward declaration of string and supply a __get_c_string().
1067         However, it turns out this is only necessary if compiling with
1068         exceptions enabled so I've a bit more to add yet.
1069
1070         * src/insets/figinset.[Ch], src/insets/insetinclude.C,
1071           src/insets/insetloa.C, src/layout.h, src/lyxparagraph.h,
1072           src/support/LRegex.h, src/undo.h:
1073         Shuffle the order of the included files a little to ensure that
1074         LString.h gets included before anything that includes stl_string_fwd.h
1075
1076         *  src/support/lyxstring.C: We need to #include LString.h instead of
1077         lyxstring.h to get the necessary definition of __get_c_string.
1078         (__get_c_string): New function.  This is defined static just like SGI's
1079         although why they need to do this I'm not sure.  Perhaps it should be
1080         in lstrings.C instead.
1081
1082         * lib/templates/IEEEtran.lyx:  New template file.
1083
1084 1999-12-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
1085         
1086         * Makefile.in.in (MKINSTALLDIRS): use $(srcdir)/@MKINSTALLDIRS@
1087         * intl/Makefile.in (MKINSTALLDIRS):  ditto
1088
1089         * src/LyXAction.C (init): changed to hold the LFUN data in a
1090         automatic array in stead of in callso to newFunc, this speeds up
1091         compilation a lot. Also all the memory used by the array is
1092         returned when the init is completed.
1093
1094         * a lot of files: compiled with -Wold-style-cast, changed most of
1095         the reported offenders to C++ style casts. Did not change the
1096         offenders in C files. 
1097
1098         * src/trans.h (Match): change argument type to unsigned int.
1099
1100         * src/support/DebugStream.C: fix some types on the streambufs so
1101         that it works on a conforming implementation.
1102
1103 1999-12-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1104
1105         * lib/examples/example_{raw,lyxified}.lyx: fix embarassing sentence.
1106
1107         * src/support/lyxstring.C: remove the inline added earlier since
1108         they cause a bunch of unsatisfied symbols when linking with dec
1109         cxx. Cxx likes to have the body of inlines at the place where they
1110         are declared.
1111
1112         * src/trans.C (AddDeadkey): add an 'unsigned char' cast to avoid
1113         accessing negative bounds in array. This fixes the crash when
1114         inserting accented characters.
1115         * src/trans.h (Match): ditto
1116
1117         * src/buffer.C (Dispatch): since this is a void, it should not try
1118         to return anything...
1119
1120 1999-12-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
1121
1122         * src/buffer.h: removed the two friends from Buffer. Some changes
1123         because of this. Buffer::getFileName and Buffer::setFileName
1124         renamed to Buffer::fileName() and Buffer::fileName(...).
1125
1126 1999-12-09  Lars Gullik Bjønnes <larsbj@lyx.org>
1127
1128         * buffer.[Ch], BufferView.[Ch] + other files: Moved Buffer::text
1129         and Buffer::update(short) to BufferView. This move is currently
1130         controlled by a define MOVE_TEXT, this will be removed when all
1131         shows to be ok. This move paves the way for better separation
1132         between buffer contents and buffer view. One side effect is that
1133         the BufferView needs a rebreak when swiching buffers, if we want
1134         to avoid this we can add a cache that holds pointers to LyXText's
1135         that is not currently in use. 
1136
1137         * buffer.[Ch], lyx_main.C: small changes to the "-export" patch by
1138         André Pönitz. 
1139
1140 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
1141
1142         * buffer.[Ch]: Dispatch() - new dispatcher on the buffer level
1143
1144         * lyx_main.C: new command line option -x (or --execute) and
1145           -e (or --export). Now direct conversion from .lyx to .tex
1146           (.dvi, .ps, ...) is possible  ('lyx file.lyx --export latex')
1147           Unfortunately, X is still needed and the GUI pops up during the
1148           process...
1149
1150 1999-12-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1151
1152         * src/Spacing.C: add a using directive to bring stream stuff into
1153         normal namespace.
1154         * src/paragraph.C: ditto
1155         * src/buffer.C: ditto
1156
1157         * NEWS: updated a bit the new features of 1.1.3 (took a few things
1158         from Lars' announcement).
1159
1160         * lib/examples/nl_voorbeeld_{ruw,verlyxt}.lyx: new tutorial
1161         example files from Tino Meinen.
1162         
1163 1999-12-06  Allan Rae  <rae@lyx.org>
1164
1165         * src/LaTeX.C (runBibTeX): fix typo in accessing submatch pair.
1166
1167 1999-12-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
1168
1169         * src/support/lyxstring.C: added a lot of inline for no good
1170         reason
1171         
1172         * src/lyxfont.[Ch]: removed latexWriteStartChanges, and
1173         latexWriteEndChanges, they were not used.
1174         
1175         * src/layout.h (operator<<): output operator for PageSides
1176
1177         * src/mathed/math_iter.C (my_memcpy): slightly changed.
1178
1179         * some example files: loaded in LyX 1.0.4 and saved again to update
1180         certain constructs (table format) 
1181
1182         * a lot of files: did the change to use fstream/iostream for all
1183         writing of files. Done with a close look at Andre Poenitz's patch.
1184
1185         * some files: whitespace changes.
1186         
1187 1999-12-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1188
1189         * src/mathed/math_iter.C (my_memcpy): new function. Since the
1190         built-in memcpy() is broken on egcs and gcc 2.95 for alpha
1191         architecture, we provide our own. It is used unconditionnally, but
1192         I do not think this is a performance problem. Thanks to Angus
1193         Leeming <a.leeming@ic.ac.uk> for the code (and again to Michal
1194         Jaegermann <michal@ellpspace.math.ualberta.ca> for finding it the
1195         first time).
1196         (GetInset): use my_memcpy.
1197         (Insert): ditto
1198         (Copy): ditto
1199
1200         * lib/chkconfig.ltx: some cleanup of the latex code. I am not sure
1201         it is easier to understand, but it uses less TeX-only constructs now.
1202
1203         * acinclude.m4 (LYX_SEARCH_PROG): make it work when the PATH
1204         elements contain spaces
1205
1206         * lib/configure: regenerated
1207         
1208         * lib/configure.m4 (SEARCH_PROG): make it work when the PATH
1209         elements contain spaces; display the list of programs that are
1210         tried.
1211
1212         * autogen.sh: make sure lib/configure is executable
1213
1214         * lib/examples/*: rename the tutorial examples to begin with the
1215         two-letters language code.
1216
1217         * src/lyxfunc.C (getStatus): do not query current font if no
1218         buffer exists.
1219
1220         * src/lyx_cb.C (RunScript): use QuoteName
1221         (MenuRunDvips): ditto
1222         (PrintApplyCB): ditto
1223
1224         * src/support/filetools.[Ch] (QuoteName): new function. Add quotes
1225         around argument, so that it works well with the current shell.
1226         Does not work properly with OS/2 shells currently.
1227
1228         * src/LaTeXLog.C (ShowLatexLog): use Buffer::getLatexName
1229         * src/LyXSendto.C (SendtoApplyCB): ditto
1230         * src/lyxfunc.C (Dispatch): ditto
1231         * src/buffer.C (runLaTeX): ditto
1232         (runLiterate): ditto
1233         (buildProgram): ditto
1234         (runChktex): ditto
1235         * src/lyx_cb.C (RunScript): ditto
1236         (MenuMakeLaTeX): ditto
1237         
1238         * src/buffer.h (getLatexName): new method 
1239
1240         * src/support/filetools.C (MakeLatexName): renamed from SpaceLess
1241
1242 1999-12-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1243
1244         * images/sqrt.xpm: change name of the sqrt icon to sqrt_xpm.
1245         * src/mathed/math_panel.C (mathed_get_pixmap_from_icon): ditto
1246         (create_math_panel): ditto
1247
1248         * src/lyxfunc.C (getStatus): re-activate the code which gets
1249         current font and cursor; add test for export to html.
1250
1251         * src/lyxrc.C (read): remove unreachable break statements; add a
1252         few "using".
1253
1254         * src/bmtable.C (fl_set_bmtable_data): add a const_cast.
1255         
1256 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
1257
1258         * src/mathed/formula.C (LocalDispatch): fix small whitspace bug
1259         introduced by faulty regex.
1260         * src/buffer.C: ditto
1261         * src/lastfiles.C: ditto
1262         * src/paragraph.C: ditto
1263         * src/table.C: ditto
1264         * src/vspace.C: ditto
1265         * src/insets/figinset.C: ditto
1266         Note: most of these is absolutely harmless, except the one in
1267         src/mathed formula.C.
1268
1269 1999-11-30  Kayvan A. Sylvan  <kayvan@satyr.sylvan.com>
1270
1271         * src/ImportNoweb.C (documentclass): fixed bounds for substr
1272           operation, yielding correct results for the reLyX command.
1273
1274 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
1275
1276         * src/support/filetools.C (ExpandPath): removed an over eager
1277         Assert.
1278         (ReplaceEnvironmentPath): ditto
1279
1280         * src/toolbar.C (BubbleTimerCB): use C++ style casts. This clearly
1281         shows that we are doing something fishy in our code...
1282         (BubblePost): ditto
1283         (ToolbarCB): ditto
1284
1285         * src/lyxrc.C (read): use a double switch trick to get more help
1286         from the compiler. (the same trick is used in layout.C)
1287         (write): new function. opens a ofstream and pass that to output
1288         (output): new function, takes a ostream and writes the lyxrc
1289         elemts to it. uses a dummy switch to make sure no elements are
1290         forgotten. 
1291
1292         * src/lyxlex.h: added a struct pushpophelper for use in functions
1293         with more than one exit point.
1294
1295         * src/lyxlex.[Ch] (GetInteger): made it const
1296         (GetFloat): ditto
1297         (GetBool): ditto
1298
1299         * src/lyxfunc.C (Dispatch): added case for LFUN_SAVEPREFERENCES
1300
1301         * src/layout.[hC] : LayoutTags splitted into several enums, new
1302         methods created, better error handling cleaner use of lyxlex. Read
1303         the diff.
1304
1305         * src/bmtable.[Ch]: change some member prototypes because of the
1306         image const changes. 
1307
1308         * commandtags.h, src/LyXAction.C (init): new function:
1309         "preferences-save", saves the lyxrc entries into .lyx/preferences.
1310         This file is not read automatically but you can add \input
1311         preferences to your lyxrc if you want to. We need to discuss how
1312         to handle this. 
1313
1314         * src/LaTeX.C (runBibTeX): use regex to match for the needed lines
1315         in .aux, also remove .bib and .bst files from dependencies when
1316         running bibtex.
1317
1318         * src/BufferView.C, src/LyXView.C: add const_cast several places
1319         because of changes to images.
1320
1321         * lib/images/*: same change as for images/*
1322         
1323         * lib/lyxrc.example: Default for accept_compound is false not no.
1324
1325         * images/*: changed to be const, however I have som misgivings
1326         about this change so it might be changed back.
1327
1328 1999-11-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1329
1330         * lib/configure, po/POTFILES.in: regenerated
1331
1332         * autogen.sh: autogenerate lib/configure from lib/configure.m4
1333
1334         * config/lib_configure.m4: removed
1335         
1336         * lib/configure.m4: new file (was config/lib_configure.m4)
1337
1338         * configure.in: do not test for rtti, since we do not use it.
1339         
1340 1999-11-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
1341
1342         * src/support/lyxstring.C (lyxstring::Srep): Changed to use a
1343         doubling of allocated space scheme. This makes it faster for large
1344         strings end to use less memory for small strings. xtra rememoved. 
1345
1346         * src/insets/figinset.C (waitalarm): commented out.
1347         (GhostscriptMsg): use static_cast
1348         (GhostscriptMsg): use new instead of malloc to allocate memory for
1349         cmap. also delete the memory after use.
1350
1351         * src/lyx_cb.C (SetXtermCursor): made cursor_undefined a bool
1352
1353         * src/LaTeX.C (scanAux): new method. Scans the .aux file and looks
1354         for changes in bibtex database or style.
1355         (runBibTeX): remove all .bib and .bst files from dep before we
1356         begin. 
1357         (run): use scanAuc in when dep file already exist.
1358
1359         * src/DepTable.C (remove_files_with_extension): new method
1360         (exist): new method
1361
1362         * src/DepTable.[Ch]: made many of the methods const. 
1363
1364 1999-11-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1365
1366         * src/bufferparams.C: make sure that the default textclass is
1367         "article". It used to be the first one by description order, but
1368         now the first one is "docbook".
1369
1370         * src/lyx_main.C (setDebuggingLevel): change type of argument to
1371         string; call Debug::value.
1372         (easyParse): pass complete argument to setDebuggingLevel().
1373
1374         * src/debug.h (value): fix the code that parses debug levels.
1375
1376         * src/debug.h: add new debug type ACTION, reserved for LyXAction
1377         class.  
1378
1379         * src/LyXAction.C: use Debug::ACTION as debug channel.
1380
1381         * src/lyxlookup.C: make the debug statements go to Debug::KEY.
1382
1383         * NEWS: updated for the future 1.1.3 release.
1384
1385         * src/mathed/symbol_def.h: swap the definitions of \varepsilon and
1386         \epsilon. Now \epsilon shows as red text, and \varepsilon shows as
1387         it should. This is of course a controversial change (since many
1388         people will find that their lyx workscreen is suddenly full of
1389         red), but done for the sake of correctness.
1390
1391         * src/mathed/formulamacro.h, src/mathed/math_macro.[Ch],
1392           src/mathed/math_root.[Ch] (Clone): return a MathedInset*  
1393
1394         * src/insets/inseterror.h, src/insets/inseturl.h,
1395           src/insets/insetinfo.h, src/insets/figinset.h,
1396           src/mathed/formulamacro.h, src/mathed/math_macro.h
1397           (EditMessage): add a missing const and add _() to make sure that
1398         translation happens
1399
1400         * src/ImportNoweb.C, src/LyXAction.h, src/insets/figinset.C,
1401           src/insets/insetbib.C, src/support/filetools.C: add `using'
1402         directives for cxx.  
1403
1404         * src/lyxfunc.C (Dispatch): make sure nothing bad happens when
1405         doing 'Insert index of last word' at the beginning of a paragraph.
1406
1407 1999-11-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
1408
1409         * several files: white-space changes.
1410
1411         * src/mathed/formula.C: removed IsAlpha and IsDigit
1412
1413         * src/insets/insetbib.C (getKeys): use findtexfile to look for the
1414         .bib file. use a ifstream instead of FilePtr when parsing the .bib
1415         file for keys.
1416
1417         * src/insets/figinset.C (GetPSSizes): don't break when
1418         "EndComments" is seen. But break when a boundingbox is read.
1419
1420         * all classes inherited from Inset: return value of Clone
1421         changed back to Inset *.
1422
1423         * all classes inherited form MathInset: return value of Clone
1424         changed back to MathedInset *.
1425         
1426         * src/insets/figinset.C (runqueue): use a ofstream to output the
1427         gs/ps file. Might need some setpresicion or setw. However I can
1428         see no problem with the current code.
1429         (runqueue): use sleep instead of the alarm/signal code. I just
1430         can't see the difference.
1431
1432         * src/paragraph.C (LyXParagraph): reserve space in the new
1433         paragraph and resize the inserted paragraph to just fit.
1434
1435         * src/lyxfunc.h (operator|=): added operator for func_status.
1436
1437         * src/lyxfunc.C (MenuNew): use FileInfo instead of FilePtr to
1438         check for readable file.
1439
1440         * src/lyx_cb.C (MenuMakeLaTeX): use FileInfo instead of FilePtr to
1441         check for readable file.
1442         (MenuMakeLinuxDoc): ditto
1443         (MenuMakeDocBook): ditto
1444         (MenuMakeAscii): ditto
1445         (InsertAsciiFile): split the test for openable and readable
1446
1447         * src/bmtable.C (draw_bitmaptable): use
1448         fl_state[fl_get_vclass()].depth instead of DefualtScreen.
1449
1450         * src/LaTeX.C, src/support/filetools.[Ch]: moved do_popen and
1451         findtexfile from LaTeX to filetools.
1452         
1453         * src/ImportNoweb.C (documentclass): rewrote to use ifstream
1454         instead of FilePtr. Needs to be verified by a literate user.
1455
1456 1999-11-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1457
1458         * src/mathed/formula.[Ch] (GetCursorPos): add a missing 'const'.
1459         (EditMessage): likewise.
1460
1461         * src/paragraph.C (SimpleTeXSpecialChars): output ~ and ^
1462         respectively as \textasciitilde and \textasciicircum.
1463
1464 1999-11-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
1465
1466         * src/support/lyxstring.h: made the methods that take iterators
1467         use const_iterator.
1468
1469         * src/support/lstrings.C (countChar): use std::cound(itr, itr, val)
1470         (regexMatch): made is use the real regex class.
1471
1472         * src/support/Makefile.am: changed to use libtool
1473
1474         * src/support/.cvsignore: added *.lo, .libs and libsupport.la
1475
1476         * src/mathed/math_defs.h: made the mathaligns be in a enum instead
1477         of defines.
1478         (MathIsInset ++): changed several macros to be inline functions
1479         instead. 
1480
1481         * src/mathed/Makefile.am: changed to use libtool
1482
1483         * src/mathed/.cvsignore: added *.lo, .libs and libmathed.la
1484
1485         * src/insets/inset* : Clone changed to const and return type is
1486         the true insettype not just Inset*.
1487         
1488         * src/insets/Makefile.am: changed to use libtool
1489
1490         * src/insets/.cvsignore: added *.lo, .libs and libinsets.la
1491
1492         * src/undo.[Ch] : added empty() and changed some of the method
1493         names.
1494         
1495         * src/texrow.[Ch]: rewrote to store texrow's in a std::list.
1496
1497         * src/lyxparagraph.h: use id() and id(...) instead of getID and
1498         setID use block<> for the bullets array, added const several places.
1499
1500         * src/lyxfunc.C (getStatus): new function
1501
1502         * src/lyxfunc.[Ch] : small changes to take advantage of the new
1503         LyXAction, added const to several funtions.
1504
1505         * src/filedlg.[Ch]: rewrote to store userchache and groupchache in
1506         a std::map, and to store the dir items in a vector.
1507
1508         * src/Makefile.am (lyx_DEPENDENCIES): changed to use libtool files
1509         as dependencies.
1510
1511         * src/LyXView.[Ch] + other files : changed currentView to view.
1512         
1513         * src/LyXAction.[Ch] : ported from the old devel branch.
1514         
1515         * src/.cvsignore: added .libs and a.out
1516
1517         * configure.in : changes to use libtool. 
1518
1519         * acinclude.m4 : inserted libtool.m4
1520
1521         * .cvsignore: added libtool
1522
1523 1999-11-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1524
1525         * src/Makefile.am (lyx_DEPENDENCIES): give the explicit object
1526         file name in insets and mathed directories (otherwise the
1527         dependency is not taken in account under cygwin).
1528
1529         * src/text2.C (InsertString[AB]): make sure that we do not try to
1530         read characters past the string length.
1531
1532 1999-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1533
1534         * lib/doc/LaTeXConfig.lyx.in, 
1535           lib/chkconfig.ltx: remove the test for linuxdoc-sgml.sty.
1536
1537         * src/buffer.C (writeFile): Do not add a comment on top of .lyx
1538         file saying who created them and when this heppened; this is
1539         useless and annoys tools like cvs.
1540
1541         * lib/layouts/g-brief-{en,de}.layout,
1542           lib/templates/g-brief-{en,de}.lyx: new versions of the textclass
1543         from Thomas Hartkens <thomas@hartkens.de>.
1544
1545         * src/{insets,mathed}/Makefile.am: do not declare an empty
1546         LDFLAGS, so that it can be set at configure time (useful on Irix
1547         for -n32 flag).
1548
1549         * lib/reLyX/configure.in: make sure that the prefix is set
1550         correctly in LYX_DIR.
1551
1552 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
1553
1554         * src/commandtags.h: introduction of a new tag 'LFUN_SEQUENCE' to
1555         be used by 'command-sequence' this allows to bind a key to a
1556         sequence of LyX-commands
1557         (Example: 'command-sequence math-insert alpha; math-insert beta;")
1558
1559         * src/LyXAction.C: add "command-sequence"
1560
1561         * src/LyXFunction.C: handling of "command-sequence"
1562
1563         * src/LyXFunction.[hC] changed LyXFunc::Dispatch(string const
1564          &cmd, string const &arg) to LyXFunc::Dispatch(string const& s)
1565
1566         * src/lyxserver.C, src/minibuffer.C: Use this new interface
1567
1568 1999-11-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1569
1570         * src/buffer.C (writeFile): Do not output a comment giving user
1571         and date at the beginning of a .lyx file. This is useless and
1572         annoys cvs anyway; update version number to 1.1.
1573
1574         * src/Makefile.am (LYX_DIR): add this definition, so that a
1575         default path is hardcoded in LyX.
1576
1577         * configure.in: Use LYX_GNU_GETTEXT.
1578
1579         * acinclude.m4 (LYX_GNU_GETTEXT): new macro, essentially a copy of
1580         AM_GNU_GETTEXT with a bug fixed. 
1581
1582         * src/lyx_cb.C (RunLinuxDoc): add a cast to please dec cxx.
1583
1584         * src/chset.C: add "using std::ifstream;" to please dec cxx.
1585
1586         * src/lyx_main.C (init), INSTALL.OS2: the environment variable
1587         which is used to point to LyX data is now LYX_DIR_11x.
1588
1589         * lyx.man: convert to a unix text file; small updates.
1590
1591 1999-11-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
1592
1593         * src/support/LSubstring.[Ch]: made the second arg of most of the
1594         constructors be a const reference. 
1595
1596         * src/mathed/math_parser.C (LexInitCodes): small bug introduced by
1597         me fixed.
1598
1599         * src/support/lyxstring.[Ch] (swap): added missing member function
1600         and specialization of swap(str, str); 
1601
1602         * src/menus.C (ShowBufferMenu): to use the new BufferStorage
1603
1604         * src/bufferlist.[Ch]: use the new BufferStorage class and remove all
1605         trace of the old one.
1606
1607         * src/undo.[Ch]: made the undostack use std::list to store undo's in
1608         put the member definitions in undo.C.
1609
1610         * src/lyxparagraph.h, src/paragraph.C + a lot of files: removed
1611         NEW_TEXT and have now only code that was included when this was
1612         defined. 
1613
1614         * src/intl.C (LCombo): use static_cast
1615         (LCombo2): ditto
1616         (DispatchCallback): ditto
1617
1618         * src/definitions.h: removed whole file
1619         
1620         * src/commandtags.h: comment out LFUN_INSERT_INSET_LATEX
1621
1622         * src/chset.[Ch]: a lot rewritten, does not use lyxlex for cdef
1623         parsing and stores in a std:map. a regex defines the file format.
1624         removed unneeded members.
1625
1626         * src/bufferparams.h: added several enums from definitions.h here.
1627         Removed unsused destructor. Changed some types to use proper enum
1628         types. use block to have the temp_bullets and user_defined_bullets
1629         and to make the whole class assignable.
1630
1631         * src/bufferparams.C (Copy): removed this functions, use a default
1632         assignment instead. 
1633
1634         * src/buffer.h: made isLatex, isLinuxDoc, isDocBook, isSGML and
1635         isLiterate const.
1636
1637         * src/buffer.C (readLyXformat2): commend out all that have with
1638         oldpapersize to do. also comment out all that hve to do with
1639         insetlatex and insetlatexdel. 
1640         (setOldPaperStuff): commented out
1641
1642         * src/Makefile.am (lyx_SOURCES): remove definitions.h, add undo.C
1643
1644         * src/LyXAction.C: remove use of inset-latex-insert
1645
1646         * src/mathed/math_panel.C (button_cb): use static_cast
1647
1648         * src/insets/Makefile.am (insets_o_SOURCES): removed
1649         insetlatex.[Ch] 
1650
1651         * src/support/lyxstring.C (helper): use the unsigned long
1652         specifier, UL, instead of a static_cast.
1653
1654         * src/support/Makefile.am (libsupport_a_SOURCES): added block.h
1655
1656         * src/support/block.h: new file. to be used as a c-style array in
1657         classes, so that the class can be assignable.
1658
1659 1999-11-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1660
1661         * src/lyx_gui_misc.C (askForText): when fl_show_input() returns
1662         NULL, make sure to return an empty string (it is not possible to
1663         set a string to NULL).
1664
1665 1999-11-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1666
1667         * src/support/LRegex.C: use regex_t instead of re_pattern_buffer.
1668
1669         * src/support/lyxstring.C (helper): fix bogus cast in assertion.
1670
1671         * src/{mathed,insets}/Makefile.am (CXXLINK): add $(LDFLAGS) to the
1672         link line, so that Irix users (for example) can set it explicitely to
1673         "-n32".
1674         
1675         * src/Makefile.am (lyx_LDADD): use LYX_LIB as a variable, so that
1676         it can be overidden at make time (static or dynamic link, for
1677         example).
1678         
1679         * src/vc-backend.C, src/LaTeXFeatures.h, 
1680           src/support/LRegex.C, src/support/LRegex.h: add a few "using" 
1681         statements to bring templates to global namespace.
1682
1683 1999-11-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
1684
1685         * src/support/lyxstring.C (operator[] const): make it standard
1686         conforming. 
1687
1688         * src/minibuffer.C (Init): changed to reflect that more
1689         information is given from the lyxvc and need not be provided here.
1690
1691         * src/lyxvc.[Ch]: rewrote to use the vc-backend.
1692         
1693         * src/Makefile.am (lyx_SOURCES): add vc-backend.[Ch]
1694
1695         * src/LyXView.C (UpdateTimerCB): use static_cast
1696         (KeyPressMask_raw_callback): ditto
1697
1698         * src/BufferView.[Ch]: name change _owner -> owner_ and _buffer ->
1699         buffer_, a lot of changes because of this. currentBuffer() ->
1700         buffer(), setBuffer(...) -> buffer(...), getOwner() -> owner(),
1701         also changes to other files because of this.
1702
1703 1999-11-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
1704
1705         * src/vc-backend.[Ch]: new files. The backends for vc handling,
1706         have no support for RCS and partial support for CVS, will be
1707         improved later.
1708         
1709         * src/insets/ several files: changes because of function name
1710         changes in Bufferview and LyXView.
1711         
1712         * src/mathed/math_symbols.C (math_insert_symbol): use static_cast
1713
1714         * src/support/LSubstring.[Ch]: new files. These implement a
1715         Substring that can be very convenient to use. i.e. is this
1716         possible:
1717         string a = "Mary had a little sheep";
1718         Substring(a, "sheep") = "lamb";
1719         a is now "Mary has a little lamb".
1720
1721         * src/support/LRegex.[Ch]: a regex class that can be used to pick
1722         out patterns and subpatterns of strings. It is used by LSubstring
1723         and also by vc-backend.C
1724         
1725         * src/support/lyxstring.C: went over all the assertions used and
1726         tried to correct the wrong ones and flag which of them is required
1727         by the standard. some bugs found because of this. Also removed a
1728         couple of assertions.
1729
1730         * src/support/Makefile.am (libsupport_a_SOURCES): added
1731         LSubstring.[Ch] and LRegex.[Ch]
1732
1733         * src/support/FileInfo.h: have struct stat buf as an object and
1734         not a pointer to one, some changes because of this.
1735
1736         * src/LaTeXFeatures.C (getTClassPreamble): also use the
1737         information in layout when adding the layouts preamble to the
1738         textclass preamble.
1739
1740         * src/LaTeXFeatures.h: use a vector<bool> to store the layout
1741         usage in.
1742
1743         * configure.in (CPPFLAGS): use AC_CHECK_FUNCS to check for XOpenIM
1744         because of bug in OS/2.
1745
1746 1999-11-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1747
1748         * lib/layouts/lyxmacros.inc (lyxcode): set the font with
1749         \verbatim@font instead of \ttfamily, so that it can be redefined.
1750
1751         * src/BackStack.h, src/DepTable.C, src/DepTable.h, src/LaTeX.C,
1752           src/LaTeX.h, src/lastfiles.C, src/lastfiles.h, src/layout.C,
1753           src/layout.h, src/text2.C: add 'using' directive to bring the
1754         STL templates we need from the std:: namespace to the global one.
1755         Needed by DEC cxx in strict ansi mode.
1756
1757         * src/support/LIstream.h,src/support/LOstream.h,
1758           src/support/lyxstring.h,src/table.h,
1759           src/lyxlookup.h: do not include <config.h> in header
1760         files. This should be done in the .C files only.
1761
1762         * development/lyx.spec.in: WHATSNEW has been renamed to NEWS
1763         (from Kayvan).
1764         
1765
1766 1999-11-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1767
1768         * config/lib_configure.m4,lib/configure,lib/lyxrc.example: update
1769         from Kayvan to fix the tth invokation.
1770
1771         * development/lyx.spec.in: updates from Kayvan to reflect the
1772         changes of file names.
1773
1774 1999-11-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
1775
1776         * src/text2.C (InsertStringB): use std::copy
1777         (InsertStringA): use std::copy
1778
1779         * src/bufferlist.C: use a vector to store the buffers in. This is
1780         an internal change and should not affect any other thing.
1781         
1782         * src/BufferView.C (waitForX): use XSync instead of the lengthy
1783         stuff in waitForX.
1784
1785         * src/text.C (Fill): fix potential bug, one off bug.
1786
1787 1999-11-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1788
1789         * src/Makefile.am (lyx_main.o): add more files it depends on.
1790
1791         * src/lyx_cb.C (addNewlineAndDepth): parameters in wrong order.
1792
1793         * src/support/lyxstring.C: use size_t for the reference count,
1794         size, reserved memory and xtra.
1795         (internal_compare): new private member function. Now the compare
1796         functions should work for std::strings that have embedded '\0'
1797         characters.
1798         (compare): all compare functions rewritten to use
1799         internal_compare.
1800         
1801 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
1802
1803         * src/support/lyxstring.C (compare): pass c_str()
1804         (compare): pass c_str
1805         (compare): pass c_str
1806
1807 1999-11-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1808
1809         * src/support/DebugStream.C: <config.h> was not included correctly.
1810
1811         * lib/configure: forgot to re-generate it :( I'll make this file
1812         auto generated soon.
1813
1814 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
1815
1816         * acinclude.m4 (cross_compiling): add -fpermissive when gcc 2.95.x
1817         is used.
1818
1819         * src/support/lyxstring.C: some changes from length() to rep->sz.
1820         avoids a function call.
1821
1822         * src/support/filetools.C (SpaceLess): yet another version of the
1823         algorithm...now per Jean-Marc's suggestions.
1824
1825 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
1826
1827         * src/layout.C (less_textclass_desc): functor for use in sorting
1828         of textclasses. 
1829         (LyXTextClass::Read): sort the textclasses after reading.
1830         
1831         * src/support/filetools.C (SpaceLess): new version of the
1832         SpaceLess functions. What problems does this one give? Please
1833         report.
1834
1835         * images/banner_bw.xbm: made the arrays unsigned char *
1836
1837 1999-11-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1838
1839         * src/support/lyxstring.C (find): remove bogus assertion in the
1840         two versions of find where this has not been done yet.
1841
1842         * src/support/lyxlib.h: add missing int return type to
1843         lyx::chdir(). 
1844
1845         * src/menus.C (ShowFileMenu): disable exporting to html if no
1846         html export command is present.
1847
1848         * config/lib_configure.m4: add a test for an HTML converter. The
1849         programs checked for are, in this order: tth, latex2html and
1850         hevea. 
1851
1852         * lib/configure: generated from config/lib_configure.m4.
1853
1854         * src/lyxfunc.C (Dispatch): update and improve the execution of an
1855         html converter. The parameters are now passed through $$FName and
1856         $$OutName, instead of standard input/output.
1857
1858         * src/lyxrc.{C,h}: rename \tth_command to \html_command.
1859
1860         * lib/lyxrc.example: update description of \html_command. 
1861         add "quotes" around \screen_font_xxx font setting examples to help
1862         people who use fonts with spaces in their names.
1863
1864 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
1865
1866         * Distribution files: updates for v1.1.2
1867
1868         * src/support/lyxstring.C (find): remove bogus assert and return
1869         npos for the same condition.
1870
1871 1999-11-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
1872
1873         * added patch for OS/2 from SMiyata.
1874
1875 1999-10-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
1876
1877         * src/text2.C (CutSelection): make space_wrapped a bool
1878         (CutSelection): dont declare int i until we have to.
1879         (alphaCounter): return a char const *.
1880
1881 1999-10-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1882
1883         * src/support/syscall.C (Systemcalls::kill): 
1884           src/support/filetools.C (PutEnv, PutEnvPath): 
1885           src/lyx_cb.C (addNewlineAndDepth): 
1886           src/FontInfo.C (FontInfo::resize): condition some #warning
1887         directives with WITH_WARNINGS.
1888         
1889
1890 1999-10-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
1891
1892         * src/layout.[Ch] + several files: access to class variables
1893         limited and made accessor functions instead a lot of code changed
1894         becuase of this. Also instead of returning pointers often a const
1895         reference is returned instead.
1896         
1897         * src/form1.C (create_form_Figure): added a couple fo "no-c-format"
1898
1899         * src/Makefile.am (dist-hook): added used to remove the CVS from
1900         cheaders upon creating a dist
1901         (EXTRA_DIST): added cheaders
1902
1903         * src/support/lstrings.C (tostr(char)): fix it to handle param as
1904         a character not as a small integer. 
1905
1906         * src/support/lyxstring.C (find): removed Assert and added i >=
1907         rep->sz to the first if.
1908
1909 1999-10-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
1910
1911         * src/layout.[Ch] src/BufferView.C src/LaTeXFeatures.C
1912         src/LyXView.C src/buffer.C src/bufferparams.C
1913         src/lyx_cb.C src/lyxfunc.C src/paragraph.C src/text.C 
1914         src/text2.C src/insets/insetinclude.C:
1915         lyxlayout renamed to textclasslist.
1916
1917         * src/layout.C: some lyxerr changes.
1918
1919         * src/layout.[Ch] (LyXLayout::Read): changed second paramter to
1920         LyXTextClass. rewrote LT_COPYSTYLE, rewrote LT_OBSOLETEDBY
1921         (LyXLayoutList): removed all traces of this class.
1922         (LyXTextClass::Read): rewrote LT_STYLE
1923         (LyXTextClass::hasLayout): new function
1924         (LyXTextClass::GetLayout): rewritten to return an iterator + has
1925         both const and nonconst version.
1926         (LyXTextClass::delete_layout): new function.
1927         (LyXTextClassList::Style): bug fix. do the right thing if layout
1928         is to big.
1929         (LyXTextClassList::NumberOfLayout): new acces to layoutlist.
1930         (LyXTextClassList::NameOfLayout): ditto 
1931         (LyXTextClassList::Load): ditto
1932
1933         * src/buffer.C (makeLaTeXFile): new access to layoutlist
1934
1935         * src/LaTeXFeatures.C (getTClassPreamble): new access to layoutlist
1936
1937         * src/LyXAction.C (LookupFunc): added a workaround for sun
1938         compiler, on the other hand...we don't know if the current code
1939         compiles on sun at all...
1940
1941         * src/support/filetools.C (CleanupPath): subst fix
1942
1943         * src/insets/insetbib.C (delDatabase): subst fix, this looks
1944         _really_ weird.
1945
1946         * src/support/filetools.C (PutEnvPath): subst fix, how come nobody
1947         complained about this one?
1948
1949         * src/insets/insetinclude.C (Latex): subst fix
1950
1951         * src/insets/insetbib.C (getKeys): subst fix
1952
1953         * src/LyXSendto.C (SendtoApplyCB): subst fix
1954
1955         * src/lyx_main.C (init): subst fix
1956
1957         * src/layout.C (Read): subst fix
1958
1959         * src/lyx_sendfax_main.C (button_send): subst fix
1960
1961         * src/buffer.C (RoffAsciiTable): subst fix
1962
1963         * src/lyx_cb.C (MenuFax): subst fix
1964         (PrintApplyCB): subst fix
1965
1966 1999-10-26  Juergen Vigna  <jug@sad.it>
1967
1968         * src/table.C (TexEndOfCell) + (DocBookEndOfCell): removed some #if 0
1969
1970         (Read): Cleaned up this code so now we read only format vestion >= 5
1971
1972 1999-10-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
1973
1974         * src/support/filetools.C (PutEnvPath): subst fix for EMX, how
1975         come nobody has complained about this one?
1976
1977         * src/insets/insetinclude.C (Latex): subst fix
1978
1979         * src/insets/insetbib.C (getKeys): subst fix
1980
1981         * src/lyx_main.C (init): subst fix
1982
1983         * src/layout.C (Read): subst fix
1984
1985         * src/buffer.C (RoffAsciiTable): subst fix
1986
1987         * src/lyx_cb.C (MenuFax): subst fix.
1988
1989         * src/layout.[hC] + some other files: rewrote to use
1990         std::container to store textclasses and layouts in.
1991         Simplified, removed a lot of code. Make all classes
1992         assignable. Further simplifications and review of type
1993         use still to be one. 
1994
1995         * src/menus.C (ShowFileMenu/ShowFileMenu2): Use the iterators from
1996         lastfiles to create the lastfiles partr of the menu.
1997
1998         * src/lastfiles.[Ch]: rewritten to use deque to store the
1999         lastfiles in. Uses fstream for reading and writing. Simplifies
2000         code.
2001
2002         * src/support/syscall.C: remove explicit cast.
2003
2004         * src/BufferView.C (CursorToggleCB): removed code snippets that
2005         were commented out.
2006         use explicat C++ style casts instead of C style casts. also use
2007         u_vdata instea of passing pointers in longs.
2008
2009         * src/PaperLayout.C: removed code snippets that were commented out.
2010
2011         * src/lyx_gui_misc.C: removed code snippets that were commented out. 
2012
2013         * src/lyx_main.C: removed code snippets that wer commented out.
2014
2015         * src/paragraph.C: removed code snippets that were commented out.
2016
2017         * src/lyxvc.C (logClose): use static_cast
2018         (logUpdate): ditto
2019         (viewLog): remove explicit cast to void*
2020         (showLog): removed old commented code
2021
2022         * src/menus.C: use static_cast instead of C style casts. use
2023         u_vdata instead of u_ldata. remove explicit cast to (long) for
2024         pointers. Removed old code that was commented out.
2025
2026         * src/insets/inset.C: removed old commented func
2027
2028         * src/insets/insetref.C (InsetRef): removed old code that had been
2029         commented out for a long time.
2030         (Edit): ditto
2031         (escape): removed C style cast
2032
2033         * src/insets/insetlatexaccent.C (Draw): removed old commented code
2034
2035         * src/insets/insetlatex.C (Draw): removed old commented code
2036         (Read): rewritten to use string
2037
2038         * src/insets/insetlabel.C (escape): removed C style cast
2039
2040         * src/insets/insetindex.h: removed vdata and ldata from FD_index_form
2041
2042         * src/insets/insetindex.C: use static_cast and u_vdata, removed
2043         old commented code.
2044
2045         * src/insets/insetinclude.h: removed a couple of stupid bools
2046
2047         * src/insets/insetinclude.C (include_cb): use static_cast and u_data.
2048         (Clone): remove C style cast
2049         (getKeys): changed list to lst because of std::list
2050
2051         * src/insets/inseterror.C (Draw): removed som old commented code.
2052
2053         * src/insets/insetcommand.C (Draw): removed some old commented code.
2054
2055         * src/insets/insetbib.C (bibitem_cb): removed code that has been
2056         commented out forever.
2057         (bibitem_cb): use static_cast instead of C style cast
2058         use of vdata changed to u_vdata.
2059
2060         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forward the data
2061         parameter.
2062         (CloseUrlCB): use static_cast instead of C style cast.
2063         (CloseUrlCB): added a fl_free form...it seemed to be missing.
2064
2065         * src/insets/insetinfo.C (Edit): pass object in u_vdata instead
2066         (C_InsetInfo_CloseInfoCB): forward the ob parameter
2067         (CloseInfoCB): static_cast from ob->u_vdata instead.
2068         (Edit): removed bogus arg from fl_set_object_shortcut, set to 1
2069         instead. 
2070
2071         * src/insets/inseterror.C (Edit): pass object in u_vdata instead
2072         (C_InsetError_CloseErrorCB): forward the ob parameter
2073         (CloseErrorCB): static_cast from ob->u_vdata instead.
2074
2075         * src/vspace.h: include LString.h since we use string in this class.
2076
2077         * src/vspace.C (lyx_advance): changed name from advance because of
2078         nameclash with stl. And since we cannot use namespaces yet...I
2079         used a lyx_ prefix instead. Expect this to change when we begin
2080         using namespaces.
2081
2082         * src/BufferView.[Ch] (BufferView::~BufferView): removed 
2083
2084         * src/BackStack.h: rewrote to use std::stack. made BackStackItem
2085         and removed now defunct constructor and deconstructor.
2086
2087         * src/BufferView.h: have backstack as a object not as a pointer.
2088         removed initialization from constructor. added include for BackStack 
2089
2090         * development/lyx.spec.in (%build): add CFLAGS also.
2091
2092         * src/screen.C (drawFrame): removed another warning.
2093
2094 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2095
2096         * renamed WHATSNEW to NEWS (usual GNU style), CHANGES to
2097         OLD-CHANGES (not used anymore) and modified INSTALL, INSTALL.OS2,
2098         README and ANNOUNCE a bit for the next release. More work is
2099         needed, of course.
2100
2101         * src/paragraph.C (SimpleTeXBlanks): spaces are automatically made
2102         unbreakable if we are in freespacing mode (LyX-Code), but not in
2103         latex mode.
2104
2105 1999-10-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
2106
2107         * src/BackStack.h: fixed initialization order in constructor
2108
2109         * Makefile.am (MAINTAINERCLEANFILES): removed po/POTFILES.in
2110
2111         * acinclude.m4 (VERSION): new rules for when a version is
2112         development, added also a variable for prerelease.
2113         (warnings): we set with_warnings=yes for prereleases
2114         (lyx_opt): prereleases compile with same optimization as development 
2115         (CXXFLAGS): only use pedantic if we are a development version 
2116
2117         * src/BufferView.C (restorePosition): don't do anything if the
2118         backstack is empty.
2119
2120         * src/BackStack.h: added member empty, use this to test if there
2121         is anything to pop...
2122
2123 1999-10-25  Juergen Vigna  <jug@sad.it>
2124
2125         * forms/form1.fd +
2126         * forms/layout_forms.fd +
2127         * forms/latexoptions.fd +
2128         * lyx.fd: changed for various form resize issues
2129
2130         * src/mathed/math_panel.C +
2131         * src/insets/inseterror.C +
2132         * src/insets/insetinfo.C +
2133         * src/insets/inseturl.C +
2134         * src/insets/inseturl.h +
2135         * src/LaTeXLog.C +
2136         * src/LyXSendto.C +
2137         * src/PaperLayout.C +
2138         * src/ParagraphExtra.C +
2139         * src/TableLayout.C +
2140         * src/form1.C +
2141         * src/layout_forms.C +
2142         * src/lyx.C +
2143         * src/lyx_cb.C +
2144         * src/lyx_gui.C +
2145         * src/lyxfr0.C +
2146         * src/lyxfunc.C +
2147         * src/lyxvc.C +
2148         * src/menus.C: fixed various resize issues. So now forms can be
2149         resized savely or not be resized at all.
2150         
2151         * forms/form_url.fd +
2152         * src/insets/form_url.[Ch]: added because it's cleaner and easier
2153         to modify IMO.
2154
2155         * src/insets/Makefile.am: added files form_url.[Ch]
2156         
2157 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2158
2159         * INSTALL: it is now possible to compile LyX with digital C++ 6.1
2160         (and presumably 6.2).
2161
2162         * src/{BufferView,LyXView,combox,filedlg,intl,lyxserver,lyxvc,
2163         menus,minibuffer,toolbar}.{C,h}: added C_xxx wrappers around
2164         remaining static member callbacks. 
2165
2166         * src/lyxfunc.C (Dispatch): Use _() instead of N_() fot minibuffer
2167         messages. 
2168
2169         * src/support/lyxstring.h: declare struct Srep as friend of
2170         lyxstring, since DEC cxx complains otherwise.
2171
2172 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
2173
2174 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
2175
2176         * src/LaTeX.C (run): made run_bibtex also depend on files with
2177         extension ".bst"
2178         (runBibTeX): added scans for "\\bibstyle", now also ".bst" files
2179         are put into the dependency file.
2180
2181         * src/spellchecker.C (create_ispell_pipe): removed old #warning,
2182         the code has shown itself to work
2183         (create_ispell_pipe): removed another warning, added a comment
2184         instead. 
2185
2186         * src/minibuffer.C (ExecutingCB): removed code that has been
2187         commented out a long time
2188
2189         * src/lyxfunc.C (processKeyEvent): removed some very old commented
2190         out code + a warning.
2191
2192         * src/support/lyxstring.h: comment out the three private
2193         operators, when compiling with string ansi conforming compilers
2194         they make problems.
2195
2196         * src/mathed/math_symbols.C (AddBitmap): change 6th arg to be
2197         unsigned char *.
2198         (pixmapFromBitmapData): change type of bdata to be unsigned char *
2199         (pixmapFromBitmapData): add a reinterpret_cast in the call to
2200         XCreateImage
2201
2202         * src/mathed/math_panel.h: change 6th arg to AddBitmap to be
2203         unsigned char *
2204
2205         * src/mathed/math_panel.C (create_math_panel): remove explicit
2206         casts
2207
2208         * src/bmtable.h: change last paramter to fl_set_bmtable_data to be
2209         unsigned char *.
2210
2211         * src/bmtable.C (struct BMTABLE_SPEC): make bdata unsigned char *
2212         (draw_bitmaptable): add a reinterpret_cast to sp->bdata in the call
2213         to XCreatePixmapFromBitmapData
2214         (fl_set_bmtable_data): change the last argument to be unsigned
2215         char *
2216         (fl_set_bmtable_file): change bdata to unsinged char *, change bw
2217         and bh to be unsigned int, remove explicit casts in call to
2218         XReadBitmapFileData.
2219
2220         * images/arrows.xbm: made the arrays unsigned char *
2221         * images/varsz.xbm: ditto
2222         * images/misc.xbm: ditto
2223         * images/greek.xbm: ditto
2224         * images/dots.xbm: ditto
2225         * images/brel.xbm: ditto
2226         * images/bop.xbm: ditto
2227
2228         * Makefile.am (MAINTAINERCLEANFILES): added po/POTFILES.in
2229
2230         * acinclude.m4 (LYX_GXX_STRENGHT_REDUCE): removed. 
2231         (LYX_PROG_CXX): added -pedantic to g++ compile options when
2232         with-warnings, removed the __STRING_ANSI__ hack, seems to not be
2233         needed. 
2234         (LYX_CXX_CHEADERS): added <clocale> to the test. 
2235
2236 1999-10-23  Lars Gullik Bjønnes  <larsbj@lyx.org>
2237
2238         * src/lyx_cb.C (addNewlineAndDepth): changed to use string::append.
2239
2240         * src/support/lyxstring.C (append): fixed something that must be a
2241         bug, rep->assign was used instead of rep->append.
2242
2243         * src/support/Makefile.am (libsupport_a_SOURCES): added LIstream.h
2244         and LOstream.h
2245
2246         * src/lyxfunc.C (processKeyEvent): removed faulty line that made
2247         lyx insert double chars. Fix spotted by Kayvan.
2248
2249 1999-10-23  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
2250
2251         * Fixed the tth support. I messed up with the Emacs patch apply feature
2252         and omitted the changes in lyxrc.C.
2253
2254 1999-10-22  Juergen Vigna  <jug@sad.it>
2255
2256         * src/insets/figinset.C (CallbackFig): Just changed the defines a bit.
2257
2258         * src/lyx_cb.C (MenuInsertRef) + 
2259         * src/lyx_gui.C (create_forms): Inserted fl_set_form_minsize so that
2260         the form cannot be resized under it limits (fixes a segfault)
2261         
2262         * src/lyx.C (create_form_form_ref) +
2263         * forms/lyx.fd: Changed Gravity on name input field so that it is
2264         resized correctly.
2265
2266 1999-10-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2267
2268         * configure.in: use LYX_CXX_STL_MODERN_STREAMS; check for headers
2269         <ostream> and <istream>.
2270         
2271         * acinclude.m4 (LYX_CXX_STL_MODERN_STREAMS): new test. Checks
2272         whether <fstream> provides the latest standard features, or if we
2273         have an oldstyle library (like in egcs).
2274         (LYX_CXX_STL_STRING): fix the test.
2275
2276         * src/support/DebugStream.{C,h}: use L{I,O}stream.h and condition the
2277         code on MODERN_STL_STREAM.
2278
2279         * src/support/lyxstring.h: use L{I,O}stream.h.
2280
2281         * src/support/L{I,O}stream.h: new files, designed to setup
2282         correctly streams for our use
2283           - includes the right header depending on STL capabilities
2284           - puts std::ostream and std::endl (for LOStream.h) or
2285           std::istream (LIStream.h) in toplevel namespace.
2286
2287 1999-10-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
2288
2289         * src/LaTeX.C (run): added a check in 0 sumchange so that if it
2290         was a bib file that had been changed we ensure that bibtex is run.
2291         (runBibTeX): enhanced to extract the names of the bib files and
2292         getting their absolute path and enter them into the dep file.
2293         (findtexfile): static func that is used to look for tex-files,
2294         checks for absolute patchs and tries also with kpsewhich.
2295         Alternative ways of finding the correct files are wanted. Will
2296         probably be moved.
2297         (do_popen): function that runs a command using popen and returns
2298         the whole output of that command in a string. Should be moved to
2299         somewhere else.
2300
2301         * src/DepTable.[Ch] (extchanged): new function that returns true if a
2302         file with extension ext has changed.
2303
2304         * src/insets/figinset.C: added ifdef guards around the fl_free
2305         code that jug commented out. Now it is commented out when
2306         compiling with XForms == 0.89.
2307
2308         * src/support/lyxstring.C: moved the definition of lyxstring::Srep
2309         to lyxstring.C, and only keep a forward declaration in
2310         lyxstring.h. Simplifies the header file a bit and should help a
2311         bit on compile time too. Also changes to Srep will not mandate a
2312         recompile of code just using string.
2313         (~lyxstring): definition moved here since it uses srep.
2314         (size): definition moved here since it uses srep.
2315
2316         * src/support/lyxstring.h: removed a couple of "inline" that should
2317         not be there.
2318
2319 1999-10-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2320
2321         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forgot to pass
2322         the 'ob' argument.
2323
2324 1999-10-21  Juergen Vigna  <jug@sad.it>
2325
2326         * src/table.C (SetPWidth): Just a small fix so the alignment is not
2327         set to left if I just remove the width entry (or it is empty).
2328
2329         * src/text2.C (SetCursorIntern): Fixed a bug calculating to use wrong
2330         paragraph when having dummy paragraphs.
2331
2332 1999-10-20  Juergen Vigna  <jug@sad.it>
2333
2334         * src/insets/figinset.C: just commented some fl_free_form calls
2335         and added warnings so that this calls should be activated later
2336         again. This avoids for now a segfault, but we have a memory leak!
2337
2338         * src/lyxfunc.C (processKeyEvent) (Dispatch): changed
2339         'const char * argument' to 'string argument', this should
2340         fix some Asserts() in lyxstring.C.
2341
2342         * src/lyxfunc.h: Removed the function argAsString(const char *)
2343         as it is not used anymore.
2344
2345 1999-10-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
2346
2347         * src/support/lyxstring.C (getline): reads now _all_ chars. uses
2348         get instead of >>
2349
2350         * src/Literate.h: some funcs moved from public to private to make
2351         interface clearer. Unneeded args removed.
2352
2353         * src/Literate.C (scanLiterateLogFile): rewritten to use iostream
2354         instead of lyxlex.
2355         (scanBuildLogFile): ditto
2356
2357         * src/LaTeX.C (scanLogFile): merged LaTeX Error handling into
2358         normal TeX Error. Still room for improvement.
2359
2360         * src/LaTeX.[Ch]: removed scanError. Wrong place and not needed.
2361
2362         * src/buffer.C (insertErrors): changes to make the error
2363         desctription show properly.
2364
2365         * src/LaTeX.C (deplog): removed the test for file in lyx doc dir.
2366         could never happen
2367
2368         * src/support/lyxstring.C (helper): changed to use
2369         sizeof(object->rep->ref).
2370         (operator>>): changed to use a pointer instead.
2371
2372         * src/support/lyxstring.h: changed const reference & to value_type
2373         const & lets see if that helps.
2374
2375 1999-10-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
2376
2377         * Makefile.am (rpmdist): fixed to have non static package and
2378         verison.
2379
2380         * src/support/lyxstring.C: removed the compilation guards
2381
2382         * src/vspace.C (nextToken): use i + 1  instead of ++i. Maks things
2383         a bit clearer.
2384
2385         * src/support/Makefile.am (LYXSTRING): bruker USE_LYXSTRING for
2386         conditional compile of lyxstring.Ch
2387
2388         * acinclude.m4 (LYX_CXX_STL_STRING): new and improved, still a
2389         stupid check, but it is a lot better than the bastring hack. 
2390         (LYX_CXX_STL_STRING): bruker nå AM_CONDITIONAL(USE_LYXSTRING  
2391
2392         * several files: changed string::erase into string::clear. Not
2393         really needed.
2394         
2395         * src/chset.C (encodeString): use a char temporary instead
2396
2397         * src/table.C (TexEndOfCell): added tostr around
2398         column_of_cell(fcell+i)+1 and around right_column_of_cell(fcell+i)+1
2399         (TexEndOfCell): ditto
2400         (TexEndOfCell): ditto
2401         (TexEndOfCell): ditto
2402         (DocBookEndOfCell): ditto
2403         (DocBookEndOfCell): ditto
2404         (DocBookEndOfCell): ditto
2405         (DocBookEndOfCell): ditto
2406
2407         * src/paragraph.C (TeXEnvironment): added tostr around foot_count -1
2408
2409         * src/lyxfr1.C (SearchReplaceAllCB): added tostr around replace_count
2410
2411         * src/lyx_cb.C (MenuRunLaTeX): added tostr around ret
2412         (MenuBuildProg): added tostr around ret
2413         (MenuRunChktex): added tostr around ret
2414         (DocumentApplyCB): added tostr around ret
2415
2416         * src/chset.C (encodeString): added tostr around t->ic
2417
2418         * src/buffer.C (makeLaTeXFile): added tostr around secnumdepth
2419         (makeLaTeXFile): added tostr around tocdepth
2420         (makeLaTeXFile): added tostr around ftcound - 1
2421
2422         * src/insets/insetbib.C (setCounter): added tostr around counter.
2423
2424         * src/support/lyxstring.h: added an operator+=(int) to catch more
2425         mistakes. 
2426
2427         * src/support/lyxstring.C (lyxstring): We DON'T allow NULL pointers.
2428         (lyxstring): We DON'T allow NULL pointers.
2429
2430 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2431
2432         * src/mathed/math_macro.C (MathMacroArgument::Write,
2433         MathMacroTemplate::WriteDef): add tostr() around macro arg numbers
2434         when writing them out.
2435
2436         * src/LString.C: remove, since it is not used anymore.
2437         
2438         * src/support/lyxstring.C: condition the content to
2439         USE_INCLUDED_STRING macro.
2440
2441         * src/mathed/math_symbols.C, src/support/lstrings.C,
2442         src/support/lyxstring.C: add `using' directive to specify what
2443         we need in <algorithm>. I do not think that we need to
2444         conditionalize this, but any thought is appreciated.
2445
2446         * many files: change all callback functions to "C" linkage
2447         functions to please strict C++ compilers like DEC cxx 6.1 in mode
2448         strict_ansi. Those who were static are now global. 
2449             The case of callbacks which are static class members is
2450         trickier, since we have to make C wrappers around them (see
2451         InsetError, InsetInfo and InsetUrl). The same holds for friends. I
2452         did not finish this yet, since it defeats the purpose of
2453         encapsulation, and I am not sure what the best route is.
2454
2455 1999-10-19  Juergen Vigna  <jug@sad.it>
2456
2457         * src/support/lyxstring.C (lyxstring): we permit to have a null
2458         pointer as assignment value and just don't assign it.
2459
2460         * src/vspace.C (nextToken): corrected this function substituting
2461         find_first(_not)_of with find_last_of.
2462
2463         * src/TableLayout.C (UpdateLayoutTable) (TableOptionsCB)
2464                 (TableOptCloseCB) (TableSpeCloseCB):
2465         inserted fl_set_focus call for problem with fl_hide_form() in
2466         xforms-0.89.
2467
2468 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2469
2470         * src/lyx_cb.C (LayoutsCB): fix bug where int was added to a
2471         string. 
2472
2473 1999-10-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2474
2475         * src/lyxrc.C (Read): RC_PRINTEXSTRAOPTIONS now uses
2476         LyXLex::next() and not eatline() to get its argument.
2477
2478 1999-10-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
2479
2480         * src/DepTable.[Ch]: rewritten to store the dependencies in a map
2481         instead, use fstreams for io of the depfile, removed unneeded
2482         functions and variables. 
2483
2484         * src/LaTeX.[Ch] (class TeXErrors): rewrote to store the errors in a
2485         vector instead, removed all functions and variables that is not in
2486         use.
2487
2488 1999-10-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
2489
2490         * src/buffer.C (insertErrors): use new interface to TeXError
2491
2492         * Makefile.am (rpmdist): added a rpmdist target
2493
2494         * lib/reLyX/Makefile.am: added RelyxFigure.pm and Verbatim.pm as
2495         per Kayvan's instructions.
2496
2497 1999-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2498
2499         * src/Makefile.am: add a definition for localedir, so that locales
2500         are found after installation (Kayvan)
2501
2502 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
2503
2504         * development/.cvsignore: new file.
2505
2506 1999-10-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2507
2508         * acinclude.m4 (LYX_CXX_CHEADERS): New macro. Checks whether the
2509         C++ compiler provides wrappers for C headers and use our alternate
2510         version otherwise.
2511
2512         * configure.in: use LYX_CXX_CHEADERS.
2513
2514         * src/cheader/: new directory, populated with cname headers from
2515         libstdc++-2.8.1. They are a bit old, but probably good enough for
2516         what we want (support compilers who lack them).
2517         
2518         * src/insets/Makefile.am, src/mathed/Makefile.am: remove src/support
2519         from includes. It turns out is was stupid.
2520  
2521 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
2522
2523         * lib/Makefile.am (install-data-local): forgot a ';'
2524         (install-data-local): forgot a '\'
2525         (libinstalldirs): needed after all. reintroduced.
2526
2527 1999-10-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
2528
2529         * configure.in (AC_OUTPUT): added lyx.spec
2530
2531         * development/lyx.spec: removed file
2532
2533         * development/lyx.spec.in: new file
2534
2535         * po/*.po: merged with lyx.pot becuase of make distcheck
2536         
2537         * lib/Makefile.am (dist-hook): added dist-hook so that
2538         documentation files will be included when doing a make
2539         dist/distdir/distcheck. Requires cvs export -r HEAD lyxdoc to run.
2540         (pkgdata_SCRIPTS): added configure.cmd for now, we can use som
2541         conditional later.
2542         more: tried to make install do the right thing, exclude CVS dirs
2543         etc.
2544
2545         * src/LaTeXLog.C (ShowLatexLog): reordered som statements so that
2546         Path would fit in more nicely.
2547
2548         * all files that used to use pathstack: uses now Path instead.
2549         This change was a lot easier than expected.
2550         
2551         * src/support/path.h: new file
2552
2553         * src/support/Makefile.am (libsupport_a_SOURCES): added path.h
2554
2555         * src/Makefile.am (lyx_SOURCES): removed pathstack.[Ch]
2556
2557         * src/support/lyxstring.C (getline): Default arg was given for
2558         para 3. removed.
2559
2560         * Configure.cmd: removed file 
2561
2562 1999-10-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2563
2564         * src/support/DebugStream.[Ch]: remove the explicit std:: before
2565         streams classes and types, add the proper 'using' statements when
2566         MODERN_STL is defined.
2567         
2568         * src/debug.h: move the << operator definition after the inclusion
2569         of DebugStream.h
2570
2571         * src/support/filetools.C: include "LAssert.h", which is needed
2572         later. 
2573
2574         * src/insets/Makefile.am, src/mathed/Makefile.am: add src/support
2575         to includes. 
2576
2577         * src/lyxfont.h, src/commandtags.h, src/mathed/math_defs.h:
2578         include "debug.h" to define a proper ostream.
2579
2580 1999-10-12  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
2581
2582         * src/sys*: Cleaned up the Systemcall stuff a bit. Added "kill(int)"
2583           method to the SystemCall class which can kill a process, but it's
2584           not fully implemented yet.
2585
2586         * src/*.C: Changed Systemcalls::Startscript() to startscript()
2587
2588         * src/support/FileInfo.h: Better documentation  
2589
2590         * src/lyxfunc.C: Added support for buffer-export html
2591         
2592         * src/menus.C: Added Export->As HTML...
2593         
2594         * lib/bind/*.bind: Added short-cut for buffer-export html
2595
2596         * src/lyxrc.*: Added support for new \tth_command
2597         
2598         * lib/lyxrc.example: Added stuff for new \tth_command
2599
2600 1999-10-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
2601
2602         * lib/Makefile.am (IMAGES): removed images/README
2603         (pkgdata_SCRIPTS): use this instead of bin_SCRIPTS to that it
2604         installes in correct place. Check permisions is installed
2605         correctly.
2606
2607         * src/LaTeX.C: some no-op changes moved declaration of some
2608         variables around.
2609
2610         * src/LaTeX.h (LATEX_H): changed include guard name
2611
2612 1999-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2613
2614         * lib/reLyX/Makefile.am: install noweb2lyx.
2615
2616         * lib/Makefile.am: install configure. 
2617
2618         * lib/reLyX/configure.in: declare a config aux dir; set package
2619         name to lyx (not sure what the best solution is); generate noweb2lyx.
2620
2621         * lib/layouts/egs.layout: fix the bibliography layout.
2622
2623 1999-10-08  Jürgen Vigna <jug@sad.it>
2624
2625         * src/support/filetools.C (FileOpenSearch): Fixed a bug where
2626         when in the PATH was something like /usr/bin;;/bin (note: the ;;)
2627         it returned without continuing to search the path.
2628         
2629 1999-10-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
2630
2631         * src/insets/insetquotes.C (Draw): Simplified a gread deal. This
2632         also fixes a bug. It is not allowed to do tricks with std::strings
2633         like: string a("hei"); &a[e]; this will not give what you
2634         think... Any reason for the complexity in this func?
2635
2636 1999-10-06  Asger Alstrup Nielsen  <alstrup@diku.dk>
2637
2638         * Updated README and INSTALL a bit, mostly to check that my
2639         CVS rights are correctly set up.
2640
2641 1999-10-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
2642
2643         * src/support/lyxstring.C (helper): removed bogus Assert. strlen
2644         does not allow '\0' chars but lyxstring and std::string does.
2645
2646 1999-10-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
2647
2648         * autogen.sh (AUTOCONF): let the autogen script create the
2649         POTFILES.in file too. POTFILES.in should perhaps now not be
2650         included in the cvs module.
2651
2652         * some more files changed to use C++ includes instead of C ones.
2653
2654         * src/filedlg.C (Reread): fixed a bug wrt Time. It was appended
2655         not assigned.
2656         (Reread): added tostr to nlink. buggy output otherwise.
2657         (Reread): added a string() around szMode when assigning to Buffer,
2658         without this I got a log of garbled info strings.
2659
2660         * acconfig.h: commented out the PTR_AS_INT macros. They should not
2661         be needed.
2662
2663         * I have added several ostream & operator<<(ostream &, some_type)
2664         functions. This has been done to avoid casting and warnings when
2665         outputting enums to lyxerr. This as thus eliminated a lot of
2666         explicit casts and has made the code clearer. Among the enums
2667         affected: kb_action, InsetLatexAccent::ACCENT_TYPE, a couple of
2668         mathed enums, some font enum the Debug::type enum. 
2669
2670         * src/support/lyxstring.h (clear): missing method. equivalent of
2671         erase(0, npos).
2672
2673         * all files that contained "stderr": rewrote constructs that used
2674         stderr to use lyxerr instead. (except bmtable)
2675
2676         * src/support/DebugStream.h (level): and the passed t with
2677         Debug::ANY to avoid spurious bits set.
2678
2679         * src/debug.h (Debug::type value): made it accept strings of the
2680         type INFO,INIT,KEY.
2681
2682         * configure.in (Check for programs): Added a check for kpsewhich,
2683         the latex generation will use this later to better the dicovery of
2684         all used files. 
2685
2686         * src/BufferView.C (create_view): we don't need to cast this to
2687         (void*) that is done automatically.
2688         (WorkAreaButtonPress): removed some dead code.
2689
2690 1999-10-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2691
2692         * src/minibuffer.C (Init): make sure that the "Welcome to LyX!"
2693         is not overwritten when translated (David Sua'rez de Lis).
2694
2695         * lib/CREDITS: Added David Sua'rez de Lis
2696
2697         * lib/reLyX/configure.in: setup LYX_DIR correctly in reLyX.
2698
2699         * src/bufferparams.C (BufferParams): default input encoding is now
2700         "latin1" 
2701
2702         * acinclude.m4 (cross_compiling): comment out macro
2703         LYX_GXX_STRENGTH_REDUCE. 
2704
2705         * acconfig.h: make sure that const is not defined (to empty) when
2706         we are compiling C++. Remove commented out code using SIZEOF_xx
2707         macros.
2708         
2709         * configure.in : move the test for const and inline as late as
2710         possible so that these C tests do not interefere with C++ ones.
2711         Remove the call to LYX_GXX_STRENGTH_REDUCE, since its usefulness
2712         has not been proven. 
2713
2714 1999-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2715
2716         * src/table.C (getDocBookAlign): remove bad default value for
2717         isColumn parameter.
2718
2719         * src/menus.C (ShowFileMenu): add a missing tostr() for lastfiles
2720         shortcut. 
2721         (ShowFileMenu2): ditto.
2722
2723         * lib/reLyX/.cvsignore: add configure and aclocal.m4 to the list
2724         of files to ignore.
2725
2726 1999-10-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
2727
2728         * Most files: finished the change from the old error code to use
2729         DebugStream for all lyxerr debugging. Only minor changes remain
2730         (e.g. the setting of debug levels using strings instead of number) 
2731
2732 1999-10-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
2733
2734         * src/layout.C (Add): Changed to use compare_no_case instead of
2735         strcasecmp.
2736
2737         * src/FontInfo.C: changed loop variable type too string::size_type.
2738
2739 1999-10-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
2740
2741         * src/support/Makefile.am: added -I${srcdir}/../ to INCLUDES and
2742         set ETAGS_ARGS to --c++ 
2743
2744 1999-09-30  Lars Gullik Bjønnes  <larsbj@lyx.org>
2745
2746         * src/table.C (DocBookEndOfCell): commented out two unused variables
2747
2748         * src/paragraph.C: commented out four unused variables. 
2749
2750         * src/lyx_cb.C (TocUpdateCB): moved variable i and added a new i
2751         insed a if clause with type string::size_type.
2752
2753         * src/lyxfr1.C (IsSearchStringInText): changed iSrch from int to
2754         string::size_type.
2755
2756         * src/lyxfunc.C (Dispatch): use string::size_type as loop variable.
2757
2758         * src/lyx_cb.C (ReplaceWord): use string::size_type as loop
2759         variable, also changed loop to go from 0 to lenght + 1, instead of
2760         -1 to length. This should be correct.
2761
2762         * src/LaTeX.C (scanError): use string::size_type as loop variable
2763         type.
2764
2765         * src/BufferView.C (WorkAreaButtonPress): moved #if 0 up two lines
2766         (l.896) since y_tmp and row was not used anyway.
2767
2768         * src/insets/insetref.C (escape): use string::size_type as loop
2769         variable type.
2770
2771         * src/insets/insetquotes.C (Width): use string::size_type as loop
2772         variable type.
2773         (Draw): use string::size_type as loop variable type.
2774
2775         * src/insets/insetlatexaccent.C (checkContents): use
2776         string::size_type as loop variable type.
2777
2778         * src/insets/insetlabel.C (escape): use string::size_type as loop
2779         variable type.
2780
2781         * src/insets/insetinfo.C: added an extern for current_view.
2782
2783         * src/insets/insetcommand.C (scanCommand): use string::size_type
2784         as loop variable type.
2785
2786         * most files: removed the RCS tags. With them we had to recompile
2787         a lot of files after a simple cvs commit. Also we have never used
2788         them for anything meaningful. 
2789
2790         * most files: tags-query-replace NULL 0. As adviced several plases
2791         we now use "0" instead of "NULL" in our code. 
2792
2793         * src/support/filetools.C (SpaceLess): use string::size_type as
2794         loop variable type.
2795
2796 1999-09-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
2797
2798         * src/paragraph.C: fixed up some more string stuff.
2799
2800 1999-09-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
2801
2802         * src/support/filetools.h: make modestr a std::string.
2803
2804         * src/filetools.C (GetEnv): made ch really const.
2805
2806         * src/lyxlib.h: removed the Maximum and Minimum inline functions,
2807         made code that used these use max/min from <algorithm> instead.
2808
2809         * changed several c library include files to their equivalent c++
2810         library include files. All is not changed yet.
2811
2812         * created a support subdir in src, put lyxstring and lstrings
2813         there + the extra files atexit, fileblock, strerror. Created
2814         Makefile.am. edited configure.in and src/Makefile.am to use this
2815         new subdir. More files moved to support.
2816
2817         * imported som of the functions from repository lyx, filetools
2818         
2819         * ran tags-query-replace on LString -> string, corrected the bogus
2820         cases. Tried to make use of lstrings.[hC], debugged a lot. There
2821         is still some errors in there. This is errors where too much or
2822         too litle get deleted from strings (string::erase, string::substr,
2823         string::replace), there can also be some off by one errors, or
2824         just plain wrong use of functions from lstrings. Viewing of quotes
2825         is wrong. 
2826
2827         * LyX is now running fairly well with string, but there are
2828         certainly some bugs yet (see above) also string is quite different
2829         from LString among others in that it does not allow null pointers
2830         passed in and will abort if it gets any.
2831         
2832         * Added the revtex4 files I forgot when setting up the repository.
2833
2834 1999-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
2835
2836         * All over: Tried to clean everything up so that only the files
2837           that we really need are included in the cvs repository.
2838         * Switched to use automake.
2839         * Generaton of reLyX is not perfect, LYX_DIR does not get substituted.
2840         * Install has not been checked.
2841
2842 1999-09-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
2843
2844         * po/pt.po: Three errors:
2845                l.533 and l.538 format specification error
2846                l. 402 duplicate entry, I just deleted it.
2847