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