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