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