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