]> git.lyx.org Git - lyx.git/blob - src/ChangeLog
finished fixing removeAutoInsets()
[lyx.git] / src / ChangeLog
1 2002-01-13  Allan Rae  <rae@lyx.org>
2
3         * BufferView2.C (removeAutoInsets): finished off earlier fix.
4         Now seems indestructible.  Remaining task is to audit all other
5         code affected by deleteEmptyParagraphMechanism.  One small quirk
6         left is that an empty document with an error in the preamble can
7         be made to report an error but no error box appears.  I don't know
8         where it goes.
9
10 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
11
12         * Thesaurus.h:
13         * Thesaurus.C: update for Aiksaurus 0.14
14
15 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
16
17         * text2.C (firstParagraph): removed member function, all uses
18         replaces with ownerParagraph
19         (redoParagraphs): here
20         (updateInset): here
21         (toggleAppendix): here
22         * BufferView2.C (insertErrors): here
23         (setCursorFromRow): here
24
25 2002-01-13  Allan Rae  <rae@lyx.org>
26
27         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
28         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
29         There is still a way to segfault this although you may have to do this
30         multiple times: Have an InsetERT with an unknown command in it. 
31         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
32         <down-arrow>, <Enter> again, View->DVI, BANG!
33
34         * text2.C (setCursor): 
35         (deleteEmptyParagraphMechanism): 
36         * lyxtext.h (setCursor): 
37         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
38         Making use of the return value may help fix other bugs.
39
40 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
41
42         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
43         should need to care about that.
44
45         * lyxfunc.C (verboseDispatch): simplify a bit
46         (getStatus): have a version which takes a pseudoaction, and
47         another which requires a (kb_action,string).
48
49         * LyXAction.C (retrieveActionArg): make it work also when action
50         is not a pseudo-action.
51         (getActionName): simplify a bit
52         (helpText): 
53
54 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
55
56         * lyxfunc.C (verboseDispatch): new families of methods with
57         several ways to specify a command and a bool to indicate whether
58         the command name and shortcut should be displayed in minibuffer
59         (eventually, we could extend that to a finer bitmask like
60         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
61         (dispatch): the pristine dispatch command which just, well,
62         dispatchs! Note it still sets its result to minibuffer; I'm not
63         sure we want that.
64
65         * lyxfunc.h: remove setHintMessage
66
67         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
68
69 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
70
71         * BufferView_pimpl.C (specialChar): delete new inset if we have
72         not been able to insert it.
73
74         * kbmap.C: revert to using int instead of kb_action, since all we
75         are dealing with is pseudo-actions.
76
77         * LyXAction.C (searchActionArg): change to return int instead of
78         kb_action, since the result is a pseudoaction.
79
80 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
81
82         * buffer.C (insertErtContents): Fix (partially) the font bug.
83
84 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
85
86         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
87         as the other one is broken on my machine!
88
89 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
90
91         * commandtags.h:
92         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
93
94 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
95
96         * lyxrc.[Ch]: change names and descriptions of popup font variables to
97         reflect their actual use. Provide compatibility code for older lyxrc
98         files.
99         
100         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
101         FL_NORMAL_STYLE.
102         change names of popup font variables in line with the changes to lyxrc.C
103
104 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
105
106         * buffer.C (asciiParagraph): avoid outputing a word twice after
107         an inset.
108
109         * lyxrc.C (getDescription): document that document_path and
110         template_path can be empty.
111
112 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
113
114         * LaTeXFeatures.C (getMacros): 
115         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
116         
117         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
118
119         * LaTeXFeatures.C (useFloat): require "float" here instead of in
120         getPackages. 
121         (getPackages): rename feature "floats" to "float". Use an array to
122         iterate over 'simple' features (i.e. just a \usepackage). Add
123         handling of "amsmath" (renamed from "amsstyle").
124
125 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
126
127         * LaTeXFeatures.C (require): Prevent duplicate entries in the
128         features list.
129
130 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
131
132         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
133         FuncStaus::FuncStatus & FuncStaus::some_method().
134
135 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
136
137         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
138         of the func_satus stuff. Edited and massaged in various ways by
139         JMarc.  
140
141         * lyxfunc.C (getStatus): use FuncStatus
142
143 2002-01-08  Juergen Vigna  <jug@sad.it>
144
145         * text.C (nextBreakPoint): use function Inset::isChar().
146
147         * paragraph.C (TeXOnePar): use function
148         Inset::forceDefaultParagraphs.
149
150         * buffer.C (latexParagraphs): use function
151         Inset::forceDefaultParagraphs.
152
153 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
154
155         * lyx_gui.C (init): set the style of the menu popups to
156         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
157
158 2002-01-07  Juergen Vigna  <jug@sad.it>
159
160         * text.C (setHeightOfRow): small fix
161         (prepareToPrint): don't look at alignment if we don't have the place
162         for doing it.
163
164 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
165
166         * box.C: New file. Move the Box methods and functions out of box.h,
167         following Lars' suggestion.
168
169 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
170
171         * box.h: #include "support/LOstream.h", needed for inlined function.
172
173         * lyxtextclass.C:
174         * lyxtextclasslist.C: added some using std declarations.
175
176 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
177
178         * box.h: make signed dimensions to allow insets wider than
179           the screen (bug #162)
180
181         * BufferView_pimpl.C: add some insetHit debug
182  
183 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
184
185         * vc-backend.C: add FIXME
186  
187 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
188
189         * lyxfunc.C (getStatus): enable code for showing math font status
190         in toolbar/menu.
191
192 2002-01-07  Juergen Vigna  <jug@sad.it>
193
194         * text.C (nextBreakPoint): removed debug output not needed anymore.
195
196 2002-01-06  Juergen Vigna  <jug@sad.it>
197
198         * text.C (nextBreakPoint): fixed up this function we had this bug
199         since ever but now hopefully we break row better.
200         (insertChar): we have to check if an inset is the next char as it
201         could now happen that a large inset is causing a break.
202
203 2002-01-05  Juergen Vigna  <jug@sad.it>
204
205         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
206         if it doesn't like to be drawed.
207
208 2002-01-04  Juergen Vigna  <jug@sad.it>
209
210         * BufferView2.C (lockInset): forgot to set a cursor.
211
212         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
213
214 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
215
216         * FormMathsPanel.C:
217         * FormMathsPanel.h
218         * MathsSymbols.C:
219         * form_maths_panel.C:
220         * form_maths_panel.h:
221         * form_maths_panel.fd: implemented sub- and super- buttons in math
222         panel. 
223
224         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
225         (or ^ space) to be used as in TeX (req'd by André).
226
227         * lyxfunc.C: Allow ^ and _ again to be used both as
228         super/subscript (mathed) and as themselves (in text).
229
230 2002-01-03  Allan Rae  <rae@lyx.org>
231
232         * LyXView.C (updateWindowTitle): Setup a short icon title of either
233         "LyX" or the filename of the current buffer if it has one.  This is a
234         modified form of John Levon's patch.
235
236         * XFormsView.C (setWindowTitle): also set icon title.
237
238         * LyXView.h (setWindowTitle): signature changed.
239         * XFormsView.h (setWindowTitle): ditto.
240
241 2002-01-02  Juergen Vigna  <jug@sad.it>
242
243         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
244
245 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
246
247         * screen.C (topCursorVisible): introduce a temp var for
248         text->cursor.row(), handle the case where this row is null. (kindo
249         hachish)
250
251         * text2.C (setCursor): add a couple of asserts.
252
253         * paragraph.h (inset_iterator): add -> operator 
254
255         * paragraph.[Ch] (autoDeleteInsets): remove member function 
256
257         * BufferView2.C (removeAutoInsets): rewrite to handle the old
258         cursor pos correctly and handle inset deletion by itself.
259         (insertErrors): move iterator declaration out of for expression
260
261         * lyxtextclass.C: add <algorithm>
262
263         * Makefile.am: added the new files to sources, removed layout.C
264         
265         * layout.C: removed file
266         
267         * layout.h: remove LYX_DUMMY_LAYOUT
268
269         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
270         layout.
271
272         * lyxlayout.[Ch]:
273         * lyxtextclass.[Ch]:
274         * lyxtextclasslist.[Ch]: new files 
275
276         * include order changes to a lot of files, also changes because of
277         the six new files.
278         
279 2001-12-27  Juergen Vigna  <jug@sad.it>
280
281         * buffer.C (asciiParagraph): more fixes.
282
283         * tabular.C (ascii): make ascii export support export of only the
284         data separated by a column-delimiter.
285         (ascii): better support for ascii export.
286
287         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
288
289 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
290
291         * tabular_funcs.C: use a "using std::getline" instead of the
292         previous fix from Angus (necessary for cxx + lyxstring)
293
294 2001-12-24  Juergen Vigna  <jug@sad.it>
295
296         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
297
298         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
299         problems. First check a minipage also if we have some ert-contents
300         (not only on par->size(), second set the right depth of the paragraph
301         on the relink to the root-paragraph-list!
302
303         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
304         which then did not anymore update the main paragraphs on undo/redo!
305
306 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
307
308         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
309         code. Support all font-changing funcs (even those which are not in
310         menu currently). Support for reporting font settings in 
311         mathed (disabled until Andre provides a function on mathed's side).
312
313         * func_status.h (toggle): small helper function to set toggle
314         state on a flag.
315
316 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
317
318         * tabular_funcs.C: getline -> std::getline
319
320 2001-12-21  Juergen Vigna  <jug@sad.it>
321
322         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
323         accessed and could be 0 (I couldn't generate this but it seems
324         Michael could!).
325
326 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
327
328         * tabular_funcs.C: add LIstream.h, move write_attribute to..
329         * tabular_funcs.h: here and include iosfwd
330
331 2001-12-20  Juergen Vigna  <jug@sad.it>
332
333         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
334         inside inset but undo_par was.
335
336 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
337
338         * Thesaurus.C: always include <config.h> in sources.
339
340         * Painter.h: 
341         * lyxlookup.h: 
342         * box.h: do not include <config.h> in header files
343
344         * text.C (paintLastRow): remove unused variable
345
346         * text.C (transformChar): 
347         (insertChar): 
348         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
349
350         * Painter.C (text): 
351         * font.C (width): rewrite to use uppercase() instead of
352         islower/toupper. 
353
354         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
355
356 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
357
358         * lyxfind.C: clean up of find failure position change
359
360 2001-12-20  Juergen Vigna  <jug@sad.it>
361
362         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
363
364         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
365         (TeXRow): added to LaTeX a single tabular row.
366         (TeXLongtableHeaderFooter): added to output LT-h/f data.
367         (Latex): simplified and finally good LT-h/f support.
368         (various_functions): just small adaptions for LT-h/f support.
369
370         * tabular_funcs.[hC]: added and moved here all not classfunctions
371         of LyXTabular.
372
373 2001-12-19  Juergen Vigna  <jug@sad.it>
374
375         * tabular.[Ch]: better support for longtabular options (not finished
376         yet!)
377
378 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
379
380         * text.C (paintLastRow): use the label font instead of the font of
381         the last character to compute the size of *_BOX. This makes more
382         sense and avoids a crash with empty paragraphs.
383         Use Painter::rectangle to draw EMPTY_BOX.
384
385 2001-12-19  Juergen Vigna  <jug@sad.it>
386
387         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
388         the paragraphs if the replaced paragraph is not the first one!
389         Tried to delete not used paragraphs but does not work yet so for
390         now it's inside #ifdef's and by default off!
391
392 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
393
394         * MenuBackend.C: include "lyx_main.h" instead of declaring
395         lastfiles (actually was declared as LastFiles* instead of a
396         scoped_ptr).
397
398 2001-12-17  Juergen Vigna  <jug@sad.it>
399
400         * tabular.C (AppendColumn): applied John's fix
401
402 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
403
404         * BufferView.h: 
405         * BufferView.C:
406         * BufferView_pimpl.h:
407         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
408
409         * Makefile.am:
410         * box.h: new start of class for above
411
412         * lyxfunc.C: ignore space-only minibuffer dispatches.
413           Show the command name when it doesn't exist
414
415         * minibuffer.C: don't add empty lines to the history
416
417         * minibuffer.C: add a space on dropdown completion
418  
419 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
420
421         * text.C: fix line above/below drawing in insets
422
423 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
424
425         * lyxlength.C (LyXLength): Initialize private variables.
426
427 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
428
429         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language 
430         when inserting error insets.
431
432 2001-12-13  Juergen Vigna  <jug@sad.it>
433
434         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
435         actually sometimes the before-paragraph.
436         (setUndo): don't clear the redostack if we're not actually undoing!
437
438 2001-12-06  Juergen Vigna  <jug@sad.it>
439
440         * undo_funcs.C (textHandleUndo): well after John's hint I got here
441         and fixed redoing of main paragraph, so we can use it now ;)
442
443         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
444
445 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
446
447         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
448         Juergen's request
449
450 2001-12-13  André Pönitz <poenitz@gmx.net>
451
452         * undostack.[Ch]:
453         * undo_func.C: minor cleanup
454
455 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
456
457         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
458         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
459         font in urw-fonts package which is marked as -urw-fontspecific and
460         does not work (incidentally, changing the encoding in the
461         fonts.dir of this package to -adobe-fontspecific fixes the
462         problem).
463
464         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
465         is a crash when undoing first paragraph (Juergen, please take a
466         look). THis does not mean the undo fix is wrong, just that it
467         uncovers problems.
468
469         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
470         the (Paragraph*) version when needed instead of duplicating the
471         code.
472
473         * text.C (workWidth): use Inset::parOwner to find out where the
474         inset has been inserted. This is a huge performance gain for large
475         documents with lots of insets. If Inset::parOwner is not set, fall
476         back on the brute force method
477
478         * paragraph_pimpl.C (insertInset): 
479         * paragraph.C (Paragraph): 
480         (cutIntoMinibuffer): set parOwner of insets when
481         inserting/removing them
482
483         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
484
485 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
486
487         * commandtags.h:
488         * LyXAction.C:
489         * lyx_main.C:
490         * lyxfunc.C:
491         * mathed/formulabase.C:
492         * mathed/math_cursor.[Ch]:
493         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
494
495
496 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
497
498         * lyxlength.[Ch] (operator!=): new function
499
500 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
501
502         * text.C (workWidth): use Inset::parOwner to find out where the
503         inset has been inserted. This is a huge performance gain for large
504         documents with lots of insets. If Inset::parOwner is not set, fall
505         back on the brute force method
506
507         * paragraph_pimpl.C (insertInset): 
508         * paragraph.C (Paragraph): 
509         (cutIntoMinibuffer): set parOwner of insets when
510         inserting/removing them
511
512         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
513
514 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
515
516         * tabular-old.C (getTokenValue): 
517         * tabular.C (getTokenValue): 
518         (write_attribute): new versions for LyXLength
519         (everywhere): adjust the use of widths
520
521         * tabular.h: change the type of widths from string to LyXLength
522
523 2001-12-11  Ben Stanley <bds02@uow.edu.au>
524
525         * paragraph.C: fixed missing line number count when exporting
526         Environments to LaTeX file
527
528         * buffer.C: added informational message for checking line numbers.
529
530 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
531
532         * text2.C (deleteEmptyParagraphMechanism): if there is only one
533         paragraph, do the 'double space' part, but not the 'empty
534         paragraph' one.
535
536         * text.C (workWidth): small optimization
537         (getLengthMarkerHeight): use minimal size for negative lengths. 
538
539 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
540
541         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
542
543         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
544
545 2001-12-11  André Pönitz <poenitz@gmx.net>
546
547         * FontLoader.C:
548         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
549
550 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
551
552         * text2.C: keep selection on a setFont()
553  
554 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
555
556         * lyx_cb.C: another bv->text misuse, from insert label
557  
558 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
559
560         * kbsequence.h:
561         * kbsequence.C: re-instate nmodifier mask
562  
563 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
564
565         * lyx_main.h: make lyxGUI private.
566
567 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
568
569         * lyxfind.C: place the cursor correctly on failed search
570  
571 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
572
573         * text.C (getLengthMarkerHeight): for small heights, the arrows
574         are not always on top/bottom of the text
575         (drawLengthMarker): smaller arrows; take the left margin in
576         account; draw also vfills.
577         (paintFirstRow): 
578         (paintLastRow): remove special code for vfill and standard spaces,
579         since everything is handled in drawLengthMarker now.
580
581 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
582
583         * buffer.C (insertErtContents): try to handle font and language
584         interaction a bit better.g
585
586         * ColorHandler.C (updateColor): change the hash to cover the whole
587         LColor enum, ws cleanup
588         (getGCLinepars): ditto
589         (getGCLinepars): only lookup in the linecache once.
590
591 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
592
593         * iterators.C (operator++): Make the iterator more robust
594
595         * BufferView2.C (removeAutoInsets): Use paragraph iterators
596         (John's patch)
597         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
598
599 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
600
601         * lyxtext.h:
602         * text.C: better added space drawing
603
604 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
605
606         * LyXView.C:
607         * BufferView2.C: fix layout combo update on inset unlock
608
609 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
610
611         * Makefile.am: don't compile unused files
612
613 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
614
615         * lyxfunc.C:
616         * commandtags.h:
617         * LyXAction.C: remove old LFUN_LAYOUTNO
618
619 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
620
621         * paragraph_pimpl.h:
622         * paragraph_pimpl.C: isTextAt() doesn't need font param
623
624 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
625
626         * lyxlex.h:
627         * lyxlex.C: little cleanup
628
629 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
630
631         * BufferView_pimpl.C: fix insertAscii for insets
632  
633 2001-12-05  Juergen Vigna  <jug@sad.it>
634
635         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
636         set the right font on the "multi" paragraph paste!
637
638 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
639
640         * trans_decl.h:
641         * trans_mgr.[Ch]:
642         * trans.[Ch]:
643         * lyxgluelength.C:
644         * lyxlength.C: remove out-commented code.
645
646         * BufferView_pimpl:
647         * CutAndPaste.C: 
648         * DepTable.C:
649         * buffer.C:
650         * chset.C:
651         * lastfiles.C:
652         * lyxlex.C:
653         * lyxlex_pimpl.C:
654         * lyxserver.C:
655         * screen.C:
656         * tabular-old.C:
657         * tabular.C:
658         * text.C:
659         * trans_mgr.C:
660         * vc-backend.C: change "while(" to "while ("
661         
662         * lyxlength.[Ch]: add zero function to check if length is zero or
663         not
664         * lyxgluelength.C: use it
665         
666 2001-12-05  Allan Rae  <rae@lyx.org>
667
668         * lyxlength.C: Attempted a fix for the abs(int) header selection.
669         Works for 2.95.3, from what I understand of Garst's reports this should
670         work for other g++ versions.  We're screwed if the abs(int) definition
671         changed between bugfix releases of gcc.
672
673 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
674
675         * text.C: fix chapter label offset !
676
677 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
678
679         * lyxtext.h:
680         * text.C: fix hfill at end of line, clean up
681
682 2001-12-04  Juergen Vigna  <jug@sad.it>
683
684         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
685         that we force an update of the inset and it's owners if neccessary.
686
687 2001-12-03  Juergen Vigna  <jug@sad.it>
688
689         * text.C (rowLast): simplified code
690
691 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
692
693         * lyxfunc.C: fix show options on timeout
694  
695 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
696
697         * screen.C (topCursorVisible): scroll half a page when the cursor
698         reached top of bottom of screen
699
700 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
701
702         * minibuffer.C: deactivate on loss of focus
703  
704 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
705
706         * vspace.[Ch] (operator!=): add operator. 
707
708 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
709
710         * BufferView_pimpl.C: refuse to open an inset when
711         there's a selection.
712
713 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
714
715         * BufferView_pimpl.C: allow to click on RHS of full row insets
716  
717 2001-11-30  Juergen Vigna  <jug@sad.it>
718
719         * tabular.C (LyXTabular): add a same_id to set the same id's in the
720         insets for undo reasons.
721
722 2001-11-28  André Pönitz <poenitz@gmx.net>
723
724         * vspace.[Ch]: cosmetical changes
725
726 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
727
728         * LyXAction.h:
729         * LyXAction.C:
730         * lyxfunc.h:
731         * lyxfunc.C:
732         * kbmap.h:
733         * kbmap.C:
734         * lyxrc.C:
735         * kbsequence.h:
736         * kbsequence.C: part re-write of old kb code
737
738         * Painter.C:
739         * WorkArea.C: remove Lgb_bug_find_hack
740
741 2001-11-30  José Matos <jamatos@fep.up.pt>
742
743         * buffer.C (makeDocBookFile): add a comment to point a hack.
744         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
745         Fixed a double write of labels.
746         
747 2001-11-28  André Pönitz <poenitz@gmx.net>
748
749         * all the files from the change on 2001/11/26:
750         use lyx::layout_type instead of LyXTextClass::size_type
751         use lyx::textclass_type instead of LyXTextClassList::size_type
752
753 2001-11-29  Juergen Vigna  <jug@sad.it>
754
755         * text.C: added support for paragraph::isFreeSpacing()
756
757         * buffer.C: same as above
758
759         * paragraph.h: inserted isFreeSpacing() function to enable
760         FreeSpacing inside InsetERT.
761
762         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
763         of the paragraph's in the cut/copy buffer to 0!
764
765         * text2.C (removeRow): remove the assert as it can!
766
767         * lyxtext.h: added helper function firstRow returning firstrow and
768         made firstrow private again.
769
770         * BufferView2.C (lockInset): don't relock if we're already locked!
771
772         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
773         the only paragraph.
774         (removeRow): added Assert::(firstrow)
775
776         * debug.C: forgot to add INSETTEXT here.
777
778 2001-11-28  Juergen Vigna  <jug@sad.it>
779
780         * sp_spell.C (initialize): changed error text to more general
781         spellchecker command use (not only ispell!)
782
783         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
784
785         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
786
787 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
788
789         * vspace.C: initialise lyxgluelength on failure
790
791 2001-11-28  Allan Rae  <rae@lyx.org>
792
793         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
794         declaration & definition that looks like a function declaration.
795
796 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
797
798         * BufferView2.C (copy): 
799         (copyEnvironment): do not clear the selection when doing a copy.
800
801         * text.C (paintFirstRow): compilation fix
802
803 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
804
805         * tabular.C (Latex): correct line count when writing latex.
806
807 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
808
809         * paragraph_pimpl.h:
810         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
811           bug a bit
812
813 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
814
815         * text.C: 
816         * LColor.h:
817         * LColor.C: change vfillline->added_space
818  
819         * text.C: add markers and text for added space
820  
821         * vspace.C: fix comment
822
823 2001-11-28  André Pönitz <poenitz@gmx.net>
824
825         * paragraph.C: whitespace changes
826         * all the other files from the change on 2001/11/26:
827         change *::pos_type into lyx::pos_type
828         
829 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
830
831         * buffer.C (parseSingleLyXformat2Token): Set the language to the
832         language of the document when inserting error insets.
833
834 2001-11-26  André Pönitz <poenitz@gmx.net>
835         
836         * BufferView_pimpl.[Ch]:
837         *       CutAndPaste.C:
838         * buffer.[Ch]:
839         * lyxcursor.[Ch]:
840         * lyxfind.C:
841         * lyxfunc.C:
842         * lyxrow.[Ch]:
843         * paragraph.[Ch]:
844         * paragraph_pimpl.[Ch]:
845         * sp_spell.C:
846         * text.C:
847         * text2.C: reduce header dependencies, introduce type for positions
848
849 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
850
851         * <various>: change to use Alert.h 
852          
853 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
854
855         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
856         when encountering an unknown token.
857         (readLyXformat2): Show an error message if there were unknown tokens.
858
859 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
860
861         * BufferView2.C:
862         * BufferView_pimpl.C:
863         * buffer.C:
864         * paragraph.h:
865         * text.C: 
866         * text2.C: use par->isInset()
867          
868 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
869
870         * paragraph_pimpl.h:
871         * paragraph_pimpl.C: cleanup 
872          
873 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
874
875         * text2.C (removeRow): 
876         * text.C (setHeightOfRow): remove useless (and costly) call to
877         getRow. 
878
879 2001-11-20  Allan Rae  <rae@lyx.org>
880
881         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
882         Now need Inset*::checkInsertChar() to return true for appropriate
883         cases so that the characters in the minibuffer will actually be
884         inserted.
885
886 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
887
888         * text.C: change the order of the includes.
889         (workWidth): initialize it at once.
890         (workWidth): make maxw unsigned
891         (setHeightOfRow): remove unused variable (inset)
892         (selectSelectedWord): remove unused variable (inset)
893         (paintRowText): fix drawing of hfill characters, and clean up a bit.
894
895 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
896
897         * lyxserver.C (emergencyCleanup): do not try to close pipes if
898         server is not running.
899         (openConnection): 
900         (closeConnection): add debug info when server is disabled.
901
902         * ColorHandler.C (getGCForeground): send debug message to GUI
903         channel. 
904
905         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
906
907         * kbmap.C (bind): modify because return conventions of
908         kb_sequence::parse have changed.
909
910         * kbsequence.C (parse): only ignore spaces and not any stupid
911         control character. This avoids tests like s[i] <= ' ', which are
912         guaranteed to fail with 8bit characters and signed chars.
913         Change return code to string::npos when there have been no error
914         (0 was a bad idea when error is at first character)
915
916 2001-11-14  José Matos  <jamatos@fep.up.pt>
917
918         * buffer.h:
919         * buffer.C (simpleDocBookOnePar): removed unused argument.
920
921 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
922
923         * text.C (selectNextWordToSpellcheck): do not test explicitely for
924         insets which are part of a word. Paragraph::isLetter takes care of
925         that now. Use Paragraph::isInset to identify insets.
926         (selectSelectedWord): do not test for hyphenation break.
927
928         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
929         that protected spaces are considered as spaces.
930
931         * paragraph.C (isLetter): cleanup the code for ispell extras; use
932         Inset::isLetter. 
933
934 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
935
936         * lyxserver.h:
937         * lyxserver.C: fix it. and small cleanup.
938  
939 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
940
941         * BufferView_pimpl.C: use inline helpers
942  
943         * LaTeXFeatures.h: 
944         * LaTeXFeatures.C: fix typos
945
946         * Spacing.h:
947         * Spacing.C: move spacing_string into class 
948
949         * ToolbarDefaults.C: move stuff into namespace anon
950  
951         * layout.h: update enum
952
953         * lyxfunc.C: use better debug
954
955         * minibuffer.h: fix typo
956  
957         * debug.h:
958         * debug.C:
959         * WorkArea.C: add and use Debug::WORKAREA
960
961         * lyxtext.h:
962         * text.C: 
963         * text2.C: code re-organisation, inline helpers
964
965 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
966
967         * Layout.C: replaced a few cases of std::vector.size() == 0 with
968         std::vector.empty().
969
970 2001-11-09  Allan Rae  <rae@lyx.org>
971
972         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
973         '\n's after tables.  Tabular and ERT inset work now makes this no
974         longer necessary.
975
976 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
977
978         * minibuffer.h:
979         * minibuffer.C: fix crash, improve drop-down completion 
980  
981 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
982
983         * lyxserver.h:
984         * lyxserver.C: invalidate fd's when doing endPipe()
985  
986 2001-11-08  José Matos  <jamatos@fep.up.pt>
987
988         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
989         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
990
991         * paragraph.h:
992         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
993
994 2001-11-07  José Matos  <jamatos@fep.up.pt>
995
996         * buffer.h:
997         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
998         const qualifier.
999
1000         * buffer.C (sgmlOpenTag):
1001         * buffer.C (sgmlCloseTag): removed debug info.
1002
1003         * buffer.h (sgmlOpenTag):
1004         * buffer.h (sgmlCloseTag): made public.
1005
1006 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1007
1008         * buffer.C (saveParamsAsDefaults): 
1009         * lyx_cb.C (MenuLayoutSave): remove
1010
1011         * LyXAction.C (init): 
1012         * commandtags.h: 
1013         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
1014
1015 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1016
1017         * buffer.C (setPaperStuff): removed from here...
1018
1019         * bufferparams.C (setPaperStuff): ... and moved there.  
1020
1021 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
1022
1023         * minibuffer.h:
1024         * minibuffer.C:
1025         * XFormsView.C: add support for drop-down completion
1026  
1027 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
1028
1029         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
1030         commands.
1031
1032 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1033
1034         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
1035         disabled. 
1036
1037 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
1038
1039         * lyx_main.C: change ref to known bugs
1040  
1041 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
1042
1043         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
1044         to work around older babel problems.
1045
1046 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
1047
1048         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
1049
1050 2001-10-24  Juergen Vigna  <jug@sad.it>
1051
1052         * tabular-old.C (ReadOld): below variable changes reflected.
1053
1054         * tabular.[Ch]: added ltType struct for longtable header/footer
1055         defines and changed all instances where they are used. Added
1056         future support for double top/bottom rows.
1057
1058 2001-10-24  José Matos  <jamatos@fep.up.pt>
1059
1060         * buffer.h (docbookHandleCaption):
1061         * buffer.C (docbookHandleCaption): removed unused function.
1062         (makeDocBookFile): moved docbook supported version to v4.1.
1063
1064 2001-10-24  José Matos  <jamatos@fep.up.pt>
1065
1066         * tabular.h:
1067         * tabular.C (docbookRow): new function to export docbook code of a row.
1068         (DocBook): now honors the longtable flags.
1069
1070 2001-10-23  José Matos  <jamatos@fep.up.pt>
1071
1072         * LaTeXFeatures.h:
1073         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
1074         of the lyx defined sgml entities used in a docbook/linuxdoc document.
1075
1076         * buffer.C (makeLinuxDocFile):
1077         (makeDocBookFile): reworked the preamble, more clean, and with
1078         support for lyx defined entities. Changed the document declaration
1079         to be more XML friendly.
1080
1081         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
1082         if we need to output XML that should be done with a filter.
1083         
1084 2001-10-22  Juergen Vigna  <jug@sad.it>
1085
1086         * sp_pspell.h (class PSpell): add alive function needed in the
1087         controller to see if the spellchecker could be started.
1088
1089 2001-10-22  Juergen Vigna  <jug@sad.it>
1090
1091         * buffer.C (insertStringAsLines): modify the font for inserting
1092         chars in certain conditions by calling checkInsertChar(font).
1093
1094 2001-10-19  Juergen Vigna  <jug@sad.it>
1095
1096         * text.C (workWidth): use getRow instead of wrong algorithm.
1097         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
1098
1099 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
1100
1101         * lyxserver.h:
1102         * lyxserver.C:
1103         * lyx_main.h:
1104         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
1105
1106 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1107
1108         * text.C (workWidth): do not search for the exact row when
1109         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
1110         optimization for big documents.
1111
1112 2001-10-18  Juergen Vigna  <jug@sad.it>
1113
1114         * text.C (workWidth): new function with added Inset * parameter.
1115
1116 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1117
1118         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
1119
1120         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
1121         change return type of getColumnNearX.
1122         
1123
1124         * text.C (changeRegionCase): use uppercase/lowercase instead of
1125         toupper/tolower. 
1126         (leftMargin): 
1127         (rightMargin): simplify code by factoring out the uses of
1128         textclasslist.
1129         (labelFill): 
1130         (numberOfHfills): 
1131         (setHeightOfRow): 
1132         (appendParagraph): use Paragraph::size_type
1133
1134 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1135
1136         * vspace.C (asLatexString): add a missing break
1137
1138 2001-10-15  Herbert Voss  <voss@perce.de>
1139
1140         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
1141
1142 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1143
1144         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
1145         is not available.
1146
1147 2001-10-10  André Pönitz <poenitz@gmx.net>
1148
1149         * lyxfunc.C: removed greek_kb_flag.
1150
1151 2001-10-10  Herbert Voss  <voss@perce.de>
1152
1153         * lyx_main.C: delete global string help_lyxdir.
1154
1155 2001-10-09  Herbert Voss  <voss@perce.de>
1156
1157         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
1158
1159         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
1160
1161         * lyx_main.C: added global string help_lyxdir.
1162
1163         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
1164
1165 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
1166
1167         * lyxrc.C (set_font_norm_type): support iso8859-4
1168
1169 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
1170
1171         * LaTeX.C (deplog): add another regex for MikTeX
1172
1173 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
1174
1175         * lyxrc.C (set_font_norm_type): support iso8859-3
1176
1177 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1178
1179         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
1180
1181         * LaTeXFeatures.C: remove special case of french and index
1182
1183         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
1184         before \begin{document}). This solves several incompatibilities.
1185
1186 2001-10-03  Garst Reese  <reese@isn.net>
1187
1188         * lyx_cb.C: change CheckTex error msg.
1189
1190 2001-10-03  José Matos  <jamatos@fep.up.pt>
1191
1192         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
1193
1194 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1195
1196         * .cvsignore: update
1197
1198         * lyx_main.C (commandLineVersionInfo): use new style version info.
1199
1200         * buffer.C (writeFile):
1201         (makeLaTeXFile):
1202         (makeLinuxDocFile):
1203         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
1204
1205         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
1206
1207         * version.h: update to use stuff in version.C
1208
1209         * version.C.in: new file. Contains version information determined
1210         at compile time. This is a merging of version.h and
1211         version_info.h.in.
1212
1213 2001-10-03  Juergen Vigna  <jug@sad.it>
1214
1215         * BufferView_pimpl.C (update): don't change "dirty" status in
1216         updateInset call.
1217
1218 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
1219
1220         * WorkArea.C (c-tor): re-position version string slightly.
1221
1222 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
1223
1224         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
1225         revert to previous code.
1226
1227         WorkArea.[Ch]: (show, destroySplash): methods removed.
1228
1229         WorkArea.C: rework code so that it's an amalgam of the codes before and
1230         after the splash screen was moved to WorkArea.
1231
1232 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1233
1234         * lyxrc.C (read): 
1235         * vspace.C (inPixels): 
1236         (lyx_advance): 
1237         * kbmap.C (bind): 
1238         * buffer.C (insertStringAsLines): 
1239         (asciiParagraph): fix types to be large enough
1240
1241         * lyxlex_pimpl.h: change member status from short to int
1242
1243         * layout.h: fix type of endlabeltype
1244
1245         * kbmap.C (bind): 
1246         * kbsequence.C (parse): change return type to string::size_type
1247
1248         * LaTeX.C (updateBibtexDependencies): comment out unneeded
1249         variable
1250
1251         * Bullet.C (bulletSize): 
1252         (bulletEntry): do not use short ints as parameters
1253
1254         * BufferView2.C (insertLyXFile): change a char to an int.
1255
1256         * WorkArea.C (WorkArea): remove unneeded floats in computation
1257
1258 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
1259
1260         * buffer.C (asciiParagraph): Treat '\\' as other chars.
1261
1262         * paragraph.C (asString): Do not ignore newline/hfill chars when
1263         copying to the clipboard.
1264
1265 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
1266
1267         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
1268         after a multi-line inset.
1269
1270 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
1271
1272         * paragraph.C (validate): Set NeedLyXFootnoteCode
1273
1274 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
1275
1276         * lyxfont.C (LyXSizeNames): changed increase-error to increase
1277         and decrease-error to decrease.
1278
1279 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1280
1281         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
1282         it more readable (should be equivalent)
1283
1284 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
1285
1286         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
1287
1288 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1289
1290         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
1291         of a cursor (row, etc.) after a character has been deleted
1292         (deleteEmptyParagraphMechanism): call the method above on _all_
1293         cursors held by the LyXText when a double space has been
1294         detected/deleted.
1295  
1296 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
1297
1298         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
1299         pixmap.
1300         (resizeCurrentBuff): remove code to destroy the old splash dialog.
1301
1302         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
1303         background. Use greyOut() and the new show() methods to toggle between
1304         the foreground and background. Add code to remove the splash after
1305         its initial showing.
1306
1307         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
1308         (create_forms): no longer call Dialogs::showSplash.
1309
1310 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1311
1312         * .cvsignore: add version_info.h
1313
1314 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1315
1316         * version_info.h.in: new file
1317
1318         * Makefile.am: add version_info.h.in
1319
1320         * lyx_main.C (commandLineVersionInfo): use version_info defined in
1321         version_info.h instead of VERSION_INFO
1322
1323 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
1324
1325         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
1326         The ERT inset now returns string().
1327
1328 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
1329
1330         * lyxtext.h, text.C (selectNextWord): renamed as
1331         selectNextWordToSpellcheck.
1332
1333         * text.C (selectNextWordToSpellcheck): Modified to not select
1334         words inside an ERT inset.
1335
1336 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1337
1338         * lyx_cb.C (MenuLayoutSave): change a bit the question
1339
1340         * sp_base.h: include <sys/types.h>
1341
1342 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
1343
1344         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
1345
1346 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
1347
1348         * several files: fix typos in user-visible strings
1349
1350 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1351
1352         * text2.C (pasteSelection): do not set the selection, since it
1353         will be cleared later. Actually, the intent was to fix the way the
1354         selection was set, but I figured rmoving the code was just as good.
1355
1356 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
1357
1358         * FontLoader.C (available): Check if font is available without
1359         loading the font.
1360
1361 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1362
1363         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
1364
1365 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
1366
1367         * lyxrc.[Ch]: added display_graphics variable and associated code.
1368
1369 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1370
1371         * bufferparams.C (hasClassDefaults): new method. Returns true if
1372         the buffer parameters correspond to known class defaults
1373
1374 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
1375
1376         * XFormsView.C (show): set minimum size to the main window.
1377
1378 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1379
1380         * text2.C (copySelection): 
1381         (cutSelection): 
1382         * lyxfind.C (LyXReplace): 
1383         * BufferView_pimpl.C (Dispatch): pass the correct flag to
1384         LyXText::selectionAsString. 
1385
1386         * paragraph.C (asString): add "label" argument to the second form
1387
1388         * text2.C (selectionAsString): add "label" argument and pass it to
1389         Paragraph::asString. 
1390
1391 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1392
1393         * lyx_main.C (commandLineHelp): remove version information
1394
1395 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
1396
1397         * lyx_main.C: add -version commandline option
1398
1399 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1400
1401         * paragraph.h: make the optional constructor arg required instead.
1402         some modifications to other files because of this.
1403
1404         * minibuffer.C (C_MiniBuffer_peek_event): make it static
1405
1406         * lyxserver.C (C_LyXComm_callback): make it static
1407
1408         * lyx_main.C (error_handler): make it static
1409
1410         * lyx_gui.C (LyX_XErrHandler): make it static
1411
1412         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
1413
1414         * WorkArea.C: make the extern "C" methods static.
1415
1416         * Makefile.am (lyx_LDADD): simplify
1417
1418 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
1419
1420         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
1421         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
1422
1423         * LyXAction.C (init):
1424         * lyxfunc.C (dispatch): associated code removal.
1425
1426 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1427
1428         * lyxfont.h (isSymbolFont): shut off warning
1429
1430         * text.C (setHeightOfRow):
1431         (getVisibleRow): fix crash with empty paragraphs which have a
1432         bottom line
1433
1434 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
1435
1436         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
1437         code.
1438
1439 2001-09-04  José Matos  <jamatos@fep.up.pt>
1440         * buffer.C
1441         * buffer.h
1442         * tabular.C (docbook): rename docBook method to docbook.
1443
1444 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
1445
1446         * Makefile.am: add dependencies to main.o.
1447
1448 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
1449
1450         * FontLoader.C (available): Return false if !lyxrc.use_gui
1451
1452 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
1453
1454         * FontInfo.C (query):
1455         * converter.C (view):
1456         * importer.C (Import):
1457         * exporter.C (Export): Can not -> cannot.
1458
1459 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
1460
1461         * BufferView_pimpl.C: allow to create index inset even if
1462           string is empty
1463  
1464 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
1465
1466         * buffer.C (getLists): replace boost::tie code with an explicit pair
1467         as boost::tie can break some compilers.
1468
1469         * iterators.h: Added a std:: declaration to the return type of
1470         ParIterator::size.
1471
1472 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
1473
1474         * lyxrc.C: add help for view_dvi_paper_option, default to safe
1475           case.
1476  
1477 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
1478
1479         * iterators.[Ch]: New files. Provide paragraph iterators.
1480
1481         * buffer.C (changeLanguage): Use paragraph iterators.
1482         (isMultiLingual): ditto 
1483
1484         * BufferView2.C (ChangeInsets): Use paragraph iterators.
1485
1486 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
1487
1488         * FontLoader.C: Support for cmr font.
1489
1490 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
1491
1492         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
1493         (available): New method.
1494
1495         * FontInfo.C (getFontname): Use scalable fonts even when
1496         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
1497         found.
1498
1499 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
1500
1501         * converter.C (Formats::view): reverted! Incorrect fix.
1502
1503 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
1504
1505         * converter.C (Formats::view): only output the -paper option
1506         if the dvi viewer is xdvi, thereby fixing bug #233429.
1507
1508 2001-08-23  Herbert Voss  <voss@perce>
1509
1510         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
1511
1512 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
1513
1514         * Spacing.h (Spacing): Set space to Default on in the default
1515         constructor.
1516
1517 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1518
1519         * vc-backend.h (RCS::versionString): add RCS to version 
1520         (CVS::versionString): add CVS to version 
1521
1522         * vc-backend.C (scanMaster): do not add CVS to version.
1523         (scanMaster): do not add RCS to version
1524
1525         * lyxvc.C (versionString): new method
1526
1527         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
1528
1529 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1530
1531         * Spacing.C (set): initialize fval
1532
1533 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
1534
1535         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
1536         " or \.
1537
1538 2001-08-16  Juergen Vigna  <jug@sad.it>
1539
1540         * lyxfunc.C (dispatch): implemented the new FINISHED states.
1541
1542 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
1543
1544         * BufferView_pimpl.C: 
1545         * figureForm.C:
1546         * lyxtext.h:
1547         * text2.C: setParagraph takes linespacing now
1548  
1549 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
1550
1551         * LyxAction.C: add internal LFUN_CITATION_INSERT
1552
1553         * LyXView.C: actually apply fix
1554
1555         * bufferlist.C: fix open non-existent file
1556  
1557         * lyxfind.C: fix indentation
1558  
1559         * lyxfunc.C: remove unneeded assert, fix typo
1560  
1561 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
1562
1563         * MenuBackend.C: use "Floatname List"
1564
1565 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
1566
1567         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
1568         when converting LaTeX layout to insetERT.
1569         Generate a non-collapsed float when reading old float
1570
1571 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
1572
1573         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
1574         ERT insets.
1575
1576 2001-08-13  Juergen Vigna  <jug@sad.it>
1577
1578         * text.C (fill): return 0 instead of 20 as this seems to be the more
1579         correct value.
1580
1581 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
1582
1583         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
1584         lyxrc.font_norm.
1585
1586 2001-08-13  Juergen Vigna  <jug@sad.it>
1587
1588         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
1589         casesensitive off.
1590         (SearchBackward): comment out the unlocking of the inset_owner this
1591         should not be needed!
1592
1593 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
1594
1595         * Many files: Remove inherit_language, and add latex_language
1596
1597         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
1598         collapsible insets.
1599
1600 2001-08-10  Juergen Vigna  <jug@sad.it>
1601
1602         * text.C (prepareToPrint): fixed hfill-width in draw!
1603
1604         * BufferView2.C (selectLastWord): save the selection cursor as this
1605         now is cleared in the function LyXText::clearSelection!
1606
1607 2001-08-08  Juergen Vigna  <jug@sad.it>
1608
1609         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
1610         BACKSPACE type functions.
1611
1612         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
1613         is only cutted from the document but not put in the cut-buffer, where
1614         still the old stuff should be.
1615
1616         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
1617
1618         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
1619
1620         * tabular.C (SetWidthOfCell): fixed special case where the width
1621         was not updated!
1622         (LeftLine): handle '|' in align_special.
1623         (RightLine): ditto
1624         (LeftAlreadyDrawed): ditto
1625         (SetWidthOfCell): ditto
1626
1627 2001-08-07  Juergen Vigna  <jug@sad.it>
1628
1629         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
1630
1631 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1632
1633         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
1634         * lyxlex.[hC]: ditto
1635
1636 2001-08-06  Juergen Vigna  <jug@sad.it>
1637
1638         * text.C (getVisibleRow): fix up row clearing a bit.
1639
1640 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1641
1642         * minibuffer.C: make sure the X server sees the changes in the input.
1643
1644 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1645
1646         * paragraph.C (getFont): split into...
1647         (getLabelFont): this
1648         (getLayoutFont): and this
1649         * paragraph_pimpl.C (realizeFont): calling this
1650
1651         * text2.C (getFont): split into...
1652         (getLayoutFont): this
1653         (getLabelFont): and this
1654         (realizeFont): all three calling this
1655
1656         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
1657         files where used.
1658
1659 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1660
1661         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
1662
1663 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
1664
1665         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
1666         layouts from the Quote inset insertion.
1667
1668 2001-08-03  Juergen Vigna  <jug@sad.it>
1669
1670         * BufferView_pimpl.C (update): do the fitCursor only at the end!
1671
1672         * screen.C (drawFromTo): don't call fitcursor here and do the loop
1673         only if status not is already CHANGED_IN_DRAW (second level).
1674
1675         * text.C (draw): don't set the need_break_row when inside an
1676         InsetText LyXText.
1677
1678 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1679
1680         * buffer.C (parseSingleLyXformat2Token): handle more latex
1681         conversion cases.
1682
1683         * bufferview_funcs.[hC]: change function names to
1684         begin with small char, adjust other files.
1685
1686 2001-08-02  André Pönitz <poenitz@gmx.net>
1687
1688         * lyxfunc.C:
1689         BufferView_pimpl.C: remove broken special code for math-greek
1690
1691 2001-08-02  Juergen Vigna  <jug@sad.it>
1692
1693         * BufferView_pimpl.C (update): redone this function so that we
1694         update the text again if there was a CHANGE_IN_DRAW.
1695
1696         * screen.C (cursorToggle): removed LyXText parameter and recoded.
1697         (drawFromTo): added a new internal bool which is used by draw() and
1698         redraw() function.
1699         (general): some cursor drawing problems fixed.
1700
1701 2001-08-01  Juergen Vigna  <jug@sad.it>
1702
1703         * lyxfind.C (LyXFind): fixed
1704         (SearchForward): ditto
1705         (SearchBackward): ditto
1706
1707         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
1708         spurius drawing of the cursor in the main area.
1709
1710         * text2.C (status): small fix which could lead to a segfault!
1711         (clearSelection): remove unneeded BufferView param.
1712
1713 2001-08-01  André Pönitz <poenitz@gmx.net>
1714
1715         * lyxfunc.C: small change due to changed mathed interface
1716
1717 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1718
1719         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
1720
1721 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
1722  
1723         * lyxfunc.c: fail gracefully if file doesn't exist 
1724  
1725         * LyXSendto.C:
1726         * buffer.C:
1727         * lyxfunc.C:
1728         * BufferView_pimpl.C: IsDirWriteable() proto changed 
1729  
1730         * LyXView.C: fix updateWindowTitle() to store the last title
1731
1732 2001-07-31  Juergen Vigna  <jug@sad.it>
1733
1734         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
1735         the font (wrong since using of Paragraph::highestFontInRange).
1736
1737         * paragraph.C (highestFontInRange): added a default_size parameter.
1738
1739         * text.C (getVisibleRow): minor clear row changes (still not perfect).
1740         (setHeightOfRow): reformat
1741
1742 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1743
1744         * converter.[hC] + affected files: move to (inital-char)lowercase
1745         function names.
1746
1747         * ParagraphParameters.C (ParagraphParameters): remove commented code
1748
1749         * PainterBase.[Ch]: remove commented code
1750
1751         * LaTeXFeatures.h: add "bool floats" for float.sty
1752
1753         * LaTeXFeatures.C (LaTeXFeatures): init floats
1754         (require): handle float
1755         (getPackages): do it with floats
1756
1757 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1758
1759         * BufferView_pimpl.C (Dispatch): improve handling of
1760         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
1761
1762         * commandtags.h: #include lyxfont.h here temporarily to avoid
1763         keybinding bug.
1764
1765         * bufferlist.h: include LString.h here.
1766
1767 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1768
1769         * text2.C (getStringToIndex): new method.
1770
1771 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
1772
1773         * *: Reduced header file dependencies all over.
1774
1775 2001-07-30  Baruch Even  <baruch@lyx.org>
1776
1777         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
1778
1779 2001-07-29  Baruch Even  <baruch@lyx.org>
1780
1781         * buffer.C (readInset): Changed GRAPHICS to Graphics.
1782
1783 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1784
1785         * ParameterStruct.h (endif): add a default constructor to make
1786         sure that all variables is initialized.
1787
1788         * ParagraphParameters.C (ParagraphParameters): adjust
1789
1790 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1791
1792         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
1793         index; also, check that there is something to index, and that it
1794         does not span over several paragraphs.
1795         (doubleClick): use WHOLE_WORD_STRICT for double click.
1796
1797         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
1798
1799         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
1800         scheme.
1801
1802 2001-07-26  Baruch Even  <baruch@lyx.org>
1803
1804         * buffer.C (readInset): Changed to call up InsetGraphics when reading
1805         an InsetFig figure, backwards compatible reading of old figure code.
1806
1807 2001-07-27  Juergen Vigna  <jug@sad.it>
1808
1809         * text2.C: font.realize function adaption.
1810
1811         * text.C (draw): add a warnings lyxerr text if needed.
1812
1813         * layout.C: font.realize function adaption.
1814
1815         * language.C: add inherit_language and implement it's handlings
1816
1817         * bufferview_funcs.C (StyleReset): remove language parameter from
1818         font creation (should be language_inherit now).
1819
1820         * bufferparams.C (writeFile): handle ignore_language.
1821
1822         * paragraph.C (getFontSettings): the language has to be resolved
1823         otherwise we have problems in LyXFont!
1824
1825         * lyxfont.C (lyxWriteChanges): added document_language parameter
1826         (update): removed unneeded language parameter
1827
1828         * paragraph.C (validate): fixed wrong output of color-package when
1829         using interface colors for certain fonts in certain environments,
1830         which should not seen as that on the final output.
1831
1832 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
1833
1834         * BufferView_pimpl.C:
1835         * Thesaurus.h:
1836         * Thesaurus.C:
1837         * Makefile.am:
1838         * commandtags.h:
1839         * LyXAction.C: add thesaurus support
1840
1841         * lyxfind.h:
1842         * lyxfind.C: add "once" parameter, for thesaurus, to not
1843           move to the next match
1844   
1845 2001-07-26  Juergen Vigna  <jug@sad.it>
1846
1847         * lyxfont.C (realize): honor ignore_language too!
1848         (resolved): ditto.
1849
1850         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
1851
1852         * text.C (draw): one place more for ignore_language to not draw
1853         itself!
1854
1855 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
1856
1857         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
1858
1859 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1860
1861         * buffer.C (parseSingleLyXformat2Token): a more general fix for
1862         the minipage conversion problem.
1863
1864 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1865
1866         * buffer.C (parseSingleLyXformat2Token): check minipage if we
1867         insert an inset.
1868
1869 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1870
1871         * BufferView.h: don't forward declare WorkArea
1872
1873         * BufferView.C: don't include WorkArea.h
1874
1875 2001-07-25  André Pönitz <poenitz@gmx.net>
1876
1877         * commandtags.h:
1878         * LyXAction.C:
1879         * lyxfunc.C:  new LFUN 'math-space'
1880
1881         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
1882
1883 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1884
1885         * text2.C (toggleInset): call open/close
1886
1887 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1888
1889         * lyxfunc.C (dispatch): add debug for the disabled case
1890
1891         * font.C (buttonText): make similar to rectText
1892
1893         * buffer.C (readInset): comment out parsing of insetlist and
1894         insttheorem 
1895
1896         * PainterBase.C (rectText): small correction
1897
1898         * BufferView_pimpl.C: comment out insettheorem and insetlist
1899         * LyXAction.C: ditto
1900         * commandtags.h: ditto
1901
1902 2001-07-24  Juergen Vigna  <jug@sad.it>
1903
1904         * text.C (draw): honor the ignore_language.
1905
1906         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
1907
1908 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1909
1910         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
1911         char inset.
1912
1913 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1914
1915         * lyxtext.h: remove unused (and unimplemented) methods
1916
1917 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1918
1919         * text.C (getVisibleRow): honor background color
1920
1921         * PainterBase.h:
1922         * Painter.h: remove default color argument for fillRectangle
1923
1924         * text.C (backgroundColor): new method
1925
1926 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1927
1928         * text.C (getVisibleRow): adjust
1929
1930         * font.[Ch] (rectText): new method, metrics
1931         (buttonText): new method, metrics
1932
1933         * PainterBase.[hC]: make rectText and buttonText always draw and take
1934         fewer paramteres.
1935
1936 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1937
1938         * ToolbarDefaults.C (read): 
1939         * MenuBackend.C (read): allow escaping in all strings
1940
1941         * BufferView_pimpl.C (insertAndEditInset): new method.
1942         (Dispatch): use insertAndEditInset whenever appropriate.
1943
1944         * BufferView_pimpl.C (insertNote): removed
1945
1946         * BufferView_pimpl.C (smartQuote): new method, moved from
1947         BufferView; if an insetquote cannot be inserted, insert a '"'
1948         character instead.
1949
1950         * BufferView2.C: remove insertCorrectQuote();
1951
1952         * lyxfunc.C (getStatus): Add support for all remaingin
1953         inset-insert lfuns.
1954
1955         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
1956
1957         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
1958         command (necessary to pass " as parameter of self-insert.
1959
1960         * text.C (selectWordWhenUnderCursor):
1961         (selectWord): add word_location parameter
1962         (selectWordWhenUnderCursor): same + remove special code for word
1963         boundary.
1964         (selectNextWord): use kind() to guess type of insetspecialchar,
1965         not latex().
1966         
1967         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
1968         (insertErtContents): create ert insets as collapsed.
1969         (readInset): better compatibility code for Info inset.
1970
1971 2001-07-20  Juergen Vigna  <jug@sad.it>
1972
1973         * lyxfunc.C (dispatch): use always LyXFind now!
1974
1975         * text2.C (init): add a reinit flag so that the LyXText can be
1976         reinited instead of deleted and reallocated (used in InsetText).
1977
1978         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
1979
1980         * text.C: ditto
1981
1982         * text2.C: ditto
1983
1984 2001-07-18  Juergen Vigna  <jug@sad.it>
1985
1986         * text.C (selectNextWord): handle insets inside inset by calling
1987         always the bv->text functions so that we can go up the_locking_inset!
1988
1989         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
1990         in strange locations when inside an inset!
1991
1992         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
1993         handling to include insets.
1994
1995         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
1996
1997 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1998
1999         * LyXAction.C (init): 
2000         * commandtags.h: 
2001         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
2002         LIGATURE_BREAK, since the name is so stupid.
2003
2004 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
2005
2006         * buffer.C (readInset): enable reading of new InsetNotes as well as old
2007         InsetInfos.
2008
2009         * FontLoader.C: remove FORMS_H_LOCATION cruft.
2010
2011         * sp_form.[Ch]: remove.
2012
2013         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
2014
2015         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
2016         InsetInfo.
2017
2018         * src/buffer.C (readInset): ditto.
2019
2020 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2021
2022         * BufferView_pimpl.C (specialChar): new method. Obsoletes
2023         menuSeparator(), endOfSentenceDot(), ldots() and
2024         hyphenationPoint(), which are therefore removed.
2025         (Dispatch): handle LFUN_HYPHENATION_BREAK.
2026
2027         * LyXAction.C (init): 
2028         * commandtags.h: add LFUN_HYPHENATION_BREAK.
2029
2030         * paragraph.C (getWord): removed.
2031
2032         * BufferView_pimpl.C (Dispatch): use last word or selection for
2033         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
2034
2035         * lyx_main.C (queryUserLyXDir): do not ask before creating
2036         user_dir, except if it has been named explicitely.
2037
2038 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
2039
2040         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
2041         a document of zero size.
2042
2043 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
2044
2045         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
2046         approriately in the c-tor and in require().
2047         (getPackages): output the appropriate LaTeX for natbib support.
2048
2049         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
2050         variables "use_natbib" and "use_numerical_citations" when reading the
2051         LyX file.
2052         (readInset): read the various natbib cite commands.
2053         (validate): white-space change.
2054
2055         * bufferparams.[Ch]: new variables "bool use_natbib" and
2056         "bool use_numerical_citations".
2057         (writeFile): output them in the LyX file.
2058
2059 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2060
2061         * lyxfunc.C (getStatus): add support for all the inset insertion
2062         commands.
2063
2064         * text2.C (insertInset): 
2065         * paragraph.C (insetAllowed): 
2066         * BufferView_pimpl.C (insertInset): update to take in account the
2067         renaming of insertInsetAllowed
2068
2069         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
2070
2071         * text2.C (getInset): new method. returns inset at cursor position. 
2072
2073         * BufferView_pimpl.C (Dispatch): changes because of this.
2074
2075         * LyXAction.C (init): rename open-stuff to inset-toggle.
2076
2077         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
2078
2079         * text2.C (toggleInset): renamed from openStuff; use
2080         Inset::open().
2081
2082 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
2083
2084         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
2085
2086         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
2087
2088 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
2089
2090         * buffer.C (readLyXformat2): Add filename to the error dialog
2091
2092 2001-07-18  Juergen Vigna  <jug@sad.it>
2093
2094         * tabular.C (GetCellNumber): put an assert here instead of the check!
2095
2096 2001-07-17  Juergen Vigna  <jug@sad.it>
2097
2098         * BufferView_pimpl.C (toggleSelection): adapted too.
2099
2100         * text.C (selectNextWord): adapted for use with insets.
2101         (selectSelectedWord): ditto
2102
2103 2001-07-17  Juergen Vigna  <jug@sad.it>
2104
2105         * sp_spell.C (PSpell): fix initialitation order.
2106
2107 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2108
2109         * paragraph.C: spacing
2110
2111 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
2112
2113         * sp_spell.C: repair language selection for pspell
2114
2115 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2116
2117         * lyxfunc.h: change more methods to begin with lower char.
2118
2119 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
2120
2121         * buffer.C (parseSingleLyXformat2Token): Generate error insets
2122         for unknown layouts.
2123
2124 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
2125
2126         * buffer.C (readLyXformat2): Generate an error dialog if there are
2127         unknown layouts.
2128
2129 2001-07-16  Juergen Vigna  <jug@sad.it>
2130
2131         * sp_spell.C: always compile ISpell part.
2132
2133         * lyxrc.C: added use_pspell entry and it's handling.
2134
2135 2001-07-13  Juergen Vigna  <jug@sad.it>
2136
2137         * sp_spell.C: removed double includes.
2138
2139 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
2140
2141         Consistent use of Lsstream.h:
2142         * Lsstream.h: added using std::stringstream for consistencies sake.
2143
2144         * buffer.C: removed using std::stringstream
2145
2146         * lyxfont.C (stateText):
2147         * paragraph.C (asString):
2148         * text.C (selectNextWord, selectSelectedWord):
2149         * text2.C (setCounter):
2150         * vspace.C (asString, asLatexString):
2151         std::ostringstream -> ostringstream.
2152
2153 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
2154
2155         * LyXAction.C: add LFUN_HELP_ABOUTLYX
2156         * commandtags.h: add LFUN_HELP_ABOUTLYX
2157         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
2158
2159 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
2160
2161         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
2162         cursorToggle()
2163         * lyx_gui_misc.C: remove spellchecker
2164         * lyxfunc.C: showSpellchecker
2165         * sp_base.h: added
2166         * sp_ispell.h: added
2167         * sp_pspell.h: added
2168         * sp_spell.C: added
2169         * sp_form.[Ch]: removed
2170         * spellchecker.[Ch]: removed
2171
2172 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
2173
2174         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
2175         is set.
2176         (simpleTeXSpecialChars): Simply print the input character without
2177         any special translation if pass_thru is set.
2178
2179         * layout.h: Added bool pass_thru to layout class for being able to
2180         implement pass through of a paragraph for Literate Programming.
2181         
2182         * layout.C: add LT_PASS_THRU to LayoutTags enum.
2183         * layout.C (LyXLayout): set pass_thru to flase in constructor.
2184         * layout.C (Read): add "passthru" to list of layout tags and add
2185         code to set the pass_thru boolean when it is read.
2186
2187 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2188
2189         * trans_decl.h: remove allowed from KmodInfo
2190
2191         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
2192         remove allowed code 
2193         (Load): adjust
2194
2195         * paragraph_pimpl.C (erase): use boost::prior
2196
2197         * Painter.C (text): use data() instead of c_str() when length is
2198         also provided.
2199         * WorkArea.C (putClipboard): ditto
2200         * font.h (width): ditto
2201
2202         * BufferView2.C: use it-> instead of (*it). for iterators
2203         * texrow.C: ditto
2204         * paragraph_pimpl.C: ditto
2205         * paragraph.C: ditto
2206         * minibuffer.C: ditto
2207         * language.C: ditto
2208         * kbmap.C: ditto
2209         * encoding.C: ditto
2210         * counters.C: ditto
2211         * converter.C: ditto
2212         * chset.C: ditto
2213         * Variables.C: ditto
2214         * TextCache.C: ditto
2215         * MenuBackend.C: ditto
2216         * LyXAction.C: ditto
2217         * LColor.C: ditto
2218         * FloatList.C: ditto
2219         * DepTable.C: ditto
2220         * ColorHandler.C (LyXColorHandler): ditto
2221
2222 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2223
2224         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
2225
2226         * text2.C (openStuff): reintroduce this method (which had been
2227         nuked in NEW_INSETS frenzy).
2228
2229         * lyxfunc.C (Dispatch): when an action has not been handled, use
2230         its name in the error message, not its number.
2231
2232         * paragraph.C (inInset): change method name to begin with lowercase.
2233
2234         * undo_funcs.C:
2235         * text2.C: updates because of this.
2236
2237 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2238
2239         * ToolbarDefaults.C (add): add spaces in error message
2240
2241 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2242
2243         * buffer.C (readLyXformat2): initialize the ert comp. variables.
2244         (readLyXformat2): rename return_par to first_par, use lyxlex's
2245         pushToken and remove the manual push handling.
2246         (parseSingleLyXformat2Token): add another ert comp. variable:
2247         in_tabular, rename return_par to first_par. handle newlines better
2248
2249 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2250
2251         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
2252
2253 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2254
2255         * text2.C (getParFromID): removed
2256
2257         * buffer.C (getParFromID): new method moved form lyxtext.
2258         * BufferView2.C (insertErrors): adjust
2259         (setCursorFromRow): adjust
2260         * BufferView_pimpl.C (restorePosition): adjust
2261         * lyxfunc.C (Dispatch): adjust
2262         * undo_funcs.C (textUndo): adjust
2263         (textRedo): adjust
2264         (textHandleUndo): adjust
2265         (textHandleUndo): adjust
2266
2267 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2268
2269         * buffer.C: up' the LYX_FORMAT
2270
2271         * lyxfont.h: turn NO_LATEX on as default
2272
2273         * buffer.C (insertErtContents): new methods of tex style compability.
2274         (parseSingleLyXformat2Token): use it several places.
2275         * tabular.C (OldFormatRead): and here
2276
2277 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2278
2279         * text2.C: remove some commented code.
2280         reindent file.
2281
2282         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
2283         * trans.C: changes because of the above.
2284
2285 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
2286
2287         * text2.C (setCounter): Fix counters bug with bibliography layout.
2288
2289 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2290
2291         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
2292         own member functions
2293         (simpleTeXSpecialChars): ditto
2294
2295 2001-07-06  Juergen Vigna  <jug@sad.it>
2296
2297         * a lot of files: changed the access to LyXText::status and the
2298         call of undo-functions.
2299         
2300         * undo.[Ch]: added a inset_id to the undo informations.
2301
2302         * undo_funcs.[Ch]: added and moved here all undo functions.
2303
2304         * lyxtext.h: give the status enum a weight, made status_ a private
2305         variable and made accessor functions for it, removed the whole bunch
2306         of undo-functions as they are now in their own file, make some
2307         functions publically available. Added function ownerParagraph with
2308         int parameter.
2309
2310         * paragraph.[Ch]: added "bool same_ids" to the constructor,
2311         made InInset() a const function, added getParFromID() function.
2312
2313         * buffer.[Ch]: added const version for inset_iterator functions,
2314         added getInsetFromID() function.
2315
2316         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
2317         changed undo functions for new version.
2318
2319 2001-07-05  Juergen Vigna  <jug@sad.it>
2320
2321         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
2322         unknow mechanism does not call the proper constructor but only this
2323         one also if I request the other!?
2324
2325 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2326
2327         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
2328
2329         * text2.C (LyXText): use initialization lists.
2330
2331         * lyxtext.h (Selection): initialize set_ and mark_
2332         (init): remove method
2333
2334 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
2335
2336         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
2337
2338 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2339
2340         * screen.[Ch]: change method names to begin with lowercase 
2341
2342         * BufferView_pimpl.C (updateScrollbar): simplify further and
2343         hopefully make it a bit faster.
2344
2345 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2346
2347         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
2348         calling directly xforms functions.
2349
2350         * Painter.C (Painter): 
2351         * lyx_cb.C (MenuWrite): 
2352         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
2353         fl_display.
2354
2355         * lyx_gui.C: remove bogus guiruntime extern declaration.
2356
2357 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2358
2359         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
2360         in NEW_INSETS
2361         (redoDrawingOfParagraph): ditto
2362         (redoParagraphs): ditto
2363         (cutSelection): don't create a object for CutAndPaste use the
2364         static method directly
2365         (pasteSelection): ditto
2366
2367         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
2368         LyXview (+ rename)
2369
2370 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2371
2372         * modifications to some other files because of this.
2373         
2374         * Makefile.am (lyx_SOURCES): add XFormsView
2375
2376         * XFormsView.[Ch]: new files
2377
2378         * LyXView.[Ch]: make LyXView a base class for the gui handling for
2379         the main window. Move the gui dependent stuff to XFormsView
2380
2381 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2382
2383         * tabular.C (GetCellInset): update cur_cell also in the row/col
2384         version of this function.
2385
2386         * lyxfunc.C: no need to include figure_form.h here.
2387
2388         * FontLoader.h: 
2389         * lyxfunc.h: 
2390         * lyxscreen.h: 
2391         * text2.C: 
2392         * lyxvc.C: no need to include forms.h here.
2393
2394 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2395
2396         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
2397
2398         * lyxfunc.C (Dispatch): 
2399         * Spacing.C (set): 
2400         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
2401         constructor argument.
2402
2403 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2404
2405         * paragraph.C (Paragraph): dont't clear, and just set layout.
2406         (makeSameLayout): use params's copy contructor.
2407
2408         * ParagraphParameters.[Ch] (makeSame): delete method
2409
2410 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
2411
2412         * Variables.[Ch]: fix indentation, rename set to isSet
2413
2414 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2415
2416         * lyxfunc.C (Dispatch): fix typo
2417
2418 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2419
2420         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
2421         upper_bound. 
2422
2423         * bufferlist.C: include assert.h for emergencyWrite().
2424
2425 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
2426
2427         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
2428           give up at last (bug #425202) !
2429  
2430 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
2431
2432         * lyx_gui_misc.C:
2433         * sp_form.h:
2434         * sp_form.C:
2435         * spellchecker.h:
2436         * spellchecker.C: strip spellchecker options and bring up
2437           preferences tab instead
2438          
2439 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2440
2441         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
2442         the istringstream constructor
2443
2444 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2445
2446         * paragraph.C (getLayout): fix return value
2447
2448         * paragraph.h: do not declare getLayout as inline.
2449
2450         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
2451
2452 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2453
2454         * lyxcursor.h (operator<): new func
2455         (operator>): new func
2456         (operator>=): new func
2457         (operator<=): new func
2458
2459         * text.C (changeCase): use selection.start and selection.end
2460         (changeRegionCase): require from to be <= to. Require par to be a
2461         valid paragraph.
2462
2463         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
2464
2465 2001-06-27  Juergen Vigna  <jug@sad.it>
2466
2467         * text.C (cursorLeftOneWord): changed to return the cursor and added
2468         overlay with BufferView * parameter which calls this one.
2469         (getWord): added
2470         (selectWord): use new getWord function.
2471         (changeCase): renamed from changeWordCase as and extended to work
2472         also on selections.
2473
2474         * lyxtext.h: added enum word_location
2475
2476         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
2477         changeCase as this operates now also on selections.
2478
2479 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
2480
2481         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
2482
2483         * many files: send debug output to Debug::INFO instead of
2484         Debug::ANY. 
2485
2486         * converter.C (View): 
2487         (Convert): 
2488         (Move): send debug output to Debug::FILES instead of console.
2489
2490 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
2491
2492         * lyxfunc.C (getStatus): use func_status
2493
2494         * func_status.h: new header, describing the results of
2495         LyXFunc::getStatus;
2496
2497         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
2498         LFUN_MATH_HALIGN.
2499
2500 2001-06-25  The LyX Project  <jug@sad.it>
2501
2502         * buffer.C (sgmlOpenTag):
2503         (sgmlCloseTag):
2504         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
2505
2506 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2507
2508         * text2.C: remove some dead code
2509
2510         * tabular.C (GetCellInset): store the last cell checked (gotten)
2511
2512         * tabular.h: add the helper for the speedup
2513
2514         * lyxtext.h: remove some dead code
2515
2516 2001-06-26  The LyX Project  <Asger>
2517
2518         * paragraph.C: Change export to LaTeX of alignment to
2519         \begin{center} and family for better roundtrip work with reLyX.
2520
2521         * Tune the math drawing a bit.
2522
2523 2001-06-25  The LyX Project  <Asger>
2524
2525         * LColor.C (LColor): New color for math background. New color
2526         for buttons.
2527
2528 2001-06-25  The LyX Project  <jug@sad.it>
2529
2530         * lyxfunc.C (MenuNew): remove extra check for .lyx file
2531
2532         * lyxfunc.C (Open): 
2533         * bufferlist.C (newFile): do not restrict to files ending with
2534         .lyx
2535
2536         * BufferView_pimpl.C (MenuInsertLyXFile): 
2537
2538 2001-06-24  The LyX Project  <jug@sad.it>
2539
2540         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
2541         of compare_no_case
2542
2543 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2544
2545         * lyxtext.h: rename most methods to begin with a small char.
2546         Lots of changes because of this.
2547
2548         * paragraph.C (Paragraph): do not call fitToSize
2549         (erase): call Pimpl::erase
2550         (insertChar): call Pimpl::insertChar
2551         (insertInset): call Pipl::insertInset
2552         (breakParagraph): do not call fitToSize
2553         (breakParagraphConservative): do not call fitToSize
2554         (fitToSize): remove method
2555
2556         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
2557
2558 2001-06-24  The LyX Project  <Asger>
2559
2560         * Fix Qt compilation^2
2561
2562 2001-06-24  The LyX Project  <jug@sad.it>
2563
2564         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
2565         depthHook(getDepth()-1).
2566
2567         * paragraph.h: 
2568         * ParagraphParameters.h: 
2569         * ParameterStruct.h: change type of depth to unsigned int ==
2570         depth_type. Many adaptations to other files before of that.
2571
2572 2001-06-24  The LyX Project  <Asger>
2573
2574         * Fix Qt compilation.
2575
2576 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2577
2578         * paragraph.h: renamed several methods to begin with small letter.
2579         several changes to many parts of the code because of this.
2580
2581 2001-06-23  The LyX Project  <jug@sad.it>
2582
2583         * text2.C (InsertStringAsLines): renamed from InsertStringA;
2584         rewritten to discard all double spaces when KeepEmpty is off
2585         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
2586         to only handle newlines but not fiddle with spaces and friends.
2587
2588         * lyxfunc.C (MenuNew): when doing 'new from template', use
2589         template_path as default directory
2590
2591 2001-06-23  The LyX Project  <Asger>
2592
2593         * Clean-up of header file includes all over
2594         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
2595         
2596 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2597
2598         * paragraph.h: renamed from lyxparagraph.h
2599
2600 2001-06-23  Asger  <lyx@violet.home.sad.it>
2601
2602         * Buffer.h: Removed Buffer::resize
2603         * BufferList.h: Removed BufferList::resize
2604         * LyXView.h: Added LyXView::resize. This way, we will only reflow 
2605         the document lazily when we change the width, or the font settings.
2606
2607 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
2608
2609         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
2610
2611 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
2612
2613         * buffer.h: remove out of date comment
2614
2615 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
2616
2617         * lyxscreen.h:
2618         * screen.C: fix "theoretical" GC leak
2619  
2620 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2621
2622         * LaTeX.C (scanAuxFile):
2623         (deplog): remove trailing \r when reading stream (useful under
2624         win32)  
2625
2626 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
2627
2628         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
2629         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
2630         and BufferView::theLockingInset(Inset*), so should use them and not
2631         access bv_->text->the_locking_inset directly.
2632
2633         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
2634
2635 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
2636
2637         * Makefile.am:
2638         * tex-defs.h: remove old unused file
2639          
2640 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
2641
2642         * BufferView_pimpl.C: fix typo, remove minibuffer message
2643           when buffer has loaded
2644
2645 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2646
2647         * lyxfunc.C (Dispatch): use stringstream
2648         (MenuNew): use stringstream
2649         (Open): use stringstream
2650
2651         * importer.C (Import): use stringstream
2652
2653         * bufferview_funcs.C (CurrentState): use stringstream
2654
2655         * LaTeX.C (run): use stringstream
2656
2657         * BufferView_pimpl.C (savePosition): use stringstream
2658         (restorePosition): use stringstream
2659         (MenuInsertLyXFile): use stringstream
2660
2661 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
2662
2663         * BufferView.C:
2664         * Bullet.C:
2665         * ColorHandler.C:
2666         * FontInfo.C:
2667         * FontLoader.C:
2668         * LColor.C:
2669         * LaTeXFeatures.C:
2670         * Painter.C:
2671         * gettext.C:
2672         * lyx_gui_misc.C:
2673         * lyxserver.C:
2674         * vspace.C: removed // -*- C++ -*- as first line.
2675
2676         * lyxfind.h:
2677         * version.h: added // -*- C++ -*- as first line.
2678
2679 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2680
2681         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
2682
2683         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
2684         of string
2685
2686 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2687
2688         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
2689         of floats.
2690
2691 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2692
2693         * gettext.C: include LString.h even when --disable-nls is on. 
2694
2695 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
2696
2697         * converter.h (Get): changed argument type from int to
2698         FormatList::size_type to avoid unnecessary conversion.
2699
2700         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
2701         before using it.
2702
2703 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2704
2705         * gettext.h: include LString.h even when --disable-nls is on. 
2706
2707 2001-06-07  Juergen Vigna  <jug@sad.it>
2708
2709         * text.C (BreakAgain): subst spaces with tabs.
2710
2711         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
2712         (resizeInsetsLyXText): set force on resizeLyXText.
2713
2714 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2715
2716         * gettext.h (gettext_init): 
2717         (locale_init): use a real definition instead of a macro
2718
2719 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
2720
2721         * Bufferview_pimpl.C:
2722         * LColor.h:
2723         * LColor.C: further lcolor tidies
2724
2725 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2726
2727         * BufferView_pimpl.C (updateScrollbar): simplify.
2728
2729         * BufferView2.C: don't include insets/insetinfo.h, change
2730         prototype for insertInset and call the Pimpl version. let
2731         updateInset call Pimpl version.
2732
2733         * BufferView.h: move inset_slept to BufferView::Pimpl, move
2734         gotoInset to BufferView::Pimpl
2735
2736 2001-06-01  Juergen Vigna  <jug@sad.it>
2737
2738         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
2739         inside a LockingInset (is the update needed at all?).
2740
2741 2001-05-31  Juergen Vigna  <jug@sad.it>
2742
2743         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
2744         here not the old one otherwise how should we compare it afterwards
2745         if it's the same!
2746
2747 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2748
2749         * lyxfont.C: 
2750         * tabular.C:
2751         * tabular-old.C: 
2752         * FontInfo.C: bring C functions into global namespace when
2753         necessary
2754
2755 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2756
2757         * LString.h: make sure config.h has been loaded before LString.h.
2758
2759         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
2760         (one for each char read by EatLine!).
2761
2762         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
2763         variables. 
2764
2765 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2766
2767         * paragraph.C (BreakParagraph): set the inset_owner in the new par
2768         to the same as the par we break from
2769
2770 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2771
2772         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
2773
2774         * MenuBackend.C (expand): also create menu entries for wide
2775         versions of the floats.
2776
2777         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
2778
2779         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
2780
2781         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
2782         frontends/Makefile.am
2783
2784         * text2.C: adjust
2785         * text.C: adjust
2786         
2787
2788         * tabular.C (getTokenValue): add std::
2789
2790         * tabular-old.C (getTokenValue): add std::
2791         (getTokenValue): ditto
2792         (getTokenValue): ditto
2793
2794         * screen.C (ToggleSelection): adjust
2795
2796         * lyxtext.h: put selection cursors inside a Selection struct.
2797
2798         * lyxfunc.C (moveCursorUpdate): adjust
2799
2800         * lyxfont.C (latexWriteStartChanges): add std::
2801
2802         * lyxfind.C: adjust
2803
2804         * font.h: delete with(char const *, LyXFont const &)
2805
2806         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
2807
2808         * FontInfo.C (getFontname): add std::
2809
2810         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
2811         (workAreaButtonPress): adjust
2812         (tripleClick): adjust
2813         (update): adjust
2814         (moveCursorUpdate): adjust
2815         (Dispatch): adjust
2816
2817         * BufferView2.C (gotoInset): adjust
2818
2819 2001-05-30  Juergen Vigna  <jug@sad.it>
2820
2821         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
2822         to check pspell I add this as default as I now have new pspell
2823         libraries and they seem to use this.
2824
2825 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2826
2827         * text2.C (CutSelection): make the cursor valid before the call to
2828         ClearSelection.
2829
2830 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2831
2832         * kbsequence.C (parse): de-uglify a bit the parsing code, which
2833         relied on 0 terminated strings and other horrors. Bug found due to
2834         the new assert in lyxstring!
2835
2836         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
2837         KP_ keys.
2838
2839 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2840
2841         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
2842         to latinkeys.bind.
2843
2844         * lyxfunc.C (processKeySym): change method of getting to the
2845         self-insert char.
2846
2847         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
2848         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
2849         * BufferView_pimpl.[Ch]: here as private methods.
2850
2851 2001-05-28  Juergen Vigna  <jug@sad.it>
2852
2853         * text.C (SetHeightOfRow): added the update() call again as it is
2854         needed to initialize inset dimensions!
2855
2856 2001-05-16  Juergen Vigna  <jug@sad.it>
2857
2858         * text2.C (SetCharFont): Add new function with BufferView * and
2859         bool toggleall parameters for setting insets internal fonts.
2860         (SetFont): Freeze the undo as we may change fonts in Insets and
2861         all this change should be inside only one Undo!
2862
2863         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
2864         setting font's in insets as for them we have the SetFont function!
2865
2866 2001-05-15  Juergen Vigna  <jug@sad.it>
2867
2868         * text2.C (ClearSelection): to be sure we REALLY don't have any
2869         selection anymore!
2870
2871         * tabular.C (TeXCellPreamble): fixed the left border problem for
2872         multicolumn cells.
2873
2874 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
2875
2876         * LaTeX.C (deplog): Make sure that the main .tex file is in the
2877         dependancy file
2878
2879 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2880
2881         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
2882         LFUN_BREAKPARAGRAPH.
2883
2884         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
2885         help test to "internal only", similar for LFUN_INSERT_URL
2886
2887         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
2888         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
2889         auto_region_delete and deadkeys. 
2890
2891 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
2892
2893         * LColor.h:
2894         * LColor.C: remove some dead entries, tidy a little
2895  
2896 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2897
2898         * lyxfunc.C (processKeySym): comment the Escape handling, remove
2899         commented code.
2900         (Dispatch): implement LFUN_ESCAPE
2901
2902         * commandtags.h: add LFUN_ESCAPE
2903
2904         * LyXAction.C (init): add entry for LFUN_ESCAPE
2905
2906         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
2907         Remove commented code.
2908         (insertNote): moved here
2909         (open_new_inset): moved here
2910
2911         * BufferView[2].[Ch]: move insertNote and open_new_inset to
2912         BufferView_pimpl
2913
2914 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2915
2916         * kbmap.C (findbinding): clean it up and make it work correctly.
2917
2918         * lyx_main.C (init): do not pass argc and argv as parameters
2919
2920 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
2921
2922         * buffer.C: fix path for OS/2 & Win32
2923
2924         * lyx_gui.C:
2925         * lyx_main:
2926         * lyx_main.C: Added os:: class.
2927         
2928         * os2_defines.h: update
2929
2930 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2931
2932         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
2933         better by trying again with reduced state.
2934
2935 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2936
2937         * lyxrc.C (read): print error about invalid key sequence only when
2938         debugging (because not all latinX keysyms are known to some X
2939         servers)
2940
2941         * kbsequence.C (getiso): add a few std:: qualifiers
2942         (getiso): comment out extra return statement.
2943
2944 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2945
2946         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
2947         handling.
2948         (Dispatch): enhance the accent inset a bit. (not perfect)
2949
2950 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2951
2952         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
2953
2954 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2955
2956         * bufferlist.C (emergencyWrite): fix assert() call
2957
2958 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
2959
2960         * text.C (InsertChar): Added trivial patch to only send the "you
2961         can not do multiple spaces this way" message once during a
2962         session.
2963
2964 2001-05-08  Baruch Even  <baruch@lyx.org>
2965
2966         * Makefile.am: Changed order of libraries to get LyX to link properly
2967         with the gnome frontend.
2968
2969 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2970
2971         * LaTeXFeatures.h: add a std:: qualifier
2972
2973 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2974
2975         * paragraph.C (String): use stringstream
2976
2977 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2978
2979         * paragraph.C (writeFile): remove footflag arg
2980
2981         * buffer.C (makeLaTeXFile): use stringstream
2982         (latexParagraphs): remove footnot gurba
2983
2984         * LaTeXFeatures.C (getPackages): use stringstream
2985         (getMacros): likewise
2986         (getTClassPreamble): likewise
2987         (getFloatDefinitions): new method
2988
2989         * paragraph.C (writeFile): reindent
2990         (Erase): reindent
2991
2992         * WorkArea.h: revert the xpos + etc changes.
2993
2994         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
2995
2996         * lyxparagraph.[Ch]: add copy constructor, remove Clone
2997
2998         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
2999         (pasteSelection): likewise
3000         * text2.C (CreateUndo): likewise
3001
3002 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3003
3004         * minibuffer.C (peek_event): temporarily reduce the functionality
3005         of the minibuffer (to allow args on lfuns)
3006
3007         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
3008         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
3009
3010         * buffer.C (readInset): add compability reading of old float
3011         lists, add reading of new style float list.
3012         (readInset): avoid reevaluation of inscmd.getCmdName()
3013         (getLists): reindent
3014
3015         * MenuBackend.C (MenuItem): implement parsing of
3016         md_floatlistinsert and md_floatinsert.
3017         (expand::LastFiles): move initalizaton of iterators out of loop,
3018         avoid reevaluation.
3019         (expand::Documents): introduce typdedef vector<string> Strings,
3020         and use it. 
3021         (expand::ExportFormats): introduce typedef vector<Format const *>
3022         Formats, and use it.
3023         (expand): implement FloatListInsert and FloatInsert.
3024
3025         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
3026         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
3027         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
3028
3029         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
3030         handling. 
3031         (Dispatch::LFUN_FLOAT_LIST): implement
3032
3033 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
3034  
3035         * LaTeX.C (run): Fix problem with --export code.
3036  
3037 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
3038
3039         * BufferView.[Ch] (workarea): removed.
3040         (getClipboard) new method; wrapper for workarea()->getClipboard()
3041
3042         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
3043         bug.
3044
3045         * WorkArea.h (width, height, xpos, ypos): These methods all
3046         returned the dimensions of the work_area sub-area of WorkArea,
3047         resulting in a position error if the WorkArea were resized. Now
3048         return the dimensions of the entire WorkArea.
3049
3050         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
3051
3052 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3053
3054         * LaTeX.C (deplog): correct the syntax of regex reg1
3055
3056 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3057
3058         * undo.C: remove !NEW_INSETS cruft
3059
3060 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3061
3062         * text2.C: remove !NEW_INSETS cruft
3063
3064         * text.C: remove !NEW_INSETS cruft
3065
3066         * tabular.C: remove !NEW_INSETS cruft
3067
3068         * spellchecker.C: remove !NEW_INSETS cruft
3069
3070         * lyxtext.h: remove !NEW_INSETS cruft
3071
3072         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
3073
3074         * lyxfunc.C: remove !NEW_INSETS cruft
3075
3076         * lyxfind.C: remove !NEW_INSETS cruft
3077
3078         * lyx_cb.C: remove !NEW_INSETS cruft
3079
3080         * figureForm.C: remove  !NEW_INSETS cruft
3081
3082         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
3083
3084         * buffer.[Ch]: remove !NEW_INSETS cruft
3085
3086         * ToolbarDefaults.C: remove !NEW_INSETS cruft
3087
3088         * CutAndPaste.C: remove !NEW_INSETS cruft
3089
3090         * BufferView_pimpl.C: remove !NEW_INSETS cruft
3091
3092         * BufferView2.C: remove !NEW_INSETS cruft
3093
3094         * BufferView.h: remove !NEW_INSETS cruft
3095
3096 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3097
3098         * Lsstream.h: include LString.h before the sstream headers to
3099         fix problem with gcc 2.95.3 and lyxstring
3100
3101 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3102
3103         * lyx_main.C: add using directives when needed for C functions
3104         declared in std:: namespace.
3105
3106 2001-04-27  Juergen Vigna  <jug@sad.it>
3107
3108         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
3109         (SetHeightOfRow): comment out the update call should not be needed!
3110
3111 2001-04-13  Juergen Vigna  <jug@sad.it>
3112
3113         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
3114         (LyXTabular): tried to minimize operator= operations (and realized
3115         hopfully Lars wish).
3116
3117 2001-04-27  Juergen Vigna  <jug@sad.it>
3118
3119         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
3120
3121 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3122
3123         * lyxfunc.C (Dispatch): hack to make listof algorithm work
3124
3125         * buffer.C (readInset): hack to make listof algorithm work
3126
3127         * BufferView_pimpl.C: hack to make listof algorithm work
3128
3129 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3130
3131         * LyXAction.C: removed all !NEW_INSETS cruft
3132         (init): moved lfun_item in method
3133
3134         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
3135
3136 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
3137
3138         * BufferView2.C (theLockingInset): white space.
3139
3140 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3141
3142         * minibuffer.C: include <iostream>
3143
3144         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
3145
3146         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
3147
3148         * commandtags.h: add LFUN_TRANSPOSE_CHARS
3149
3150         * text.[Ch] (TransposeChars): new method
3151
3152 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3153
3154         * call message directly through LyXView instead of through LyXFunc
3155         * BufferView2.C: adjust
3156         * BufferView_pimpl.C: adjust
3157         * FontLoader.C: adjust
3158         * buffer.C: adjust
3159         * bufferview_funcs.C: adjust
3160         * converter.C: adjust
3161         * figureForm.C: adjust
3162         * importer.C: adjust
3163         * lyx_cb.C: adjust
3164         * lyx_gui_misc.C: adjust
3165         * lyxfunc.C: adjust
3166         * lyxvc.C: adjust
3167         * text2.C: adjust
3168         + more files in subdirs
3169         
3170         * lyxparagraph.h (size): move up int file
3171         (GetLayout): ditto
3172
3173         * adjust all uses of Assert to lyx::Assert.
3174
3175         * BufferView2.C (ChangeCitationsIfUnique): adjust for
3176         lyxfunctional in namespace lyx
3177         * layout.C (hasLayout): ditto
3178         (GetLayout): ditto
3179         (GetLayout): ditto
3180         (delete_layout): ditto
3181         (NumberOfClass): ditto
3182         * converter.C (GetFormat): ditto
3183         (GetNumber): ditto
3184         (Add): ditto
3185         (Delete): ditto
3186         (SetViewer): ditto
3187         * bufferlist.C (getFileNames): ditto
3188         (emergencyWriteAll): ditto
3189         (exists): ditto
3190         (getBuffer): ditto
3191         * MenuBackend.C (hasSubmenu): ditto
3192         (hasMenu): ditto
3193         (getMenu): ditto
3194         * BufferView_pimpl.C (getInsetByCode): ditto
3195
3196 2001-04-18  Juergen Vigna  <jug@sad.it>
3197
3198         * vspace.C (asLatexString): fixed the 100% problem.
3199
3200 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3201
3202         * lyxfunc.C (Dispatch): 
3203         * minibuffer.C: 
3204         * minibuffer.h: add a few std:: qualifiers
3205
3206 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3207
3208         * minibuffer.[Ch]: reimplement so that commands is initiated and
3209         run from lyxfunc, simplified som handling, and made the completion
3210         and history code for complete. wip. 
3211
3212         * lyxfunc.C (processKeySym): call message
3213         (miniDispatch): new temporary method
3214         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
3215         (LFUN_MESSAGE): implement
3216         (LFUN_MESSAGE_PUSH): implement
3217         (LFUN_MESSAGE_POP): implement
3218         (initMiniBuffer): the initial/defualt minibuffer message.
3219
3220         * lyxfont.[Ch]: inline some more getters
3221
3222         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
3223
3224         * lyx_gui_misc.[Ch] (WriteStatus): remove method 
3225
3226         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
3227         (AutoSave): use LFUN_MESSAGE
3228         (Reconfigure): ditto
3229
3230         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
3231
3232         * figureForm.C: use LFUN_MESSAGE
3233
3234         * converter.C (runLaTeX): use LFUN_MESSAGE
3235
3236         * bufferview_funcs.C: use LFUN_MESSAGE
3237         (Melt): ditto
3238         (changeDepth): ditto
3239
3240         * bufferparams.h: use boost::
3241
3242         * bufferlist.h: inherit privately from noncopyable
3243
3244         * bufferlist.C (loadLyXFile): remove some commented code.
3245
3246         * buffer.C (runChktex): use LFUN_MESSAGE
3247
3248         * ShareContainer.h: inherit privately from noncopyable
3249
3250         * ParagraphParameters.[hC] (depth): inline it.
3251
3252         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
3253         methods.
3254         (message): new method
3255         (messagePush): ditto
3256         (messagePop): ditto
3257         (show): init minibuffer
3258         (showState): direct call
3259
3260         * LaTeX.[Ch]: inherit privately from noncopyable
3261         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
3262         instead of WriteStatus.
3263
3264         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
3265
3266         * BufferView_pimpl.C (buffer): don't init minibuffer
3267         (workAreaButtonPress): use LFUN_MESSAGE
3268         (workAreaButtonRelease): ditto
3269         (savePosition): ditto
3270         (restorePosition): ditto
3271         (MenuInsertLyXFile): ditto
3272         (workAreaExpose): don't init minibuffer
3273         (update): remove commented code, simplify
3274
3275         * BufferView2.C (openStuff): use LFUN_MESSAGE
3276         (toggleFloat): ditto
3277         (menuUndo): ditto
3278         (menuRedo): ditto
3279         (copyEnvironment): ditto
3280         (pasteEnvironment): ditto
3281         (copy): ditto
3282         (cut): ditto
3283         (paste): ditto
3284         (gotoInset): ditto
3285         (updateInset): remove some commented code
3286
3287         * lastfiles.h: inherit privately from noncopyable
3288         * layout.h: ditto
3289         * lyx_gui.h: ditto
3290         * lyx_main.h: ditto
3291         * lyxlex.h: ditto
3292         * lyxlex_pimpl.h: ditto
3293
3294         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
3295         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
3296         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
3297
3298         * LyXAction.h: inherit privately from noncopyable, add methods
3299         func_begin, func_end, returning iterators to the func map.
3300
3301         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
3302         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
3303         (func_begin): new method
3304         (func_end): new method
3305
3306         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
3307         and not)
3308         (copySelection): ditto
3309         (pasteSelection): ditto
3310
3311         * BufferView.C: whitespace change
3312         * BufferView.h: inherit privately from noncopyable
3313
3314 2001-04-16  Allan Rae  <rae@lyx.org>
3315
3316         * tabular-old.C (l_getline): 
3317         * spellchecker.C (sc_check_word): 
3318         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
3319         an unrecognised preprocessor directive.  So ensure they're wrapped. 
3320
3321 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
3322
3323         * src/exporter.C (Export): Give an error message when path to file 
3324         contains spaces.
3325
3326 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
3327
3328         * LaTeX.C (deplog): Always check that foundfile exists.
3329
3330 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3331
3332         * lyx_main.h: 
3333         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name 
3334
3335 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3336
3337         * tabular.[Ch] (getLabelList): implement new method
3338
3339         * minibuffer.h: comment ouf setTiimer
3340
3341         * minibuffer.C (ExecutingCB): constify res
3342         (peek_event): constify s
3343         (Set): constify ntext
3344         (Init): constify nicename
3345
3346         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
3347
3348         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
3349         (savePosition): use two params to Minibuffer::Set
3350         (restorePosition): ditto
3351
3352 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3353
3354         * lyx_main.C: include language.h
3355
3356         * Makefile.am (lyx_main.o): add language.h
3357
3358 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3359
3360         * exporter.C: 
3361         * paragraph.C: 
3362         * screen.C: 
3363         * tabular.C: 
3364         * CutAndPaste.C: include gettext.h
3365
3366         * lyxfont.h: remove old hack with ON and OFF.
3367
3368         * lyxparagraph.h: 
3369         * lyxfont.h: do not include language.h...
3370
3371         * BufferView2.C: 
3372         * LaTeXFeatures.C: 
3373         * Painter.C: 
3374         * bufferview_funcs.C: 
3375         * font.C: 
3376         * lyxfont.C: 
3377         * text.C: 
3378         * text2.C: 
3379         * trans_mgr.C: 
3380         * paragraph.C: ... but do it here instead
3381
3382 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3383
3384         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
3385
3386         * tabular.C: small reformat
3387
3388         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
3389         NEW_INSETS version
3390         (GetChar): ditto
3391         (BreakParagraph): ditto
3392         (SetOnlyLayout): ditto
3393         (SetLayout): ditto
3394
3395         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
3396         with one arg less.
3397
3398         * lastfiles.C: removed most using decl, add std:: where needed
3399
3400         * buffer.C: ws changes
3401
3402         * MenuBackend.C (class compare_format): put into anon namespace
3403         (expand): constify label, names, action, action2
3404         (expand): 
3405
3406         * text.C (SingleWidth): constify font
3407         (IsBoundary): constify rtl2
3408         (GetVisibleRow): constify ww
3409
3410         * LaTeX.C (deplog): constify logfile
3411
3412         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
3413         start_x, end_x
3414         (workAreaExpose): constify widthChange, heightChange
3415
3416         * lyxrow.C (par): moved
3417         (height): moved
3418         (next): moved
3419         * lyxrow.h: as inlines here
3420
3421         * lyxfont.h (shape): moved from lyxfont.C
3422         (emph): moved from lyxfont.C
3423
3424         * lyxfont.C (LyXFont): use initialization list for all
3425         constructors
3426         (shape): move to lyxfont.h as inline
3427         (emph): move to lyxfont.h as inline
3428         
3429
3430 2001-04-04  Juergen Vigna  <jug@sad.it>
3431
3432         * vspace.C: had to include stdio.h for use of sscanf
3433
3434 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
3435
3436         * BufferView.h: 
3437         * BufferView_pimpl.h: remove xforms cruft. Both classes are
3438         independent of xforms.
3439
3440 2001-04-02  Juergen Vigna  <jug@sad.it>
3441
3442         * spellchecker.C: fixed namespace placing!
3443
3444 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
3445
3446         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
3447         the LyXParagraph * is 0.
3448
3449 2001-03-29  Juergen Vigna  <jug@sad.it>
3450
3451         * vspace.C: added support for %, c%, p%, l%.
3452         (stringFromUnit): added helper function.
3453         (asLatexString): changed to give right results for the %-values.
3454
3455         * buffer.C: convert the widthp in a width%.
3456
3457 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
3458
3459         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
3460         figureForm.[Ch].
3461
3462         * figureForm.[Ch]: stripped the FD_from_figure manipulation
3463         code out of lux_cb.[Ch], ready for its (imminent?) removal.
3464
3465         * lyx_cb.[Ch]: see above.
3466
3467         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
3468         form1.[Ch].
3469
3470         * form1.[Ch]:
3471         * lyx.[Ch]: replaced by figure_form.[Ch].
3472
3473         * lyx_gui.C:
3474         * lyx_gui_misc.C:
3475         * lyxfunc.C: changed headers associated with above changes.
3476
3477 2001-03-27  Juergen Vigna  <jug@sad.it>
3478
3479         * BufferView_pimpl.C: set the temporary cursor right!
3480
3481 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
3482
3483         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
3484
3485 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
3486
3487         * LString.h: removed "using std::getline"!
3488
3489         * BufferView_pimpl.C (Dispatch): changes due to changes in
3490         InsetInclude::Params.
3491
3492         * buffer.C (tag_name): removed redundant break statements as they were
3493         producing lots of warnings with my compiler.
3494
3495 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3496
3497         * LString.h: add "using std::getline" when using the real <string>.
3498
3499 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
3500
3501         * buffer.C: removed bitset usage.
3502         PAR_TAG moved to an anonymous name space.
3503         (tag_name): new funtion, also in the anonymous namespace.
3504         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
3505         (makeDocBookFile): clean code. Completed transition from string arrays
3506         to string vectors.
3507         (SimpleDocBookOnePar): code clean.
3508
3509 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3510
3511         * tabular.C: add some comments.
3512
3513 2001-03-22  Juergen Vigna  <jug@sad.it>
3514
3515         * buffer.C (parseSingleLyXformat2Token): redone the minipage
3516         compatibility read a bit and fixed bug with minipage in different
3517         depth.
3518
3519 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
3520
3521         * buffer.C (pop_tag): removed.
3522         (push_tag): removed.
3523         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
3524         array replaced with vector. Added support for CDATA sections.
3525         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
3526         at any nest level.
3527         (makeDocBookFile): XML conformant declaration of CDATA section,
3528         fixed bug related to <emphasis> in the first paragraph char.
3529         (sgmlOpenTag): exclude empty tags.
3530         (sgmlCloseTag): ditto.
3531         
3532         * buffer.h (pop_tag): removed.
3533         (push_tag): removed.
3534
3535 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
3536
3537         * language.h (Languages): added size_type and size().
3538
3539 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3540
3541         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
3542         response on compability reading of minipages. One probliem is that
3543         the old usage of minipages was «flertydig» 
3544
3545         * several files here and in subdirs: don't use static at file
3546         scope use anon namespaces instead.
3547
3548 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
3549
3550         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
3551         LaTeX output. This is necessary for Literate document
3552         processing.
3553
3554 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3555
3556         * buffer.C: insert hfill when needed.
3557
3558         * tabular.C (l_getline): use string::erase, small whitespace change.
3559
3560         * BufferView_pimpl.C: try the anon namespace.
3561         * WorkArea.C: ditto
3562
3563 2001-03-16  Juergen Vigna  <jug@sad.it>
3564
3565         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
3566         otherwise it won't open options-dialogs.
3567
3568         * buffer.C: honor pextraWidth(p) on converting minipages.
3569
3570         * tabular.C (l_getline): changed the functions to strip trailing \r.
3571
3572 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
3573
3574         * BufferView_pimpl.C:
3575         * minibuffer..C: added "using SigC::slot" declaration.
3576
3577 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3578
3579         * lyxlex_pimpl.h: noncopyable is in namespace boost.
3580
3581         * text2.C: ditto
3582
3583         * text.C: ditto
3584
3585         * paragraph.C: ditto
3586
3587         * lyxtext.h: NO_PEXTRA
3588
3589         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
3590
3591         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
3592         * ParameterStruct.h: ditto
3593         * ParagraphParameters.h: ditto 
3594         * lyxparagraph.h: ditto
3595
3596 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3597
3598         * buffer.C: add compability for minipage alignment.
3599         (latexParagraphs): remove unwanted pextra check.
3600
3601         * several files: remove CXX_WORKING_NAMESPACES
3602
3603         * buffer.C (pop_tag): tie is in namespace boost
3604
3605         * BufferView.h: noncopyable is in namespace boost
3606         * lyxlex.h: ditto
3607         * lyx_main.h: ditto
3608         * lyx_gui.h: ditto
3609         * layout.h: ditto
3610         * lastfiles.h: ditto
3611         * bufferlist.h: ditto
3612         * ShareContainer.h: ditto
3613         * LyXView.h: ditto
3614         * LyXAction.h: ditto
3615         * LaTeX.h: ditto
3616
3617 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
3618
3619         * Merging changes from BRANCH_MVC back into HEAD.
3620
3621         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
3622
3623 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
3624
3625         * BufferView_pimpl.C: change from intl.C
3626
3627         * combox.h:
3628         * combox.C:
3629         * Makefile.am: move combox.*
3630
3631         * form1.h:
3632         * form1.C:
3633         * lyx_gui.C:
3634         * intl.h:
3635         * intl.C: remove dialog (covered by prefs)
3636
3637 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
3638
3639         * lyxfunc.C (Dispatch): removed redundant break statement.
3640         
3641 2001-03-14  Juergen Vigna  <jug@sad.it>
3642
3643         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
3644
3645 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3646
3647         * buffer.C: add hack to fix compability reading of minipages.
3648
3649 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
3650
3651         * buffer.C (getLists): Cleanup.
3652
3653 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3654
3655         * lyxfont.C (update): don't honor toggleall on font size.
3656
3657 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
3658
3659         * bmtable.c:
3660         * bmtable.h:
3661         * Makefile.am: moved to frontends/xforms/
3662
3663         * lyx_gui_misc.C:
3664         * lyxfunc.C:
3665         * BufferView_pimpl.C: changes for moved mathpanel
3666
3667 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
3668
3669         * gettext.h: fix gettext_init() in --disable-nls
3670
3671 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3672
3673         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
3674
3675 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
3676
3677         * lyx.C:
3678         * lyx.h: strip external form
3679
3680 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
3681
3682         * BufferView_pimpl.C: add comment, destroySplash()
3683
3684 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
3685
3686         * BufferView_pimpl.C:
3687         * LyXAction.C:
3688         * buffer.C:
3689         * commandtags.h:
3690         * lyxfunc.C: use re-worked insetinclude
3691
3692 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3693
3694         * buffer.C: add using std::stringstream.
3695
3696         * lyx_cb.C: readd using std::ios.
3697
3698         * buffer.C: add using std::map.
3699
3700         * BufferView_pimpl.C: add using std::vector.
3701
3702         * ShareContainer.h: add std:: to swap.
3703
3704         * buffer.h: add some typedefs
3705         * buffer.C (getLists): use them
3706         (getLists): renamed from getTocList.
3707         add a counter for the different float types and use it in the
3708         generated string.
3709         (getLists): use the same counter for the NEW_INSETS and the "non"
3710         NEW_INSETS
3711
3712         * lyx_cb.h: remove unused items, includes, using etc.
3713
3714         * ShareContainer.h: remove some commented code, add more comments
3715         and "documentation".
3716
3717 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3718
3719         * buffer.C (getTocList): make the list also when NEW_INSETS is
3720         defined.
3721
3722         * buffer.h: remove TocType
3723
3724         * buffer.C (getTocList): change to return a map<string,
3725         vector<TocItem> >, implement for dynamic number of list.
3726
3727         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
3728         * text2.C (PasteSelection): adjust
3729         * CutAndPaste.C (pasteSelection): adjust
3730
3731         * FloatList.C (FloatList): update from the new_insets branch.
3732         * Floating.[Ch]: ditto
3733         * LaTeXFeatures.C: ditto
3734         * buffer.C: ditto
3735         * lyxlex_pimpl.C: ditto
3736         
3737         * paragraph.C (Last): remove when NEW_INSETS is defined.
3738
3739         * other file: changes because of the above.
3740
3741 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3742
3743         * lyxparagraph.h: rename next to next_, previous to previous_,
3744         make them private for NEW_INSETS. Rename Next() to next(),
3745         Previous() to previous().
3746
3747         * other files: changes because of the above.
3748
3749 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
3750
3751         * BufferView.h: 
3752         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
3753         problem.
3754
3755 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3756
3757         * main.C (main): pass lyx_localedir to gettext_init().
3758
3759         * gettext.h: remove locale_init and gettext_init macros
3760
3761         * gettext.C (locale_init): new function
3762         (gettext_init): new function
3763
3764         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
3765         setlocale().
3766
3767 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
3768
3769         * Moved credits to frontends:
3770         * credits.[Ch]: removed
3771         * credits_form.[Ch]: removed
3772         * lyx_gui_misc.C: remove credits stuff
3773         * Makefile.am:
3774
3775 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3776
3777         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
3778
3779         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
3780         unneeded destructor.
3781
3782         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
3783         a standalone pointer again.
3784
3785         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
3786
3787 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
3788
3789         * Makefile.am:
3790         * filedlg.h:
3791         * filedlg.C:
3792         * LyXAction.C:
3793         * ToolbarDefaults.C:
3794         * bufferlist.C:
3795         * commandtags.h:
3796         * form1.C:
3797         * form1.h:
3798         * lyx_cb.C:
3799         * lyx_cb.h:
3800         * lyxfunc.h:
3801         * lyxfunc.C:
3802         * BufferView_pimpl.C: use new file dialog in GUII
3803
3804         * lyx_cb.h:
3805         * lyx_cb.C: remove LayoutsCB to Toolbar
3806
3807 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3808
3809         * ShareContainer.h (get): add std:: qualifier
3810
3811 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3812
3813         * ShareContainer.h: define a proper ShareContainer::value_type
3814         type (and use typename to please compaq cxx)
3815
3816 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3817
3818         * lyxparagraph.h: move serveral local vars to
3819         ParameterStruct/ParagraphParameters., use ShareContainer in
3820         FontTable., make vars in FontTable private and add getter and
3821         setter.
3822
3823         * paragraph.C: changes because of the above.
3824
3825         * lyxfont.h: remove copy constructor and copy assignment. (the
3826         default ones is ok), move number inside FontBits. move inlines to
3827         lyxfont.C 
3828
3829         * lyxfont.C: add number to initializaton of statics, move several
3830         inlines here. constify several local vars. some whitespace
3831         cleanup. Dont hide outerscope variables.
3832
3833         * Spacing.h: add two new constructors to match the set methods.
3834
3835         * ShareContainer.h: new file, will perhaps be moved to support
3836
3837         * ParameterStruct.h: new file
3838
3839         * ParagraphParameters.h: new file
3840
3841         * ParagraphParameters.C: new file
3842
3843         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
3844         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
3845
3846         * BufferView_pimpl.C: ParagraphParameter changes.
3847         * buffer.C: Likewise.
3848         * bufferview_funcs.C: Likewise.
3849         * text.C: Likewise.
3850         * text2.C: Likewise.
3851         
3852 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3853
3854         * lyxfind.C (LyXReplace): do not redefine default argument in
3855         implementation. 
3856         (IsStringInText): ditto
3857         (SearchForward): ditto
3858         (SearchBackward): ditto
3859
3860 2001-03-06  Juergen Vigna  <jug@sad.it>
3861
3862         * lyxfind.C (IsStringInText): put parentes around expressions.
3863
3864 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
3865
3866         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
3867         
3868 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
3869
3870         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
3871
3872         * stl_string_fwd.h: add comment
3873
3874         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
3875
3876         * tabular.h:
3877         * tabular.C: remove unused DocBook methods
3878
3879         * intl.C:
3880         * language.C:
3881         * paragraph.C:
3882         * buffer.C:
3883         killed DO_USE_DEFAULT_LANGUAGE
3884
3885 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3886
3887         * lyx_gui.C: do not include language.h.
3888
3889         * bufferview_funcs.C (ToggleAndShow): do not provide optional
3890         arguments in function implementation.
3891
3892 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3893
3894         * BufferView_pimpl.C: add <ctime>
3895
3896 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3897
3898         * BufferView_pimpl.C: add using std::find_if
3899
3900 2001-02-27  José Matos  <jamatos@fep.up.pt>
3901         
3902         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
3903         by OnlyPath.
3904         
3905 2001-02-11  José Matos  <jamatos@fep.up.pt>
3906
3907         * buffer.C (makeDocBookFile): command styles now have a parameter as
3908         "title" by default.
3909
3910 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
3911
3912         * layout_forms.[Ch]: removed
3913         * lyx_cb.[Ch]: out character
3914         * lyx_gui.C: out character
3915         * lyx_gui_misc.C: out character
3916         * bufferview_funcs.C: : out character,
3917         added toggleall as parameter in ToggleAndShow
3918                    
3919 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
3920
3921         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
3922
3923         * text2.C (SetCurrentFont): Disable number property at boundary.
3924
3925 2001-02-26  Juergen Vigna  <jug@sad.it>
3926
3927         * lyxfunc.C (getStatus): added a string argument override function so
3928         that this is correctly called from LyXFunc::Dispatch if it contains a
3929         do_not_use_argument which is used!
3930         (Dispatch): added check for "custom" export and call appropriate func.
3931
3932 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
3933
3934         * lyxrc.C: Add language_command_local, language_use_babel and
3935         language_global_options.
3936
3937         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
3938
3939         * buffer.C (makeLaTeXFile): Use language_use_babel and 
3940         language_global_options.
3941
3942 2001-02-23  Juergen Vigna  <jug@sad.it>
3943
3944         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
3945         which works with LyXText and putted it inside BufferView. Here now we
3946         only call for that part the BufferView::Dispatch() function.
3947
3948         * BufferView.C (Dispatch): added.
3949
3950         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
3951         functions which needs to use a LyXText over from LyXFunc.
3952         (MenuInsertLyXFile): added
3953         (getInsetByCode): added
3954         (moveCursorUpdate): added
3955         (static TEXT): added
3956
3957 2001-02-22  Juergen Vigna  <jug@sad.it>
3958
3959         * BufferView_pimpl.C (update): call a status update to see if LyXText
3960         needs it.
3961
3962 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3963
3964         * vc-backend.C (revert): implement for CVS
3965         (getLog): implement for CVS
3966
3967 2001-02-20  Juergen Vigna  <jug@sad.it>
3968
3969         * text2.C (ClearSelection): added BufferView param for inset_owner call
3970
3971         * lyxfunc.C (TEXT): added this function and use it instead of
3972         directly owner->view()-text of getLyXText().
3973
3974 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
3975
3976         * src/layout_forms.C: out preamble
3977         * src/layout_forms.h: out preamble
3978         * src/lyx_cb.C: out preamble
3979         * src/lyx_cb.h: out preamble
3980         * src/lyx_gui.C: out preamble
3981         * src/lyx_gui_misc.C: out preamble
3982         * src/lyxfunc.C: connect with guii preamble
3983
3984 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
3985
3986         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
3987
3988 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
3989
3990         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
3991         whether to run bibtex.
3992
3993 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
3994
3995         * Makefile.am (lyx_SOURCES): Remove BackStack.h
3996
3997 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
3998
3999         * Makefile.am (lyx_SOURCES): removed bibforms.h
4000
4001         * vspace.h: doxygen
4002
4003         * text.C (GetVisibleRow): make several local vars const
4004
4005         * tabular.C: small cleanup.
4006
4007         * lyxserver.C (callback): use compare instead of strncmp
4008
4009         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
4010         inlines to after class or to paragraph.C
4011
4012         * lyxfont.h: remove friend operator!=
4013
4014         * converter.h: move friend bool operator< to non friend and after
4015         class def.
4016
4017         * combox.h: small cleanup
4018
4019         * buffer.h: doxygen, remove unused constructor, move inclas inlies
4020         to inlines after class def.
4021
4022         * buffer.C (pop_tag): use string operations instead of strcmp
4023
4024         * bmtable.c: doxygen, small cleanup
4025
4026         * LaTeX.h: remove friend operator==
4027
4028 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
4029
4030         * screen.C: 
4031         * lyxrc.[Ch]:
4032         * lyxfunc.C: 
4033         * lyxfont.[Ch]: 
4034         * lyx_cb.C: 
4035         * intl.[Ch]: 
4036         * commandtags.h: 
4037         * buffer.C: 
4038         * WorkArea.[Ch]: 
4039         * LyXAction.C: 
4040         * BufferView_pimpl.C:
4041         * BufferView.[Ch]: remove cruft
4042
4043 2001-02-14  Juergen Vigna  <jug@sad.it>
4044
4045         * lyxfunc.C: removed #if 0 unused code
4046
4047         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
4048
4049         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
4050
4051         * text2.C (SetSelection): added a BufferView * parameter
4052
4053 2001-02-13  Juergen Vigna  <jug@sad.it>
4054
4055         * lyxfunc.C (Dispatch): fixed protected blank problem.
4056         * BufferView2.C (protectedBlank): added LyxText * parameter.
4057
4058         * tabular.C (AppendRow): forgot to set row_info of newly added row.
4059         (AppendColumn): same as above for column_info.
4060
4061         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
4062         (moveCursorUpdate): use a LyXText param for support of InsetText.
4063
4064         * BufferView_pimpl.C (doubleClick): added support for InsetText.
4065         (tripleClick): ditto
4066
4067         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
4068
4069         * BufferView_pimpl.C (update): added LyXText param to honor insets.
4070
4071         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
4072
4073         * text2.C (SetSelection): set correct update status if inset_owner
4074         (ToggleFree): ditto
4075
4076 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
4077
4078         * tabular.C: remove some commented code.
4079
4080 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
4081
4082         * BufferView_pimpl.C: call hideSplash()
4083
4084         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
4085
4086         * include_form.h:
4087         * bibforms.h: remove
4088
4089         * lyxfunc.C:
4090         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
4091           add LFUN_CHILD_CREATE
4092
4093         * counters.h: fix tiny typo
4094         
4095         * lyx_cb.C:
4096         * lyx.h:
4097         * lyx_gui.C:
4098         * lyx.C: move splash to frontends/xforms/
4099
4100         * lyx_gui_misc.C: move Include and Bibform to frontends
4101
4102         * lyxvc.h: clarify comment
4103
4104         * vspace.C: tiny housekeeping
4105
4106 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
4107
4108         * text.C (PrepareToPrint): RTL Fix.
4109
4110         * paragraph.C (GetUChar): New method.
4111         (String):  Use GetUChar.
4112
4113         * buffer.C (asciiParagraph): Use GetUChar.
4114
4115 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
4116
4117         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
4118
4119 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
4120
4121         * buffer.h:
4122         * buffer.C: rename to getLogName(), handle
4123           build log / latex log nicely
4124
4125 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4126
4127         * MenuBackend.C: 
4128         * MenuBackend.h: remove support for reference menuitem type.
4129
4130 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
4131
4132         * BufferView_pimpl.C: housekeeping
4133         * BufferView_pimpl.h:
4134         * LyXView.h:
4135         * Makefile.am:
4136         * Timeout.C:
4137         * Timeout.h:
4138         * minibuffer.h: move Timeout GUI-I
4139                           
4140 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
4141
4142         * lyxrc.C (read): Update converters data-structures.
4143
4144 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
4145
4146         * LaTeX.h (operator!=): add operator != for Aux_Info 
4147
4148 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
4149
4150         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
4151
4152         * LaTeXLog.C: deleted, useful code moved to Buffer
4153
4154         * buffer.h:
4155         * buffer.C: new function getLatexLogName()
4156
4157         * lyx_gui_misc.C:
4158         * lyx_gui.C:
4159         * lyxvc.C:
4160         * lyxvc.h:
4161         * lyxfunc.C: use frontends for LaTeX and VC logs
4162
4163 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4164
4165         * LaTeX.h: yet another std:: that Allan forgot.
4166
4167         * Variables.C (set): renamed from isset(), because this clashes
4168         with some HP-UX macros (grr).
4169
4170 2001-02-06  Allan Rae  <rae@lyx.org>
4171
4172         * LaTeX.h: Another bug fix.  Missing std:: this time.
4173
4174 2001-02-04  Allan Rae  <rae@lyx.org>
4175
4176         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
4177         floats problem. I've left it commented out because it's not quite
4178         correct.  It should also test that the current object is a table or
4179         figure inset.  But I haven't gotten around to figuring out how to do
4180         that.  I *think* it'll be something like: "table" == inset.type()
4181
4182         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
4183         bool.
4184
4185 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
4186
4187         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
4188         all the citation/databases/styles in the auxilary file. 
4189         (run): Rerun latex if there was a babel language error.
4190
4191 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
4192
4193         * text.C (Backspace): Preserve the font when changing newline char
4194         with a space.
4195         (BreakParagraph): If the cursor is before a space, delete the space.
4196
4197         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
4198
4199 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
4200
4201         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
4202         new argument (code).
4203         (ChangeCitationsIfUnique): New method.
4204
4205         * paragraph.C (GetPositionOfInset): Handle bibkey.
4206
4207 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4208
4209         * BufferView_pimpl.h: change type of Position::par_pos to
4210         LyXParagraph::size_type. 
4211
4212 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
4213
4214         * BufferView_pimpl.C (savePosition, restorePosition): Write
4215         messages to minibuffer.
4216
4217 2001-01-28  José Matos  <jamatos@fep.up.pt>
4218
4219         * buffer.C (makeDocBookFile): adds support for document language.
4220         A silly restriction on the name of LatexCommand types where removed.
4221         Added support for CDATA sections, allows to chars unescaped, used
4222         among others in code, to avoid escape < and >.
4223         
4224 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
4225
4226         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of 
4227         saved positions instrad of a stack. Furthermore, a position is
4228         stored using paragraph id/paragraph position.
4229
4230         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
4231         Remove LFUN_REF_BACK.
4232
4233 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
4234
4235         * converter.C (dvipdfm_options): New method.
4236
4237 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
4238
4239         * vspace.C (isValidLength): Fix for empty input string.
4240
4241 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4242
4243         * LyXAction.C (init): change description of LFUN_FIGURE to
4244         "Insert Graphics"
4245
4246 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4247
4248         * LaTeX.C: add using directive
4249
4250 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
4251
4252         * MenuBackend.C (expand): Fix the sorting of the formats.
4253
4254 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
4255
4256         * lyx_main.C: tiny error message fix
4257
4258 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4259
4260         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
4261         calling fl_initialize(). This fixes the problem with ',' as
4262         decimal separator in text files.
4263
4264 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
4265
4266         * trans.C (process): Fix the keymap bug.
4267
4268 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
4269
4270         * LaTeX.C (scanAuxFiles): New method. Provides support for
4271         multiple bibliographies (when using the bibtopic/bibunits pacakges).
4272         (scanLogFile) Scan for "run BibTeX" messages.
4273
4274         * buffer.C (makeLaTeXFile): Do not load the ae package when using
4275         OT1 font encoding. Also, load the aecompl package if the ae
4276         package is loaded.
4277
4278         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
4279
4280 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4281
4282         * texrow.C (increasePos): turn two error messages into debug
4283         messages. 
4284
4285 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
4286
4287         * LaTeX.C (scanAux): Handle the \@input macro.
4288         (runBibTeX): Use scanAux().
4289
4290         * language.C (latex_options_): New field.
4291
4292         * LaTeXFeatures.C (getMacros): Add language macros.
4293
4294         * buffer.C (makeLaTeXFile): Small fix.
4295
4296 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4297
4298         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
4299
4300         * text2.C: add a using directive.
4301
4302 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
4303
4304         * BufferView2.C:
4305         * lyx_gui_misc.h:
4306         * lyxfr1.C:
4307         * lyxfunc.C: kill LyXBell.
4308
4309 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
4310
4311         * text.C (IsBoundary): Remove the error message
4312         
4313         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
4314
4315         * lyxrc.C (setDefaults): Correct initialization value for
4316         font_norm_type.
4317
4318 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
4319
4320         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
4321         gotoError().
4322
4323         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
4324         and GotoNextNote().
4325
4326         * src/LyXAction.C: Added reference-next.
4327
4328         * text.C (InsertChar): Use contains instead of strchr.
4329
4330         * lyx_cb.C (MenuInsertLabel): Enable default value code.
4331
4332 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
4333
4334         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
4335         alignment commands (when needed).
4336
4337         * text.C (InsertChar): Add ':' to number separator chars.