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