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