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