]> git.lyx.org Git - lyx.git/blob - src/ChangeLog
parlist-12-a.diff
[lyx.git] / src / ChangeLog
1 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2
3         * paragraph_pimpl.C (simpleTeXSpecialChars): take a outerfont arg,
4         adjust 
5
6         * paragraph_funcs.C (TeXOnePar): adjust
7
8         * paragraph.C (getLabelFont): add outerfont arg, adjust
9         (getLayoutFont): ditto
10         (simpleTeXOnePar): adjust
11
12         * paragraph_pimpl.C (realizeFont): delete func
13
14 2003-04-14  Alfredo Braunstein  <abraunst@libero.it>
15
16         * text2.C (beforeFullRowInset): added a bad getchar check, removed
17         row argument, constify cur argument.
18
19 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
20
21         * text2.C (getFont): adjust
22         (getLayoutFont): adjust
23         (getLabelFont): adjust
24
25         * paragraph_funcs.C (TeXOnePar): adjust
26         (outerFont): new func...
27         (realizeFont): ...moved out from here, changed this to facilitate
28         transition
29
30         * paragraph.C (getFont): take outerfont as arg, adjust
31         (simpleTeXOnePar): add outerfont arg, adjust
32
33         * buffer.C (simpleLinuxDocOnePar): adjust
34         (simpleDocBookOnePar): adjust
35
36         * CutAndPaste.C (pasteSelection): adjust
37
38         * BufferView.C (getEncoding): adjust
39
40 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
41
42         * text2.C (setCharFont): adjust
43         (setCounter): adjust
44
45         * text.C (leftMargin): adjust
46         (setHeightOfRow): adjust
47
48         * rowpainter.C (paintFirst): adjust
49         (paintLast): adjust
50
51         * paragraph_pimpl.C (realizeFont): adjust
52
53         * paragraph.C (isFirstInSequence): move from here...
54         * paragraph_funcs.C (isFirstInSequence): ...to here
55
56         * paragraph.C (outerHook): move from here...
57         * paragraph_funcs.C (outerHook): ...to here
58
59         * paragraph.C (depthHook): move from here...
60         * paragraph_funcs.C (depthHook): ...to here
61
62         * paragraph.C (getEndLabel): move from here...
63         * paragraph_funcs.C (getEndLabel): ...to here
64
65         * text2.C (realizeFont): move from here...
66         * paragraph_funcs.C (realizeFont): ...to here
67
68 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
69
70         * text3.C (gotoNextInset): use separate tmp vars for par and pos.
71
72 2003-04-14  Angus Leeming  <leeming@lyx.org>
73
74         * LColor.[Ch]: scrap LColor mathcursor.
75
76 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
77
78         * lyxlex.[Ch] (text): delete function
79         * trans.C (Load): adjust
80         * paragraph_funcs.C (readParToken): adjust
81
82 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
83
84         * lyxlex_pimpl.h: get rid of LEX_MAX_BUFF, change buff to be a
85         vector<char> instead of a char[].
86
87         * lyxlex_pimpl.C (getString): adjust
88         (next): adjust
89         (lex): use getString
90         (eatLine): adjust
91         (nextToken): adjust
92
93         * lyxlex.C (text): use pimpl_->getString()
94         (getBool): ditto
95         (findToken): ditto
96
97 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
98
99         * text2.C (getInset): temp vars for cursor.par() and cursor.pos()
100         (makeFontEntriesLayoutSpecific): temp var for par.size()
101         (setLayout): temp var for ownerParagraphs().end()
102         (fullRebreak): temp var for rows().end()
103         (selectionAsString): temp var for boost::next(startpit), realize
104         that the while really is a regular for loop.
105         (cursorEnd): temp vars for cursor.row(), lastPos ++, only call
106         setCursor in one place.
107         (setParagraph): temp vr for ownerParagraphs().end()
108         (updateCounters): make the while loop a for loop
109         (cutSelection): temp var for ownerParagraphs().end()
110         (updateInset): make the do {} while() a regular for loop
111         (getCursorX): use temp vars
112         (setCurrentFont): use temp vars
113         (getColumnNearX): use temp vars
114
115 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
116
117         * text.C (transformChar): use temp var for getChar
118         (computeBidiTables): use temp var for row->par()
119         (fill): move temp vars for row->par() and pit->layout() earlier in
120         the function.
121         (labelFill): use temp var for row->par()
122         (setHeightOfRow): do not allow rit to be RowList::end, get rid of
123         asc and desc, realize that pit never changes and that firstpit is
124         just a duplicate and not needed. Exchange rit->par() with pit in a
125         lot of places.
126         (breakAgain): use a temp var for boost::next(rit)
127         (breakAgainOneRow): ditto
128         (breakParagraph): use a temp var for rows().begin()
129         (prepareToPrint): move nlh into minimal scope, use temp var for rit->par()
130         (cursorRightOneWord): use temp var for cursor.par() and
131         cursor.pos(), remove usage of tmpcursor.
132         (cursorLeftOneWord): use temp var for cursor.par() and
133         cursor.pos() only set cur at end of function.
134
135 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
136
137         * text.C, text2.C: exchange all usage of Paragraph::next with
138         boost::next(ParagraphList::iterator)
139
140         * CutAndPaste.C (cutSelection): change 2. arg to a Paragraph*
141
142         * text2.C (cursorTop): simplify implementation
143         (cursorBottom): ditto
144         (setParagraph): use ParagraphList::iterator
145         (setCurrentFont): adjust
146         (getColumnNearX): adjust
147         (cursorRight): adjust
148         (cursorLeft): remove usage of Paragraph::previous
149         (cursorUpParagraph): ditto
150         (deleteEmptyParagraphMechanism): slight cleanup
151
152         * text.C (isBoundary): take a Paragraph const & instead of a
153         pointer as arg.
154         (addressBreakPoint): ditto
155         (leftMargin): remove usage of Paragraph::previous.
156         (setHeightOfRow): ditto
157         (cursorLeftOneWord): ditto
158         (selectNextWordToSpellcheck): ditto
159         (Delete): ditto
160         (backspace): ditto
161         (breakParagraph): remove one usage of Paragraph::next
162         (redoParagraph): ditto
163         (acceptChange): ditto
164         (insertChar): adjust
165         (rowBreakPoint): adjust
166
167         * bufferview_funcs.C (toggleAndShow): adjust
168
169 2003-04-11  Alfredo Braunstein  <abraunst@libero.it>
170
171         * lyxrow.[Ch]: add a cached y position to a Row and Row::y()
172         methods to access it.
173         * lyxtext.h:
174         * text.C: Added updateRowPositions to compute all row positions.
175         Make top_y and getRowNearY() to use the cached y position
176
177 2003-04-11  John Levon  <levon@movementarian.org>
178
179         * text.C (rowBreakPoint): reintroduce the labelEnd
180         checks, code copied from the row fill stuff. Deep voodoo.
181
182         * text.C (fill): add a comment and debugging for the
183         next poor soul.
184
185 2003-04-11  John Levon  <levon@movementarian.org>
186
187         * text.C: make sure fullrow insets get wrapped to the next line,
188         even when they're in a manual label
189
190 2003-04-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
191
192         * text2.C (insertParagraph): make it take ParagraphList::iterator
193         as arg.
194         (setLayout): make it return ParagraphList::iterator
195         (redoParagraphs): ditto
196         (setCounter): ditto
197         (checkParagraph): ditto
198
199         * text.C (getRow): make getrow take ParagraphList::iterator as arg
200
201         * text2.C: adjust several funcs.
202         (realizeFont): take a ParagraphList::iterator as arg.
203         (getLayoutFont): ditto
204         (getLabelFont): ditto
205         (setCharFont): ditto
206
207         * text.C: adjust several funcs.
208
209 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
210
211         * text.C (selectNextWordToSpellcheck): don't accidentally
212         skip insets
213
214 2003-04-10  John Levon  <levon@movementarian.org>
215
216         * ToolbarBackend.C (getIcon): special handling for
217         LFUN_MATH_DELIM
218
219 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
220
221         * text2.C (cursorRight): a getChar assert fixed
222
223 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
224
225         * text2.C (getFont): change to take a ParagraphList::iterator
226         instead of Paragraph*
227         Adjust several functions.
228
229         * text.C (transformChar): change to take a ParagraphList::iterator
230         instead of Paragraph*
231         (singleWidth): ditto
232         Adjust several functions.
233
234         * rowpainter.C: adjust several functions
235         * rowpainter.h:store a ParagraphList::iterator and not a
236         Paragraph&.
237
238
239 2003-04-09  John Levon  <levon@movementarian.org>
240
241         * lyxfunc.C:
242         * lfuns.h:
243         * LyXAction.h:
244         * LyXAction.C: remove LFUN_APROPOS, LFUN_GETTIP,
245         and the "help" bits as well
246
247 2003-04-09  John Levon  <levon@movementarian.org>
248
249         * ToolbarBackend.h:
250         * ToolbarBackend.C: allow multiple toolbars
251
252 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
253
254         * undo_funcs.C (setCursorParUndo): adjust
255
256         * text_funcs.C (transposeChars): adjust
257
258         * text3.C (gotoNextInset): adjust
259         (dispatch): adjust
260
261         * text2.C (setLayout): adjust
262         (changeDepth): adjust
263         (setFont): adjust
264         (redoParagraphs): adjust
265         (selectionAsString): adjust
266         (setParagraph): adjust
267         (insertInset): adjust
268         (cutSelection): adjust
269         (copySelection): adjust
270         (pasteSelection): adjust
271         (insertStringAsLines): adjust
272         (updateInset): adjust
273         (setCursor): change to take a ParagraphList::iterator parameter
274         (setCursorIntern): change to take a ParagraphList::iterator parameter
275         (setCurrentFont): adjust
276         (cursorLeft): adjust
277         (cursorRight): adjust
278         (deleteEmptyParagraphMechanism): adjust
279
280         * text.C (breakParagraph): adjust
281         (insertChar): adjust
282         (acceptChange): adjust
283         (rejectChange): adjust
284         (selectNextWordToSpellcheck): adjust
285         (changeCase): adjust
286         (Delete): adjust
287         (backspace): adjust
288
289         * lyxfind.C (SearchForward): adjust
290         (SearchBackward): adjust
291         (nextChange): adjust
292
293         * lyxcursor.C (par): adjust
294
295         * lyxcursor.h: store a ParagraphList::iterator instead of a
296         Paragraph*
297
298         * lyx_cb.C (getPossibleLabel): adjust
299
300         * bufferview_funcs.C (toggleAndShow): adjust
301
302         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
303         (dispatch): adjust
304
305         * BufferView.C (removeAutoInsets): adjust
306         (lockedInsetStoreUndo): adjust
307
308 2003-04-09  John Levon  <levon@movementarian.org>
309
310         * ToolbarBackend.C: try icon without argument
311         if with argument fails
312
313 2003-04-08  John Levon  <levon@movementarian.org>
314
315         * ToolbarBackend.h:
316         * ToolbarBackend.C: add getIcon(), handle tooltip,
317         and change from "Icon" to "Item".
318
319 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
320
321         * BufferView.C (lockInset): another bad getchar crunched
322
323 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
324
325         * text2.C (changeDepth): do not setUndo on test_only (make undo work
326         again)
327
328 2003-04-05  Alfredo Braunstein  <abraunst@libero.it>
329
330         * lyxfind.C (searchForward, searchBackwards): bug 782
331
332 2003-04-07  John Levon  <levon@movementarian.org>
333
334         * paragraph.C: remove dead comment
335
336         * text.C: remove troublesome depth-fiddling code
337         in leftMargin() and rightMargin() (bug 1017)
338
339         * text.C: fix breaking of rows in nested lists
340         (bug 1004)
341
342         * text2.C (updateCounters): fix up depth values
343         (bug 1013)
344
345 2003-04-07  John Levon  <levon@movementarian.org>
346
347         * BufferView_pimpl.C: clear message when doc finishes resizing,
348         and after a mouse event
349
350         * lyxfunc.C: clear message after exiting inset
351
352 2003-04-07  John Levon  <levon@movementarian.org>
353
354         * bufferview_funcs.C: show math status not outside
355         status in the statusbar
356
357 2003-04-07  John Levon  <levon@movementarian.org>
358
359         * lyxfunc.C: note status changed after a depth change
360
361 2003-04-04  Angus Leeming  <angus@localhost.localdomain>
362
363         * LaTeX.h: move AuxInfo operator==, != out of line.
364         Remove LaTeX virtual destructor; nothing derives from it.
365         Move operator()() out of public area and rename it startscript().
366         Change protected for private.
367
368 2003-04-04  Angus Leeming  <leeming@lyx.org>
369
370         * lyxfunc.C:
371         * text2.C: remove unneeded #includes.
372
373 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
374
375         * text2.C (dEPM): fix the heigth of the next row
376
377 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
378
379         * text.C: squashed an invalid getChar requester + some ws changes
380
381 2003-04-03  John Levon  <levon@movementarian.org>
382
383         * bufferview_funcs.h:
384         * bufferview_funcs.C:
385         * lyxfunc.C:
386         * lyxtext.h:
387         * text2.C: make getStatus work for the env depth lfuns
388
389 2003-04-03  John Levon  <levon@movementarian.org>
390
391         * bufferview_funcs.h:
392         * bufferview_funcs.C:
393         * lyxfunc.C:
394         * lyxtext.h:
395         * text2.C: parlistize decDepth(), by merging it with incDepth()
396
397 2003-04-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
398
399         * lyxrow.h: store a ParagraphList::iterator instead of a
400         Paragraph* and adjust other class functions to suit.
401
402         * lyxrow_funcs.C, text.C, text2.C, text3.C: adjust because of the
403         above.
404
405 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
406
407         * text2.C (setCursor): do not anchor to cursor row for the time being
408
409 2003-04-02  John Levon  <levon@movementarian.org>
410
411         * LyXAction.C:
412         * lfuns.h:
413         * lyx_main.C:
414         * lyxtext.h:
415         * text.C:
416         * text3.C: rename the "tab" lfuns. Remove tab support from normal text
417
418 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
419
420         * paragraph.h: make ParagraphList and ParagraphList::iterator
421         friends of Paragraph.
422
423         * buffer.C (makeLinuxDocFile): move towards ParagraphList
424
425         * ParagraphList.C: Use the private next_ and previous_ from
426         Paragraph.
427
428 2003-04-01  John Levon  <levon@movementarian.org>
429
430         * ToolbarBackend.h:
431         * ToolbarBackend.C:
432         * Makefile.am: rename, remove defaults gunk
433
434         * MenuBackend.h:
435         * MenuBackend.C: remove defaults gunk
436
437         * Languages.h:
438         * Languages.C: remove defaults gunk
439
440         * lyx_main.h:
441         * lyx_main.C: error out if files couldn't be found.
442
443 2003-04-02  John Levon  <levon@movementarian.org>
444
445         * text2.C: make incDepth() use parlist
446
447 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
448
449         * undo_funcs.C (firstUndoParagraph): adjust
450
451         * text3.C (gotoInset): adjust
452         (dispatch): adjust, and rewrite loop.
453
454         * text2.C (init): adjust, and rewrite loop.
455         (redoParagraphs): adjust
456         (updateInset): adjust, and rewrite loop.
457         (deleteEmptyParagraphMechanism): adjust
458
459         * tabular.C (LyXTabular): adjust
460         (SetMultiColumn): adjust
461         (TeXRow): adjust
462
463         * lyxtext.[Ch] (ownerParagraph): delete function
464         (ownerParagraphs): new function returns a ParagraphList.
465
466         * BufferView.C (removeAutoInsets): adjust
467         (insertErrors): adjust
468         (setCursorFromRow): adjust
469
470 2003-04-01  Angus Leeming  <leeming@lyx.org>
471
472         * BufferView_pimpl.C (buffer): ensure that the Layout is correct
473         in the frontends.
474
475 2003-04-02  John Levon  <levon@movementarian.org>
476
477         * lyxtext.h:
478         * text.C:
479         * Makefile.am:
480         * text_funcs.h:
481         * text_funcs.C: make transposeChars a free function
482
483         * lyxrow_funcs.C: remove wrong comment
484
485 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
486
487         * lyxtext.h: adjust
488         * rowpainter.C: adjust
489         * text.C: adjust
490         * text2.C: adjust
491         * text3.C: adjust
492
493         * lyxrow_funcs. [Ch]: new files
494
495         * lyxrow.[Ch]: remove next and previous pointers
496         (next,previous): remove accessor functions
497         (isParEnd): move to lyxrow_funcs
498         (lastPos): move to lyxrow_funcs
499         (nextRowIsAllInset): move to lyxrow_funcs
500         (lastPrintablePos): move to lyxrow_funcs
501         (numberOfSeparators): move to lyxrow_funcs
502         (numberOfHfills): move to lyxrow_funcs
503         (numberOfLabelHfills): move to lyxrow_funcs
504         (hfillExpansion): move to lyxrow_funcs
505
506         * lyxfunc.C: adjust
507
508         * bufferview_funcs.C (toggleAndShow): adjust
509
510         * RowList.h: Remove class RowList from file leave just a
511         std::list<Row>.
512
513         * RowList.C: delete file
514
515         * Makefile.am (lyx_SOURCES): remove RowList.C, add lyxrow_funcs.C
516         and lyxrow_funcs.h
517
518 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
519
520         * text3.C (cursorPrevious): adjust
521         (cursorNext): adjust
522         (dispatch): adjust
523
524         * text2.C (redoHeightOfParagraph): adjust
525         (redoDrawingOfParagraph): adjust
526         (setCursor): adjust
527
528         * text.C (breakParagraph): adjust
529         (insertChar): adjust
530         (backspace): adjust
531
532         * rowpainter.C (RowPainter): adjust
533         (leftMargin): simplify and adjust
534         (most rowpainter functions): adjust.
535
536         * rowpainter.h: store the row as RowList::iterator not as Row*
537
538         * lyxcursor.C (row): taka RowList::iterator as arg
539         (irow): ditto
540
541         * lyxcursor.h: make the LyXCursor store RowList::iterators instead
542         of Row*.
543
544 2003-04-01  Angus Leeming  <leeming@lyx.org>
545
546         * bufferview_funcs.C (string2font): rewrite so that it no longer uses
547         stuff like bool Bool.
548
549 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
550
551         * text2.C (redoParagraphs): fix a bug (introduced by myself) and
552         rewrite a loop
553
554 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
555
556         * text2.C (redoParagraphs): rewrite (with help from Alfredo) for
557         RowList::iterator.
558
559         * lyxtext.h (rows): drop one version and leve a const variant that
560         returns a RowList::iterator.
561
562 2003-03-31  Angus Leeming  <leeming@lyx.org>
563
564         * text.C (fill): ensure that the signature is the same as that in the
565         header file.
566
567 2003-03-31  Lars Gullik Bjønnes  <larsbj@gullik.net>
568
569         * text2.C (redoParagraphs): adjust
570         (updateCounters): adjust
571         (checkParagraph): adjust
572         (getColumnNearX): adjust and reformat a bit.
573
574         * text.C (top_y): adjust
575         (workWidth): adjust
576         (leftMargin): adjust
577         (prepareToPrint): adjust
578         (getRow): adjust
579         (getRowNearY): adjust
580
581         * lyxtext.h: make rowlist_ mutable.
582
583         * RowList.h: add const_iterator
584         * RowList.C: adjust for RowList::const_iterator.
585
586         * text2.C (getCursorX): make it take a RowList::iterator as arg,
587         adjust.
588
589 2003-03-31  John Levon  <levon@movementarian.org>
590
591         * lyxrc.h:
592         * lyxrc.C: moved pdf_mode and use_gui to elsewhere
593
594         * lyx_main.C: set default fonts from using lyx_gui funcs
595
596         * exporter.C: pdf_mode moved from lyxrc
597
598         * lyx_cb.C:
599         * lyxfunc.C: changes from above
600
601 2003-03-31  John Levon  <levon@movementarian.org>
602
603         * lyx_main.C: fix to the last fix
604
605 2003-03-31  John Levon  <levon@movementarian.org>
606
607         * bufferlist.C: "Load original" -> "Load Original"
608
609         * converter.C:
610         * exporter.C:
611         * importer.C:
612         * lyx_main.C:
613         * format.C: more Alert cleanups
614
615 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
616
617         * text2.C (removeParagraph): make it take a RowList::iterator as
618         arg, adjust.
619         (getColumnNearX): make it take a RowList::iterator as arg, adjust.
620         (postRowPaint): make it take a RowList::iterator as arg, adjust.
621
622         * text.C (anchor_row): make it take a RowList::iterator as arg,
623         adjust.
624         (computeBidiTables): make it take a const reference to Row instead
625         of Row pointer, adjust.
626         (leftMargin): make it take a RowList::iterator as arg, adjust.
627         (rowBreakPoint): adjust
628         (breakAgainOneRow): make it take a RowList::iterator as arg,
629         adjust.
630         (prepareToPrint): make it take a RowList::iterator as arg, adjust.
631
632         * bufferview_funcs.C (toggleAndShow): adjust
633
634 2003-03-30  John Levon  <levon@movementarian.org>
635
636         * Makefile.am:
637         * BoostFormat.h:
638         * boost-inst.C: moved to support
639
640         * several files: changes as a result
641
642 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
643
644         * text2.C (LyXText): adjust.
645         (init): adjust
646         (removeRow): make it take a RowList::iterator as arg, adjust.
647         (fullRebreak): adjust
648         (deleteEmptyParagraphMechanism): adjust
649         (clearPaint): adjust
650         (postPaint): adjust
651
652         * text.C (top_y): adjust
653         (setHeightOfRow): make it take a RowList::iterator as arg, adjust.
654         (breakAgain): make it take a RowList::iterator as arg, adjust.
655         (breakParagraph): adjust
656         (insertChar): adjust
657         (backspace): adjust
658
659         * lyxtext.h: make anchor_row_ be a RowList::iterator, ditto
660         need_break_row, and refresh_row.
661
662         * text3.C (dispatch): adjust
663
664         * text2.C (checkParagraph): adjust
665         (setCursor): adjust
666         (setCursorFromCoordinates): adjust
667
668         * text.C (top_y): adjust
669         (workWidth): adjust
670         (getRow): make it return a RowList::iterator, adjust
671         (getRowNearY): make it return a RowList::iterator, adjust
672
673         * text2.C (init): adjust
674         (insertRow): remove function
675         (insertParagraph): adjust
676         (redoParagraphs): adjust
677         (fullRebreak): adjust
678         (updateCounters): adjust
679
680         * text.C (top_y): rewrite to use RowList iterators.
681         (top_y): adjust
682         (setHeightOfRow): rewrite to sue RowList iterators.
683         (appendParagraph): adjust
684         (breakAgain): adjust
685         (breakAgainOneRow): adjust
686         (breakParagraph): adjust
687         (getRow): adjust
688         (getRowNearY): adjust, and remove commented code.
689
690         * lyxtext.h (firstRow): delete function
691         (lastRow): delete function
692         (rows): new function (const and non-const versions.)
693         (insertRow): delete function
694
695         * lyxrow.[Ch] (Row): new constructor taking a par and a pos
696
697 2003-03-29  John Levon  <levon@movementarian.org>
698
699         * BufferView_pimpl.C: always update scrollbar top
700         because pasting text when we're anchored could mean we
701         miss an update altogether
702
703 2003-03-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
704
705         * text2.C (init): use rowlist_.end() and not 0.
706         (insertRow): change to take a RowList::iterator as arg, adjust
707         for this.
708         (insertParagraph): change to take a RowList::iterator as arg,
709         adjust for this.
710         (redoParagraphs): remove some debug msgs.
711
712         * text.C (appendParagraph): change to take a RowList::iterator
713         arg, adjust for this.
714         (breakAgain): add an assert
715         (breakAgainOneRow): ditto
716
717 2003-03-29  John Levon  <levon@movementarian.org>
718
719         * text2.C: do not clear selection after inc/decDepth
720         (bug 550)
721
722 2003-03-29  John Levon  <levon@movementarian.org>
723
724         * BufferView.C:
725         * buffer.C: fix broken strerrors according to Lars
726
727 2003-03-29  John Levon  <levon@movementarian.org>
728
729         * converters.C: more Alert cleanups
730
731 2003-03-29  John Levon  <levon@movementarian.org>
732
733         * bufferview_funcs.C: remove pointless Alert
734
735         * buffer.C: fix confusing error message when
736         a template is chmoded 000
737
738 2003-03-29  John Levon  <levon@movementarian.org>
739
740         * BufferView.C:
741         * BufferView.h:
742         * BufferView_pimpl.C: Alert fixes
743
744         * Makefile.am:
745         * tabular.C:
746         * tabular-old.C: remove unused table compat reading
747
748 2003-03-29  John Levon  <levon@movementarian.org>
749
750         * BufferView.C:
751         * buffer.C:
752         * lyx_cb.h:
753         * lyx_cb.C: more Alert cleanups
754
755         * lyxfunc.C: don't allow chktex if not latex document
756
757 2003-03-29  John Levon  <levon@movementarian.org>
758
759         * lyx_cb.C:
760         * BufferView.C:
761         * buffer.C: warnings pushed down from support/,
762         kill err_alert
763
764 2003-03-29  John Levon  <levon@movementarian.org>
765
766         * lyxfunc.C: safety check for C-r (revert)
767
768 2003-03-29  John Levon  <levon@movementarian.org>
769
770         * bufferlist.h:
771         * bufferlist.C: several UI fixes using Alert::prompt.
772         Fix the pointless looping quit code. Fix stupid revert
773         behaviour (bug 938)
774
775         * lyxvc.h:
776         * lyxvc.C:
777         * lyx_cb.C: use Alert::prompt
778
779         * lyx_main.C: remove a silly question
780
781         * lyxfunc.C: remove a couple of silly questions,
782         use Alert::prompt
783
784 2003-03-28  John Levon  <levon@movementarian.org>
785
786         * text2.C: fix bug 974 (End on empty par)
787
788 2003-03-28  John Levon  <levon@movementarian.org>
789
790         * BufferView_pimpl.C:
791         * LyXAction.C:
792         * lfuns.h: remove do-nothing math greek lfuns
793
794 2003-03-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
795
796         * lyxgluelength.h (isValidGlueLength): add default arg on
797         parameter 2. Remove default arg from friend in class.
798
799         * lyxlength.h (isValidLength): add default arg on parameter 2.
800         Remove default arg from friend in class.
801
802         * text2.C (LyXText): adjust, initialize refresh_row.
803         (init): adjust
804         (removeRow): adjust
805         (insertRow): adjust
806         (insertParagraph): adjst
807         (redoParagraphs): adjust
808         (fullRebreak): adjust
809         (updateCounters): adjust
810         (deleteEmptyParagraphMechanism): first attempt at fixing a
811         crashing bug.
812
813         * text.C (top_y): adjust
814         (setHeightOfRow): adjust
815         (getRow): adjust
816         (getRowNearY): adjust
817
818         * lyxtext.h: include RowList.h
819         (~LyXText): not needed anymore, deleted.
820         (firstRow): modify for RowList
821         (lastRow): new function
822         Delete firstrow and lastrow class variables, add a Rowlist
823         rowlist_ class variable.
824
825         * lyxrow.C (lastPos): use empty() and not !size() to check if a
826         paragraph is empty.
827
828         * RowList.C (insert): fix case where it == begin().
829
830 2003-03-26  Angus Leeming  <leeming@lyx.org>
831
832         * BufferView_pimpl.C (dispatch): changes to the Dialogs interface for
833         the thesaurus dialog.
834
835 2003-03-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
836
837         * Makefile.am (lyx_SOURCES): add RowList.[Ch]
838
839         * RowList.[Ch]: new files
840
841         * ParagraphList.C (erase): handle the case where it == begin
842         correctly.
843
844 2003-03-25  John Levon  <levon@movementarian.org>
845
846         * Makefile.am:
847         * aspell_local.h:
848         * aspell.C: add new aspell support
849
850         * lyxrc.h:
851         * lyxrc.C: Make use_pspell be use_spell_lib. Always
852         have it accessible.
853
854 2003-03-25  Angus Leeming  <leeming@lyx.org>
855
856         * lfuns.h:
857         * LyXAction.C (init): new LFUN_INSET_INSERT.
858
859         * BufferView_pimpl.C (dispatch): split out part of the
860         LFUN_INSET_APPLY block LFUN_INSET_INSERT.
861
862         * factory.C (createInset): act on LFUN_INSET_INSERT rather than
863         LFUN_INSET_APPLY.
864
865 2003-03-25  Angus Leeming  <leeming@lyx.org>
866
867         * lyxfunc.C (dispatch): changes to the Dialogs interface.
868
869 2003-03-25  Alfredo Braunstein  <abraunst@libero.it>
870
871         * text2.C:
872         * text3.C: remove useless row->height(0)
873
874 2003-03-25  John Levon  <levon@movementarian.org>
875
876         * lyxtext.h:
877         * text2.C:
878         * text3.C: rename the refreshing stuff to better names
879
880 2003-03-24  John Levon  <levon@movementarian.org>
881
882         * BufferView_pimpl.h:
883         * BufferView_pimpl.C: update layout choice on a mouse
884         press/release
885
886 2003-03-23  John Levon  <levon@movementarian.org>
887
888         * Makefile.am: fix commandtags.h reference
889
890 2003-03-22  John Levon  <levon@movementarian.org>
891
892         * BufferView_pimpl.C:
893         * lyxtext.h:
894         * rowpainter.C:
895         * rowpainter.h:
896         * text.C:
897         * text2.C: remove CHANGED_IN_DRAW, it cannot happen now
898
899 2003-03-21  Alfredo Braunstein  <abraunst@libero.it>
900
901         * lyxtext.h:
902         * text.C: take the rtl methods out of line
903
904 2003-03-21 André Pönitz <poenitz@gmx.net>
905
906         * metricsinfo.[Ch]: new files containing structures to be passed around
907         during the two-phase-drawing...
908
909 2003-03-21 André Pönitz <poenitz@gmx.net>
910
911         * lyxtextclass.C: read 'environment' tag.
912
913 2003-03-20  Alfredo Braunstein  <abraunst@libero.it>
914
915         * text2.C (removeRow): fix bug 964
916
917 2003-03-20  John Levon  <levon@movementarian.org>
918
919         * rowpainter.C:
920         * text.C:
921         * text2.C: paint cleanups. Inset::update() dropped font
922         parameter
923
924 2003-03-19  John Levon  <levon@movementarian.org>
925
926         * lyxfunc.C: only fitcursor/markDirty if available()
927
928 2003-03-19  John Levon  <levon@movementarian.org>
929
930         * commandtags.h: rename to ...
931
932         * lfuns.h: ... this, and renumber / cleanup
933
934 2003-03-19  John Levon  <levon@movementarian.org>
935
936         * lyxfunc.C: mark buffer dirty if we executed a "dirtying" lfun.
937         fit the cursor after an lfun
938
939         * BufferView.h:
940         * BufferView.C:
941         * BufferView_pimpl.h:
942         * BufferView_pimpl.C: remove BufferView::FITCUR/CHANGE
943
944         * LyXAction.C: layout-character should have ReadOnly
945
946         * ParagraphParameters.C:
947         * buffer.C:
948         * bufferview_funcs.C:
949         * lyx_cb.C:
950         * lyxfind.C:
951         * lyxtext.h:
952         * text.C:
953         * text2.C:
954         * text3.C:
955         * undo_funcs.C: changes from above
956
957 2003-03-18  John Levon  <levon@movementarian.org>
958
959         * BufferView_pimpl.C (scrollDocView): add updateLayoutChoice(),
960         remove it from update()
961
962         * lyxfunc.C: update layout choice after an lfun
963
964         * text3.C: remove extra updateLayoutChoice()s
965
966 2003-03-18  John Levon  <levon@movementarian.org>
967
968         * text.C: top_y change means full repaint, fix
969         a drawing bug with cursor movement
970
971 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
972
973         * lyxtext.h:
974         * text.C:
975         * text2.C: anchor row on setCursor
976
977 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
978
979         * lyxtext.h: remove almost all mutable keywords
980         * text.C:
981         * text2.C:
982         * text3.C: remove const keywords accordingly
983
984 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
985
986         * paragraph_funcs.C (TeXDeeper): reduce number of args, move into
987         anon namespace
988         (TeXEnvironment): ditto
989         (TeXOnePar): ditto
990
991 2003-03-17  John Levon  <levon@movementarian.org>
992
993         * text.C (rowBreakPoint): remove attempt to fix displayed
994         math insets inside a manual label
995
996 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
997
998         * lyxtext.h: remove BufferView* as first arg from almost all class
999         functions.
1000         * other files: adjust.
1001
1002 2003-03-17  John Levon  <levon@movementarian.org>
1003
1004         * lyxtext.h:
1005         * undo_funcs.C:
1006         * text2.C: more paint cleanups
1007
1008         * BufferView_pimpl.C: screen prototype changed, use postPaint etc.
1009
1010         * rowpainter.h:
1011         * rowpainter.C: remove "smart" background painting code
1012
1013 2003-03-16  John Levon  <levon@movementarian.org>
1014
1015         * lyxtext.h:
1016         * text.C:
1017         * text2.C:
1018         * text3.C: add helper functions for setting refresh_row/y
1019
1020 2003-03-14  Kayvan Sylvan  <kayvan@sylvan.com>
1021
1022         * paragraph_pimpl.C (simpleTeXSpecialChars): Added fix for the
1023         newline inset which *can* get inserted in the pass_thru layouts.
1024         This is primarily for literate documents.
1025
1026 2003-03-14  Dekel Tsur  <dekelts@tau.ac.il>
1027
1028         * buffer.C: increment LYX_FORMAT to 223
1029
1030 2003-03-14 André Pönitz <poenitz@gmx.net>
1031
1032         * textclass.h: prepare for environment handling, ws changes
1033         * lyxlayout.C: read latexheader and latexfooter tags
1034
1035 2003-03-14  John Levon  <levon@movementarian.org>
1036
1037         * text2.C: rewrite ::status() a bit
1038
1039 2003-03-13  John Levon  <levon@movementarian.org>
1040
1041         * lyxtext.h: add some docs
1042
1043 2003-03-13  John Levon  <levon@movementarian.org>
1044
1045         * lyxtext.h:
1046         * text.C:
1047         * text2.C:
1048         * text3.C: remove pointless 2nd arg to setHeightOfParagraph()
1049
1050 2003-03-13  John Levon  <levon@movementarian.org>
1051
1052         * text3.C: fix appendix redrawing
1053
1054 2003-03-13  John Levon  <levon@movementarian.org>
1055
1056         * text.C (setHeightOfRow):
1057         * rowpainter.h:
1058         * rowpainter.C: make appendix mark have the text
1059           "Appendix" so the user knows what it is
1060
1061         * LColor.h:
1062         * LColor.C: s/appendixline/appendix/ from above
1063
1064 2003-03-13  John Levon  <levon@movementarian.org>
1065
1066         * paragraph_pimpl.C: fix Andre's backing out of the strong assertion
1067
1068         * text.C: fix a getChar(pos) bug properly
1069
1070 2003-03-13  Angus Leeming  <leeming@lyx.org>
1071
1072         * commandtags.h:
1073         * LyXAction.C (init): new LFUNs PARAGRAPH_APPLY and PARAGRAPH_UPDATE.
1074         Probably only temporary. Let's see how things pan out.
1075
1076         * BufferView.C (unlockInset):
1077         * BufferView_pimpl.C (fitCursor):
1078         replace Dialogs::updateParagraph with dispatch(LFUN_PARAGRAPH_UPDATE).
1079
1080         * BufferView_pimpl.C (dispatch): code for LFUNs LAYOUT_PARAGRAPH,
1081         PARAGRAPH_UPDATE, PARAGRAPH_APPLY.
1082
1083         * ParagraphParameters.[Ch] (setParagraphParams, params2string):
1084         new functions that convert ParagraphParameters to and from a string.
1085
1086         * lyxfunc.C (dispatch): move LFUN_LAYOUT_PARAGRAPH to
1087         BufferView::Pimpl's dispatch.
1088         In LFUN_ESCAPE, dispatch LFUN_PARAGRAPH_UPDATE.
1089
1090 2003-03-13 André Pönitz <poenitz@gmx.net>
1091
1092         * lyxfunc.C:
1093         * text3.C:
1094         * factory.C: make it aware of InsetEnv
1095
1096 2003-03-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
1097
1098         * text2.C (setCursor): never ask for one past last
1099         (setCursor): add some debugging messages.
1100
1101         * text.C (singleWidth): never ask for one past last
1102         (singleWidth): ditto
1103         (leftMargin): ditto
1104         (rightMargin): ditto
1105         (rowBreakPoint): ditto
1106         (setHeightOfRow): ditto
1107         (prepareToPrint): ditto
1108
1109         * rowpainter.C (paintBackground): never ask for one past last
1110         (paintText): never ask for one past last
1111
1112         * paragraph_pimpl.C (getChar): make the assert stricter, never
1113         allow the one past last pos to be taken
1114
1115         * paragraph.C (getChar): ws changes only
1116
1117         * lyxrow.C (nextRowIsAllInset): never ask for one past last
1118         (numberOfSeparators): ditto
1119         (numberOfHfills): ditto
1120
1121 2003-03-12  John Levon  <levon@movementarian.org>
1122
1123         * author.h:
1124         * author.C:
1125         * bufferparams.h:
1126         * bufferparams.C:
1127         * paragraph_funcs.C: fix per-buffer authorlists
1128
1129 2003-03-12  John Levon  <levon@movementarian.org>
1130
1131         * text.C: fix newline in right address
1132
1133 2003-03-12  Angus Leeming  <leeming@lyx.org>
1134
1135         * BufferView_pimpl.C (dispatch): remove LFUNs from switch as they
1136         duplicate those in LyXFunc::dispatch.
1137
1138         * commandtags.h:
1139         * LyXAction.C:
1140         * ToolbarDefaults.C:
1141         rename LFUN_FREE as LFUN_FONTFREE_APPLY.
1142         Add LFUN_FONTFREE_UPDATE.
1143
1144         * lyxfunc.C (dispatch): code for LFUN_FREEFONT_APPLY,
1145         LFUN_FREEFONT_UPDATE, LFUN_LAYOUT_CHARACTER.
1146
1147         * bufferview_func.[Ch]: several new functions to facilliate
1148         transfer of data to and from the character dialog.
1149
1150 2003-03-12  John Levon  <levon@movementarian.org>
1151
1152         * buffer.C:
1153         * paragraph.h:
1154         * paragraph.C:
1155         * paragraph_funcs.C:
1156         * paragraph_pimpl.C:
1157         * sgml.C:
1158         * tabular.C:
1159         * text.C:
1160         * text3.C: remove META_NEWLINE in favour of an inset
1161
1162         * rowpainter.h:
1163         * rowpainter.C: remove paintNewline (done by inset)
1164
1165 2003-03-12  John Levon  <levon@movementarian.org>
1166
1167         * paragraph_pimpl.C: complain about bad getChar()s
1168         for a while at least
1169
1170 2003-03-12  John Levon  <levon@movementarian.org>
1171
1172         * buffer.h:
1173         * buffer.C: move paragraph read into a separate function,
1174         a little renaming to reflect that.
1175
1176         * bufferparams.h:
1177         * bufferparams.C: remove the author_ids map, not necessary now
1178
1179         * factory.h:
1180         * factory.C: moved Buffer::readInset to here
1181
1182         * paragraph_funcs.h:
1183         * paragraph_funcs.C: readParagraph free function moved from
1184         buffer.C
1185
1186         * tabular.C: name change
1187
1188 2003-03-12  John Levon  <levon@movementarian.org>
1189
1190         * buffer.C:
1191         * ParagraphParameters.C: move par params input to
1192         a read() method
1193
1194         * lyxlex_pimpl.C: make nextToken()/next() after a pushToken()
1195         behave like a normal read from the stream wrt reading
1196         a line vs. a \\token
1197
1198 2003-03-12  John Levon  <levon@movementarian.org>
1199
1200         * paragraph.C:
1201         * ParagraphParameters.h:
1202         * ParagraphParameters.C: move output code to a
1203         ::write() method
1204
1205 2003-03-12  John Levon  <levon@movementarian.org>
1206
1207         * BufferView.C (insertLyXFile):
1208         * buffer.h:
1209         * buffer.C:
1210         * tabular.C: use a parlist iterator for creating the
1211           document.
1212
1213 2003-03-12  John Levon  <levon@movementarian.org>
1214
1215         * buffer.C: make current_change static local not
1216           static file-scope
1217
1218 2003-03-12  John Levon  <levon@movementarian.org>
1219
1220         * buffer.C: fix insertStringAsLines for change tracking
1221
1222 2003-03-12  John Levon  <levon@movementarian.org>
1223
1224         * BufferView.C:
1225         * tabular.C:
1226         * buffer.h:
1227         * buffer.C:
1228         * bufferparams.h:
1229         * bufferparams.C: move author list into params. Rename some
1230           functions. Move the header reading into a separate token
1231           loop. Move the header token reading into BufferParams.
1232
1233 2003-03-12  John Levon  <levon@movementarian.org>
1234
1235         * changes.C: put debug inside lyxerr.debugging() checks
1236
1237 2003-03-11 André Pönitz <poenitz@gmx.net>
1238
1239         * factory.C: make it aware of InsetHFill
1240
1241 2003-03-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1242
1243         * buffer.C (latexParagraphs): move function from here...
1244         * paragraph_funcs.C (latexParagraphs): ...to here, and adjust
1245         args.
1246
1247 2003-03-10  Angus Leeming  <leeming@lyx.org>
1248
1249         * LyXAction.C (init): fix bug in poplating array with multiple entries
1250         with the same LFUN (spotted by JMarc).
1251
1252 2003-03-10  John Levon  <levon@movementarian.org>
1253
1254         * text.C:
1255         * text2.C: move getColumnNearX() near its
1256         only call site
1257
1258 2003-03-10  John Levon  <levon@movementarian.org>
1259
1260         * text.C: fix break before a minipage
1261
1262 2003-03-10  John Levon  <levon@movementarian.org>
1263
1264         * text.C: fix the last commit
1265
1266 2003-03-09  John Levon  <levon@movementarian.org>
1267
1268         * lyxtext.h:
1269         * text.C:
1270         * text2.C: clean up nextBreakPoint (now rowBreakPoint). Fix
1271         bug 365 (don't break before insets unless needed). Don't
1272         return a value > last under any circumstances.
1273
1274 2003-03-09  Angus Leeming  <leeming@lyx.org>
1275
1276         * BufferView_pimpl.C (trackChanges, dispatch): call
1277         Dialogs::show("changes") rather than Dialogs::showMergeChanges().
1278
1279 2003-03-09  Angus Leeming  <leeming@lyx.org>
1280
1281         * lyxfunc.C (dispatch): call Dialogs::show("about") rather
1282         than Dialogs::showAboutlyx().
1283
1284 2003-03-09  Angus Leeming  <leeming@lyx.org>
1285
1286         * factory.C (createInset): call Dialogs::show("tabularcreate") rather
1287         than Dialogs::showTabularCreate().
1288
1289 2003-03-09  John Levon  <levon@movementarian.org>
1290
1291         * lyxtext.h:
1292         * text.C:
1293         * text2.C: 3rd arg to nextBreakPoint was always the same.
1294           Use references.
1295
1296 2003-03-08  John Levon  <levon@movementarian.org>
1297
1298         * lyxrow.C:
1299         * paragraph.C:
1300         * paragraph.h:
1301         * rowpainter.C:
1302         * text.C:
1303         * text2.C: Remove the "main" bit from the "main body"
1304           notion.
1305
1306 2003-03-08  John Levon  <levon@movementarian.org>
1307
1308         * text.C (leftMargin): The left margin of an empty
1309         manual label paragraph should not include the label width
1310         string length.
1311
1312         * text.C (prepareToPrint): don't attempt to measure hfills
1313         for empty manual label paragraphs - the answer should be 0
1314
1315 2003-03-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
1316
1317         * CutAndPaste.C: remove commented code and reindent.
1318
1319 2003-03-08  John Levon  <levon@movementarian.org>
1320
1321         * lyxfunc.h:
1322         * lyxfunc.C: move reloadBuffer()
1323
1324         * BufferView.h:
1325         * BufferView.C: to here
1326
1327         * lyxvc.C: add comment
1328
1329         * vc-backend.h:
1330         * vc-backend.C: call bv->reload() to avoid
1331           getStatus() check on MENURELOAD
1332
1333 2003-03-07  Dekel Tsur  <dekelts@tau.ac.il>
1334
1335         * LaTeX.C (run): Fix a bug where the DVI file was not updated due
1336         to an old format .dep file.
1337
1338 2003-03-07  Angus Leeming  <leeming@lyx.org>
1339
1340         * text3.C (dispatch): remove the 'gross hack' of calling inset->edit
1341         when the LFUN_MOUSE_RELEASE should have been handled by
1342         inset->localDispatch.
1343
1344 2003-03-07  Angus Leeming  <leeming@lyx.org>
1345
1346         * BufferView_pimpl.C (dispatch):
1347         * LyXAction.C (init):
1348         * ToolbarDefaults.C (init):
1349         * commandtags.h:
1350         * lyxfunc.C (getStatus):
1351         remove LFUN_INSET_GRAPHICS.
1352
1353         * factory.C (createInset): add "graphics" to LFUN_INSET_APPLY.
1354
1355 2003-03-07  Angus Leeming  <leeming@lyx.org>
1356
1357         * commandtags.h:
1358         * LyXAction.C (init):
1359         * lyxfunc.C (getStatus): remove LFUN_REF_INSERT.
1360
1361         * lyxfunc.C (getStatus): add LFUN_DIALOG_SHOW_NEW_INSET to switch.
1362
1363         * commandtags.h:
1364         * LyXAction.C: add LFUN_INSET_DIALOG_UPDATE.
1365
1366         * lyxfunc (dispatch): on LFUN_DIALOG_UPDATE, pass the 'open' inset's
1367         localDispatch method LFUN_INSET_DIALOG_UPDATE.
1368
1369 2003-03-07  Angus Leeming  <leeming@lyx.org>
1370
1371         * lyxfunc.C (dispatch): add "include" to LFUN_SHOW_NEW_INSET and
1372         remove "ert".
1373
1374 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
1375
1376         * ParagraphList.C (front): new function
1377         (back): implement
1378
1379 2003-03-06  Alfredo Braunstein  <abraunst@libero.it>
1380
1381         * lyxtext.h (top_y): added these 2 methods, and private vars top_row_
1382         and top_row_offset_. removed var first_y.
1383         * text.C (top_y):
1384         * text2.C (LyXText, removeRow):
1385         * text3.C:
1386         * BufferView_pimpl.C:
1387         use these methods instead of using first_y
1388
1389 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
1390
1391         * text2.C (pasteSelection): adjust for checkPastePossible
1392
1393         * CutAndPaste.C: remove Paragraph * buf and replace with
1394         ParagraphList paragraphs.
1395         (DeleteBuffer): delete
1396         (cutSelection): change the tc type to textclass_type
1397         (copySelection): change the tc type to textclass_type
1398         (copySelection): adjust for ParagraphList
1399         (pasteSelection): change the tc type to textclass_type
1400         (pasteSelection): adjust for Paragraphlist
1401         (nrOfParagraphs): simplify for ParagraphList
1402         (checkPastePossible): simplify for ParagraphList
1403         (checkPastePossible): remove unused arg
1404
1405         * ParagraphList.C (insert): handle the case where there are no
1406         paragraphs yet.
1407
1408         * CutAndPaste.h: make CutAndPaste a namespace.
1409
1410         * text3.C (dispatch): adjust
1411
1412         * text.C (breakParagraph): add a ParagraphList as arg
1413
1414         * paragraph_funcs.C (breakParagraph): change to take a
1415         BufferParams and a ParagraphList as args.
1416         (breakParagraphConservative): ditto
1417         (mergeParagraph): ditto
1418         (TeXDeeper): add a ParagraphList arg
1419         (TeXEnvironment): ditto
1420         (TeXOnePar): ditto
1421
1422         * buffer.C (readLyXformat2): adjust
1423         (insertStringAsLines): adjust
1424         (latexParagraphs): adjust
1425
1426         * CutAndPaste.C (cutSelection): use 'true' not '1' as truth value.
1427         (cutSelection): adjust
1428         (pasteSelection): adjust
1429
1430         * BufferView_pimpl.C (insertInset): adjust
1431
1432 2003-03-05  Angus Leeming  <leeming@lyx.org>
1433
1434         * commandtags.h:
1435         * LyXAction.C (init):
1436         * BufferView_pimpl.C (dispatch):
1437         * lyxfunc.C (getStatus):
1438         remove LFUN_CHILD_INSERT.
1439
1440         * factory.C (createInset): add "include" to LFUN_INSET_APPLY.
1441
1442 2003-03-05  Angus Leeming  <leeming@lyx.org>
1443
1444         * commandtags.h:
1445         * LyXAction.C (init):
1446         * src/factory.C (createInset):
1447         * lyxfunc.C (getStatus):
1448         * text3.C (dispatch):
1449         remove LFUN_INSET_EXTERNAL and LFUN_INSERT_URL
1450
1451         * factory.C (createInset): add "external" to LFUN_INSET_APPLY.
1452
1453 2003-03-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
1454
1455         * ParagraphList.C (insert): handle insert right before end()
1456         (erase): fix cases where it can be first or last paragraph.
1457
1458 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
1459
1460         * paragraph_funcs.C (TeXEnvironment): remove all usage of
1461         Paragraph::next and Paragraph::previous
1462         (TeXOnePar): ditto
1463
1464         * text.C (breakParagraph): adjust
1465
1466         * paragraph_funcs.C (breakParagraph): take a Buffer* instead of a
1467         BufferParams& as arg.
1468         (breakParagraph): use ParagraphList::insert
1469         (breakParagraphConservative): take a Buffer* instead of a
1470         BufferParams& as arg.
1471         (breakParagraphConservative): use ParagraphList::insert.
1472
1473         * buffer.C (insertStringAsLines): un-const it
1474         (insertStringAsLines): adjust
1475
1476         * ParagraphList.C (insert): new function
1477
1478         * CutAndPaste.C (pasteSelection): adjust
1479
1480         * text.C (backspace): adjust
1481
1482         * tabular.C (SetMultiColumn): adjust
1483
1484         * CutAndPaste.C (cutSelection): adjust
1485         (pasteSelection): adjust
1486
1487         * tabular.C (SetMultiColumn): make it take a Buffer* instead of a
1488         Buffer const * as arg
1489
1490         * ParagraphList.C (erase): new function
1491         * paragraph_funcs.C (mergeParagraph): use it
1492         (mergeParagraph): make it take a Buffer* instead of a
1493         BufferParams* as arg
1494
1495         * paragraph_funcs.C (breakParagraph): take ParagraphList::iterator
1496         as arg
1497         (breakParagraphConservative): ditto
1498
1499         * paragraph.h: remove the breakParagraph friend
1500
1501         * paragraph.C (eraseIntern): new function
1502         (setChange): new function
1503
1504         * paragraph_funcs.C (mergeParagraph): make it take a
1505         ParagraphList::iterator instead of a Paragraph *, adjust
1506         accordingly.
1507
1508         * paragraph.h: move an #endif so that the change tracking stuff
1509         also works in the NO_NEXT case.
1510
1511 2003-03-04  Angus Leeming  <leeming@lyx.org>
1512
1513         * commandtags.h:
1514         * LyXAction.C: new LFUN_INSET_MODIFY.
1515
1516         * BufferView_pimpl.C (dispatch): if an inset is found to be open
1517         on LFUN_INSET_APPLY, pass LFUN_INSET_MODIFY to its localDispatch.
1518
1519 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
1520
1521         * several files: ws changes only
1522
1523         * paragraph_funcs.C (TeXOnePar): take ParagraphList::iterator as args
1524         (TeXEnvironment): ditto
1525         (TeXDeeper): ditto
1526
1527         * buffer.C (makeLaTeXFile): adjust
1528         (latexParagraphs): make it take ParagraphList::iterator as args
1529
1530 2003-03-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
1531
1532         * buffer.C (latexParagraphs): adjust
1533
1534         * paragraph.C (TeXOnePar): move function...
1535         (optArgInset): move function...
1536         (TeXEnvironment): move function...
1537         * paragraph_pimpl.C (TeXDeeper): move function...
1538         * paragraph_funcs.C: ...here
1539
1540         * tabular.C (UseParbox): rewrite to use ParagraphList iterators.
1541
1542 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
1543
1544         * buffer.C (readInset): remove compability code for old Figure and
1545         InsetInfo insets
1546
1547 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
1548
1549         * buffer.C: ws changes
1550         (readInset):
1551
1552         * BufferView_pimpl.C: ditto
1553         * author.C: ditto
1554         * buffer.h: ditto
1555         * bufferlist.h: ditto
1556         * changes.h: ditto
1557         * lyxfunc.C: ditto
1558
1559 2003-02-28  Alfredo Braunstein <abraunst@libero.it>
1560
1561         * converter.[Ch]: split into itself +
1562         * graph.[Ch]
1563         * format.[Ch]
1564         * Makefile.am: += graph.[Ch] + format.[Ch]
1565         * MenuBackend.C
1566         * buffer.C
1567         * exporter.C
1568         * importer.C
1569         * lyx_main.C
1570         * lyxfunc.C
1571         * lyxrc.C: added #include "format.h"
1572
1573 2003-02-27  Angus Leeming  <leeming@lyx.org>
1574
1575         * BufferView_pimpl.C (dispatch): call a real, LyX dialog to insert
1576           a label.
1577
1578         * factory.C (createInset): add "label" to the factory.
1579
1580         * lyx_cb.[Ch] (getPossibleLabel): rewrite MenuInsertLabel to return the
1581           string and do no more.
1582
1583 2003-02-27  Angus Leeming  <leeming@lyx.org>
1584
1585         * commandtags.h:
1586         * LyXAction.C (init):
1587         * factory.C (createInset):
1588         * BufferView_pimpl.C (dispatch):
1589           collapse LFUN_XYZ_APPLY to LFUN_INSET_APPLY.
1590
1591         * lyxfunc.C (getStatus): remove LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY.
1592
1593         * lyxfunc.C (dispatch):
1594         * text3.C (dispatch): pass name to params2string.
1595
1596 2003-02-26  Angus Leeming  <leeming@lyx.org>
1597
1598         * BufferView_pimpl.C (dispatch): collapse the various LFUN_XYZ_APPLY
1599           blocks together.
1600           Rearrange the ~includes. Strip out the unnecessary ones.
1601
1602         * factory.C (createInset): reformat.
1603           create new insets for the various LFUN_XYZ_APPLY lfuns.
1604
1605 2003-02-26  John Levon  <levon@movementarian.org>
1606
1607         * lyxrow.h:
1608         * lyxrow.C: add isParStart,isParEnd helpers
1609
1610         * paragraph.h: make isInserted/DeletedText take refs
1611
1612         * paragraph_funcs.h:
1613         * paragraph_funcs.C: remove #if 0'd code
1614
1615         * lyxtext.h:
1616         * text3.C:
1617         * text2.C:
1618         * text.C: use lyxrow helpers above.
1619           Move draw and paint routines to RowPainter.
1620           Make several methods use refs not pointers.
1621           Make backgroundColor() const.
1622           Add markChangeInDraw(), isInInset().
1623           Merge changeRegionCase into changeCase.
1624           Make workWidth() shouldn't-happen code into an Assert.
1625
1626         * rowpainter.h:
1627         * rowpainter.C: new class for painting a row.
1628
1629         * vspace.h:
1630         * vspace.C: make inPixels take a ref
1631
1632 2003-02-26  Angus Leeming  <leeming@lyx.org>
1633
1634         * BufferView_pimpl.C (dispatch): use InsetCommand::localDispatch for
1635         LFUN_REF_APPLY.
1636
1637 2003-02-25  John Levon  <levon@movementarian.org>
1638
1639         * ispell.C: give the forked command a more accurate name
1640
1641 2003-02-22  John Levon  <levon@movementarian.org>
1642
1643         * toc.h:
1644         * toc.C: make TocItem store an id not a Paragraph *
1645           (bug #913)
1646
1647 2003-02-21  Angus Leeming  <leeming@lyx.org>
1648
1649         * commandtags.h: Retire LFUN_CITATION_INSERT, LFUN_CITATION_CREATE,
1650           LFUN_INSERT_BIBTEX, LFUN_BIBTEX_STYLE, LFUN_BIBDB_ADD, LFUN_BIBDB_DEL.
1651           Bring to life LFUN_DIALOG_SHOW_NEW_INSET, LFUN_DIALOG_SHOW_NEXT_INSET,
1652           LFUN_DIALOG_UPDATE, LFUN_DIALOG_HIDE, LFUN_DIALOG_DISCONNECT_INSET,
1653           LFUN_BIBITEM_APPLY, LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY,
1654           LFUN_INDEX_APPLY, LFUN_REF_APPLY, LFUN_TOC_APPLY, LFUN_URL_APPLY,
1655
1656         * BufferView_pimpl.C (dispatch):
1657         * LyXAction.C (init):
1658         * factory.C (createInset):
1659         * lyxfunc.C (getStatus, dispatch):
1660         * text3.C (dispatch): retire old LFUNs and bring new ones to life.
1661
1662 2003-02-21  Angus Leeming  <leeming@lyx.org>
1663
1664         * BufferView_pimpl.C (MenuInsertLyXFile):
1665         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
1666         * lyxfunc.C (menuNew, open, doImport):
1667           no longer pass a LyXView & to fileDlg.
1668
1669 2003-02-21  Angus Leeming  <leeming@lyx.org>
1670
1671         * BufferView_pimpl.C: replace insetbib.h with insetbibtex.h.
1672         * LyXAction.C: change, BIBKEY to BIBITEM.
1673         * buffer.C: replace insetbib.h with insetbibitem.h and insetbibtex.h.
1674         Change InsetBibKey to InsetBibitem.
1675         Change BIBKEY_CODE to BIBITEM_CODE.
1676         * commandtags.h: change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
1677         * factory.C: replace insetbib.h with insetbibitem.h.
1678         Change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
1679         * paragraph.C: replace insetbib.h with insetbibitem.h.
1680         * paragraph.[Ch]: change InsetBibKey to InsetBibitem.
1681         Change bibkey() to bibitem().
1682         * text.C: remove insetbib.h.
1683         * text2.C: replace insetbib.h with insetbibitem.h.
1684         change bibkey() to bibitem().
1685         * text3.C: remove insetbib.h.
1686         change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
1687
1688 2003-02-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1689
1690         * lyxrc.C (output): enclose user email in quotes (in case there are
1691         several words)
1692
1693 2003-02-18  John Levon  <levon@movementarian.org>
1694
1695         * buffer.h: add std::
1696
1697 2003-02-17  John Levon  <levon@movementarian.org>
1698
1699         * SpellBase.h:
1700         * ispell.h:
1701         * ispell.C:
1702         * pspell.h:
1703         * pspell.C: reworking. Especially in ispell, a large
1704           number of clean ups and bug fixes.
1705
1706         * lyxfunc.C: fix revert to behave sensibly
1707
1708 2003-02-17 André Pönitz <poenitz@gmx.net>
1709
1710         * LyXAction.C:
1711         * commandtags.h: new LFUN_INSERT_BIBKEY
1712
1713         * layout.h:
1714         * lyxlayout.C:
1715         * buffer.C:
1716         * factory.C:
1717         * text.C:
1718         * text2.C:
1719         * text3.C:
1720         * paragraph.[Ch]:
1721         * paragraph_func.C: remove special bibkey handling
1722
1723 2003-02-17  John Levon  <levon@movementarian.org>
1724
1725         * text.C (Delete): fix case where delete at the end of
1726           the very first paragraph would not merge the pars
1727
1728 2003-02-17  John Levon  <levon@movementarian.org>
1729
1730         * lyxrow.C: fix lastPrintablePos()
1731
1732 2003-02-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1733
1734         * bufferparams.C (writeLaTeX): add a std:here
1735
1736         * buffer.C: and remove a using directive there
1737
1738 2003-02-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1739
1740         * buffer.C (makeLaTeXFile): move the code that generates the
1741           preamble...
1742
1743         * bufferparams.C (writeLaTeX): ... in this new method
1744
1745         * LaTeXFeatures.C (getEncodingSet): make const
1746           (getLanguages): make const
1747
1748         * MenuBackend.C (binding): returns the binding associated to this
1749           action
1750           (add): sets the status of each item by calling getStatus. Adds
1751           some intelligence.
1752           (read): add support for OptSubMenu
1753           (expand): remove extra separator at the end of expanded menu
1754
1755 2003-02-15  John Levon  <levon@movementarian.org>
1756
1757         * BufferView.C:
1758         * BufferView_pimpl.C:
1759         * bufferlist.h:
1760         * bufferlist.C: remove pointless BufferStorage bloat. Remove
1761           inset code that had no actual effect. Remove unneeded status
1762           code.
1763
1764 2003-02-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1765
1766         * buffer.C (makeLaTeXFile): fix counting of number of line feeds
1767           in preamble
1768
1769 2003-02-14  Michael Schmitt <michael.schmitt@teststep.org>
1770
1771         * text.C (drawLengthMarker): also draw an arrow marker for
1772           symbolic lengths (medskip...)
1773
1774 2003-02-14  John Levon  <levon@movementarian.org>
1775
1776         * tabular.h:
1777         * tabular.C: better method names
1778
1779 2003-02-14  John Levon  <levon@movementarian.org>
1780
1781         * BufferView_pimpl.C:
1782         * bufferlist.C:
1783         * buffer.C:
1784         * converter.C:
1785         * lyx_cb.C:
1786         * lyxfunc.C: change prohibit/allowInput to busy(bool), as
1787           it's a more accurate name. Remove some pointless uses.
1788
1789 2003-02-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1790
1791         * text2.C (LyXText): change order of initilizers to shut off
1792           warnings
1793
1794 2003-02-14  John Levon  <levon@movementarian.org>
1795
1796         * buffer.C: use ParIterator for getParFromID()
1797
1798         * paragraph.h:
1799         * paragraph.C:
1800         * paragraph_pimpl.h:
1801         * paragraph_pimpl.C: remove unused getParFromID()
1802
1803 2003-02-14  John Levon  <levon@movementarian.org>
1804
1805         * buffer.C: remove some very old #if 0'd parse code
1806
1807 2003-02-13  John Levon  <levon@movementarian.org>
1808
1809         * text.h:
1810         * text.C:
1811         * text2.C: move hfillExpansion(), numberOfSeparators(),
1812           rowLast(), rowLastPrintable(), numberofHfills(),
1813           numberOfLabelHfills() ...
1814
1815         * lyxrow.h:
1816         * lyxrow.C: ... to member functions here.
1817
1818         * paragraph.h:
1819         * paragraph.C:
1820         * lyxtext.h:
1821         * text.C: remove LyXText::beginningOfMainBody(), and call
1822           p->beginningOfMainBody() directly. Move the check for
1823           LABEL_MANUAL into the latter.
1824
1825         * text.h:
1826         * text.C:
1827         * text2.C:
1828         * vspace.C:
1829         * BufferView.h:
1830         * BufferView.C: make defaultHeight() be a free defaultRowHeight()
1831
1832         * text.h:
1833         * text.C:
1834         * text2.C:
1835         * text3.C:
1836         * frontends/screen.C: move bv_owner private, introduce isTopLevel()
1837           to make it clear we're testing for outmost-lyxtext vs. inset's lyxtext
1838
1839 2003-02-13  John Levon  <levon@movementarian.org>
1840
1841         * CutAndPaste.C: remove debug
1842
1843 2003-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1844
1845         * paragraph.C (asString): remove two unused variables
1846
1847         * lyxtextclass.C (readTitleType):
1848           (Read):
1849           (LyXTextClass): handle new members titletype_ and titlename_
1850
1851         * buffer.C (latexParagraphs): honor LyXTextClass::titletype
1852
1853 2003-02-09  John Levon  <levon@movementarian.org>
1854
1855         * buffer.h:
1856         * buffer.C: replace hand-coded list with a map for the dep clean
1857
1858 2003-02-08  John Levon  <levon@movementarian.org>
1859
1860         * LaTeX.C: consolidate code into showRunMessage() helper
1861
1862 2003-02-08  John Levon  <levon@movementarian.org>
1863
1864         * lyxfind.C:
1865         * lyxtext.h:
1866         * text2.C:
1867         * BufferView.C: change setSelectionOverString() to setSelectionRange()
1868           and pass the size in explicitly
1869
1870         * BufferView_pimpl.h:
1871         * BufferView_pimpl.C:
1872         * BufferView.h:
1873         * BufferView.C: add getCurrentChange()
1874
1875         * BufferView_pimpl.h:
1876         * BufferView_pimpl.C: handle change lfuns
1877
1878         * CutAndPaste.C: merge the cut and copy code. Rework the cut code
1879           for changes. Mark pasted paragraphs as new.
1880
1881         * support/lyxtime.h:
1882         * support/lyxtime.C:
1883         * DepTable.C: abstract time_t as lyx::time_type
1884
1885         * LColor.h:
1886         * LColor.C: add colours for new text, deleted text, changebars
1887
1888         * LaTeXFeatures.C: add dvipost as a simple feature. Make the color
1889           package use "usenames" option.
1890
1891         * commandtags.h:
1892         * lyxfunc.C:
1893         * LyXAction.C: add change lfuns
1894
1895         * Makefile.am:
1896         * author.h:
1897         * author.C: author handling
1898
1899         * buffer.h:
1900         * buffer.C: add a per-buffer author list, with first entry as
1901           current author. Handle new .lyx tokens for change tracking. Output
1902           author list to .lyx file. Output dvipost stuff to .tex preamble.
1903           Bump lyx format to 222.
1904
1905         * bufferlist.h:
1906         * bufferlist.C: add setCurrentAuthor() to reset current author details
1907           in all buffers.
1908
1909         * bufferparams.h:
1910         * bufferparams.C: add param for tracking
1911
1912         * bufferview_funcs.C: output change info in minibuffer
1913
1914         * Makefile.am:
1915         * changes.h:
1916         * changes.C: add change-tracking structure
1917
1918         * debug.h:
1919         * debug.C: add CHANGES debug flag
1920
1921         * lyxfind.h:
1922         * lyxfind.C: add code for finding the next change piece
1923
1924         * lyxrc.h:
1925         * lyxrc.C: add user_name and user_email
1926
1927         * lyxrow.h:
1928         * lyxrow.C: add a metric for the top of the text line
1929
1930         * lyxtext.h:
1931         * text.C: implement accept/rejectChange()
1932
1933         * lyxtext.h:
1934         * text.C: paint changebars. Paint new/deleted text in the chosen colours.
1935           Strike through deleted text.
1936
1937         * paragraph.h:
1938         * paragraph.C:
1939         * paragraph_pimpl.h:
1940         * paragraph_pimpl.C: output change markers in .lyx and .tex. Pass in the current change
1941           to the insert functions. Rework erase to mark text as deleted, adding
1942           an eraseIntern() and a range-based erase(). Implement
1943           per-paragraph change lookup and accept/reject.
1944
1945         * paragraph_funcs.C: Fixup paste for change tracking.
1946
1947         * tabular.C: mark added row/columns as new.
1948
1949         * text.C: fix rowLast() to never return -1. Don't allow spellchecking of deleted
1950           text. Track transpose changes. Don't allow paragraph break or merge where appropriate.
1951
1952         * text2.C: leave cursor at end of selection after a cut.
1953
1954 2003-02-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1955
1956         * text.C (getLengthMarkerHeight):
1957         (drawLengthMarker): make the `symbolic' lengths (small/med/big)
1958         visible on screen too.
1959
1960 2003-02-07  John Levon  <levon@movementarian.org>
1961
1962         * text.C: s/LYX_PAPER_MARGIN/PAPER_MARGIN/g
1963
1964 2003-02-05  Angus Leeming  <leeming@lyx.org>
1965
1966         * lyxserver.C (read_ready): revert my patch of 11 September last year
1967         as it sends PC cpu through the roof. Presumably this means that
1968         the lyxserver will no longer run on an Alpha...
1969
1970 2003-01-30  Angus Leeming  <leeming@lyx.org>
1971
1972         * factory.C (createInset): create an InsetCommandParam of type "index"
1973         and use it to 'do the right thing'.
1974
1975         * text2.C (getStringToIndex): ensure that cursor position is always
1976         reset to the reset_cursor position.
1977
1978 2003-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1979
1980         * lyxfunc.C (getStatus): "buffer-export custom" should never be
1981         disabled.
1982
1983 2003-01-20  Michael Schmitt <michael.schmitt@teststep.org>
1984
1985         * bufferview.C:
1986         * lyxcb.C:
1987         * lyxfunc.C: Output messages with identical spelling, punctuation,
1988         and spaces
1989
1990 2003-01-22  Michael Schmitt  <Michael.Schmitt@teststep.org>
1991
1992         * MenuBackend.C (expandFormats): List only viewable export formats
1993         in "View" menu
1994
1995         * buffer.C (parseSingleLyXformat2Token): Fix misleading error
1996         message
1997
1998         * lyxfunc.C (getStatus): Make sure that formats other than
1999         "fax" can also be disabled
2000
2001 2003-01-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2002
2003         * text3.C (dispatch): put the lfuns that insert insets in 3
2004         groups, and call doInsertInset with appropriate arguments.
2005         (doInsertInset): new function, that creates an inset and inserts
2006         it according to some boolean parameters.
2007
2008 2003-01-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2009
2010         * buffer.C (readFile): remember to pass on 'par' when calling
2011         readFile recursively.
2012
2013 2003-01-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2014
2015         * MenuBackend.C (expandFormats): add "..." to import formats.
2016
2017 2003-01-15  Dekel Tsur  <dekelts@tau.ac.il>
2018
2019         * paragraph.C (asString): Remove XForms RTL hacks.
2020
2021 2003-01-13  Alfredo Braunstein <abraunst@libero.it>
2022         * buffer.C: fix typo
2023
2024 2003-01-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
2025
2026         * Makefile.am (LIBS): delete var
2027         (lyx_LDADD): add @LIBS@ here instead.
2028
2029 2003-01-08  Michael Schmitt <Michael.Schmitt@teststep.org>
2030
2031         * Clarify the meaning of "wheel mouse jump"
2032
2033 2003-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2034
2035         * lyxfunc.C (getStatus): fix disabling of cut/paste of cells in a
2036         tabular in a float
2037
2038 2003-01-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2039
2040         * importer.C (Loaders): do not preallocate 3 elements in the
2041         vector, since one ends up with 6 elements otherwise
2042
2043 2002-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2044
2045         * DepTable.C (write): write the file name as last element of the
2046         .dep file (because it may contain spaces)
2047         (read): read info in the right order
2048
2049 2003-01-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2050
2051         * paragraph_pimpl.C (simpleTeXBlanks):
2052         (simpleTeXSpecialChars):
2053         * paragraph.C (simpleTeXOnePar): make `column' unsigned.
2054
2055         * tabular.C (latex): add some missing case statements. Reindent.
2056
2057         * MenuBackend.C (expandToc): remove unused variable.
2058
2059 2003-01-06  Michael Schmitt <Michael.Schmitt@teststep.org>
2060
2061         * LColor.C:
2062         * LaTeX.C:
2063         * LyXAction.C:
2064         * MenuBackend.C:
2065         * buffer.C:
2066         * exporter.C:
2067         * lyxfunc.C:
2068         * lyxrc.C: fix inconsistent usage of spaces, colons, capitalization,
2069         and the like.
2070
2071 2003-01-05  John Levon  <levon@movementarian.org>
2072
2073         * BufferView.h:
2074         * BufferView.C: add getEncoding()
2075
2076         * kbsequence.h:
2077         * kbsequence.C: do not store last keypress
2078
2079         * lyxfunc.h:
2080         * lyxfunc.C: store last keypress here instead. Pass encoding
2081           to getISOEncoded()
2082
2083 2002-12-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2084
2085         * lyx_main.C (init): remove annoying error message when following
2086         symbolic links (bug #780)
2087
2088 2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2089
2090         * text.C (insertChar):
2091         * lyxrc.C (getDescription): remove extra spaces
2092
2093 2002-12-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2094
2095         * lyxrc.C (getDescription): remove extra spaces
2096
2097 2002-12-20  John Levon  <levon@movementarian.org>
2098
2099         * text3.C: hack fix for page up/down across tall rows
2100
2101 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2102
2103         * text2.C (pasteEnvironmentType): avoid crash if layout-copy has
2104         not been invoked
2105
2106 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2107
2108         * lyxfunc.C (getStatus): query lyx_gui::getStatus() to catter for
2109         unimplemented lfuns. Make LFUN_THESAURUS_ENTRY status unknown if
2110         thesaurus is not compiled in
2111
2112 2002-12-17  Alfredo Braunstein <abraunst@libero.it>
2113
2114         * lyxfunc.C: correct  inversion of WORDFINDBACK/FORWARD
2115
2116 2002-12-16  Angus Leeming  <leeming@lyx.org>
2117
2118         * lyxrc.[Ch]:
2119         * lyx_main.C (init): remove override_x_deadkeys stuff.
2120
2121 2002-12-12  John Levon  <levon@movementarian.org>
2122
2123         * lyxfunc.C: use LyXKeySym->isText() as last-ditch
2124           insert. Only remove shift modifier under strict
2125           circumstances.
2126
2127 2002-12-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
2128
2129         * MenuBackend.C (expandToc): fix crash.
2130
2131 2002-12-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
2132
2133         * MenuBackend.C (expandToc): gettext on float names.
2134
2135 2002-12-03  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
2136
2137         * lyxlength.[Ch]: set default unit to UNIT_NONE,
2138         implement bool empty() [bug 490]
2139
2140 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2141
2142         * text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
2143
2144 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2145
2146         * several files: ws changes
2147
2148 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2149
2150         * text2.C (setCounter): clean up a bit, use boost.format.
2151         (updateCounters): initialize par upon declaration.
2152
2153         * CutAndPaste.C (SwitchLayoutsBetweenClasses): set the layout also
2154         if the layout exists. We do not just store the layout any more.
2155         (SwitchLayoutsBetweenClasses): use boost.format
2156
2157 2002-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2158
2159         * converter.C (convert): if from and to files are the same, use a
2160         temporary files as intermediary
2161
2162 2002-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2163
2164         * commandtags.h:
2165         * LyXAction.C (init): remove LFUN_VECTOR (bug 662)
2166
2167 2002-11-27  Dekel Tsur  <dekelts@tau.ac.il>
2168
2169         * lyxrc.[Ch]: Add {roman,sans,typewriter}_font_foundry variables.
2170
2171 2002-11-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
2172
2173         * tabular.C (asciiPrintCell): use string(size, char) instead of
2174         explicit loop.
2175
2176         * sgml.C (openTag): fix order of arguments to string constructor
2177         (closeTag): ditto
2178
2179         * lyxfunc.C (dispatch): use boost.format
2180
2181         * lots of files: change "c" -> 'c'
2182
2183 2002-11-25  Dekel Tsur  <dekelts@tau.ac.il>
2184
2185         * encoding.C: Patch from Isam Bayazidi: Fix Arabic shaping.
2186
2187 2002-11-25  Angus Leeming  <leeming@lyx.org>
2188
2189         * BoostFormat.h: wrap code inside #ifdef __GNUG__ block.
2190
2191         * lyx_main.C (init): compile fix.
2192
2193 2002-11-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
2194
2195         * lyx_cb.C (start): boost.formatify
2196         do not include <iostream>
2197
2198         * lengthcommon.C: ws only
2199
2200         * boost-inst.C,BoostFormat.h: add more explict instantations
2201
2202 2002-11-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
2203
2204         * lots of files: handle USE_BOOST_FORMAT
2205
2206 2002-11-21  John Levon  <levon@movementarian.org>
2207
2208         * pspell.C: fix compile
2209
2210 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2211
2212         * lyxfunc.C (dispatch): use boost::format
2213         (open): ditto
2214         (doImport): ditto
2215
2216         * lyxfont.C (stateText): use boost::format
2217
2218         * lyx_main.C (LyX): use boost::format
2219         (init): ditto
2220         (queryUserLyXDir): ditto
2221         (readRcFile): ditto
2222         (parse_dbg): ditto
2223         (typedef boost::function): use the recommened syntax.
2224
2225         * importer.C (Import): use boost::format
2226
2227         * debug.C (showLevel): use boost::format
2228
2229         * converter.C (view): use boost::format
2230         (convert): ditto
2231         (move): ditto
2232         (scanLog): ditto
2233
2234         * bufferview_funcs.C (currentState): use boost::format
2235
2236         * bufferlist.C (emergencyWrite): use boost::format
2237
2238         * buffer.C (readLyXformat2): use boost::format
2239         (parseSingleLyXformat2Token): ditto
2240
2241         * Makefile.am (lyx_SOURCES): add BoostFormat.h and boost-inst.C
2242
2243         * LaTeX.C (run): use boost::format
2244
2245         * Chktex.C (scanLogFile): use boost::format
2246
2247         * BufferView_pimpl.C (savePosition): use boost::format
2248         (restorePosition): ditto
2249         (MenuInsertLyXFile): ditto
2250
2251         * BoostFormat.h: help file for explicit instation.
2252
2253 2002-11-21  Dekel Tsur  <dekelts@tau.ac.il>
2254
2255         * tabular.C (latex): Support for block alignment in fixed width
2256         columns.
2257
2258 2002-11-17  John Levon  <levon@movementarian.org>
2259
2260         * BufferView_pimpl.C:
2261         * lyx_cb.C:
2262         * lyxfunc.C: split filedialog into open/save
2263
2264 2002-11-08  Juergen Vigna  <jug@sad.it>
2265
2266         * undo_funcs.C (textHandleUndo): fixed problems with undo introduced
2267         by my last patch (hopefully).
2268
2269 2002-11-08  John Levon  <levon@movementarian.org>
2270
2271         * iterators.h:
2272         * iterators.C:
2273         * buffer.h:
2274         * buffer.C:
2275         * paragraph.h:
2276         * paragraph.C:
2277         * toc.h:
2278         * toc.C: ParConstIterator, and use it (from Lars)
2279
2280 2002-11-07  Ben Stanley  <bds02@uow.edu.au>
2281
2282         * lyxtextclass.[Ch]: revise and add doxygen comments
2283
2284 2002-11-07  John Levon  <levon@movementarian.org>
2285
2286         * text.C: fix progress value for spellchecker
2287
2288         * toc.C: fix navigate menu for insetwrap inside minipage
2289
2290         * paragraph_funcs.C: added FIXME for suspect code
2291
2292 2002-11-07  John Levon  <levon@movementarian.org>
2293
2294         * BufferView_pimpl.C: fix redrawing of insets
2295           on buffer switch
2296
2297 2002-11-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2298
2299         * text2.C (updateCounters): fix bug 668
2300
2301 2002-11-04  Dekel Tsur  <dekelts@tau.ac.il>
2302
2303         * text3.C (dispatch): Do not make the buffer dirty when moving the
2304         cursor.
2305
2306 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
2307
2308         * vc-backend.C: STRCONV
2309         (scanMaster): ditto
2310
2311         * text2.C (setCounter): STRCONV
2312
2313         * paragraph.C (asString): STRCONV
2314
2315         * lyxlength.C (asString): STRCONV
2316         (asLatexString): ditto
2317
2318         * lyxgluelength.C (asString): STRCONV
2319         (asLatexString): ditto
2320
2321         * lyxfunc.C (dispatch): STRCONV
2322         (open): ditto
2323
2324         * lyxfont.C (stateText): STRCONV
2325
2326         * importer.C (Import): STRCONV
2327
2328         * counters.C (labelItem): STRCONV
2329         (numberLabel): ditto
2330         (numberLabel): remove unused ostringstream o
2331
2332         * chset.C: STRCONV
2333         (loadFile): ditto
2334
2335         * bufferview_funcs.C (currentState): STRCONV
2336
2337         * buffer.C (readFile): STRCONV
2338         (asciiParagraph): ditto
2339         (makeLaTeXFile): ditto
2340
2341         * Spacing.C (writeEnvirBegin): STRCONV
2342
2343         * LaTeXFeatures.C (getLanguages): STRCONV
2344         (getPackages): ditto
2345         (getMacros): ditto
2346         (getBabelOptions): ditto
2347         (getTClassPreamble): ditto
2348         (getLyXSGMLEntities): ditto
2349         (getIncludedFiles): ditto
2350
2351         * LaTeX.C: STRCONV
2352         (run): ditto
2353         (scanAuxFile): ditto
2354         (deplog): ditto
2355
2356         * LString.h: add the STRCONV macros
2357
2358         * BufferView_pimpl.C (savePosition): STRCONV
2359         (restorePosition): ditto
2360         (MenuInsertLyXFile): ditto
2361
2362         * vc-backend.C (scanMaster): change from submatch[...] to
2363         submatch.str(...)
2364
2365         * funcrequest.C: include config.h
2366
2367         * factory.C: include config.h
2368
2369         * chset.C (loadFile): change from submatch[...] to submatch.str(...)
2370
2371         * box.C: include config.h
2372
2373         * LaTeX.C (scanAuxFile): change from submatch[...] to
2374         submatch.str(...)
2375         (deplog): ditto
2376
2377 2002-10-25  Angus Leeming  <leeming@lyx.org>
2378
2379         * BufferView_pimpl.C (cursorToggle): remove reapSpellchecker hack.
2380
2381         * ispell.[Ch] (setError): new method.
2382         * ispell.C (c-tor): move out child process into new class LaunchIspell.
2383         Use setError() insetead of goto END.
2384
2385         * lyx_cb.C (AutoSave): move out child process into new class
2386         AutoSaveBuffer.
2387
2388 2002-10-30  John Levon  <levon@movementarian.org>
2389
2390         * text3.C: make start appendix undoable
2391
2392 2002-10-24  Dekel Tsur  <dekelts@tau.ac.il>
2393
2394         * lyxlength.C (inPixels): Fix returned value.
2395
2396         * paragraph.C (TeXOnePar): Fix bug with language changes in nested
2397         environment.
2398
2399 2002-10-24  Angus Leeming  <leeming@lyx.org>
2400
2401         * lyxgluelength.h: no need to forward declare BufferParams
2402         or BufferView, so don't.
2403
2404 2002-10-21  John Levon  <levon@movementarian.org>
2405
2406         * BufferView.C: menuUndo ->undo, redo
2407
2408         * BufferView.h: document, remove dead, make some methods private
2409
2410         * paragraph_funcs.h:
2411         * paragraph_funcs.C:
2412         * CutAndPaste.C: s/pasteParagraph/mergeParagraph
2413
2414         * buffer.h:
2415         * buffer.C:
2416         * sgml.h:
2417         * sgml.C: move sgml open/close tag into sgml.C
2418
2419         * bufferview_funcs.h: unused prototype
2420
2421         * lyxfunc.h:
2422         * lyxfunc.C: remove unused
2423
2424         * lyxtext.h:
2425         * text.C: remove unused
2426
2427 2002-10-21  John Levon  <levon@movementarian.org>
2428
2429         * BufferView.h:
2430         * BufferView.C:
2431         * BufferView_pimpl.h:
2432         * BufferView_pimpl.C: fix mouse wheel handling based on
2433           patch from Darren Freeman
2434
2435 2002-10-09  Dekel Tsur  <dekelts@tau.ac.il>
2436
2437         * lyx_main.C (queryUserLyXDir): Fix automatic reconfiguration.
2438
2439 2002-10-17  Dekel Tsur  <dekelts@tau.ac.il>
2440
2441         * lyxlength.C (inPixels): Fix hanfling of negative length.
2442         Fix LyXLength::MU case.
2443
2444 2002-10-16  John Levon  <levon@movementarian.org>
2445
2446         * buffer.C: remove \\protected_separator parsing done by lyx2lyx now
2447
2448 2002-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2449
2450         * converter.C (view): add support for $$i (file name) and $$p
2451         (file path) for the viewer command. If $$i is not specified, then
2452         it is appended to the command (for compatibility with old syntax)
2453
2454 2002-10-14  Juergen Vigna  <jug@sad.it>
2455
2456         * undo_funcs.C (textHandleUndo): alter the order in which the
2457         new undopar is added to the LyXText, as we have to set first
2458         the right prev/next and then add it as otherwise the rebuild of
2459         LyXText is not correct. Also reset the cursor to the right paragraph,
2460         with this IMO we could remove the hack in "redoParagraphs()".
2461
2462 2002-10-09  Angus Leeming  <leeming@lyx.org>
2463
2464         * Bufferview_pimpl.C (dispatch): call InsetCitation::setLoadingBuffer
2465         to turn off an optimisation if a new inset is to be inserted.
2466
2467 2002-10-11 André Pönitz <poenitz@gmx.net>
2468
2469         * lyxtext.h: make some functions public to allow access
2470         from inset/lyxtext for handling LFUN_PRIOR/NEXT
2471
2472 2002-10-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2473
2474         * text3.C (dispatch): when changing layout, avoid an infinite loop
2475         [bug #652]
2476
2477 2002-10-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2478
2479         * lyxrc.C (read): treat a viewer or converter command of "none" as
2480         if it were empty.
2481
2482         * MenuBackend.C (expandFormats): for an update, also allow the
2483         formats that are not viewable
2484
2485         * lyx_main.C (queryUserLyXDir): re-run automatically the configure
2486         script if it is newer than the lyxrc.defaults in user directory
2487
2488 2002-10-07 André Pönitz <poenitz@gmx.net>
2489
2490         * text.C: Vitaly Lipatov's small i18n fix
2491
2492 2002-09-25  Angus Leeming  <leeming@lyx.org>
2493
2494         * ispell.h: doxygen fix.
2495
2496 2002-09-25  Dekel Tsur  <dekelts@tau.ac.il>
2497
2498         * buffer.h (readFile): Add a new argument to the method, to allow
2499         reading of old-format templates.
2500
2501 2002-09-24  Dekel Tsur  <dekelts@tau.ac.il>
2502
2503         * toc.C (getTocList): Get TOC from InsetWrap.
2504
2505 2002-09-16  John Levon  <levon@movementarian.org>
2506
2507         * lyxfunc.C: check tabular for cut/copy too
2508
2509 2002-09-12  John Levon  <levon@movementarian.org>
2510
2511         * LyXAction.C: tidy
2512
2513         * factory.h:
2514         * factory.C: add header
2515
2516         * paragraph_funcs.h:
2517         * paragraph_funcs.C: cleanup
2518
2519 2002-09-11  John Levon  <levon@movementarian.org>
2520
2521         * PrinterParams.h: odd/even default to true
2522
2523 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
2524
2525         * PrinterParams.h: update printer parameters for new xforms dialog
2526
2527 2002-09-11  Angus Leeming  <leeming@lyx.org>
2528
2529         * lyxserver.C (read_ready): re-write to make it more transparent
2530         and to make it work in coherent fashion under Tru64 Unix.
2531
2532 2002-09-11  André Pönitz <poenitz@gmx.net>
2533
2534         * commandtags.h:
2535         * LyXAction.C:
2536         * text3.C: implement LFUN_WORDSEL
2537
2538 2002-09-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
2539
2540         * lyxtextclass.h: don't include FloatList.h, forward declare instead.
2541         make floatlist_ a boost::shared_ptr<FloatList>
2542
2543         * lyxtextclass.C: include FloatList.h
2544         (LyXTextClass): initialize floatlist_
2545         (TextClassTags): add TC_NOFLOAT
2546         (Read): match "nofloat" to TC_NOFLOAT and use it.
2547         (readFloat): modify call to floatlist_
2548         (floats): ditto
2549         (floats): ditto
2550
2551         * FloatList.[Ch] (FloatList): remove commented out float
2552         initialization.
2553         (erase): new function
2554
2555 2002-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2556
2557         * MenuBackend.C (expandToc): fix crash when there is no document
2558         open
2559
2560 2002-09-10  Dekel Tsur  <dekelts@tau.ac.il>
2561
2562         * many files: Add insetwrap.
2563
2564 2002-09-09  John Levon  <levon@movementarian.org>
2565
2566         * text2.C: remove confusing and awkward depth wraparound
2567
2568 2002-09-09  John Levon  <levon@movementarian.org>
2569
2570         * BufferView_pimpl.C: Don't use empty arg for LFUN_CHILD_INSERT
2571
2572         * buffer.h:
2573         * buffer.C: remove getIncludeonlyList()
2574
2575         * paragraph.C:
2576         * lyxfunc.C: remove headers
2577
2578 2002-09-09  Juergen Vigna  <jug@sad.it>
2579
2580         * text.C (getColumnNearX): fix form Michael this is most
2581         probably a cut&paste bug.
2582
2583 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
2584
2585         * remove all INHERIT_LANG and INHERIT_LANGUAGE commented code
2586
2587         * LaTeXFeatures.C (useLayout): let tclass and lyt be a const
2588         references, ws changes.
2589
2590         * text2.C (init): update counters after init
2591         (insertParagraph): no need to set counter on idividual paragraphs.
2592         (setCounter): access the counters object in the textclass object
2593         on in the buffer object.
2594         (updateCounters): ditto
2595
2596         * lyxtextclass.C: include counters.h, add variable ctrs_ as
2597         shared_ptr<Counters> to avoid loading counters.h in all
2598         compilation units.
2599         (LyXTextClass): initialize ctrs_
2600         (TextClassTags): add TC_COUNTER, and ...
2601         (Read): use it here.
2602         (CounterTags): new tags
2603         (readCounter): new function
2604         (counters): new funtion
2605         (defaultLayoutName): return a const reference
2606
2607         * counters.C (Counters): remove contructor
2608         (newCounter): remove a couple of unneeded statements.
2609         (newCounter): simplify a bit.
2610         (numberLabel): some small formatting changes.
2611
2612         * buffer.[Ch]: remove all traces of counters, move the Counters
2613         object to the LyXTextClass.
2614
2615 2002-09-06  Alain Castera  <castera@in2p3.fr>
2616
2617         * tabular.C: uses \tabularnewline; uses >{...} construct from array
2618         package to set the horizontal alignment on fixed width columns.
2619
2620         * lyx_sty.C:
2621         * lyx_sty.h: added tabularnewline macro def.
2622
2623         * LaTeXFeatures.C: added NeedTabularnewline macro feature
2624
2625 2002-09-06  John Levon  <levon@movementarian.org>
2626
2627         * LyXAction.C: tooltips for sub/superscript
2628
2629         * MenuBackend.C: a bit more verbose
2630
2631         * lyxfunc.C: tiny clean
2632
2633         * undo_funcs.C: document undo_frozen
2634
2635 2002-09-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
2636
2637         * counters.C (Counters): add missing algorithm counter.
2638
2639         * text2.C (setCounter): lookup the counter with layouts latexname
2640         instead of by section number.
2641         (setCounter): use a hackish way to lookup the correct enum
2642         counter.
2643         a float name->type change
2644         reset enum couners with counter name directly instead of depth value.
2645
2646         * counters.C (Counters): remove the push_backs, change to use the
2647         float type not the float name.
2648         (labelItem): remove unused string, float name->type change
2649
2650         * counters.h: don't include vector, loose the enums and sects vectors
2651
2652 2002-09-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
2653
2654         * lyxtextclass.C (TextClassTags): add TC_FLOAT
2655         (Read): add float->TC_FLOAT to textclassTags
2656         (Read): and handle it in the switch
2657         (readFloat): new function
2658
2659         * FloatList.C (FloatList): comment out the hardcoded float
2660         definitions.
2661
2662         * lyxlayout.h: ws change.
2663
2664 2002-08-29  Dekel Tsur  <dekelts@tau.ac.il>
2665
2666         * buffer.C (readFile): Look for lyx2lyx in LYXDIR/lyx2lyx/
2667
2668 2002-09-03  Angus Leeming  <leeming@lyx.org>
2669
2670         * BufferView_pimpl.h: qualified name is not allowed in member
2671         declaration: WorkArea & Pimpl::workarea() const;
2672
2673         * factory.C: added using std::endl directive.
2674
2675         * text3.C: added using std::find and std::vector directives.
2676
2677 2002-08-29  André Pönitz <poenitz@gmx.net>
2678
2679         * lyxtext.h:
2680         * text2.C: remove unused member number_of_rows
2681
2682         * Makefile.am:
2683         * BufferView2.C: remove file, move contents to...
2684         * BufferView.C: ... here
2685
2686         * BufferView_pimpl.C:
2687         * factory.C: move more inset creation to factory
2688
2689         * vspace.C: avoid direct usage of LyXText, ws changes
2690
2691         * BufferView.[Ch]:
2692                 don't provide direct access to WorkArea, use two simple
2693                 acessors haveSelction() and workHeight() instead
2694
2695
2696 2002-08-29  John Levon  <levon@movementarian.org>
2697
2698         * BufferView_pimpl.C (dispatch): do not continue when
2699           no buffer
2700
2701 2002-08-28  André Pönitz <poenitz@gmx.net>
2702
2703         * commandtags.h: new LFUN_MOUSE_DOUBLE, LFUN_MOUSE_TRIPLE
2704
2705         * BufferView.h:
2706         * BufferView_pimpl.[Ch] move work area mouse event to LFUNs
2707
2708 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
2709
2710         * buffer.C: increment LYX_FORMAT to 221
2711
2712         * lyxrc.[Ch]: declare display_graphics as grfx::DisplayType and use
2713         grfx::displayTranslator.find(foo); include graphics/GraphicsTypes.h.
2714
2715         * lyxrc.C: use more "if (...) { } else { }" style (John's advice).
2716
2717         * lyx_main.C: call once the setDisplayTranslator(); is that okay here?
2718
2719 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2720
2721         * factory.C (createInset): use LyXTextClass::floats
2722
2723         * MenuBackend.C (expandFloatListInsert):
2724         (expandFloatInsert):
2725         (expandToc):
2726
2727         * text2.C (setCounter):
2728
2729         * LaTeXFeatures.C (useFloat):
2730         (getFloatDefinitions):
2731
2732         * BufferView_pimpl.C (dispatch): use LyXTextClass::floats()
2733
2734         * lyxtextclass.[Ch]: rename layoutlist to layoutlist_; add
2735         floatlist_, with accessor floats().
2736
2737         * FloatList.h: remove global FloatList
2738
2739 2002-08-26  André Pönitz <poenitz@gmx.net>
2740
2741         * paragraph.[Ch]: Martin's patch for the \end_deeper bug
2742
2743         * BufferView.h:
2744         * BufferView2.C:
2745         * BufferView_pimpl.C:
2746         * text3.C: mun hanfling of LFUN_CUT/COPY/PASTE to LyXText
2747
2748 2002-08-25  John Levon  <levon@movementarian.org>
2749
2750         * LyXAction.C: fix margin note description
2751
2752 2002-08-24  John Levon  <levon@movementarian.org>
2753
2754         * buffer.C:
2755         * bufferlist.C:
2756         * bufferview_funcs.C:
2757         * lyxfont.C:
2758         * undo_funcs.C: cleanups
2759
2760         * lyxfunc.C: disable CUT/COPY when no selection
2761
2762 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
2763
2764         * lyxlength.[Ch]: use better (three letters) mnemonics for percentage units
2765         in "enum UNIT"; e.g. PTW for Percent of TextWidth
2766
2767         * lyxrc.C: graphics display is now monochrome|grayscale|color|none.
2768         Add backward compatibility to "mono", "gray" and "no".
2769
2770 2002-08-24  Dekel Tsur  <dekelts@tau.ac.il>
2771
2772         * buffer.C (readFile): Always run lyx2lyx if file_format < LYX_FORMAT
2773         (and file_format >= 200).
2774
2775 2002-08-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2776
2777         * lyxlayout.C (Read): treat LT_OPTARGS as an integer, not a bool
2778
2779 2002-08-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2780
2781         * lyxfunc.C (getStatus): handle LFUN_INSET_OPTARG
2782
2783 2002-08-20  Martin Vermeer  <martin.vermeer@hut.fi>
2784
2785         * BufferView_pimpl.C:
2786         * LyXAction.C:
2787         * buffer.C:
2788         * commandtags.h:
2789         * lyxfunc.C:
2790         * paragraph.[Ch]:
2791         * text2.C:
2792         * insets/insetoptarg.[Ch]: Added "optional argument" collapsible
2793         inset and code to make it  work with the paragraph code. The inset
2794         can be anywhere in the paragraph, but will only do the expected
2795         thing in LaTeX if the layout file contains the parameter line
2796                         OptionalArgs    1
2797         (or more generally, a nonzero value) for that layout.
2798
2799 2002-08-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
2800
2801         * paragraph.h: remove the declaration of undefined counters class
2802         function.
2803
2804 2002-08-22  Martin Vermeer <martin.vermeer@hut.fi>
2805
2806         * text2.C (setCounter):  fixed enumeration mis-count as reported by
2807         Dr. Richard Hawkins.
2808
2809 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2810
2811         * paragraph_funcs.h: remove some unneeded includes
2812
2813         * text.C (backspace): pasteParagraph now in global scipe
2814
2815         * CutAndPaste.C (cutSelection): pasteParagraph now in global scope
2816         (pasteSelection): ditto
2817
2818         * paragraph.[Ch] (pasteParagraph): move function to global scope ...
2819         * paragraph_funcs.C (pasteParagraph): ... here
2820
2821 2002-08-20  André Pönitz <poenitz@gmx.net>
2822
2823         * commandtags.h: new LFUNs for swapping/copying table row/colums
2824
2825         * LyXAction.C:
2826         * lyxfunc.C: support for new lfuns
2827
2828 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
2829
2830         * tabular.C:
2831         * buffer.[Ch]: remove NO_COMPABILITY stuff
2832
2833 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
2834
2835         * boost.C (throw_exception): new file, with helper function for
2836         boost compiled without exceptions.
2837
2838         * paragraph.h:
2839         * lyxlength.C:
2840         * buffer.C:
2841         * ParameterStruct.h:
2842         * ParagraphParameters.[Ch]: remove NO_PEXTRA_REALLY stuff
2843
2844         * bufferlist.C (emergencyWriteAll): use boost bind
2845
2846         * BufferView_pimpl.C (moveCursorUpdate): remove inline
2847
2848         * text.C: include paragraph_funcs.h
2849         (breakParagraph): breakParagraph is now in global scope
2850
2851         * paragraph_funcs.[Ch]: new files
2852
2853         * paragraph.C (breakParagraph,breakParagraphConservative): move to
2854         global scope
2855
2856         * buffer.C: include paragraph_funcs.h
2857         (insertStringAsLines): breakParagraph is now in global scope
2858
2859         * Makefile.am (lyx_SOURCES): add paragraph_funcs.h and
2860         paragraph_funcs.C
2861
2862         * CutAndPaste.C: include paragraph_funcs.h
2863         (cutSelection): breakParagraphConservative is now in global scope
2864         (pasteSelection): ditto
2865
2866         * buffer.h: declare oprator== and operator!= for
2867         Buffer::inset_iterator
2868
2869         * bufferlist.C (emergencyWrite): don't use fmt(...)
2870
2871         * text3.C: add using std::endl
2872
2873         * BufferView.C (moveCursorUpdate): remove default arg
2874
2875 2002-08-20  André Pönitz <poenitz@gmx.net>
2876
2877         * buffer.[Ch]: move inline functions to .C
2878
2879         * BufferView2.C:
2880         * BufferView_pimpl.C:
2881         * text.C:
2882         * buffer.[Ch]: use improved inset_iterator
2883
2884         * buffer.C:
2885         * paragraph.[Ch]: write one paragraph at a time
2886
2887 2002-08-20  Dekel Tsur  <dekelts@tau.ac.il>
2888
2889         * BufferView_pimpl.C (dispatch): Insert insetbibtex with "plain"
2890         style if style is not specified.
2891
2892 2002-08-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2893
2894         * text2.C (setCounter): when searching for right label for a
2895         caption, make sure to recurse to parent insets (so that a caption
2896         in a minipage in a figure float works) (bug #568)
2897
2898 2002-08-20  André Pönitz <poenitz@gmx.net>
2899
2900         * text3.C: new file for LyXText::dispatch() and helpers
2901
2902         * BufferView.[Ch]: move text related stuff to LyXText::dispatch()
2903
2904         * funcrequest.[Ch]: add message() do avoid direct access to LyXFunc
2905
2906 2002-08-19  André Pönitz <poenitz@gmx.net>
2907
2908         * lyxtext.h:
2909         * text.C: new LyXText::dispatch()
2910
2911         * BufferView_pimpl.C: move handling of LFUN_APPENDIX to LyXText
2912
2913 2002-08-18  Dekel Tsur  <dekelts@tau.ac.il>
2914
2915         * text.C (paintRowSelection): Fix code for rows with both RTL & LTR text.
2916
2917         * BufferView_pimpl.C (smartQuote): Insert typewriter quotes in
2918         Hebrew text.
2919
2920 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2921
2922         * Makefile.am: use $(variables) instead of @substitutions@
2923
2924 2002-08-15  André Pönitz <poenitz@gmx.net>
2925
2926         * lyxfunc.C:
2927         * BufferView_pimpl.C: streamlining mathed <-> outer world
2928         interaction
2929
2930         * commandtags.h:
2931         * LyXAction.C: remove unused LFUN_MATH
2932
2933 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2934
2935         * paragraph.[Ch]: add some NO_NEXT ifdefs.
2936
2937 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2938
2939         * paragraph.C (Paragraph): reformat a bit
2940         (cutIntoMinibuffer): use builtin InsetList function instad of
2941         doing it manually.
2942         (getInset): ditto
2943
2944         * buffer.C: include boost/bind.hpp, add using std::for_each
2945         (writeFileAscii): use ParagraphList iterators
2946         (validate): use for_each for validate traversal of paragraphs
2947         (getBibkeyList): use ParagraphList iterators
2948         (resizeInsets): use for_each to resizeInsetsLyXText for all
2949         paragraphs.
2950         (getParFromID): use ParagraphList iterators
2951
2952         * BufferView2.C (lockInset): use paragraph list and iterators
2953
2954 2002-08-14  John Levon  <levon@movementarian.org>
2955
2956         * lyxserver.C: remove spurious xforms include
2957
2958 2002-08-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2959
2960         * lyxfunc.C (getStatus): disable math-extern outside of math mode
2961
2962 2002-08-13  André Pönitz <poenitz@gmx.net>
2963
2964         * LyXAction.[Ch]:
2965         * lyxfunc.C: further cleaning
2966
2967 2002-08-13  André Pönitz <poenitz@gmx.net>
2968
2969         * funcrequest.h: new constructor
2970
2971         * funcrequest.C: move stuff here from .h
2972
2973         * Makefile.am:
2974         * BufferView_pimpl.C:
2975         * LyXAction.C:
2976         * toc.C:
2977         * lyxfunc.C: subsequent changes
2978
2979         * lyxfunc.h: new view() member function
2980
2981         * lyxfunc.C: subsequent changes
2982
2983 2002-08-13  Angus Leeming  <leeming@lyx.org>
2984
2985         * BufferView2.C:
2986         * BufferView_pimpl.C:
2987         * buffer.C:
2988         * converter.C:
2989         * importer.C:
2990         * lyxfunc.C:
2991         * lyxvc.C:
2992         * toc.C:
2993         * vc-backend.C:
2994         changes due to the changed LyXView interface that now returns references
2995         to member variables not pointers.
2996
2997 2002-08-13  Angus Leeming  <leeming@lyx.org>
2998
2999         * WordLangTuple (word, lang_code): return references to strings,
3000         not strings.
3001
3002         * BufferView.h:
3003         * SpellBase.h:
3004         * lyxtext.h: forward-declare WordLangTuple.
3005
3006         * BufferView2.C:
3007         * ispell.C:
3008         * pspell.C:
3009         * text.C: #include "WordLangTuple.h".
3010
3011         * lyxtext.h:
3012         * text.C: (selectNextWordToSpellcheck): constify return type.
3013
3014 2002-08-12  Martin Vermeer <martin.vermeer@hut.fi>
3015
3016         * buffer.C:
3017         * buffer.h:
3018         * lyxtext.h:
3019         * paragraph.C:
3020         * paragraph_pimpl.h:
3021         * text.C:
3022         * text2.C:
3023         * undo_funcs.C: replaced per-paragraph counter logic by per-buffer, as
3024         suggested by Angus.
3025         Made updateCounter always count from start of buffer, and removed
3026         second argument (par).
3027         Reverted floats number display to '#'. Perhaps I'll try again when the
3028         code base is sanitized a bit.
3029
3030 2002-08-12  Angus Leeming  <leeming@lyx.org>
3031
3032         * buffer.[Ch] (getLabelList): constify.
3033
3034 2002-08-07  André Pönitz <poenitz@gmx.net>
3035
3036         * commandtags.h: new LFUN_MOUSE_(PRESS|MOTION|RELEASE)
3037
3038         * funcrequest.h: extension to keep mouse (x,y) position
3039
3040 2002-08-12  Juergen Vigna  <jug@sad.it>
3041
3042         * BufferView2.C (insertErrors): forbid undo when inserting error
3043         insets.
3044
3045         * CutAndPaste.C (SwitchLayoutsBetweenClasses): ditto
3046
3047 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
3048
3049         * ParagraphList.[Ch]: new files
3050
3051         * Makefile.am (lyx_SOURCES): add ParagraphList.[Ch]
3052
3053         * BufferView2.C (lockInset): ParagraphList changes
3054         * toc.C: ditto
3055         * text2.C: ditto
3056         * bufferlist.C: ditto
3057         * buffer.h: ditto
3058         * buffer.C: ditto
3059
3060 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
3061
3062         * paragraph_pimpl.h: remove inclusion of boost/array.hpp, remove
3063         unused class variable counter_,
3064
3065         * paragraph.[Ch] (getFirstCounter): delete unused function
3066
3067         * counters.C: include LAssert.h
3068         (reset): add a new function with no arg, change other version to
3069         not have def. arg and to not allow empty arg.
3070
3071         * text2.C (setCounter): remove empty arg from call to Counters::reset
3072
3073 2002-08-11  John Levon  <levon@movementarian.org>
3074
3075         * Makefile.am: add WordLangTuple.h
3076
3077 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
3078
3079         * paragraph.C, ToolbarDefaults.h, kbsequence.h, lyx_main.C,
3080         lyxfunc.C lyxlex_pimpl.C: ws changes only.
3081
3082         * insets/insettext.C: InsetList changes
3083
3084         * graphics/GraphicsSupport.C (operator()): InsetList changes
3085
3086         * toc.C (getTocList): InsetList changes
3087
3088         * paragraph_pimpl.[Ch]: InsetList changes
3089
3090         * paragraph.[Ch]: InsetList changes
3091
3092         * buffer.C (inset_iterator): InsetList changes
3093         (setParagraph): ditto
3094         * buffer.h (inset_iterator): ditto
3095         * iterators.C (operator++): ditto
3096         * iterators.h: ditto
3097
3098         * Makefile.am (lyx_SOURCES): add InsetList.C and InsetList.h
3099
3100         * InsetList.[Ch]: new files, most InsetList handling moved out of
3101         paragraph.C.
3102
3103         * BufferView2.C (removeAutoInsets): InsetList changes
3104         (lockInset): ditto
3105         (ChangeInsets): ditto
3106
3107 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
3108
3109         * paragraph_pimpl.h (empty): new function
3110
3111         * paragraph.[Ch] (empty): new function
3112
3113         * other files: use the new Paragraph::empty function
3114
3115 2002-08-09  John Levon  <levon@movementarian.org>
3116
3117         * lyxtext.h: remove unused refresh_height
3118
3119 2002-08-09  John Levon  <levon@movementarian.org>
3120
3121         * Makefile.am:
3122         * sgml.h:
3123         * sgml.C:
3124         * buffer.C:
3125         * paragraph.h:
3126         * paragraph.C: move sgml char escaping out of paragraph
3127
3128         * paragraph.h:
3129         * paragraph.C: remove id setter
3130
3131         * buffer.C:
3132         * paragraph.C:
3133         * paragraph_pimpl.C: remove dead tex_code_break_column
3134
3135         * bufferview_funcs.C: small cleanup
3136
3137         * lyxfunc.C: remove dead proto
3138
3139         * lyxtext.h: make some stuff private. Remove some dead stuff.
3140
3141         * lyxgluelength.C: make as[LyX]String() readable
3142
3143 2002-08-08  John Levon  <levon@movementarian.org>
3144
3145         * LyXAction.h:
3146         * LyXAction.C:
3147         * MenuBackend.C:
3148         * ToolbarDefaults.C:
3149         * lyxfunc.C:
3150         * lyxrc.C:
3151         * toc.C: lyxaction cleanup
3152
3153 2002-08-08  John Levon  <levon@movementarian.org>
3154
3155         * BufferView2.C: small cleanup
3156
3157         * lyxfind.h:
3158         * lyxfind.C: move unnecessary header into the .C
3159
3160 2002-08-08  John Levon  <levon@movementarian.org>
3161
3162         * funcrequest.h: just tedious nonsense
3163
3164         * lyx_main.h:
3165         * lyx_main.C: cleanups
3166
3167         * buffer.C:
3168         * vspace.C: remove dead header lyx_main.h
3169
3170 2002-08-07  Angus Leeming  <leeming@lyx.org>
3171
3172         * Paragraph.[Ch]:
3173         * paragraph_pimpl.h:
3174         Forward declare class Counters in paragraph.h by moving the ctrs member
3175         variable into Paragraph::Pimpl.
3176         (counters): new method, returning a reference to pimpl_->ctrs.
3177
3178         * text2.C: ensuing changes.
3179
3180 2002-08-07  John Levon  <levon@movementarian.org>
3181
3182         * BufferView_pimpl.C (resizeCurrentBuffer): update scrollbar
3183
3184         * BufferView_pimpl.C: announce X selection on double/triple
3185           click
3186
3187         * lyx_main.C: use correct bool in batch dispatch
3188
3189         * counters.h: srcdocs (from Martin Vermeer and Angus Leeming)
3190
3191 2002-08-07  André Pönitz <poenitz@gmx.net>
3192
3193         * funcrequest.h: new class to wrap a kb_action and its argument
3194
3195         * BufferView.[Ch]:
3196         * BufferView_pimpl[Ch]:
3197         * LaTeX.C:
3198         * LyXAction.[Ch]:
3199         * lyxfunc.[Ch]:
3200         * lyxrc.C: subsequent changes
3201
3202
3203 2002-08-07  John Levon  <levon@movementarian.org>
3204
3205         * BufferView_pimpl.C (redoCurrentBuffer): fix screen update when
3206           document options change.
3207
3208 2002-08-06  Martin Vermeer  <martin.vermeer@hut.fi>
3209
3210         * counters.[Ch]
3211         * text2.C
3212         * paragraph.[Ch]
3213         * makefile.am: move counters functionality over from
3214         text2.C/paragraph.[Ch] to counters.[Ch], and make proper C++.
3215
3216 2002-08-06  John Levon  <levon@movementarian.org>
3217
3218         * WordLangTuple.h: new file for word + language code tuple
3219
3220         * SpellBase.h:
3221         * pspell.h:
3222         * pspell.C:
3223         * ispell.h:
3224         * ispell.C:
3225         * lyxtext.h:
3226         * text.C:
3227         * text2.C:
3228         * BufferView.h:
3229         * BufferView2.C: use WordLangTuple
3230
3231         * layout.h:
3232         * buffer.C: remove very dead LYX_LAYOUT_DEFAULT
3233
3234 2002-08-06  John Levon  <levon@movementarian.org>
3235
3236         * lyx_main.C: fix cmdline batch handling
3237
3238 2002-08-06  André Pönitz <poenitz@gmx.net>
3239
3240         * lyxrc.C: set default for show_banner to true
3241
3242 2002-08-06  John Levon  <levon@movementarian.org>
3243
3244         * pspell.C: fix a crash, and allow new aspell to work
3245
3246 2002-08-06  John Levon  <levon@movementarian.org>
3247
3248         * lyxfunc.C:
3249         * kbmap.C: small cleanup
3250
3251         * vspace.h:
3252         * vspace.C: add const
3253
3254 2002-08-05  John Levon  <levon@movementarian.org>
3255
3256         * LyXAction.C: back to tabular-insert
3257
3258 2002-08-04  John Levon  <levon@movementarian.org>
3259
3260         * BufferView.h:
3261         * BufferView.C: cosmetic change
3262
3263         * BufferView_pimpl.C: s/IGNORE_CODE/NOTE_CODE/
3264
3265         * bufferlist.C:
3266         * buffer.h:
3267         * buffer.C:
3268         * lyxcb.h:
3269         * lyxcb.C:
3270         * lyxserver.C:
3271         * lyxvc.C:
3272         * vc-backend.C:
3273         * BufferView2.C: purge all "Lyx" not "LyX" strings
3274
3275         * lyxcursor.h:
3276         * lyxcursor.C: attempt to add some documentation
3277
3278         * lyxfunc.C:
3279         * commandtags.h:
3280         * LyXAction.C:
3281         * ToolbarDefaults.C:
3282         * BufferView_pimpl.C: remove LFUN_DIALOG_TABULAR_INSERT and
3283           merge with LFUN_TABULAR_INSERT
3284
3285         * Makefile.am:
3286         * SpellBase.h:
3287         * ispell.h:
3288         * ispell.C:
3289         * pspell.h:
3290         * pspell.C: split up i/pspell implementations into separate
3291           files, many cleanups
3292
3293         * lyxlex.C: unrevert, with a proper fix for prefix.length() == 0
3294
3295         * text2.C: some cleanup
3296
3297         * lyxfunc.C: don't check for isp_command == "none" any more, it
3298           didn't make any sense
3299
3300 2002-08-06      Martin Vermeer <martin.vermeer@hut.fi>
3301
3302         * counters.[Ch]
3303         * text2.C
3304         * paragraph.[Ch]
3305         * makefile.am: move counters functionality over
3306         from text2.C/paragraph.[Ch] to counters.[Ch], and
3307         make proper C++.
3308 2002-08-02  John Levon  <levon@movementarian.org>
3309
3310         * buffer.C: s/lyxconvert/lyx2lyx/
3311
3312 2002-08-02  Angus Leeming  <leeming@lyx.org>
3313
3314         * lyxlex.C: revert John's change as it breaks reading of the user
3315         preamble.
3316
3317 2002-08-02  Angus Leeming  <leeming@lyx.org>
3318
3319         * importer.C (Import):
3320         * lyxfunc.C (moveCursorUpdate, dispatch, view_status_message):
3321         changes due to LyXView::view() now returning a boost::shared_ptr.
3322
3323 2002-08-02  John Levon  <levon@movementarian.org>
3324
3325         * lyxlex.C: small cleanup
3326
3327 2002-08-02  John Levon  <levon@movementarian.org>
3328
3329         * text2.C (status): small cleanup, no logic change
3330
3331 2002-08-01  John Levon  <levon@movementarian.org>
3332
3333         * buffer.h:
3334         * buffer.C (writeFile): don't output alerts, caller
3335           handles this
3336
3337         * bufferlist.C:
3338         * lyx_cb.C: from above
3339
3340         * lyxfunc.C: allow to open non-existent files
3341
3342 2002-07-31  John Levon  <levon@movementarian.org>
3343
3344         * lyxserver.C: don't let incidental errors get
3345           in the way (errno)
3346
3347 2002-07-30  John Levon  <levon@movementarian.org>
3348
3349         * lyxfunc.C: disable character dialog in ERT inset (partial fix)
3350
3351 2002-07-30  John Levon  <levon@movementarian.org>
3352
3353         * lyxserver.h:
3354         * lyxserver.C: remove I/O callback too
3355
3356 2002-07-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3357
3358         * lyxfunc.C (getStatus): disable LFUN_LATEX_LOG when there is no
3359         log.
3360
3361 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
3362
3363         * many files: strip,frontStrip -> trim,ltrim,rtrim
3364
3365 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
3366
3367         * PrinterParams.h: remove extern containsOnly, and include
3368         support/lstrings.h instead.
3369
3370         * LaTeX.C (scanAuxFile): modify because of strip changes
3371         (deplog): ditto
3372         * buffer.C (makeLaTeXFile): ditto
3373         * bufferparams.C (writeFile): ditt
3374         * lyxfont.C (stateText): ditto
3375         * lyxserver.C (read_ready): ditto
3376         * vc-backend.C (scanMaster): ditto
3377
3378         * BufferView_pimpl.h: ws changes
3379
3380         * BufferView_pimpl.C: inlude boost/signals/connection.hpp
3381
3382 2002-07-26  André Pönitz <poenitz@gmx.net>
3383
3384         * kb_sequence.C: remove unnedred usings
3385
3386 2002-07-26  Juergen Vigna  <jug@sad.it>
3387
3388         * lyxfind.C (LyXReplace): we have to check better if the returned
3389         text is not of theLockingInset()->getLockingInset().
3390
3391 2002-07-25  Juergen Vigna  <jug@sad.it>
3392
3393         * lyxfind.C (LyXReplace): don't replace if we don't get the
3394         right LyXText.
3395
3396         * undo_funcs.C (createUndo): remove debugging code.
3397
3398 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
3399
3400         * buffer.C (parseSingleLyXformat2Token): Use default placement
3401         when reading old floats.
3402
3403         * FloatList.C (FloatList): Change the default placement of figure
3404         and tables to "tbp".
3405
3406 2002-07-25  John Levon  <moz@compsoc.man.ac.uk>
3407
3408         * MenuBackend.C: using std::max
3409
3410 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3411
3412         * MenuBackend.C (expandToc):
3413         (expandToc2): code moved from xforms menu frontend. It is now
3414         generic and TOCs are transparent to menu frontends.
3415
3416 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3417
3418         * toc.C (getTocList): protect against buf=0
3419
3420         * MenuBackend.C (expand): move from Menu to MenuBackend; pass a
3421         Menu as first parameter. Now, this calls itself recursively to
3422         expand a whole tree (this will be useful for TOC handling)
3423         (expandFloatInsert): remove 'wide' version of floats
3424
3425         * MenuBackend.h (submenuname): returns the name of the submenu.
3426         (submenu): returns the submenu itself, provided it has been
3427         created by MenuBackend::expand
3428
3429 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3430
3431         * paragraph_pimpl.C (simpleTeXSpecialChars): close fonts before
3432         insets which have noFontChange == true. (bug #172)
3433
3434 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3435
3436         * BufferView_pimpl.C: add connection objects and use them...
3437         (Pimpl): here.
3438
3439 2002-07-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3440
3441         * MenuBackend.C (expandLastfiles):
3442         (expandDocuments):
3443         (expandFormats):
3444         (expandFloatListInsert):
3445         (expandFloatInsert):
3446         (expand): split expand in parts
3447
3448 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
3449
3450         * lyx_gui.C: use lyx_gui::exit()
3451
3452 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
3453
3454         * LyXAction.C: show the failing pseudo action
3455
3456 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
3457
3458         * buffer.C (readFile): Run the lyxconvert script in order to read
3459         old files.
3460
3461 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
3462
3463         * LyXAction.C:
3464         * commandtags.h:
3465         * lyxfunc.C: remove LFUN_ADD_TO_TOOLBAR
3466
3467 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
3468
3469         * LyXAction.C:
3470         * commandtags.h:
3471         * lyxfunc.C: remove LFUN_TOOLBAR_PUSH
3472
3473 2002-07-22  Herbert Voss  <voss@lyx.org>
3474
3475         * lengthcommon.C:
3476         * lyxlength.[Ch]: add support for the vertical lengths
3477
3478 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
3479
3480         * toc.[Ch]: std:: fixes
3481
3482 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3483
3484         * lyxrc.C: do not include lyx_main.h
3485
3486         * LaTeXFeatures.h: use a list<string> instead of a vector<string>
3487         for layouts
3488
3489         * lyxrc.C:
3490         * encoding.C:
3491         * bufferlist.C:
3492         * BufferView2.C: include "lyxlex.h"
3493
3494         * tabular.h:
3495         * bufferparams.h: do not #include "lyxlex.h"
3496
3497         * lyxtextclasslist.C (Add): remove method
3498         (classlist): renamed to classlist_
3499
3500         * paragraph_pimpl.C:
3501         * paragraph.C:
3502         * text2.C:
3503         * CutAndPaste.C:
3504         * bufferview_funcs.C:
3505         * bufferlist.C:
3506         * text.C:
3507         * LaTeXFeatures.C:
3508         * buffer.C:
3509         * toc.C (getTocList): use BufferParams::getLyXTextClass
3510
3511         * toc.C (getTocList): use InsetFloat::addToToc
3512
3513         * toc.[Ch]: new files, containing helper functions to handle table
3514         of contents
3515
3516         * lyxfunc.C (dispatch): no need to remove spaces around command
3517         given as a string
3518         (getStatus): handle LFUN_SEQUENCE by returning the status of the
3519         first command of the sequence; it is not very clever, but I do not
3520         have a better idea, actually
3521
3522         * LyXAction.C (LookupFunc): make sure to remove space at the
3523         beginning and end of the command
3524
3525 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3526
3527         * MenuBackend.C (getMenubar): new method: return the menubar of
3528         this menu set
3529         (read): treat differently reading of menu and menubar (in
3530         particular, the menubar has no name now)
3531         (Menu::menubar): remove
3532
3533         * lyxfunc.C (dispatch): add 'done' message to minibuffer when
3534         saving is finished
3535
3536 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
3537
3538         * BufferView_pimpl.C (workAreaButtonRelease): Fix opening of
3539         a bibitem inset in a RTL paragraph.
3540
3541 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
3542
3543         * paragraph_pimpl.C: constify
3544
3545         * BufferView_pimpl.C:
3546         * LaTeX.C:
3547         * lyxfunc.C: fix dispatch in a nicer way
3548
3549 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3550
3551         * lyxfunc.C (dispatch):
3552         * BufferView_pimpl.C:
3553         * BufferView_pimpl.h:
3554         * BufferView.C:
3555         * BufferView.h: rename Dispatch() to dispatch()
3556
3557         * LaTeXFeatures.C (useLayout): honor LyXLayout::depends_on()
3558
3559         * lyxlayout.C (Read): honor DependsOn tag
3560
3561         * lyxlayout.[Ch] (depends_on): new method
3562
3563         * version.C.in: update lyx_docversion
3564
3565         * LaTeXFeatures.C (getMacros): only define \LyX when needed
3566
3567         * paragraph.C (validate): remove from here...
3568         * paragraph_pimpl.C (validate): ... and move here
3569         (isTextAt): make it const
3570
3571         * buffer.C (getLists): ws cleanup
3572
3573 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
3574
3575         * language.C (read): Use iso8859-1 encoding in latex_lang
3576         (this prevents LyX from crashing when using iso10646-1 encoding).
3577
3578 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3579
3580         * text2.C (toggleInset): if cursor is inside an inset, close the
3581         inset and leave cursor _after_ it
3582
3583 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
3584
3585         * lyxfunc.C: move minibuffer completion handling out of here
3586
3587 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
3588
3589         * BufferView_pimpl.C:
3590         * LaTeX.C: fix dispatch calls
3591
3592 2002-07-19  Dekel Tsur  <dekelts@tau.ac.il>
3593
3594         * text.C (drawChars): Fix Arabic text rendering.
3595
3596 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
3597
3598         * LyXAction.C:
3599         * commandtags.h:
3600         * lyxfunc.C: remove message-push/pop
3601
3602         * lyxserver.C:
3603         * lyxfunc.h:
3604         * lyxfunc.C: rationalise some code by removing verboseDispatch
3605           in favour of a bool argument to dispatch()
3606
3607 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3608
3609         * lyx_main.C (init): make sure to read symlinks as absolute paths
3610
3611 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
3612
3613         * lyxfunc.h:
3614         * lyxfunc.C: no need for commandshortcut to be a member
3615
3616 2002-07-15  André Pönitz <poenitz@gmx.net>
3617
3618         * converter.C: add support for $$s (scripts from lib/scripts dir)
3619         * lyx_main.C: white space
3620
3621 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
3622
3623         * bufferlist.C:
3624         * lyxrc.h:
3625         * lyxrc.C: remove second exit confirmation
3626
3627 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
3628
3629         * BufferView.h:
3630         * BufferView.C:
3631         * BufferView2.C:
3632         * BufferView_pimpl.h:
3633         * BufferView_pimpl.C:
3634         * lyxfunc.C: s/setState/switchKeyMap/, s/showState/view_state_changed/
3635
3636 2002-07-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3637
3638         * MenuBackend.C (expand): add numeric shortcuts to document menu
3639
3640         * lyxrc.C (getDescription): remove RC_NEW_ASK_FILENAME
3641
3642 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3643
3644         * lyxfont.C (setLyXFamily):
3645         (setLyXSeries):
3646         (setLyXShape):
3647         (setLyXSize):
3648         (setLyXMisc):
3649         (lyxRead):
3650         * debug.C (value):
3651         * buffer.C (asciiParagraph): use ascii_lowercase
3652
3653 2002-07-15  Mike Fabian  <mfabian@suse.de>
3654
3655         * lyxlex_pimpl.C (search_kw):
3656         * lyxlex.C (getLongString):
3657         * converter.h (operator<):
3658         * converter.C (operator<):
3659         * buffer.C (parseSingleLyXformat2Token):
3660         (asciiParagraph):
3661         * ToolbarDefaults.C (read):
3662         * MenuBackend.C (checkShortcuts):
3663         (read):
3664         * LColor.C (getFromGUIName):
3665         (getFromLyXName): use the compare_ascii_no_case instead of
3666         compare_no_case, because in turkish, 'i' is not the lowercase
3667         version of 'I', and thus turkish locale breaks parsing of tags.
3668
3669 2002-07-16  Angus Leeming  <leeming@lyx.org>
3670
3671         * BufferView_pimpl.C (buffer): Previews::generateBufferPreviews
3672         now takes a Buffer const & argument.
3673
3674 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
3675
3676         * BufferView.C (resize): check there's a buffer to resize
3677
3678 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
3679
3680         * lyxfunc.C: remove dead code
3681
3682         * lyxserver.h:
3683         * lyxserver.C: use lyx_guii::set_read_callback
3684
3685 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
3686
3687         * lyxfunc.C (dispatch): Correct cursor behaviour when exiting
3688         an inset in a RTL paragraph.
3689
3690 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
3691
3692         * lyxfunc.C: repaint after a font size update
3693
3694 2002-07-15  André Pönitz <poenitz@gmx.net>
3695
3696         * lyxlength.C: inBP should be able to return negative values
3697
3698 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
3699
3700         * lyxfunc.C: use lyx_gui::update_fonts()
3701
3702 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
3703
3704         * lyxfunc.C: use lyx_gui::update_color()
3705
3706 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
3707
3708         * bufferlist.C:
3709         * lyxfunc.h:
3710         * lyxfunc.C:
3711         * lyxrc.h:
3712         * lyxrc.C: remove file->new asks for name option, and let
3713           buffer-new take an argument
3714
3715 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
3716
3717         * BufferView_pimpl.C: remove unneeded extra repaint()
3718
3719 2002-07-10  John Levon  <moz@compsoc.man.ac.uk>
3720
3721         * LyXAction.C: allow command-sequence with NoBuffer
3722
3723         * lyxfunc.C: don't insist on trailing ';' for command-sequence
3724
3725 2002-07-10  Angus Leeming  <leeming@lyx.org>
3726
3727         * lyxrc.[Ch]: preview_scale_factor should be a float not an int.
3728
3729 2002-07-09  Angus Leeming  <leeming@lyx.org>
3730
3731         * lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
3732
3733 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
3734
3735         * lengthcommon.h: whitespace
3736
3737         * lyxfunc.C: update scrollbar after goto paragraph
3738
3739         * lyxtext.h: factor out page break drawing, and fix it so
3740           page break/added space paints as selected nicely
3741
3742 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
3743
3744         * BufferView_pimpl.C: add FIXMEs, clean up a little
3745
3746 2002-07-09  André Pönitz <poenitz@gmx.net>
3747
3748         * lyxfont.[Ch]: support for wasy symbols
3749
3750 2002-07-08  André Pönitz <poenitz@gmx.net>
3751
3752         * BufferView_pimpl.C: apply John's patch for #93.
3753
3754 2002-07-05  Angus Leeming  <leeming@lyx.org>
3755
3756         * BufferView_pimpl.C (buffer): generate previews if desired.
3757
3758         * LColor.h: add "preview" to the color enum.
3759
3760         * LColor.C (LColor): add a corresponding entry to the items array.
3761
3762         * buffer.C (~Buffer): remove any previewed LaTeX snippets associated
3763         with this buffer.
3764
3765 2002-07-05  Angus Leeming  <leeming@lyx.org>
3766
3767         * buffer.[Ch] (makeLaTeXFile): create two methods where there was one.
3768         The body of the code is now in the method that is passed an ostream &
3769         rather than a file name.
3770         Pass an additional only_preamble parameter, useful for the forthcoming
3771         preview stuff.
3772
3773 2002-07-03  André Pönitz <poenitz@gmx.net>
3774
3775         * lyxfunc.C: simplify getStatus() a bit for math stuff
3776
3777 2002-07-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3778
3779         * BufferView_pimpl.C (workAreaResize): add an unconditional repaint.
3780
3781 2002-06-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3782
3783         * text.C (changeRegionCase): do not change case of all the
3784         document when region ends at paragraph end (bug #461)
3785
3786 2002-07-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3787
3788         * paragraph.C (startTeXParParams):
3789         (endTeXParParams): add \protect when necessary
3790
3791 2002-06-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3792
3793         * BufferView_pimpl.C (workAreaExpose): remove warning
3794
3795 2002-06-27  Angus Leeming  <leeming@lyx.org>
3796
3797         * Makefile.am: add lyxlayout_ptr_fwd.h.
3798
3799 2002-06-26  André Pönitz <poenitz@gmx.net>
3800
3801         * lyxrc.[Ch]: introduce \preview, revive half-dead \show_banner
3802
3803 2002-06-25  Angus Leeming  <leeming@lyx.org>
3804
3805         * lyxfunc.C (dispatch): Comment out the call to
3806         grfx::GCache::changeDisplay. The method no longer exists now that the
3807         pixmap generation part of the graphics loader has been moved into
3808         InsetGraphics.
3809
3810 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3811
3812         * text2.C: layout as layout
3813
3814         * text.C: layout as layout
3815
3816         * tabular.C (OldFormatRead): layout as layout
3817
3818         * paragraph_pimpl.C (TeXDeeper): layout as layout
3819         (realizeFont): layout as layout
3820
3821         * paragraph.C (writeFile): layout as layout
3822         (validate): layout as layout
3823         (getFont): layout as layout
3824         (getLabelFont): layout as layout
3825         (getLayoutFont): layout as layout
3826         (breakParagraph): layout as layout
3827         (stripLeadingSpaces): layout as layout
3828         (getEndLabel): layout as layout
3829         (getMaxDepthAfter): layout as layout
3830         (applyLayout): layout as layout
3831         (TeXOnePar): layout as layout
3832         (simpleTeXOnePar): layout as layout
3833         (TeXEnvironment): layout as layout
3834         (layout): layout as layout
3835         (layout): layout as layout
3836
3837         * lyxtextclass.C (compare_name): new functor to work with
3838         shared_ptr, layout as layout
3839         (Read): layout as layout
3840         (hasLayout): layout as layout
3841         (operator): layout as layout
3842         (delete_layout): layout as layout
3843         (defaultLayout): layout as layout
3844
3845         * lyxlayout_ptr_fwd.h: new file
3846
3847         * lyxlayout.C (Read): layout as layout
3848
3849         * lyx_cb.C (MenuInsertLabel): layout as layout
3850
3851         * bufferlist.C (newFile): layout as layout
3852
3853         * buffer.C (readLyXformat2): layout as layout
3854         (parseSingleLyXformat2Token): layout as layout
3855         (insertStringAsLines): layout as layout
3856         (asciiParagraph): layout as layout
3857         (latexParagraphs): layout as layout
3858         (makeLinuxDocFile): layout as layout
3859         (simpleLinuxDocOnePar): layout as layout
3860         (makeDocBookFile): layout as layout
3861         (simpleDocBookOnePar): layout as layout
3862         (getLists): layout as layout
3863
3864         * LaTeXFeatures.C (getTClassPreamble): layout as layout
3865
3866         * CutAndPaste.C (cutSelection): layout as layout
3867         (pasteSelection): layout as layout
3868         (SwitchLayoutsBetweenClasses): layout as layout
3869
3870         * BufferView_pimpl.C (Dispatch): layout as layout
3871         (smartQuote): layout as layout
3872
3873         * BufferView2.C (unlockInset): layout as layout
3874
3875 2002-06-24  André Pönitz <poenitz@gmx.net>
3876
3877         * lyxfunc.C: fix #487
3878
3879 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
3880
3881         * lyxrc.h:
3882         * lyxrc.C:
3883         * lyxfunc.C: remove display_shortcuts, show_banner
3884
3885 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
3886
3887         * Buffer_pimpl.C: oops, update on resize
3888
3889 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
3890
3891         * buffer.C:
3892         * converter.C:
3893         * exporter.C:
3894         * lyxfunc.C:
3895         * BufferView.h:
3896         * BufferView.C: use repaint()
3897
3898         * BufferView_pimpl.h:
3899         * BufferView_pimpl.C: s/updateScreen()/repaint()/
3900           as it's a clearer description. Remove superfluous
3901           redraws.
3902
3903 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
3904
3905         * text.C: fix bug 488. Not ideal, but getting
3906           getWord() to work properly for the insets that
3907           matter is more difficult ...
3908
3909 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
3910
3911         * BufferView_pimpl.C:
3912         * LyXAction.C:
3913         * commandtags.h:
3914         * lyxfunc.C: remove the six million index lyxfuncs to just
3915           one, and DTRT (bug 458)
3916
3917 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
3918
3919         * BufferView.h:
3920         * BufferView.C:
3921         * BufferView_pimpl.h:
3922         * BufferView_pimpl.C: clean up resize() stuff,
3923           and unnecessary updateScreen()s
3924
3925 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
3926
3927         * BufferView.h:
3928         * BufferView.C:
3929         * BufferView_pimpl.h:
3930         * BufferView_pimpl.C:
3931         * lyxfind.h:
3932         * lyxfind.C:
3933         * minibuffer.C: remove focus management of workarea,
3934           not needed. Use screen's greyOut()
3935
3936 2002-06-17  Herbert Voss  <voss@lyx.org>
3937
3938         * converter.C: (convert) do not post a message, when converting
3939         fails, let the calling function decide what to do in this case
3940
3941 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
3942
3943         * lyxfunc.C: tidy up a little
3944
3945 2002-06-16    <alstrup@diku.dk>
3946
3947         * BufferView_pimpl.C (Pimpl): Use WorkAreaFactory.
3948         Got rid of FORMS_H_LOCATION include. Now we are
3949         GUII.
3950
3951 2002-06-15  LyX Development team  <lyx@rilke>
3952
3953         * buffer.[Ch] (sgmlOpenTag):
3954         (sgmlCloseTag): Added support for avoiding pernicious mixed
3955         content. Return number of lines written.
3956
3957         (makeLinuxDocFile):
3958         (makeDocBookFile): Fixed calls to sgml*Tag.
3959         Simple white space clean.
3960
3961         (simpleDocBookOnePar): Simple white space clean.
3962
3963         * tabular.[Ch] (docBook): Renamed to docbook and got another
3964         argument to related with the pernicious mixed content.
3965
3966         (docbookRow): Fixed calls for docbook inset method.
3967
3968 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
3969
3970         * lyxfunc.[Ch]: Use LyXKeySym instead of KeySym,
3971         so it's X11 independent.
3972
3973         * kb*.[Ch]: ditto.
3974
3975         * BufferView_pimpl.[Ch] (workAreaKeyPress): ditto.
3976
3977 2002-06-15  Lyx Development team  <lyx@electronia>
3978
3979         * intl.h: Renamed getTrans to getTransManager.
3980
3981 2002-06-14  Angus Leeming  <leeming@lyx.org>
3982
3983         * Makefile.am: nuke forgotten stl_string_fwd.h.
3984
3985 2002-06-12  Angus Leeming  <leeming@lyx.org>
3986
3987         * stl_string_fwd.h: unused and non-compliant anyway. Nuked.
3988
3989 2002-06-13  Angus Leeming  <leeming@lyx.org>
3990
3991         * LaTeX.C:
3992         * vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
3993
3994 2002-06-12  Andrew Zabolotny  <zap@cobra.ru>
3995
3996         * kbmap.C (getiso): add support for cyrillic and greek
3997
3998 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
3999
4000         * BufferView.h:
4001         * BufferView.C:
4002         * BufferView_pimpl.h:
4003         * BufferView_pimpl.C: move bogus scrolling logic
4004           to xforms
4005
4006 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
4007
4008         * lyxfunc.C:
4009         * BufferView_pimpl.C: view->resize() change
4010
4011 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
4012
4013         * BufferView_pimpl.C: topCursorVisible
4014           prototype change
4015
4016 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
4017
4018         * Makefile.am:
4019         * lyx_gui.h:
4020         * lyx_gui.C: move to frontends/
4021
4022         * main.C:
4023         * lyx_main.h:
4024         * lyx_main.C: changes from above
4025
4026 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
4027
4028         * intl.C:
4029         * intl.h:
4030         * kbmap.C:
4031         * kbsequence.C:
4032         * lyx_cb.C:
4033         * lyx_main.C: minor tidy
4034
4035 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
4036
4037         * BufferView_pimpl.h:
4038         * BufferView_pimpl.C:
4039         * BufferView.h:
4040         * BufferView.C: make painter() const,
4041           remove dead code
4042
4043         * BufferView2.C: use screen() accessor
4044
4045         * lyx_main.h:
4046         * lyx_main.C: some minor cleanup
4047
4048 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
4049
4050         * BufferView_pimpl.h:
4051         * BufferView_pimpl.C: remove enter/leaveView,
4052           use workHeight()
4053
4054 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
4055
4056         * BufferView.h:
4057         * BufferView.C:
4058         * BufferView2.C:
4059         * BufferView_pimpl.h:
4060         * BufferView_pimpl.C: only construct screen once,
4061           rename
4062
4063         * lyxrc.C: remove pointless comment
4064
4065 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
4066
4067         * BufferView.h:
4068         * BufferView.C: remove active() and belowMouse()
4069
4070         * BufferView_pimpl.h:
4071         * BufferView_pimpl.C: use workarea() not workarea_,
4072           and make it use a scoped_ptr instead
4073
4074 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
4075
4076         * lyx_gui.C: add debug message on BadWindow
4077
4078 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4079
4080         * sp_spell.C: fdopen is not part of the C++ standard.
4081
4082         * paragraph.C (InsetIterator): use >= instead of ==
4083
4084 2002-06-07  Angus Leeming  <leeming@lyx.org>
4085
4086         Fixes needed to compile with Compaq cxx 6.5.
4087         * BufferView_pimpl.C:
4088         * DepTable.C:
4089         * buffer.C:
4090         * converter.C:
4091         * encoding.C:
4092         * lyx_gui.C:
4093         * lyx_main.C:
4094         * lyxtextclasslist.C:
4095         * minibuffer.C:
4096         * sp_spell.C:
4097         * tabular_funcs.C:
4098         * vc-backend.C:
4099         all c-library variables have been moved into namespace std. Wrap
4100         using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
4101
4102         * lyxlength.C:
4103         * tabular-old.C:
4104         * tabular.C:
4105         Add a using std::abs declaration.
4106
4107         * kbmap.h (modifier_pair):
4108         * paragraph.h (InsetTable, InsetList):
4109         * lyxfont.h (FontBits):
4110         type definition made public.
4111
4112         * bufferlist.C (emergencyWriteAll): the compiler complains that
4113         there is more than one possible lyx::class_fun template to choose from.
4114         I re-named the void specialisation as lyx::void_class_fun.
4115
4116         * lyxfont.C (FontBits' operator==, operator!=): taken out of class.
4117
4118         * tabular_funcs.C: lstrings.h must come before tabular_funcs.h or
4119         the compiler is is unable to find tostr in write_attribute.
4120
4121 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4122
4123         * buffer.C (sgmlError): hide #warning
4124
4125 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4126
4127         * xtl/*: get rid of xtl, which is not in use anyway
4128
4129         * LyXAction.C (init):
4130         * commandtags.h: remove BUFFER_PRINT and BUFFER_PARAMS_GET, which
4131         were unimplemented xtl experimentation
4132
4133 2002-06-04  André Pönitz <poenitz@gmx.net>
4134
4135         * lyxfunc.C: disable array operation on simple formulae
4136
4137 2002-06-03  John Levon  <moz@compsoc.man.ac.uk>
4138
4139         * converter.C: constify a bit
4140
4141 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
4142
4143         * lyx_gui.C: check xforms version correctly
4144
4145 2002-04-30  Herbert Voss  <voss@lyx.org>
4146
4147         * buffer.C (parseSingleLyXformat2Token): fix bug with ignored
4148         "keep" option
4149
4150 2002-05-31  John Levon  <moz@compsoc.man.ac.uk>
4151
4152         * lyxvc.C: fix bug 416 (make sure buffer is saved before
4153           attempt to register it with a VCS)
4154
4155 2002-05-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4156
4157         * lyx_main.C (init): honor variables LYX_DIR_13x and
4158         LYX_USERDIR_13x
4159
4160 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
4161
4162         * buffer.h:
4163         * buffer.C:
4164         * lyx_main.C: fix a crash on bad command line,
4165           and give a useful exit status on error
4166
4167         * lyxfunc.C (doImport): allow -i lyx to work
4168
4169 2002-03-30  André Pönitz <poenitz@gmx.net>
4170
4171         * lyxfunc.C: mathed font changes
4172
4173 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
4174
4175         * LaTeX.C:
4176         * importer.h:
4177         * importer.C:
4178         * lyx_sty.h:
4179         * lyx_sty.C:
4180         * lyxlex.C:
4181         * lyxrow.h:
4182         * lyxtext.h:
4183         * paragraph.h:
4184         * paragraph.C:
4185         * texrow.h:
4186         * texrow.C:
4187         * text.C:
4188         * trans_mgr.h: srcdocs, and some minor cleanups
4189
4190 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4191
4192         * paragraph_pimpl.C (isTextAt): rewrite to be much faster (do not
4193         call getFont all the time)
4194
4195 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4196
4197         * switch from SigC signals to boost::signals
4198
4199 2002-05-29  André Pönitz <poenitz@gmx.net>
4200
4201         * paragraph_pimpl.C (getChar): don't call size() too often...
4202
4203 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4204
4205         * paragraph_pimpl.C (insertChar): do not try to update tables when
4206         appending (pos == size())
4207
4208         * buffer.C (parseSingleLyXformat2Token): reorder a bit the tests
4209         in order to reduce drastically the number of comparisons needed to
4210         parse a large document
4211
4212 2002-05-29  André Pönitz <poenitz@gmx.net>
4213
4214         * text.C:
4215         * text2.C:
4216         * lyxtextclass.C:
4217         * sp_pspell.h:
4218         * textclasslist.[Ch]:
4219         * sp_ispell.h: whitespace change
4220
4221 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4222
4223         * lyxserver.C (callback): tentative fix of lyxserver. Does not use
4224         lyxaction directly now.
4225
4226 2002-05-27  John Levon  <moz@compsoc.man.ac.uk>
4227
4228         * trans.C:
4229         * lyxfont.C:
4230         * lyxvc.C: remove unused headers
4231
4232 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
4233
4234         * Makefile.am:
4235         * buffer.h:
4236         * undostack.h:
4237         * undostack.C:
4238         * undo_funcs.h:
4239         * undo_funcs.C: some cleanups. Use shared_ptr
4240           and a template for the undo stacks.
4241
4242 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
4243
4244         * BufferView_pimpl.h:
4245         * BufferView_pimpl.C:
4246         * kbmap.h:
4247         * kbmap.C:
4248         * kbsequence.h:
4249         * kbsequence.C:
4250         * lyxfunc.h:
4251         * lyxfunc.C:
4252         * text2.C: use key_state/mouse_state
4253
4254 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4255
4256         * vc-backend.C (scanMaster): use boost regex and get rid of LRegex
4257         and LSubstring
4258
4259         * chset.C: change include order
4260         (loadFile): use boost regex and get rid of LRegex and LSubstring
4261
4262         * Makefile.am (BOOST_LIBS): new variable
4263         (lyx_LDADD): use it
4264
4265         * LaTeX.C: change include order.
4266         (scanAuxFile): use boost regex and get rid of LRegex and
4267         LSubstring
4268         (deplog): ditto
4269
4270 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
4271
4272         * ColorHandler.h:
4273         * ColorHandler.C:
4274         * FontInfo.h:
4275         * FontInfo.C: moved to frontends/xforms/
4276
4277         * FontLoader.h:
4278         * FontLoader.C: moved into frontends for GUIIzation
4279
4280         * Makefile.am:
4281         * lyx_gui.C:
4282         * lyxfont.C:
4283         * lyxfunc.C: changes from above
4284
4285 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
4286
4287         * LColor.C: remove spurious X include
4288
4289         * BufferView_pimpl.C:
4290         * Makefile.am:
4291         * font.h:
4292         * font.C:
4293         * text.C:
4294         * text2.C: move font metrics to frontends/
4295
4296 2002-05-24  Juergen Vigna  <jug@sad.it>
4297
4298         * undo_funcs.C (textHandleUndo): fix the cursor selection after
4299         setting the undo_cursor.
4300
4301         * ParagraphParameters.h: include local includes first.
4302
4303 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
4304
4305         * BufferView_pimpl.C:
4306         * BufferView_pimpl.h:
4307         * Makefile.am:
4308         * WorkArea.h:
4309         * WorkArea.C:
4310         * screen.C: move WorkArea into frontends/
4311
4312         * lyxscreen.h:
4313         * screen.C:
4314         * text.C:
4315         * BufferView.C:
4316         * BufferView2.C: move LyXScreen into frontends/
4317
4318         * lyxlookup.h:
4319         * lyxlookup.C:
4320         * lyx_gui.C: move lyxlookup into frontends/xforms/
4321
4322 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
4323
4324         * BufferView2.C:
4325         * BufferView_pimpl.C:
4326         * FontLoader.C:
4327         * LyXView.h:
4328         * LyXView.C:
4329         * Makefile.am:
4330         * WorkArea.C:
4331         * XFormsView.h:
4332         * XFormsView.C:
4333         * buffer.C:
4334         * bufferlist.C:
4335         * bufferview_funcs.C:
4336         * converter.C:
4337         * importer.C:
4338         * lyx_cb.C:
4339         * lyx_gui.C:
4340         * lyx_main.C:
4341         * lyx_find.C:
4342         * lyxfunc.C:
4343         * lyxvc.C:
4344         * minibuffer.C:
4345         * text.C:
4346         * text2.C:
4347         * trans.C:
4348         * vc-backend.C: move LyX/XFormsView into frontends/
4349
4350 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
4351
4352         * Makefile.am:
4353         * PainterBase.C:
4354         * PainterBase.h:
4355         * Painter.C:
4356         * Painter.h:
4357         * WorkArea.C:
4358         * WorkArea.h:
4359         * screen.C:
4360         * tabular.C:
4361         * text.C:
4362         * text2.C: move Painter to frontends/
4363
4364 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4365
4366         * buffer.C: comment out some some code that depend upon lyx_format
4367         < 220
4368
4369         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
4370         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
4371
4372         * buffer.h (NO_COMPABILITY): turn off compability
4373
4374         * ColorHandler.C: include scoped_array.hpp
4375
4376         * font.C: Use more specific smart_ptr header.
4377         * Painter.C: ditto
4378         * gettext.C: ditto
4379         * ShareContainer.h: ditto
4380         * lyx_main.h: ditto
4381         * kbmap.h: ditto
4382         * FontInfo.h: ditto
4383         * BufferView_pimpl.h: ditto
4384         * ColorHandler.h: ditto
4385
4386         * kbmap.C (defkey): change call to shared_ptr::reset
4387
4388 2002-05-21  Juergen Vigna  <jug@sad.it>
4389
4390         * buffer.C (insertErtContents): fix to insert ert asis if it is
4391         non empty. Skip it completely if it contains only whitespaces.
4392
4393 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
4394
4395         * BufferView_pimpl.C:
4396         * BufferView2.C: clear selection on paste (bug 393)
4397
4398 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4399
4400         * DepTable.C: include ctime
4401
4402 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
4403
4404         * buffer.C (latexParagraphs): Add new argument (moving_arg).
4405
4406 2002-05-14  Juergen Vigna  <jug@sad.it>
4407
4408         * text.C (breakParagraph): fixed function to honor the keepempty
4409         layout in the right maner and also to permit the right breaking
4410         algorithm on empty or non empyt keepempty paragraphs.
4411
4412         * paragraph.C (breakParagraph): we have to check also if the par
4413         is really empty (!size()) for isempty otherwise we do the wrong
4414         paragraph break.
4415
4416 2002-05-10  Juergen Vigna  <jug@sad.it>
4417
4418         * buffer.[Ch] : The following are only changes to the ert
4419         compatibility read reading old LaTeX layout and font stuff and
4420         convert it to ERTInsets.
4421
4422         * buffer.h: added isErtInset().
4423
4424         * buffer.C (struct ErtComp): add a fromlayout bool to check
4425         if we're inside a LaTeX layout.
4426         (isErtInset): new helper function.
4427         (insertErtContents): look for other ert insets before this one
4428         and insert the contents there, so that we don't have subsequent
4429         ERT insets with nothing between them. This way we create only one
4430         inset with multiple paragraphs. Also check if we don't insert only
4431         spaces ' ' as they are ignored anyway afterwards in the .tex file
4432         so if we have only spaces we will ignore this latex part in the
4433         new file.
4434         (parseSingleLyXformat2Token \\layout): better compatibility when
4435         reading layout-latex stuff.
4436         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
4437         language tag.
4438         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
4439         stuff after reading the inset only get the information back from
4440         the stack.
4441
4442 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
4443
4444         * buffer.C (makeLaTeXFile): Put language options after loading babel.
4445
4446         * LaTeXFeatures.C (getBabelOptions): New method.
4447
4448 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4449
4450         * BufferView_pimpl.C (Dispatch): work around missing argument for
4451         'layout'
4452
4453 2002-05-08  Juergen Vigna  <jug@sad.it>
4454
4455         * text.C (leftMargin): handle paragraph leftindent.
4456
4457         * paragraph.C (writeFile): write the new \\leftindent tag.
4458         (validate): handle leftindent code.
4459         (TeXEnvironment): handle paragraphleftindent code again.
4460
4461         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
4462
4463         * buffer.C (parseSingleLyXformat2Token): added compatibility code
4464         for paragrap_extra indent code and new token \\leftindent.
4465         (latexParagraphs): handle the leftindent as environment.
4466
4467         * ParameterStruct.h: added leftindent support.
4468
4469         * ParagraphParameters.C (leftIndent): added support functions for
4470         the paragraph left indent.
4471
4472         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
4473         more appropriate.
4474
4475 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
4476
4477         * paragraph.C (isRightToLeftPar): Return false for a paragraph
4478         inside insetERT.
4479
4480         * text.C (computeBidiTables): No bidi in insetERT.
4481
4482         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
4483         in RTL documents.
4484
4485 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4486
4487         * version.C.in: pre 5
4488
4489 2002-05-02  José Matos  <jamatos@fep.up.pt>
4490         * buffer.C (makeDocBookFile): white space changes, add newline to
4491         command styles.
4492         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
4493
4494         * tabular.C (docBook): fix typo.
4495
4496 2002-05-03  Juergen Vigna  <jug@sad.it>
4497
4498         * screen.C (drawFromTo): recalculate the rowpointer if we had a
4499         change in LyXText as we can not be sure it was not freed.
4500         (drawOneRow): remove unused code.
4501
4502         * text.C (drawInset): redo the calculation of the need_break_row as
4503         it could have a row which was already freed.
4504         (draw): look at the return value of drawInset and return false if
4505         it also returned false.
4506         (paintRowText): look at the return value of draw and return false if
4507         it also returned false.
4508
4509         * lyxtext.h: added bool return type to drawInset() and draw() so that
4510         if we have a change in the row so that the rowbreak has to be redone
4511         we abort drawing as it will be called again.
4512
4513 2002-05-02  Juergen Vigna  <jug@sad.it>
4514
4515         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
4516         a change in the maintext also if we're inside an inset.
4517         (Dispatch): set the cursor again after a break line and after the
4518         screen has been updated as it could be we're in a different row.
4519
4520         * text2.C (fixCursorAfterDelete): check to make sure we don't request
4521         to set the cursor behind the pargraph with > size().
4522         (setCursor): check also for the same paragraph when checking where
4523         to put the cursor if we have a NFR inset.
4524
4525         * buffer.C (parseSingleLyXformat2Token): move the compatibility
4526         parts of layout read further up as it still was in the wrong
4527         position.
4528
4529 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4530
4531         * screen.C (drawFromTo): change sine fullRebreak always return
4532         true.
4533
4534         * buffer.C (parseSingleLyXformat2Token): reindent some
4535
4536         * BufferView_pimpl.C (update): change since fullRebreak always
4537         return true.
4538         (Dispatch): git rid of the last hardcoded "Standard"s.
4539
4540 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4541
4542         * text2.[Ch] (fullRebreak): make it return void now that we always
4543         returned true.
4544
4545 2002-04-30  Juergen Vigna  <jug@sad.it>
4546
4547         * buffer.C (parseSingleLyXformat2Token): reset the font before the
4548         ert compatibility check for "latex" layout.
4549
4550 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
4551
4552         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
4553         minipages: use col% instead of p%, and also use the current font.
4554         (makeLaTeXFile): Fix use babel condition.
4555         (parseSingleLyXformat2Token): Correct font when reading old floats.
4556
4557 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
4558
4559         * BufferView_pimpl.C (Dispatch): Check that float type exists when
4560         inserting list of floats.
4561
4562 2002-04-25  Herbert Voss  <voss@lyx.org>
4563
4564         * MenuBackend.C (expand): don't add the graphics extensions to the
4565         export menu
4566
4567 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4568
4569         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
4570         non-existing layout, do not complain if it was the default layout
4571         of the original class (bug #342)
4572
4573 2002-04-24  Juergen Vigna  <jug@sad.it>
4574
4575         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
4576         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
4577
4578 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
4579
4580         * buffer.C (getBibkeyList): If using \bibliography, return the
4581         option field with the reference itself. Enables us to provide natbib
4582         support when using \bibliography.
4583
4584 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
4585
4586         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
4587
4588         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
4589         natbib is provided by the LaTeX class.
4590
4591 2002-04-23  Juergen Vigna  <jug@sad.it>
4592
4593         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
4594         Wakeup functions.
4595
4596         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
4597
4598 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4599
4600         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
4601
4602         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
4603         ensuremath around textordmasculine, textordfeminine and
4604         textdegree.
4605
4606 2002-04-19  Juergen Vigna  <jug@sad.it>
4607
4608         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
4609         reinitializing the buffer otherwise row-dimensions may be wrong.
4610         (update): reset also the selection cursors if they do exits otherwise
4611         their x/y positions may be wrong.
4612
4613         * text2.C (cursorDown): don't enter the inset if we came from a row
4614         above and are one row over the inset.
4615
4616         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
4617         really leaving an inset.
4618
4619 2002-04-18  Juergen Vigna  <jug@sad.it>
4620
4621         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
4622         of the selected paragraph does not have the selected layout also if
4623         the last one had!
4624
4625         * text2.C (setLayout): fixed bug which did not change last selected
4626         paragraph.
4627
4628         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
4629         changed the read and substituted \\end_float with \\end_inset!
4630
4631         * BufferView_pimpl.C (cursorPrevious):
4632         (cursorNext): fixed to make it work with rows heigher than the work
4633         area without moving the cursor only the draw of the row.
4634         (workAreaMotionNotify): fix jumping over high rows.
4635
4636 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4637
4638         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
4639         Ressler.
4640
4641 2002-04-16  Juergen Vigna  <jug@sad.it>
4642
4643         * text2.C (setCursor): set also the irow().
4644         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
4645         (cursorUp):
4646         (cursorDown): support for locking an inset if the x_fix value goes
4647         inside it. That way I can transverse insets too with cursor up/down.
4648
4649         * lyxrow.h: added irow helper function same as other (i) functions.
4650
4651         * BufferView_pimpl.C (cursorPrevious):
4652         (cursorNext): fixed for insets!
4653
4654 2002-04-15  Juergen Vigna  <jug@sad.it>
4655
4656         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
4657         position otherwise it is wrong in some cases.
4658
4659         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
4660         inside the inset before the call.
4661
4662 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
4663
4664         * buffer.[Ch] (getBibkeyList): make it const.
4665
4666 2002-04-12  Juergen Vigna  <jug@sad.it>
4667
4668         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
4669
4670         * text2.C (getCursorX): new helper function
4671         (setCursor): compute also ix_
4672         (setCursorFromCoordinates): set also ix.
4673
4674         * lyxcursor.h: added ix_ and helper functions.
4675
4676         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
4677
4678         * buffer.C (insertStringAsLines): dont break paragraph if the this
4679         paragraph is inside an inset which does not permit it!
4680
4681         * text.C (breakParagraph): honor keepempty flag and break the paragraph
4682         also with no chars on this paragraph.
4683         (paintRowText): only paint stuff if it's inside the workarea!
4684
4685         * paragraph.C (breakParagraph): honor keepempty flag and break the
4686         paragraph always below not above.
4687
4688         * BufferView2.C (unlockInset): update the paragraph layout on inset
4689         unlock as we changed paragraph in such a case.
4690
4691         * lyxfind.C (LyXFind): clear the former selection if not found!
4692
4693         * text2.C (insertInset): freeze Undo after setUndo so that it is not
4694         again called in insertChar().
4695
4696         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
4697         an inset which uses the whole row!
4698         (rightMargin): ditto.
4699         (insertChar): force a rebreak if we inserted an inset!
4700
4701 2002-03-28  Herbert Voss  <voss@lyx.org>
4702
4703         * lyxlength.[Ch]: add inBP() to get the right PS-point
4704         units (BigPoint). With inPixels we have rounding errors
4705
4706 2002-04-11  Juergen Vigna  <jug@sad.it>
4707
4708         * text2.C (setCursorFromCoordinates): set iy to the right value.
4709         (setCursor): add check if row->previous exists!
4710
4711         * buffer.C (parseSingleLyXformat2Token): reset font after read of
4712         an old float_type as this was the case in the old code!
4713
4714         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
4715
4716         * BufferView2.C (showLockedInsetCursor): use iy
4717         (fitLockedInsetCursor): ditto
4718
4719         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
4720         locked insets as there we have the right value now.
4721
4722         * lyxcursor.C: added iy_ variable and iy functions to set to the
4723         baseline of cursor-y of the locked inset.
4724
4725         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
4726         (setCursor): fixed for insets which need a full row.
4727
4728         * text.C (rowLastPrintable): don't ignore the last space when before
4729         an inset which needs a full row.
4730         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
4731         as last character of a row when before a inset which needs a full row.
4732
4733 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4734
4735         * version.C.in: update date
4736
4737         * text2.C (fullRebreak): try to always return true and see what
4738         happens...
4739
4740 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4741
4742         * MenuBackend.C (expand): use Floating::listName
4743
4744         * FloatList.C (FloatList): add listName argument to the built-in
4745         floats
4746
4747         * Floating.[Ch]: add listName member, which is the 'List of XXX'
4748         text associated with the float.
4749
4750 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4751
4752         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
4753
4754 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4755
4756         * ShareContainer.h: add a couple of missing typenames.
4757
4758 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
4759
4760         * lyxrc.C (getDescription): use _() correctly rather than N_().
4761
4762 2002-03-28  Herbert Voss  <voss@lyx.org>
4763
4764         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
4765         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
4766
4767 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4768
4769         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
4770         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
4771
4772 2002-03-29  Juergen Vigna  <jug@sad.it>
4773
4774         * lyxfunc.C (dispatch): add a missing fitCursor call.
4775
4776         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
4777         it was scrolled by a cursor move, so return the bool status.
4778
4779         * BufferView.C (fitCursor): return the bool flag also to the outside
4780         world as this is needed.
4781
4782         * screen.C (toggleToggle): don't subtract the offset if it's positive.
4783
4784         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
4785         call the edit() as it is not needed (and wrong) IMO.
4786         (workAreaButtonPress): set the screen_first variable before evt.
4787         unlock the inset as this may change screen_first and then we have
4788         a wrong y position for the click!
4789
4790 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4791
4792         * MenuBackend.C (expand): another translation that I missed
4793
4794 2002-03-28  Juergen Vigna  <jug@sad.it>
4795
4796         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
4797
4798         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
4799
4800 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4801
4802         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
4803
4804         * MenuBackend.C (expand): fix export/view/update when there is no
4805         document open.
4806
4807 2002-03-27  Herbert Voss  <voss@lyx.org>
4808
4809         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
4810         and text%
4811
4812 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4813
4814         * bufferview_funcs.C (currentState): only show paragraph number
4815         for is DEVEL_VERSION is set.
4816
4817         * lyxfunc.C (dispatch): put warning in INFO channel
4818
4819         * MenuBackend.C (expand): translate the name of floats
4820
4821         * FloatList.C (FloatList): mark the float names for translation
4822
4823         * converter.C (convert): use LibScriptSearch
4824
4825 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4826
4827         * MenuBackend.C (defaults): fix default menu (we might as well get
4828         rid of it...)
4829
4830 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4831
4832         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
4833         directory.
4834
4835 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4836
4837         * lyxvc.C: reorder includes.
4838
4839 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
4840
4841         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
4842           properly
4843
4844 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
4845
4846         * CutAndPaste.C: change layouts earlier on paste
4847           to avoid crashing when calling getFont()
4848
4849 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
4850
4851         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
4852         irritating #error.
4853
4854 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4855
4856         * WorkArea.C: remove 'Pending' debug message.
4857
4858         * most files: ws cleanup
4859
4860         * buffer.[Ch]: ws changes
4861
4862         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
4863
4864 2002-03-21  Juergen Vigna  <jug@sad.it>
4865
4866         * tabular.C (SetMultiColumn): collapse also the contents of the
4867         cells and set the last border right. Added a Buffer const * param.
4868
4869 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4870
4871         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
4872         linking or not.
4873
4874 2002-03-19  Juergen Vigna  <jug@sad.it>
4875
4876         * text2.C (clearSelection): reset also xsel_cache.
4877
4878         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
4879         where it needs to be called (John tells us to do so too :)
4880         (selectionLost): reset sel_cache.
4881
4882         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
4883
4884 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4885
4886         * text2.C (setCursorIntern): put debuging code in INSETS channel
4887
4888 2002-03-19  André Pönitz <poenitz@gmx.net>
4889
4890         * lyxfunc.C: tiny whitespace change
4891
4892 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4893
4894         * ToolbarDefaults.C (init):
4895         * LyXAction.C (init):
4896         * commandtags.h:
4897         * BufferView_pimpl.C (Dispatch):
4898         * lyxfunc.C (dispatch): remove LFUN_DEPTH
4899
4900 2002-03-19  Allan Rae  <rae@lyx.org>
4901
4902         * exporter.C (Export): removeAutoInsets before doing anything else.
4903         While I've just introduced a dependency on BufferView this really is
4904         the best place to clean the buffer otherwise you need to cleanup in
4905         a dozen places before calling export or cleanup in a dozen functions
4906         that export calls.
4907
4908         * converter.C (runLaTeX):
4909         (scanLog): Better handling of removeAutoInsets and screen updates.
4910
4911         * lyxfunc.C (dispatch): small whitespace changes
4912
4913 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4914
4915         * WorkArea.C (C_WorkAreaEvent): return a value.
4916         (event_cb): return 1 if we handled the event, 0 otherwise.
4917
4918         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
4919
4920 2002-03-18  Juergen Vigna  <jug@sad.it>
4921
4922         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
4923         (GetAdditionalWidth): ditto.
4924         (RightLine): ditto.
4925         (LeftLine): ditto.
4926
4927         * BufferView2.C (copy): use getLyXText() so that we do it inside an
4928         inset if we're there actually (probably not used right now but this
4929         is the direction to go for unifying code).
4930         (paste): disable code to clear the selection.
4931
4932         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
4933         inside an InsetText and move the check further up as it is in the
4934         wrong place.
4935
4936         * text2.C (pasteSelection): set a selection over the pasted text.
4937
4938 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
4939
4940         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
4941         and libgraphics to build on Cygwin.
4942
4943 2002-03-15  Juergen Vigna  <jug@sad.it>
4944
4945         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
4946         inserting an Inset into the paragraph. I know this is not the best
4947         fix but we already use current_view in CutAndPaste so we will remove
4948         all of it's using at the same time.
4949
4950         * buffer.C (sgmlError): deactivated function till it is rewritten in
4951         the right mode, now it can create problems.
4952
4953         * paragraph.C (isLineSeparator): check if getInset returns != 0,
4954         before accessing it.
4955
4956 2002-03-14  Juergen Vigna  <jug@sad.it>
4957
4958         * undo_funcs.C (textHandleUndo): do the right thing when updating
4959         the inset after the undo/redo.
4960
4961         * text2.C (setCursor): just some testcode for #44 not ready yet.
4962
4963         * undo_funcs.C (textHandleUndo): set the next() and previous()
4964         pointers of the paragraph to 0 before deleting otherwise we have
4965         problems with the Paragraph::[destructor].
4966
4967         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
4968         on a paragraph insertion.
4969
4970 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4971
4972         * buffer.C (asciiParagraph): use += operator for char append to
4973         string.
4974
4975         * paragraph.C (getFontSettings): compare >= not just >
4976         (highestFontInRange): ditto
4977         (setFont): ditto
4978
4979 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4980
4981         * paragraph.C: change several algorithm to be more appripriate for
4982         the problem domain. This is lookip in FontList and in the InsetList.
4983
4984 2002-03-13  André Pönitz <poenitz@gmx.net>
4985
4986         * commandtags.h:
4987         * LyXAction.C: remove unused LFUN_MATH_MACROARG
4988
4989 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
4990
4991         * commandtags.h:
4992         * LyXAction.C:
4993         * lyxfunc.C:
4994         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
4995
4996 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4997
4998         * Painter.C (display): anon helper function, adjust code for this
4999         change.
5000         (pixmap): remove function.
5001
5002         * Painter.h: remove private display variable.
5003
5004         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
5005
5006 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
5007
5008         * WorkArea.[Ch]: remove figinset_canvas cruft.
5009
5010 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5011
5012         * lyxtextclass.C (operator): add one item cache optimization.
5013
5014         * bufferlist.h: doxy changes
5015
5016         * bufferlist.C: ws changes
5017
5018         * DepTable.[Ch] (ext_exist): place const in the right spot.
5019
5020         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
5021         call resizeInsets.
5022         (workAreaExpose): call resizeInsets when the with BufferView changes.
5023         (Dispatch): adjust for protectedBlank removal
5024         (specialChar): call updateInset if the insert went ok.
5025
5026         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
5027         specialChar instead.
5028
5029         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
5030
5031         * BufferView.h: doxy change
5032
5033         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
5034
5035         * lyxtextclass.C (operator[]): remove non-const version
5036         (defaultLayout): remove non-const version
5037
5038 2002-03-12  Juergen Vigna  <jug@sad.it>
5039
5040         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
5041         did resize the LyXText too.
5042
5043         * buffer.C (readLyXformat2): set layout information on newly allocated
5044         paragraphs.
5045
5046         * tabular.C (OldFormatRead): set layout information on the paragraph.
5047
5048 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
5049
5050         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
5051
5052 2002-03-11  Juergen Vigna  <jug@sad.it>
5053
5054         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
5055         plainly wrong.
5056         (resizeCurrentBuffer): force also the insets to resize themselfes.
5057         (moveCursorUpdate): fixed up for InsetText.
5058
5059 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
5060
5061         * commandtags.h:
5062         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
5063         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
5064         value of Dialogs::tooltipsEnabled().
5065         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
5066
5067 2002-03-08  Juergen Vigna  <jug@sad.it>
5068
5069         * BufferView_pimpl.C (updateInset): update inset inside inset also
5070         if it isn't inside theLockingInset().
5071
5072 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5073
5074         * buffer.C (asciiParagraph): redo some of the word and line length
5075         handling.
5076         (getLists): look for Caption instead of caption.
5077
5078 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5079
5080         * buffer.C (Buffer): initialize niceFile to true
5081         (makeLaTeXFile):
5082         (makeLinuxDocFile):
5083         (makeDocBookFile): make sure niceFile is true on exit
5084
5085 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5086
5087         * buffer.C (makeLaTeXFile): escape ~ in \input@path
5088
5089 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
5090
5091         * LyXSendto.C: remove.
5092         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
5093         * lyx_gui.C: remove now-redundant comment.
5094         * ColorHandler.h: remove forward declaration of class WorkArea.
5095         * lyxfunc.C: remove #include "WorkArea.h".
5096
5097 2002-03-07  Juergen Vigna  <jug@sad.it>
5098
5099         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
5100         got moved away with the DEPM and also set the inset_owner always
5101         right which before could have been omitted.
5102
5103 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5104
5105         * buffer.C (parseSingleLyXformat2Token): use default layout is the
5106         wanted layout is not found.
5107
5108 2002-03-07  Juergen Vigna  <jug@sad.it>
5109
5110         * CutAndPaste.C (cutSelection): another layout settings forgotten.
5111
5112 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5113
5114         * paragraph.C (breakParagraph): use default layout not layout of
5115         prev paragraph.
5116         (Paragraph): clear ParagraphParameters.
5117
5118 2002-03-06  Juergen Vigna  <jug@sad.it>
5119
5120         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
5121         otherwise it would not be a valid lenght. Fixed a special case in
5122         the minipage compatibility read where we end the document with a
5123         minipage.
5124
5125         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
5126         was set as it could be 0 for InsetTexts first entry.
5127
5128 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5129
5130         * paragraph.C (writeFile): if layout is empty write out
5131         defaultLayoutName().
5132
5133         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
5134         file without named layout we set layout to defaultLayoutName().
5135
5136 2002-03-06  Juergen Vigna  <jug@sad.it>
5137
5138         * CutAndPaste.C (copySelection): set layout for new paragraph.
5139
5140         * text.C (prepareToPrint): leave ERT inset left aligned
5141         (leftMargin): don't indent paragraphs inside ERT insets
5142
5143 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5144
5145         * paragraph.C (breakParagraph): dont call clear do the work manually
5146
5147         * paragraph.[Ch] (clear): remove function
5148
5149 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5150
5151         * paragraph.C (Paragraph): dont call clear, the work has already
5152         been done.
5153
5154         * lyxtextclass.C (operator): assert if n is empty
5155
5156         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
5157         work manually instead.
5158
5159 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
5160
5161         * BufferView_pimpl.C: protect selectionLost against text == 0
5162
5163 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5164
5165         * text.C (breakParagraph): fix a setting layout to '0' problem.
5166
5167 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
5168
5169         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
5170         final location of file, for the included files, and graphics.
5171
5172 2002-03-05  Juergen Vigna  <jug@sad.it>
5173
5174         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
5175
5176 2002-03-04  Juergen Vigna  <jug@sad.it>
5177
5178         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
5179
5180         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
5181         last column of multicolumn cells.
5182         (SetWidthOfMulticolCell): recalculate NMC and real columns.
5183
5184 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
5185
5186         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
5187         file if it doesn't go to a temporary file.
5188
5189         * buffer.C (sgmlOpenTag):
5190         (sgmlCloseTag):  remove extra newline insertion.
5191
5192 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5193
5194         * text.C (getRowNearY): comment out debug msg
5195
5196 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5197
5198         * text2.C: first -> first_y
5199
5200         * text.C (getRowNearY): add some attemts at a possible
5201         optimization, not working.
5202
5203         * tabular.[Ch]: add BufferParams to several function so that newly
5204         created paragraph can be initialized to he default layotu for the
5205         buffers textclass.
5206
5207         * tabular-old.C (ReadOld): add buf->params to call of Init
5208
5209         * screen.C: rename text->first to text->first_y
5210
5211         * paragraph.C (breakParagraph): always set layout in the broken
5212         paragraph
5213
5214         * lyxtextclass.C (Read): remove lowercase
5215         (hasLayout): ditto
5216         (operator): ditto
5217         (delete_layout): ditto
5218
5219         * lyxtext.h: rename first -> first_y
5220
5221         * lyxlayout.C (Read): remove lowercase
5222         (name): ditto
5223         (setName): ditto
5224         (obsoleted_by): ditto
5225
5226         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
5227
5228         * buffer.C (insertErtContents): add params are to InsetERT
5229         (parseSingleLyXformat2Token): add code to check if a paragraphs
5230         layout really exist.
5231         (parseSingleLyXformat2Token): add params to several inset
5232         constructors
5233         (asciiParagraph): remove lowercase, do the layout comparisons with
5234         no_case
5235
5236         * BufferView_pimpl.C (cursorNext): first -> first_y
5237         (resizeCurrentBuffer): first -> first_y
5238         (updateScrollbar): first -> first_y
5239         (scrollCB): first -> first_y
5240         (workAreaMotionNotify): first -> first_y
5241         (workAreaButtonPress): first -> first_y
5242         (checkInsetHit): first -> first_y
5243         (cursorPrevious): first -> first_y
5244         (cursorNext): first -> first_y
5245         (Dispatch): add buffer_->params to severl inset contructors
5246
5247 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5248
5249         * lyxlayout.C (Read): remove some debug info that I forgot.
5250
5251         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
5252         clean up the code slightly.
5253         (makeLinuxDocFile): ditto
5254         (makeDocBookFile): ditto
5255
5256         * text2.C: layout as string
5257
5258         * text.C: layout as string
5259
5260         * paragraph_pimpl.C: layout as string
5261
5262         * paragraph.[Ch]: layout as string
5263
5264         * lyxtextclasslist.[Ch]: layout as string
5265
5266         * lyxtextclass.[Ch]: layout as string
5267
5268         * lyxtext.h: layout as string
5269
5270         * lyxlayout.[Ch]: layout as string
5271
5272         * lyx_cb.C: layout as string
5273
5274         * bufferview_funcs.C: layout as string
5275
5276         * bufferparams.C: layout as string
5277
5278         * buffer.C: layout as string
5279
5280         * LyXView.[Ch]: layout as string
5281
5282         * LaTeXFeatures.[Ch]: layout as string
5283
5284         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
5285
5286         * BufferView_pimpl.C: change current_layout to string, remove
5287         lyx::layout_type.
5288         (Dispatch):
5289         (smartQuote):
5290         (insertInset):
5291         (workAreaButtonRelease): layout as string
5292
5293         * BufferView2.C (unlockInset): adjust
5294
5295         * vspace.C (asLatexCommand): use an explict temp variable.
5296
5297 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
5298
5299         * Makefile.am: use FRONTEND_*
5300
5301 2002-03-01  Juergen Vigna  <jug@sad.it>
5302
5303         * tabular.C (SetWidthOfMulticolCell): changed to something better
5304         I hope but still work in progress.
5305         (recalculateMulticolumnsOfColumn): renamed function from
5306         recalculateMulticolCells as it is more appropriate now.
5307         (SetWidthOfCell): calculate multicols better.
5308
5309 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5310
5311         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
5312
5313         * lyxfunc.C (processKeySym): print sequence also if it is
5314         `deleted' (complete)
5315
5316         * kbsequence.C (print): print sequence even if it is deleted
5317         (complete would be a better word, actually).
5318
5319         * lyxfunc.C (dispatch): print complete options after a prefix key
5320
5321         * vspace.C (asLatexCommand): rewrite in a slightly different form.
5322
5323 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
5324
5325         * text2.C (setCharFont): eliminate setCharFont code duplication.
5326
5327 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5328
5329         * BufferView_pimpl.C (Dispatch): remove bogus handling of
5330         LFUN_TABULAR_FEATURE (bug #177)
5331
5332 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
5333
5334         * Makefile.am: remove figure.h
5335
5336 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
5337
5338         * Bufferview_pimpl.C:
5339         * CutAndPasteC:
5340         * LaTeX.C:
5341         * LyXSendto.C:
5342         * buffer.C:
5343         * bufferlist.C:
5344         * converter.C:
5345         * language.C:
5346         * lyxfunc.C:
5347         * lyxvc.C:
5348         * paragraph.C:
5349         * text.C:
5350         * text2.C: remove #include "lyx_gui_misc.h".
5351
5352         * LaTeX.C: added #include <cstdio>
5353
5354 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5355
5356         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
5357         that the paragraph following this one can have.
5358
5359         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
5360
5361         * vspace.C (asLatexCommand): fix bogus gcc warning
5362
5363         * Makefile.am (lyx_SOURCES): remove vms_defines.h
5364
5365 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
5366
5367         * text2.C (setLayout): get rid of redundant code
5368
5369 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
5370
5371         * text2.C (incDepth): make sure depth cannot be increased beyond
5372         reasonable values.
5373
5374 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
5375
5376         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
5377         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
5378
5379         * PainterBase.h (image):
5380         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
5381         a LyXImage const *.
5382
5383 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
5384
5385         * BufferView.C:
5386         * BufferView.h:
5387         * BufferView_pimpl.C:
5388         * BufferView_pimpl.h:
5389         * LaTeXFeatures.C:
5390         * LyXAction.C:
5391         * LyXView.C:
5392         * Makefile.am:
5393         * UpdateList.h:
5394         * UpdateList.C:
5395         * buffer.C:
5396         * figure.h:
5397         * figureForm.C:
5398         * figureForm.h:
5399         * figure_form.C:
5400         * figure_form.h:
5401         * lyx_cb.C:
5402         * lyx_gui.C:
5403         * lyx_gui_misc.C:
5404         * lyxfunc.C:
5405         * sp_base.h:
5406         * sp_ispell.h:
5407         * sp_pspell.h:
5408         * sp_spell.C: remove fig inset, and the crap house of
5409           cards that follows it
5410
5411 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
5412
5413         * Makefile.am:
5414         * lyxserver.C:
5415         * os2_defines.h:
5416         * os2_errortable.h:
5417         * nt_defines.h: move .h into support/
5418
5419         * vms_defines.h: remove
5420
5421         * WorkArea.C: add space in debug output
5422
5423         * text2.C:
5424         * paragraph.C:
5425         * buffer.C: add WITH_WARNINGS
5426
5427         * vc-backend.h:
5428         * vc-backend.C:
5429         * bufferlist.C: s/retrive/retrieve/, add docs
5430
5431         * vspace.h:
5432         * vspace.C:
5433         * kbmap.h:
5434         * lyxlength.h:
5435         * lyxgluelength.h:
5436         * length_common.h:
5437         * chset.h:
5438         * chset.C: add docs
5439
5440         * lyxgui.C: add ID to X error handler
5441
5442         * lyxtestclass.c: fix typo
5443
5444 2002-02-26  Juergen Vigna  <jug@sad.it>
5445
5446         * tabular_funcs.C (write_attribute): changed so that some default
5447         attributes are not written at all.
5448         (getTokenValue): set default values before trying to read the
5449         value so we have the return value always set as default if we don't
5450         find the token we search for.
5451
5452         * tabular.C (Write): write bools as bools not as strings!
5453
5454 2002-02-22  Juergen Vigna  <jug@sad.it>
5455
5456         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
5457         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
5458
5459         * text.C (leftMargin): don't add an indent for paragraphs inside
5460         tabular cells (fix #208).
5461
5462 2002-02-21  José Matos  <jamatos@fep.up.pt>
5463
5464         * tabular.C (docBook): fixed support for long tables.
5465
5466 2002-02-20  Juergen Vigna  <jug@sad.it>
5467
5468         * text2.C (getFont): get the drawing font of the Inset if this
5469         paragraph is inside an inset (only important for InsetERT for now).
5470
5471         * buffer.C (insertErtContents): use new lanugage params in ERT
5472         constructor.
5473
5474         * CutAndPaste.C: commenting out seemingly uneeded code.
5475
5476 2002-02-19  Allan Rae  <rae@lyx.org>
5477
5478         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
5479         Iterators might be simple to use but they also get invalidated.
5480         (removeAutoInsets): renamed saved cursor tracking variables and added
5481         some comments to clarify what everything does.
5482
5483 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
5484
5485         * Chktex.C:
5486         * LaTeX.C:
5487         * LyXSendto.C:
5488         * converter.C:
5489         * lyx_cb.C:
5490         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
5491         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
5492
5493         * lyxfunc.C:
5494         * vc-backend.h: remove #include "support/syscall.h"
5495
5496         * LaTeX.C:
5497         * LyXSendto.C:
5498         * converter.C: rearrange #includes in Lars' approved fashion.
5499
5500         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
5501         forward declare class Timeout in the header file.
5502
5503         * XFormsView.C: changes due to the above.
5504
5505         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
5506         similar to LyXView.
5507
5508         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
5509         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
5510
5511 2002-02-18  José Matos  <jamatos@fep.up.pt>
5512
5513         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
5514         insets contents.
5515
5516 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
5517
5518         * a lot of small ws changes
5519         * add a lot of using std::XXX
5520         * use std construcs some places where approp.
5521         * use some exisint stuff from lyxfunctional where approp.
5522         * Make file changes to use partial linking (lets test this now...)
5523
5524 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
5525
5526         * Chktex.C:
5527         * buffer.C:
5528         remove #include "support/syscontr.h" as it's redundant. Always has been.
5529
5530         * Chktex.C:
5531         * LaTeX.C:
5532         * LyXSendto.C:
5533         * converter.C:
5534         * lyx_cb.C:
5535         * vc-backend.C:
5536         change Systemcalls::System to Systemcalls::Wait and
5537         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
5538         No change of functionality, just reflects the stripped down Systemcalls
5539         class.
5540
5541 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
5542
5543         * debug.[Ch]: add a GRAPHICS type to the enum.
5544
5545 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5546
5547         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
5548
5549         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
5550         there is an inset.
5551
5552 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5553
5554         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
5555         match the changes below.
5556
5557         * text2.C (toggleInset): if there is not editable inset at cursor
5558         position, try to see if cursor is _inside_ a collapsable inset
5559         and close it.
5560
5561 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5562
5563         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
5564         document menu has a nice checkbox
5565
5566 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5567
5568         * lyxlength.C (asLatexString): change PW to output as percent of
5569         \textwidth.
5570
5571         * lengthcommon.C: change '%' to 't%'
5572
5573         * lyxfunc.C (dispatch): a few comments from Martin
5574
5575 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
5576
5577         * WorkArea.h:
5578         * WorkArea.C:
5579         * BufferView_pimpl.h:
5580         * BufferView_pimpl.C: clear our selection when X tells us we've lost
5581           the X selection.
5582
5583 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5584
5585         * vspace.C (inPixels): fix compiler warning
5586
5587 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5588
5589         * lyxfunc.C (getStatus): fix status message for disabled commands.
5590
5591 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
5592
5593         * BufferView_pimpl.C: fix crash on close buffer
5594         during selection (#227)
5595
5596 2002-01-27  Herbert Voss  <voss@lyx.org>
5597
5598         * buffer.C: link old Figure to new graphic inset
5599
5600 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
5601
5602         * FontLoader.C (getFontinfo): Change the latex font names in order
5603         to match the names of type1inst.
5604
5605 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5606
5607         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
5608
5609         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
5610         (extchanged): ditto
5611         (ext_exist): ditto
5612         (remove_files_with_extension): ditto
5613         (remove_file): ditto
5614         (write): ditto
5615
5616         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
5617         document is smaller than the work area height. Do not initialize
5618         static variables to 0.
5619
5620 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5621
5622         * lyx_gui.C (init): give the toolbar tooltips a normal font.
5623
5624         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
5625         LFUN_LAYOUT_PARAGRAPHS.
5626
5627         * tabular.C (GetCellFromInset): new method. Finds an inset in a
5628         tabular. It is possible to provide a possible cell, which will
5629         typically be the actcell from the corresponding insettabular
5630
5631         * lyxfunc.C (getStatus): small cleanup; disable
5632         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
5633         true
5634
5635 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5636
5637         * tabular.C (Validate): remove broken optimization (fixes bug #201)
5638
5639         * paragraph.C (startTeXParParams):
5640         (endTeXParParams): new methods. The LaTeX code to
5641         start/end paragraph formatting
5642         (simpleTeXOnePar): call startTeXParParams also when paragraph is
5643         empty (fixes bug #200)
5644
5645         * vspace.C (inPixels): adapt to the change below
5646         (inPixels): [later] more cleanups (remove unused variables)
5647
5648         * lyxlength.C (inPixels): change to use a width and a height as
5649         parameter.
5650
5651 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5652
5653         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
5654         Replaced with \paperwidth
5655
5656         * DepTable.C (insert): add std:: qualifier
5657
5658 2002-01-18  Allan Rae  <rae@lyx.org>
5659
5660         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
5661         updated also?
5662
5663         * text.C (drawInset): Turned out I didn't know enough about how
5664         rebreaking worked.  This fixes most of the redraw problems.  I see
5665         an occasional cursor trail when a line is broken now and the cursor
5666         placement can seem out by a few pixels also after a rebreak.
5667
5668 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5669
5670         * buffer.C (parseSingleLyXformat2Token): update because minipage
5671         width is now a LyXLength
5672
5673         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
5674
5675         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
5676         math insets
5677
5678 2002-01-17  Juergen Vigna  <jug@sad.it>
5679
5680         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
5681
5682         * BufferView2.C (lockInset): call edit() so that theLockingInset()
5683         is set correctly and the inset is updated correctly.
5684
5685 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5686
5687         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
5688         the beginning of the loop.
5689
5690 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
5691
5692         * lyxrc.C: improve help for use_scalable_fonts
5693
5694 2002-01-17  Allan Rae  <rae@lyx.org>
5695
5696         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
5697
5698 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5699
5700         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
5701         make sure to set their inset_owner to the right value (bug #171)
5702
5703 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
5704
5705         * DepTable.h
5706         * DepTable.C: Implement mtime checking to reduce time spent doing
5707         CRCs.
5708
5709 2002-01-16  Juergen Vigna  <jug@sad.it>
5710
5711         * tabular.C (GetAdditionalHeight): one of error fixed.
5712
5713         * lyxrc.C (output): small fix in writing use_pspell.
5714
5715 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
5716
5717         * sp_base.h: #include LString.h
5718
5719 2002-01-16  Allan Rae  <rae@lyx.org>
5720
5721         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
5722         Can someone check this please?
5723
5724         * text.C (drawInset): It was possible that p.row would be removed by
5725         breakAgainOneRow upsetting a few other settings.  There may be another
5726         small tweak possible by setting need_break_row = 0 when p.row has been
5727         removed but I don't know enough about the logic here.
5728
5729 2002-01-15  Allan Rae  <rae@lyx.org>
5730
5731         * text.C (insertChar): removed conditional truism.
5732
5733         * BufferView2.C (removeAutoInsets): More tweaks.
5734         cur_par_prev could be a stray pointer.  Check for trailing empty line
5735         in case last line was cur_par and only had an error inset on it.
5736
5737 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5738
5739         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
5740         absolute
5741
5742         * vc-backend.C (most methods):
5743         * exporter.C (Export):
5744         * converter.C (convert):
5745         (runLaTeX):
5746         * LyXSendto.C (SendtoApplyCB):
5747         * lyxfunc.C (dispatch):
5748         (menuNew):
5749         (open):
5750         (doImport):
5751         * lyx_cb.C (AutoSave):
5752         (InsertAsciiFile):
5753         * BufferView_pimpl.C (MenuInsertLyXFile):
5754         * buffer.C (runChktex): use Buffer::filePath().
5755
5756         * buffer.h: rename filename to filename_; rename filepath to
5757         filepath_ and make it private
5758         (filePath): new method
5759
5760         * buffer.C (writeFile): use fileName()
5761         (getLatexName):
5762
5763         * lyx_main.C (init): fix starting  of LyX when the binary is a
5764         link from so,ewhere else.
5765
5766         * minibuffer.C: include <cctype> for isprint
5767
5768 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
5769
5770         * buffer.C (parseSingleLyXformat2Token): changes associated with the
5771         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
5772         name clash with InsetCollapsable's width function.
5773
5774 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5775
5776         * lastfiles.C: include <iterator>
5777
5778 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
5779
5780         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
5781         std::count.
5782
5783         * buffer.C (makeLaTeXFile): ditto.
5784         Also make loop operation more transparent.
5785
5786 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
5787
5788         * ToolbarDefaults.C: remove trailing comma closing namespace.
5789
5790         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
5791
5792         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
5793         as in WorkArea.
5794
5795         * trans.C (Load): comment out unused variable, allowed.
5796
5797 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
5798
5799         * minibuffer.[Ch] (append_char): new method to recieve input from the
5800         drop-down completion browser. If a key was pressed, then recieve this
5801         char and append it to the existing string.
5802         (peek_event): modify the positioning data passed to the completion
5803         browser so that it can be placed above the minibuffer rather than below.
5804 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5805
5806         * LyXAction.C (init): alloe error-next for readonly documents.
5807
5808         * BufferView2.C (ChangeRefsIfUnique): use standard version of
5809         count.
5810
5811 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5812
5813         * bufferlist.C (readFile): create the buffer _after_ checking that
5814         the file exists.
5815
5816         * lyxfunc.C (verboseDispatch): fix handling of arguments
5817
5818         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
5819
5820         * lyxrc.C: use string::erase() instead of initializing to "".
5821
5822
5823 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
5824
5825         * BufferView_pimpl.h:
5826         * BufferView_pimpl.C:
5827         * WorkArea.h:
5828         * WorkArea.C:
5829         * text2.C: tell X when we have made a selection for copying
5830
5831 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5832
5833         * BufferView_pimpl.C (MenuInsertLyXFile):
5834         * lyxfunc.C (menuNew):
5835         (open):
5836         (doImport): add shortcuts to directory buttons
5837
5838         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
5839         open a float)
5840
5841         * lyxfunc.C (setStatusMessage):
5842         (getStatusMessage): new methods
5843         (getStatus):use setStatusMessage instead of setErrorMessage
5844         (dispatch): when function is disabled, set error message here
5845         [instead of in getStatus previously]
5846
5847         * BufferView_pimpl.C (workAreaButtonRelease): update
5848         toolbar/menubar here too.
5849
5850 2002-01-13  Allan Rae  <rae@lyx.org>
5851
5852         * BufferView2.C (removeAutoInsets): finished off earlier fix.
5853         Now seems indestructible.  Remaining task is to audit all other
5854         code affected by deleteEmptyParagraphMechanism.  One small quirk
5855         left is that an empty document with an error in the preamble can
5856         be made to report an error but no error box appears.  I don't know
5857         where it goes.
5858         (removeAutoInsets): Improved comments.
5859
5860 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
5861
5862         * Thesaurus.h:
5863         * Thesaurus.C: update for Aiksaurus 0.14
5864
5865 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5866
5867         * text2.C (firstParagraph): removed member function, all uses
5868         replaces with ownerParagraph
5869         (redoParagraphs): here
5870         (updateInset): here
5871         (toggleAppendix): here
5872         * BufferView2.C (insertErrors): here
5873         (setCursorFromRow): here
5874
5875 2002-01-13  Allan Rae  <rae@lyx.org>
5876
5877         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
5878         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
5879         There is still a way to segfault this although you may have to do this
5880         multiple times: Have an InsetERT with an unknown command in it.
5881         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
5882         <down-arrow>, <Enter> again, View->DVI, BANG!
5883
5884         * text2.C (setCursor):
5885         (deleteEmptyParagraphMechanism):
5886         * lyxtext.h (setCursor):
5887         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
5888         Making use of the return value may help fix other bugs.
5889
5890 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5891
5892         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
5893
5894         * LyXView.C (updateMenubar): call MenuBar::update here
5895         (updateToolbar): but not here
5896         (showState): do not update toolbar/menubar
5897
5898         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
5899         should need to care about that.
5900
5901         * lyxfunc.C (verboseDispatch): simplify a bit
5902         (getStatus): have a version which takes a pseudoaction, and
5903         another which requires a (kb_action,string).
5904
5905         * LyXAction.C (retrieveActionArg): make it work also when action
5906         is not a pseudo-action.
5907         (getActionName): simplify a bit
5908         (helpText):
5909
5910 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5911
5912         * lyxfunc.C (verboseDispatch): new families of methods with
5913         several ways to specify a command and a bool to indicate whether
5914         the command name and shortcut should be displayed in minibuffer
5915         (eventually, we could extend that to a finer bitmask like
5916         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
5917         (dispatch): the pristine dispatch command which just, well,
5918         dispatchs! Note it still sets its result to minibuffer; I'm not
5919         sure we want that.
5920
5921         * lyxfunc.h: remove setHintMessage
5922
5923         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
5924
5925 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5926
5927         * BufferView_pimpl.C (specialChar): delete new inset if we have
5928         not been able to insert it.
5929
5930         * kbmap.C: revert to using int instead of kb_action, since all we
5931         are dealing with is pseudo-actions.
5932
5933         * LyXAction.C (searchActionArg): change to return int instead of
5934         kb_action, since the result is a pseudoaction.
5935
5936 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
5937
5938         * buffer.C (insertErtContents): Fix (partially) the font bug.
5939
5940 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
5941
5942         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
5943         as the other one is broken on my machine!
5944
5945 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
5946
5947         * commandtags.h:
5948         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
5949
5950 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
5951
5952         * lyxrc.[Ch]: change names and descriptions of popup font variables to
5953         reflect their actual use. Provide compatibility code for older lyxrc
5954         files.
5955
5956         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
5957         FL_NORMAL_STYLE.
5958         change names of popup font variables in line with the changes to lyxrc.C
5959
5960 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5961
5962         * buffer.C (asciiParagraph): avoid outputing a word twice after
5963         an inset.
5964
5965         * lyxrc.C (getDescription): document that document_path and
5966         template_path can be empty.
5967
5968 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5969
5970         * LaTeXFeatures.C (getMacros):
5971         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
5972
5973         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
5974
5975         * LaTeXFeatures.C (useFloat): require "float" here instead of in
5976         getPackages.
5977         (getPackages): rename feature "floats" to "float". Use an array to
5978         iterate over 'simple' features (i.e. just a \usepackage). Add
5979         handling of "amsmath" (renamed from "amsstyle").
5980
5981 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
5982
5983         * LaTeXFeatures.C (require): Prevent duplicate entries in the
5984         features list.
5985
5986 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
5987
5988         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
5989         FuncStaus::FuncStatus & FuncStaus::some_method().
5990
5991 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
5992
5993         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
5994         of the func_satus stuff. Edited and massaged in various ways by
5995         JMarc.
5996
5997         * lyxfunc.C (getStatus): use FuncStatus
5998
5999 2002-01-08  Juergen Vigna  <jug@sad.it>
6000
6001         * text.C (nextBreakPoint): use function Inset::isChar().
6002
6003         * paragraph.C (TeXOnePar): use function
6004         Inset::forceDefaultParagraphs.
6005
6006         * buffer.C (latexParagraphs): use function
6007         Inset::forceDefaultParagraphs.
6008
6009 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
6010
6011         * lyx_gui.C (init): set the style of the menu popups to
6012         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
6013
6014 2002-01-07  Juergen Vigna  <jug@sad.it>
6015
6016         * text.C (setHeightOfRow): small fix
6017         (prepareToPrint): don't look at alignment if we don't have the place
6018         for doing it.
6019
6020 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
6021
6022         * box.C: New file. Move the Box methods and functions out of box.h,
6023         following Lars' suggestion.
6024
6025 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
6026
6027         * box.h: #include "support/LOstream.h", needed for inlined function.
6028
6029         * lyxtextclass.C:
6030         * lyxtextclasslist.C: added some using std declarations.
6031
6032 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
6033
6034         * box.h: make signed dimensions to allow insets wider than
6035           the screen (bug #162)
6036
6037         * BufferView_pimpl.C: add some insetHit debug
6038
6039 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
6040
6041         * vc-backend.C: add FIXME
6042
6043 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6044
6045         * lyxfunc.C (getStatus): enable code for showing math font status
6046         in toolbar/menu.
6047
6048 2002-01-07  Juergen Vigna  <jug@sad.it>
6049
6050         * text.C (nextBreakPoint): removed debug output not needed anymore.
6051
6052 2002-01-06  Juergen Vigna  <jug@sad.it>
6053
6054         * text.C (nextBreakPoint): fixed up this function we had this bug
6055         since ever but now hopefully we break row better.
6056         (insertChar): we have to check if an inset is the next char as it
6057         could now happen that a large inset is causing a break.
6058
6059 2002-01-05  Juergen Vigna  <jug@sad.it>
6060
6061         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
6062         if it doesn't like to be drawed.
6063
6064 2002-01-04  Juergen Vigna  <jug@sad.it>
6065
6066         * BufferView2.C (lockInset): forgot to set a cursor.
6067
6068         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
6069
6070 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
6071
6072         * FormMathsPanel.C:
6073         * FormMathsPanel.h
6074         * MathsSymbols.C:
6075         * form_maths_panel.C:
6076         * form_maths_panel.h:
6077         * form_maths_panel.fd: implemented sub- and super- buttons in math
6078         panel.
6079
6080         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
6081         (or ^ space) to be used as in TeX (req'd by André).
6082
6083         * lyxfunc.C: Allow ^ and _ again to be used both as
6084         super/subscript (mathed) and as themselves (in text).
6085
6086 2002-01-03  Allan Rae  <rae@lyx.org>
6087
6088         * LyXView.C (updateWindowTitle): Setup a short icon title of either
6089         "LyX" or the filename of the current buffer if it has one.  This is a
6090         modified form of John Levon's patch.
6091
6092         * XFormsView.C (setWindowTitle): also set icon title.
6093
6094         * LyXView.h (setWindowTitle): signature changed.
6095         * XFormsView.h (setWindowTitle): ditto.
6096
6097 2002-01-02  Juergen Vigna  <jug@sad.it>
6098
6099         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
6100
6101 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6102
6103         * screen.C (topCursorVisible): introduce a temp var for
6104         text->cursor.row(), handle the case where this row is null. (kindo
6105         hachish)
6106
6107         * text2.C (setCursor): add a couple of asserts.
6108
6109         * paragraph.h (inset_iterator): add -> operator
6110
6111         * paragraph.[Ch] (autoDeleteInsets): remove member function
6112
6113         * BufferView2.C (removeAutoInsets): rewrite to handle the old
6114         cursor pos correctly and handle inset deletion by itself.
6115         (insertErrors): move iterator declaration out of for expression
6116
6117         * lyxtextclass.C: add <algorithm>
6118
6119         * Makefile.am: added the new files to sources, removed layout.C
6120
6121         * layout.C: removed file
6122
6123         * layout.h: remove LYX_DUMMY_LAYOUT
6124
6125         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
6126         layout.
6127
6128         * lyxlayout.[Ch]:
6129         * lyxtextclass.[Ch]:
6130         * lyxtextclasslist.[Ch]: new files
6131
6132         * include order changes to a lot of files, also changes because of
6133         the six new files.
6134
6135 2001-12-27  Juergen Vigna  <jug@sad.it>
6136
6137         * buffer.C (asciiParagraph): more fixes.
6138
6139         * tabular.C (ascii): make ascii export support export of only the
6140         data separated by a column-delimiter.
6141         (ascii): better support for ascii export.
6142
6143         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
6144
6145 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6146
6147         * tabular_funcs.C: use a "using std::getline" instead of the
6148         previous fix from Angus (necessary for cxx + lyxstring)
6149
6150 2001-12-24  Juergen Vigna  <jug@sad.it>
6151
6152         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
6153
6154         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
6155         problems. First check a minipage also if we have some ert-contents
6156         (not only on par->size(), second set the right depth of the paragraph
6157         on the relink to the root-paragraph-list!
6158
6159         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
6160         which then did not anymore update the main paragraphs on undo/redo!
6161
6162 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6163
6164         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
6165         code. Support all font-changing funcs (even those which are not in
6166         menu currently). Support for reporting font settings in
6167         mathed (disabled until Andre provides a function on mathed's side).
6168
6169         * func_status.h (toggle): small helper function to set toggle
6170         state on a flag.
6171
6172 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
6173
6174         * tabular_funcs.C: getline -> std::getline
6175
6176 2001-12-21  Juergen Vigna  <jug@sad.it>
6177
6178         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
6179         accessed and could be 0 (I couldn't generate this but it seems
6180         Michael could!).
6181
6182 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6183
6184         * tabular_funcs.C: add LIstream.h, move write_attribute to..
6185         * tabular_funcs.h: here and include iosfwd
6186
6187 2001-12-20  Juergen Vigna  <jug@sad.it>
6188
6189         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
6190         inside inset but undo_par was.
6191
6192 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6193
6194         * Thesaurus.C: always include <config.h> in sources.
6195
6196         * Painter.h:
6197         * lyxlookup.h:
6198         * box.h: do not include <config.h> in header files
6199
6200         * text.C (paintLastRow): remove unused variable
6201
6202         * text.C (transformChar):
6203         (insertChar):
6204         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
6205
6206         * Painter.C (text):
6207         * font.C (width): rewrite to use uppercase() instead of
6208         islower/toupper.
6209
6210         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
6211
6212 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
6213
6214         * lyxfind.C: clean up of find failure position change
6215
6216 2001-12-20  Juergen Vigna  <jug@sad.it>
6217
6218         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
6219
6220         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
6221         (TeXRow): added to LaTeX a single tabular row.
6222         (TeXLongtableHeaderFooter): added to output LT-h/f data.
6223         (Latex): simplified and finally good LT-h/f support.
6224         (various_functions): just small adaptions for LT-h/f support.
6225
6226         * tabular_funcs.[hC]: added and moved here all not classfunctions
6227         of LyXTabular.
6228
6229 2001-12-19  Juergen Vigna  <jug@sad.it>
6230
6231         * tabular.[Ch]: better support for longtabular options (not finished
6232         yet!)
6233
6234 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6235
6236         * text.C (paintLastRow): use the label font instead of the font of
6237         the last character to compute the size of *_BOX. This makes more
6238         sense and avoids a crash with empty paragraphs.
6239         Use Painter::rectangle to draw EMPTY_BOX.
6240
6241 2001-12-19  Juergen Vigna  <jug@sad.it>
6242
6243         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
6244         the paragraphs if the replaced paragraph is not the first one!
6245         Tried to delete not used paragraphs but does not work yet so for
6246         now it's inside #ifdef's and by default off!
6247
6248 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6249
6250         * MenuBackend.C: include "lyx_main.h" instead of declaring
6251         lastfiles (actually was declared as LastFiles* instead of a
6252         scoped_ptr).
6253
6254 2001-12-17  Juergen Vigna  <jug@sad.it>
6255
6256         * tabular.C (AppendColumn): applied John's fix
6257
6258 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
6259
6260         * BufferView.h:
6261         * BufferView.C:
6262         * BufferView_pimpl.h:
6263         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
6264
6265         * Makefile.am:
6266         * box.h: new start of class for above
6267
6268         * lyxfunc.C: ignore space-only minibuffer dispatches.
6269           Show the command name when it doesn't exist
6270
6271         * minibuffer.C: don't add empty lines to the history
6272
6273         * minibuffer.C: add a space on dropdown completion
6274
6275 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
6276
6277         * text.C: fix line above/below drawing in insets
6278
6279 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6280
6281         * lyxlength.C (LyXLength): Initialize private variables.
6282
6283 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
6284
6285         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
6286         when inserting error insets.
6287
6288 2001-12-13  Juergen Vigna  <jug@sad.it>
6289
6290         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
6291         actually sometimes the before-paragraph.
6292         (setUndo): don't clear the redostack if we're not actually undoing!
6293
6294 2001-12-06  Juergen Vigna  <jug@sad.it>
6295
6296         * undo_funcs.C (textHandleUndo): well after John's hint I got here
6297         and fixed redoing of main paragraph, so we can use it now ;)
6298
6299         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
6300
6301 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6302
6303         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
6304         Juergen's request
6305
6306 2001-12-13  André Pönitz <poenitz@gmx.net>
6307
6308         * undostack.[Ch]:
6309         * undo_func.C: minor cleanup
6310
6311 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6312
6313         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
6314         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
6315         font in urw-fonts package which is marked as -urw-fontspecific and
6316         does not work (incidentally, changing the encoding in the
6317         fonts.dir of this package to -adobe-fontspecific fixes the
6318         problem).
6319
6320         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
6321         is a crash when undoing first paragraph (Juergen, please take a
6322         look). THis does not mean the undo fix is wrong, just that it
6323         uncovers problems.
6324
6325         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
6326         the (Paragraph*) version when needed instead of duplicating the
6327         code.
6328
6329         * text.C (workWidth): use Inset::parOwner to find out where the
6330         inset has been inserted. This is a huge performance gain for large
6331         documents with lots of insets. If Inset::parOwner is not set, fall
6332         back on the brute force method
6333
6334         * paragraph_pimpl.C (insertInset):
6335         * paragraph.C (Paragraph):
6336         (cutIntoMinibuffer): set parOwner of insets when
6337         inserting/removing them
6338
6339         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
6340
6341 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
6342
6343         * commandtags.h:
6344         * LyXAction.C:
6345         * lyx_main.C:
6346         * lyxfunc.C:
6347         * mathed/formulabase.C:
6348         * mathed/math_cursor.[Ch]:
6349         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
6350
6351
6352 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6353
6354         * lyxlength.[Ch] (operator!=): new function
6355
6356 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6357
6358         * text.C (workWidth): use Inset::parOwner to find out where the
6359         inset has been inserted. This is a huge performance gain for large
6360         documents with lots of insets. If Inset::parOwner is not set, fall
6361         back on the brute force method
6362
6363         * paragraph_pimpl.C (insertInset):
6364         * paragraph.C (Paragraph):
6365         (cutIntoMinibuffer): set parOwner of insets when
6366         inserting/removing them
6367
6368         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
6369
6370 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6371
6372         * tabular-old.C (getTokenValue):
6373         * tabular.C (getTokenValue):
6374         (write_attribute): new versions for LyXLength
6375         (everywhere): adjust the use of widths
6376
6377         * tabular.h: change the type of widths from string to LyXLength
6378
6379 2001-12-11  Ben Stanley <bds02@uow.edu.au>
6380
6381         * paragraph.C: fixed missing line number count when exporting
6382         Environments to LaTeX file
6383
6384         * buffer.C: added informational message for checking line numbers.
6385
6386 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6387
6388         * text2.C (deleteEmptyParagraphMechanism): if there is only one
6389         paragraph, do the 'double space' part, but not the 'empty
6390         paragraph' one.
6391
6392         * text.C (workWidth): small optimization
6393         (getLengthMarkerHeight): use minimal size for negative lengths.
6394
6395 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
6396
6397         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
6398
6399         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
6400
6401 2001-12-11  André Pönitz <poenitz@gmx.net>
6402
6403         * FontLoader.C:
6404         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
6405
6406 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
6407
6408         * text2.C: keep selection on a setFont()
6409
6410 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
6411
6412         * lyx_cb.C: another bv->text misuse, from insert label
6413
6414 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
6415
6416         * kbsequence.h:
6417         * kbsequence.C: re-instate nmodifier mask
6418
6419 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
6420
6421         * lyx_main.h: make lyxGUI private.
6422
6423 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
6424
6425         * lyxfind.C: place the cursor correctly on failed search
6426
6427 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6428
6429         * text.C (getLengthMarkerHeight): for small heights, the arrows
6430         are not always on top/bottom of the text
6431         (drawLengthMarker): smaller arrows; take the left margin in
6432         account; draw also vfills.
6433         (paintFirstRow):
6434         (paintLastRow): remove special code for vfill and standard spaces,
6435         since everything is handled in drawLengthMarker now.
6436
6437 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6438
6439         * buffer.C (insertErtContents): try to handle font and language
6440         interaction a bit better.g
6441
6442         * ColorHandler.C (updateColor): change the hash to cover the whole
6443         LColor enum, ws cleanup
6444         (getGCLinepars): ditto
6445         (getGCLinepars): only lookup in the linecache once.
6446
6447 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
6448
6449         * iterators.C (operator++): Make the iterator more robust
6450
6451         * BufferView2.C (removeAutoInsets): Use paragraph iterators
6452         (John's patch)
6453         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
6454
6455 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
6456
6457         * lyxtext.h:
6458         * text.C: better added space drawing
6459
6460 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
6461
6462         * LyXView.C:
6463         * BufferView2.C: fix layout combo update on inset unlock
6464
6465 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
6466
6467         * Makefile.am: don't compile unused files
6468
6469 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
6470
6471         * lyxfunc.C:
6472         * commandtags.h:
6473         * LyXAction.C: remove old LFUN_LAYOUTNO
6474
6475 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
6476
6477         * paragraph_pimpl.h:
6478         * paragraph_pimpl.C: isTextAt() doesn't need font param
6479
6480 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
6481
6482         * lyxlex.h:
6483         * lyxlex.C: little cleanup
6484
6485 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
6486
6487         * BufferView_pimpl.C: fix insertAscii for insets
6488
6489 2001-12-05  Juergen Vigna  <jug@sad.it>
6490
6491         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
6492         set the right font on the "multi" paragraph paste!
6493
6494 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6495
6496         * trans_decl.h:
6497         * trans_mgr.[Ch]:
6498         * trans.[Ch]:
6499         * lyxgluelength.C:
6500         * lyxlength.C: remove out-commented code.
6501
6502         * BufferView_pimpl:
6503         * CutAndPaste.C:
6504         * DepTable.C:
6505         * buffer.C:
6506         * chset.C:
6507         * lastfiles.C:
6508         * lyxlex.C:
6509         * lyxlex_pimpl.C:
6510         * lyxserver.C:
6511         * screen.C:
6512         * tabular-old.C:
6513         * tabular.C:
6514         * text.C:
6515         * trans_mgr.C:
6516         * vc-backend.C: change "while(" to "while ("
6517
6518         * lyxlength.[Ch]: add zero function to check if length is zero or
6519         not
6520         * lyxgluelength.C: use it
6521
6522 2001-12-05  Allan Rae  <rae@lyx.org>
6523
6524         * lyxlength.C: Attempted a fix for the abs(int) header selection.
6525         Works for 2.95.3, from what I understand of Garst's reports this should
6526         work for other g++ versions.  We're screwed if the abs(int) definition
6527         changed between bugfix releases of gcc.
6528
6529 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
6530
6531         * text.C: fix chapter label offset !
6532
6533 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
6534
6535         * lyxtext.h:
6536         * text.C: fix hfill at end of line, clean up
6537
6538 2001-12-04  Juergen Vigna  <jug@sad.it>
6539
6540         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
6541         that we force an update of the inset and it's owners if neccessary.
6542
6543 2001-12-03  Juergen Vigna  <jug@sad.it>
6544
6545         * text.C (rowLast): simplified code
6546
6547 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
6548
6549         * lyxfunc.C: fix show options on timeout
6550
6551 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6552
6553         * screen.C (topCursorVisible): scroll half a page when the cursor
6554         reached top of bottom of screen
6555
6556 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
6557
6558         * minibuffer.C: deactivate on loss of focus
6559
6560 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6561
6562         * vspace.[Ch] (operator!=): add operator.
6563
6564 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
6565
6566         * BufferView_pimpl.C: refuse to open an inset when
6567         there's a selection.
6568
6569 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
6570
6571         * BufferView_pimpl.C: allow to click on RHS of full row insets
6572
6573 2001-11-30  Juergen Vigna  <jug@sad.it>
6574
6575         * tabular.C (LyXTabular): add a same_id to set the same id's in the
6576         insets for undo reasons.
6577
6578 2001-11-28  André Pönitz <poenitz@gmx.net>
6579
6580         * vspace.[Ch]: cosmetical changes
6581
6582 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
6583
6584         * LyXAction.h:
6585         * LyXAction.C:
6586         * lyxfunc.h:
6587         * lyxfunc.C:
6588         * kbmap.h:
6589         * kbmap.C:
6590         * lyxrc.C:
6591         * kbsequence.h:
6592         * kbsequence.C: part re-write of old kb code
6593
6594         * Painter.C:
6595         * WorkArea.C: remove Lgb_bug_find_hack
6596
6597 2001-11-30  José Matos <jamatos@fep.up.pt>
6598
6599         * buffer.C (makeDocBookFile): add a comment to point a hack.
6600         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
6601         Fixed a double write of labels.
6602
6603 2001-11-29 Ben Stanley <bds02@uow.edu.au>
6604
6605         * LaTeX.C:
6606         * LaTeX.h Fixed bug in LaTeX class where it would not
6607         re-run latex if no depfiles were changed, but the .dvi was removed.
6608
6609 2001-11-28  André Pönitz <poenitz@gmx.net>
6610
6611         * all the files from the change on 2001/11/26:
6612         use lyx::layout_type instead of LyXTextClass::size_type
6613         use lyx::textclass_type instead of LyXTextClassList::size_type
6614
6615 2001-11-29  Juergen Vigna  <jug@sad.it>
6616
6617         * text.C: added support for paragraph::isFreeSpacing()
6618
6619         * buffer.C: same as above
6620
6621         * paragraph.h: inserted isFreeSpacing() function to enable
6622         FreeSpacing inside InsetERT.
6623
6624         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
6625         of the paragraph's in the cut/copy buffer to 0!
6626
6627         * text2.C (removeRow): remove the assert as it can!
6628
6629         * lyxtext.h: added helper function firstRow returning firstrow and
6630         made firstrow private again.
6631
6632         * BufferView2.C (lockInset): don't relock if we're already locked!
6633
6634         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
6635         the only paragraph.
6636         (removeRow): added Assert::(firstrow)
6637
6638         * debug.C: forgot to add INSETTEXT here.
6639
6640 2001-11-28  Juergen Vigna  <jug@sad.it>
6641
6642         * sp_spell.C (initialize): changed error text to more general
6643         spellchecker command use (not only ispell!)
6644
6645         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
6646
6647         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
6648
6649 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
6650
6651         * vspace.C: initialise lyxgluelength on failure
6652
6653 2001-11-28  Allan Rae  <rae@lyx.org>
6654
6655         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
6656         declaration & definition that looks like a function declaration.
6657
6658 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6659
6660         * BufferView2.C (copy):
6661         (copyEnvironment): do not clear the selection when doing a copy.
6662
6663         * text.C (paintFirstRow): compilation fix
6664
6665 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
6666
6667         * tabular.C (Latex): correct line count when writing latex.
6668
6669 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
6670
6671         * paragraph_pimpl.h:
6672         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
6673           bug a bit
6674
6675 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
6676
6677         * text.C:
6678         * LColor.h:
6679         * LColor.C: change vfillline->added_space
6680
6681         * text.C: add markers and text for added space
6682
6683         * vspace.C: fix comment
6684
6685 2001-11-28  André Pönitz <poenitz@gmx.net>
6686
6687         * paragraph.C: whitespace changes
6688         * all the other files from the change on 2001/11/26:
6689         change *::pos_type into lyx::pos_type
6690
6691 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
6692
6693         * buffer.C (parseSingleLyXformat2Token): Set the language to the
6694         language of the document when inserting error insets.
6695
6696 2001-11-26  André Pönitz <poenitz@gmx.net>
6697
6698         * BufferView_pimpl.[Ch]:
6699         *       CutAndPaste.C:
6700         * buffer.[Ch]:
6701         * lyxcursor.[Ch]:
6702         * lyxfind.C:
6703         * lyxfunc.C:
6704         * lyxrow.[Ch]:
6705         * paragraph.[Ch]:
6706         * paragraph_pimpl.[Ch]:
6707         * sp_spell.C:
6708         * text.C:
6709         * text2.C: reduce header dependencies, introduce type for positions
6710
6711 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
6712
6713         * <various>: change to use Alert.h
6714
6715 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
6716
6717         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
6718         when encountering an unknown token.
6719         (readLyXformat2): Show an error message if there were unknown tokens.
6720
6721 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
6722
6723         * BufferView2.C:
6724         * BufferView_pimpl.C:
6725         * buffer.C:
6726         * paragraph.h:
6727         * text.C:
6728         * text2.C: use par->isInset()
6729
6730 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
6731
6732         * paragraph_pimpl.h:
6733         * paragraph_pimpl.C: cleanup
6734
6735 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6736
6737         * text2.C (removeRow):
6738         * text.C (setHeightOfRow): remove useless (and costly) call to
6739         getRow.
6740
6741 2001-11-20  Allan Rae  <rae@lyx.org>
6742
6743         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
6744         Now need Inset*::checkInsertChar() to return true for appropriate
6745         cases so that the characters in the minibuffer will actually be
6746         inserted.
6747
6748 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6749
6750         * text.C: change the order of the includes.
6751         (workWidth): initialize it at once.
6752         (workWidth): make maxw unsigned
6753         (setHeightOfRow): remove unused variable (inset)
6754         (selectSelectedWord): remove unused variable (inset)
6755         (paintRowText): fix drawing of hfill characters, and clean up a bit.
6756
6757 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6758
6759         * lyxserver.C (emergencyCleanup): do not try to close pipes if
6760         server is not running.
6761         (openConnection):
6762         (closeConnection): add debug info when server is disabled.
6763
6764         * ColorHandler.C (getGCForeground): send debug message to GUI
6765         channel.
6766
6767         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
6768
6769         * kbmap.C (bind): modify because return conventions of
6770         kb_sequence::parse have changed.
6771
6772         * kbsequence.C (parse): only ignore spaces and not any stupid
6773         control character. This avoids tests like s[i] <= ' ', which are
6774         guaranteed to fail with 8bit characters and signed chars.
6775         Change return code to string::npos when there have been no error
6776         (0 was a bad idea when error is at first character)
6777
6778 2001-11-14  José Matos  <jamatos@fep.up.pt>
6779
6780         * buffer.h:
6781         * buffer.C (simpleDocBookOnePar): removed unused argument.
6782
6783 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6784
6785         * text.C (selectNextWordToSpellcheck): do not test explicitely for
6786         insets which are part of a word. Paragraph::isLetter takes care of
6787         that now. Use Paragraph::isInset to identify insets.
6788         (selectSelectedWord): do not test for hyphenation break.
6789
6790         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
6791         that protected spaces are considered as spaces.
6792
6793         * paragraph.C (isLetter): cleanup the code for ispell extras; use
6794         Inset::isLetter.
6795
6796 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
6797
6798         * lyxserver.h:
6799         * lyxserver.C: fix it. and small cleanup.
6800
6801 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
6802
6803         * BufferView_pimpl.C: use inline helpers
6804
6805         * LaTeXFeatures.h:
6806         * LaTeXFeatures.C: fix typos
6807
6808         * Spacing.h:
6809         * Spacing.C: move spacing_string into class
6810
6811         * ToolbarDefaults.C: move stuff into namespace anon
6812
6813         * layout.h: update enum
6814
6815         * lyxfunc.C: use better debug
6816
6817         * minibuffer.h: fix typo
6818
6819         * debug.h:
6820         * debug.C:
6821         * WorkArea.C: add and use Debug::WORKAREA
6822
6823         * lyxtext.h:
6824         * text.C:
6825         * text2.C: code re-organisation, inline helpers
6826
6827 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
6828
6829         * Layout.C: replaced a few cases of std::vector.size() == 0 with
6830         std::vector.empty().
6831
6832 2001-11-09  Allan Rae  <rae@lyx.org>
6833
6834         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
6835         '\n's after tables.  Tabular and ERT inset work now makes this no
6836         longer necessary.
6837
6838 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
6839
6840         * minibuffer.h:
6841         * minibuffer.C: fix crash, improve drop-down completion
6842
6843 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
6844
6845         * lyxserver.h:
6846         * lyxserver.C: invalidate fd's when doing endPipe()
6847
6848 2001-11-08  José Matos  <jamatos@fep.up.pt>
6849
6850         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
6851         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
6852
6853         * paragraph.h:
6854         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
6855
6856 2001-11-07  José Matos  <jamatos@fep.up.pt>
6857
6858         * buffer.h:
6859         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
6860         const qualifier.
6861
6862         * buffer.C (sgmlOpenTag):
6863         * buffer.C (sgmlCloseTag): removed debug info.
6864
6865         * buffer.h (sgmlOpenTag):
6866         * buffer.h (sgmlCloseTag): made public.
6867
6868 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6869
6870         * buffer.C (saveParamsAsDefaults):
6871         * lyx_cb.C (MenuLayoutSave): remove
6872
6873         * LyXAction.C (init):
6874         * commandtags.h:
6875         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
6876
6877 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6878
6879         * buffer.C (setPaperStuff): removed from here...
6880
6881         * bufferparams.C (setPaperStuff): ... and moved there.
6882
6883 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
6884
6885         * minibuffer.h:
6886         * minibuffer.C:
6887         * XFormsView.C: add support for drop-down completion
6888
6889 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
6890
6891         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
6892         commands.
6893
6894 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6895
6896         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
6897         disabled.
6898
6899 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
6900
6901         * lyx_main.C: change ref to known bugs
6902
6903 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
6904
6905         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
6906         to work around older babel problems.
6907
6908 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
6909
6910         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
6911
6912 2001-10-24  Juergen Vigna  <jug@sad.it>
6913
6914         * tabular-old.C (ReadOld): below variable changes reflected.
6915
6916         * tabular.[Ch]: added ltType struct for longtable header/footer
6917         defines and changed all instances where they are used. Added
6918         future support for double top/bottom rows.
6919
6920 2001-10-24  José Matos  <jamatos@fep.up.pt>
6921
6922         * buffer.h (docbookHandleCaption):
6923         * buffer.C (docbookHandleCaption): removed unused function.
6924         (makeDocBookFile): moved docbook supported version to v4.1.
6925
6926 2001-10-24  José Matos  <jamatos@fep.up.pt>
6927
6928         * tabular.h:
6929         * tabular.C (docbookRow): new function to export docbook code of a row.
6930         (DocBook): now honors the longtable flags.
6931
6932 2001-10-23  José Matos  <jamatos@fep.up.pt>
6933
6934         * LaTeXFeatures.h:
6935         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
6936         of the lyx defined sgml entities used in a docbook/linuxdoc document.
6937
6938         * buffer.C (makeLinuxDocFile):
6939         (makeDocBookFile): reworked the preamble, more clean, and with
6940         support for lyx defined entities. Changed the document declaration
6941         to be more XML friendly.
6942
6943         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
6944         if we need to output XML that should be done with a filter.
6945
6946 2001-10-22  Juergen Vigna  <jug@sad.it>
6947
6948         * sp_pspell.h (class PSpell): add alive function needed in the
6949         controller to see if the spellchecker could be started.
6950
6951 2001-10-22  Juergen Vigna  <jug@sad.it>
6952
6953         * buffer.C (insertStringAsLines): modify the font for inserting
6954         chars in certain conditions by calling checkInsertChar(font).
6955
6956 2001-10-19  Juergen Vigna  <jug@sad.it>
6957
6958         * text.C (workWidth): use getRow instead of wrong algorithm.
6959         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
6960
6961 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
6962
6963         * lyxserver.h:
6964         * lyxserver.C:
6965         * lyx_main.h:
6966         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
6967
6968 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6969
6970         * text.C (workWidth): do not search for the exact row when
6971         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
6972         optimization for big documents.
6973
6974 2001-10-18  Juergen Vigna  <jug@sad.it>
6975
6976         * text.C (workWidth): new function with added Inset * parameter.
6977
6978 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6979
6980         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
6981
6982         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
6983         change return type of getColumnNearX.
6984
6985
6986         * text.C (changeRegionCase): use uppercase/lowercase instead of
6987         toupper/tolower.
6988         (leftMargin):
6989         (rightMargin): simplify code by factoring out the uses of
6990         textclasslist.
6991         (labelFill):
6992         (numberOfHfills):
6993         (setHeightOfRow):
6994         (appendParagraph): use Paragraph::size_type
6995
6996 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6997
6998         * vspace.C (asLatexString): add a missing break
6999
7000 2001-10-15  Herbert Voss  <voss@perce.de>
7001
7002         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
7003
7004 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7005
7006         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
7007         is not available.
7008
7009 2001-10-10  André Pönitz <poenitz@gmx.net>
7010
7011         * lyxfunc.C: removed greek_kb_flag.
7012
7013 2001-10-10  Herbert Voss  <voss@perce.de>
7014
7015         * lyx_main.C: delete global string help_lyxdir.
7016
7017 2001-10-09  Herbert Voss  <voss@perce.de>
7018
7019         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
7020
7021         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
7022
7023         * lyx_main.C: added global string help_lyxdir.
7024
7025         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
7026
7027 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
7028
7029         * lyxrc.C (set_font_norm_type): support iso8859-4
7030
7031 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
7032
7033         * LaTeX.C (deplog): add another regex for MikTeX
7034
7035 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
7036
7037         * lyxrc.C (set_font_norm_type): support iso8859-3
7038
7039 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7040
7041         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
7042
7043         * LaTeXFeatures.C: remove special case of french and index
7044
7045         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
7046         before \begin{document}). This solves several incompatibilities.
7047
7048 2001-10-03  Garst Reese  <reese@isn.net>
7049
7050         * lyx_cb.C: change CheckTex error msg.
7051
7052 2001-10-03  José Matos  <jamatos@fep.up.pt>
7053
7054         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
7055
7056 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7057
7058         * .cvsignore: update
7059
7060         * lyx_main.C (commandLineVersionInfo): use new style version info.
7061
7062         * buffer.C (writeFile):
7063         (makeLaTeXFile):
7064         (makeLinuxDocFile):
7065         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
7066
7067         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
7068
7069         * version.h: update to use stuff in version.C
7070
7071         * version.C.in: new file. Contains version information determined
7072         at compile time. This is a merging of version.h and
7073         version_info.h.in.
7074
7075 2001-10-03  Juergen Vigna  <jug@sad.it>
7076
7077         * BufferView_pimpl.C (update): don't change "dirty" status in
7078         updateInset call.
7079
7080 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
7081
7082         * WorkArea.C (c-tor): re-position version string slightly.
7083
7084 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
7085
7086         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
7087         revert to previous code.
7088
7089         WorkArea.[Ch]: (show, destroySplash): methods removed.
7090
7091         WorkArea.C: rework code so that it's an amalgam of the codes before and
7092         after the splash screen was moved to WorkArea.
7093
7094 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7095
7096         * lyxrc.C (read):
7097         * vspace.C (inPixels):
7098         (lyx_advance):
7099         * kbmap.C (bind):
7100         * buffer.C (insertStringAsLines):
7101         (asciiParagraph): fix types to be large enough
7102
7103         * lyxlex_pimpl.h: change member status from short to int
7104
7105         * layout.h: fix type of endlabeltype
7106
7107         * kbmap.C (bind):
7108         * kbsequence.C (parse): change return type to string::size_type
7109
7110         * LaTeX.C (updateBibtexDependencies): comment out unneeded
7111         variable
7112
7113         * Bullet.C (bulletSize):
7114         (bulletEntry): do not use short ints as parameters
7115
7116         * BufferView2.C (insertLyXFile): change a char to an int.
7117
7118         * WorkArea.C (WorkArea): remove unneeded floats in computation
7119
7120 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
7121
7122         * buffer.C (asciiParagraph): Treat '\\' as other chars.
7123
7124         * paragraph.C (asString): Do not ignore newline/hfill chars when
7125         copying to the clipboard.
7126
7127 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
7128
7129         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
7130         after a multi-line inset.
7131
7132 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
7133
7134         * paragraph.C (validate): Set NeedLyXFootnoteCode
7135
7136 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
7137
7138         * lyxfont.C (LyXSizeNames): changed increase-error to increase
7139         and decrease-error to decrease.
7140
7141 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7142
7143         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
7144         it more readable (should be equivalent)
7145
7146 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
7147
7148         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
7149
7150 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7151
7152         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
7153         of a cursor (row, etc.) after a character has been deleted
7154         (deleteEmptyParagraphMechanism): call the method above on _all_
7155         cursors held by the LyXText when a double space has been
7156         detected/deleted.
7157
7158 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
7159
7160         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
7161         pixmap.
7162         (resizeCurrentBuff): remove code to destroy the old splash dialog.
7163
7164         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
7165         background. Use greyOut() and the new show() methods to toggle between
7166         the foreground and background. Add code to remove the splash after
7167         its initial showing.
7168
7169         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
7170         (create_forms): no longer call Dialogs::showSplash.
7171
7172 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7173
7174         * .cvsignore: add version_info.h
7175
7176 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7177
7178         * version_info.h.in: new file
7179
7180         * Makefile.am: add version_info.h.in
7181
7182         * lyx_main.C (commandLineVersionInfo): use version_info defined in
7183         version_info.h instead of VERSION_INFO
7184
7185 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
7186
7187         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
7188         The ERT inset now returns string().
7189
7190 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
7191
7192         * lyxtext.h, text.C (selectNextWord): renamed as
7193         selectNextWordToSpellcheck.
7194
7195         * text.C (selectNextWordToSpellcheck): Modified to not select
7196         words inside an ERT inset.
7197
7198 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7199
7200         * lyx_cb.C (MenuLayoutSave): change a bit the question
7201
7202         * sp_base.h: include <sys/types.h>
7203
7204 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
7205
7206         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
7207
7208 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
7209
7210         * several files: fix typos in user-visible strings
7211
7212 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7213
7214         * text2.C (pasteSelection): do not set the selection, since it
7215         will be cleared later. Actually, the intent was to fix the way the
7216         selection was set, but I figured rmoving the code was just as good.
7217
7218 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
7219
7220         * FontLoader.C (available): Check if font is available without
7221         loading the font.
7222
7223 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
7224
7225         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
7226
7227 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
7228
7229         * lyxrc.[Ch]: added display_graphics variable and associated code.
7230
7231 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7232
7233         * bufferparams.C (hasClassDefaults): new method. Returns true if
7234         the buffer parameters correspond to known class defaults
7235
7236 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
7237
7238         * XFormsView.C (show): set minimum size to the main window.
7239
7240 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7241
7242         * text2.C (copySelection):
7243         (cutSelection):
7244         * lyxfind.C (LyXReplace):
7245         * BufferView_pimpl.C (Dispatch): pass the correct flag to
7246         LyXText::selectionAsString.
7247
7248         * paragraph.C (asString): add "label" argument to the second form
7249
7250         * text2.C (selectionAsString): add "label" argument and pass it to
7251         Paragraph::asString.
7252
7253 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7254
7255         * lyx_main.C (commandLineHelp): remove version information
7256
7257 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
7258
7259         * lyx_main.C: add -version commandline option
7260
7261 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7262
7263         * paragraph.h: make the optional constructor arg required instead.
7264         some modifications to other files because of this.
7265
7266         * minibuffer.C (C_MiniBuffer_peek_event): make it static
7267
7268         * lyxserver.C (C_LyXComm_callback): make it static
7269
7270         * lyx_main.C (error_handler): make it static
7271
7272         * lyx_gui.C (LyX_XErrHandler): make it static
7273
7274         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
7275
7276         * WorkArea.C: make the extern "C" methods static.
7277
7278         * Makefile.am (lyx_LDADD): simplify
7279
7280 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
7281
7282         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
7283         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
7284
7285         * LyXAction.C (init):
7286         * lyxfunc.C (dispatch): associated code removal.
7287
7288 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7289
7290         * lyxfont.h (isSymbolFont): shut off warning
7291
7292         * text.C (setHeightOfRow):
7293         (getVisibleRow): fix crash with empty paragraphs which have a
7294         bottom line
7295
7296 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
7297
7298         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
7299         code.
7300
7301 2001-09-04  José Matos  <jamatos@fep.up.pt>
7302         * buffer.C
7303         * buffer.h
7304         * tabular.C (docbook): rename docBook method to docbook.
7305
7306 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
7307
7308         * Makefile.am: add dependencies to main.o.
7309
7310 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
7311
7312         * FontLoader.C (available): Return false if !lyxrc.use_gui
7313
7314 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
7315
7316         * FontInfo.C (query):
7317         * converter.C (view):
7318         * importer.C (Import):
7319         * exporter.C (Export): Can not -> cannot.
7320
7321 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
7322
7323         * BufferView_pimpl.C: allow to create index inset even if
7324           string is empty
7325
7326 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
7327
7328         * buffer.C (getLists): replace boost::tie code with an explicit pair
7329         as boost::tie can break some compilers.
7330
7331         * iterators.h: Added a std:: declaration to the return type of
7332         ParIterator::size.
7333
7334 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
7335
7336         * lyxrc.C: add help for view_dvi_paper_option, default to safe
7337           case.
7338
7339 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
7340
7341         * iterators.[Ch]: New files. Provide paragraph iterators.
7342
7343         * buffer.C (changeLanguage): Use paragraph iterators.
7344         (isMultiLingual): ditto
7345
7346         * BufferView2.C (ChangeInsets): Use paragraph iterators.
7347
7348 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
7349
7350         * FontLoader.C: Support for cmr font.
7351
7352 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
7353
7354         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
7355         (available): New method.
7356
7357         * FontInfo.C (getFontname): Use scalable fonts even when
7358         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
7359         found.
7360
7361 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
7362
7363         * converter.C (Formats::view): reverted! Incorrect fix.
7364
7365 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
7366
7367         * converter.C (Formats::view): only output the -paper option
7368         if the dvi viewer is xdvi, thereby fixing bug #233429.
7369
7370 2001-08-23  Herbert Voss  <voss@perce>
7371
7372         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
7373
7374 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
7375
7376         * Spacing.h (Spacing): Set space to Default on in the default
7377         constructor.
7378
7379 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7380
7381         * vc-backend.h (RCS::versionString): add RCS to version
7382         (CVS::versionString): add CVS to version
7383
7384         * vc-backend.C (scanMaster): do not add CVS to version.
7385         (scanMaster): do not add RCS to version
7386
7387         * lyxvc.C (versionString): new method
7388
7389         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
7390
7391 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7392
7393         * Spacing.C (set): initialize fval
7394
7395 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
7396
7397         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
7398         " or \.
7399
7400 2001-08-16  Juergen Vigna  <jug@sad.it>
7401
7402         * lyxfunc.C (dispatch): implemented the new FINISHED states.
7403
7404 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
7405
7406         * BufferView_pimpl.C:
7407         * figureForm.C:
7408         * lyxtext.h:
7409         * text2.C: setParagraph takes linespacing now
7410
7411 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
7412
7413         * LyxAction.C: add internal LFUN_CITATION_INSERT
7414
7415         * LyXView.C: actually apply fix
7416
7417         * bufferlist.C: fix open non-existent file
7418
7419         * lyxfind.C: fix indentation
7420
7421         * lyxfunc.C: remove unneeded assert, fix typo
7422
7423 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
7424
7425         * MenuBackend.C: use "Floatname List"
7426
7427 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
7428
7429         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
7430         when converting LaTeX layout to insetERT.
7431         Generate a non-collapsed float when reading old float
7432
7433 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
7434
7435         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
7436         ERT insets.
7437
7438 2001-08-13  Juergen Vigna  <jug@sad.it>
7439
7440         * text.C (fill): return 0 instead of 20 as this seems to be the more
7441         correct value.
7442
7443 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
7444
7445         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
7446         lyxrc.font_norm.
7447
7448 2001-08-13  Juergen Vigna  <jug@sad.it>
7449
7450         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
7451         casesensitive off.
7452         (SearchBackward): comment out the unlocking of the inset_owner this
7453         should not be needed!
7454
7455 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
7456
7457         * Many files: Remove inherit_language, and add latex_language
7458
7459         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
7460         collapsible insets.
7461
7462 2001-08-10  Juergen Vigna  <jug@sad.it>
7463
7464         * text.C (prepareToPrint): fixed hfill-width in draw!
7465
7466         * BufferView2.C (selectLastWord): save the selection cursor as this
7467         now is cleared in the function LyXText::clearSelection!
7468
7469 2001-08-08  Juergen Vigna  <jug@sad.it>
7470
7471         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
7472         BACKSPACE type functions.
7473
7474         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
7475         is only cutted from the document but not put in the cut-buffer, where
7476         still the old stuff should be.
7477
7478         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
7479
7480         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
7481
7482         * tabular.C (SetWidthOfCell): fixed special case where the width
7483         was not updated!
7484         (LeftLine): handle '|' in align_special.
7485         (RightLine): ditto
7486         (LeftAlreadyDrawed): ditto
7487         (SetWidthOfCell): ditto
7488
7489 2001-08-07  Juergen Vigna  <jug@sad.it>
7490
7491         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
7492
7493 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7494
7495         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
7496         * lyxlex.[hC]: ditto
7497
7498 2001-08-06  Juergen Vigna  <jug@sad.it>
7499
7500         * text.C (getVisibleRow): fix up row clearing a bit.
7501
7502 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7503
7504         * minibuffer.C: make sure the X server sees the changes in the input.
7505
7506 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7507
7508         * paragraph.C (getFont): split into...
7509         (getLabelFont): this
7510         (getLayoutFont): and this
7511         * paragraph_pimpl.C (realizeFont): calling this
7512
7513         * text2.C (getFont): split into...
7514         (getLayoutFont): this
7515         (getLabelFont): and this
7516         (realizeFont): all three calling this
7517
7518         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
7519         files where used.
7520
7521 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7522
7523         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
7524
7525 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
7526
7527         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
7528         layouts from the Quote inset insertion.
7529
7530 2001-08-03  Juergen Vigna  <jug@sad.it>
7531
7532         * BufferView_pimpl.C (update): do the fitCursor only at the end!
7533
7534         * screen.C (drawFromTo): don't call fitcursor here and do the loop
7535         only if status not is already CHANGED_IN_DRAW (second level).
7536
7537         * text.C (draw): don't set the need_break_row when inside an
7538         InsetText LyXText.
7539
7540 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7541
7542         * buffer.C (parseSingleLyXformat2Token): handle more latex
7543         conversion cases.
7544
7545         * bufferview_funcs.[hC]: change function names to
7546         begin with small char, adjust other files.
7547
7548 2001-08-02  André Pönitz <poenitz@gmx.net>
7549
7550         * lyxfunc.C:
7551         BufferView_pimpl.C: remove broken special code for math-greek
7552
7553 2001-08-02  Juergen Vigna  <jug@sad.it>
7554
7555         * BufferView_pimpl.C (update): redone this function so that we
7556         update the text again if there was a CHANGE_IN_DRAW.
7557
7558         * screen.C (cursorToggle): removed LyXText parameter and recoded.
7559         (drawFromTo): added a new internal bool which is used by draw() and
7560         redraw() function.
7561         (general): some cursor drawing problems fixed.
7562
7563 2001-08-01  Juergen Vigna  <jug@sad.it>
7564
7565         * lyxfind.C (LyXFind): fixed
7566         (SearchForward): ditto
7567         (SearchBackward): ditto
7568
7569         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
7570         spurius drawing of the cursor in the main area.
7571
7572         * text2.C (status): small fix which could lead to a segfault!
7573         (clearSelection): remove unneeded BufferView param.
7574
7575 2001-08-01  André Pönitz <poenitz@gmx.net>
7576
7577         * lyxfunc.C: small change due to changed mathed interface
7578
7579 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7580
7581         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
7582
7583 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
7584
7585         * lyxfunc.c: fail gracefully if file doesn't exist
7586
7587         * LyXSendto.C:
7588         * buffer.C:
7589         * lyxfunc.C:
7590         * BufferView_pimpl.C: IsDirWriteable() proto changed
7591
7592         * LyXView.C: fix updateWindowTitle() to store the last title
7593
7594 2001-07-31  Juergen Vigna  <jug@sad.it>
7595
7596         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
7597         the font (wrong since using of Paragraph::highestFontInRange).
7598
7599         * paragraph.C (highestFontInRange): added a default_size parameter.
7600
7601         * text.C (getVisibleRow): minor clear row changes (still not perfect).
7602         (setHeightOfRow): reformat
7603
7604 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7605
7606         * converter.[hC] + affected files: move to (inital-char)lowercase
7607         function names.
7608
7609         * ParagraphParameters.C (ParagraphParameters): remove commented code
7610
7611         * PainterBase.[Ch]: remove commented code
7612
7613         * LaTeXFeatures.h: add "bool floats" for float.sty
7614
7615         * LaTeXFeatures.C (LaTeXFeatures): init floats
7616         (require): handle float
7617         (getPackages): do it with floats
7618
7619 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7620
7621         * BufferView_pimpl.C (Dispatch): improve handling of
7622         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
7623
7624         * commandtags.h: #include lyxfont.h here temporarily to avoid
7625         keybinding bug.
7626
7627         * bufferlist.h: include LString.h here.
7628
7629 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7630
7631         * text2.C (getStringToIndex): new method.
7632
7633 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
7634
7635         * *: Reduced header file dependencies all over.
7636
7637 2001-07-30  Baruch Even  <baruch@lyx.org>
7638
7639         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
7640
7641 2001-07-29  Baruch Even  <baruch@lyx.org>
7642
7643         * buffer.C (readInset): Changed GRAPHICS to Graphics.
7644
7645 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7646
7647         * ParameterStruct.h (endif): add a default constructor to make
7648         sure that all variables is initialized.
7649
7650         * ParagraphParameters.C (ParagraphParameters): adjust
7651
7652 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7653
7654         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
7655         index; also, check that there is something to index, and that it
7656         does not span over several paragraphs.
7657         (doubleClick): use WHOLE_WORD_STRICT for double click.
7658
7659         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
7660
7661         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
7662         scheme.
7663
7664 2001-07-26  Baruch Even  <baruch@lyx.org>
7665
7666         * buffer.C (readInset): Changed to call up InsetGraphics when reading
7667         an InsetFig figure, backwards compatible reading of old figure code.
7668
7669 2001-07-27  Juergen Vigna  <jug@sad.it>
7670
7671         * text2.C: font.realize function adaption.
7672
7673         * text.C (draw): add a warnings lyxerr text if needed.
7674
7675         * layout.C: font.realize function adaption.
7676
7677         * language.C: add inherit_language and implement it's handlings
7678
7679         * bufferview_funcs.C (StyleReset): remove language parameter from
7680         font creation (should be language_inherit now).
7681
7682         * bufferparams.C (writeFile): handle ignore_language.
7683
7684         * paragraph.C (getFontSettings): the language has to be resolved
7685         otherwise we have problems in LyXFont!
7686
7687         * lyxfont.C (lyxWriteChanges): added document_language parameter
7688         (update): removed unneeded language parameter
7689
7690         * paragraph.C (validate): fixed wrong output of color-package when
7691         using interface colors for certain fonts in certain environments,
7692         which should not seen as that on the final output.
7693
7694 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
7695
7696         * BufferView_pimpl.C:
7697         * Thesaurus.h:
7698         * Thesaurus.C:
7699         * Makefile.am:
7700         * commandtags.h:
7701         * LyXAction.C: add thesaurus support
7702
7703         * lyxfind.h:
7704         * lyxfind.C: add "once" parameter, for thesaurus, to not
7705           move to the next match
7706
7707 2001-07-26  Juergen Vigna  <jug@sad.it>
7708
7709         * lyxfont.C (realize): honor ignore_language too!
7710         (resolved): ditto.
7711
7712         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
7713
7714         * text.C (draw): one place more for ignore_language to not draw
7715         itself!
7716
7717 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
7718
7719         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
7720
7721 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7722
7723         * buffer.C (parseSingleLyXformat2Token): a more general fix for
7724         the minipage conversion problem.
7725
7726 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7727
7728         * buffer.C (parseSingleLyXformat2Token): check minipage if we
7729         insert an inset.
7730
7731 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7732
7733         * BufferView.h: don't forward declare WorkArea
7734
7735         * BufferView.C: don't include WorkArea.h
7736
7737 2001-07-25  André Pönitz <poenitz@gmx.net>
7738
7739         * commandtags.h:
7740         * LyXAction.C:
7741         * lyxfunc.C:  new LFUN 'math-space'
7742
7743         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
7744
7745 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7746
7747         * text2.C (toggleInset): call open/close
7748
7749 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7750
7751         * lyxfunc.C (dispatch): add debug for the disabled case
7752
7753         * font.C (buttonText): make similar to rectText
7754
7755         * buffer.C (readInset): comment out parsing of insetlist and
7756         insttheorem
7757
7758         * PainterBase.C (rectText): small correction
7759
7760         * BufferView_pimpl.C: comment out insettheorem and insetlist
7761         * LyXAction.C: ditto
7762         * commandtags.h: ditto
7763
7764 2001-07-24  Juergen Vigna  <jug@sad.it>
7765
7766         * text.C (draw): honor the ignore_language.
7767
7768         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
7769
7770 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7771
7772         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
7773         char inset.
7774
7775 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
7776
7777         * lyxtext.h: remove unused (and unimplemented) methods
7778
7779 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
7780
7781         * text.C (getVisibleRow): honor background color
7782
7783         * PainterBase.h:
7784         * Painter.h: remove default color argument for fillRectangle
7785
7786         * text.C (backgroundColor): new method
7787
7788 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7789
7790         * text.C (getVisibleRow): adjust
7791
7792         * font.[Ch] (rectText): new method, metrics
7793         (buttonText): new method, metrics
7794
7795         * PainterBase.[hC]: make rectText and buttonText always draw and take
7796         fewer paramteres.
7797
7798 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
7799
7800         * ToolbarDefaults.C (read):
7801         * MenuBackend.C (read): allow escaping in all strings
7802
7803         * BufferView_pimpl.C (insertAndEditInset): new method.
7804         (Dispatch): use insertAndEditInset whenever appropriate.
7805
7806         * BufferView_pimpl.C (insertNote): removed
7807
7808         * BufferView_pimpl.C (smartQuote): new method, moved from
7809         BufferView; if an insetquote cannot be inserted, insert a '"'
7810         character instead.
7811
7812         * BufferView2.C: remove insertCorrectQuote();
7813
7814         * lyxfunc.C (getStatus): Add support for all remaingin
7815         inset-insert lfuns.
7816
7817         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
7818
7819         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
7820         command (necessary to pass " as parameter of self-insert.
7821
7822         * text.C (selectWordWhenUnderCursor):
7823         (selectWord): add word_location parameter
7824         (selectWordWhenUnderCursor): same + remove special code for word
7825         boundary.
7826         (selectNextWord): use kind() to guess type of insetspecialchar,
7827         not latex().
7828
7829         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
7830         (insertErtContents): create ert insets as collapsed.
7831         (readInset): better compatibility code for Info inset.
7832
7833 2001-07-20  Juergen Vigna  <jug@sad.it>
7834
7835         * lyxfunc.C (dispatch): use always LyXFind now!
7836
7837         * text2.C (init): add a reinit flag so that the LyXText can be
7838         reinited instead of deleted and reallocated (used in InsetText).
7839
7840         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
7841
7842         * text.C: ditto
7843
7844         * text2.C: ditto
7845
7846 2001-07-18  Juergen Vigna  <jug@sad.it>
7847
7848         * text.C (selectNextWord): handle insets inside inset by calling
7849         always the bv->text functions so that we can go up the_locking_inset!
7850
7851         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
7852         in strange locations when inside an inset!
7853
7854         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
7855         handling to include insets.
7856
7857         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
7858
7859 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7860
7861         * LyXAction.C (init):
7862         * commandtags.h:
7863         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
7864         LIGATURE_BREAK, since the name is so stupid.
7865
7866 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
7867
7868         * buffer.C (readInset): enable reading of new InsetNotes as well as old
7869         InsetInfos.
7870
7871         * FontLoader.C: remove FORMS_H_LOCATION cruft.
7872
7873         * sp_form.[Ch]: remove.
7874
7875         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
7876
7877         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
7878         InsetInfo.
7879
7880         * src/buffer.C (readInset): ditto.
7881
7882 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
7883
7884         * BufferView_pimpl.C (specialChar): new method. Obsoletes
7885         menuSeparator(), endOfSentenceDot(), ldots() and
7886         hyphenationPoint(), which are therefore removed.
7887         (Dispatch): handle LFUN_HYPHENATION_BREAK.
7888
7889         * LyXAction.C (init):
7890         * commandtags.h: add LFUN_HYPHENATION_BREAK.
7891
7892         * paragraph.C (getWord): removed.
7893
7894         * BufferView_pimpl.C (Dispatch): use last word or selection for
7895         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
7896
7897         * lyx_main.C (queryUserLyXDir): do not ask before creating
7898         user_dir, except if it has been named explicitely.
7899
7900 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
7901
7902         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
7903         a document of zero size.
7904
7905 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
7906
7907         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
7908         approriately in the c-tor and in require().
7909         (getPackages): output the appropriate LaTeX for natbib support.
7910
7911         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
7912         variables "use_natbib" and "use_numerical_citations" when reading the
7913         LyX file.
7914         (readInset): read the various natbib cite commands.
7915         (validate): white-space change.
7916
7917         * bufferparams.[Ch]: new variables "bool use_natbib" and
7918         "bool use_numerical_citations".
7919         (writeFile): output them in the LyX file.
7920
7921 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
7922
7923         * lyxfunc.C (getStatus): add support for all the inset insertion
7924         commands.
7925
7926         * text2.C (insertInset):
7927         * paragraph.C (insetAllowed):
7928         * BufferView_pimpl.C (insertInset): update to take in account the
7929         renaming of insertInsetAllowed
7930
7931         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
7932
7933         * text2.C (getInset): new method. returns inset at cursor position.
7934
7935         * BufferView_pimpl.C (Dispatch): changes because of this.
7936
7937         * LyXAction.C (init): rename open-stuff to inset-toggle.
7938
7939         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
7940
7941         * text2.C (toggleInset): renamed from openStuff; use
7942         Inset::open().
7943
7944 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
7945
7946         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
7947
7948         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
7949
7950 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
7951
7952         * buffer.C (readLyXformat2): Add filename to the error dialog
7953
7954 2001-07-18  Juergen Vigna  <jug@sad.it>
7955
7956         * tabular.C (GetCellNumber): put an assert here instead of the check!
7957
7958 2001-07-17  Juergen Vigna  <jug@sad.it>
7959
7960         * BufferView_pimpl.C (toggleSelection): adapted too.
7961
7962         * text.C (selectNextWord): adapted for use with insets.
7963         (selectSelectedWord): ditto
7964
7965 2001-07-17  Juergen Vigna  <jug@sad.it>
7966
7967         * sp_spell.C (PSpell): fix initialitation order.
7968
7969 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7970
7971         * paragraph.C: spacing
7972
7973 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
7974
7975         * sp_spell.C: repair language selection for pspell
7976
7977 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7978
7979         * lyxfunc.h: change more methods to begin with lower char.
7980
7981 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
7982
7983         * buffer.C (parseSingleLyXformat2Token): Generate error insets
7984         for unknown layouts.
7985
7986 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
7987
7988         * buffer.C (readLyXformat2): Generate an error dialog if there are
7989         unknown layouts.
7990
7991 2001-07-16  Juergen Vigna  <jug@sad.it>
7992
7993         * sp_spell.C: always compile ISpell part.
7994
7995         * lyxrc.C: added use_pspell entry and it's handling.
7996
7997 2001-07-13  Juergen Vigna  <jug@sad.it>
7998
7999         * sp_spell.C: removed double includes.
8000
8001 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
8002
8003         Consistent use of Lsstream.h:
8004         * Lsstream.h: added using std::stringstream for consistencies sake.
8005
8006         * buffer.C: removed using std::stringstream
8007
8008         * lyxfont.C (stateText):
8009         * paragraph.C (asString):
8010         * text.C (selectNextWord, selectSelectedWord):
8011         * text2.C (setCounter):
8012         * vspace.C (asString, asLatexString):
8013         std::ostringstream -> ostringstream.
8014
8015 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
8016
8017         * LyXAction.C: add LFUN_HELP_ABOUTLYX
8018         * commandtags.h: add LFUN_HELP_ABOUTLYX
8019         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
8020
8021 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
8022
8023         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
8024         cursorToggle()
8025         * lyx_gui_misc.C: remove spellchecker
8026         * lyxfunc.C: showSpellchecker
8027         * sp_base.h: added
8028         * sp_ispell.h: added
8029         * sp_pspell.h: added
8030         * sp_spell.C: added
8031         * sp_form.[Ch]: removed
8032         * spellchecker.[Ch]: removed
8033
8034 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
8035
8036         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
8037         is set.
8038         (simpleTeXSpecialChars): Simply print the input character without
8039         any special translation if pass_thru is set.
8040
8041         * layout.h: Added bool pass_thru to layout class for being able to
8042         implement pass through of a paragraph for Literate Programming.
8043
8044         * layout.C: add LT_PASS_THRU to LayoutTags enum.
8045         * layout.C (LyXLayout): set pass_thru to flase in constructor.
8046         * layout.C (Read): add "passthru" to list of layout tags and add
8047         code to set the pass_thru boolean when it is read.
8048
8049 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8050
8051         * trans_decl.h: remove allowed from KmodInfo
8052
8053         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
8054         remove allowed code
8055         (Load): adjust
8056
8057         * paragraph_pimpl.C (erase): use boost::prior
8058
8059         * Painter.C (text): use data() instead of c_str() when length is
8060         also provided.
8061         * WorkArea.C (putClipboard): ditto
8062         * font.h (width): ditto
8063
8064         * BufferView2.C: use it-> instead of (*it). for iterators
8065         * texrow.C: ditto
8066         * paragraph_pimpl.C: ditto
8067         * paragraph.C: ditto
8068         * minibuffer.C: ditto
8069         * language.C: ditto
8070         * kbmap.C: ditto
8071         * encoding.C: ditto
8072         * counters.C: ditto
8073         * converter.C: ditto
8074         * chset.C: ditto
8075         * Variables.C: ditto
8076         * TextCache.C: ditto
8077         * MenuBackend.C: ditto
8078         * LyXAction.C: ditto
8079         * LColor.C: ditto
8080         * FloatList.C: ditto
8081         * DepTable.C: ditto
8082         * ColorHandler.C (LyXColorHandler): ditto
8083
8084 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8085
8086         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
8087
8088         * text2.C (openStuff): reintroduce this method (which had been
8089         nuked in NEW_INSETS frenzy).
8090
8091         * lyxfunc.C (Dispatch): when an action has not been handled, use
8092         its name in the error message, not its number.
8093
8094         * paragraph.C (inInset): change method name to begin with lowercase.
8095
8096         * undo_funcs.C:
8097         * text2.C: updates because of this.
8098
8099 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8100
8101         * ToolbarDefaults.C (add): add spaces in error message
8102
8103 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8104
8105         * buffer.C (readLyXformat2): initialize the ert comp. variables.
8106         (readLyXformat2): rename return_par to first_par, use lyxlex's
8107         pushToken and remove the manual push handling.
8108         (parseSingleLyXformat2Token): add another ert comp. variable:
8109         in_tabular, rename return_par to first_par. handle newlines better
8110
8111 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8112
8113         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
8114
8115 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8116
8117         * text2.C (getParFromID): removed
8118
8119         * buffer.C (getParFromID): new method moved form lyxtext.
8120         * BufferView2.C (insertErrors): adjust
8121         (setCursorFromRow): adjust
8122         * BufferView_pimpl.C (restorePosition): adjust
8123         * lyxfunc.C (Dispatch): adjust
8124         * undo_funcs.C (textUndo): adjust
8125         (textRedo): adjust
8126         (textHandleUndo): adjust
8127         (textHandleUndo): adjust
8128
8129 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8130
8131         * buffer.C: up' the LYX_FORMAT
8132
8133         * lyxfont.h: turn NO_LATEX on as default
8134
8135         * buffer.C (insertErtContents): new methods of tex style compability.
8136         (parseSingleLyXformat2Token): use it several places.
8137         * tabular.C (OldFormatRead): and here
8138
8139 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8140
8141         * text2.C: remove some commented code.
8142         reindent file.
8143
8144         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
8145         * trans.C: changes because of the above.
8146
8147 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
8148
8149         * text2.C (setCounter): Fix counters bug with bibliography layout.
8150
8151 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8152
8153         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
8154         own member functions
8155         (simpleTeXSpecialChars): ditto
8156
8157 2001-07-06  Juergen Vigna  <jug@sad.it>
8158
8159         * a lot of files: changed the access to LyXText::status and the
8160         call of undo-functions.
8161
8162         * undo.[Ch]: added a inset_id to the undo informations.
8163
8164         * undo_funcs.[Ch]: added and moved here all undo functions.
8165
8166         * lyxtext.h: give the status enum a weight, made status_ a private
8167         variable and made accessor functions for it, removed the whole bunch
8168         of undo-functions as they are now in their own file, make some
8169         functions publically available. Added function ownerParagraph with
8170         int parameter.
8171
8172         * paragraph.[Ch]: added "bool same_ids" to the constructor,
8173         made InInset() a const function, added getParFromID() function.
8174
8175         * buffer.[Ch]: added const version for inset_iterator functions,
8176         added getInsetFromID() function.
8177
8178         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
8179         changed undo functions for new version.
8180
8181 2001-07-05  Juergen Vigna  <jug@sad.it>
8182
8183         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
8184         unknow mechanism does not call the proper constructor but only this
8185         one also if I request the other!?
8186
8187 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8188
8189         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
8190
8191         * text2.C (LyXText): use initialization lists.
8192
8193         * lyxtext.h (Selection): initialize set_ and mark_
8194         (init): remove method
8195
8196 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
8197
8198         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
8199
8200 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8201
8202         * screen.[Ch]: change method names to begin with lowercase
8203
8204         * BufferView_pimpl.C (updateScrollbar): simplify further and
8205         hopefully make it a bit faster.
8206
8207 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8208
8209         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
8210         calling directly xforms functions.
8211
8212         * Painter.C (Painter):
8213         * lyx_cb.C (MenuWrite):
8214         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
8215         fl_display.
8216
8217         * lyx_gui.C: remove bogus guiruntime extern declaration.
8218
8219 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8220
8221         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
8222         in NEW_INSETS
8223         (redoDrawingOfParagraph): ditto
8224         (redoParagraphs): ditto
8225         (cutSelection): don't create a object for CutAndPaste use the
8226         static method directly
8227         (pasteSelection): ditto
8228
8229         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
8230         LyXview (+ rename)
8231
8232 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8233
8234         * modifications to some other files because of this.
8235
8236         * Makefile.am (lyx_SOURCES): add XFormsView
8237
8238         * XFormsView.[Ch]: new files
8239
8240         * LyXView.[Ch]: make LyXView a base class for the gui handling for
8241         the main window. Move the gui dependent stuff to XFormsView
8242
8243 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8244
8245         * tabular.C (GetCellInset): update cur_cell also in the row/col
8246         version of this function.
8247
8248         * lyxfunc.C: no need to include figure_form.h here.
8249
8250         * FontLoader.h:
8251         * lyxfunc.h:
8252         * lyxscreen.h:
8253         * text2.C:
8254         * lyxvc.C: no need to include forms.h here.
8255
8256 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8257
8258         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
8259
8260         * lyxfunc.C (Dispatch):
8261         * Spacing.C (set):
8262         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
8263         constructor argument.
8264
8265 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8266
8267         * paragraph.C (Paragraph): dont't clear, and just set layout.
8268         (makeSameLayout): use params's copy contructor.
8269
8270         * ParagraphParameters.[Ch] (makeSame): delete method
8271
8272 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
8273
8274         * Variables.[Ch]: fix indentation, rename set to isSet
8275
8276 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8277
8278         * lyxfunc.C (Dispatch): fix typo
8279
8280 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8281
8282         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
8283         upper_bound.
8284
8285         * bufferlist.C: include assert.h for emergencyWrite().
8286
8287 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
8288
8289         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
8290           give up at last (bug #425202) !
8291
8292 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
8293
8294         * lyx_gui_misc.C:
8295         * sp_form.h:
8296         * sp_form.C:
8297         * spellchecker.h:
8298         * spellchecker.C: strip spellchecker options and bring up
8299           preferences tab instead
8300
8301 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8302
8303         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
8304         the istringstream constructor
8305
8306 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8307
8308         * paragraph.C (getLayout): fix return value
8309
8310         * paragraph.h: do not declare getLayout as inline.
8311
8312         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
8313
8314 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8315
8316         * lyxcursor.h (operator<): new func
8317         (operator>): new func
8318         (operator>=): new func
8319         (operator<=): new func
8320
8321         * text.C (changeCase): use selection.start and selection.end
8322         (changeRegionCase): require from to be <= to. Require par to be a
8323         valid paragraph.
8324
8325         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
8326
8327 2001-06-27  Juergen Vigna  <jug@sad.it>
8328
8329         * text.C (cursorLeftOneWord): changed to return the cursor and added
8330         overlay with BufferView * parameter which calls this one.
8331         (getWord): added
8332         (selectWord): use new getWord function.
8333         (changeCase): renamed from changeWordCase as and extended to work
8334         also on selections.
8335
8336         * lyxtext.h: added enum word_location
8337
8338         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
8339         changeCase as this operates now also on selections.
8340
8341 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
8342
8343         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
8344
8345         * many files: send debug output to Debug::INFO instead of
8346         Debug::ANY.
8347
8348         * converter.C (View):
8349         (Convert):
8350         (Move): send debug output to Debug::FILES instead of console.
8351
8352 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
8353
8354         * lyxfunc.C (getStatus): use func_status
8355
8356         * func_status.h: new header, describing the results of
8357         LyXFunc::getStatus;
8358
8359         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
8360         LFUN_MATH_HALIGN.
8361
8362 2001-06-25  The LyX Project  <jug@sad.it>
8363
8364         * buffer.C (sgmlOpenTag):
8365         (sgmlCloseTag):
8366         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
8367
8368 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8369
8370         * text2.C: remove some dead code
8371
8372         * tabular.C (GetCellInset): store the last cell checked (gotten)
8373
8374         * tabular.h: add the helper for the speedup
8375
8376         * lyxtext.h: remove some dead code
8377
8378 2001-06-26  The LyX Project  <Asger>
8379
8380         * paragraph.C: Change export to LaTeX of alignment to
8381         \begin{center} and family for better roundtrip work with reLyX.
8382
8383         * Tune the math drawing a bit.
8384
8385 2001-06-25  The LyX Project  <Asger>
8386
8387         * LColor.C (LColor): New color for math background. New color
8388         for buttons.
8389
8390 2001-06-25  The LyX Project  <jug@sad.it>
8391
8392         * lyxfunc.C (MenuNew): remove extra check for .lyx file
8393
8394         * lyxfunc.C (Open):
8395         * bufferlist.C (newFile): do not restrict to files ending with
8396         .lyx
8397
8398         * BufferView_pimpl.C (MenuInsertLyXFile):
8399
8400 2001-06-24  The LyX Project  <jug@sad.it>
8401
8402         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
8403         of compare_no_case
8404
8405 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8406
8407         * lyxtext.h: rename most methods to begin with a small char.
8408         Lots of changes because of this.
8409
8410         * paragraph.C (Paragraph): do not call fitToSize
8411         (erase): call Pimpl::erase
8412         (insertChar): call Pimpl::insertChar
8413         (insertInset): call Pipl::insertInset
8414         (breakParagraph): do not call fitToSize
8415         (breakParagraphConservative): do not call fitToSize
8416         (fitToSize): remove method
8417
8418         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
8419
8420 2001-06-24  The LyX Project  <Asger>
8421
8422         * Fix Qt compilation^2
8423
8424 2001-06-24  The LyX Project  <jug@sad.it>
8425
8426         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
8427         depthHook(getDepth()-1).
8428
8429         * paragraph.h:
8430         * ParagraphParameters.h:
8431         * ParameterStruct.h: change type of depth to unsigned int ==
8432         depth_type. Many adaptations to other files before of that.
8433
8434 2001-06-24  The LyX Project  <Asger>
8435
8436         * Fix Qt compilation.
8437
8438 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8439
8440         * paragraph.h: renamed several methods to begin with small letter.
8441         several changes to many parts of the code because of this.
8442
8443 2001-06-23  The LyX Project  <jug@sad.it>
8444
8445         * text2.C (InsertStringAsLines): renamed from InsertStringA;
8446         rewritten to discard all double spaces when KeepEmpty is off
8447         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
8448         to only handle newlines but not fiddle with spaces and friends.
8449
8450         * lyxfunc.C (MenuNew): when doing 'new from template', use
8451         template_path as default directory
8452
8453 2001-06-23  The LyX Project  <Asger>
8454
8455         * Clean-up of header file includes all over
8456         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
8457
8458 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8459
8460         * paragraph.h: renamed from lyxparagraph.h
8461
8462 2001-06-23  Asger  <lyx@violet.home.sad.it>
8463
8464         * Buffer.h: Removed Buffer::resize
8465         * BufferList.h: Removed BufferList::resize
8466         * LyXView.h: Added LyXView::resize. This way, we will only reflow
8467         the document lazily when we change the width, or the font settings.
8468
8469 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
8470
8471         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
8472
8473 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
8474
8475         * buffer.h: remove out of date comment
8476
8477 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
8478
8479         * lyxscreen.h:
8480         * screen.C: fix "theoretical" GC leak
8481
8482 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8483
8484         * LaTeX.C (scanAuxFile):
8485         (deplog): remove trailing \r when reading stream (useful under
8486         win32)
8487
8488 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
8489
8490         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
8491         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
8492         and BufferView::theLockingInset(Inset*), so should use them and not
8493         access bv_->text->the_locking_inset directly.
8494
8495         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
8496
8497 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
8498
8499         * Makefile.am:
8500         * tex-defs.h: remove old unused file
8501
8502 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
8503
8504         * BufferView_pimpl.C: fix typo, remove minibuffer message
8505           when buffer has loaded
8506
8507 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8508
8509         * lyxfunc.C (Dispatch): use stringstream
8510         (MenuNew): use stringstream
8511         (Open): use stringstream
8512
8513         * importer.C (Import): use stringstream
8514
8515         * bufferview_funcs.C (CurrentState): use stringstream
8516
8517         * LaTeX.C (run): use stringstream
8518
8519         * BufferView_pimpl.C (savePosition): use stringstream
8520         (restorePosition): use stringstream
8521         (MenuInsertLyXFile): use stringstream
8522
8523 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
8524
8525         * BufferView.C:
8526         * Bullet.C:
8527         * ColorHandler.C:
8528         * FontInfo.C:
8529         * FontLoader.C:
8530         * LColor.C:
8531         * LaTeXFeatures.C:
8532         * Painter.C:
8533         * gettext.C:
8534         * lyx_gui_misc.C:
8535         * lyxserver.C:
8536         * vspace.C: removed // -*- C++ -*- as first line.
8537
8538         * lyxfind.h:
8539         * version.h: added // -*- C++ -*- as first line.
8540
8541 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8542
8543         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
8544
8545         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
8546         of string
8547
8548 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8549
8550         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
8551         of floats.
8552
8553 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8554
8555         * gettext.C: include LString.h even when --disable-nls is on.
8556
8557 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
8558
8559         * converter.h (Get): changed argument type from int to
8560         FormatList::size_type to avoid unnecessary conversion.
8561
8562         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
8563         before using it.
8564
8565 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8566
8567         * gettext.h: include LString.h even when --disable-nls is on.
8568
8569 2001-06-07  Juergen Vigna  <jug@sad.it>
8570
8571         * text.C (BreakAgain): subst spaces with tabs.
8572
8573         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
8574         (resizeInsetsLyXText): set force on resizeLyXText.
8575
8576 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8577
8578         * gettext.h (gettext_init):
8579         (locale_init): use a real definition instead of a macro
8580
8581 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
8582
8583         * Bufferview_pimpl.C:
8584         * LColor.h:
8585         * LColor.C: further lcolor tidies
8586
8587 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8588
8589         * BufferView_pimpl.C (updateScrollbar): simplify.
8590
8591         * BufferView2.C: don't include insets/insetinfo.h, change
8592         prototype for insertInset and call the Pimpl version. let
8593         updateInset call Pimpl version.
8594
8595         * BufferView.h: move inset_slept to BufferView::Pimpl, move
8596         gotoInset to BufferView::Pimpl
8597
8598 2001-06-01  Juergen Vigna  <jug@sad.it>
8599
8600         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
8601         inside a LockingInset (is the update needed at all?).
8602
8603 2001-05-31  Juergen Vigna  <jug@sad.it>
8604
8605         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
8606         here not the old one otherwise how should we compare it afterwards
8607         if it's the same!
8608
8609 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8610
8611         * lyxfont.C:
8612         * tabular.C:
8613         * tabular-old.C:
8614         * FontInfo.C: bring C functions into global namespace when
8615         necessary
8616
8617 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8618
8619         * LString.h: make sure config.h has been loaded before LString.h.
8620
8621         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
8622         (one for each char read by EatLine!).
8623
8624         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
8625         variables.
8626
8627 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8628
8629         * paragraph.C (BreakParagraph): set the inset_owner in the new par
8630         to the same as the par we break from
8631
8632 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8633
8634         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
8635
8636         * MenuBackend.C (expand): also create menu entries for wide
8637         versions of the floats.
8638
8639         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
8640
8641         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
8642
8643         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
8644         frontends/Makefile.am
8645
8646         * text2.C: adjust
8647         * text.C: adjust
8648
8649
8650         * tabular.C (getTokenValue): add std::
8651
8652         * tabular-old.C (getTokenValue): add std::
8653         (getTokenValue): ditto
8654         (getTokenValue): ditto
8655
8656         * screen.C (ToggleSelection): adjust
8657
8658         * lyxtext.h: put selection cursors inside a Selection struct.
8659
8660         * lyxfunc.C (moveCursorUpdate): adjust
8661
8662         * lyxfont.C (latexWriteStartChanges): add std::
8663
8664         * lyxfind.C: adjust
8665
8666         * font.h: delete with(char const *, LyXFont const &)
8667
8668         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
8669
8670         * FontInfo.C (getFontname): add std::
8671
8672         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
8673         (workAreaButtonPress): adjust
8674         (tripleClick): adjust
8675         (update): adjust
8676         (moveCursorUpdate): adjust
8677         (Dispatch): adjust
8678
8679         * BufferView2.C (gotoInset): adjust
8680
8681 2001-05-30  Juergen Vigna  <jug@sad.it>
8682
8683         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
8684         to check pspell I add this as default as I now have new pspell
8685         libraries and they seem to use this.
8686
8687 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8688
8689         * text2.C (CutSelection): make the cursor valid before the call to
8690         ClearSelection.
8691
8692 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8693
8694         * kbsequence.C (parse): de-uglify a bit the parsing code, which
8695         relied on 0 terminated strings and other horrors. Bug found due to
8696         the new assert in lyxstring!
8697
8698         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
8699         KP_ keys.
8700
8701 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8702
8703         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
8704         to latinkeys.bind.
8705
8706         * lyxfunc.C (processKeySym): change method of getting to the
8707         self-insert char.
8708
8709         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
8710         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
8711         * BufferView_pimpl.[Ch]: here as private methods.
8712
8713 2001-05-28  Juergen Vigna  <jug@sad.it>
8714
8715         * text.C (SetHeightOfRow): added the update() call again as it is
8716         needed to initialize inset dimensions!
8717
8718 2001-05-16  Juergen Vigna  <jug@sad.it>
8719
8720         * text2.C (SetCharFont): Add new function with BufferView * and
8721         bool toggleall parameters for setting insets internal fonts.
8722         (SetFont): Freeze the undo as we may change fonts in Insets and
8723         all this change should be inside only one Undo!
8724
8725         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
8726         setting font's in insets as for them we have the SetFont function!
8727
8728 2001-05-15  Juergen Vigna  <jug@sad.it>
8729
8730         * text2.C (ClearSelection): to be sure we REALLY don't have any
8731         selection anymore!
8732
8733         * tabular.C (TeXCellPreamble): fixed the left border problem for
8734         multicolumn cells.
8735
8736 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
8737
8738         * LaTeX.C (deplog): Make sure that the main .tex file is in the
8739         dependancy file
8740
8741 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8742
8743         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
8744         LFUN_BREAKPARAGRAPH.
8745
8746         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
8747         help test to "internal only", similar for LFUN_INSERT_URL
8748
8749         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
8750         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
8751         auto_region_delete and deadkeys.
8752
8753 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
8754
8755         * LColor.h:
8756         * LColor.C: remove some dead entries, tidy a little
8757
8758 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8759
8760         * lyxfunc.C (processKeySym): comment the Escape handling, remove
8761         commented code.
8762         (Dispatch): implement LFUN_ESCAPE
8763
8764         * commandtags.h: add LFUN_ESCAPE
8765
8766         * LyXAction.C (init): add entry for LFUN_ESCAPE
8767
8768         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
8769         Remove commented code.
8770         (insertNote): moved here
8771         (open_new_inset): moved here
8772
8773         * BufferView[2].[Ch]: move insertNote and open_new_inset to
8774         BufferView_pimpl
8775
8776 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8777
8778         * kbmap.C (findbinding): clean it up and make it work correctly.
8779
8780         * lyx_main.C (init): do not pass argc and argv as parameters
8781
8782 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
8783
8784         * buffer.C: fix path for OS/2 & Win32
8785
8786         * lyx_gui.C:
8787         * lyx_main:
8788         * lyx_main.C: Added os:: class.
8789
8790         * os2_defines.h: update
8791
8792 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8793
8794         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
8795         better by trying again with reduced state.
8796
8797 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8798
8799         * lyxrc.C (read): print error about invalid key sequence only when
8800         debugging (because not all latinX keysyms are known to some X
8801         servers)
8802
8803         * kbsequence.C (getiso): add a few std:: qualifiers
8804         (getiso): comment out extra return statement.
8805
8806 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8807
8808         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
8809         handling.
8810         (Dispatch): enhance the accent inset a bit. (not perfect)
8811
8812 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8813
8814         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
8815
8816 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8817
8818         * bufferlist.C (emergencyWrite): fix assert() call
8819
8820 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
8821
8822         * text.C (InsertChar): Added trivial patch to only send the "you
8823         can not do multiple spaces this way" message once during a
8824         session.
8825
8826 2001-05-08  Baruch Even  <baruch@lyx.org>
8827
8828         * Makefile.am: Changed order of libraries to get LyX to link properly
8829         with the gnome frontend.
8830
8831 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8832
8833         * LaTeXFeatures.h: add a std:: qualifier
8834
8835 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8836
8837         * paragraph.C (String): use stringstream
8838
8839 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8840
8841         * paragraph.C (writeFile): remove footflag arg
8842
8843         * buffer.C (makeLaTeXFile): use stringstream
8844         (latexParagraphs): remove footnot gurba
8845
8846         * LaTeXFeatures.C (getPackages): use stringstream
8847         (getMacros): likewise
8848         (getTClassPreamble): likewise
8849         (getFloatDefinitions): new method
8850
8851         * paragraph.C (writeFile): reindent
8852         (Erase): reindent
8853
8854         * WorkArea.h: revert the xpos + etc changes.
8855
8856         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
8857
8858         * lyxparagraph.[Ch]: add copy constructor, remove Clone
8859
8860         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
8861         (pasteSelection): likewise
8862         * text2.C (CreateUndo): likewise
8863
8864 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8865
8866         * minibuffer.C (peek_event): temporarily reduce the functionality
8867         of the minibuffer (to allow args on lfuns)
8868
8869         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
8870         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
8871
8872         * buffer.C (readInset): add compability reading of old float
8873         lists, add reading of new style float list.
8874         (readInset): avoid reevaluation of inscmd.getCmdName()
8875         (getLists): reindent
8876
8877         * MenuBackend.C (MenuItem): implement parsing of
8878         md_floatlistinsert and md_floatinsert.
8879         (expand::LastFiles): move initalizaton of iterators out of loop,
8880         avoid reevaluation.
8881         (expand::Documents): introduce typdedef vector<string> Strings,
8882         and use it.
8883         (expand::ExportFormats): introduce typedef vector<Format const *>
8884         Formats, and use it.
8885         (expand): implement FloatListInsert and FloatInsert.
8886
8887         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
8888         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
8889         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
8890
8891         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
8892         handling.
8893         (Dispatch::LFUN_FLOAT_LIST): implement
8894
8895 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
8896
8897         * LaTeX.C (run): Fix problem with --export code.
8898
8899 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
8900
8901         * BufferView.[Ch] (workarea): removed.
8902         (getClipboard) new method; wrapper for workarea()->getClipboard()
8903
8904         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
8905         bug.
8906
8907         * WorkArea.h (width, height, xpos, ypos): These methods all
8908         returned the dimensions of the work_area sub-area of WorkArea,
8909         resulting in a position error if the WorkArea were resized. Now
8910         return the dimensions of the entire WorkArea.
8911
8912         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
8913
8914 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8915
8916         * LaTeX.C (deplog): correct the syntax of regex reg1
8917
8918 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8919
8920         * undo.C: remove !NEW_INSETS cruft
8921
8922 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8923
8924         * text2.C: remove !NEW_INSETS cruft
8925
8926         * text.C: remove !NEW_INSETS cruft
8927
8928         * tabular.C: remove !NEW_INSETS cruft
8929
8930         * spellchecker.C: remove !NEW_INSETS cruft
8931
8932         * lyxtext.h: remove !NEW_INSETS cruft
8933
8934         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
8935
8936         * lyxfunc.C: remove !NEW_INSETS cruft
8937
8938         * lyxfind.C: remove !NEW_INSETS cruft
8939
8940         * lyx_cb.C: remove !NEW_INSETS cruft
8941
8942         * figureForm.C: remove  !NEW_INSETS cruft
8943
8944         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
8945
8946         * buffer.[Ch]: remove !NEW_INSETS cruft
8947
8948         * ToolbarDefaults.C: remove !NEW_INSETS cruft
8949
8950         * CutAndPaste.C: remove !NEW_INSETS cruft
8951
8952         * BufferView_pimpl.C: remove !NEW_INSETS cruft
8953
8954         * BufferView2.C: remove !NEW_INSETS cruft
8955
8956         * BufferView.h: remove !NEW_INSETS cruft
8957
8958 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8959
8960         * Lsstream.h: include LString.h before the sstream headers to
8961         fix problem with gcc 2.95.3 and lyxstring
8962
8963 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8964
8965         * lyx_main.C: add using directives when needed for C functions
8966         declared in std:: namespace.
8967
8968 2001-04-27  Juergen Vigna  <jug@sad.it>
8969
8970         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
8971         (SetHeightOfRow): comment out the update call should not be needed!
8972
8973 2001-04-13  Juergen Vigna  <jug@sad.it>
8974
8975         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
8976         (LyXTabular): tried to minimize operator= operations (and realized
8977         hopfully Lars wish).
8978
8979 2001-04-27  Juergen Vigna  <jug@sad.it>
8980
8981         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
8982
8983 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8984
8985         * lyxfunc.C (Dispatch): hack to make listof algorithm work
8986
8987         * buffer.C (readInset): hack to make listof algorithm work
8988
8989         * BufferView_pimpl.C: hack to make listof algorithm work
8990
8991 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8992
8993         * LyXAction.C: removed all !NEW_INSETS cruft
8994         (init): moved lfun_item in method
8995
8996         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
8997
8998 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
8999
9000         * BufferView2.C (theLockingInset): white space.
9001
9002 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9003
9004         * minibuffer.C: include <iostream>
9005
9006         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
9007
9008         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
9009
9010         * commandtags.h: add LFUN_TRANSPOSE_CHARS
9011
9012         * text.[Ch] (TransposeChars): new method
9013
9014 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9015
9016         * call message directly through LyXView instead of through LyXFunc
9017         * BufferView2.C: adjust
9018         * BufferView_pimpl.C: adjust
9019         * FontLoader.C: adjust
9020         * buffer.C: adjust
9021         * bufferview_funcs.C: adjust
9022         * converter.C: adjust
9023         * figureForm.C: adjust
9024         * importer.C: adjust
9025         * lyx_cb.C: adjust
9026         * lyx_gui_misc.C: adjust
9027         * lyxfunc.C: adjust
9028         * lyxvc.C: adjust
9029         * text2.C: adjust
9030         + more files in subdirs
9031
9032         * lyxparagraph.h (size): move up int file
9033         (GetLayout): ditto
9034
9035         * adjust all uses of Assert to lyx::Assert.
9036
9037         * BufferView2.C (ChangeCitationsIfUnique): adjust for
9038         lyxfunctional in namespace lyx
9039         * layout.C (hasLayout): ditto
9040         (GetLayout): ditto
9041         (GetLayout): ditto
9042         (delete_layout): ditto
9043         (NumberOfClass): ditto
9044         * converter.C (GetFormat): ditto
9045         (GetNumber): ditto
9046         (Add): ditto
9047         (Delete): ditto
9048         (SetViewer): ditto
9049         * bufferlist.C (getFileNames): ditto
9050         (emergencyWriteAll): ditto
9051         (exists): ditto
9052         (getBuffer): ditto
9053         * MenuBackend.C (hasSubmenu): ditto
9054         (hasMenu): ditto
9055         (getMenu): ditto
9056         * BufferView_pimpl.C (getInsetByCode): ditto
9057
9058 2001-04-18  Juergen Vigna  <jug@sad.it>
9059
9060         * vspace.C (asLatexString): fixed the 100% problem.
9061
9062 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9063
9064         * lyxfunc.C (Dispatch):
9065         * minibuffer.C:
9066         * minibuffer.h: add a few std:: qualifiers
9067
9068 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9069
9070         * minibuffer.[Ch]: reimplement so that commands is initiated and
9071         run from lyxfunc, simplified som handling, and made the completion
9072         and history code for complete. wip.
9073
9074         * lyxfunc.C (processKeySym): call message
9075         (miniDispatch): new temporary method
9076         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
9077         (LFUN_MESSAGE): implement
9078         (LFUN_MESSAGE_PUSH): implement
9079         (LFUN_MESSAGE_POP): implement
9080         (initMiniBuffer): the initial/defualt minibuffer message.
9081
9082         * lyxfont.[Ch]: inline some more getters
9083
9084         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
9085
9086         * lyx_gui_misc.[Ch] (WriteStatus): remove method
9087
9088         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
9089         (AutoSave): use LFUN_MESSAGE
9090         (Reconfigure): ditto
9091
9092         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
9093
9094         * figureForm.C: use LFUN_MESSAGE
9095
9096         * converter.C (runLaTeX): use LFUN_MESSAGE
9097
9098         * bufferview_funcs.C: use LFUN_MESSAGE
9099         (Melt): ditto
9100         (changeDepth): ditto
9101
9102         * bufferparams.h: use boost::
9103
9104         * bufferlist.h: inherit privately from noncopyable
9105
9106         * bufferlist.C (loadLyXFile): remove some commented code.
9107
9108         * buffer.C (runChktex): use LFUN_MESSAGE
9109
9110         * ShareContainer.h: inherit privately from noncopyable
9111
9112         * ParagraphParameters.[hC] (depth): inline it.
9113
9114         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
9115         methods.
9116         (message): new method
9117         (messagePush): ditto
9118         (messagePop): ditto
9119         (show): init minibuffer
9120         (showState): direct call
9121
9122         * LaTeX.[Ch]: inherit privately from noncopyable
9123         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
9124         instead of WriteStatus.
9125
9126         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
9127
9128         * BufferView_pimpl.C (buffer): don't init minibuffer
9129         (workAreaButtonPress): use LFUN_MESSAGE
9130         (workAreaButtonRelease): ditto
9131         (savePosition): ditto
9132         (restorePosition): ditto
9133         (MenuInsertLyXFile): ditto
9134         (workAreaExpose): don't init minibuffer
9135         (update): remove commented code, simplify
9136
9137         * BufferView2.C (openStuff): use LFUN_MESSAGE
9138         (toggleFloat): ditto
9139         (menuUndo): ditto
9140         (menuRedo): ditto
9141         (copyEnvironment): ditto
9142         (pasteEnvironment): ditto
9143         (copy): ditto
9144         (cut): ditto
9145         (paste): ditto
9146         (gotoInset): ditto
9147         (updateInset): remove some commented code
9148
9149         * lastfiles.h: inherit privately from noncopyable
9150         * layout.h: ditto
9151         * lyx_gui.h: ditto
9152         * lyx_main.h: ditto
9153         * lyxlex.h: ditto
9154         * lyxlex_pimpl.h: ditto
9155
9156         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
9157         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
9158         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
9159
9160         * LyXAction.h: inherit privately from noncopyable, add methods
9161         func_begin, func_end, returning iterators to the func map.
9162
9163         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
9164         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
9165         (func_begin): new method
9166         (func_end): new method
9167
9168         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
9169         and not)
9170         (copySelection): ditto
9171         (pasteSelection): ditto
9172
9173         * BufferView.C: whitespace change
9174         * BufferView.h: inherit privately from noncopyable
9175
9176 2001-04-16  Allan Rae  <rae@lyx.org>
9177
9178         * tabular-old.C (l_getline):
9179         * spellchecker.C (sc_check_word):
9180         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
9181         an unrecognised preprocessor directive.  So ensure they're wrapped.
9182
9183 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
9184
9185         * src/exporter.C (Export): Give an error message when path to file
9186         contains spaces.
9187
9188 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
9189
9190         * LaTeX.C (deplog): Always check that foundfile exists.
9191
9192 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9193
9194         * lyx_main.h:
9195         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
9196
9197 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9198
9199         * tabular.[Ch] (getLabelList): implement new method
9200
9201         * minibuffer.h: comment ouf setTiimer
9202
9203         * minibuffer.C (ExecutingCB): constify res
9204         (peek_event): constify s
9205         (Set): constify ntext
9206         (Init): constify nicename
9207
9208         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
9209
9210         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
9211         (savePosition): use two params to Minibuffer::Set
9212         (restorePosition): ditto
9213
9214 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9215
9216         * lyx_main.C: include language.h
9217
9218         * Makefile.am (lyx_main.o): add language.h
9219
9220 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9221
9222         * exporter.C:
9223         * paragraph.C:
9224         * screen.C:
9225         * tabular.C:
9226         * CutAndPaste.C: include gettext.h
9227
9228         * lyxfont.h: remove old hack with ON and OFF.
9229
9230         * lyxparagraph.h:
9231         * lyxfont.h: do not include language.h...
9232
9233         * BufferView2.C:
9234         * LaTeXFeatures.C:
9235         * Painter.C:
9236         * bufferview_funcs.C:
9237         * font.C:
9238         * lyxfont.C:
9239         * text.C:
9240         * text2.C:
9241         * trans_mgr.C:
9242         * paragraph.C: ... but do it here instead
9243
9244 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9245
9246         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
9247
9248         * tabular.C: small reformat
9249
9250         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
9251         NEW_INSETS version
9252         (GetChar): ditto
9253         (BreakParagraph): ditto
9254         (SetOnlyLayout): ditto
9255         (SetLayout): ditto
9256
9257         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
9258         with one arg less.
9259
9260         * lastfiles.C: removed most using decl, add std:: where needed
9261
9262         * buffer.C: ws changes
9263
9264         * MenuBackend.C (class compare_format): put into anon namespace
9265         (expand): constify label, names, action, action2
9266         (expand):
9267
9268         * text.C (SingleWidth): constify font
9269         (IsBoundary): constify rtl2
9270         (GetVisibleRow): constify ww
9271
9272         * LaTeX.C (deplog): constify logfile
9273
9274         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
9275         start_x, end_x
9276         (workAreaExpose): constify widthChange, heightChange
9277
9278         * lyxrow.C (par): moved
9279         (height): moved
9280         (next): moved
9281         * lyxrow.h: as inlines here
9282
9283         * lyxfont.h (shape): moved from lyxfont.C
9284         (emph): moved from lyxfont.C
9285
9286         * lyxfont.C (LyXFont): use initialization list for all
9287         constructors
9288         (shape): move to lyxfont.h as inline
9289         (emph): move to lyxfont.h as inline
9290
9291
9292 2001-04-04  Juergen Vigna  <jug@sad.it>
9293
9294         * vspace.C: had to include stdio.h for use of sscanf
9295
9296 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
9297
9298         * BufferView.h:
9299         * BufferView_pimpl.h: remove xforms cruft. Both classes are
9300         independent of xforms.
9301
9302 2001-04-02  Juergen Vigna  <jug@sad.it>
9303
9304         * spellchecker.C: fixed namespace placing!
9305
9306 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
9307
9308         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
9309         the LyXParagraph * is 0.
9310
9311 2001-03-29  Juergen Vigna  <jug@sad.it>
9312
9313         * vspace.C: added support for %, c%, p%, l%.
9314         (stringFromUnit): added helper function.
9315         (asLatexString): changed to give right results for the %-values.
9316
9317         * buffer.C: convert the widthp in a width%.
9318
9319 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
9320
9321         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
9322         figureForm.[Ch].
9323
9324         * figureForm.[Ch]: stripped the FD_from_figure manipulation
9325         code out of lux_cb.[Ch], ready for its (imminent?) removal.
9326
9327         * lyx_cb.[Ch]: see above.
9328
9329         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
9330         form1.[Ch].
9331
9332         * form1.[Ch]:
9333         * lyx.[Ch]: replaced by figure_form.[Ch].
9334
9335         * lyx_gui.C:
9336         * lyx_gui_misc.C:
9337         * lyxfunc.C: changed headers associated with above changes.
9338
9339 2001-03-27  Juergen Vigna  <jug@sad.it>
9340
9341         * BufferView_pimpl.C: set the temporary cursor right!
9342
9343 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
9344
9345         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
9346
9347 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
9348
9349         * LString.h: removed "using std::getline"!
9350
9351         * BufferView_pimpl.C (Dispatch): changes due to changes in
9352         InsetInclude::Params.
9353
9354         * buffer.C (tag_name): removed redundant break statements as they were
9355         producing lots of warnings with my compiler.
9356
9357 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9358
9359         * LString.h: add "using std::getline" when using the real <string>.
9360
9361 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
9362
9363         * buffer.C: removed bitset usage.
9364         PAR_TAG moved to an anonymous name space.
9365         (tag_name): new funtion, also in the anonymous namespace.
9366         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
9367         (makeDocBookFile): clean code. Completed transition from string arrays
9368         to string vectors.
9369         (SimpleDocBookOnePar): code clean.
9370
9371 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
9372
9373         * tabular.C: add some comments.
9374
9375 2001-03-22  Juergen Vigna  <jug@sad.it>
9376
9377         * buffer.C (parseSingleLyXformat2Token): redone the minipage
9378         compatibility read a bit and fixed bug with minipage in different
9379         depth.
9380
9381 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
9382
9383         * buffer.C (pop_tag): removed.
9384         (push_tag): removed.
9385         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
9386         array replaced with vector. Added support for CDATA sections.
9387         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
9388         at any nest level.
9389         (makeDocBookFile): XML conformant declaration of CDATA section,
9390         fixed bug related to <emphasis> in the first paragraph char.
9391         (sgmlOpenTag): exclude empty tags.
9392         (sgmlCloseTag): ditto.
9393
9394         * buffer.h (pop_tag): removed.
9395         (push_tag): removed.
9396
9397 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
9398
9399         * language.h (Languages): added size_type and size().
9400
9401 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
9402
9403         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
9404         response on compability reading of minipages. One probliem is that
9405         the old usage of minipages was «flertydig»
9406
9407         * several files here and in subdirs: don't use static at file
9408         scope use anon namespaces instead.
9409
9410 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
9411
9412         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
9413         LaTeX output. This is necessary for Literate document
9414         processing.
9415
9416 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
9417
9418         * buffer.C: insert hfill when needed.
9419
9420         * tabular.C (l_getline): use string::erase, small whitespace change.
9421
9422         * BufferView_pimpl.C: try the anon namespace.
9423         * WorkArea.C: ditto
9424
9425 2001-03-16  Juergen Vigna  <jug@sad.it>
9426
9427         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
9428         otherwise it won't open options-dialogs.
9429
9430         * buffer.C: honor pextraWidth(p) on converting minipages.
9431
9432         * tabular.C (l_getline): changed the functions to strip trailing \r.
9433
9434 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
9435
9436         * BufferView_pimpl.C:
9437         * minibuffer..C: added "using SigC::slot" declaration.
9438
9439 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
9440
9441         * lyxlex_pimpl.h: noncopyable is in namespace boost.
9442
9443         * text2.C: ditto
9444
9445         * text.C: ditto
9446
9447         * paragraph.C: ditto
9448
9449         * lyxtext.h: NO_PEXTRA
9450
9451         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
9452
9453         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
9454         * ParameterStruct.h: ditto
9455         * ParagraphParameters.h: ditto
9456         * lyxparagraph.h: ditto
9457
9458 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
9459
9460         * buffer.C: add compability for minipage alignment.
9461         (latexParagraphs): remove unwanted pextra check.
9462
9463         * several files: remove CXX_WORKING_NAMESPACES
9464
9465         * buffer.C (pop_tag): tie is in namespace boost
9466
9467         * BufferView.h: noncopyable is in namespace boost
9468         * lyxlex.h: ditto
9469         * lyx_main.h: ditto
9470         * lyx_gui.h: ditto
9471         * layout.h: ditto
9472         * lastfiles.h: ditto
9473         * bufferlist.h: ditto
9474         * ShareContainer.h: ditto
9475         * LyXView.h: ditto
9476         * LyXAction.h: ditto
9477         * LaTeX.h: ditto
9478
9479 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
9480
9481         * Merging changes from BRANCH_MVC back into HEAD.
9482
9483         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
9484
9485 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
9486
9487         * BufferView_pimpl.C: change from intl.C
9488
9489         * combox.h:
9490         * combox.C:
9491         * Makefile.am: move combox.*
9492
9493         * form1.h:
9494         * form1.C:
9495         * lyx_gui.C:
9496         * intl.h:
9497         * intl.C: remove dialog (covered by prefs)
9498
9499 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
9500
9501         * lyxfunc.C (Dispatch): removed redundant break statement.
9502
9503 2001-03-14  Juergen Vigna  <jug@sad.it>
9504
9505         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
9506
9507 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
9508
9509         * buffer.C: add hack to fix compability reading of minipages.
9510
9511 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
9512
9513         * buffer.C (getLists): Cleanup.
9514
9515 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9516
9517         * lyxfont.C (update): don't honor toggleall on font size.
9518
9519 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
9520
9521         * bmtable.c:
9522         * bmtable.h:
9523         * Makefile.am: moved to frontends/xforms/
9524
9525         * lyx_gui_misc.C:
9526         * lyxfunc.C:
9527         * BufferView_pimpl.C: changes for moved mathpanel
9528
9529 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
9530
9531         * gettext.h: fix gettext_init() in --disable-nls
9532
9533 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9534
9535         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
9536
9537 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
9538
9539         * lyx.C:
9540         * lyx.h: strip external form
9541
9542 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
9543
9544         * BufferView_pimpl.C: add comment, destroySplash()
9545
9546 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
9547
9548         * BufferView_pimpl.C:
9549         * LyXAction.C:
9550         * buffer.C:
9551         * commandtags.h:
9552         * lyxfunc.C: use re-worked insetinclude
9553
9554 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
9555
9556         * buffer.C: add using std::stringstream.
9557
9558         * lyx_cb.C: readd using std::ios.
9559
9560         * buffer.C: add using std::map.
9561
9562         * BufferView_pimpl.C: add using std::vector.
9563
9564         * ShareContainer.h: add std:: to swap.
9565
9566         * buffer.h: add some typedefs
9567         * buffer.C (getLists): use them
9568         (getLists): renamed from getTocList.
9569         add a counter for the different float types and use it in the
9570         generated string.
9571         (getLists): use the same counter for the NEW_INSETS and the "non"
9572         NEW_INSETS
9573
9574         * lyx_cb.h: remove unused items, includes, using etc.
9575
9576         * ShareContainer.h: remove some commented code, add more comments
9577         and "documentation".
9578
9579 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
9580
9581         * buffer.C (getTocList): make the list also when NEW_INSETS is
9582         defined.
9583
9584         * buffer.h: remove TocType
9585
9586         * buffer.C (getTocList): change to return a map<string,
9587         vector<TocItem> >, implement for dynamic number of list.
9588
9589         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
9590         * text2.C (PasteSelection): adjust
9591         * CutAndPaste.C (pasteSelection): adjust
9592
9593         * FloatList.C (FloatList): update from the new_insets branch.
9594         * Floating.[Ch]: ditto
9595         * LaTeXFeatures.C: ditto
9596         * buffer.C: ditto
9597         * lyxlex_pimpl.C: ditto
9598
9599         * paragraph.C (Last): remove when NEW_INSETS is defined.
9600
9601         * other file: changes because of the above.
9602
9603 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
9604
9605         * lyxparagraph.h: rename next to next_, previous to previous_,
9606         make them private for NEW_INSETS. Rename Next() to next(),
9607         Previous() to previous().
9608
9609         * other files: changes because of the above.
9610
9611 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
9612
9613         * BufferView.h:
9614         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
9615         problem.
9616
9617 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9618
9619         * main.C (main): pass lyx_localedir to gettext_init().
9620
9621         * gettext.h: remove locale_init and gettext_init macros
9622
9623         * gettext.C (locale_init): new function
9624         (gettext_init): new function
9625
9626         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
9627         setlocale().
9628
9629 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
9630
9631         * Moved credits to frontends:
9632         * credits.[Ch]: removed
9633         * credits_form.[Ch]: removed
9634         * lyx_gui_misc.C: remove credits stuff
9635         * Makefile.am:
9636
9637 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
9638
9639         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
9640
9641         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
9642         unneeded destructor.
9643
9644         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
9645         a standalone pointer again.
9646
9647         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
9648
9649 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
9650
9651         * Makefile.am:
9652         * filedlg.h:
9653         * filedlg.C:
9654         * LyXAction.C:
9655         * ToolbarDefaults.C:
9656         * bufferlist.C:
9657         * commandtags.h:
9658         * form1.C:
9659         * form1.h:
9660         * lyx_cb.C:
9661         * lyx_cb.h:
9662         * lyxfunc.h:
9663         * lyxfunc.C:
9664         * BufferView_pimpl.C: use new file dialog in GUII
9665
9666         * lyx_cb.h:
9667         * lyx_cb.C: remove LayoutsCB to Toolbar
9668
9669 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9670
9671         * ShareContainer.h (get): add std:: qualifier
9672
9673 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9674
9675         * ShareContainer.h: define a proper ShareContainer::value_type
9676         type (and use typename to please compaq cxx)
9677
9678 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
9679
9680         * lyxparagraph.h: move serveral local vars to
9681         ParameterStruct/ParagraphParameters., use ShareContainer in
9682         FontTable., make vars in FontTable private and add getter and
9683         setter.
9684
9685         * paragraph.C: changes because of the above.
9686
9687         * lyxfont.h: remove copy constructor and copy assignment. (the
9688         default ones is ok), move number inside FontBits. move inlines to
9689         lyxfont.C
9690
9691         * lyxfont.C: add number to initializaton of statics, move several
9692         inlines here. constify several local vars. some whitespace
9693         cleanup. Dont hide outerscope variables.
9694
9695         * Spacing.h: add two new constructors to match the set methods.
9696
9697         * ShareContainer.h: new file, will perhaps be moved to support
9698
9699         * ParameterStruct.h: new file
9700
9701         * ParagraphParameters.h: new file
9702
9703         * ParagraphParameters.C: new file
9704
9705         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
9706         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
9707
9708         * BufferView_pimpl.C: ParagraphParameter changes.
9709         * buffer.C: Likewise.
9710         * bufferview_funcs.C: Likewise.
9711         * text.C: Likewise.
9712         * text2.C: Likewise.
9713
9714 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9715
9716         * lyxfind.C (LyXReplace): do not redefine default argument in
9717         implementation.
9718         (IsStringInText): ditto
9719         (SearchForward): ditto
9720         (SearchBackward): ditto
9721
9722 2001-03-06  Juergen Vigna  <jug@sad.it>
9723
9724         * lyxfind.C (IsStringInText): put parentes around expressions.
9725
9726 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
9727
9728         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
9729
9730 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
9731
9732         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
9733
9734         * stl_string_fwd.h: add comment
9735
9736         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
9737
9738         * tabular.h:
9739         * tabular.C: remove unused DocBook methods
9740
9741         * intl.C:
9742         * language.C:
9743         * paragraph.C:
9744         * buffer.C:
9745         killed DO_USE_DEFAULT_LANGUAGE
9746
9747 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9748
9749         * lyx_gui.C: do not include language.h.
9750
9751         * bufferview_funcs.C (ToggleAndShow): do not provide optional
9752         arguments in function implementation.
9753
9754 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
9755
9756         * BufferView_pimpl.C: add <ctime>
9757
9758 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
9759
9760         * BufferView_pimpl.C: add using std::find_if
9761
9762 2001-02-27  José Matos  <jamatos@fep.up.pt>
9763
9764         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
9765         by OnlyPath.
9766
9767 2001-02-11  José Matos  <jamatos@fep.up.pt>
9768
9769         * buffer.C (makeDocBookFile): command styles now have a parameter as
9770         "title" by default.
9771
9772 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
9773
9774         * layout_forms.[Ch]: removed
9775         * lyx_cb.[Ch]: out character
9776         * lyx_gui.C: out character
9777         * lyx_gui_misc.C: out character
9778         * bufferview_funcs.C: : out character,
9779         added toggleall as parameter in ToggleAndShow
9780
9781 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
9782
9783         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
9784
9785         * text2.C (SetCurrentFont): Disable number property at boundary.
9786
9787 2001-02-26  Juergen Vigna  <jug@sad.it>
9788
9789         * lyxfunc.C (getStatus): added a string argument override function so
9790         that this is correctly called from LyXFunc::Dispatch if it contains a
9791         do_not_use_argument which is used!
9792         (Dispatch): added check for "custom" export and call appropriate func.
9793
9794 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
9795
9796         * lyxrc.C: Add language_command_local, language_use_babel and
9797         language_global_options.
9798
9799         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
9800
9801         * buffer.C (makeLaTeXFile): Use language_use_babel and
9802         language_global_options.
9803
9804 2001-02-23  Juergen Vigna  <jug@sad.it>
9805
9806         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
9807         which works with LyXText and putted it inside BufferView. Here now we
9808         only call for that part the BufferView::Dispatch() function.
9809
9810         * BufferView.C (Dispatch): added.
9811
9812         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
9813         functions which needs to use a LyXText over from LyXFunc.
9814         (MenuInsertLyXFile): added
9815         (getInsetByCode): added
9816         (moveCursorUpdate): added
9817         (static TEXT): added
9818
9819 2001-02-22  Juergen Vigna  <jug@sad.it>
9820
9821         * BufferView_pimpl.C (update): call a status update to see if LyXText
9822         needs it.
9823
9824 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
9825
9826         * vc-backend.C (revert): implement for CVS
9827         (getLog): implement for CVS
9828
9829 2001-02-20  Juergen Vigna  <jug@sad.it>
9830
9831         * text2.C (ClearSelection): added BufferView param for inset_owner call
9832
9833         * lyxfunc.C (TEXT): added this function and use it instead of
9834         directly owner->view()-text of getLyXText().
9835
9836 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
9837
9838         * src/layout_forms.C: out preamble
9839         * src/layout_forms.h: out preamble
9840         * src/lyx_cb.C: out preamble
9841         * src/lyx_cb.h: out preamble
9842         * src/lyx_gui.C: out preamble
9843         * src/lyx_gui_misc.C: out preamble
9844         * src/lyxfunc.C: connect with guii preamble
9845
9846 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
9847
9848         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
9849
9850 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
9851
9852         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
9853         whether to run bibtex.
9854
9855 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
9856
9857         * Makefile.am (lyx_SOURCES): Remove BackStack.h
9858
9859 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
9860
9861         * Makefile.am (lyx_SOURCES): removed bibforms.h
9862
9863         * vspace.h: doxygen
9864
9865         * text.C (GetVisibleRow): make several local vars const
9866
9867         * tabular.C: small cleanup.
9868
9869         * lyxserver.C (callback): use compare instead of strncmp
9870
9871         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
9872         inlines to after class or to paragraph.C
9873
9874         * lyxfont.h: remove friend operator!=
9875
9876         * converter.h: move friend bool operator< to non friend and after
9877         class def.
9878
9879         * combox.h: small cleanup
9880
9881         * buffer.h: doxygen, remove unused constructor, move inclas inlies
9882         to inlines after class def.
9883
9884         * buffer.C (pop_tag): use string operations instead of strcmp
9885
9886         * bmtable.c: doxygen, small cleanup
9887
9888         * LaTeX.h: remove friend operator==
9889
9890 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
9891
9892         * screen.C:
9893         * lyxrc.[Ch]:
9894         * lyxfunc.C:
9895         * lyxfont.[Ch]:
9896         * lyx_cb.C:
9897         * intl.[Ch]:
9898         * commandtags.h:
9899         * buffer.C:
9900         * WorkArea.[Ch]:
9901         * LyXAction.C:
9902         * BufferView_pimpl.C:
9903         * BufferView.[Ch]: remove cruft
9904
9905 2001-02-14  Juergen Vigna  <jug@sad.it>
9906
9907         * lyxfunc.C: removed #if 0 unused code
9908
9909         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
9910
9911         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
9912
9913         * text2.C (SetSelection): added a BufferView * parameter
9914
9915 2001-02-13  Juergen Vigna  <jug@sad.it>
9916
9917         * lyxfunc.C (Dispatch): fixed protected blank problem.
9918         * BufferView2.C (protectedBlank): added LyxText * parameter.
9919
9920         * tabular.C (AppendRow): forgot to set row_info of newly added row.
9921         (AppendColumn): same as above for column_info.
9922
9923         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
9924         (moveCursorUpdate): use a LyXText param for support of InsetText.
9925
9926         * BufferView_pimpl.C (doubleClick): added support for InsetText.
9927         (tripleClick): ditto
9928
9929         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
9930
9931         * BufferView_pimpl.C (update): added LyXText param to honor insets.
9932
9933         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
9934
9935         * text2.C (SetSelection): set correct update status if inset_owner
9936         (ToggleFree): ditto
9937
9938 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
9939
9940         * tabular.C: remove some commented code.
9941
9942 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
9943
9944         * BufferView_pimpl.C: call hideSplash()
9945
9946         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
9947
9948         * include_form.h:
9949         * bibforms.h: remove
9950
9951         * lyxfunc.C:
9952         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
9953           add LFUN_CHILD_CREATE
9954
9955         * counters.h: fix tiny typo
9956
9957         * lyx_cb.C:
9958         * lyx.h:
9959         * lyx_gui.C:
9960         * lyx.C: move splash to frontends/xforms/
9961
9962         * lyx_gui_misc.C: move Include and Bibform to frontends
9963
9964         * lyxvc.h: clarify comment
9965
9966         * vspace.C: tiny housekeeping
9967
9968 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
9969
9970         * text.C (PrepareToPrint): RTL Fix.
9971
9972         * paragraph.C (GetUChar): New method.
9973         (String):  Use GetUChar.
9974
9975         * buffer.C (asciiParagraph): Use GetUChar.
9976
9977 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
9978
9979         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
9980
9981 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
9982
9983         * buffer.h:
9984         * buffer.C: rename to getLogName(), handle
9985           build log / latex log nicely
9986
9987 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9988
9989         * MenuBackend.C:
9990         * MenuBackend.h: remove support for reference menuitem type.
9991
9992 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
9993
9994         * BufferView_pimpl.C: housekeeping
9995         * BufferView_pimpl.h:
9996         * LyXView.h:
9997         * Makefile.am:
9998         * Timeout.C:
9999         * Timeout.h:
10000         * minibuffer.h: move Timeout GUI-I
10001
10002 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
10003
10004         * lyxrc.C (read): Update converters data-structures.
10005
10006 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
10007
10008         * LaTeX.h (operator!=): add operator != for Aux_Info
10009
10010 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
10011
10012         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
10013
10014         * LaTeXLog.C: deleted, useful code moved to Buffer
10015
10016         * buffer.h:
10017         * buffer.C: new function getLatexLogName()
10018
10019         * lyx_gui_misc.C:
10020         * lyx_gui.C:
10021         * lyxvc.C:
10022         * lyxvc.h:
10023         * lyxfunc.C: use frontends for LaTeX and VC logs
10024
10025 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10026
10027         * LaTeX.h: yet another std:: that Allan forgot.
10028
10029         * Variables.C (set): renamed from isset(), because this clashes
10030         with some HP-UX macros (grr).
10031
10032 2001-02-06  Allan Rae  <rae@lyx.org>
10033
10034         * LaTeX.h: Another bug fix.  Missing std:: this time.
10035
10036 2001-02-04  Allan Rae  <rae@lyx.org>
10037
10038         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
10039         floats problem. I've left it commented out because it's not quite
10040         correct.  It should also test that the current object is a table or
10041         figure inset.  But I haven't gotten around to figuring out how to do
10042         that.  I *think* it'll be something like: "table" == inset.type()
10043
10044         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
10045         bool.
10046
10047 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
10048
10049         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
10050         all the citation/databases/styles in the auxilary file.
10051         (run): Rerun latex if there was a babel language error.
10052
10053 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
10054
10055         * text.C (Backspace): Preserve the font when changing newline char
10056         with a space.
10057         (BreakParagraph): If the cursor is before a space, delete the space.
10058
10059         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
10060
10061 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
10062
10063         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
10064         new argument (code).
10065         (ChangeCitationsIfUnique): New method.
10066
10067         * paragraph.C (GetPositionOfInset): Handle bibkey.
10068
10069 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10070
10071         * BufferView_pimpl.h: change type of Position::par_pos to
10072         LyXParagraph::size_type.
10073
10074 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
10075
10076         * BufferView_pimpl.C (savePosition, restorePosition): Write
10077         messages to minibuffer.
10078
10079 2001-01-28  José Matos  <jamatos@fep.up.pt>
10080
10081         * buffer.C (makeDocBookFile): adds support for document language.
10082         A silly restriction on the name of LatexCommand types where removed.
10083         Added support for CDATA sections, allows to chars unescaped, used
10084         among others in code, to avoid escape < and >.
10085
10086 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
10087
10088         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
10089         saved positions instrad of a stack. Furthermore, a position is
10090         stored using paragraph id/paragraph position.
10091
10092         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
10093         Remove LFUN_REF_BACK.
10094
10095 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
10096
10097         * converter.C (dvipdfm_options): New method.
10098
10099 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
10100
10101         * vspace.C (isValidLength): Fix for empty input string.
10102
10103 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10104
10105         * LyXAction.C (init): change description of LFUN_FIGURE to
10106         "Insert Graphics"
10107
10108 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10109
10110         * LaTeX.C: add using directive
10111
10112 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
10113
10114         * MenuBackend.C (expand): Fix the sorting of the formats.
10115
10116 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
10117
10118         * lyx_main.C: tiny error message fix
10119
10120 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10121
10122         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
10123         calling fl_initialize(). This fixes the problem with ',' as
10124         decimal separator in text files.
10125
10126 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
10127
10128         * trans.C (process): Fix the keymap bug.
10129
10130 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
10131
10132         * LaTeX.C (scanAuxFiles): New method. Provides support for
10133         multiple bibliographies (when using the bibtopic/bibunits pacakges).
10134         (scanLogFile) Scan for "run BibTeX" messages.
10135
10136         * buffer.C (makeLaTeXFile): Do not load the ae package when using
10137         OT1 font encoding. Also, load the aecompl package if the ae
10138         package is loaded.
10139
10140         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
10141
10142 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10143
10144         * texrow.C (increasePos): turn two error messages into debug
10145         messages.
10146
10147 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
10148
10149         * LaTeX.C (scanAux): Handle the \@input macro.
10150         (runBibTeX): Use scanAux().
10151
10152         * language.C (latex_options_): New field.
10153
10154         * LaTeXFeatures.C (getMacros): Add language macros.
10155
10156         * buffer.C (makeLaTeXFile): Small fix.
10157
10158 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10159
10160         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
10161
10162         * text2.C: add a using directive.
10163
10164 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
10165
10166         * BufferView2.C:
10167         * lyx_gui_misc.h:
10168         * lyxfr1.C:
10169         * lyxfunc.C: kill LyXBell.
10170
10171 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
10172
10173         * text.C (IsBoundary): Remove the error message
10174
10175         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
10176
10177         * lyxrc.C (setDefaults): Correct initialization value for
10178         font_norm_type.
10179
10180 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
10181
10182         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
10183         gotoError().
10184
10185         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
10186         and GotoNextNote().
10187
10188         * src/LyXAction.C: Added reference-next.
10189
10190         * text.C (InsertChar): Use contains instead of strchr.
10191
10192         * lyx_cb.C (MenuInsertLabel): Enable default value code.
10193
10194 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
10195
10196         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
10197         alignment commands (when needed).
10198
10199         * text.C (InsertChar): Add ':' to number separator chars.