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