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