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