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