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