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