]> git.lyx.org Git - features.git/blob - ChangeLog
Output ~ and ^ with the proper latex macro; add a few missing 'const'.
[features.git] / ChangeLog
1 1999-11-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2
3         * src/mathed/formula.[Ch] (GetCursorPos): add a missing 'const'.
4         (EditMessage): likewise.
5
6         * src/paragraph.C (SimpleTeXSpecialChars): output ~ and ^
7         respectively as \textasciitilde and \textasciicircum.
8
9 1999-11-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
10
11         * src/support/lyxstring.h: made the methods that take iterators
12         use const_iterator.
13
14         * src/support/lstrings.C (countChar): use std::cound(itr, itr, val)
15         (regexMatch): made is use the real regex class.
16
17         * src/support/Makefile.am: changed to use libtool
18
19         * src/support/.cvsignore: added *.lo, .libs and libsupport.la
20
21         * src/mathed/math_defs.h: made the mathaligns be in a enum instead
22         of defines.
23         (MathIsInset ++): changed several macros to be inline functions
24         instead. 
25
26         * src/mathed/Makefile.am: changed to use libtool
27
28         * src/mathed/.cvsignore: added *.lo, .libs and libmathed.la
29
30         * src/insets/inset* : Clone changed to const and return type is
31         the true insettype not just Inset*.
32         
33         * src/insets/Makefile.am: changed to use libtool
34
35         * src/insets/.cvsignore: added *.lo, .libs and libinsets.la
36
37         * src/undo.[Ch] : added empty() and changed some of the method
38         names.
39         
40         * src/texrow.[Ch]: rewrote to store texrow's in a std::list.
41
42         * src/lyxparagraph.h: use id() and id(...) instead of getID and
43         setID use block<> for the bullets array, added const several places.
44
45         * src/lyxfunc.C (getStatus): new function
46
47         * src/lyxfunc.[Ch] : small changes to take advantage of the new
48         LyXAction, added const to several funtions.
49
50         * src/filedlg.[Ch]: rewrote to store userchache and groupchache in
51         a std::map, and to store the dir items in a vector.
52
53         * src/Makefile.am (lyx_DEPENDENCIES): changed to use libtool files
54         as dependencies.
55
56         * src/LyXView.[Ch] + other files : changed currentView to view.
57         
58         * src/LyXAction.[Ch] : ported from the old devel branch.
59         
60         * src/.cvsignore: added .libs and a.out
61
62         * configure.in : changes to use libtool. 
63
64         * acinclude.m4 : inserted libtool.m4
65
66         * .cvsignore: added libtool
67
68 1999-11-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
69
70         * src/Makefile.am (lyx_DEPENDENCIES): give the explicit object
71         file name in insets and mathed directories (otherwise the
72         dependency is not taken in account under cygwin).
73
74         * src/text2.C (InsertString[AB]): make sure that we do not try to
75         read characters past the string length.
76
77 1999-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
78
79         * lib/doc/LaTeXConfig.lyx.in, 
80           lib/chkconfig.ltx: remove the test for linuxdoc-sgml.sty.
81
82         * src/buffer.C (writeFile): Do not add a comment on top of .lyx
83         file saying who created them and when this heppened; this is
84         useless and annoys tools like cvs.
85
86         * lib/layouts/g-brief-{en,de}.layout,
87           lib/templates/g-brief-{en,de}.lyx: new versions of the textclass
88         from Thomas Hartkens <thomas@hartkens.de>.
89
90         * src/{insets,mathed}/Makefile.am: do not declare an empty
91         LDFLAGS, so that it can be set at configure time (useful on Irix
92         for -n32 flag).
93
94         * lib/reLyX/configure.in: make sure that the prefix is set
95         correctly in LYX_DIR.
96
97 1999-11-18  Andre' Poenitz <poenitz@mathematik.tu-chemnitz.de>
98
99         * src/commandtags.h: introduction of a new tag 'LFUN_SEQUENCE' to
100         be used by 'command-sequence' this allows to bind a key to a
101         sequence of LyX-commands
102         (Example: 'command-sequence math-insert alpha; math-insert beta;")
103
104         * src/LyXAction.C: add "command-sequence"
105
106         * src/LyXFunction.C: handling of "command-sequence"
107
108         * src/LyXFunction.[hC] changed LyXFunc::Dispatch(string const
109          &cmd, string const &arg) to LyXFunc::Dispatch(string const& s)
110
111         * src/lyxserver.C, src/minibuffer.C: Use this new interface
112
113 1999-11-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
114
115         * src/buffer.C (writeFile): Do not output a comment givinf user
116         and date at the beginning of a .lyx file. This is useless and
117         annoys cvs anyway; update version number to 1.1.
118
119         * src/Makefile.am (LYX_DIR): add this definition, so that a
120         default path is hardcoded in LyX.
121
122         * configure.in: Use LYX_GNU_GETTEXT.
123
124         * acinclude.m4 (LYX_GNU_GETTEXT): new macro, essentially a copy of
125         AM_GNU_GETTEXT with a bug fixed. 
126
127         * src/lyx_cb.C (RunLinuxDoc): add a cast to please dec cxx.
128
129         * src/chset.C: add "using std::ifstream;" to please dec cxx.
130
131         * src/lyx_main.C (init), INSTALL.OS2: the environment variable
132         which is used to point to LyX data is now LYX_DIR_11x.
133
134         * lyx.man: convert to a unix text file; small updates.
135
136 1999-11-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
137
138         * src/support/LSubstring.[Ch]: made the second arg of most of the
139         constructors be a const reference. 
140
141         * src/mathed/math_parser.C (LexInitCodes): small bug introduced by
142         me fixed.
143
144         * src/support/lyxstring.[Ch] (swap): added missing member function
145         and specialization of swap(str, str); 
146
147         * src/menus.C (ShowBufferMenu): to use the new BufferStorage
148
149         * src/bufferlist.[Ch]: use the new BufferStorage class and remove all
150         trace of the old one.
151
152         * src/undo.[Ch]: made the undostack use std::list to store undo's in
153         put the member definitions in undo.C.
154
155         * src/lyxparagraph.h, src/paragraph.C + a lot of files: removed
156         NEW_TEXT and have now only code that was included when this was
157         defined. 
158
159         * src/intl.C (LCombo): use static_cast
160         (LCombo2): ditto
161         (DispatchCallback): ditto
162
163         * src/definitions.h: removed whole file
164         
165         * src/commandtags.h: comment out LFUN_INSERT_INSET_LATEX
166
167         * src/chset.[Ch]: a lot rewritten, does not use lyxlex for cdef
168         parsing and stores in a std:map. a regex defines the file format.
169         removed unneeded members.
170
171         * src/bufferparams.h: added several enums from definitions.h here.
172         Removed unsused destructor. Changed some types to use proper enum
173         types. use block to have the temp_bullets and user_defined_bullets
174         and to make the whole class assignable.
175
176         * src/bufferparams.C (Copy): removed this functions, use a default
177         assignment instead. 
178
179         * src/buffer.h: made isLatex, isLinuxDoc, isDocBook, isSGML and
180         isLiterate const.
181
182         * src/buffer.C (readLyXformat2): commend out all that have with
183         oldpapersize to do. also comment out all that hve to do with
184         insetlatex and insetlatexdel. 
185         (setOldPaperStuff): commented out
186
187         * src/Makefile.am (lyx_SOURCES): remove definitions.h, add undo.C
188
189         * src/LyXAction.C: remove use of inset-latex-insert
190
191         * src/mathed/math_panel.C (button_cb): use static_cast
192
193         * src/insets/Makefile.am (insets_o_SOURCES): removed
194         insetlatex.[Ch] 
195
196         * src/support/lyxstring.C (helper): use the unsigned long
197         specifier, UL, instead of a static_cast.
198
199         * src/support/Makefile.am (libsupport_a_SOURCES): added block.h
200
201         * src/support/block.h: new file. to be used as a c-style array in
202         classes, so that the class can be assignable.
203
204 1999-11-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
205
206         * src/lyx_gui_misc.C (askForText): when fl_show_input() returns
207         NULL, make sure to return an empty string (it is not possible to
208         set a string to NULL).
209
210 1999-11-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
211
212         * src/support/LRegex.C: use regex_t instead of re_pattern_buffer.
213
214         * src/support/lyxstring.C (helper): fix bogus cast in assertion.
215
216         * src/{mathed,insets}/Makefile.am (CXXLINK): add $(LDFLAGS) to the
217         link line, so that Irix users (for example) can set it explicitely to
218         "-n32".
219         
220         * src/Makefile.am (lyx_LDADD): use LYX_LIB as a variable, so that
221         it can be overidden at make time (static or dynamic link, for
222         example).
223         
224         * src/vc-backend.C, src/LaTeXFeatures.h, 
225           src/support/LRegex.C, src/support/LRegex.h: add a few "using" 
226         statements to bring templates to global namespace.
227
228 1999-11-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
229
230         * src/support/lyxstring.C (operator[] const): make it standard
231         conforming. 
232
233         * src/minibuffer.C (Init): changed to reflect that more
234         information is given from the lyxvc and need not be provided here.
235
236         * src/lyxvc.[Ch]: rewrote to use the vc-backend.
237         
238         * src/Makefile.am (lyx_SOURCES): add vc-backend.[Ch]
239
240         * src/LyXView.C (UpdateTimerCB): use static_cast
241         (KeyPressMask_raw_callback): ditto
242
243         * src/BufferView.[Ch]: name change _owner -> owner_ and _buffer ->
244         buffer_, a lot of changes because of this. currentBuffer() ->
245         buffer(), setBuffer(...) -> buffer(...), getOwner() -> owner(),
246         also changes to other files because of this.
247
248 1999-11-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
249
250         * src/vc-backend.[Ch]: new files. The backends for vc handling,
251         have no support for RCS and partial support for CVS, will be
252         improved later.
253         
254         * src/insets/ several files: changes because of function name
255         changes in Bufferview and LyXView.
256         
257         * src/mathed/math_symbols.C (math_insert_symbol): use static_cast
258
259         * src/support/LSubstring.[Ch]: new files. These implement a
260         Substring that can be very convenient to use. i.e. is this
261         possible:
262         string a = "Mary had a little sheep";
263         Substring(a, "sheep") = "lamb";
264         a is now "Mary has a little lamb".
265
266         * src/support/LRegex.[Ch]: a regex class that can be used to pick
267         out patterns and subpatterns of strings. It is used by LSubstring
268         and also by vc-backend.C
269         
270         * src/support/lyxstring.C: went over all the assertions used and
271         tried to correct the wrong ones and flag which of them is required
272         by the standard. some bugs found because of this. Also removed a
273         couple of assertions.
274
275         * src/support/Makefile.am (libsupport_a_SOURCES): added
276         LSubstring.[Ch] and LRegex.[Ch]
277
278         * src/support/FileInfo.h: have struct stat buf as an object and
279         not a pointer to one, some changes because of this.
280
281         * src/LaTeXFeatures.C (getTClassPreamble): also use the
282         information in layout when addint he layouts preamble to the
283         textclass preamble.
284
285         * src/LaTeXFeatures.h: use a vector<bool> to store the layout
286         usage in.
287
288         * configure.in (CPPFLAGS): use AC_CHECK_FUNCS to check for XOpenIM
289         because of bug in OS/2.
290
291 1999-11-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
292
293         * lib/layouts/lyxmacros.inc (lyxcode): set the font with
294         \verbatim@font instead of \ttfamily, so that it can be redefined.
295
296         * src/BackStack.h, src/DepTable.C, src/DepTable.h, src/LaTeX.C,
297           src/LaTeX.h, src/lastfiles.C, src/lastfiles.h, src/layout.C,
298           src/layout.h, src/text2.C: add 'using' directive to bring the
299         STL templates we need from the std:: namespace to the global one.
300         Needed by DEC cxx in strict ansi mode.
301
302         * src/support/LIstream.h,src/support/LOstream.h,
303           src/support/lyxstring.h,src/table.h,
304           src/lyxlookup.h: do not include <config.h> in header
305         files. This should be done in the .C files only.
306
307         * development/lyx.spec.in: WHATSNEW has been renamed to NEWS
308         (from Kayvan).
309         
310
311 1999-11-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
312
313         * config/lib_configure.m4,lib/configure,lib/lyxrc.example: update
314         from Kayvan to fix the tth invokation.
315
316         * development/lyx.spec.in: updates from Kayvan to reflect the
317         changes of file names.
318
319 1999-11-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
320
321         * src/text2.C (InsertStringB): use std::copy
322         (InsertStringA): use std::copy
323
324         * src/bufferlist.C: use a vector to store the buffers in. This is
325         an internal change and should not affect any other thing.
326         
327         * src/BufferView.C (waitForX): use XSync instead of the lengthy
328         stuff in waitForX.
329
330         * src/text.C (Fill): fix potential bug, one off bug.
331
332 1999-11-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
333
334         * src/Makefile.am (lyx_main.o): add more files it depends on.
335
336         * src/lyx_cb.C (addNewlineAndDepth): parameters in wrong order.
337
338         * src/support/lyxstring.C: use size_t for the reference count,
339         size, reserved memory and xtra.
340         (internal_compare): new private member function. Now the compare
341         functions should work for std::strings that have embedded '\0'
342         characters.
343         (compare): all compare functions rewritten to use
344         internal_compare.
345         
346 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
347
348         * src/support/lyxstring.C (compare): pass c_str()
349         (compare): pass c_str
350         (compare): pass c_str
351
352 1999-11-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
353
354         * src/support/DebugStream.C: <config.h> was not included correctly.
355
356         * lib/configure: forgot to re-generate it :( I'll make this file
357         auto generated soon.
358
359 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
360
361         * acinclude.m4 (cross_compiling): add -fpermissive when gcc 2.95.x
362         is used.
363
364         * src/support/lyxstring.C: some changes from length() to rep->sz.
365         avoids a function call.
366
367         * src/support/filetools.C (SpaceLess): yet another version of the
368         algorithm...now per Jean-Marc's suggestions.
369
370 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
371
372         * src/layout.C (less_textclass_desc): functor for use in sorting
373         of textclasses. 
374         (LyXTextClass::Read): sort the textclasses after reading.
375         
376         * src/support/filetools.C (SpaceLess): new version of the
377         SpaceLess functions. What problems does this one give? Please
378         report.
379
380         * images/banner_bw.xbm: made the arrays unsigned char *
381
382 1999-11-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
383
384         * src/support/lyxstring.C (find): remove bogus assertion in the
385         two versions of find where this has not been done yet.
386
387         * src/support/lyxlib.h: add missing int return type to
388         lyx::chdir(). 
389
390         * src/menus.C (ShowFileMenu): disable exporting to html if no
391         html export command is present.
392
393         * config/lib_configure.m4: add a test for an HTML converter. The
394         programs checked for are, in this order: tth, latex2html and
395         hevea. 
396
397         * lib/configure: generated from config/lib_configure.m4.
398
399         * src/lyxfunc.C (Dispatch): update and improve the execution of an
400         html converter. The parameters are now passed through $$FName and
401         $$OutName, instead of standard input/output.
402
403         * src/lyxrc.{C,h}: rename \tth_command to \html_command.
404
405         * lib/lyxrc.example: update description of \html_command. 
406         add "quotes" around \screen_font_xxx font setting examples to help
407         people who use fonts with spaces in their names.
408
409 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
410
411         * Distribution files: updates for v1.1.2
412
413         * src/support/lyxstring.C (find): remove bogus assert and return
414         npos for the same condition.
415
416 1999-11-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
417
418         * added patch for OS/2 from SMiyata.
419
420 1999-10-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
421
422         * src/text2.C (CutSelection): make space_wrapped a bool
423         (CutSelection): dont declare int i until we have to.
424         (alphaCounter): return a char const *.
425
426 1999-10-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
427
428         * src/support/syscall.C (Systemcalls::kill): 
429           src/support/filetools.C (PutEnv, PutEnvPath): 
430           src/lyx_cb.C (addNewlineAndDepth): 
431           src/FontInfo.C (FontInfo::resize): condition some #warning
432         directives with WITH_WARNINGS.
433         
434
435 1999-10-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
436
437         * src/layout.[Ch] + several files: access to class variables
438         limited and made accessor functions instead a lot of code changed
439         becuase of this. Also instead of returning pointers often a const
440         reference is returned instead.
441         
442         * src/form1.C (create_form_Figure): added a couple fo "no-c-format"
443
444         * src/Makefile.am (dist-hook): added used to remove the CVS from
445         cheaders upon creating a dist
446         (EXTRA_DIST): added cheaders
447
448         * src/support/lstrings.C (tostr(char)): fix it to handle param as
449         a character not as a small integer. 
450
451         * src/support/lyxstring.C (find): removed Assert and added i >=
452         rep->sz to the first if.
453
454 1999-10-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
455
456         * src/layout.[Ch] src/BufferView.C src/LaTeXFeatures.C
457         src/LyXView.C src/buffer.C src/bufferparams.C
458         src/lyx_cb.C src/lyxfunc.C src/paragraph.C src/text.C 
459         src/text2.C src/insets/insetinclude.C:
460         lyxlayout renamed to textclasslist.
461
462         * src/layout.C: some lyxerr changes.
463
464         * src/layout.[Ch] (LyXLayout::Read): changed second paramter to
465         LyXTextClass. rewrote LT_COPYSTYLE, rewrote LT_OBSOLETEDBY
466         (LyXLayoutList): removed all traces of this class.
467         (LyXTextClass::Read): rewrote LT_STYLE
468         (LyXTextClass::hasLayout): new function
469         (LyXTextClass::GetLayout): rewritten to return an iterator + has
470         both const and nonconst version.
471         (LyXTextClass::delete_layout): new function.
472         (LyXTextClassList::Style): bug fix. do the right thing if layout
473         is to big.
474         (LyXTextClassList::NumberOfLayout): new acces to layoutlist.
475         (LyXTextClassList::NameOfLayout): ditto 
476         (LyXTextClassList::Load): ditto
477
478         * src/buffer.C (makeLaTeXFile): new access to layoutlist
479
480         * src/LaTeXFeatures.C (getTClassPreamble): new access to layoutlist
481
482         * src/LyXAction.C (LookupFunc): added a workaround for sun
483         compiler, on the other hand...we don't know if the current code
484         compiles on sun at all...
485
486         * src/support/filetools.C (CleanupPath): subst fix
487
488         * src/insets/insetbib.C (delDatabase): subst fix, this looks
489         _really_ weird.
490
491         * src/support/filetools.C (PutEnvPath): subst fix, how come nobody
492         complained about this one?
493
494         * src/insets/insetinclude.C (Latex): subst fix
495
496         * src/insets/insetbib.C (getKeys): subst fix
497
498         * src/LyXSendto.C (SendtoApplyCB): subst fix
499
500         * src/lyx_main.C (init): subst fix
501
502         * src/layout.C (Read): subst fix
503
504         * src/lyx_sendfax_main.C (button_send): subst fix
505
506         * src/buffer.C (RoffAsciiTable): subst fix
507
508         * src/lyx_cb.C (MenuFax): subst fix
509         (PrintApplyCB): subst fix
510
511 1999-10-26  Juergen Vigna  <jug@sad.it>
512
513         * src/table.C (TexEndOfCell) + (DocBookEndOfCell): removed some #if 0
514
515         (Read): Cleaned up this code so now we read only format vestion >= 5
516
517 1999-10-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
518
519         * src/support/filetools.C (PutEnvPath): subst fix for EMX, how
520         come nobody has complained about this one?
521
522         * src/insets/insetinclude.C (Latex): subst fix
523
524         * src/insets/insetbib.C (getKeys): subst fix
525
526         * src/lyx_main.C (init): subst fix
527
528         * src/layout.C (Read): subst fix
529
530         * src/buffer.C (RoffAsciiTable): subst fix
531
532         * src/lyx_cb.C (MenuFax): subst fix.
533
534         * src/layout.[hC] + some other files: rewrote to use
535         std::container to store textclasses and layouts in.
536         Simplified, removed a lot of code. Make all classes
537         assignable. Further simplifications and review of type
538         use still to be one. 
539
540         * src/menus.C (ShowFileMenu/ShowFileMenu2): Use the iterators from
541         lastfiles to create the lastfiles partr of the menu.
542
543         * src/lastfiles.[Ch]: rewritten to use deque to store the
544         lastfiles in. Uses fstream for reading and writing. Simplifies
545         code.
546
547         * src/support/syscall.C: remove explicit cast.
548
549         * src/BufferView.C (CursorToggleCB): removed code snippets that
550         were commented out.
551         use explicat C++ style casts instead of C style casts. also use
552         u_vdata instea of passing pointers in longs.
553
554         * src/PaperLayout.C: removed code snippets that were commented out.
555
556         * src/lyx_gui_misc.C: removed code snippets that were commented out. 
557
558         * src/lyx_main.C: removed code snippets that wer commented out.
559
560         * src/paragraph.C: removed code snippets that were commented out.
561
562         * src/lyxvc.C (logClose): use static_cast
563         (logUpdate): ditto
564         (viewLog): remove explicit cast to void*
565         (showLog): removed old commented code
566
567         * src/menus.C: use static_cast instead of C style casts. use
568         u_vdata instead of u_ldata. remove explicit cast to (long) for
569         pointers. Removed old code that was commented out.
570
571         * src/insets/inset.C: removed old commented func
572
573         * src/insets/insetref.C (InsetRef): removed old code that had been
574         commented out for a long time.
575         (Edit): ditto
576         (escape): removed C style cast
577
578         * src/insets/insetlatexaccent.C (Draw): removed old commented code
579
580         * src/insets/insetlatex.C (Draw): removed old commented code
581         (Read): rewritten to use string
582
583         * src/insets/insetlabel.C (escape): removed C style cast
584
585         * src/insets/insetindex.h: removed vdata and ldata from FD_index_form
586
587         * src/insets/insetindex.C: use static_cast and u_vdata, removed
588         old commented code.
589
590         * src/insets/insetinclude.h: removed a couple of stupid bools
591
592         * src/insets/insetinclude.C (include_cb): use static_cast and u_data.
593         (Clone): remove C style cast
594         (getKeys): changed list to lst because of std::list
595
596         * src/insets/inseterror.C (Draw): removed som old commented code.
597
598         * src/insets/insetcommand.C (Draw): removed some old commented code.
599
600         * src/insets/insetbib.C (bibitem_cb): removed code that has been
601         commented out forever.
602         (bibitem_cb): use static_cast instead of C style cast
603         use of vdata changed to u_vdata.
604
605         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forward the data
606         parameter.
607         (CloseUrlCB): use static_cast instead of C style cast.
608         (CloseUrlCB): added a fl_free form...it seemed to be missing.
609
610         * src/insets/insetinfo.C (Edit): pass object in u_vdata instead
611         (C_InsetInfo_CloseInfoCB): forward the ob parameter
612         (CloseInfoCB): static_cast from ob->u_vdata instead.
613         (Edit): removed bogus arg from fl_set_object_shortcut, set to 1
614         instead. 
615
616         * src/insets/inseterror.C (Edit): pass object in u_vdata instead
617         (C_InsetError_CloseErrorCB): forward the ob parameter
618         (CloseErrorCB): static_cast from ob->u_vdata instead.
619
620         * src/vspace.h: include LString.h since we use string in this class.
621
622         * src/vspace.C (lyx_advance): changed name from advance because of
623         nameclash with stl. And since we cannot use namespaces yet...I
624         used a lyx_ prefix instead. Expect this to change when we begin
625         using namespaces.
626
627         * src/BufferView.[Ch] (BufferView::~BufferView): removed 
628
629         * src/BackStack.h: rewrote to use std::stack. made BackStackItem
630         and removed now defunct constructor and deconstructor.
631
632         * src/BufferView.h: have backstack as a object not as a pointer.
633         removed initialization from constructor. added include for BackStack 
634
635         * development/lyx.spec.in (%build): add CFLAGS also.
636
637         * src/screen.C (drawFrame): removed another warning.
638
639 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
640
641         * renamed WHATSNEW to NEWS (usual GNU style), CHANGES to
642         OLD-CHANGES (not used anymore) and modified INSTALL, INSTALL.OS2,
643         README and ANNOUNCE a bit for the next release. More work is
644         needed, of course.
645
646         * src/paragraph.C (SimpleTeXBlanks): spaces are automatically made
647         unbreakable if we are in freespacing mode (LyX-Code), but not in
648         latex mode.
649
650 1999-10-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
651
652         * src/BackStack.h: fixed initialization order in constructor
653
654         * Makefile.am (MAINTAINERCLEANFILES): removed po/POTFILES.in
655
656         * acinclude.m4 (VERSION): new rules for when a version is
657         development, added also a variable for prerelease.
658         (warnings): we set with_warnings=yes for prereleases
659         (lyx_opt): prereleases compile with same optimization as development 
660         (CXXFLAGS): only use pedantic if we are a development version 
661
662         * src/BufferView.C (restorePosition): don't do anything if the
663         backstack is empty.
664
665         * src/BackStack.h: added member empty, use this to test if there
666         is anything to pop...
667
668 1999-10-25  Juergen Vigna  <jug@sad.it>
669
670         * forms/form1.fd +
671         * forms/layout_forms.fd +
672         * forms/latexoptions.fd +
673         * lyx.fd: changed for various form resize issues
674
675         * src/mathed/math_panel.C +
676         * src/insets/inseterror.C +
677         * src/insets/insetinfo.C +
678         * src/insets/inseturl.C +
679         * src/insets/inseturl.h +
680         * src/LaTeXLog.C +
681         * src/LyXSendto.C +
682         * src/PaperLayout.C +
683         * src/ParagraphExtra.C +
684         * src/TableLayout.C +
685         * src/form1.C +
686         * src/layout_forms.C +
687         * src/lyx.C +
688         * src/lyx_cb.C +
689         * src/lyx_gui.C +
690         * src/lyxfr0.C +
691         * src/lyxfunc.C +
692         * src/lyxvc.C +
693         * src/menus.C: fixed various resize issues. So now forms can be
694         resized savely or not be resized at all.
695         
696         * forms/form_url.fd +
697         * src/insets/form_url.[Ch]: added because it's cleaner and easier
698         to modify IMO.
699
700         * src/insets/Makefile.am: added files form_url.[Ch]
701         
702 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
703
704         * INSTALL: it is now possible to compile LyX with digital C++ 6.1
705         (and presumably 6.2).
706
707         * src/{BufferView,LyXView,combox,filedlg,intl,lyxserver,lyxvc,
708         menus,minibuffer,toolbar}.{C,h}: added C_xxx wrappers around
709         remaining static member callbacks. 
710
711         * src/lyxfunc.C (Dispatch): Use _() instead of N_() fot minibuffer
712         messages. 
713
714         * src/support/lyxstring.h: declare struct Srep as friend of
715         lyxstring, since DEC cxx complains otherwise.
716
717 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
718
719 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
720
721         * src/LaTeX.C (run): made run_bibtex also depend on files with
722         extension ".bst"
723         (runBibTeX): added scans for "\\bibstyle", now also ".bst" files
724         are put into the dependency file.
725
726         * src/spellchecker.C (create_ispell_pipe): removed old #warning,
727         the code has shown itself to work
728         (create_ispell_pipe): removed another warning, added a comment
729         instead. 
730
731         * src/minibuffer.C (ExecutingCB): removed code that has been
732         commented out a long time
733
734         * src/lyxfunc.C (processKeyEvent): removed some very old commented
735         out code + a warning.
736
737         * src/support/lyxstring.h: comment out the three private
738         operators, when compiling with string ansi conforming compilers
739         they make problems.
740
741         * src/mathed/math_symbols.C (AddBitmap): change 6th arg to be
742         unsigned char *.
743         (pixmapFromBitmapData): change type of bdata to be unsigned char *
744         (pixmapFromBitmapData): add a reinterpret_cast in the call to
745         XCreateImage
746
747         * src/mathed/math_panel.h: change 6th arg to AddBitmap to be
748         unsigned char *
749
750         * src/mathed/math_panel.C (create_math_panel): remove explicit
751         casts
752
753         * src/bmtable.h: change last paramter to fl_set_bmtable_data to be
754         unsigned char *.
755
756         * src/bmtable.C (struct BMTABLE_SPEC): make bdata unsigned char *
757         (draw_bitmaptable): add a reinterpret_cast to sp->bdata in the call
758         to XCreatePixmapFromBitmapData
759         (fl_set_bmtable_data): change the last argument to be unsigned
760         char *
761         (fl_set_bmtable_file): change bdata to unsinged char *, change bw
762         and bh to be unsigned int, remove explicit casts in call to
763         XReadBitmapFileData.
764
765         * images/arrows.xbm: made the arrays unsigned char *
766         * images/varsz.xbm: ditto
767         * images/misc.xbm: ditto
768         * images/greek.xbm: ditto
769         * images/dots.xbm: ditto
770         * images/brel.xbm: ditto
771         * images/bop.xbm: ditto
772
773         * Makefile.am (MAINTAINERCLEANFILES): added po/POTFILES.in
774
775         * acinclude.m4 (LYX_GXX_STRENGHT_REDUCE): removed. 
776         (LYX_PROG_CXX): added -pedantic to g++ compile options when
777         with-warnings, removed the __STRING_ANSI__ hack, seems to not be
778         needed. 
779         (LYX_CXX_CHEADERS): added <clocale> to the test. 
780
781 1999-10-23  Lars Gullik Bjønnes  <larsbj@lyx.org>
782
783         * src/lyx_cb.C (addNewlineAndDepth): changed to use string::append.
784
785         * src/support/lyxstring.C (append): fixed something that must be a
786         bug, rep->assign was used instead of rep->append.
787
788         * src/support/Makefile.am (libsupport_a_SOURCES): added LIstream.h
789         and LOstream.h
790
791         * src/lyxfunc.C (processKeyEvent): removed faulty line that made
792         lyx insert double chars. Fix spotted by Kayvan.
793
794 1999-10-23  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
795
796         * Fixed the tth support. I messed up with the Emacs patch apply feature
797         and omitted the changes in lyxrc.C.
798
799 1999-10-22  Juergen Vigna  <jug@sad.it>
800
801         * src/insets/figinset.C (CallbackFig): Just changed the defines a bit.
802
803         * src/lyx_cb.C (MenuInsertRef) + 
804         * src/lyx_gui.C (create_forms): Inserted fl_set_form_minsize so that
805         the form cannot be resized under it limits (fixes a segfault)
806         
807         * src/lyx.C (create_form_form_ref) +
808         * forms/lyx.fd: Changed Gravity on name input field so that it is
809         resized correctly.
810
811 1999-10-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
812
813         * configure.in: use LYX_CXX_STL_MODERN_STREAMS; check for headers
814         <ostream> and <istream>.
815         
816         * acinclude.m4 (LYX_CXX_STL_MODERN_STREAMS): new test. Checks
817         whether <fstream> provides the latest standard features, or if we
818         have an oldstyle library (like in egcs).
819         (LYX_CXX_STL_STRING): fix the test.
820
821         * src/support/DebugStream.{C,h}: use L{I,O}stream.h and condition the
822         code on MODERN_STL_STREAM.
823
824         * src/support/lyxstring.h: use L{I,O}stream.h.
825
826         * src/support/L{I,O}stream.h: new files, designed to setup
827         correctly streams for our use
828           - includes the right header depending on STL capabilities
829           - puts std::ostream and std::endl (for LOStream.h) or
830           std::istream (LIStream.h) in toplevel namespace.
831
832 1999-10-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
833
834         * src/LaTeX.C (run): added a check in 0 sumchange so that if it
835         was a bib file that had been changed we ensure that bibtex is run.
836         (runBibTeX): enhanced to extract the names of the bib files and
837         getting their absolute path and enter them into the dep file.
838         (findtexfile): static func that is used to look for tex-files,
839         checks for absolute patchs and tries also with kpsewhich.
840         Alternative ways of finding the correct files are wanted. Will
841         probably be moved.
842         (do_popen): function that runs a command using popen and returns
843         the whole output of that command in a string. Should be moved to
844         somewhere else.
845
846         * src/DepTable.[Ch] (extchanged): new function that returns true if a
847         file with extension ext has changed.
848
849         * src/insets/figinset.C: added ifdef guards around the fl_free
850         code that jug commented out. Now it is commented out when
851         compiling with XForms == 0.89.
852
853         * src/support/lyxstring.C: moved the definition of lyxstring::Srep
854         to lyxstring.C, and only keep a forward declaration in
855         lyxstring.h. Simplifies the header file a bit and should help a
856         bit on compile time too. Also changes to Srep will not mandate a
857         recompile of code just using string.
858         (~lyxstring): definition moved here since it uses srep.
859         (size): definition moved here since it uses srep.
860
861         * src/support/lyxstring.h: removed a couple of "inline" that should
862         not be there.
863
864 1999-10-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
865
866         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forgot to pass
867         the 'ob' argument.
868
869 1999-10-21  Juergen Vigna  <jug@sad.it>
870
871         * src/table.C (SetPWidth): Just a small fix so the alignment is not
872         set to left if I just remove the width entry (or it is empty).
873
874         * src/text2.C (SetCursorIntern): Fixed a bug calculating to use wrong
875         paragraph when having dummy paragraphs.
876
877 1999-10-20  Juergen Vigna  <jug@sad.it>
878
879         * src/insets/figinset.C: just commented some fl_free_form calls
880         and added warnings so that this calls should be activated later
881         again. This avoids for now a segfault, but we have a memory leak!
882
883         * src/lyxfunc.C (processKeyEvent) (Dispatch): changed
884         'const char * argument' to 'string argument', this should
885         fix some Asserts() in lyxstring.C.
886
887         * src/lyxfunc.h: Removed the function argAsString(const char *)
888         as it is not used anymore.
889
890 1999-10-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
891
892         * src/support/lyxstring.C (getline): reads now _all_ chars. uses
893         get instead of >>
894
895         * src/Literate.h: some funcs moved from public to private to make
896         interface clearer. Unneeded args removed.
897
898         * src/Literate.C (scanLiterateLogFile): rewritten to use iostream
899         instead of lyxlex.
900         (scanBuildLogFile): ditto
901
902         * src/LaTeX.C (scanLogFile): merged LaTeX Error handling into
903         normal TeX Error. Still room for improvement.
904
905         * src/LaTeX.[Ch]: removed scanError. Wrong place and not needed.
906
907         * src/buffer.C (insertErrors): changes to make the error
908         desctription show properly.
909
910         * src/LaTeX.C (deplog): removed the test for file in lyx doc dir.
911         could never happen
912
913         * src/support/lyxstring.C (helper): changed to use
914         sizeof(object->rep->ref).
915         (operator>>): changed to use a pointer instead.
916
917         * src/support/lyxstring.h: changed const reference & to value_type
918         const & lets see if that helps.
919
920 1999-10-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
921
922         * Makefile.am (rpmdist): fixed to have non static package and
923         verison.
924
925         * src/support/lyxstring.C: removed the compilation guards
926
927         * src/vspace.C (nextToken): use i + 1  instead of ++i. Maks things
928         a bit clearer.
929
930         * src/support/Makefile.am (LYXSTRING): bruker USE_LYXSTRING for
931         conditional compile of lyxstring.Ch
932
933         * acinclude.m4 (LYX_CXX_STL_STRING): new and improved, still a
934         stupid check, but it is a lot better than the bastring hack. 
935         (LYX_CXX_STL_STRING): bruker nå AM_CONDITIONAL(USE_LYXSTRING  
936
937         * several files: changed string::erase into string::clear. Not
938         really needed.
939         
940         * src/chset.C (encodeString): use a char temporary instead
941
942         * src/table.C (TexEndOfCell): added tostr around
943         column_of_cell(fcell+i)+1 and around right_column_of_cell(fcell+i)+1
944         (TexEndOfCell): ditto
945         (TexEndOfCell): ditto
946         (TexEndOfCell): ditto
947         (DocBookEndOfCell): ditto
948         (DocBookEndOfCell): ditto
949         (DocBookEndOfCell): ditto
950         (DocBookEndOfCell): ditto
951
952         * src/paragraph.C (TeXEnvironment): added tostr around foot_count -1
953
954         * src/lyxfr1.C (SearchReplaceAllCB): added tostr around replace_count
955
956         * src/lyx_cb.C (MenuRunLaTeX): added tostr around ret
957         (MenuBuildProg): added tostr around ret
958         (MenuRunChktex): added tostr around ret
959         (DocumentApplyCB): added tostr around ret
960
961         * src/chset.C (encodeString): added tostr around t->ic
962
963         * src/buffer.C (makeLaTeXFile): added tostr around secnumdepth
964         (makeLaTeXFile): added tostr around tocdepth
965         (makeLaTeXFile): added tostr around ftcound - 1
966
967         * src/insets/insetbib.C (setCounter): added tostr around counter.
968
969         * src/support/lyxstring.h: added an operator+=(int) to catch more
970         mistakes. 
971
972         * src/support/lyxstring.C (lyxstring): We DON'T allow NULL pointers.
973         (lyxstring): We DON'T allow NULL pointers.
974
975 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
976
977         * src/mathed/math_macro.C (MathMacroArgument::Write,
978         MathMacroTemplate::WriteDef): add tostr() around macro arg numbers
979         when writing them out.
980
981         * src/LString.C: remove, since it is not used anymore.
982         
983         * src/support/lyxstring.C: condition the content to
984         USE_INCLUDED_STRING macro.
985
986         * src/mathed/math_symbols.C, src/support/lstrings.C,
987         src/support/lyxstring.C: add `using' directive to specify what
988         we need in <algorithm>. I do not think that we need to
989         conditionalize this, but any thought is appreciated.
990
991         * many files: change all callback functions to "C" linkage
992         functions to please strict C++ compilers like DEC cxx 6.1 in mode
993         strict_ansi. Those who were static are now global. 
994             The case of callbacks which are static class members is
995         trickier, since we have to make C wrappers around them (see
996         InsetError, InsetInfo and InsetUrl). The same holds for friends. I
997         did not finish this yet, since it defeats the purpose of
998         encapsulation, and I am not sure what the best route is.
999
1000 1999-10-19  Juergen Vigna  <jug@sad.it>
1001
1002         * src/support/lyxstring.C (lyxstring): we permit to have a null
1003         pointer as assignment value and just don't assign it.
1004
1005         * src/vspace.C (nextToken): corrected this function substituting
1006         find_first(_not)_of with find_last_of.
1007
1008         * src/TableLayout.C (UpdateLayoutTable) (TableOptionsCB)
1009                 (TableOptCloseCB) (TableSpeCloseCB):
1010         inserted fl_set_focus call for problem with fl_hide_form() in
1011         xforms-0.89.
1012
1013 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1014
1015         * src/lyx_cb.C (LayoutsCB): fix bug where int was added to a
1016         string. 
1017
1018 1999-10-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1019
1020         * src/lyxrc.C (Read): RC_PRINTEXSTRAOPTIONS now uses
1021         LyXLex::next() and not eatline() to get its argument.
1022
1023 1999-10-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
1024
1025         * src/DepTable.[Ch]: rewritten to store the dependencies in a map
1026         instead, use fstreams for io of the depfile, removed unneeded
1027         functions and variables. 
1028
1029         * src/LaTeX.[Ch] (class TeXErrors): rewrote to store the errors in a
1030         vector instead, removed all functions and variables that is not in
1031         use.
1032
1033 1999-10-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
1034
1035         * src/buffer.C (insertErrors): use new interface to TeXError
1036
1037         * Makefile.am (rpmdist): added a rpmdist target
1038
1039         * lib/reLyX/Makefile.am: added RelyxFigure.pm and Verbatim.pm as
1040         per Kayvan's instructions.
1041
1042 1999-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1043
1044         * src/Makefile.am: add a definition for localedir, so that locales
1045         are found after installation (Kayvan)
1046
1047 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
1048
1049         * development/.cvsignore: new file.
1050
1051 1999-10-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1052
1053         * acinclude.m4 (LYX_CXX_CHEADERS): New macro. Checks whether the
1054         C++ compiler provides wrappers for C headers and use our alternate
1055         version otherwise.
1056
1057         * configure.in: use LYX_CXX_CHEADERS.
1058
1059         * src/cheader/: new directory, populated with cname headers from
1060         libstdc++-2.8.1. They are a bit old, but probably good enough for
1061         what we want (support compilers who lack them).
1062         
1063         * src/insets/Makefile.am, src/mathed/Makefile.am: remove src/support
1064         from includes. It turns out is was stupid.
1065  
1066 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
1067
1068         * lib/Makefile.am (install-data-local): forgot a ';'
1069         (install-data-local): forgot a '\'
1070         (libinstalldirs): needed after all. reintroduced.
1071
1072 1999-10-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
1073
1074         * configure.in (AC_OUTPUT): added lyx.spec
1075
1076         * development/lyx.spec: removed file
1077
1078         * development/lyx.spec.in: new file
1079
1080         * po/*.po: merged with lyx.pot becuase of make distcheck
1081         
1082         * lib/Makefile.am (dist-hook): added dist-hook so that
1083         documentation files will be included when doing a make
1084         dist/distdir/distcheck. Requires cvs export -r HEAD lyxdoc to run.
1085         (pkgdata_SCRIPTS): added configure.cmd for now, we can use som
1086         conditional later.
1087         more: tried to make install do the right thing, exclude CVS dirs
1088         etc.
1089
1090         * src/LaTeXLog.C (ShowLatexLog): reordered som statements so that
1091         Path would fit in more nicely.
1092
1093         * all files that used to use pathstack: uses now Path instead.
1094         This change was a lot easier than expected.
1095         
1096         * src/support/path.h: new file
1097
1098         * src/support/Makefile.am (libsupport_a_SOURCES): added path.h
1099
1100         * src/Makefile.am (lyx_SOURCES): removed pathstack.[Ch]
1101
1102         * src/support/lyxstring.C (getline): Default arg was given for
1103         para 3. removed.
1104
1105         * Configure.cmd: removed file 
1106
1107 1999-10-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1108
1109         * src/support/DebugStream.[Ch]: remove the explicit std:: before
1110         streams classes and types, add the proper 'using' statements when
1111         MODERN_STL is defined.
1112         
1113         * src/debug.h: move the << operator definition after the inclusion
1114         of DebugStream.h
1115
1116         * src/support/filetools.C: include "LAssert.h", which is needed
1117         later. 
1118
1119         * src/insets/Makefile.am, src/mathed/Makefile.am: add src/support
1120         to includes. 
1121
1122         * src/lyxfont.h, src/commandtags.h, src/mathed/math_defs.h:
1123         include "debug.h" to define a proper ostream.
1124
1125 1999-10-12  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
1126
1127         * src/sys*: Cleaned up the Systemcall stuff a bit. Added "kill(int)"
1128           method to the SystemCall class which can kill a process, but it's
1129           not fully implemented yet.
1130
1131         * src/*.C: Changed Systemcalls::Startscript() to startscript()
1132
1133         * src/support/FileInfo.h: Better documentation  
1134
1135         * src/lyxfunc.C: Added support for buffer-export html
1136         
1137         * src/menus.C: Added Export->As HTML...
1138         
1139         * lib/bind/*.bind: Added short-cut for buffer-export html
1140
1141         * src/lyxrc.*: Added support for new \tth_command
1142         
1143         * lib/lyxrc.example: Added stuff for new \tth_command
1144
1145 1999-10-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
1146
1147         * lib/Makefile.am (IMAGES): removed images/README
1148         (pkgdata_SCRIPTS): use this instead of bin_SCRIPTS to that it
1149         installes in correct place. Check permisions is installed
1150         correctly.
1151
1152         * src/LaTeX.C: some no-op changes moved declaration of some
1153         variables around.
1154
1155         * src/LaTeX.h (LATEX_H): changed include guard name
1156
1157 1999-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1158
1159         * lib/reLyX/Makefile.am: install noweb2lyx.
1160
1161         * lib/Makefile.am: install configure. 
1162
1163         * lib/reLyX/configure.in: declare a config aux dir; set package
1164         name to lyx (not sure what the best solution is); generate noweb2lyx.
1165
1166         * lib/layouts/egs.layout: fix the bibliography layout.
1167
1168 1999-10-08  Jürgen Vigna <jug@sad.it>
1169
1170         * src/support/filetools.C (FileOpenSearch): Fixed a bug where
1171         when in the PATH was something like /usr/bin;;/bin (note: the ;;)
1172         it returned without continuing to search the path.
1173         
1174 1999-10-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
1175
1176         * src/insets/insetquotes.C (Draw): Simplified a gread deal. This
1177         also fixes a bug. It is not allowed to do tricks with std::strings
1178         like: string a("hei"); &a[e]; this will not give what you
1179         think... Any reason for the complexity in this func?
1180
1181 1999-10-06  Asger Alstrup Nielsen  <alstrup@diku.dk>
1182
1183         * Updated README and INSTALL a bit, mostly to check that my
1184         CVS rights are correctly set up.
1185
1186 1999-10-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
1187
1188         * src/support/lyxstring.C (helper): removed bogus Assert. strlen
1189         does not allow '\0' chars but lyxstring and std::string does.
1190
1191 1999-10-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
1192
1193         * autogen.sh (AUTOCONF): let the autogen script create the
1194         POTFILES.in file too. POTFILES.in should perhaps now not be
1195         included in the cvs module.
1196
1197         * some more files changed to use C++ includes instead of C ones.
1198
1199         * src/filedlg.C (Reread): fixed a bug wrt Time. It was appended
1200         not assigned.
1201         (Reread): added tostr to nlink. buggy output otherwise.
1202         (Reread): added a string() around szMode when assigning to Buffer,
1203         without this I got a log of garbled info strings.
1204
1205         * acconfig.h: commented out the PTR_AS_INT macros. They should not
1206         be needed.
1207
1208         * I have added several ostream & operator<<(ostream &, some_type)
1209         functions. This has been done to avoid casting and warnings when
1210         outputting enums to lyxerr. This as thus eliminated a lot of
1211         explicit casts and has made the code clearer. Among the enums
1212         affected: kb_action, InsetLatexAccent::ACCENT_TYPE, a couple of
1213         mathed enums, some font enum the Debug::type enum. 
1214
1215         * src/support/lyxstring.h (clear): missing method. equivalent of
1216         erase(0, npos).
1217
1218         * all files that contained "stderr": rewrote constructs that used
1219         stderr to use lyxerr instead. (except bmtable)
1220
1221         * src/support/DebugStream.h (level): and the passed t with
1222         Debug::ANY to avoid spurious bits set.
1223
1224         * src/debug.h (Debug::type value): made it accept strings of the
1225         type INFO,INIT,KEY.
1226
1227         * configure.in (Check for programs): Added a check for kpsewhich,
1228         the latex generation will use this later to better the dicovery of
1229         all used files. 
1230
1231         * src/BufferView.C (create_view): we don't need to cast this to
1232         (void*) that is done automatically.
1233         (WorkAreaButtonPress): removed some dead code.
1234
1235 1999-10-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1236
1237         * src/minibuffer.C (Init): make sure that the "Welcome to LyX!"
1238         is not overwritten when translated (David Sua'rez de Lis).
1239
1240         * lib/CREDITS: Added David Sua'rez de Lis
1241
1242         * lib/reLyX/configure.in: setup LYX_DIR correctly in reLyX.
1243
1244         * src/bufferparams.C (BufferParams): default input encoding is now
1245         "latin1" 
1246
1247         * acinclude.m4 (cross_compiling): comment out macro
1248         LYX_GXX_STRENGTH_REDUCE. 
1249
1250         * acconfig.h: make sure that const is not defined (to empty) when
1251         we are compiling C++. Remove commented out code using SIZEOF_xx
1252         macros.
1253         
1254         * configure.in : move the test for const and inline as late as
1255         possible so that these C tests do not interefere with C++ ones.
1256         Remove the call to LYX_GXX_STRENGTH_REDUCE, since its usefulness
1257         has not been proven. 
1258
1259 1999-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1260
1261         * src/table.C (getDocBookAlign): remove bad default value for
1262         isColumn parameter.
1263
1264         * src/menus.C (ShowFileMenu): add a missing tostr() for lastfiles
1265         shortcut. 
1266         (ShowFileMenu2): ditto.
1267
1268         * lib/reLyX/.cvsignore: add configure and aclocal.m4 to the list
1269         of files to ignore.
1270
1271 1999-10-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1272
1273         * Most files: finished the change from the old error code to use
1274         DebugStream for all lyxerr debugging. Only minor changes remain
1275         (e.g. the setting of debug levels using strings instead of number) 
1276
1277 1999-10-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
1278
1279         * src/layout.C (Add): Changed to use compare_no_case instead of
1280         strcasecmp.
1281
1282         * src/FontInfo.C: changed loop variable type too string::size_type.
1283
1284 1999-10-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
1285
1286         * src/support/Makefile.am: added -I${srcdir}/../ to INCLUDES and
1287         set ETAGS_ARGS to --c++ 
1288
1289 1999-09-30  Lars Gullik Bjønnes  <larsbj@lyx.org>
1290
1291         * src/table.C (DocBookEndOfCell): commented out two unused variables
1292
1293         * src/paragraph.C: commented out four unused variables. 
1294
1295         * src/lyx_cb.C (TocUpdateCB): moved variable i and added a new i
1296         insed a if clause with type string::size_type.
1297
1298         * src/lyxfr1.C (IsSearchStringInText): changed iSrch from int to
1299         string::size_type.
1300
1301         * src/lyxfunc.C (Dispatch): use string::size_type as loop variable.
1302
1303         * src/lyx_cb.C (ReplaceWord): use string::size_type as loop
1304         variable, also changed loop to go from 0 to lenght + 1, instead of
1305         -1 to length. This should be correct.
1306
1307         * src/LaTeX.C (scanError): use string::size_type as loop variable
1308         type.
1309
1310         * src/BufferView.C (WorkAreaButtonPress): moved #if 0 up two lines
1311         (l.896) since y_tmp and row was not used anyway.
1312
1313         * src/insets/insetref.C (escape): use string::size_type as loop
1314         variable type.
1315
1316         * src/insets/insetquotes.C (Width): use string::size_type as loop
1317         variable type.
1318         (Draw): use string::size_type as loop variable type.
1319
1320         * src/insets/insetlatexaccent.C (checkContents): use
1321         string::size_type as loop variable type.
1322
1323         * src/insets/insetlabel.C (escape): use string::size_type as loop
1324         variable type.
1325
1326         * src/insets/insetinfo.C: added an extern for current_view.
1327
1328         * src/insets/insetcommand.C (scanCommand): use string::size_type
1329         as loop variable type.
1330
1331         * most files: removed the RCS tags. With them we had to recompile
1332         a lot of files after a simple cvs commit. Also we have never used
1333         them for anything meaningful. 
1334
1335         * most files: tags-query-replace NULL 0. As adviced several plases
1336         we now use "0" instead of "NULL" in our code. 
1337
1338         * src/support/filetools.C (SpaceLess): use string::size_type as
1339         loop variable type.
1340
1341 1999-09-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
1342
1343         * src/paragraph.C: fixed up some more string stuff.
1344
1345 1999-09-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
1346
1347         * src/support/filetools.h: make modestr a std::string.
1348
1349         * src/filetools.C (GetEnv): made ch really const.
1350
1351         * src/lyxlib.h: removed the Maximum and Minimum inline functions,
1352         made code that used these use max/min from <algorithm> instead.
1353
1354         * changed several c library include files to their equivalent c++
1355         library include files. All is not changed yet.
1356
1357         * created a support subdir in src, put lyxstring and lstrings
1358         there + the extra files atexit, fileblock, strerror. Created
1359         Makefile.am. edited configure.in and src/Makefile.am to use this
1360         new subdir. More files moved to support.
1361
1362         * imported som of the functions from repository lyx, filetools
1363         
1364         * ran tags-query-replace on LString -> string, corrected the bogus
1365         cases. Tried to make use of lstrings.[hC], debugged a lot. There
1366         is still some errors in there. This is errors where too much or
1367         too litle get deleted from strings (string::erase, string::substr,
1368         string::replace), there can also be some off by one errors, or
1369         just plain wrong use of functions from lstrings. Viewing of quotes
1370         is wrong. 
1371
1372         * LyX is now running fairly well with string, but there are
1373         certainly some bugs yet (see above) also string is quite different
1374         from LString among others in that it does not allow null pointers
1375         passed in and will abort if it gets any.
1376         
1377         * Added the revtex4 files I forgot when setting up the repository.
1378
1379 1999-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
1380
1381         * All over: Tried to clean everything up so that only the files
1382           that we really need are included in the cvs repository.
1383         * Switched to use automake.
1384         * Generaton of reLyX is not perfect, LYX_DIR does not get substituted.
1385         * Install has not been checked.
1386
1387 1999-09-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
1388
1389         * po/pt.po: Three errors:
1390                l.533 and l.538 format specification error
1391                l. 402 duplicate entry, I just deleted it.
1392