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