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