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