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