]> git.lyx.org Git - lyx.git/blob - src/ChangeLog
Use the dispatch_result wrapper class DispatchResult to remove
[lyx.git] / src / ChangeLog
1 2003-09-18  Angus Leeming  <leeming@lyx.org>
2
3         * cursor.[Ch]: use the dispatch_result wrapper class DispatchResult to remove
4         #include "insets/insetbase.h" from cursor.h.
5
6 2003-09-18  Angus Leeming  <leeming@lyx.org>
7
8         * paragraph.[Ch] (insetAllowed): use the InsetOld::Code wrapper class
9         InsetOld_code to remove #include "inset.h".
10
11         * iterators.C: add #include "insets/inset.h"
12
13 2003-09-16  Martin Vermeer  <martin.vermeer@hut.fi>
14
15         * BufferView.C: remove more locking stuff that apparently doesn't
16         do anything sensible.
17
18 2003-09-16  André Pönitz  <poenitz@gmx.net>
19
20         * paragraph.[Ch]:
21         * paragraph_pimpl.[Ch]: un-pimpl Paragraph::(Pimpl::)text for a >10%
22           performance boost.
23
24 2003-09-16  Angus Leeming  <leeming@lyx.org>
25
26         * lyxfont.h (LyXFont_size): a wrapper class for LyXFont::FONT_SIZE.
27
28         * paragraph.[Ch] (highestFontInRange): use LyXFont_size as function
29         arg/return type.
30
31         * paragraph.h: remove #include "lyxfont.h". Forward declare LyXFont_size.
32
33 2003-09-16  Angus Leeming  <leeming@lyx.org>
34
35         * paragraph.C (IsInsetChar): new function in namespace anon, moved out of
36         support/textutils.h.
37         (isWord): move the contents of support/textutils.h's IsWordChar here.
38
39         * buffer.C:
40         * lyxfind.C:
41         * rowpainter.C:
42         * text.C:
43         * text2.C: add #include "paragraph.h".
44
45         * rowpainter.C:
46         * text.C: replace IsInsetChar(c) with a direct test of Paragraph::META_INSET.
47
48 2003-09-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
49
50         * main.C: 
51         * lyx_main.C: 
52         * lyx_cb.C: 
53         * buffer.C: 
54         * LaTeX.C: use namespace alias for lyx::support::os
55
56 2003-09-16  Angus Leeming  <leeming@lyx.org>
57
58         * bufferparams.C:
59         * bufferview_funcs.C:
60         * factory.C:
61         * lyxfunc.C:
62         * paragraph_pimpl.C:
63         * rowpainter.C:
64         * text.C: add #include "LColor.h".
65
66 2003-09-16  Angus Leeming  <leeming@lyx.org>
67
68         * lyxfont.[Ch]: (setFamily, setSeries, setShape, setSize, setEmph, setUnderbar,
69         setNoun, setNumber, setColor, setLanguage): no longer return LyXFont &.
70         Store the FontBits::color variable as an int rather than as an LColor::color
71         so that we can move LColor.h out of the lyxfont.h header file.
72
73         * rowpainter.C (paintAppendixStart, paintPageBreak, paintLengthMarker):
74         LyXFont::setColor, decSize no longer return a LyXFont &, so cannot string
75         calls together.
76
77         * lyxrc.C: add #include "LColor.h".
78
79 2003-09-15  Angus Leeming  <leeming@lyx.org>
80
81         * bufferparams.[Ch]: store the pimpl_ as a copied_ptr, rather than as a cow_ptr.
82
83 2003-09-15  Angus Leeming  <leeming@lyx.org>
84
85         * LColor.h: add an EnumLColor wrapper for LColor::color.
86
87         * lyxfont.[Ch] (color, setColor, realColor):
88         * lyxtext.h, text.C (backgroundColor):
89         pass EnumLColor args to/from the functions, rather than LColor::color ones.
90
91         * lyxfont.h:
92         * lyxtext.h: forward declare EnumLColor.
93
94         * lyx_main.C: add #include "LColor.h".
95
96 2003-09-15  Angus Leeming  <leeming@lyx.org>
97
98         * .cvsignore: add lyx-gtk.
99
100 2003-09-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
101
102         * Chktex.C
103         * LaTeX.C
104         * LaTeXFeatures.C
105         * ParagraphParameters.C
106         * Spacing.C
107         * buffer.C
108         * bufferparams.C
109         * bufferview_funcs.C
110         * chset.C
111         * counters.C
112         * funcrequest.C
113         * lyxfont.C
114         * lyxgluelength.C
115         * lyxlength.C
116         * paragraph.C
117         * paragraph_funcs.C
118         * text3.C
119         * vc-backend.C: remove usage of STRCONV
120
121 2003-09-15  Angus Leeming  <leeming@lyx.org>
122
123         * rowpainter.C (paintLengthMarker, paintPageBreak, paintAppendixStart):
124         explicitly define the color passed to the painter.
125
126 2003-09-15  Angus Leeming  <leeming@lyx.org>
127
128         * bufferparams.C (BufferParams): reorder member initializers to avoid
129         compiler warning.
130
131 2003-09-15  Alfredo Braunstein  <abraunst@libero.it>
132
133         * CutAndPaste.C (pasteSelection): remove an outdated #warning
134         * text.C (updateRowPositions): remove an unusual nop
135
136 2003-09-12  André Pönitz  <poenitz@gmx.net>
137
138         * BufferView_pimpl.C:
139         * Bullet.C:
140         * layout.h:
141         * lyxfunc.C:
142         * lyxlayout.[Ch]:
143         * lyxtextclass.C:
144         * rowpainter.C:
145         * text.C:
146         * text2.C:
147         * Counters.[Ch]: finish the 'automatic counters' job
148
149 2003-09-12  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
150
151         * aspell.C: include <boost/assert.cpp> (compile fix)
152
153 2003-09-10  Rob Lahaye  <lahaye@snu.ac.kr>
154
155         * boost.C (assertion_failed): use lyx::support::abort instead of
156         assert.
157
158 2003-09-10  Angus Leeming  <leeming@lyx.org>
159
160         * Makefile.am (lyx_SOURCES): replace ParagraphList.h and RowList.h with their
161         _fwd progeny.
162
163 2003-09-09  Angus Leeming  <leeming@lyx.org>
164
165         134 files throughtout the source tree: replace 'using namespace abc;'
166         directives with the appropriate 'using abc::xyz;' declarations.
167
168 2003-09-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
169
170         * boost.C (emergencyCleanup): moved here from LAssert.c
171         (assertion_failed): new function, called by BOOST_ASSERT
172
173         * several files: change Assert to BOOST_ASSERT
174
175 2003-09-09  Angus Leeming  <leeming@lyx.org>
176
177         * buffer.[Ch]: Add an Impl class and move Buffer's member
178         variables into it. As a result move several header files out of
179         buffer.h.
180
181         Add header files to lots of .C files all over the tree as a result.
182
183 2003-09-09  Angus Leeming  <leeming@lyx.org>
184
185         * buffer.[Ch]: make Buffer's member variables private. Add
186         accessor functions.
187
188         Lots of changes all over the tree as a result.
189
190 2003-09-08  Angus Leeming  <leeming@lyx.org>
191
192         * graph.C: #include <config.h>.
193
194 2003-09-08  Angus Leeming  <leeming@lyx.org>
195
196         * BranchList.C:
197         * BufferView.C:
198         * BufferView_pimpl.C:
199         * CutAndPaste.C:
200         * DepTable.C:
201         * LaTeX.C:
202         * LaTeXFeatures.C:
203         * LyXAction.C:
204         * MenuBackend.C:
205         * TextCache.C:
206         * aspell.C:
207         * buffer.C:
208         * bufferlist.C:
209         * changes.C:
210         * chset.C:
211         * converter.C:
212         * counters.C:
213         * debug.C:
214         * graph.C:
215         * ispell.C:
216         * lyx_cb.C:
217         * lyxfind.C:
218         * lyxfunc.C:
219         * lyxlex_pimpl.C:
220         * lyxrc.C:
221         * lyxrow.C:
222         * paragraph.C:
223         * rowpainter.C:
224         * texrow.C:
225         * text.C:
226         * text2.C:
227         * toc.C: remove redundant using directives.
228
229 2003-09-07  Angus Leeming  <leeming@lyx.org>
230
231         * LaTeXFeatures.h: remove #include "support/types.h".
232         * ToolbarBackend.h: remove #include <algorithm>.
233         * changes.h: remove #include <ctime>.
234         * debug.h: remove #include <iosfwd>.
235         * graph.h: remove #include "support/std_string.h".
236         * lyx_main.h: remove #include <csignal>.
237         * lyxlex_pimpl.h: remove #include <fstream>.
238         * sgml.h: remove #include <algorithm>, <utility>.
239         * toc.h: remove #include "support/std_ostream.h". Add #include <iosfwd>.
240
241 2003-09-07  Angus Leeming  <leeming@lyx.org>
242
243         * vspace.[Ch] (length): returns a const & to a LyXGlueLength.
244
245         * converter.h: forward declare LatexRunParams.
246         * encoding.h: remove #include "lyxrc.h".
247         * lyxtext.h: remove #include "LColor.h".
248         * lyxtextclass.h: remove #include "support/types.h".
249         * trans.h: remove #include "tex-accent.h".
250         * trans_mgr.h: remove #include "tex-accent.h".
251         * insets/inset.h: remove #include "support/types.h", <vector>.
252         * insets/insetcollapsable.h: remove #include "LColor.h".
253         * insets/insetinclude.h: remove #include "dimension.h".
254         * insets/insetlatexaccent.h: remove #include "dimension.h".
255         * insets/insetoptarg.h:: remove #include "insettext.h".
256         * insets/insettext.h: remove #include "dimension.h", <boost/shared_ptr.hpp>
257
258         * insets/renderers.h: add #include "dimension.h".
259         * insets/updatableinset.h: add #include "support/types.h".
260
261         * many .C files: Associated changes.
262
263 2003-09-06  Angus Leeming  <leeming@lyx.org>
264
265         * Bullet.[Ch]: factorize all those #ifdef ENABLE_ASSERTIONS to just one,
266         inside testInvariant.
267
268         * PrinterParams.C: new file.
269         * PrinterParams.[Ch]: move the function bodies out of line.
270
271 2003-09-06  Angus Leeming  <leeming@lyx.org>
272
273         * ParagraphParameters.h: forward declare ParameterStruct rather than
274         including its header file.
275         (depth): moved out-of-line.
276
277 2003-09-06  Angus Leeming  <leeming@lyx.org>
278
279         * BufferView_pimpl.h:
280         * kbmap.h:
281         * kbsequence.h:
282         * lyxfunc.h: forward declare LyXKeySym rather than
283         #include "frontends/LyXKeySym.h".
284
285         * BufferView_pimpl.C:
286         * kbmap.C:
287         * kbsequence.C:
288         * lyxfunc.C: associated changes.
289
290 2003-09-06  Angus Leeming  <leeming@lyx.org>
291
292         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
293         As a result, can remove the #include "insets/inset.h" from BufferView.h
294
295 2003-09-06  Angus Leeming  <leeming@lyx.org>
296
297         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
298         As a result, can remove the #include "insets/inset.h" from BufferView.h
299
300 2003-09-06  Angus Leeming  <leeming@lyx.org>
301
302         * buffer_funcs.C:
303         * buffer.h:
304         * bufferlist.C:
305         * BufferView.C:
306         * bufferview_funcs.C:
307         * BufferView_pimpl.C:
308         * CutAndPaste.C:
309         * lyx_cb.C:
310         * lyxfunc.C:
311         * paragraph.h:
312         * ParagraphParameters.C:
313         * tabular.C:
314         * text3.C:
315         * toc.C:
316         * undo_funcs.C:
317         * frontends/controllers/ControlDocument.C:
318         * insets/insetcaption.C: rearrange the #includes into some sort of
319         coherent order.
320
321         * buffer.h: remove #includes ErrorList.h, undo.h
322
323 2003-09-06  Angus Leeming  <leeming@lyx.org>
324
325         * support/types.h: add a 'depth_type' typedef, used to store the
326         nesting depth of a paragraph.
327
328         * paragraph.h:
329         * ParameterStruct.h: use this lyx::depth_type typedef rather than
330         defining explicitly.
331
332         * buffer.h:
333         * paragraph_funcs.h:
334         * ParagraphParameters.h:
335         * sgml.h: use lyx::depth_type rather than Paragraph or
336         ParameterStruct's depth_type.
337
338         * buffer.h
339         * paragraph_funcs.h: no need to #include paragraph.h anymore.
340
341         * BufferView.C:
342         * BufferView_pimpl.C:
343         * CutAndPaste.C:
344         * ParagraphParameters.C:
345         * buffer_funcs.C:
346         * bufferlist.C:
347         * bufferview_funcs.C:
348         * lyx_cb.C:
349         * lyxfunc.C:
350         * tabular.C:
351         * text3.C:
352         * toc.C:
353         * undo_funcs.C:
354         * frontends/LyXView.C:
355         * frontends/controllers/ControlDocument.C:
356         * frontends/controllers/ControlErrorList.C:
357         * insets/insetbibitem.C:
358         * insets/insetbranch.C:
359         * insets/insetcaption.C:
360         * insets/insetcollapsable.C:
361         * insets/insetenv.C:
362         * insets/insetert.C:
363         * insets/insetfloat.C:
364         * insets/insetfoot.C:
365         * insets/insetfootlike.C:
366         * insets/insetnewline.C:
367         * insets/insetquotes.C:
368         * insets/insettabular.C:
369         * insets/insettext.C:
370         * insets/insetwrap.C: must now explicitly #include "paragraph.h".
371
372         * frontends/controllers/ControlChanges.C: #include "changes.h".
373
374 2003-09-06  Angus Leeming  <leeming@lyx.org>
375
376         * ParagraphList_fwd.h: new file, forward-declaring Paragraph rather than
377         #including paragraph.h.
378
379         * ParagraphList.h:
380         * RowList.h: deleted. Superfluous.
381
382         * CutAndPaste.h:
383         * iterators.h:
384         * lyxcursor.h:
385         * lyxtext.h:
386         * text_funcs.h:
387         * undo.h:
388         * undo_funcs.h:
389         * insets/inset.h:
390         * insets/insettext.h: use ParagraphList_fwd.h rather than ParagraphList.h.
391
392         * paragraph.h: don't forward declare ParagraphList.
393
394         * buffer.h:
395         * paragraph_funcs.h: #include ParagraphList_fwd.h and paragraph.h
396         rather than ParagraphList.h. paragraph.h is still needed for the
397         Paragraph::depth_type parameters.
398
399         * textcursor.h: enable it to compile stand-alone in light of the
400         above changes.
401
402         * bufferview_funcs.C:
403         * iterators.C:
404         * lyxfunc.C:
405         * lyxrow_funcs.C:
406         * paragraph.C:
407         * rowpainter.C:
408         * text.C:
409         * text2.C:
410         * text3.C:
411         * text_funcs.C:
412         * textcursor.C:
413         * undo.C:
414         * frontends/controllers/ControlParagraph.C:
415         * frontends/controllers/ControlTabular.C:
416         * insets/insetmarginal.C:
417         * insets/insetminipage.C:
418         * insets/insetnote.C:
419         * insets/insetoptarg.C: add header files needed to compile again.
420
421 2003-09-06  Angus Leeming  <leeming@lyx.org>
422
423         * RowList_fwd.h: new file, forward-declaring Row rather than
424         #including lyxrow.h.
425
426         * lyxrow_funcs.h:
427         * lyxtext.h:
428         * paragraph.h:
429         * insets/insettext.h: use it instead of RowList.h
430
431         * bufferview_funcs.C:
432         * lyxfunc.C:
433         * lyxrow_funcs.C:
434         * paragraph.C:
435         * rowpainter.C:
436         * text.C:
437         * text2.C:
438         * text3.C: #include "RowList.h".
439
440 2003-09-05  Angus Leeming  <leeming@lyx.org>
441
442         * factory.C (createInset):
443         * vspace.C (c-tor): replace sscanf call with an istringstream.
444         * ispell.C: re-add missing HP/UX headers.
445         * lyxserver.C: re-add missing  os2 headers.
446
447 2003-09-05  Martin Vermeer  <martin.vermeer@hut.fi>
448
449         * BranchList.C:
450         * graph.C:
451         * ispell.C:
452         * lastfiles.C:
453         * lyx_cb.C:
454         * lyxserver.C:
455         * texrow.C:
456         * text3.C: re-add missing system headers, needed for 2.95.2.
457
458 2003-09-05  Angus Leeming  <leeming@lyx.org>
459
460         Changes most place everywhere due to the removal of using directives
461         from support/std_sstream.h.
462
463 2003-09-05  Angus Leeming  <leeming@lyx.org>
464
465         Replace LString.h with support/std_string.h,
466         Lsstream.h with support/std_sstream.h,
467         support/LIstream.h with support/std_istream.h,
468         support/LOstream.h with support/std_ostream.h.
469
470         Changes resulting throughout the tree.
471
472 2003-09-05  Angus Leeming  <leeming@lyx.org>
473
474         * sgml.h: ensure that the header file can be compiled stand-alone.
475         * *.C: strip out redundant #includes. (320 in total.)
476
477 2003-09-04  Angus Leeming  <leeming@lyx.org>
478
479         * LaTeXFeatures.C (getMacros): move the output of the preamble_snippets
480         here (from getPackages).
481
482         * debug.[Ch]: add a new EXTERNAL tag.
483
484 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
485
486         * text2.C (cursorEnd): simplify
487         (setCursor): adjust
488         (getColumnNearX): adjust
489
490         * text.C (computeBidiTables): adjust
491         (fill): adjust
492
493         * rowpainter.C (paintChars): adjust
494         (paintSelection): adjust
495         (paintChangeBar): adjust
496         (paintText): adjust
497
498         * lyxrow_funcs.C (lastPrintablePos): remove, all users now call
499         lastPos instead.
500         (numberOfSeparators): adjust
501
502 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
503
504         * LyXAction.C:
505         * box.[Ch]:
506         * lfuns.h:
507         * lyxfunc.C:
508         * text3.C: Restricts the mouse click functionality
509         of insets like bibtex, include, toc and floatlist to the visible
510         button, and allows the use of LFUN_INSET_SHOW_DIALOG to bring
511         up the dialogs. Cursor has to be in front of the inset (i.e.
512         start of row) for this to function.
513
514 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
515
516         * bufferview_funcs.C (currentState): output row information
517
518 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
519
520         * bufferview_funcs.C (currentState): output paragraph position
521
522 2003-09-04  Angus Leeming  <leeming@lyx.org>
523
524         * FloatList.h: move out #include "Floating.h".
525         * LaTeX.h: move out #include "DepTable.h".
526         * LyXAction.h: move out #include "funcrequest.h".
527         * buffer.h: move out #include "author.h", "iterators.h".
528         * bufferparams.h: move out #include "LaTeXFeatures.h", "texrow.h".
529         * lyx_main.h: move out #include "errorlist.h".
530         * lyxfunc.h: move out #include "FuncStatus.h".
531         * lyxtext: move out #include "lyxcursor.h".
532         * paragraph_pimpl.h: move out #include "counters.h".
533
534 2003-09-03  Angus Leeming  <leeming@lyx.org>
535
536         * LaTeXFeatures.[Ch]: replace the externalPreambles string with a
537         preamble_snippets list, enabling us to add snippets to the preamble only
538         if the snippet was not there already.
539
540 2003-09-04  Angus Leeming  <leeming@lyx.org>
541
542         * Chktex.C, converter.C, lyx_cb.C: add #include "support/lyxlib.h".
543
544 2003-09-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
545
546         * lyxfunc.C (dispatch): if fitCursor did something be sure to
547         update
548
549 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
550
551         * BranchList.C: point fix, earlier forgotten
552
553 2003-09-02  Angus Leeming  <leeming@lyx.org>
554
555         * box.C (contains): renamed from 'contained' after a fantastic
556         amount of hot air.
557
558 2003-09-02  John Levon  <levon@movementarian.org>
559
560         * BufferView.C:
561         * lyxcursor.h:
562         * lyxcursor.C:
563         * lyxfunc.C:
564         * lyxfunc.h: remove cursor.i[x]y(), it no longer differs
565
566 2003-09-02  John Levon  <levon@movementarian.org>
567
568         * text2.C: simplification of cursorEnd(), including partial
569         fix for bug 1376
570
571 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
572
573         * buffer.C (readFile): add a space
574
575 2003-09-02  Alfredo Braunstein  <abraunst@libero.it>
576
577         * BufferView_pimpl.C (update): remove bogus fitCursor() call
578
579 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
580
581         * buffer.C (readFile): new function, take a filename and a
582         ParagraphList::iterator
583         (readFile): adjust
584         (readFile): adjust, make it private. don't use setStream, make
585         lyx2lyx use a temporary file. Some simplificaton. Make the Alerts
586         always contain the filename.
587
588         * BufferView.C (insertLyXFile): simplify and make it work for
589         gzipped files.
590
591 2003-08-30  John Levon  <levon@movementarian.org>
592
593         * Makefile.am: fix dist (from Kayvan)
594
595 2003-08-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
596
597         * most files: change to use const Buffer refs
598
599 2003-08-27  André Pönitz  <poenitz@gmx.net>
600
601         * BufferView.[Ch]: remove getParentText, implement getParentLanguage
602         on top of ownerPar().
603
604 2003-08-27  John Levon  <levon@movementarian.org>
605
606         * funcrequest.C: properly initialise POD members
607
608 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
609
610         * lyxtext.h (top_y): move top_y from here
611         * text.C:
612         * text2.C:
613         * text3.C:
614         * BufferView.[Ch]:
615         * BufferView_pimpl.[Ch]: to here
616         * frontends/screen.C:
617         * insets/insettabular.C:
618         * insets/insettext.C: adjust
619         * rowpainter.[Ch] (paintRows): remove LyXText & argument
620
621 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
622
623         * BufferView.[Ch]:
624         * BufferView_pimpl.[Ch] (updateInset): add an InsetOld * argument
625
626 2003-08-26  André Pönitz  <poenitz@gmx.net>
627
628         * paragraph_func.[Ch] (outerPar): new function
629
630         * paragraph.C:
631         * paragraph_funcs.C:
632         * paragraph_funcs.h:
633         * paragraph_pimpl.C:
634         * text2.C: remove Inset::par_owner
635
636 2003-08-25  Martin Vermeer  <martin.vermeer@hut.fi>
637
638         * lyxrow_funcs.C:
639         * lyxtext.h:
640         * text.C:
641         * text2.C: eliminates the needFullRow/display() stuff
642         altogether, putting the logic in metrics/draw in the insets.
643
644 2003-08-25  Alfredo Braunstein  <abraunst@libero.it>
645
646         * text2.C (redoParagraphInternal, redoParagraphs):
647         * text.C (redoParagraph): add a call to updateRowPositions at the
648         end of each 'metrics-like' call. Remove all others.
649         (getRow): remove the 'y-computing' version.
650         (getRowNearY): do not compute nor return the real y. Solve the
651         'y < 0' problem and simplify.
652
653 2003-08-22  Angus Leeming  <leeming@lyx.org>
654
655         * *.[Ch]: clean-up of licence and author blurbs.
656         Also move config.h out of a few .h files and into a few .C files.
657
658 2003-08-22  André Pönitz  <poenitz@gmx.net>
659
660         * lyxrow.[Ch]: add x_ and *fill_ members
661
662         * lyxtext.h:
663         * text.C:
664         * rowpainter.C:
665         * text2.C: adjust/remove prepareToPrint() calls
666
667 2003-08-22  André Pönitz  <poenitz@gmx.net>
668
669         * lyxrow.[Ch]: add  end_ member
670
671         * lyxrow_funcs.C: use LyXRow::end_
672
673         * lyxtext.h (singleWidth): add LyXFont parameter
674
675         * rowpainter.C:
676         * text2.C: adjust LyXText::singleWidth() calls
677
678         * text.C (redoParagraph): simplify row breaking logic
679
680
681 2003-08-19  André Pönitz  <poenitz@gmx.net>
682
683         * funcrequest.C: initialize button_ member
684
685         * text3.C:
686         * rowpainter.[Ch]: interface consolidation
687
688 2003-08-18  André Pönitz  <poenitz@gmx.net>
689
690         * BufferView.C:
691         * BufferView_pimpl.C:
692         * lyxfind.C:
693         * paragraph_funcs.C:
694         * rowpainter.C:
695         * text3.C: remove LyXScreen::draw() and fitCursor calls
696
697         * BranchList.h: remove spurious semicolons
698
699         * MenuBackend.C: fix branchlist related crash
700
701 2003-08-17  Martin Vermeer  <martin.vermeer@hut.fi>
702
703         * BranchList.[Ch]:
704         * InsetList.[Ch]:
705         * LColor.[Ch]:
706         * LyXAction.C:
707         * Makefile.am:
708         * MenuBackend.[Ch]:
709         * bufferparams.[Ch]:
710         * factory.C:
711         * lfuns.h:
712         * lyxfunc.C:
713         * text3.C: implements the 'branch inset'
714         idea. This allows the output of various versions of a document
715         from a single source version, selectively outputing or suppressing
716         output of parts of the text.
717         This implementation contains a 'branch list editor' in a separate
718         tab of the document settings dialog. Branches are user definable
719         and have a "display colour" to distinguish them on-screen.
720
721         ColorHandler was somewhat cleaned up.
722         (1) make possible a dynamically growing LColor list by allowing
723         the graphic context cache to grow along (vector);
724         (2) eliminate an IMHO unnecessary step in colour allocation.
725
726 2003-08-15  Kayvan A. Sylvan <kayvan@sylvan.com>
727
728         * BufferView_pimpl.C: compile fix
729
730 2003-08-15  André Pönitz  <poenitz@gmx.net>
731
732         * rowpainter.C: remove extra metrics calls
733
734         * lyxtext.h: merge the two constructors into a single one,
735           pass reference to owner's par list
736
737         * BufferView_pimpl.C:
738         * text.C:
739         * text2.C: adjust
740
741 2003-08-15  André Pönitz  <poenitz@gmx.net>
742
743         * lyxrow_funcs.[Ch]:
744         * lyxtext.h:
745         * paragraph.h:
746         * paragraph_funcs.C:
747         * rowpainter.C:
748         * text.C:
749         * text2.C:
750         * text3.C:
751         * text_funcs.C: split LyXText::rowlist_ into individual
752         Paragraph::rows_ chunks
753
754         * BufferView.[Ch]:
755         * BufferView_pimpl.[Ch]:
756         * lyxfind.C:
757         * lyxtext.h:
758         * text3.C: remove toggleSelection()
759
760 2003-08-12  Michael Schmitt  <michael.schmitt@teststep.org>
761
762         * bufferlist.C: beautify two alerts (shorter text of buttons)
763         * buffer.C: Remove redundant ' ' from message
764         * tabular.h:
765         * tabular.C: rename LYX_VALIGN_CENTER" to LYX_VALIGN_MIDDLE";
766         rename M_VALIGN_CENTER to M_VALIGN_MIDDLE;
767         rename VALIGN_CENTER to VALIGN_MIDDLE
768
769 2003-08-11  André Pönitz  <poenitz@gmx.net>
770
771         * lyxtext.h (getPar):
772         * text.C: new function
773
774 2003-08-11  André Pönitz  <poenitz@gmx.net>
775
776         * Makefile.am:
777         * tracer.[Ch]: remove unneeded files
778
779         * InsetList.[Ch]: remove resizeInsetsLyXText()
780
781         * lyxtext.h:
782         * text.C:
783         * text2.C:
784         * text3.C: merge insertParagraphs() and appendParagraph()
785         remove breakAgain(), update()
786
787         * BufferView_pimpl.[Ch]:
788         * bufferview_funcs.[Ch]:
789         * lyxfunc.C:
790         * paragraph.[Ch]:
791         * rowpainter.C:
792         * tabular.C: adjust after text & InsetList changes.
793
794 2003-08-08  André Pönitz  <poenitz@gmx.net>
795
796         * text.C (insertChar, backspace): replace rowlist fiddling
797         with rebreak of full par
798
799         * lyxtext.h:
800         * text.C (breakAgainOneRow, redoHeightOfParagraph,
801         checkParagraph, updateInset): removed
802
803 2003-08-07  André Pönitz  <poenitz@gmx.net>
804
805         * paragraph.C:
806         * text3.C: merge some LFUN handlers, remove dead code
807
808 2003-08-06  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
809
810         * .cvsignore: add lyx-xforms, lyx-qt, version.C-tmp and stamp-version
811
812 2003-08-05  Alfredo Braunstein  <abraunst@libero.it>
813
814         * text2.C (DEPM): fix part of bug 1255 and 1256
815
816 2003-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
817
818         * BufferView_pimpl.C (workAreaDispatch): change to use
819         LyXView::dispatch instead of BufferView::Pimpl::dispatch for lfuns
820         that are no mouse related.
821
822 2003-08-05  André Pönitz  <poenitz@gmx.net>
823
824         * BufferView.[Ch]:
825         * BufferView_pimpl.[Ch]:
826         * bufferview_funcs.C:
827         * text2.C:
828         * text3.C: rip out "deep update"
829
830         * textcursor.[Ch] (last_sel_cursor): remove unused member
831
832 2003-08-04  André Pönitz  <poenitz@gmx.net>
833
834         * BufferView.[Ch]:
835         * BufferView_pimpl.[Ch]:
836         * ParagraphParameters.C:
837         * bufferview_funcs.C:
838         * lyx_cb.C:
839         * lyxfind.C:
840         * lyxfunc.C:
841         * text.C:
842         * text2.C:
843         * text3.C: replace "complicated" BufferView::update(...) calls with
844         simpler ones.
845
846         * BufferView.[Ch]: remove now unneeded BufferView::UpdateCodes
847
848 2003-08-02  Kayvan Sylvan  <kayvan@sylvan.com>
849
850         * Makefile.am (lyx_SOURCES): add paper.h
851
852 2003-08-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
853
854         * Makefile.am: move things around so that both lyx-qt and
855         lyx-xforms can be built (according to --with-frontend). Then lyx
856         is a symbolic link to lyx-[firstfrontend]
857
858 2003-08-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
859
860         * Always use std::endl with lyxerr
861
862 2003-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
863
864         * BufferView_pimpl.C: _Always_ use std::endl with lyxerr
865
866 2003-08-01  André Pönitz  <poenitz@gmx.net>
867
868         * BufferView.[Ch]:
869         * BufferView_pimpl.[Ch]:
870         * lyxfunc.C:
871         * text3.C: merge BufferView::repaint() and BufferView::update()
872
873 2003-08-01  José Matos  <jamatos@lyx.org>
874
875         * buffer.[Ch]: file_format is no longer a buffer data element.
876
877 2003-08-01  André Pönitz  <poenitz@gmx.net>
878
879         * BufferView.C:
880         * lyxtext.h:
881         * text.C:
882         * text2.C: make redoParagraph more independent of current cursor
883
884         * lyxtext.h (need_update, needUpdate, postPaint, clearPaint):
885         * text.C:
886         * text2.C: remove unneeded members
887
888 2003-07-30  André Pönitz  <poenitz@gmx.net>
889
890         * paragraph.[Ch] (copyIntoMinibuffer): removed unused function
891
892         * paragraph.[Ch] (cutIntoMinibuffer, insertFromMinibuffer):
893           create a single function...
894
895         * paragraph_funcs.C (moveItem): ... here.
896
897         * text.C:
898           lyxtext.h (LyXText::workWidth(InsetOld*)) remove. unused.
899
900 2003-07-30  Martin Vermeer  <martin.vermeer@hut.fi>
901
902         * LColor.[Ch]: Add comment and greyedout logical colors.
903
904 2003-07-30  André Pönitz  <poenitz@gmx.net>
905
906         * tabular.C: don't use Assert too heavily. This crashes where it
907           shouldn't
908
909 2003-07-30  Alfredo Braunstein  <abraunst@libero.it>
910
911         * lyxfunc.C (dispatch): do not mark the buffer dirty if the action
912         is disabled (bug 1232)
913
914 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
915
916         * factory.C: limited 'arg' scope
917
918 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
919
920         * factory.C: fixed Note submenu issues
921
922 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
923
924         * factory.C: submenu for Note/Comment/Greyedout
925
926 2003-07-29  Alfredo Braunstein  <abraunst@libero.it>
927
928         * lyx_main.C (LyX):
929         * BufferView_pimpl.C (loadLyXFile): fix to bugs 1287 and 1297 + ws
930
931 2003-07-29  Martin Vermeer  <martin.vermeer@hut.fi>
932
933         * LaTeXFeatures.C:
934         * lyx_sty.[Ch]:h: Implement a newenvironment in preamble for
935         greyedout. Patch provided by Jürgen Spitzmüller.
936
937 2003-07-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
938
939         * kbmap.C (read): fix error message when reading bind files
940
941 2003-07-29  Angus Leeming  <leeming@lyx.org>
942
943         * BufferView.[Ch] (ChangeCitationsIfUnique): This function most
944         certainly does not do what it purports to do. I am doing it, and
945         us, a favour by killing it.
946
947 2003-07-28  José Matos  <jamatos@lyx.org>
948
949         * buffer.C (readBody, do_writeFile):
950         * paragraph.C(readParagraph): \end_document replaces \the_end.
951
952 2003-07-29  André Pönitz  <poenitz@gmx.net>
953
954         * BufferView.[Ch]:
955         * BufferView_pimpl.[Ch]:
956         * lyxfunc.C:
957         * text2.C:
958         * text3.C:
959         * textcursor.[Ch]: remove toggleToggle & Co
960
961 2003-07-28  José Matos  <jamatos@fep.up.pt>
962
963         * buffer.C (readParagraph):
964         * params_func (readParToken, readParagraph):
965         * paragraph.C (write): \layout -> \begin_layout.
966
967 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
968
969         * lyxlex_pimpl.C (setFile): clean up slightly.
970
971         * bufferparams.h: add compressed var
972
973         * buffer_funcs.C (readFile): adjust for LyXLex change
974         (newFile): ditto + simplify
975
976         * buffer.C (writeFile): handle writing of compressed files
977
978         * buffer.[Ch] (readFile): begin LyXLex here, remove one argument.
979         Check if the file is compressed and set a bufferparm if so.
980
981         * Makefile.am (lyx_LDADD): remove explicit -lz
982
983 2003-07-28  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
984
985         * buffer.C (do_writeFile, makeLaTeXFile, makeLinuxDocFile,
986         makeDocBookFile): put the real LyX version in the first line of
987         the file
988
989         * version.h:
990         * version.C.in: remove lyx_docversion
991
992         * tabular.C (write_attribute): add a template-based version to
993         write enums properly
994
995 2003-07-28  André Pönitz  <poenitz@gmx.net>
996
997         * lyxtext.h:
998         * text.C:
999         * text2.C:
1000         * text3.C: use doubles again for x-coordinates. They are needed.
1001
1002 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1003
1004         * messages.C (getLocaleDir): use lyx_localedir()
1005
1006         * lyxlex_pimpl.C (setFile): compress stuff
1007
1008         * buffer.C (writeFile): add some compression stuff
1009         (do_writeFile): new func, dont call expliti close... will this
1010         breake anything?
1011
1012         * Makefile.am (lyx_LDADD): add -lz
1013
1014 2003-07-28  José Matos  <jamatos@fep.up.pt>
1015
1016         * buffer.C: increment file format.
1017         * paragraph_funcs (readParagraph, readParToken):
1018         * paragraph.C (readParagraph): add \end_layout.
1019
1020 2003-07-27  Angus Leeming  <leeming@lyx.org>
1021
1022         * Makefile.am: remove special casing for configure-time setting of
1023         LYX_DIR, TOP_SRCDIR and LOCALEDIR.
1024
1025         * lyx_main.C (init): remove all Jean-Marc's magic setting of
1026         system_lyxdir, build_lyxdir and user_lyxdir into the support lib.
1027
1028 2003-07-26  André Pönitz  <poenitz@gmx.net>
1029
1030         * paragraph_func.[Ch]:
1031         * paragraph.C (realizeFont): inline it whereever it is used
1032
1033         * rowpainter.C:
1034         * text.C:
1035         * text2.C:
1036         * text3.C: remove Buffer * parameter from a bunch of get*Font functions
1037
1038
1039 2003-07-26  André Pönitz  <poenitz@gmx.net>
1040
1041         *       lyxtext.h:
1042         * text.C:
1043         * text2.C: get rid of LyXText::need_break_row
1044
1045 2003-07-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
1046
1047         * toc.[Ch]: put namespace toc inside namespace lyx
1048
1049         * MenuBackend.C (expandToc2): adjust for lyx::toc
1050         (expandToc): ditto
1051
1052         * lyxfunc.C (dispatch): adjust for lyx::find
1053
1054         * lyxfind.[hC]: get rid of namespace lyxfind introduce namespace
1055         lyx::find instead. Reorganize a bit.
1056         (LyXReplace): rename to replace
1057         (LyXFind): rename to find
1058
1059         * BufferView_pimpl.C (trackChanges): adjust for lyx::find
1060         (dispatch): ditto
1061
1062 2003-07-26  André Pönitz  <poenitz@gmx.net>
1063
1064         * text.C (setHeightOfRow): restrict scope of temporary variable
1065
1066         * paragraph_funcs.C (readParToken): remove USE_CAPTION  compatibility
1067           code (never has been used?)
1068
1069 2003-07-27  Asger Alstrup  <alstrup@local>
1070
1071         * text.C (fill): Optimise algorithm to exploit that we can reuse
1072         the LyXFont for many characters.
1073         (setHeightOfRow): Same thing.
1074         (rowBreakPoint): Same thing.
1075
1076 2003-07-26  Asger Alstrup  <alstrup@local>
1077
1078         * text2.C (metrics): change a brain-dead algorithm to a smarter one.
1079
1080         * text.C (singleWidth): Spurious font copying in hot-spot
1081         singleWidth avoided. Reorder tests for arabic for efficiency.
1082
1083         * text.C (fill): handle empty paragraphs better.
1084
1085 2003-07-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1086
1087         * ispell.C:
1088         * encoding.h: add includes
1089
1090         * lyxrc.C: remove reading of bind files
1091
1092         * lyx_main.C (init): setup bindings and menus only if we have a
1093         gui.
1094
1095         * kbmap.C (read): new method. Do the actual reading of bind
1096         files.
1097
1098         * converter.C (dvipdfm_options):
1099         * bufferparams.C:
1100         * lyxrc.C (read):
1101         (output): adapt PAPER_* enums.
1102
1103         * lyxrc.h: include paper.h instead of bufferparams.h (mucho lighter)
1104
1105         * bufferparams.h: remove paper-related enums from there
1106
1107         * paper.h: New file. A trivial header file to hold paper-related
1108         enums. It should later expand to contain many paper-related
1109         horrors access.
1110
1111         * lyxrc.C: declare extern displayTranslator
1112
1113 2003-07-27  José Matos  <jamatos@fep.up.pt>
1114
1115         * tabular.[Ch] (linuxdoc): add support for tables and figures
1116         (linuxdoc).
1117
1118 2003-07-27  José Matos  <jamatos@fep.up.pt>
1119
1120         * buffer.[Ch] (makeLaTeXFile): changed name of arguments for
1121         consistency in both functions.
1122         * bufferlist.C (updateIncludedTeXfiles): change client to comply.
1123
1124 2003-07-26  Asger Alstrup  <alstrup@local>
1125
1126         * rowpainter.C (paintRows): Change algorithm to work directly on
1127         the insets rather than asking every character in the document
1128         whether its an inset.
1129
1130 2003-07.26  Alfredo Braunstein  <abraunst@libero.it>
1131
1132         * buffer.C (openFileWrite): factorize some code
1133
1134 2003-07-26  Angus Leeming  <leeming@lyx.org>
1135
1136         * lyx_cb.C:
1137         * lyx_main.[Ch]: replace occurances of system_tempdir with
1138         os::getTmpDir().
1139
1140 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
1141
1142         * rename Inset to InsetOld
1143
1144 2003-07-25  Asger Alstrup  <alstrup@diku.dk>
1145
1146         * undo_funcs.h: Removed setCursorParUndo to simplify things a bit.
1147         Renamed setUndo family to recordUndo. Renamed FINISH to ATOMIC
1148         which I think is a bit clearer. EDIT is gone, since it was
1149         premature optimisation, and broken for mathed anyway.
1150         * undo_funcs.C (performUndoOrRedo): Cleaned up and made it work
1151         with cursor positioning in insets as well (math insets still do not
1152         work, but that's a different story anyway.) It mysteriously
1153         crashes sometimes with undo in the first paragraph, but I'm fairly
1154         confident that this is a compiler bug.
1155
1156 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
1157
1158         * paragraph.C (Paragraph): adjust for new clone return type
1159         (operator==): ditto
1160         (copyIntoMinibuffer): ditto
1161
1162 2003-07-25  Asger Alstrup  <alstrup@lyx.org>
1163
1164         * undo_funcs.C (textHandleUndo): Fix undo crash in first paragraph
1165         by not having a special case, and always doing a full rebreak of
1166         the document after undo.
1167
1168 2003-07-23  Angus Leeming  <leeming@lyx.org>
1169
1170         * factory.C (createInset): InsetExternal::setParams now takes a
1171         Buffer const * arg.
1172
1173 2003-07-23  Angus Leeming  <leeming@lyx.org>
1174
1175         * factory.C (createInset): changed interface to the external and
1176         graphics mailers' string2params functions.
1177
1178 2003-07-23  Angus Leeming  <leeming@lyx.org>
1179
1180         * factory.C (createInset): pass a
1181         Buffer const * parameter to InsetExternalMailer's string2params.
1182
1183 2003-07-22  John Levon  <levon@movementarian.org>
1184
1185         * Thesaurus.h: include the right aiksaurus header
1186
1187 2003-07-21  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1188
1189         * MenuBackend.C (expand): check menu shortcuts unconditionally
1190
1191 2003-07-21  Angus Leeming  <leeming@lyx.org>
1192
1193         * factory.C (createInset): pass a
1194         buffer_path parameter to InsetGraphicsMailer's string2params.
1195
1196 2003-07-21  Angus Leeming  <leeming@lyx.org>
1197
1198         * BufferView_pimpl.C (buffer):
1199         * buffer.C (d-tor):
1200         * lyx_main.C (LyX):
1201         * lyxfunc.C (dispatch):
1202         * lyxrc.C (setDefaults, read, output): use namespace lyx::graphics
1203         rather than the grfx shortcut.
1204
1205 2003-07-21  André Pönitz  <poenitz@gmx.net>
1206
1207         * rowpainter.C: remove unused variables
1208
1209         * tabular_funcs.C:
1210         * tabular_funcs.h: move to tabular.C
1211         * Makefile.am: adjust
1212
1213         * tabular.[Ch]: basic optical cleaning
1214
1215         * author.h: pass references, not values
1216
1217 2003-07-18  André Pönitz  <poenitz@gmx.net>
1218
1219         * lyxtext.h:
1220         * metricsinfo.C:
1221         * metricsinfo.h:
1222         * rowpainter.C:
1223         * text.C:
1224         * text2.C:
1225         * text3.C: two-phase drawing for InsetText and InsetTabular
1226         some float -> int changes.
1227
1228 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
1229
1230         * lyx_main.C: fix the fix
1231
1232 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
1233
1234         * lyx_main.C: fix a crash in batch mode if no files specified
1235         * converter.C: ws
1236
1237 2003-07-17  Alfredo Braunstein  <abraunst@libero.it>
1238
1239         * format.[Ch] (papersize): moved to BufferParams
1240         * converter.[Ch] (dvips_options): moved to BufferParams
1241         (dvipdfm_options): moved to anon namespace
1242         * bufferparams.[Ch]: added above functions.
1243
1244 2003-07-17  André Pönitz  <poenitz@gmx.net>
1245
1246         * lyxtext.h:
1247         * rowpainter.C:
1248         * text2.C: don't call inset->update() anymore
1249
1250         * metricsinfo.[Ch]: add convenience constructor
1251
1252 2003-07-16  André Pönitz  <poenitz@gmx.net>
1253
1254         * lyxcursor.[Ch]:
1255         * lyxfunc.[Ch]:
1256         * text.C:
1257         * text2.C: replace the LyXCursor::irow_ member with
1258          on-demand computation of the value
1259
1260 2003-07-16  John Levon  <levon@movementarian.org>
1261
1262         * lyxfunc.C: support LFUN_INSET_SETTINGS for Note
1263
1264 2003-07-15  André Pönitz  <poenitz@gmx.net>
1265
1266         * text.C:
1267         * text2.C: remove no more needed refresh_row
1268
1269 2003-07-15  André Pönitz  <poenitz@gmx.net>
1270
1271         * lyxtext.h:
1272         * rowpainter.C:
1273         * text2.C:
1274         * text3.C: refresh_status tristate -> need_update bool
1275
1276 2003-07-15  Alfredo Braunstein  <abraunst@libero.it>
1277
1278         * lyxtext.h (init): remove reinit argument (act as if always true)
1279         * text2.C: adjust to that
1280
1281 2003-07-14  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1282
1283         * bufferview_funcs.[Ch]: introduce function replaceSelection()
1284         * text3.C: use it to delete selections in some cases
1285         (bugs 441, 673, 702, 954).
1286
1287 2003-07-14  André Pönitz  <poenitz@gmx.net>
1288
1289         * rowpainter.[Ch]: reduce interface
1290
1291 2003-07-14  André Pönitz  <poenitz@gmx.net>
1292
1293         * BufferView_pimpl.C:
1294         * text2.C: adjust after removing unused BufferView * argument
1295
1296 2003-07-14  Alfredo Braunstein  <abraunst@libero.it>
1297
1298         * text2.C (init): fix a crash fired on resize
1299
1300 2003-07-11  Alfredo Braunstein  <abraunst@libero.it>
1301
1302         * buffer.[Ch]: added new closing signal
1303         * BufferView_pimpl.[Ch]: connect/disconnect to new signal
1304         * lyxfunc.C: removed BufferView::buffer(0) call now handled in
1305         BufferView::Pimpl via the closing the signal
1306
1307 2003-07-10  Alfredo Braunstein  <abraunst@libero.it>
1308
1309         * buffer.[Ch]: take out all bv-related from buffer
1310         * BufferView.C:
1311         * BufferView_pimpl.[Ch]: connect to new signals
1312         * CutAndPaste.C: removed useless asserts
1313         * bufferview_funcs.[Ch] (resizeInsets): moved from buffer
1314         * lyxvc.[Ch]:
1315         * vc-backend.[Ch]:
1316         * lyxfunc.C: moved view-related funciontality from vc here
1317         * paragraph.C: removed outdated comments
1318         * text.C: ws
1319
1320 2003-07-10  André Pönitz  <poenitz@gmx.net>
1321
1322         * BufferView_pimpl.C:
1323         * tabular.h:
1324         * tabular_funcs.C:
1325         * text.C:
1326         * text2.C: remove InsetText::InnerCache, clean up consequences
1327
1328 2003-07-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
1329
1330         * ispell.C: fix two typos in error messages
1331
1332 2003-07-08  Martin Vermeer  <martin.vermeer@hut.fi>
1333
1334         * Extend Note inset to other forms of annotation like Comment
1335         and Greyedout. Right button click gives dialog.
1336
1337         Files modified or added (+):
1338
1339         * insetnote.[Ch]
1340         * FormNote.[Ch]      +
1341         * ControlNote.[Ch]   +
1342         * form_note.fd       +
1343         * Makefile.am in frontends/xforms, frontends/xforms/forms,
1344         frontends/controllers
1345         * xforms/Dialogs.C
1346         * factory.C
1347
1348 2003-07-01  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1349
1350         * aspell.C: add missing namespace lyx::support
1351
1352 2003-07-07  Alfredo Braunstein  <abraunst@libero.it>
1353
1354         * BufferView.[Ch] (newFile): Add
1355         * BufferView_pimpl.[Ch] (newFile, connectBuffer, disconnectBuffer): Add
1356         * LaTeX.[Ch] (message): added this signal and use it
1357         * buffer.[Ch] (busy, message): added these signals and use them
1358         * buffer_funcs.[Ch]: rename parseErrors to bufferErrors
1359         * converter.C:
1360         * exporter.C:
1361         * format.C:
1362         * importer.C: use buffer signals instead of direct bv calling
1363         * lyx_cb.[Ch] (ShowMessage): removed
1364         * lyx_main.C:
1365         * lyxfunc.C:
1366         * paragraph_funcs.C:
1367         * text2.C: use buffer signals
1368
1369 2003-07-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
1370
1371         * introduce namespace lyx::graphics
1372
1373 2003-07-02  André Pönitz  <poenitz@gmx.net>
1374
1375         * BufferView_pimpl.C (workAreaDispatch): tell the FuncRequest who we are
1376
1377 2003-07-01  André Pönitz  <poenitz@gmx.net>
1378
1379         * text.C:
1380         * text2.C:
1381         * text3.C:
1382         * text_funcs.[Ch]:
1383         * textcursor.h:
1384         * lyxtext.h: shuffle pure paragraph/cursor related cursor movement from
1385           text*.C to text_func.C
1386
1387 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1388
1389         * introduce namespace lyx::support
1390
1391 2003-06-30  André Pönitz  <poenitz@gmx.net>
1392
1393         * Chktex.C:
1394         * funcrequest.C:
1395         * lyxtext.h:
1396         * text.C: re-enable --with-included-string
1397
1398 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1399
1400         * textcursor.C: add <config.h>
1401
1402         * text.C (getWord): remove const from word_location arg
1403
1404         * lyxvc.C (getLogFile): fix const type order
1405
1406         * lyxtext.h: remove const from word_location arg, add arg name
1407
1408         * lyxlayout.h: currect type on labeltype.
1409
1410         * importer.C: correct \file
1411
1412         * converter.C (intToFormat): use std:: on ret val, ws changes
1413
1414         * bufferlist.h: correct \file
1415
1416         * buffer.C (makeLinuxDocFile): fix const type order
1417         (makeDocBookFile): ditto
1418         (fillWithBibKeys): use std:: on stdlib args.
1419
1420         * CutAndPaste.C: fix authors.
1421         (availableSelections): use std:: on return vector
1422
1423 2003-06-27  André Pönitz  <poenitz@gmx.net>
1424
1425         * BufferView_pimpl.C:
1426         * bufferview_funcs.C:
1427         * lyxcursor.C:
1428         * lyxcursor.h:
1429         * lyxfunc.C:
1430         * lyxtext.h:
1431         * rowpainter.C:
1432         * text.C:
1433         * text2.C:
1434         * text3.C: remove LyXCursor::row_ member
1435
1436         * lyxtext.h:
1437         * text.C: rename fullRebreak() to partialRebreak() and implement
1438           a fullRebreak() that really bereks fully
1439
1440         * textcursor.h: new struct for cursor-related data
1441
1442 2003-06-26  Alfredo Braunstein  <abraunst@lyx.org>
1443
1444         * lyx_main.C (LyX): get full path of document loaded on the
1445         command line
1446
1447 2003-06-26  André Pönitz  <poenitz@gmx.net>
1448
1449         * lyxcursor.[Ch]: move rarely used operator==,!= out of line
1450           remove unused/broken operator>,<,>=.
1451
1452         *       text.C: remove only use of broken operator<= in an Assert().
1453
1454 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
1455
1456         * BufferView.[Ch] (getErrorList): removed unneeded forward declare,
1457         moved errorlist_.clear to showErrorList
1458
1459 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
1460
1461         * converter.C (scanLog, runLaTeX):
1462         * buffer.C (makeLinuxDocFile, makeDocBookFile, runChkTeX):
1463         move the bv->showErrorList call to the callers
1464         * lyxfunc.C: i.e. here...
1465         * text2.C: and here
1466         * BufferView.[Ch] (setErrorList, resetErrorList): both removed
1467         * exporter.[Ch] (Backends, BufferFormat): the first was moved to anon
1468         namespace, the second to...
1469         * buffer_funcs (BufferFormat, parseErrors): added
1470         * errorlist.C (ErrorList(TeXErrors const &)): removed
1471
1472 2003-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1473
1474         * ToolbarBackend.C (getIcon): complain when icon cannot be found
1475
1476 2003-06-24  "Garst R. Reese" <reese@isn.net>
1477
1478         * debug.C: fix typo
1479
1480 2003-06-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1481
1482         * lyx_main.C (init): honor LYX_DIR_14x and LYX_USERDIR_14x
1483
1484         * version.C.in: change docversion to 1.4
1485
1486 2003-06-22  Alfredo Braunstein  <abraunst@libero.it>
1487
1488         * buffer.C: fix a bug just introduced
1489
1490 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
1491
1492         * buffer.[Ch]: added the parseError signal and use it, removed
1493         sgmlError
1494         * BufferView.[Ch] (addError): moved to ...
1495         * BufferView_pimpl.[Ch] (addError, loadLyXFile): ... here. Attach
1496         to the Buffer::parseError signal to catch (guess what) parse errors
1497         * lyx_main.[Ch] (printError,LyX): added gui-less parsing error feedback
1498
1499 2003-06-19  Alfredo Braunstein  <abraunst@libero.it>
1500
1501         * bufferlist.[Ch] (loadLyXFile, readFile, newFile): removed the
1502         ability to create a buffer and to return an existing one from
1503         the list. Moved these functions to...
1504         * buffer_funcs.[Ch]: added
1505         * BufferView.[Ch] (loadLyXFile): added
1506         * BufferView_pimpl.[Ch] (loadLyXFile): Added. Does the guessing
1507         job removed from bufferlist::loadLyXFile.
1508         * buffer.C (setReadOnly): make it work without view
1509         (i.e added an if (users))
1510
1511 2003-06-19  Angus Leeming  <leeming@lyx.org>
1512
1513         * lfuns.h:
1514         * LyXAction.C (init):
1515         * lyxfunc.C (getStatus, dispatch): remove 14 LFUNs, replacing them
1516         with LFUN_DIALOG_SHOW <name> <data>.
1517
1518 2003-06-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1519
1520         * CutAndPaste.C (availableSelections): small compilation fix for
1521         ancient (gcc 2.9x) compilers
1522
1523 2003-06-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
1524
1525         * text3.C (cursorNext): add tmp var
1526
1527         * text2.C (updateCounters): for function calling out of for clause
1528         (replaceSelectionWithString): ditto
1529         (insertStringAsParagraphs): ditto
1530         (getColumnNearX): add tmp var
1531         (setCursorFromCoordinates): add tmp var
1532         (cursorDownParagraph): add tmp var
1533         (deleteEmptyParagraphMechanism): add tmp var
1534
1535         * text.C (insertChar): add tmp var
1536
1537         * rowpainter.C (paintDepthBar): add tmp var
1538
1539         * CutAndPaste.C (availableSelections): potentially check all
1540         paragraphs in a cut to fill the shown strings.
1541
1542 2003-06-18  André Pönitz  <poenitz@gmx.net>
1543
1544         * kbmap.[Ch]: use vector<> instead of list<>
1545
1546 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
1547
1548         * text3.C (dispatch): handle arg to LFUN_PASTE, call
1549         pasteSelection with index
1550
1551         * text2.C (pasteSelection): modify, call pasteSelection with index
1552
1553         * paragraph.C (asString): reimplement version with no interval to
1554         call the one with interval.
1555
1556         * lyxtext.h: add index arg to pasteSelection
1557
1558         * MenuBackend.C (MenuItem): handle PasteRecent
1559         (Menu::read::Menutags): add md_pasterecent
1560         (read): handle it
1561         (expandPasteRecent): new function
1562         (expand): use it
1563
1564         * MenuBackend.h: add PasteRecent to MenuItem::Kind
1565
1566         * CutAndPaste.C: get rid of some stale comments. Add typdefe for
1567         the limited stack
1568         (availableSelections): new function
1569
1570 2003-06-17  Angus Leeming  <leeming@lyx.org>
1571
1572         * lyxfunc.C (dispatch): s/showMathPanel/show("mathpanel")/
1573
1574 2003-06-17  Angus Leeming  <leeming@lyx.org>
1575
1576         * lfuns.h:
1577         * LyXAction.C (init): new LFUN_DIALOG_SHOW.
1578
1579         * lyxfunc.C (dispatch): invoke it.
1580
1581 2003-06-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1582
1583         * iterators.C (operator++, ParPosition): reintroduce some
1584         const_cast for the benefit of older compilers.
1585
1586 2003-06-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1587
1588         * text3.C (dispatch): do not modify clipboard when doing
1589         LFUN_BACKSPACE, LFUN_BACKSPACE_SKIP, LFUN_DELETE or
1590         LFUN_DELETE_SKIP on a selection selection
1591
1592 2003-06-16  André Pönitz  <poenitz@gmx.net>
1593
1594         * BufferView.C:
1595         * buffer.C:
1596         * buffer.h:
1597         * paragraph.C:
1598         * tabular.[Ch]: IU of clone() and getLabelList();
1599
1600 2003-06-13  André Pönitz  <poenitz@gmx.net>
1601
1602         * tabular.h: compactification
1603
1604 2003-06-12  André Pönitz  <poenitz@gmx.net>
1605
1606         * tabular.C:
1607         * tabular.h:
1608         * tabular_funcs.h: some renaming plus whitespace
1609
1610 2003-06-12  André Pönitz  <poenitz@gmx.net>
1611
1612         * BufferView.C:
1613         * BufferView_pimpl.C:
1614         * CutAndPaste.C:
1615         * buffer.C:
1616         * iterators.[Ch]:
1617         * lyxfunc.C:
1618         * text.C:
1619         * toc.C: Return a Paragraph & for ParIterator::operator*()
1620
1621 2003-06-11  John Levon  <levon@movementarian.org>
1622
1623         * lyx_main.C:
1624         * ToolbarBackend.h:
1625         * ToolbarBackend.C: add "Toolbars" section and
1626         put the flags there
1627
1628 2003-06-10  Angus Leeming  <leeming@lyx.org>
1629
1630         * lfuns.h:
1631         * LyXAction.C (init): new LFUN_EXTERNAL_EDIT.
1632
1633         * lyxfunc.C (dispatch): invoke it.
1634
1635 2003-06-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
1636
1637         * main.C: protect <ios> with HAVE_IOS
1638         (main): protect sync_with_stdio with HAVE_IOS
1639
1640 2003-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
1641
1642         * text2.C (cutSelection): adjust
1643         (pasteSelection): adjust
1644
1645         * messages.C: handle get of empty string
1646
1647         * main.C (main): use sync_with_stdio(false)
1648
1649         * lyxfunc.C (dispatch): adjust
1650
1651         * lyx_cb.[Ch] (MenuWrite): remove unneeded BufferView arg
1652         (WriteAs): remove unneeded BufferView arg.
1653
1654         * bufferparams.h: use correct types on papersize, papersize2 and
1655         paperpackage.
1656
1657         * bufferparams.C (readToken): adjust for type
1658         (writeLaTeX): add missing cases to switch.
1659
1660         * bufferlist.C (quitWriteBuffer): adjust
1661         (close): adjust
1662
1663         * buffer.C (asciiParagraph): remove some commented code.
1664
1665         * CutAndPaste.C: remove current_view extern variable.
1666         (cutSelection): add BufferParams arg.
1667         (eraseSelection): add BufferParams arg.
1668         (pasteSelection): add Buffer const & arg
1669
1670 2003-06-07  John Levon  <levon@movementarian.org>
1671
1672         * buffer.C:
1673         * paragraph_funcs.C:
1674         * paragraph_pimpl.C:
1675         * text.C:
1676         * text2.C:
1677         * paragraph.h:
1678         * paragraph.C: allow InsetERT to freely space lines,
1679         and some consolidation of code
1680
1681 2003-06-06  José Matos  <jamatos@fep.up.pt>
1682
1683         * buffer.C (makeDocBookFile): fix bug #821
1684
1685 2003-06-06  Alfredo Braunstein  <abraunst@libero.it>
1686
1687         * BufferView_pimpl.C (dispatch): use Dialogs::visible
1688
1689 2003-06-04  Angus Leeming  <leeming@lyx.org>
1690
1691         * buffer.C: bump format to 224.
1692
1693 2003-06-05  André Pönitz  <poenitz@gmx.net>
1694
1695         * text2.C (redoParagraphs): remove two const_cast<>
1696
1697 2003-06-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1698
1699         * ParagraphList.h: remove last remnants of NO_STD_LIST
1700
1701 2003-06-03  Angus Leeming  <leeming@lyx.org>
1702
1703         * factory.C (createInset): small change to the way InsetExternal's params
1704         are set.
1705
1706 2003-06-04  André Pönitz  <poenitz@gmx.net>
1707
1708         * buffer.h: use Undo directly instead of shared_ptr<Undo>
1709
1710         * paragraph_pimpl.h:
1711         * paragraph.[Ch]: some Inset -> UpdatableInset changes
1712
1713         * undo.[Ch]: use ParagraphList instead of vector<Paragraph>
1714
1715         * undo_funcs.C: make some simple cases of undo work again
1716
1717 2003-06-03  John Levon  <levon@movementarian.org>
1718
1719         * ispell.C: HPUX doesn't have sys/select.h
1720         (from Albert Chin)
1721
1722 2003-06-03  John Levon  <levon@movementarian.org>
1723
1724         * CutAndPaste.C: update tabular and include inset
1725         buffer references
1726
1727         * buffer.h:
1728         * paragraph.h:
1729         * paragraph.C: remove owningBuffer(), don't pass Buffer
1730         to clone()
1731
1732         * factory.C: insetGraphicsParams changed
1733
1734 2003-06-02  John Levon  <levon@movementarian.org>
1735
1736         * LyXAction.C:
1737         * factory.C:
1738         * lfuns.h:
1739         * lyxfunc.C:
1740         * text3.C: remove insetparent
1741
1742 2003-06-02  John Levon  <levon@movementarian.org>
1743
1744         * buffer.h:
1745         * buffer.C: fix inset_iterator.end(), move out of line
1746         (bug 1149)
1747
1748 2003-06-01  John Levon  <levon@movementarian.org>
1749
1750         * text3.C: use a proper cut/paste when doing inset
1751         insert (from Jürgen Spitzmüller)
1752
1753 2003-06-01  John Levon  <levon@movementarian.org>
1754
1755         * factory.C: accept "\bibtex" not "\BibTeX" (bug 1018)
1756
1757 2003-05-30  André Pönitz  <poenitz@gmx.net>
1758
1759         * rowpainter.C: unify second drawing phase
1760
1761 2003-05-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1762
1763         * trans_mgr.C: remove one case of current_view
1764
1765         * text2.C (cursorBottom): delete NO_STD_LIST stuff
1766
1767         * paragraph_funcs.h: remove paragraph.h include
1768
1769         * paragraph.h: delete NO_STD_LIST stuff
1770
1771         * paragraph.C (Paragraph): delete NO_STD_LIST stuff
1772
1773         * buffer.h: remove paragraph.h include
1774
1775         * ParagraphList.C: delete file
1776
1777         * Makefile.am (lyx_SOURCES): remove ParagraphList.C
1778
1779         * toc.C (getTocList): adjust
1780
1781         * paragraph_pimpl.C (validate): adjust
1782
1783         * paragraph_funcs.C (optArgInset): use const_iterator, adjust
1784
1785         * paragraph.C (Paragraph): adjust
1786         (getPositionOfInset): use const_iterator, adjust
1787         (bibitem): use const_iterator, adjust
1788         (setInsetOwner): adjust
1789
1790         * iterators.C (operator++): adjust
1791
1792         * InsetList.[Ch]: Replace selfmade iterator with standard
1793         vector::iterator also introduce const_iterator. Remove getPos,
1794         getInset and setInset from InsetTable. Adjust accordingly.
1795
1796         * BufferView.C (lockInset): adjust
1797         (ChangeInsets): adjust
1798
1799         * tabular.[Ch]: delete commented same_id functions
1800
1801 2003-05-28  John Levon  <levon@movementarian.org>
1802
1803         * lyxfunc.C: fix LFUN_ESCAPE (bug 1055)
1804
1805 2003-05-28  André Pönitz  <poenitz@gmx.net>
1806
1807         * metricsinfo.[Ch]: remove 'fullredraw' member
1808
1809 2003-05-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
1810
1811         * lyxtextclass.C (operator): remove caching.
1812
1813 2003-05-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
1814
1815         * text3.C: adjust
1816
1817         * text2.C (cursorBottom): adjust
1818         (setCounter): use ParagraphList::find, adjust
1819
1820         * text.C (workWidth): use ParagraphList::find, adjust
1821
1822         * lyxcursor.C (LyXCursor): adjust
1823
1824         * buffer.C (inset_iterator): adjust
1825
1826         * ParagraphList.h: make iterator(value_type) private, make
1827         ParagraphList a friend of iterator.
1828
1829         * ParagraphList.C (find): new function
1830
1831         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
1832
1833 2003-05-27  André Pönitz  <poenitz@gmx.net>
1834
1835         * dimension.[Ch]: a -> asc, d -> des, w -> wid
1836
1837 2003-05-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1838
1839         * lyxfont.C (latexWriteStartChanges): fix character count for \noun
1840
1841 2003-05-26  John Levon  <levon@movementarian.org>
1842
1843         * LyXAction.C: LFUN_ESCAPE should be ReadOnly
1844
1845 2003-05-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
1846
1847         * remove same_id from function signatures, adjust.
1848
1849 2003-05-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
1850
1851         * undo_funcs.C (createUndo): use the id functions directly, adjust.
1852
1853         * paragraph_pimpl.C (Pimpl): get rid of same_ids parameter
1854
1855         * paragraph.C (Paragraph): get rid of same_ids parameter
1856
1857         * ParagraphList.C (insert): adjust
1858         (push_back): adjust
1859
1860 2003-05-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
1861
1862         * paragraph_funcs.C (breakParagraph): adjust
1863         (breakParagraphConservative): adjust
1864
1865         * buffer.C (readParagraph): adjust
1866
1867         * ParagraphList.C (insert): take a reference instead of a pointer
1868         (insert): adjust
1869
1870         * paragraph.[Ch] (id): new function
1871
1872         * bufferlist.C (newFile): adjust
1873
1874         * ParagraphList.C (ParagraphList): adjust
1875         (assign): adjust
1876         (push_back): take a reference instead of a pointer.
1877
1878         * paragraph.h: add NO_STD_LIST define, remove NO_NEXT define.
1879
1880         * paragraph.C: remove all NO_NEXT node add some NO_STD_LIST parts
1881         instead.
1882
1883         * ParagraphList.h: degenerate to std::list if NO_STD_LIST is not
1884         set else use old code.
1885
1886         * ParagraphList.C: remove all NO_NEXT code and only compile this
1887         code of NO_STD_LIST is set.
1888
1889 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
1890
1891         * BufferView_pimpl.C:
1892         * TextCache.C:
1893         * TextCache.h:
1894         * bufferlist.C:
1895         * errorlist.h:
1896         * format.C:
1897         * format.h:
1898         * graph.C:
1899         * lyxfunc.C:
1900         * lyxrc.C:
1901         * graphics/GraphicsConverter.C:
1902         * graphics/PreviewLoader.C: header adjustment
1903
1904 2003-05-23  Angus Leeming  <leeming@lyx.org>
1905
1906         * LaTeXFeatures.[Ch] (useBabel): new method.
1907         * bufferparams.C (writeLaTeX): use it.
1908
1909 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
1910
1911         * ParagraphList.h (set): remove unused function.
1912
1913 2003-05-23  André Pönitz  <poenitz@gmx.net>
1914
1915         * BufferView.C:
1916         * BufferView_pimpl.C:
1917         * buffer.C:
1918         * buffer.h:
1919         * lyxfunc.C:
1920         * undo_funcs.C: setUndo reworked
1921
1922         * iterators.[Ch]: add access to topmost ParagraphList
1923
1924         * lyxtext.[Ch] (workWidth): add a const
1925
1926 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
1927
1928         * texrow.[Ch] (increasePos): remove function
1929         * exporter.C (export): removed unused var and outdated comment
1930
1931 2003-05-23  Angus Leeming  <leeming@lyx.org>
1932
1933         * latexrunparams.h: rename fragile as moving_arg.
1934         * paragraph.C (simpleTeXOnePar): ditto.
1935         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto.
1936
1937 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
1938
1939         * undo_funcs.C (textHandleUndo): comment out next/previous stuff
1940         (createUndo): ditto
1941         (textUndoOrRedo): comment out a currently unused var.
1942
1943         * paragraph.h (NO_NEXT): enable NO_NEXT
1944
1945         * lyxfunc.C (dispatch): remove LFUN_REMOVEERRORS
1946
1947         * lfuns.h: remove LFUN_REMOVEERRORS and adjust lfun numbers.
1948
1949         * exporter.C (Export): adjust for removeAutoInsets removal.
1950
1951         * buffer.C (runChktex): adjust for removeAutoInsets removal.
1952
1953         * LyXAction.C (init): remove LFUN_REMOVEERRORS
1954
1955         * BufferView.[Ch] (removeAutoInsets): delete function
1956
1957 2003-05-22  Angus Leeming  <leeming@lyx.org>
1958
1959         * latexrunparams.h: add a free_spacing variable.
1960
1961         * paragraph.[Ch] (simpleTeXOnePar): further fragile clean-up; no need
1962         to pass moving_arg, as the data is stored in runparams.fragile.
1963
1964         * paragraph_funcs.C (TeXOnePar): no longer pass free_spacing arg
1965         to Inset::latexOptional or to simpleTeXOnePar.
1966
1967         * paragraph_pimpl.C (simpleTeXSpecialChars): no longer pass
1968         free_spacing arg to Inset::latexOptional.
1969
1970         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
1971         free_spacing arg.
1972
1973 2003-05-22  Angus Leeming  <leeming@lyx.org>
1974
1975         * latexrunparams.h: add fragile and use_babel variables.
1976
1977         * bufferparams.[Ch] (writeLaTeX): return use_babel.
1978         * buffer.C (makeLaTeXFile): store this returned value in
1979         runparams.use_babel, thus passing it to the inset::latex methods.
1980
1981         * paragraph.C (simpleTeXOnePar): no need to pass 'moving_arg' to
1982         simpleTeXSpecialChars as it is now stored in runparams.fragile.
1983
1984         * paragraph_funcs.[Ch] (TeXOnePar, latexParagraphs): TeXOnePar no
1985         longer has a fragile arg, as it is stored in runparams.fragile.
1986
1987         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars): no longer has a
1988         moving_arg parameter as the data is stored in runparams.fragile.
1989
1990         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
1991         a fragile parameter as the data is stored in runparams.fragile.
1992
1993 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
1994
1995         * paragraph.C (Paragraph): initialize next_par_ and prev_par_
1996
1997 2003-05-22  Angus Leeming  <leeming@lyx.org>
1998
1999         * latexrunparams.h: add a 'bool nice' which defaults to false.
2000
2001         * buffer.[Ch] (makeLaTeXFile): remove the nice parameter as it is
2002         now encapsulated within runparams.
2003
2004         * bufferlist.C (updateIncludedTeXfiles):
2005         * exporter.C (Export): ensuing change to the calls to makeLaTeXFile.
2006
2007 2003-05-22  Angus Leeming  <leeming@lyx.org>
2008
2009         * latexrunparams.h: new file containing struct LatexRunParams.
2010         * Makefile.am: add new file.
2011
2012         * LaTeX.[Ch] (c-tor, run):
2013         * buffer.[Ch] (makeLaTeXFile):
2014         * bufferlist.[Ch] (updateIncludedTeXfiles):
2015         * converter.C (convert, scanLog):
2016         * converter.[Ch] (runLaTeX):
2017         * exporter.C (Export):
2018         * paragraph.[Ch] (simpleTeXOnePar):
2019         * paragraph_funcs.C (TeXEnvironment, TeXOnePar, TeXDeeper):
2020         * paragraph_funcs.[Ch] (latexParagraphs):
2021         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars):
2022         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow, latex):
2023         pass around a LatexRunParams parameter.
2024
2025 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
2026
2027         * paragraph.[Ch]: remove unused constructor
2028
2029         * ParagraphList.C (erase): new function, taking two iterators
2030
2031 2003-05-22  André Pönitz  <poenitz@gmx.net>
2032
2033         * undo_funcs.C: remove duplicated code
2034
2035         * iterator.[Ch]: operator=
2036
2037 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
2038
2039         * tabular.C (SetMultiColumn): ws changes
2040
2041         * rowpainter.C (paintFirst): get rid of a ->previous
2042
2043         * lyx_cb.C (getPossibleLabel): parlist simplification
2044
2045         * BufferView.C (ChangeInsets): simplify slightly.
2046
2047 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2048
2049         * LyXAction.C: new lfun space-insert, kill protected-space-insert
2050         * lfuns.h: new LFUN_SPACE
2051         * lyxfunc.C: protected space has a new lfun
2052         * paragraph_funcs.C: read new space insets
2053         * text3.C:
2054         * factory.C: handle new space insets
2055
2056 2003-05-22  André Pönitz  <poenitz@gmx.net>
2057
2058         * BufferView.C:
2059         * BufferView_pimpl.C:
2060         * buffer.[Ch]:
2061         * lyxfunc.C:
2062         * undo_funcs.C: return a ParIterator from getParFromID.
2063
2064         * iterators.[Ch]: add two const's
2065
2066 2003-05-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
2067
2068         * toc.C (getTocList): adjust
2069
2070         * iterators.[Ch]: rework for parlist
2071
2072         * buffer.C (par_iterator_begin): adjust
2073         (par_iterator_end): adjust
2074
2075         * CutAndPaste.C (SwitchLayoutsBetweenClasses): adjust
2076
2077         * BufferView.C (removeAutoInsets): adjust
2078         (ChangeInsets): adjust
2079
2080 2003-05-21  Alfredo Braunstein  <abraunst@libero.it>
2081
2082         * text.C (top_y): fix bug 1110
2083
2084 2003-05-08  Alfredo Braunstein  <abraunst@libero.it>
2085
2086         * errorlist.[Ch]: added
2087         * buffer.C:
2088         * BufferView.[Ch]:
2089         * BufferView_pimpl.C:
2090         * CutAndPaste.[Ch]: get rid of InsetError users, use ErrorList
2091         instead
2092
2093 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
2094
2095         * Makefile.am: ensure that lyx is relinked upon changes to the
2096         various "convenience" libs.
2097
2098 2003-05-20  Angus Leeming  <leeming@lyx.org>
2099
2100         * Makefile.am (lyx_SOURCES): move format.[Ch] and graph.[Ch] so that
2101         files are compiled in alphabetical order again.
2102
2103         * gettext.h: #ifndef _GETTEXT_H_ -> #ifndef GETTEXT_H.
2104
2105 2003-05-19  Angus Leeming  <leeming@lyx.org>
2106
2107         * gettext.[Ch]: remove "char const * _(char const *)".
2108
2109 2003-05-19  André Pönitz  <poenitz@gmx.net>
2110
2111         * dimension.[Ch]: promote from mathed/dimension.[Ch]
2112
2113         * Makefile.am:
2114         * BufferView.C:
2115         * DepTable.h:
2116         * LaTeXFeatures.C:
2117         * buffer.C:
2118         * lyxfont.C:
2119         * lyxlex.h:
2120         * paragraph_funcs.C: dimensions() instead of ascend/descend/width
2121
2122 2003-05-19  André Pönitz  <poenitz@gmx.net>
2123
2124         * buffer.C:
2125         * lyxlayout.[Ch]:
2126         * lyxtextclass.[Ch]:
2127         * paragraph.C:
2128         * paragraph_funcs.[Ch]:
2129         * text2.C:
2130         * text3.C: more insetenv work
2131
2132 2003-05-16  Alfredo Braunstein  <abraunst@libero.it>
2133
2134         * ParagraphParameters.C (params2string): small bug fixed
2135
2136 2003-05-16  André Pönitz  <poenitz@gmx.net>
2137
2138         * debug.C:
2139         * bufferview_funcs.C: patch from Kornel Benko to prevent
2140           crash when _(...) is called twice in a statement
2141
2142 2003-05-16  André Pönitz  <poenitz@gmx.net>
2143
2144         * BufferView.C:
2145         * lyxfunc.C:
2146         * text.C:
2147         * text2.C:
2148         * text3.C:
2149         * undo_funcs.C: edit() -> LFUN_INSET_EDIT
2150
2151 2003-05-14  Alfredo Braunstein  <abraunst@libero.it>
2152
2153         * lyx_main.C (init): remove spurious static_cast
2154
2155 2003-05-14  André Pönitz  <poenitz@gmx.net>
2156
2157         * BufferView.C: fix format string
2158
2159 2003-05-12  Alfredo Braunstein  <abraunst@libero.it>
2160
2161         * BufferView.[Ch] (insertErrors): removed
2162         * BufferView.[Ch] (showErrorList): added
2163         * buffer.C (runChkTeX):
2164         * converter.C (scanLog): call showErrorList instead of inserterrors
2165
2166 2003-05-13  André Pönitz  <poenitz@gmx.net>
2167
2168         * BufferView_pimpl.C:
2169         * buffer.C:
2170         * bufferview_func.C:
2171         * MenuBackend.C:
2172         * lyxfunc.C:
2173         * lyxrc.C:
2174         * tex-accent.C:
2175         * text3.C:
2176         * toc.C:
2177         * tabular_funcs.h: tostr() from its own header
2178
2179         * ParagraphParameters.C:
2180         * ToolbarBackend.C:
2181         * bufferparams.C:
2182         * format.C:
2183         * lyxlex_pimpl.C:
2184         * text3.C: STRCONV()
2185
2186 2003-05-12  André Pönitz  <poenitz@gmx.net>
2187
2188         * BufferView.C:
2189         * BufferView_pimpl.C:
2190         * CutAndPaste.C:
2191         * LaTeX.C:
2192         * LaTeXFeatures.C:
2193         * ParagraphParameters.C:
2194         * buffer.C:
2195         * bufferlist.C:
2196         * bufferparams.C:
2197         * bufferview_funcs.C:
2198         * converter.C:
2199         * counters.C:
2200         * debug.C:
2201         * exporter.C:
2202         * format.C:
2203         * importer.C:
2204         * lyx_cb.C:
2205         * lyx_main.C:
2206         * lyxfont.C:
2207         * lyxfunc.C:
2208         * lyxvc.C:
2209         * paragraph.C:
2210         * paragraph_funcs.C:
2211         * tabular.C:
2212         * tabular_funcs.C:
2213         * text2.C:
2214         * text3.C:  boost::format -> bformat  all over the place
2215
2216
2217 2003-05-09  André Pönitz  <poenitz@gmx.net>
2218
2219         * LColor.[Ch]: Pimpl the #include <map> away
2220
2221 2003-05-09  John Levon  <levon@movementarian.org>
2222
2223         * bufferlist.C: never remove emergency saves
2224
2225 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
2226
2227         * Makefile.am: better lib building
2228
2229 2003-05-07  Lars Gullik Bjønnes  <larsbj@gullik.net>
2230
2231         * texrow.[Ch]: remove dependency on Paragraph and just store a id
2232         instead.
2233         * paragraph_pimpl.C (simpleTeXBlanks): adjust
2234         (simpleTeXSpecialChars): adjust
2235         (simpleTeXSpecialChars): adjust
2236         * paragraph.C (simpleTeXOnePar): adjust
2237         * buffer.C (makeLaTeXFile): adjust
2238
2239         * Makefile.am (BOOST_LIBS): allow boost as system lib.
2240
2241         * text2.C (changeDepth): parlist cleanup
2242         (getColumnNearX): ditto
2243
2244         * rowpainter.C (getLabelFont): parlist cleanup
2245
2246         * bufferlist.C (newFile): parlist cleanup
2247
2248         * CutAndPaste.C (eraseSelection): parlist cleanup
2249
2250         * BufferView_pimpl.C (trackChanges): parlist cleanup
2251         (dispatch): ditto
2252
2253         * BufferView.C (lockInset): parlist cleanup.
2254         (ChangeInsets): ditto
2255
2256 2003-05-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
2257
2258         * CutAndPaste.h: Update file header.
2259
2260         * CutAndPaste.C: Update file header.
2261         Store the parts cut out of the Document in a limited_stack.
2262         (copySelection): adjust
2263         (pasteSelection): new function, takes the index in the limited stack.
2264         (nrOfParagraphs): adjust
2265         (SwitchLayoutsBetweenClasses): Change to take a ParagraphList&,
2266         simplify error inset insertion.
2267         (checkPastePossible): adjust
2268
2269 2003-05-06  John Levon  <levon@movementarian.org>
2270
2271         * text2.C: don't cast wrap inset to float
2272
2273 2003-05-05  André Pönitz  <poenitz@gmx.net>
2274
2275         * iterator.C:
2276         * undo_funcs.C: use getParagraphs() instead of getFirstParagraph()
2277
2278         * buffer.[Ch]: new function hasParWithId() to help to get rid of a
2279           few naked Paragraph *.
2280
2281 2003-05-02  Michael Schmitt  <michael.schmitt@teststep.org>
2282
2283         * bufferparams.C: Output warning if a document with missing
2284         TeX document class is loaded
2285         * exporter.C: Disable TeX exports if the document class is missing
2286         * lyxtextclass.C:
2287         * lyxtextclass.h:
2288         * lyxtextclasslist.C: Handle new textclass.lst format; new method
2289         isTeXClassAvailable()
2290
2291 2003-05-03  John Levon  <levon@movementarian.org>
2292
2293         * BufferView.h:
2294         * BufferView.C: remove showLockedInsetCursor(), showCursor(),
2295         explicit cursor show/hide
2296
2297         * BufferView_pimpl.h:
2298         * BufferView_pimpl.C: hide cursor before dispatching. Show cursor
2299         after a cursor move lfun. Simplify cursorToggle(). Remove show/hideCursor().
2300
2301         * lyxfunc.C: hide cursor before dispatching.
2302
2303         * lyx_cb.C:
2304         * lyxfind.C:
2305         * text.C:
2306         * text3.C: remove explicit cursor hides
2307
2308 2003-05-02  André Pönitz  <poenitz@gmx.net>
2309
2310         * buffer.[Ch]: two instances of Paragraph * -> ParagraphList::iterator
2311
2312         * undo_funcs.C:
2313         * undo.[Ch]: rely on std::vector<Paragraph *> instead of manually
2314           linked lists
2315
2316         * text2.C: tiny whitespace
2317
2318 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2319
2320         * undo_funcs.C: almost only ws changes.
2321
2322         * ParagraphList.C (splice): just return if pl is empty.
2323
2324 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2325
2326         * ParagraphList.C (splice): new function.
2327
2328         * CutAndPaste.C (pasteSelection): use it
2329
2330 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2331
2332         * CutAndPaste.C (pasteSelection): remove the last next and
2333         previous from this file.
2334
2335 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2336
2337         * CutAndPaste.C (pasteSelection): more clean up, user proper
2338         ParagraphList functions for pasteing.
2339
2340         * ParagraphList.C (insert): new function, three arg insert
2341
2342 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2343
2344         * ParagraphList.C (insert): new function, three arg insert
2345
2346         * CutAndPaste.C (pasteSelection): work on the simple_cut_clone,
2347         not on paragraphs.
2348
2349 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2350
2351         * CutAndPaste.C (pasteSelection): copy paragraphlist the nice way.
2352
2353 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2354
2355         * CutAndPaste.C (pasteSelection): remove some unneeded code.
2356
2357 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2358
2359         * CutAndPaste.C (resetOwnerAndChanges): new helper functor
2360         (copySelection): clean up a bit.
2361         (pasteSelection): use make_pair
2362
2363         * ParagraphList.C (ParagraphList): implement copy constructor
2364         (operator=): implement, base on copy constructor.
2365         (assign): new func
2366
2367         * paragraph.C (erase): return a bool
2368
2369         * paragraph_pimpl.C (erasePos): remove function, move contents...
2370         (erase): ... here. Return a bool.
2371         (erase): call erase instead of erasePos.
2372
2373 2003-04-30  Alfredo Braunstein  <abraunst@libero.it>
2374
2375         * ParagraphList.h: define PitPosPair
2376         * CutAndPaste.C (copySelection, pasteSelection): big rework, use
2377         ParagraphList, fix a bug on pasting multiple pars
2378         * text2.C: change interface to C&P
2379
2380 2003-04-30  André Pönitz  <poenitz@gmx.net>
2381
2382         * undo_func.C: revert part of yesterday's patch 2
2383
2384 2003-04-30  John Levon  <levon@movementarian.org>
2385
2386         * LColor.C: s/tabular/table/
2387
2388 2003-04-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
2389
2390         * text3.C (dispatch): do not convert iterator -> pointer
2391         * undo_funcs.C (setCursorParUndo): ditto
2392         * text_funcs.C (transposeChars): ditto
2393
2394         * text2.C (setLayout): ws changes only
2395
2396         * text.C (breakParagraph): do not convert iterator -> pointer
2397         (insertChar): ditto
2398         (acceptChange): ditto
2399         (rejectChange): ditto
2400         (changeCase): ditto
2401         (Delete): ditto
2402         (backspace): ditto
2403
2404         * BufferView.C (lockedInsetStoreUndo): do not convert iterator ->
2405         pointer
2406
2407 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
2408
2409         * text3.C (gotoInset): YABG (yet another bad getChar)
2410
2411 2003-04-29  André Pönitz  <poenitz@gmx.net>
2412
2413         * paragraph.h: make operator= private unimplemented as long as
2414           it is unusable
2415
2416         * ParagraphList.C: whitespace
2417
2418         * paragraph.[Ch]:
2419         * paragraph_pimpl.[Ch]:
2420         * paragraph_funcs.C:
2421         * CutAndPaste.C:
2422         * undo_funcs.C: whitespace + Paragraph *  -> Paragraph (const) &
2423
2424         * text2.C:
2425           undo_funcs.[Ch]: Paragraph * -> ParagraphList::iterator
2426
2427 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
2428
2429         * CutAndPaste.[Ch] (cutSelection): big rework, some bugs fixed
2430         * paragraph.[Ch] (erase):
2431         * paragraph_pimpl.[Ch] (erase): change return type and value
2432         * text2.C (cutSelection): some rework
2433
2434 2003-04-28  John Levon  <levon@movementarian.org>
2435
2436         * bufferlist.C: changes for unsaved changes dialog
2437
2438 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2439
2440         * bufferlist.C (newFile): set language (messages_) for new
2441         documents also.
2442
2443         * buffer.C (readFile): ws changes only.
2444
2445 2003-04-28  André Pönitz  <poenitz@gmx.net>
2446
2447         * undo_funcs.C:
2448         * lyxfunc.C:
2449         * buffer.[Ch]:
2450         * BufferView_pimpl.C:
2451         * BufferView.C: getParFromID related ParagraphList::iterator changes
2452
2453 2003-04-28  André Pönitz  <poenitz@gmx.net>
2454
2455         * tabular.[Ch]: part of Lars' Paragraph * -> ParagraphList::iterator
2456           Changes
2457
2458 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2459
2460         * messages.C: remove one more localedir class variable.
2461
2462 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2463
2464         * messages.C (getLocaleDir): singleton generation function
2465         (Pimpl): use it.
2466         (Messages): add a default constructor.
2467
2468         * main.C (main): do not setup localedir here, do not call
2469         gettext_init.
2470
2471         * gettext.C (_): use it.
2472         (gettext_init): delete funciton
2473
2474 2003-04-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
2475
2476         * gettext.C (getLyXMessages): new singleton generating function.
2477
2478         * buffer.C (updateDocLang): adjust
2479
2480         * Makefile.am (messages.o): add target
2481         (main.o): remove target
2482
2483 2003-04-27  John Levon  <levon@movementarian.org>
2484
2485         * bufferlist.C:
2486         * lyx_cb.C:
2487         * lyxfunc.C:
2488         * lyxvc.C: specify cancel button in Alert::prompt
2489
2490 2003-04-26  John Levon  <levon@movementarian.org>
2491
2492         * text3.C:
2493         * lyxfunc.C:
2494         * lfuns.h:
2495         * LyXAction.C: add LFUN_INSET_SETTINGS
2496
2497         * lyxfunc.C: don't enable tabular-feature when there's
2498         just any locking inset
2499
2500 2003-04-26  John Levon  <levon@movementarian.org>
2501
2502         * bufferlist.C: re-add Cancel to buffer close question
2503
2504         * lyxfunc.C: fix import UI a bit
2505
2506 2003-04-25  John Levon  <levon@movementarian.org>
2507
2508         * gettext.C: remove the broken asserts for now
2509
2510 2003-04-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
2511
2512         * messages.C: make case where setlocale cannot comply work better.
2513
2514         * buffer.C (updateDocLang): new function
2515         (changeLanguage): use it
2516         (readFile): use it
2517
2518         * text2.C (setCounter): use B_ a bit.
2519
2520         * lyxlayout.C (Read): be sure to trim the label strings.
2521
2522         * messages.C (Messages): fix typo in comment
2523
2524         * buffer.C (readFile): set message_ after file is loaded.
2525         (makeDocBookFile): remove double return
2526         (changeLanguage): reset message_ upon language change.
2527         (B_): new func, use this to get translated buffer strings.
2528
2529         * main.C: add myself and Jean Marc as authors.
2530
2531 2003-04-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
2532
2533         * messages.[hC]: pimplify Messages, and three different pimpls to be
2534         used in different circumstances.
2535
2536         * gettext.[Ch]: change for use with new message code.
2537
2538 2003-04-24 André Pönitz <poenitz@gmx.net>
2539
2540         * factory.C: support for eqref
2541
2542 2003-04-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
2543
2544         * messages.[Ch]: add missing char
2545
2546         * Makefile.am (lyx_SOURCES): add messages.[Ch]
2547
2548         * messages.[Ch]: New files
2549
2550 2003-04-18  John Levon  <levon@movementarian.org>
2551
2552         * BufferView.h:
2553         * BufferView.C:
2554         * BufferView_pimpl.C:
2555         * lfuns.h:
2556         * LyXAction.C:
2557         * lyxtext.h:
2558         * text2.C: remove layout-copy/paste (bug 778)
2559
2560 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
2561
2562         * text2.C (redoParagraphs): eliminate good_prevrit, rewrite a loop
2563
2564 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
2565
2566         * bufferlist.C (quitWriteBuffer): WriteAs and MenuWrite return true
2567         if they succeed. Act accordingly.
2568
2569 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2570
2571         * text2.C (setCharFont): adjust
2572         (setCounter): adjust
2573         (insertStringAsLines): adjust
2574
2575         * text.C (leftMargin): adjust
2576         (setHeightOfRow): adjust
2577
2578         * rowpainter.C (paintFirst): adjust
2579         (paintLast): adjust
2580
2581         * paragraph_funcs.C (depthHook): ParagraphList::iterators
2582         (outerHook): ditto
2583         (isFirstInSequence): ditto
2584         (getEndLabel): ditto
2585         (outerFont): adjust
2586
2587         * paragraph.C (getParLanguage): comment out some hard stuff.
2588
2589         * buffer.C (insertStringAsLines): take a ParagraphList as arg
2590         (sgmlError): ditto
2591         (simpleDocBookOnePar): ditto
2592         (makeDocBookFile): use ParagraphList::iterator
2593
2594         * CutAndPaste.C (pasteSelection): adjust
2595
2596 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2597
2598         * text2.C (getFont): adjust
2599         (getLayoutFont): adjust
2600         (getLabelFont): adjust
2601
2602         * paragraph_funcs.C (TeXOnePar): adjust
2603
2604         * buffer.C (simpleLinuxDocOnePar): adjust
2605         (simpleDocBookOnePar): adjust
2606
2607         * CutAndPaste.C (pasteSelection): adjust
2608
2609         * BufferView.C (getEncoding): adjust
2610
2611         * paragraph_funcs.C (outerFont): prepare for a ParagraphList arg.
2612
2613 2003-04-16  John Levon  <levon@movementarian.org>
2614
2615         * lyxfind.C: use parlist stuff for search/changes
2616
2617 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2618
2619         * undo_funcs.C (textHandleUndo): ajust (rather big adsjust this one)
2620
2621         * text2.C (deleteEmptyParagraphMechanism): adjust
2622
2623         * text2.[Ch] (ownerParagraph): delete func (both of them
2624
2625 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2626
2627         * text_funcs.C (transposeChars): use ParagraphList::iterator here.
2628
2629 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2630
2631         * ParagraphList.C: prepare for NO_NEXT
2632
2633 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2634
2635         * text2.C (getFont): adjust
2636         (getLayoutFont): adjust
2637         (getLabelFont): adjust
2638
2639         * paragraph.C (getFont): adjust
2640         (getLabelFont): adjust
2641         (getLayoutFont): adjust
2642
2643         * paragraph_funcs.[Ch] (realizeFont): remove unneeded arguments.
2644
2645 2003-04-15  John Levon  <levon@movementarian.org>
2646
2647         From Angus Leeming
2648
2649         * lyx_main.C: handle Include in .ui files
2650
2651 2003-04-15  John Levon  <levon@movementarian.org>
2652
2653         * MenuBackend.C: make the doc files length shorter
2654
2655         * ToolbarBackend.h:
2656         * ToolbarBackend.C: handle toolbar placement flags,
2657         Minibuffer
2658
2659 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2660
2661         * paragraph_pimpl.C (simpleTeXSpecialChars): take a outerfont arg,
2662         adjust
2663
2664         * paragraph_funcs.C (TeXOnePar): adjust
2665
2666         * paragraph.C (getLabelFont): add outerfont arg, adjust
2667         (getLayoutFont): ditto
2668         (simpleTeXOnePar): adjust
2669
2670         * paragraph_pimpl.C (realizeFont): delete func
2671
2672 2003-04-14  Alfredo Braunstein  <abraunst@libero.it>
2673
2674         * text2.C (beforeFullRowInset): added a bad getchar check, removed
2675         row argument, constify cur argument.
2676
2677 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2678
2679         * text2.C (getFont): adjust
2680         (getLayoutFont): adjust
2681         (getLabelFont): adjust
2682
2683         * paragraph_funcs.C (TeXOnePar): adjust
2684         (outerFont): new func...
2685         (realizeFont): ...moved out from here, changed this to facilitate
2686         transition
2687
2688         * paragraph.C (getFont): take outerfont as arg, adjust
2689         (simpleTeXOnePar): add outerfont arg, adjust
2690
2691         * buffer.C (simpleLinuxDocOnePar): adjust
2692         (simpleDocBookOnePar): adjust
2693
2694         * CutAndPaste.C (pasteSelection): adjust
2695
2696         * BufferView.C (getEncoding): adjust
2697
2698 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2699
2700         * text2.C (setCharFont): adjust
2701         (setCounter): adjust
2702
2703         * text.C (leftMargin): adjust
2704         (setHeightOfRow): adjust
2705
2706         * rowpainter.C (paintFirst): adjust
2707         (paintLast): adjust
2708
2709         * paragraph_pimpl.C (realizeFont): adjust
2710
2711         * paragraph.C (isFirstInSequence): move from here...
2712         * paragraph_funcs.C (isFirstInSequence): ...to here
2713
2714         * paragraph.C (outerHook): move from here...
2715         * paragraph_funcs.C (outerHook): ...to here
2716
2717         * paragraph.C (depthHook): move from here...
2718         * paragraph_funcs.C (depthHook): ...to here
2719
2720         * paragraph.C (getEndLabel): move from here...
2721         * paragraph_funcs.C (getEndLabel): ...to here
2722
2723         * text2.C (realizeFont): move from here...
2724         * paragraph_funcs.C (realizeFont): ...to here
2725
2726 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2727
2728         * text3.C (gotoNextInset): use separate tmp vars for par and pos.
2729
2730 2003-04-14  Angus Leeming  <leeming@lyx.org>
2731
2732         * LColor.[Ch]: scrap LColor mathcursor.
2733
2734 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2735
2736         * lyxlex.[Ch] (text): delete function
2737         * trans.C (Load): adjust
2738         * paragraph_funcs.C (readParToken): adjust
2739
2740 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2741
2742         * lyxlex_pimpl.h: get rid of LEX_MAX_BUFF, change buff to be a
2743         vector<char> instead of a char[].
2744
2745         * lyxlex_pimpl.C (getString): adjust
2746         (next): adjust
2747         (lex): use getString
2748         (eatLine): adjust
2749         (nextToken): adjust
2750
2751         * lyxlex.C (text): use pimpl_->getString()
2752         (getBool): ditto
2753         (findToken): ditto
2754
2755 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2756
2757         * text2.C (getInset): temp vars for cursor.par() and cursor.pos()
2758         (makeFontEntriesLayoutSpecific): temp var for par.size()
2759         (setLayout): temp var for ownerParagraphs().end()
2760         (fullRebreak): temp var for rows().end()
2761         (selectionAsString): temp var for boost::next(startpit), realize
2762         that the while really is a regular for loop.
2763         (cursorEnd): temp vars for cursor.row(), lastPos ++, only call
2764         setCursor in one place.
2765         (setParagraph): temp vr for ownerParagraphs().end()
2766         (updateCounters): make the while loop a for loop
2767         (cutSelection): temp var for ownerParagraphs().end()
2768         (updateInset): make the do {} while() a regular for loop
2769         (getCursorX): use temp vars
2770         (setCurrentFont): use temp vars
2771         (getColumnNearX): use temp vars
2772
2773 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2774
2775         * text.C (transformChar): use temp var for getChar
2776         (computeBidiTables): use temp var for row->par()
2777         (fill): move temp vars for row->par() and pit->layout() earlier in
2778         the function.
2779         (labelFill): use temp var for row->par()
2780         (setHeightOfRow): do not allow rit to be RowList::end, get rid of
2781         asc and desc, realize that pit never changes and that firstpit is
2782         just a duplicate and not needed. Exchange rit->par() with pit in a
2783         lot of places.
2784         (breakAgain): use a temp var for boost::next(rit)
2785         (breakAgainOneRow): ditto
2786         (breakParagraph): use a temp var for rows().begin()
2787         (prepareToPrint): move nlh into minimal scope, use temp var for rit->par()
2788         (cursorRightOneWord): use temp var for cursor.par() and
2789         cursor.pos(), remove usage of tmpcursor.
2790         (cursorLeftOneWord): use temp var for cursor.par() and
2791         cursor.pos() only set cur at end of function.
2792
2793 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2794
2795         * text.C, text2.C: exchange all usage of Paragraph::next with
2796         boost::next(ParagraphList::iterator)
2797
2798         * CutAndPaste.C (cutSelection): change 2. arg to a Paragraph*
2799
2800         * text2.C (cursorTop): simplify implementation
2801         (cursorBottom): ditto
2802         (setParagraph): use ParagraphList::iterator
2803         (setCurrentFont): adjust
2804         (getColumnNearX): adjust
2805         (cursorRight): adjust
2806         (cursorLeft): remove usage of Paragraph::previous
2807         (cursorUpParagraph): ditto
2808         (deleteEmptyParagraphMechanism): slight cleanup
2809
2810         * text.C (isBoundary): take a Paragraph const & instead of a
2811         pointer as arg.
2812         (addressBreakPoint): ditto
2813         (leftMargin): remove usage of Paragraph::previous.
2814         (setHeightOfRow): ditto
2815         (cursorLeftOneWord): ditto
2816         (selectNextWordToSpellcheck): ditto
2817         (Delete): ditto
2818         (backspace): ditto
2819         (breakParagraph): remove one usage of Paragraph::next
2820         (redoParagraph): ditto
2821         (acceptChange): ditto
2822         (insertChar): adjust
2823         (rowBreakPoint): adjust
2824
2825         * bufferview_funcs.C (toggleAndShow): adjust
2826
2827 2003-04-11  Alfredo Braunstein  <abraunst@libero.it>
2828
2829         * lyxrow.[Ch]: add a cached y position to a Row and Row::y()
2830         methods to access it.
2831         * lyxtext.h:
2832         * text.C: Added updateRowPositions to compute all row positions.
2833         Make top_y and getRowNearY() to use the cached y position
2834
2835 2003-04-11  John Levon  <levon@movementarian.org>
2836
2837         * text.C (rowBreakPoint): reintroduce the labelEnd
2838         checks, code copied from the row fill stuff. Deep voodoo.
2839
2840         * text.C (fill): add a comment and debugging for the
2841         next poor soul.
2842
2843 2003-04-11  John Levon  <levon@movementarian.org>
2844
2845         * text.C: make sure fullrow insets get wrapped to the next line,
2846         even when they're in a manual label
2847
2848 2003-04-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
2849
2850         * text2.C (insertParagraph): make it take ParagraphList::iterator
2851         as arg.
2852         (setLayout): make it return ParagraphList::iterator
2853         (redoParagraphs): ditto
2854         (setCounter): ditto
2855         (checkParagraph): ditto
2856
2857         * text.C (getRow): make getrow take ParagraphList::iterator as arg
2858
2859         * text2.C: adjust several funcs.
2860         (realizeFont): take a ParagraphList::iterator as arg.
2861         (getLayoutFont): ditto
2862         (getLabelFont): ditto
2863         (setCharFont): ditto
2864
2865         * text.C: adjust several funcs.
2866
2867 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
2868
2869         * text.C (selectNextWordToSpellcheck): don't accidentally
2870         skip insets
2871
2872 2003-04-10  John Levon  <levon@movementarian.org>
2873
2874         * ToolbarBackend.C (getIcon): special handling for
2875         LFUN_MATH_DELIM
2876
2877 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
2878
2879         * text2.C (cursorRight): a getChar assert fixed
2880
2881 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
2882
2883         * text2.C (getFont): change to take a ParagraphList::iterator
2884         instead of Paragraph*
2885         Adjust several functions.
2886
2887         * text.C (transformChar): change to take a ParagraphList::iterator
2888         instead of Paragraph*
2889         (singleWidth): ditto
2890         Adjust several functions.
2891
2892         * rowpainter.C: adjust several functions
2893         * rowpainter.h:store a ParagraphList::iterator and not a
2894         Paragraph&.
2895
2896
2897 2003-04-09  John Levon  <levon@movementarian.org>
2898
2899         * lyxfunc.C:
2900         * lfuns.h:
2901         * LyXAction.h:
2902         * LyXAction.C: remove LFUN_APROPOS, LFUN_GETTIP,
2903         and the "help" bits as well
2904
2905 2003-04-09  John Levon  <levon@movementarian.org>
2906
2907         * ToolbarBackend.h:
2908         * ToolbarBackend.C: allow multiple toolbars
2909
2910 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
2911
2912         * undo_funcs.C (setCursorParUndo): adjust
2913
2914         * text_funcs.C (transposeChars): adjust
2915
2916         * text3.C (gotoNextInset): adjust
2917         (dispatch): adjust
2918
2919         * text2.C (setLayout): adjust
2920         (changeDepth): adjust
2921         (setFont): adjust
2922         (redoParagraphs): adjust
2923         (selectionAsString): adjust
2924         (setParagraph): adjust
2925         (insertInset): adjust
2926         (cutSelection): adjust
2927         (copySelection): adjust
2928         (pasteSelection): adjust
2929         (insertStringAsLines): adjust
2930         (updateInset): adjust
2931         (setCursor): change to take a ParagraphList::iterator parameter
2932         (setCursorIntern): change to take a ParagraphList::iterator parameter
2933         (setCurrentFont): adjust
2934         (cursorLeft): adjust
2935         (cursorRight): adjust
2936         (deleteEmptyParagraphMechanism): adjust
2937
2938         * text.C (breakParagraph): adjust
2939         (insertChar): adjust
2940         (acceptChange): adjust
2941         (rejectChange): adjust
2942         (selectNextWordToSpellcheck): adjust
2943         (changeCase): adjust
2944         (Delete): adjust
2945         (backspace): adjust
2946
2947         * lyxfind.C (SearchForward): adjust
2948         (SearchBackward): adjust
2949         (nextChange): adjust
2950
2951         * lyxcursor.C (par): adjust
2952
2953         * lyxcursor.h: store a ParagraphList::iterator instead of a
2954         Paragraph*
2955
2956         * lyx_cb.C (getPossibleLabel): adjust
2957
2958         * bufferview_funcs.C (toggleAndShow): adjust
2959
2960         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
2961         (dispatch): adjust
2962
2963         * BufferView.C (removeAutoInsets): adjust
2964         (lockedInsetStoreUndo): adjust
2965
2966 2003-04-09  John Levon  <levon@movementarian.org>
2967
2968         * ToolbarBackend.C: try icon without argument
2969         if with argument fails
2970
2971 2003-04-08  John Levon  <levon@movementarian.org>
2972
2973         * ToolbarBackend.h:
2974         * ToolbarBackend.C: add getIcon(), handle tooltip,
2975         and change from "Icon" to "Item".
2976
2977 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
2978
2979         * BufferView.C (lockInset): another bad getchar crunched
2980
2981 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
2982
2983         * text2.C (changeDepth): do not setUndo on test_only (make undo work
2984         again)
2985
2986 2003-04-05  Alfredo Braunstein  <abraunst@libero.it>
2987
2988         * lyxfind.C (searchForward, searchBackwards): bug 782
2989
2990 2003-04-07  John Levon  <levon@movementarian.org>
2991
2992         * paragraph.C: remove dead comment
2993
2994         * text.C: remove troublesome depth-fiddling code
2995         in leftMargin() and rightMargin() (bug 1017)
2996
2997         * text.C: fix breaking of rows in nested lists
2998         (bug 1004)
2999
3000         * text2.C (updateCounters): fix up depth values
3001         (bug 1013)
3002
3003 2003-04-07  John Levon  <levon@movementarian.org>
3004
3005         * BufferView_pimpl.C: clear message when doc finishes resizing,
3006         and after a mouse event
3007
3008         * lyxfunc.C: clear message after exiting inset
3009
3010 2003-04-07  John Levon  <levon@movementarian.org>
3011
3012         * bufferview_funcs.C: show math status not outside
3013         status in the statusbar
3014
3015 2003-04-07  John Levon  <levon@movementarian.org>
3016
3017         * lyxfunc.C: note status changed after a depth change
3018
3019 2003-04-04  Angus Leeming  <leeming@lyx.org>
3020
3021         * LaTeX.h: move AuxInfo operator==, != out of line.
3022         Remove LaTeX virtual destructor; nothing derives from it.
3023         Move operator()() out of public area and rename it startscript().
3024         Change protected for private.
3025
3026 2003-04-04  Angus Leeming  <leeming@lyx.org>
3027
3028         * lyxfunc.C:
3029         * text2.C: remove unneeded #includes.
3030
3031 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
3032
3033         * text2.C (dEPM): fix the heigth of the next row
3034
3035 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
3036
3037         * text.C: squashed an invalid getChar requester + some ws changes
3038
3039 2003-04-03  John Levon  <levon@movementarian.org>
3040
3041         * bufferview_funcs.h:
3042         * bufferview_funcs.C:
3043         * lyxfunc.C:
3044         * lyxtext.h:
3045         * text2.C: make getStatus work for the env depth lfuns
3046
3047 2003-04-03  John Levon  <levon@movementarian.org>
3048
3049         * bufferview_funcs.h:
3050         * bufferview_funcs.C:
3051         * lyxfunc.C:
3052         * lyxtext.h:
3053         * text2.C: parlistize decDepth(), by merging it with incDepth()
3054
3055 2003-04-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
3056
3057         * lyxrow.h: store a ParagraphList::iterator instead of a
3058         Paragraph* and adjust other class functions to suit.
3059
3060         * lyxrow_funcs.C, text.C, text2.C, text3.C: adjust because of the
3061         above.
3062
3063 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
3064
3065         * text2.C (setCursor): do not anchor to cursor row for the time being
3066
3067 2003-04-02  John Levon  <levon@movementarian.org>
3068
3069         * LyXAction.C:
3070         * lfuns.h:
3071         * lyx_main.C:
3072         * lyxtext.h:
3073         * text.C:
3074         * text3.C: rename the "tab" lfuns. Remove tab support from normal text
3075
3076 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3077
3078         * paragraph.h: make ParagraphList and ParagraphList::iterator
3079         friends of Paragraph.
3080
3081         * buffer.C (makeLinuxDocFile): move towards ParagraphList
3082
3083         * ParagraphList.C: Use the private next_ and previous_ from
3084         Paragraph.
3085
3086 2003-04-01  John Levon  <levon@movementarian.org>
3087
3088         * ToolbarBackend.h:
3089         * ToolbarBackend.C:
3090         * Makefile.am: rename, remove defaults gunk
3091
3092         * MenuBackend.h:
3093         * MenuBackend.C: remove defaults gunk
3094
3095         * Languages.h:
3096         * Languages.C: remove defaults gunk
3097
3098         * lyx_main.h:
3099         * lyx_main.C: error out if files couldn't be found.
3100
3101 2003-04-02  John Levon  <levon@movementarian.org>
3102
3103         * text2.C: make incDepth() use parlist
3104
3105 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3106
3107         * undo_funcs.C (firstUndoParagraph): adjust
3108
3109         * text3.C (gotoInset): adjust
3110         (dispatch): adjust, and rewrite loop.
3111
3112         * text2.C (init): adjust, and rewrite loop.
3113         (redoParagraphs): adjust
3114         (updateInset): adjust, and rewrite loop.
3115         (deleteEmptyParagraphMechanism): adjust
3116
3117         * tabular.C (LyXTabular): adjust
3118         (SetMultiColumn): adjust
3119         (TeXRow): adjust
3120
3121         * lyxtext.[Ch] (ownerParagraph): delete function
3122         (ownerParagraphs): new function returns a ParagraphList.
3123
3124         * BufferView.C (removeAutoInsets): adjust
3125         (insertErrors): adjust
3126         (setCursorFromRow): adjust
3127
3128 2003-04-01  Angus Leeming  <leeming@lyx.org>
3129
3130         * BufferView_pimpl.C (buffer): ensure that the Layout is correct
3131         in the frontends.
3132
3133 2003-04-02  John Levon  <levon@movementarian.org>
3134
3135         * lyxtext.h:
3136         * text.C:
3137         * Makefile.am:
3138         * text_funcs.h:
3139         * text_funcs.C: make transposeChars a free function
3140
3141         * lyxrow_funcs.C: remove wrong comment
3142
3143 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3144
3145         * lyxtext.h: adjust
3146         * rowpainter.C: adjust
3147         * text.C: adjust
3148         * text2.C: adjust
3149         * text3.C: adjust
3150
3151         * lyxrow_funcs. [Ch]: new files
3152
3153         * lyxrow.[Ch]: remove next and previous pointers
3154         (next,previous): remove accessor functions
3155         (isParEnd): move to lyxrow_funcs
3156         (lastPos): move to lyxrow_funcs
3157         (nextRowIsAllInset): move to lyxrow_funcs
3158         (lastPrintablePos): move to lyxrow_funcs
3159         (numberOfSeparators): move to lyxrow_funcs
3160         (numberOfHfills): move to lyxrow_funcs
3161         (numberOfLabelHfills): move to lyxrow_funcs
3162         (hfillExpansion): move to lyxrow_funcs
3163
3164         * lyxfunc.C: adjust
3165
3166         * bufferview_funcs.C (toggleAndShow): adjust
3167
3168         * RowList.h: Remove class RowList from file leave just a
3169         std::list<Row>.
3170
3171         * RowList.C: delete file
3172
3173         * Makefile.am (lyx_SOURCES): remove RowList.C, add lyxrow_funcs.C
3174         and lyxrow_funcs.h
3175
3176 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3177
3178         * text3.C (cursorPrevious): adjust
3179         (cursorNext): adjust
3180         (dispatch): adjust
3181
3182         * text2.C (redoHeightOfParagraph): adjust
3183         (redoDrawingOfParagraph): adjust
3184         (setCursor): adjust
3185
3186         * text.C (breakParagraph): adjust
3187         (insertChar): adjust
3188         (backspace): adjust
3189
3190         * rowpainter.C (RowPainter): adjust
3191         (leftMargin): simplify and adjust
3192         (most rowpainter functions): adjust.
3193
3194         * rowpainter.h: store the row as RowList::iterator not as Row*
3195
3196         * lyxcursor.C (row): taka RowList::iterator as arg
3197         (irow): ditto
3198
3199         * lyxcursor.h: make the LyXCursor store RowList::iterators instead
3200         of Row*.
3201
3202 2003-04-01  Angus Leeming  <leeming@lyx.org>
3203
3204         * bufferview_funcs.C (string2font): rewrite so that it no longer uses
3205         stuff like bool Bool.
3206
3207 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
3208
3209         * text2.C (redoParagraphs): fix a bug (introduced by myself) and
3210         rewrite a loop
3211
3212 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3213
3214         * text2.C (redoParagraphs): rewrite (with help from Alfredo) for
3215         RowList::iterator.
3216
3217         * lyxtext.h (rows): drop one version and leve a const variant that
3218         returns a RowList::iterator.
3219
3220 2003-03-31  Angus Leeming  <leeming@lyx.org>
3221
3222         * text.C (fill): ensure that the signature is the same as that in the
3223         header file.
3224
3225 2003-03-31  Lars Gullik Bjønnes  <larsbj@gullik.net>
3226
3227         * text2.C (redoParagraphs): adjust
3228         (updateCounters): adjust
3229         (checkParagraph): adjust
3230         (getColumnNearX): adjust and reformat a bit.
3231
3232         * text.C (top_y): adjust
3233         (workWidth): adjust
3234         (leftMargin): adjust
3235         (prepareToPrint): adjust
3236         (getRow): adjust
3237         (getRowNearY): adjust
3238
3239         * lyxtext.h: make rowlist_ mutable.
3240
3241         * RowList.h: add const_iterator
3242         * RowList.C: adjust for RowList::const_iterator.
3243
3244         * text2.C (getCursorX): make it take a RowList::iterator as arg,
3245         adjust.
3246
3247 2003-03-31  John Levon  <levon@movementarian.org>
3248
3249         * lyxrc.h:
3250         * lyxrc.C: moved pdf_mode and use_gui to elsewhere
3251
3252         * lyx_main.C: set default fonts from using lyx_gui funcs
3253
3254         * exporter.C: pdf_mode moved from lyxrc
3255
3256         * lyx_cb.C:
3257         * lyxfunc.C: changes from above
3258
3259 2003-03-31  John Levon  <levon@movementarian.org>
3260
3261         * lyx_main.C: fix to the last fix
3262
3263 2003-03-31  John Levon  <levon@movementarian.org>
3264
3265         * bufferlist.C: "Load original" -> "Load Original"
3266
3267         * converter.C:
3268         * exporter.C:
3269         * importer.C:
3270         * lyx_main.C:
3271         * format.C: more Alert cleanups
3272
3273 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
3274
3275         * text2.C (removeParagraph): make it take a RowList::iterator as
3276         arg, adjust.
3277         (getColumnNearX): make it take a RowList::iterator as arg, adjust.
3278         (postRowPaint): make it take a RowList::iterator as arg, adjust.
3279
3280         * text.C (anchor_row): make it take a RowList::iterator as arg,
3281         adjust.
3282         (computeBidiTables): make it take a const reference to Row instead
3283         of Row pointer, adjust.
3284         (leftMargin): make it take a RowList::iterator as arg, adjust.
3285         (rowBreakPoint): adjust
3286         (breakAgainOneRow): make it take a RowList::iterator as arg,
3287         adjust.
3288         (prepareToPrint): make it take a RowList::iterator as arg, adjust.
3289
3290         * bufferview_funcs.C (toggleAndShow): adjust
3291
3292 2003-03-30  John Levon  <levon@movementarian.org>
3293
3294         * Makefile.am:
3295         * BoostFormat.h:
3296         * boost-inst.C: moved to support
3297
3298         * several files: changes as a result
3299
3300 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
3301
3302         * text2.C (LyXText): adjust.
3303         (init): adjust
3304         (removeRow): make it take a RowList::iterator as arg, adjust.
3305         (fullRebreak): adjust
3306         (deleteEmptyParagraphMechanism): adjust
3307         (clearPaint): adjust
3308         (postPaint): adjust
3309
3310         * text.C (top_y): adjust
3311         (setHeightOfRow): make it take a RowList::iterator as arg, adjust.
3312         (breakAgain): make it take a RowList::iterator as arg, adjust.
3313         (breakParagraph): adjust
3314         (insertChar): adjust
3315         (backspace): adjust
3316
3317         * lyxtext.h: make anchor_row_ be a RowList::iterator, ditto
3318         need_break_row, and refresh_row.
3319
3320         * text3.C (dispatch): adjust
3321
3322         * text2.C (checkParagraph): adjust
3323         (setCursor): adjust
3324         (setCursorFromCoordinates): adjust
3325
3326         * text.C (top_y): adjust
3327         (workWidth): adjust
3328         (getRow): make it return a RowList::iterator, adjust
3329         (getRowNearY): make it return a RowList::iterator, adjust
3330
3331         * text2.C (init): adjust
3332         (insertRow): remove function
3333         (insertParagraph): adjust
3334         (redoParagraphs): adjust
3335         (fullRebreak): adjust
3336         (updateCounters): adjust
3337
3338         * text.C (top_y): rewrite to use RowList iterators.
3339         (top_y): adjust
3340         (setHeightOfRow): rewrite to sue RowList iterators.
3341         (appendParagraph): adjust
3342         (breakAgain): adjust
3343         (breakAgainOneRow): adjust
3344         (breakParagraph): adjust
3345         (getRow): adjust
3346         (getRowNearY): adjust, and remove commented code.
3347
3348         * lyxtext.h (firstRow): delete function
3349         (lastRow): delete function
3350         (rows): new function (const and non-const versions.)
3351         (insertRow): delete function
3352
3353         * lyxrow.[Ch] (Row): new constructor taking a par and a pos
3354
3355 2003-03-29  John Levon  <levon@movementarian.org>
3356
3357         * BufferView_pimpl.C: always update scrollbar top
3358         because pasting text when we're anchored could mean we
3359         miss an update altogether
3360
3361 2003-03-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
3362
3363         * text2.C (init): use rowlist_.end() and not 0.
3364         (insertRow): change to take a RowList::iterator as arg, adjust
3365         for this.
3366         (insertParagraph): change to take a RowList::iterator as arg,
3367         adjust for this.
3368         (redoParagraphs): remove some debug msgs.
3369
3370         * text.C (appendParagraph): change to take a RowList::iterator
3371         arg, adjust for this.
3372         (breakAgain): add an assert
3373         (breakAgainOneRow): ditto
3374
3375 2003-03-29  John Levon  <levon@movementarian.org>
3376
3377         * text2.C: do not clear selection after inc/decDepth
3378         (bug 550)
3379
3380 2003-03-29  John Levon  <levon@movementarian.org>
3381
3382         * BufferView.C:
3383         * buffer.C: fix broken strerrors according to Lars
3384
3385 2003-03-29  John Levon  <levon@movementarian.org>
3386
3387         * converters.C: more Alert cleanups
3388
3389 2003-03-29  John Levon  <levon@movementarian.org>
3390
3391         * bufferview_funcs.C: remove pointless Alert
3392
3393         * buffer.C: fix confusing error message when
3394         a template is chmoded 000
3395
3396 2003-03-29  John Levon  <levon@movementarian.org>
3397
3398         * BufferView.C:
3399         * BufferView.h:
3400         * BufferView_pimpl.C: Alert fixes
3401
3402         * Makefile.am:
3403         * tabular.C:
3404         * tabular-old.C: remove unused table compat reading
3405
3406 2003-03-29  John Levon  <levon@movementarian.org>
3407
3408         * BufferView.C:
3409         * buffer.C:
3410         * lyx_cb.h:
3411         * lyx_cb.C: more Alert cleanups
3412
3413         * lyxfunc.C: don't allow chktex if not latex document
3414
3415 2003-03-29  John Levon  <levon@movementarian.org>
3416
3417         * lyx_cb.C:
3418         * BufferView.C:
3419         * buffer.C: warnings pushed down from support/,
3420         kill err_alert
3421
3422 2003-03-29  John Levon  <levon@movementarian.org>
3423
3424         * lyxfunc.C: safety check for C-r (revert)
3425
3426 2003-03-29  John Levon  <levon@movementarian.org>
3427
3428         * bufferlist.h:
3429         * bufferlist.C: several UI fixes using Alert::prompt.
3430         Fix the pointless looping quit code. Fix stupid revert
3431         behaviour (bug 938)
3432
3433         * lyxvc.h:
3434         * lyxvc.C:
3435         * lyx_cb.C: use Alert::prompt
3436
3437         * lyx_main.C: remove a silly question
3438
3439         * lyxfunc.C: remove a couple of silly questions,
3440         use Alert::prompt
3441
3442 2003-03-28  John Levon  <levon@movementarian.org>
3443
3444         * text2.C: fix bug 974 (End on empty par)
3445
3446 2003-03-28  John Levon  <levon@movementarian.org>
3447
3448         * BufferView_pimpl.C:
3449         * LyXAction.C:
3450         * lfuns.h: remove do-nothing math greek lfuns
3451
3452 2003-03-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
3453
3454         * lyxgluelength.h (isValidGlueLength): add default arg on
3455         parameter 2. Remove default arg from friend in class.
3456
3457         * lyxlength.h (isValidLength): add default arg on parameter 2.
3458         Remove default arg from friend in class.
3459
3460         * text2.C (LyXText): adjust, initialize refresh_row.
3461         (init): adjust
3462         (removeRow): adjust
3463         (insertRow): adjust
3464         (insertParagraph): adjst
3465         (redoParagraphs): adjust
3466         (fullRebreak): adjust
3467         (updateCounters): adjust
3468         (deleteEmptyParagraphMechanism): first attempt at fixing a
3469         crashing bug.
3470
3471         * text.C (top_y): adjust
3472         (setHeightOfRow): adjust
3473         (getRow): adjust
3474         (getRowNearY): adjust
3475
3476         * lyxtext.h: include RowList.h
3477         (~LyXText): not needed anymore, deleted.
3478         (firstRow): modify for RowList
3479         (lastRow): new function
3480         Delete firstrow and lastrow class variables, add a Rowlist
3481         rowlist_ class variable.
3482
3483         * lyxrow.C (lastPos): use empty() and not !size() to check if a
3484         paragraph is empty.
3485
3486         * RowList.C (insert): fix case where it == begin().
3487
3488 2003-03-26  Angus Leeming  <leeming@lyx.org>
3489
3490         * BufferView_pimpl.C (dispatch): changes to the Dialogs interface for
3491         the thesaurus dialog.
3492
3493 2003-03-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
3494
3495         * Makefile.am (lyx_SOURCES): add RowList.[Ch]
3496
3497         * RowList.[Ch]: new files
3498
3499         * ParagraphList.C (erase): handle the case where it == begin
3500         correctly.
3501
3502 2003-03-25  John Levon  <levon@movementarian.org>
3503
3504         * Makefile.am:
3505         * aspell_local.h:
3506         * aspell.C: add new aspell support
3507
3508         * lyxrc.h:
3509         * lyxrc.C: Make use_pspell be use_spell_lib. Always
3510         have it accessible.
3511
3512 2003-03-25  Angus Leeming  <leeming@lyx.org>
3513
3514         * lfuns.h:
3515         * LyXAction.C (init): new LFUN_INSET_INSERT.
3516
3517         * BufferView_pimpl.C (dispatch): split out part of the
3518         LFUN_INSET_APPLY block LFUN_INSET_INSERT.
3519
3520         * factory.C (createInset): act on LFUN_INSET_INSERT rather than
3521         LFUN_INSET_APPLY.
3522
3523 2003-03-25  Angus Leeming  <leeming@lyx.org>
3524
3525         * lyxfunc.C (dispatch): changes to the Dialogs interface.
3526
3527 2003-03-25  Alfredo Braunstein  <abraunst@libero.it>
3528
3529         * text2.C:
3530         * text3.C: remove useless row->height(0)
3531
3532 2003-03-25  John Levon  <levon@movementarian.org>
3533
3534         * lyxtext.h:
3535         * text2.C:
3536         * text3.C: rename the refreshing stuff to better names
3537
3538 2003-03-24  John Levon  <levon@movementarian.org>
3539
3540         * BufferView_pimpl.h:
3541         * BufferView_pimpl.C: update layout choice on a mouse
3542         press/release
3543
3544 2003-03-23  John Levon  <levon@movementarian.org>
3545
3546         * Makefile.am: fix commandtags.h reference
3547
3548 2003-03-22  John Levon  <levon@movementarian.org>
3549
3550         * BufferView_pimpl.C:
3551         * lyxtext.h:
3552         * rowpainter.C:
3553         * rowpainter.h:
3554         * text.C:
3555         * text2.C: remove CHANGED_IN_DRAW, it cannot happen now
3556
3557 2003-03-21  Alfredo Braunstein  <abraunst@libero.it>
3558
3559         * lyxtext.h:
3560         * text.C: take the rtl methods out of line
3561
3562 2003-03-21 André Pönitz <poenitz@gmx.net>
3563
3564         * metricsinfo.[Ch]: new files containing structures to be passed around
3565         during the two-phase-drawing...
3566
3567 2003-03-21 André Pönitz <poenitz@gmx.net>
3568
3569         * lyxtextclass.C: read 'environment' tag.
3570
3571 2003-03-20  Alfredo Braunstein  <abraunst@libero.it>
3572
3573         * text2.C (removeRow): fix bug 964
3574
3575 2003-03-20  John Levon  <levon@movementarian.org>
3576
3577         * rowpainter.C:
3578         * text.C:
3579         * text2.C: paint cleanups. Inset::update() dropped font
3580         parameter
3581
3582 2003-03-19  John Levon  <levon@movementarian.org>
3583
3584         * lyxfunc.C: only fitcursor/markDirty if available()
3585
3586 2003-03-19  John Levon  <levon@movementarian.org>
3587
3588         * commandtags.h: rename to ...
3589
3590         * lfuns.h: ... this, and renumber / cleanup
3591
3592 2003-03-19  John Levon  <levon@movementarian.org>
3593
3594         * lyxfunc.C: mark buffer dirty if we executed a "dirtying" lfun.
3595         fit the cursor after an lfun
3596
3597         * BufferView.h:
3598         * BufferView.C:
3599         * BufferView_pimpl.h:
3600         * BufferView_pimpl.C: remove BufferView::FITCUR/CHANGE
3601
3602         * LyXAction.C: layout-character should have ReadOnly
3603
3604         * ParagraphParameters.C:
3605         * buffer.C:
3606         * bufferview_funcs.C:
3607         * lyx_cb.C:
3608         * lyxfind.C:
3609         * lyxtext.h:
3610         * text.C:
3611         * text2.C:
3612         * text3.C:
3613         * undo_funcs.C: changes from above
3614
3615 2003-03-18  John Levon  <levon@movementarian.org>
3616
3617         * BufferView_pimpl.C (scrollDocView): add updateLayoutChoice(),
3618         remove it from update()
3619
3620         * lyxfunc.C: update layout choice after an lfun
3621
3622         * text3.C: remove extra updateLayoutChoice()s
3623
3624 2003-03-18  John Levon  <levon@movementarian.org>
3625
3626         * text.C: top_y change means full repaint, fix
3627         a drawing bug with cursor movement
3628
3629 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
3630
3631         * lyxtext.h:
3632         * text.C:
3633         * text2.C: anchor row on setCursor
3634
3635 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
3636
3637         * lyxtext.h: remove almost all mutable keywords
3638         * text.C:
3639         * text2.C:
3640         * text3.C: remove const keywords accordingly
3641
3642 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
3643
3644         * paragraph_funcs.C (TeXDeeper): reduce number of args, move into
3645         anon namespace
3646         (TeXEnvironment): ditto
3647         (TeXOnePar): ditto
3648
3649 2003-03-17  John Levon  <levon@movementarian.org>
3650
3651         * text.C (rowBreakPoint): remove attempt to fix displayed
3652         math insets inside a manual label
3653
3654 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
3655
3656         * lyxtext.h: remove BufferView* as first arg from almost all class
3657         functions.
3658         * other files: adjust.
3659
3660 2003-03-17  John Levon  <levon@movementarian.org>
3661
3662         * lyxtext.h:
3663         * undo_funcs.C:
3664         * text2.C: more paint cleanups
3665
3666         * BufferView_pimpl.C: screen prototype changed, use postPaint etc.
3667
3668         * rowpainter.h:
3669         * rowpainter.C: remove "smart" background painting code
3670
3671 2003-03-16  John Levon  <levon@movementarian.org>
3672
3673         * lyxtext.h:
3674         * text.C:
3675         * text2.C:
3676         * text3.C: add helper functions for setting refresh_row/y
3677
3678 2003-03-14  Kayvan Sylvan  <kayvan@sylvan.com>
3679
3680         * paragraph_pimpl.C (simpleTeXSpecialChars): Added fix for the
3681         newline inset which *can* get inserted in the pass_thru layouts.
3682         This is primarily for literate documents.
3683
3684 2003-03-14  Dekel Tsur  <dekelts@tau.ac.il>
3685
3686         * buffer.C: increment LYX_FORMAT to 223
3687
3688 2003-03-14 André Pönitz <poenitz@gmx.net>
3689
3690         * textclass.h: prepare for environment handling, ws changes
3691         * lyxlayout.C: read latexheader and latexfooter tags
3692
3693 2003-03-14  John Levon  <levon@movementarian.org>
3694
3695         * text2.C: rewrite ::status() a bit
3696
3697 2003-03-13  John Levon  <levon@movementarian.org>
3698
3699         * lyxtext.h: add some docs
3700
3701 2003-03-13  John Levon  <levon@movementarian.org>
3702
3703         * lyxtext.h:
3704         * text.C:
3705         * text2.C:
3706         * text3.C: remove pointless 2nd arg to setHeightOfParagraph()
3707
3708 2003-03-13  John Levon  <levon@movementarian.org>
3709
3710         * text3.C: fix appendix redrawing
3711
3712 2003-03-13  John Levon  <levon@movementarian.org>
3713
3714         * text.C (setHeightOfRow):
3715         * rowpainter.h:
3716         * rowpainter.C: make appendix mark have the text
3717           "Appendix" so the user knows what it is
3718
3719         * LColor.h:
3720         * LColor.C: s/appendixline/appendix/ from above
3721
3722 2003-03-13  John Levon  <levon@movementarian.org>
3723
3724         * paragraph_pimpl.C: fix Andre's backing out of the strong assertion
3725
3726         * text.C: fix a getChar(pos) bug properly
3727
3728 2003-03-13  Angus Leeming  <leeming@lyx.org>
3729
3730         * commandtags.h:
3731         * LyXAction.C (init): new LFUNs PARAGRAPH_APPLY and PARAGRAPH_UPDATE.
3732         Probably only temporary. Let's see how things pan out.
3733
3734         * BufferView.C (unlockInset):
3735         * BufferView_pimpl.C (fitCursor):
3736         replace Dialogs::updateParagraph with dispatch(LFUN_PARAGRAPH_UPDATE).
3737
3738         * BufferView_pimpl.C (dispatch): code for LFUNs LAYOUT_PARAGRAPH,
3739         PARAGRAPH_UPDATE, PARAGRAPH_APPLY.
3740
3741         * ParagraphParameters.[Ch] (setParagraphParams, params2string):
3742         new functions that convert ParagraphParameters to and from a string.
3743
3744         * lyxfunc.C (dispatch): move LFUN_LAYOUT_PARAGRAPH to
3745         BufferView::Pimpl's dispatch.
3746         In LFUN_ESCAPE, dispatch LFUN_PARAGRAPH_UPDATE.
3747
3748 2003-03-13 André Pönitz <poenitz@gmx.net>
3749
3750         * lyxfunc.C:
3751         * text3.C:
3752         * factory.C: make it aware of InsetEnv
3753
3754 2003-03-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
3755
3756         * text2.C (setCursor): never ask for one past last
3757         (setCursor): add some debugging messages.
3758
3759         * text.C (singleWidth): never ask for one past last
3760         (singleWidth): ditto
3761         (leftMargin): ditto
3762         (rightMargin): ditto
3763         (rowBreakPoint): ditto
3764         (setHeightOfRow): ditto
3765         (prepareToPrint): ditto
3766
3767         * rowpainter.C (paintBackground): never ask for one past last
3768         (paintText): never ask for one past last
3769
3770         * paragraph_pimpl.C (getChar): make the assert stricter, never
3771         allow the one past last pos to be taken
3772
3773         * paragraph.C (getChar): ws changes only
3774
3775         * lyxrow.C (nextRowIsAllInset): never ask for one past last
3776         (numberOfSeparators): ditto
3777         (numberOfHfills): ditto
3778
3779 2003-03-12  John Levon  <levon@movementarian.org>
3780
3781         * author.h:
3782         * author.C:
3783         * bufferparams.h:
3784         * bufferparams.C:
3785         * paragraph_funcs.C: fix per-buffer authorlists
3786
3787 2003-03-12  John Levon  <levon@movementarian.org>
3788
3789         * text.C: fix newline in right address
3790
3791 2003-03-12  Angus Leeming  <leeming@lyx.org>
3792
3793         * BufferView_pimpl.C (dispatch): remove LFUNs from switch as they
3794         duplicate those in LyXFunc::dispatch.
3795
3796         * commandtags.h:
3797         * LyXAction.C:
3798         * ToolbarDefaults.C:
3799         rename LFUN_FREE as LFUN_FONTFREE_APPLY.
3800         Add LFUN_FONTFREE_UPDATE.
3801
3802         * lyxfunc.C (dispatch): code for LFUN_FREEFONT_APPLY,
3803         LFUN_FREEFONT_UPDATE, LFUN_LAYOUT_CHARACTER.
3804
3805         * bufferview_func.[Ch]: several new functions to facilliate
3806         transfer of data to and from the character dialog.
3807
3808 2003-03-12  John Levon  <levon@movementarian.org>
3809
3810         * buffer.C:
3811         * paragraph.h:
3812         * paragraph.C:
3813         * paragraph_funcs.C:
3814         * paragraph_pimpl.C:
3815         * sgml.C:
3816         * tabular.C:
3817         * text.C:
3818         * text3.C: remove META_NEWLINE in favour of an inset
3819
3820         * rowpainter.h:
3821         * rowpainter.C: remove paintNewline (done by inset)
3822
3823 2003-03-12  John Levon  <levon@movementarian.org>
3824
3825         * paragraph_pimpl.C: complain about bad getChar()s
3826         for a while at least
3827
3828 2003-03-12  John Levon  <levon@movementarian.org>
3829
3830         * buffer.h:
3831         * buffer.C: move paragraph read into a separate function,
3832         a little renaming to reflect that.
3833
3834         * bufferparams.h:
3835         * bufferparams.C: remove the author_ids map, not necessary now
3836
3837         * factory.h:
3838         * factory.C: moved Buffer::readInset to here
3839
3840         * paragraph_funcs.h:
3841         * paragraph_funcs.C: readParagraph free function moved from
3842         buffer.C
3843
3844         * tabular.C: name change
3845
3846 2003-03-12  John Levon  <levon@movementarian.org>
3847
3848         * buffer.C:
3849         * ParagraphParameters.C: move par params input to
3850         a read() method
3851
3852         * lyxlex_pimpl.C: make nextToken()/next() after a pushToken()
3853         behave like a normal read from the stream wrt reading
3854         a line vs. a \\token
3855
3856 2003-03-12  John Levon  <levon@movementarian.org>
3857
3858         * paragraph.C:
3859         * ParagraphParameters.h:
3860         * ParagraphParameters.C: move output code to a
3861         ::write() method
3862
3863 2003-03-12  John Levon  <levon@movementarian.org>
3864
3865         * BufferView.C (insertLyXFile):
3866         * buffer.h:
3867         * buffer.C:
3868         * tabular.C: use a parlist iterator for creating the
3869           document.
3870
3871 2003-03-12  John Levon  <levon@movementarian.org>
3872
3873         * buffer.C: make current_change static local not
3874           static file-scope
3875
3876 2003-03-12  John Levon  <levon@movementarian.org>
3877
3878         * buffer.C: fix insertStringAsLines for change tracking
3879
3880 2003-03-12  John Levon  <levon@movementarian.org>
3881
3882         * BufferView.C:
3883         * tabular.C:
3884         * buffer.h:
3885         * buffer.C:
3886         * bufferparams.h:
3887         * bufferparams.C: move author list into params. Rename some
3888           functions. Move the header reading into a separate token
3889           loop. Move the header token reading into BufferParams.
3890
3891 2003-03-12  John Levon  <levon@movementarian.org>
3892
3893         * changes.C: put debug inside lyxerr.debugging() checks
3894
3895 2003-03-11 André Pönitz <poenitz@gmx.net>
3896
3897         * factory.C: make it aware of InsetHFill
3898
3899 2003-03-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3900
3901         * buffer.C (latexParagraphs): move function from here...
3902         * paragraph_funcs.C (latexParagraphs): ...to here, and adjust
3903         args.
3904
3905 2003-03-10  Angus Leeming  <leeming@lyx.org>
3906
3907         * LyXAction.C (init): fix bug in poplating array with multiple entries
3908         with the same LFUN (spotted by JMarc).
3909
3910 2003-03-10  John Levon  <levon@movementarian.org>
3911
3912         * text.C:
3913         * text2.C: move getColumnNearX() near its
3914         only call site
3915
3916 2003-03-10  John Levon  <levon@movementarian.org>
3917
3918         * text.C: fix break before a minipage
3919
3920 2003-03-10  John Levon  <levon@movementarian.org>
3921
3922         * text.C: fix the last commit
3923
3924 2003-03-09  John Levon  <levon@movementarian.org>
3925
3926         * lyxtext.h:
3927         * text.C:
3928         * text2.C: clean up nextBreakPoint (now rowBreakPoint). Fix
3929         bug 365 (don't break before insets unless needed). Don't
3930         return a value > last under any circumstances.
3931
3932 2003-03-09  Angus Leeming  <leeming@lyx.org>
3933
3934         * BufferView_pimpl.C (trackChanges, dispatch): call
3935         Dialogs::show("changes") rather than Dialogs::showMergeChanges().
3936
3937 2003-03-09  Angus Leeming  <leeming@lyx.org>
3938
3939         * lyxfunc.C (dispatch): call Dialogs::show("about") rather
3940         than Dialogs::showAboutlyx().
3941
3942 2003-03-09  Angus Leeming  <leeming@lyx.org>
3943
3944         * factory.C (createInset): call Dialogs::show("tabularcreate") rather
3945         than Dialogs::showTabularCreate().
3946
3947 2003-03-09  John Levon  <levon@movementarian.org>
3948
3949         * lyxtext.h:
3950         * text.C:
3951         * text2.C: 3rd arg to nextBreakPoint was always the same.
3952           Use references.
3953
3954 2003-03-08  John Levon  <levon@movementarian.org>
3955
3956         * lyxrow.C:
3957         * paragraph.C:
3958         * paragraph.h:
3959         * rowpainter.C:
3960         * text.C:
3961         * text2.C: Remove the "main" bit from the "main body"
3962           notion.
3963
3964 2003-03-08  John Levon  <levon@movementarian.org>
3965
3966         * text.C (leftMargin): The left margin of an empty
3967         manual label paragraph should not include the label width
3968         string length.
3969
3970         * text.C (prepareToPrint): don't attempt to measure hfills
3971         for empty manual label paragraphs - the answer should be 0
3972
3973 2003-03-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
3974
3975         * CutAndPaste.C: remove commented code and reindent.
3976
3977 2003-03-08  John Levon  <levon@movementarian.org>
3978
3979         * lyxfunc.h:
3980         * lyxfunc.C: move reloadBuffer()
3981
3982         * BufferView.h:
3983         * BufferView.C: to here
3984
3985         * lyxvc.C: add comment
3986
3987         * vc-backend.h:
3988         * vc-backend.C: call bv->reload() to avoid
3989           getStatus() check on MENURELOAD
3990
3991 2003-03-07  Dekel Tsur  <dekelts@tau.ac.il>
3992
3993         * LaTeX.C (run): Fix a bug where the DVI file was not updated due
3994         to an old format .dep file.
3995
3996 2003-03-07  Angus Leeming  <leeming@lyx.org>
3997
3998         * text3.C (dispatch): remove the 'gross hack' of calling inset->edit
3999         when the LFUN_MOUSE_RELEASE should have been handled by
4000         inset->localDispatch.
4001
4002 2003-03-07  Angus Leeming  <leeming@lyx.org>
4003
4004         * BufferView_pimpl.C (dispatch):
4005         * LyXAction.C (init):
4006         * ToolbarDefaults.C (init):
4007         * commandtags.h:
4008         * lyxfunc.C (getStatus):
4009         remove LFUN_INSET_GRAPHICS.
4010
4011         * factory.C (createInset): add "graphics" to LFUN_INSET_APPLY.
4012
4013 2003-03-07  Angus Leeming  <leeming@lyx.org>
4014
4015         * commandtags.h:
4016         * LyXAction.C (init):
4017         * lyxfunc.C (getStatus): remove LFUN_REF_INSERT.
4018
4019         * lyxfunc.C (getStatus): add LFUN_DIALOG_SHOW_NEW_INSET to switch.
4020
4021         * commandtags.h:
4022         * LyXAction.C: add LFUN_INSET_DIALOG_UPDATE.
4023
4024         * lyxfunc (dispatch): on LFUN_DIALOG_UPDATE, pass the 'open' inset's
4025         localDispatch method LFUN_INSET_DIALOG_UPDATE.
4026
4027 2003-03-07  Angus Leeming  <leeming@lyx.org>
4028
4029         * lyxfunc.C (dispatch): add "include" to LFUN_SHOW_NEW_INSET and
4030         remove "ert".
4031
4032 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
4033
4034         * ParagraphList.C (front): new function
4035         (back): implement
4036
4037 2003-03-06  Alfredo Braunstein  <abraunst@libero.it>
4038
4039         * lyxtext.h (top_y): added these 2 methods, and private vars top_row_
4040         and top_row_offset_. removed var first_y.
4041         * text.C (top_y):
4042         * text2.C (LyXText, removeRow):
4043         * text3.C:
4044         * BufferView_pimpl.C:
4045         use these methods instead of using first_y
4046
4047 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
4048
4049         * text2.C (pasteSelection): adjust for checkPastePossible
4050
4051         * CutAndPaste.C: remove Paragraph * buf and replace with
4052         ParagraphList paragraphs.
4053         (DeleteBuffer): delete
4054         (cutSelection): change the tc type to textclass_type
4055         (copySelection): change the tc type to textclass_type
4056         (copySelection): adjust for ParagraphList
4057         (pasteSelection): change the tc type to textclass_type
4058         (pasteSelection): adjust for Paragraphlist
4059         (nrOfParagraphs): simplify for ParagraphList
4060         (checkPastePossible): simplify for ParagraphList
4061         (checkPastePossible): remove unused arg
4062
4063         * ParagraphList.C (insert): handle the case where there are no
4064         paragraphs yet.
4065
4066         * CutAndPaste.h: make CutAndPaste a namespace.
4067
4068         * text3.C (dispatch): adjust
4069
4070         * text.C (breakParagraph): add a ParagraphList as arg
4071
4072         * paragraph_funcs.C (breakParagraph): change to take a
4073         BufferParams and a ParagraphList as args.
4074         (breakParagraphConservative): ditto
4075         (mergeParagraph): ditto
4076         (TeXDeeper): add a ParagraphList arg
4077         (TeXEnvironment): ditto
4078         (TeXOnePar): ditto
4079
4080         * buffer.C (readLyXformat2): adjust
4081         (insertStringAsLines): adjust
4082         (latexParagraphs): adjust
4083
4084         * CutAndPaste.C (cutSelection): use 'true' not '1' as truth value.
4085         (cutSelection): adjust
4086         (pasteSelection): adjust
4087
4088         * BufferView_pimpl.C (insertInset): adjust
4089
4090 2003-03-05  Angus Leeming  <leeming@lyx.org>
4091
4092         * commandtags.h:
4093         * LyXAction.C (init):
4094         * BufferView_pimpl.C (dispatch):
4095         * lyxfunc.C (getStatus):
4096         remove LFUN_CHILD_INSERT.
4097
4098         * factory.C (createInset): add "include" to LFUN_INSET_APPLY.
4099
4100 2003-03-05  Angus Leeming  <leeming@lyx.org>
4101
4102         * commandtags.h:
4103         * LyXAction.C (init):
4104         * src/factory.C (createInset):
4105         * lyxfunc.C (getStatus):
4106         * text3.C (dispatch):
4107         remove LFUN_INSET_EXTERNAL and LFUN_INSERT_URL
4108
4109         * factory.C (createInset): add "external" to LFUN_INSET_APPLY.
4110
4111 2003-03-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
4112
4113         * ParagraphList.C (insert): handle insert right before end()
4114         (erase): fix cases where it can be first or last paragraph.
4115
4116 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4117
4118         * paragraph_funcs.C (TeXEnvironment): remove all usage of
4119         Paragraph::next and Paragraph::previous
4120         (TeXOnePar): ditto
4121
4122         * text.C (breakParagraph): adjust
4123
4124         * paragraph_funcs.C (breakParagraph): take a Buffer* instead of a
4125         BufferParams& as arg.
4126         (breakParagraph): use ParagraphList::insert
4127         (breakParagraphConservative): take a Buffer* instead of a
4128         BufferParams& as arg.
4129         (breakParagraphConservative): use ParagraphList::insert.
4130
4131         * buffer.C (insertStringAsLines): un-const it
4132         (insertStringAsLines): adjust
4133
4134         * ParagraphList.C (insert): new function
4135
4136         * CutAndPaste.C (pasteSelection): adjust
4137
4138         * text.C (backspace): adjust
4139
4140         * tabular.C (SetMultiColumn): adjust
4141
4142         * CutAndPaste.C (cutSelection): adjust
4143         (pasteSelection): adjust
4144
4145         * tabular.C (SetMultiColumn): make it take a Buffer* instead of a
4146         Buffer const * as arg
4147
4148         * ParagraphList.C (erase): new function
4149         * paragraph_funcs.C (mergeParagraph): use it
4150         (mergeParagraph): make it take a Buffer* instead of a
4151         BufferParams* as arg
4152
4153         * paragraph_funcs.C (breakParagraph): take ParagraphList::iterator
4154         as arg
4155         (breakParagraphConservative): ditto
4156
4157         * paragraph.h: remove the breakParagraph friend
4158
4159         * paragraph.C (eraseIntern): new function
4160         (setChange): new function
4161
4162         * paragraph_funcs.C (mergeParagraph): make it take a
4163         ParagraphList::iterator instead of a Paragraph *, adjust
4164         accordingly.
4165
4166         * paragraph.h: move an #endif so that the change tracking stuff
4167         also works in the NO_NEXT case.
4168
4169 2003-03-04  Angus Leeming  <leeming@lyx.org>
4170
4171         * commandtags.h:
4172         * LyXAction.C: new LFUN_INSET_MODIFY.
4173
4174         * BufferView_pimpl.C (dispatch): if an inset is found to be open
4175         on LFUN_INSET_APPLY, pass LFUN_INSET_MODIFY to its localDispatch.
4176
4177 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4178
4179         * several files: ws changes only
4180
4181         * paragraph_funcs.C (TeXOnePar): take ParagraphList::iterator as args
4182         (TeXEnvironment): ditto
4183         (TeXDeeper): ditto
4184
4185         * buffer.C (makeLaTeXFile): adjust
4186         (latexParagraphs): make it take ParagraphList::iterator as args
4187
4188 2003-03-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
4189
4190         * buffer.C (latexParagraphs): adjust
4191
4192         * paragraph.C (TeXOnePar): move function...
4193         (optArgInset): move function...
4194         (TeXEnvironment): move function...
4195         * paragraph_pimpl.C (TeXDeeper): move function...
4196         * paragraph_funcs.C: ...here
4197
4198         * tabular.C (UseParbox): rewrite to use ParagraphList iterators.
4199
4200 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4201
4202         * buffer.C (readInset): remove compability code for old Figure and
4203         InsetInfo insets
4204
4205 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4206
4207         * buffer.C: ws changes
4208         (readInset):
4209
4210         * BufferView_pimpl.C: ditto
4211         * author.C: ditto
4212         * buffer.h: ditto
4213         * bufferlist.h: ditto
4214         * changes.h: ditto
4215         * lyxfunc.C: ditto
4216
4217 2003-02-28  Alfredo Braunstein <abraunst@libero.it>
4218
4219         * converter.[Ch]: split into itself +
4220         * graph.[Ch]
4221         * format.[Ch]
4222         * Makefile.am: += graph.[Ch] + format.[Ch]
4223         * MenuBackend.C
4224         * buffer.C
4225         * exporter.C
4226         * importer.C
4227         * lyx_main.C
4228         * lyxfunc.C
4229         * lyxrc.C: added #include "format.h"
4230
4231 2003-02-27  Angus Leeming  <leeming@lyx.org>
4232
4233         * BufferView_pimpl.C (dispatch): call a real, LyX dialog to insert
4234           a label.
4235
4236         * factory.C (createInset): add "label" to the factory.
4237
4238         * lyx_cb.[Ch] (getPossibleLabel): rewrite MenuInsertLabel to return the
4239           string and do no more.
4240
4241 2003-02-27  Angus Leeming  <leeming@lyx.org>
4242
4243         * commandtags.h:
4244         * LyXAction.C (init):
4245         * factory.C (createInset):
4246         * BufferView_pimpl.C (dispatch):
4247           collapse LFUN_XYZ_APPLY to LFUN_INSET_APPLY.
4248
4249         * lyxfunc.C (getStatus): remove LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY.
4250
4251         * lyxfunc.C (dispatch):
4252         * text3.C (dispatch): pass name to params2string.
4253
4254 2003-02-26  Angus Leeming  <leeming@lyx.org>
4255
4256         * BufferView_pimpl.C (dispatch): collapse the various LFUN_XYZ_APPLY
4257           blocks together.
4258           Rearrange the ~includes. Strip out the unnecessary ones.
4259
4260         * factory.C (createInset): reformat.
4261           create new insets for the various LFUN_XYZ_APPLY lfuns.
4262
4263 2003-02-26  John Levon  <levon@movementarian.org>
4264
4265         * lyxrow.h:
4266         * lyxrow.C: add isParStart,isParEnd helpers
4267
4268         * paragraph.h: make isInserted/DeletedText take refs
4269
4270         * paragraph_funcs.h:
4271         * paragraph_funcs.C: remove #if 0'd code
4272
4273         * lyxtext.h:
4274         * text3.C:
4275         * text2.C:
4276         * text.C: use lyxrow helpers above.
4277           Move draw and paint routines to RowPainter.
4278           Make several methods use refs not pointers.
4279           Make backgroundColor() const.
4280           Add markChangeInDraw(), isInInset().
4281           Merge changeRegionCase into changeCase.
4282           Make workWidth() shouldn't-happen code into an Assert.
4283
4284         * rowpainter.h:
4285         * rowpainter.C: new class for painting a row.
4286
4287         * vspace.h:
4288         * vspace.C: make inPixels take a ref
4289
4290 2003-02-26  Angus Leeming  <leeming@lyx.org>
4291
4292         * BufferView_pimpl.C (dispatch): use InsetCommand::localDispatch for
4293         LFUN_REF_APPLY.
4294
4295 2003-02-25  John Levon  <levon@movementarian.org>
4296
4297         * ispell.C: give the forked command a more accurate name
4298
4299 2003-02-22  John Levon  <levon@movementarian.org>
4300
4301         * toc.h:
4302         * toc.C: make TocItem store an id not a Paragraph *
4303           (bug #913)
4304
4305 2003-02-21  Angus Leeming  <leeming@lyx.org>
4306
4307         * commandtags.h: Retire LFUN_CITATION_INSERT, LFUN_CITATION_CREATE,
4308           LFUN_INSERT_BIBTEX, LFUN_BIBTEX_STYLE, LFUN_BIBDB_ADD, LFUN_BIBDB_DEL.
4309           Bring to life LFUN_DIALOG_SHOW_NEW_INSET, LFUN_DIALOG_SHOW_NEXT_INSET,
4310           LFUN_DIALOG_UPDATE, LFUN_DIALOG_HIDE, LFUN_DIALOG_DISCONNECT_INSET,
4311           LFUN_BIBITEM_APPLY, LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY,
4312           LFUN_INDEX_APPLY, LFUN_REF_APPLY, LFUN_TOC_APPLY, LFUN_URL_APPLY,
4313
4314         * BufferView_pimpl.C (dispatch):
4315         * LyXAction.C (init):
4316         * factory.C (createInset):
4317         * lyxfunc.C (getStatus, dispatch):
4318         * text3.C (dispatch): retire old LFUNs and bring new ones to life.
4319
4320 2003-02-21  Angus Leeming  <leeming@lyx.org>
4321
4322         * BufferView_pimpl.C (MenuInsertLyXFile):
4323         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
4324         * lyxfunc.C (menuNew, open, doImport):
4325           no longer pass a LyXView & to fileDlg.
4326
4327 2003-02-21  Angus Leeming  <leeming@lyx.org>
4328
4329         * BufferView_pimpl.C: replace insetbib.h with insetbibtex.h.
4330         * LyXAction.C: change, BIBKEY to BIBITEM.
4331         * buffer.C: replace insetbib.h with insetbibitem.h and insetbibtex.h.
4332         Change InsetBibKey to InsetBibitem.
4333         Change BIBKEY_CODE to BIBITEM_CODE.
4334         * commandtags.h: change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
4335         * factory.C: replace insetbib.h with insetbibitem.h.
4336         Change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
4337         * paragraph.C: replace insetbib.h with insetbibitem.h.
4338         * paragraph.[Ch]: change InsetBibKey to InsetBibitem.
4339         Change bibkey() to bibitem().
4340         * text.C: remove insetbib.h.
4341         * text2.C: replace insetbib.h with insetbibitem.h.
4342         change bibkey() to bibitem().
4343         * text3.C: remove insetbib.h.
4344         change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
4345
4346 2003-02-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4347
4348         * lyxrc.C (output): enclose user email in quotes (in case there are
4349         several words)
4350
4351 2003-02-18  John Levon  <levon@movementarian.org>
4352
4353         * buffer.h: add std::
4354
4355 2003-02-17  John Levon  <levon@movementarian.org>
4356
4357         * SpellBase.h:
4358         * ispell.h:
4359         * ispell.C:
4360         * pspell.h:
4361         * pspell.C: reworking. Especially in ispell, a large
4362           number of clean ups and bug fixes.
4363
4364         * lyxfunc.C: fix revert to behave sensibly
4365
4366 2003-02-17 André Pönitz <poenitz@gmx.net>
4367
4368         * LyXAction.C:
4369         * commandtags.h: new LFUN_INSERT_BIBKEY
4370
4371         * layout.h:
4372         * lyxlayout.C:
4373         * buffer.C:
4374         * factory.C:
4375         * text.C:
4376         * text2.C:
4377         * text3.C:
4378         * paragraph.[Ch]:
4379         * paragraph_func.C: remove special bibkey handling
4380
4381 2003-02-17  John Levon  <levon@movementarian.org>
4382
4383         * text.C (Delete): fix case where delete at the end of
4384           the very first paragraph would not merge the pars
4385
4386 2003-02-17  John Levon  <levon@movementarian.org>
4387
4388         * lyxrow.C: fix lastPrintablePos()
4389
4390 2003-02-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4391
4392         * bufferparams.C (writeLaTeX): add a std:here
4393
4394         * buffer.C: and remove a using directive there
4395
4396 2003-02-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4397
4398         * buffer.C (makeLaTeXFile): move the code that generates the
4399           preamble...
4400
4401         * bufferparams.C (writeLaTeX): ... in this new method
4402
4403         * LaTeXFeatures.C (getEncodingSet): make const
4404           (getLanguages): make const
4405
4406         * MenuBackend.C (binding): returns the binding associated to this
4407           action
4408           (add): sets the status of each item by calling getStatus. Adds
4409           some intelligence.
4410           (read): add support for OptSubMenu
4411           (expand): remove extra separator at the end of expanded menu
4412
4413 2003-02-15  John Levon  <levon@movementarian.org>
4414
4415         * BufferView.C:
4416         * BufferView_pimpl.C:
4417         * bufferlist.h:
4418         * bufferlist.C: remove pointless BufferStorage bloat. Remove
4419           inset code that had no actual effect. Remove unneeded status
4420           code.
4421
4422 2003-02-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4423
4424         * buffer.C (makeLaTeXFile): fix counting of number of line feeds
4425           in preamble
4426
4427 2003-02-14  Michael Schmitt <michael.schmitt@teststep.org>
4428
4429         * text.C (drawLengthMarker): also draw an arrow marker for
4430           symbolic lengths (medskip...)
4431
4432 2003-02-14  John Levon  <levon@movementarian.org>
4433
4434         * tabular.h:
4435         * tabular.C: better method names
4436
4437 2003-02-14  John Levon  <levon@movementarian.org>
4438
4439         * BufferView_pimpl.C:
4440         * bufferlist.C:
4441         * buffer.C:
4442         * converter.C:
4443         * lyx_cb.C:
4444         * lyxfunc.C: change prohibit/allowInput to busy(bool), as
4445           it's a more accurate name. Remove some pointless uses.
4446
4447 2003-02-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4448
4449         * text2.C (LyXText): change order of initilizers to shut off
4450           warnings
4451
4452 2003-02-14  John Levon  <levon@movementarian.org>
4453
4454         * buffer.C: use ParIterator for getParFromID()
4455
4456         * paragraph.h:
4457         * paragraph.C:
4458         * paragraph_pimpl.h:
4459         * paragraph_pimpl.C: remove unused getParFromID()
4460
4461 2003-02-14  John Levon  <levon@movementarian.org>
4462
4463         * buffer.C: remove some very old #if 0'd parse code
4464
4465 2003-02-13  John Levon  <levon@movementarian.org>
4466
4467         * text.h:
4468         * text.C:
4469         * text2.C: move hfillExpansion(), numberOfSeparators(),
4470           rowLast(), rowLastPrintable(), numberofHfills(),
4471           numberOfLabelHfills() ...
4472
4473         * lyxrow.h:
4474         * lyxrow.C: ... to member functions here.
4475
4476         * paragraph.h:
4477         * paragraph.C:
4478         * lyxtext.h:
4479         * text.C: remove LyXText::beginningOfMainBody(), and call
4480           p->beginningOfMainBody() directly. Move the check for
4481           LABEL_MANUAL into the latter.
4482
4483         * text.h:
4484         * text.C:
4485         * text2.C:
4486         * vspace.C:
4487         * BufferView.h:
4488         * BufferView.C: make defaultHeight() be a free defaultRowHeight()
4489
4490         * text.h:
4491         * text.C:
4492         * text2.C:
4493         * text3.C:
4494         * frontends/screen.C: move bv_owner private, introduce isTopLevel()
4495           to make it clear we're testing for outmost-lyxtext vs. inset's lyxtext
4496
4497 2003-02-13  John Levon  <levon@movementarian.org>
4498
4499         * CutAndPaste.C: remove debug
4500
4501 2003-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4502
4503         * paragraph.C (asString): remove two unused variables
4504
4505         * lyxtextclass.C (readTitleType):
4506           (Read):
4507           (LyXTextClass): handle new members titletype_ and titlename_
4508
4509         * buffer.C (latexParagraphs): honor LyXTextClass::titletype
4510
4511 2003-02-09  John Levon  <levon@movementarian.org>
4512
4513         * buffer.h:
4514         * buffer.C: replace hand-coded list with a map for the dep clean
4515
4516 2003-02-08  John Levon  <levon@movementarian.org>
4517
4518         * LaTeX.C: consolidate code into showRunMessage() helper
4519
4520 2003-02-08  John Levon  <levon@movementarian.org>
4521
4522         * lyxfind.C:
4523         * lyxtext.h:
4524         * text2.C:
4525         * BufferView.C: change setSelectionOverString() to setSelectionRange()
4526           and pass the size in explicitly
4527
4528         * BufferView_pimpl.h:
4529         * BufferView_pimpl.C:
4530         * BufferView.h:
4531         * BufferView.C: add getCurrentChange()
4532
4533         * BufferView_pimpl.h:
4534         * BufferView_pimpl.C: handle change lfuns
4535
4536         * CutAndPaste.C: merge the cut and copy code. Rework the cut code
4537           for changes. Mark pasted paragraphs as new.
4538
4539         * support/lyxtime.h:
4540         * support/lyxtime.C:
4541         * DepTable.C: abstract time_t as lyx::time_type
4542
4543         * LColor.h:
4544         * LColor.C: add colours for new text, deleted text, changebars
4545
4546         * LaTeXFeatures.C: add dvipost as a simple feature. Make the color
4547           package use "usenames" option.
4548
4549         * commandtags.h:
4550         * lyxfunc.C:
4551         * LyXAction.C: add change lfuns
4552
4553         * Makefile.am:
4554         * author.h:
4555         * author.C: author handling
4556
4557         * buffer.h:
4558         * buffer.C: add a per-buffer author list, with first entry as
4559           current author. Handle new .lyx tokens for change tracking. Output
4560           author list to .lyx file. Output dvipost stuff to .tex preamble.
4561           Bump lyx format to 222.
4562
4563         * bufferlist.h:
4564         * bufferlist.C: add setCurrentAuthor() to reset current author details
4565           in all buffers.
4566
4567         * bufferparams.h:
4568         * bufferparams.C: add param for tracking
4569
4570         * bufferview_funcs.C: output change info in minibuffer
4571
4572         * Makefile.am:
4573         * changes.h:
4574         * changes.C: add change-tracking structure
4575
4576         * debug.h:
4577         * debug.C: add CHANGES debug flag
4578
4579         * lyxfind.h:
4580         * lyxfind.C: add code for finding the next change piece
4581
4582         * lyxrc.h:
4583         * lyxrc.C: add user_name and user_email
4584
4585         * lyxrow.h:
4586         * lyxrow.C: add a metric for the top of the text line
4587
4588         * lyxtext.h:
4589         * text.C: implement accept/rejectChange()
4590
4591         * lyxtext.h:
4592         * text.C: paint changebars. Paint new/deleted text in the chosen
4593         colours. Strike through deleted text.
4594
4595         * paragraph.h:
4596         * paragraph.C:
4597         * paragraph_pimpl.h:
4598         * paragraph_pimpl.C: output change markers in .lyx and .tex. Pass
4599           in the current change to the insert functions. Rework erase to
4600           mark text as deleted, adding an eraseIntern() and a range-based
4601           erase(). Implement per-paragraph change lookup and
4602           accept/reject.
4603
4604         * paragraph_funcs.C: Fixup paste for change tracking.
4605
4606         * tabular.C: mark added row/columns as new.
4607
4608         * text.C: fix rowLast() to never return -1. Don't allow
4609           spellchecking of deleted text. Track transpose changes. Don't
4610           allow paragraph break or merge where appropriate.
4611
4612         * text2.C: leave cursor at end of selection after a cut.
4613
4614 2003-02-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4615
4616         * text.C (getLengthMarkerHeight):
4617         (drawLengthMarker): make the `symbolic' lengths (small/med/big)
4618         visible on screen too.
4619
4620 2003-02-07  John Levon  <levon@movementarian.org>
4621
4622         * text.C: s/LYX_PAPER_MARGIN/PAPER_MARGIN/g
4623
4624 2003-02-05  Angus Leeming  <leeming@lyx.org>
4625
4626         * lyxserver.C (read_ready): revert my patch of 11 September last year
4627         as it sends PC cpu through the roof. Presumably this means that
4628         the lyxserver will no longer run on an Alpha...
4629
4630 2003-01-30  Angus Leeming  <leeming@lyx.org>
4631
4632         * factory.C (createInset): create an InsetCommandParam of type "index"
4633         and use it to 'do the right thing'.
4634
4635         * text2.C (getStringToIndex): ensure that cursor position is always
4636         reset to the reset_cursor position.
4637
4638 2003-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4639
4640         * lyxfunc.C (getStatus): "buffer-export custom" should never be
4641         disabled.
4642
4643 2003-01-20  Michael Schmitt <michael.schmitt@teststep.org>
4644
4645         * bufferview.C:
4646         * lyxcb.C:
4647         * lyxfunc.C: Output messages with identical spelling, punctuation,
4648         and spaces
4649
4650 2003-01-22  Michael Schmitt  <Michael.Schmitt@teststep.org>
4651
4652         * MenuBackend.C (expandFormats): List only viewable export formats
4653         in "View" menu
4654
4655         * buffer.C (parseSingleLyXformat2Token): Fix misleading error
4656         message
4657
4658         * lyxfunc.C (getStatus): Make sure that formats other than
4659         "fax" can also be disabled
4660
4661 2003-01-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4662
4663         * text3.C (dispatch): put the lfuns that insert insets in 3
4664         groups, and call doInsertInset with appropriate arguments.
4665         (doInsertInset): new function, that creates an inset and inserts
4666         it according to some boolean parameters.
4667
4668 2003-01-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
4669
4670         * buffer.C (readFile): remember to pass on 'par' when calling
4671         readFile recursively.
4672
4673 2003-01-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4674
4675         * MenuBackend.C (expandFormats): add "..." to import formats.
4676
4677 2003-01-15  Dekel Tsur  <dekelts@tau.ac.il>
4678
4679         * paragraph.C (asString): Remove XForms RTL hacks.
4680
4681 2003-01-13  Alfredo Braunstein <abraunst@libero.it>
4682         * buffer.C: fix typo
4683
4684 2003-01-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
4685
4686         * Makefile.am (LIBS): delete var
4687         (lyx_LDADD): add @LIBS@ here instead.
4688
4689 2003-01-08  Michael Schmitt <Michael.Schmitt@teststep.org>
4690
4691         * Clarify the meaning of "wheel mouse jump"
4692
4693 2003-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4694
4695         * lyxfunc.C (getStatus): fix disabling of cut/paste of cells in a
4696         tabular in a float
4697
4698 2003-01-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4699
4700         * importer.C (Loaders): do not preallocate 3 elements in the
4701         vector, since one ends up with 6 elements otherwise
4702
4703 2002-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4704
4705         * DepTable.C (write): write the file name as last element of the
4706         .dep file (because it may contain spaces)
4707         (read): read info in the right order
4708
4709 2003-01-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4710
4711         * paragraph_pimpl.C (simpleTeXBlanks):
4712         (simpleTeXSpecialChars):
4713         * paragraph.C (simpleTeXOnePar): make `column' unsigned.
4714
4715         * tabular.C (latex): add some missing case statements. Reindent.
4716
4717         * MenuBackend.C (expandToc): remove unused variable.
4718
4719 2003-01-06  Michael Schmitt <Michael.Schmitt@teststep.org>
4720
4721         * LColor.C:
4722         * LaTeX.C:
4723         * LyXAction.C:
4724         * MenuBackend.C:
4725         * buffer.C:
4726         * exporter.C:
4727         * lyxfunc.C:
4728         * lyxrc.C: fix inconsistent usage of spaces, colons, capitalization,
4729         and the like.
4730
4731 2003-01-05  John Levon  <levon@movementarian.org>
4732
4733         * BufferView.h:
4734         * BufferView.C: add getEncoding()
4735
4736         * kbsequence.h:
4737         * kbsequence.C: do not store last keypress
4738
4739         * lyxfunc.h:
4740         * lyxfunc.C: store last keypress here instead. Pass encoding
4741           to getISOEncoded()
4742
4743 2002-12-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4744
4745         * lyx_main.C (init): remove annoying error message when following
4746         symbolic links (bug #780)
4747
4748 2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4749
4750         * text.C (insertChar):
4751         * lyxrc.C (getDescription): remove extra spaces
4752
4753 2002-12-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4754
4755         * lyxrc.C (getDescription): remove extra spaces
4756
4757 2002-12-20  John Levon  <levon@movementarian.org>
4758
4759         * text3.C: hack fix for page up/down across tall rows
4760
4761 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4762
4763         * text2.C (pasteEnvironmentType): avoid crash if layout-copy has
4764         not been invoked
4765
4766 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4767
4768         * lyxfunc.C (getStatus): query lyx_gui::getStatus() to catter for
4769         unimplemented lfuns. Make LFUN_THESAURUS_ENTRY status unknown if
4770         thesaurus is not compiled in
4771
4772 2002-12-17  Alfredo Braunstein <abraunst@libero.it>
4773
4774         * lyxfunc.C: correct  inversion of WORDFINDBACK/FORWARD
4775
4776 2002-12-16  Angus Leeming  <leeming@lyx.org>
4777
4778         * lyxrc.[Ch]:
4779         * lyx_main.C (init): remove override_x_deadkeys stuff.
4780
4781 2002-12-12  John Levon  <levon@movementarian.org>
4782
4783         * lyxfunc.C: use LyXKeySym->isText() as last-ditch
4784           insert. Only remove shift modifier under strict
4785           circumstances.
4786
4787 2002-12-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
4788
4789         * MenuBackend.C (expandToc): fix crash.
4790
4791 2002-12-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
4792
4793         * MenuBackend.C (expandToc): gettext on float names.
4794
4795 2002-12-03  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
4796
4797         * lyxlength.[Ch]: set default unit to UNIT_NONE,
4798         implement bool empty() [bug 490]
4799
4800 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4801
4802         * text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
4803
4804 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4805
4806         * several files: ws changes
4807
4808 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4809
4810         * text2.C (setCounter): clean up a bit, use boost.format.
4811         (updateCounters): initialize par upon declaration.
4812
4813         * CutAndPaste.C (SwitchLayoutsBetweenClasses): set the layout also
4814         if the layout exists. We do not just store the layout any more.
4815         (SwitchLayoutsBetweenClasses): use boost.format
4816
4817 2002-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4818
4819         * converter.C (convert): if from and to files are the same, use a
4820         temporary files as intermediary
4821
4822 2002-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4823
4824         * commandtags.h:
4825         * LyXAction.C (init): remove LFUN_VECTOR (bug 662)
4826
4827 2002-11-27  Dekel Tsur  <dekelts@tau.ac.il>
4828
4829         * lyxrc.[Ch]: Add {roman,sans,typewriter}_font_foundry variables.
4830
4831 2002-11-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
4832
4833         * tabular.C (asciiPrintCell): use string(size, char) instead of
4834         explicit loop.
4835
4836         * sgml.C (openTag): fix order of arguments to string constructor
4837         (closeTag): ditto
4838
4839         * lyxfunc.C (dispatch): use boost.format
4840
4841         * lots of files: change "c" -> 'c'
4842
4843 2002-11-25  Dekel Tsur  <dekelts@tau.ac.il>
4844
4845         * encoding.C: Patch from Isam Bayazidi: Fix Arabic shaping.
4846
4847 2002-11-25  Angus Leeming  <leeming@lyx.org>
4848
4849         * BoostFormat.h: wrap code inside #ifdef __GNUG__ block.
4850
4851         * lyx_main.C (init): compile fix.
4852
4853 2002-11-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4854
4855         * lyx_cb.C (start): boost.formatify
4856         do not include <iostream>
4857
4858         * lengthcommon.C: ws only
4859
4860         * boost-inst.C,BoostFormat.h: add more explict instantations
4861
4862 2002-11-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
4863
4864         * lots of files: handle USE_BOOST_FORMAT
4865
4866 2002-11-21  John Levon  <levon@movementarian.org>
4867
4868         * pspell.C: fix compile
4869
4870 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4871
4872         * lyxfunc.C (dispatch): use boost::format
4873         (open): ditto
4874         (doImport): ditto
4875
4876         * lyxfont.C (stateText): use boost::format
4877
4878         * lyx_main.C (LyX): use boost::format
4879         (init): ditto
4880         (queryUserLyXDir): ditto
4881         (readRcFile): ditto
4882         (parse_dbg): ditto
4883         (typedef boost::function): use the recommened syntax.
4884
4885         * importer.C (Import): use boost::format
4886
4887         * debug.C (showLevel): use boost::format
4888
4889         * converter.C (view): use boost::format
4890         (convert): ditto
4891         (move): ditto
4892         (scanLog): ditto
4893
4894         * bufferview_funcs.C (currentState): use boost::format
4895
4896         * bufferlist.C (emergencyWrite): use boost::format
4897
4898         * buffer.C (readLyXformat2): use boost::format
4899         (parseSingleLyXformat2Token): ditto
4900
4901         * Makefile.am (lyx_SOURCES): add BoostFormat.h and boost-inst.C
4902
4903         * LaTeX.C (run): use boost::format
4904
4905         * Chktex.C (scanLogFile): use boost::format
4906
4907         * BufferView_pimpl.C (savePosition): use boost::format
4908         (restorePosition): ditto
4909         (MenuInsertLyXFile): ditto
4910
4911         * BoostFormat.h: help file for explicit instation.
4912
4913 2002-11-21  Dekel Tsur  <dekelts@tau.ac.il>
4914
4915         * tabular.C (latex): Support for block alignment in fixed width
4916         columns.
4917
4918 2002-11-17  John Levon  <levon@movementarian.org>
4919
4920         * BufferView_pimpl.C:
4921         * lyx_cb.C:
4922         * lyxfunc.C: split filedialog into open/save
4923
4924 2002-11-08  Juergen Vigna  <jug@sad.it>
4925
4926         * undo_funcs.C (textHandleUndo): fixed problems with undo introduced
4927         by my last patch (hopefully).
4928
4929 2002-11-08  John Levon  <levon@movementarian.org>
4930
4931         * iterators.h:
4932         * iterators.C:
4933         * buffer.h:
4934         * buffer.C:
4935         * paragraph.h:
4936         * paragraph.C:
4937         * toc.h:
4938         * toc.C: ParConstIterator, and use it (from Lars)
4939
4940 2002-11-07  Ben Stanley  <bds02@uow.edu.au>
4941
4942         * lyxtextclass.[Ch]: revise and add doxygen comments
4943
4944 2002-11-07  John Levon  <levon@movementarian.org>
4945
4946         * text.C: fix progress value for spellchecker
4947
4948         * toc.C: fix navigate menu for insetwrap inside minipage
4949
4950         * paragraph_funcs.C: added FIXME for suspect code
4951
4952 2002-11-07  John Levon  <levon@movementarian.org>
4953
4954         * BufferView_pimpl.C: fix redrawing of insets
4955           on buffer switch
4956
4957 2002-11-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4958
4959         * text2.C (updateCounters): fix bug 668
4960
4961 2002-11-04  Dekel Tsur  <dekelts@tau.ac.il>
4962
4963         * text3.C (dispatch): Do not make the buffer dirty when moving the
4964         cursor.
4965
4966 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4967
4968         * vc-backend.C: STRCONV
4969         (scanMaster): ditto
4970
4971         * text2.C (setCounter): STRCONV
4972
4973         * paragraph.C (asString): STRCONV
4974
4975         * lyxlength.C (asString): STRCONV
4976         (asLatexString): ditto
4977
4978         * lyxgluelength.C (asString): STRCONV
4979         (asLatexString): ditto
4980
4981         * lyxfunc.C (dispatch): STRCONV
4982         (open): ditto
4983
4984         * lyxfont.C (stateText): STRCONV
4985
4986         * importer.C (Import): STRCONV
4987
4988         * counters.C (labelItem): STRCONV
4989         (numberLabel): ditto
4990         (numberLabel): remove unused ostringstream o
4991
4992         * chset.C: STRCONV
4993         (loadFile): ditto
4994
4995         * bufferview_funcs.C (currentState): STRCONV
4996
4997         * buffer.C (readFile): STRCONV
4998         (asciiParagraph): ditto
4999         (makeLaTeXFile): ditto
5000
5001         * Spacing.C (writeEnvirBegin): STRCONV
5002
5003         * LaTeXFeatures.C (getLanguages): STRCONV
5004         (getPackages): ditto
5005         (getMacros): ditto
5006         (getBabelOptions): ditto
5007         (getTClassPreamble): ditto
5008         (getLyXSGMLEntities): ditto
5009         (getIncludedFiles): ditto
5010
5011         * LaTeX.C: STRCONV
5012         (run): ditto
5013         (scanAuxFile): ditto
5014         (deplog): ditto
5015
5016         * LString.h: add the STRCONV macros
5017
5018         * BufferView_pimpl.C (savePosition): STRCONV
5019         (restorePosition): ditto
5020         (MenuInsertLyXFile): ditto
5021
5022         * vc-backend.C (scanMaster): change from submatch[...] to
5023         submatch.str(...)
5024
5025         * funcrequest.C: include config.h
5026
5027         * factory.C: include config.h
5028
5029         * chset.C (loadFile): change from submatch[...] to submatch.str(...)
5030
5031         * box.C: include config.h
5032
5033         * LaTeX.C (scanAuxFile): change from submatch[...] to
5034         submatch.str(...)
5035         (deplog): ditto
5036
5037 2002-10-25  Angus Leeming  <leeming@lyx.org>
5038
5039         * BufferView_pimpl.C (cursorToggle): remove reapSpellchecker hack.
5040
5041         * ispell.[Ch] (setError): new method.
5042         * ispell.C (c-tor): move out child process into new class LaunchIspell.
5043         Use setError() insetead of goto END.
5044
5045         * lyx_cb.C (AutoSave): move out child process into new class
5046         AutoSaveBuffer.
5047
5048 2002-10-30  John Levon  <levon@movementarian.org>
5049
5050         * text3.C: make start appendix undoable
5051
5052 2002-10-24  Dekel Tsur  <dekelts@tau.ac.il>
5053
5054         * lyxlength.C (inPixels): Fix returned value.
5055
5056         * paragraph.C (TeXOnePar): Fix bug with language changes in nested
5057         environment.
5058
5059 2002-10-24  Angus Leeming  <leeming@lyx.org>
5060
5061         * lyxgluelength.h: no need to forward declare BufferParams
5062         or BufferView, so don't.
5063
5064 2002-10-21  John Levon  <levon@movementarian.org>
5065
5066         * BufferView.C: menuUndo ->undo, redo
5067
5068         * BufferView.h: document, remove dead, make some methods private
5069
5070         * paragraph_funcs.h:
5071         * paragraph_funcs.C:
5072         * CutAndPaste.C: s/pasteParagraph/mergeParagraph
5073
5074         * buffer.h:
5075         * buffer.C:
5076         * sgml.h:
5077         * sgml.C: move sgml open/close tag into sgml.C
5078
5079         * bufferview_funcs.h: unused prototype
5080
5081         * lyxfunc.h:
5082         * lyxfunc.C: remove unused
5083
5084         * lyxtext.h:
5085         * text.C: remove unused
5086
5087 2002-10-21  John Levon  <levon@movementarian.org>
5088
5089         * BufferView.h:
5090         * BufferView.C:
5091         * BufferView_pimpl.h:
5092         * BufferView_pimpl.C: fix mouse wheel handling based on
5093           patch from Darren Freeman
5094
5095 2002-10-09  Dekel Tsur  <dekelts@tau.ac.il>
5096
5097         * lyx_main.C (queryUserLyXDir): Fix automatic reconfiguration.
5098
5099 2002-10-17  Dekel Tsur  <dekelts@tau.ac.il>
5100
5101         * lyxlength.C (inPixels): Fix hanfling of negative length.
5102         Fix LyXLength::MU case.
5103
5104 2002-10-16  John Levon  <levon@movementarian.org>
5105
5106         * buffer.C: remove \\protected_separator parsing done by lyx2lyx now
5107
5108 2002-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5109
5110         * converter.C (view): add support for $$i (file name) and $$p
5111         (file path) for the viewer command. If $$i is not specified, then
5112         it is appended to the command (for compatibility with old syntax)
5113
5114 2002-10-14  Juergen Vigna  <jug@sad.it>
5115
5116         * undo_funcs.C (textHandleUndo): alter the order in which the
5117         new undopar is added to the LyXText, as we have to set first
5118         the right prev/next and then add it as otherwise the rebuild of
5119         LyXText is not correct. Also reset the cursor to the right paragraph,
5120         with this IMO we could remove the hack in "redoParagraphs()".
5121
5122 2002-10-09  Angus Leeming  <leeming@lyx.org>
5123
5124         * Bufferview_pimpl.C (dispatch): call InsetCitation::setLoadingBuffer
5125         to turn off an optimisation if a new inset is to be inserted.
5126
5127 2002-10-11 André Pönitz <poenitz@gmx.net>
5128
5129         * lyxtext.h: make some functions public to allow access
5130         from inset/lyxtext for handling LFUN_PRIOR/NEXT
5131
5132 2002-10-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5133
5134         * text3.C (dispatch): when changing layout, avoid an infinite loop
5135         [bug #652]
5136
5137 2002-10-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5138
5139         * lyxrc.C (read): treat a viewer or converter command of "none" as
5140         if it were empty.
5141
5142         * MenuBackend.C (expandFormats): for an update, also allow the
5143         formats that are not viewable
5144
5145         * lyx_main.C (queryUserLyXDir): re-run automatically the configure
5146         script if it is newer than the lyxrc.defaults in user directory
5147
5148 2002-10-07 André Pönitz <poenitz@gmx.net>
5149
5150         * text.C: Vitaly Lipatov's small i18n fix
5151
5152 2002-09-25  Angus Leeming  <leeming@lyx.org>
5153
5154         * ispell.h: doxygen fix.
5155
5156 2002-09-25  Dekel Tsur  <dekelts@tau.ac.il>
5157
5158         * buffer.h (readFile): Add a new argument to the method, to allow
5159         reading of old-format templates.
5160
5161 2002-09-24  Dekel Tsur  <dekelts@tau.ac.il>
5162
5163         * toc.C (getTocList): Get TOC from InsetWrap.
5164
5165 2002-09-16  John Levon  <levon@movementarian.org>
5166
5167         * lyxfunc.C: check tabular for cut/copy too
5168
5169 2002-09-12  John Levon  <levon@movementarian.org>
5170
5171         * LyXAction.C: tidy
5172
5173         * factory.h:
5174         * factory.C: add header
5175
5176         * paragraph_funcs.h:
5177         * paragraph_funcs.C: cleanup
5178
5179 2002-09-11  John Levon  <levon@movementarian.org>
5180
5181         * PrinterParams.h: odd/even default to true
5182
5183 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
5184
5185         * PrinterParams.h: update printer parameters for new xforms dialog
5186
5187 2002-09-11  Angus Leeming  <leeming@lyx.org>
5188
5189         * lyxserver.C (read_ready): re-write to make it more transparent
5190         and to make it work in coherent fashion under Tru64 Unix.
5191
5192 2002-09-11  André Pönitz <poenitz@gmx.net>
5193
5194         * commandtags.h:
5195         * LyXAction.C:
5196         * text3.C: implement LFUN_WORDSEL
5197
5198 2002-09-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
5199
5200         * lyxtextclass.h: don't include FloatList.h, forward declare instead.
5201         make floatlist_ a boost::shared_ptr<FloatList>
5202
5203         * lyxtextclass.C: include FloatList.h
5204         (LyXTextClass): initialize floatlist_
5205         (TextClassTags): add TC_NOFLOAT
5206         (Read): match "nofloat" to TC_NOFLOAT and use it.
5207         (readFloat): modify call to floatlist_
5208         (floats): ditto
5209         (floats): ditto
5210
5211         * FloatList.[Ch] (FloatList): remove commented out float
5212         initialization.
5213         (erase): new function
5214
5215 2002-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5216
5217         * MenuBackend.C (expandToc): fix crash when there is no document
5218         open
5219
5220 2002-09-10  Dekel Tsur  <dekelts@tau.ac.il>
5221
5222         * many files: Add insetwrap.
5223
5224 2002-09-09  John Levon  <levon@movementarian.org>
5225
5226         * text2.C: remove confusing and awkward depth wraparound
5227
5228 2002-09-09  John Levon  <levon@movementarian.org>
5229
5230         * BufferView_pimpl.C: Don't use empty arg for LFUN_CHILD_INSERT
5231
5232         * buffer.h:
5233         * buffer.C: remove getIncludeonlyList()
5234
5235         * paragraph.C:
5236         * lyxfunc.C: remove headers
5237
5238 2002-09-09  Juergen Vigna  <jug@sad.it>
5239
5240         * text.C (getColumnNearX): fix form Michael this is most
5241         probably a cut&paste bug.
5242
5243 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
5244
5245         * remove all INHERIT_LANG and INHERIT_LANGUAGE commented code
5246
5247         * LaTeXFeatures.C (useLayout): let tclass and lyt be a const
5248         references, ws changes.
5249
5250         * text2.C (init): update counters after init
5251         (insertParagraph): no need to set counter on idividual paragraphs.
5252         (setCounter): access the counters object in the textclass object
5253         on in the buffer object.
5254         (updateCounters): ditto
5255
5256         * lyxtextclass.C: include counters.h, add variable ctrs_ as
5257         shared_ptr<Counters> to avoid loading counters.h in all
5258         compilation units.
5259         (LyXTextClass): initialize ctrs_
5260         (TextClassTags): add TC_COUNTER, and ...
5261         (Read): use it here.
5262         (CounterTags): new tags
5263         (readCounter): new function
5264         (counters): new funtion
5265         (defaultLayoutName): return a const reference
5266
5267         * counters.C (Counters): remove contructor
5268         (newCounter): remove a couple of unneeded statements.
5269         (newCounter): simplify a bit.
5270         (numberLabel): some small formatting changes.
5271
5272         * buffer.[Ch]: remove all traces of counters, move the Counters
5273         object to the LyXTextClass.
5274
5275 2002-09-06  Alain Castera  <castera@in2p3.fr>
5276
5277         * tabular.C: uses \tabularnewline; uses >{...} construct from array
5278         package to set the horizontal alignment on fixed width columns.
5279
5280         * lyx_sty.C:
5281         * lyx_sty.h: added tabularnewline macro def.
5282
5283         * LaTeXFeatures.C: added NeedTabularnewline macro feature
5284
5285 2002-09-06  John Levon  <levon@movementarian.org>
5286
5287         * LyXAction.C: tooltips for sub/superscript
5288
5289         * MenuBackend.C: a bit more verbose
5290
5291         * lyxfunc.C: tiny clean
5292
5293         * undo_funcs.C: document undo_frozen
5294
5295 2002-09-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
5296
5297         * counters.C (Counters): add missing algorithm counter.
5298
5299         * text2.C (setCounter): lookup the counter with layouts latexname
5300         instead of by section number.
5301         (setCounter): use a hackish way to lookup the correct enum
5302         counter.
5303         a float name->type change
5304         reset enum couners with counter name directly instead of depth value.
5305
5306         * counters.C (Counters): remove the push_backs, change to use the
5307         float type not the float name.
5308         (labelItem): remove unused string, float name->type change
5309
5310         * counters.h: don't include vector, loose the enums and sects vectors
5311
5312 2002-09-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
5313
5314         * lyxtextclass.C (TextClassTags): add TC_FLOAT
5315         (Read): add float->TC_FLOAT to textclassTags
5316         (Read): and handle it in the switch
5317         (readFloat): new function
5318
5319         * FloatList.C (FloatList): comment out the hardcoded float
5320         definitions.
5321
5322         * lyxlayout.h: ws change.
5323
5324 2002-08-29  Dekel Tsur  <dekelts@tau.ac.il>
5325
5326         * buffer.C (readFile): Look for lyx2lyx in LYXDIR/lyx2lyx/
5327
5328 2002-09-03  Angus Leeming  <leeming@lyx.org>
5329
5330         * BufferView_pimpl.h: qualified name is not allowed in member
5331         declaration: WorkArea & Pimpl::workarea() const;
5332
5333         * factory.C: added using std::endl directive.
5334
5335         * text3.C: added using std::find and std::vector directives.
5336
5337 2002-08-29  André Pönitz <poenitz@gmx.net>
5338
5339         * lyxtext.h:
5340         * text2.C: remove unused member number_of_rows
5341
5342         * Makefile.am:
5343         * BufferView2.C: remove file, move contents to...
5344         * BufferView.C: ... here
5345
5346         * BufferView_pimpl.C:
5347         * factory.C: move more inset creation to factory
5348
5349         * vspace.C: avoid direct usage of LyXText, ws changes
5350
5351         * BufferView.[Ch]:
5352                 don't provide direct access to WorkArea, use two simple
5353                 acessors haveSelction() and workHeight() instead
5354
5355
5356 2002-08-29  John Levon  <levon@movementarian.org>
5357
5358         * BufferView_pimpl.C (dispatch): do not continue when
5359           no buffer
5360
5361 2002-08-28  André Pönitz <poenitz@gmx.net>
5362
5363         * commandtags.h: new LFUN_MOUSE_DOUBLE, LFUN_MOUSE_TRIPLE
5364
5365         * BufferView.h:
5366         * BufferView_pimpl.[Ch] move work area mouse event to LFUNs
5367
5368 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
5369
5370         * buffer.C: increment LYX_FORMAT to 221
5371
5372         * lyxrc.[Ch]: declare display_graphics as grfx::DisplayType and use
5373         grfx::displayTranslator.find(foo); include graphics/GraphicsTypes.h.
5374
5375         * lyxrc.C: use more "if (...) { } else { }" style (John's advice).
5376
5377         * lyx_main.C: call once the setDisplayTranslator(); is that okay here?
5378
5379 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5380
5381         * factory.C (createInset): use LyXTextClass::floats
5382
5383         * MenuBackend.C (expandFloatListInsert):
5384         (expandFloatInsert):
5385         (expandToc):
5386
5387         * text2.C (setCounter):
5388
5389         * LaTeXFeatures.C (useFloat):
5390         (getFloatDefinitions):
5391
5392         * BufferView_pimpl.C (dispatch): use LyXTextClass::floats()
5393
5394         * lyxtextclass.[Ch]: rename layoutlist to layoutlist_; add
5395         floatlist_, with accessor floats().
5396
5397         * FloatList.h: remove global FloatList
5398
5399 2002-08-26  André Pönitz <poenitz@gmx.net>
5400
5401         * paragraph.[Ch]: Martin's patch for the \end_deeper bug
5402
5403         * BufferView.h:
5404         * BufferView2.C:
5405         * BufferView_pimpl.C:
5406         * text3.C: mun hanfling of LFUN_CUT/COPY/PASTE to LyXText
5407
5408 2002-08-25  John Levon  <levon@movementarian.org>
5409
5410         * LyXAction.C: fix margin note description
5411
5412 2002-08-24  John Levon  <levon@movementarian.org>
5413
5414         * buffer.C:
5415         * bufferlist.C:
5416         * bufferview_funcs.C:
5417         * lyxfont.C:
5418         * undo_funcs.C: cleanups
5419
5420         * lyxfunc.C: disable CUT/COPY when no selection
5421
5422 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
5423
5424         * lyxlength.[Ch]: use better (three letters) mnemonics for percentage units
5425         in "enum UNIT"; e.g. PTW for Percent of TextWidth
5426
5427         * lyxrc.C: graphics display is now monochrome|grayscale|color|none.
5428         Add backward compatibility to "mono", "gray" and "no".
5429
5430 2002-08-24  Dekel Tsur  <dekelts@tau.ac.il>
5431
5432         * buffer.C (readFile): Always run lyx2lyx if file_format < LYX_FORMAT
5433         (and file_format >= 200).
5434
5435 2002-08-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5436
5437         * lyxlayout.C (Read): treat LT_OPTARGS as an integer, not a bool
5438
5439 2002-08-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5440
5441         * lyxfunc.C (getStatus): handle LFUN_INSET_OPTARG
5442
5443 2002-08-20  Martin Vermeer  <martin.vermeer@hut.fi>
5444
5445         * BufferView_pimpl.C:
5446         * LyXAction.C:
5447         * buffer.C:
5448         * commandtags.h:
5449         * lyxfunc.C:
5450         * paragraph.[Ch]:
5451         * text2.C:
5452         * insets/insetoptarg.[Ch]: Added "optional argument" collapsible
5453         inset and code to make it  work with the paragraph code. The inset
5454         can be anywhere in the paragraph, but will only do the expected
5455         thing in LaTeX if the layout file contains the parameter line
5456                         OptionalArgs    1
5457         (or more generally, a nonzero value) for that layout.
5458
5459 2002-08-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5460
5461         * paragraph.h: remove the declaration of undefined counters class
5462         function.
5463
5464 2002-08-22  Martin Vermeer <martin.vermeer@hut.fi>
5465
5466         * text2.C (setCounter):  fixed enumeration mis-count as reported by
5467         Dr. Richard Hawkins.
5468
5469 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5470
5471         * paragraph_funcs.h: remove some unneeded includes
5472
5473         * text.C (backspace): pasteParagraph now in global scipe
5474
5475         * CutAndPaste.C (cutSelection): pasteParagraph now in global scope
5476         (pasteSelection): ditto
5477
5478         * paragraph.[Ch] (pasteParagraph): move function to global scope ...
5479         * paragraph_funcs.C (pasteParagraph): ... here
5480
5481 2002-08-20  André Pönitz <poenitz@gmx.net>
5482
5483         * commandtags.h: new LFUNs for swapping/copying table row/colums
5484
5485         * LyXAction.C:
5486         * lyxfunc.C: support for new lfuns
5487
5488 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
5489
5490         * tabular.C:
5491         * buffer.[Ch]: remove NO_COMPABILITY stuff
5492
5493 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
5494
5495         * boost.C (throw_exception): new file, with helper function for
5496         boost compiled without exceptions.
5497
5498         * paragraph.h:
5499         * lyxlength.C:
5500         * buffer.C:
5501         * ParameterStruct.h:
5502         * ParagraphParameters.[Ch]: remove NO_PEXTRA_REALLY stuff
5503
5504         * bufferlist.C (emergencyWriteAll): use boost bind
5505
5506         * BufferView_pimpl.C (moveCursorUpdate): remove inline
5507
5508         * text.C: include paragraph_funcs.h
5509         (breakParagraph): breakParagraph is now in global scope
5510
5511         * paragraph_funcs.[Ch]: new files
5512
5513         * paragraph.C (breakParagraph,breakParagraphConservative): move to
5514         global scope
5515
5516         * buffer.C: include paragraph_funcs.h
5517         (insertStringAsLines): breakParagraph is now in global scope
5518
5519         * Makefile.am (lyx_SOURCES): add paragraph_funcs.h and
5520         paragraph_funcs.C
5521
5522         * CutAndPaste.C: include paragraph_funcs.h
5523         (cutSelection): breakParagraphConservative is now in global scope
5524         (pasteSelection): ditto
5525
5526         * buffer.h: declare oprator== and operator!= for
5527         Buffer::inset_iterator
5528
5529         * bufferlist.C (emergencyWrite): don't use fmt(...)
5530
5531         * text3.C: add using std::endl
5532
5533         * BufferView.C (moveCursorUpdate): remove default arg
5534
5535 2002-08-20  André Pönitz <poenitz@gmx.net>
5536
5537         * buffer.[Ch]: move inline functions to .C
5538
5539         * BufferView2.C:
5540         * BufferView_pimpl.C:
5541         * text.C:
5542         * buffer.[Ch]: use improved inset_iterator
5543
5544         * buffer.C:
5545         * paragraph.[Ch]: write one paragraph at a time
5546
5547 2002-08-20  Dekel Tsur  <dekelts@tau.ac.il>
5548
5549         * BufferView_pimpl.C (dispatch): Insert insetbibtex with "plain"
5550         style if style is not specified.
5551
5552 2002-08-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5553
5554         * text2.C (setCounter): when searching for right label for a
5555         caption, make sure to recurse to parent insets (so that a caption
5556         in a minipage in a figure float works) (bug #568)
5557
5558 2002-08-20  André Pönitz <poenitz@gmx.net>
5559
5560         * text3.C: new file for LyXText::dispatch() and helpers
5561
5562         * BufferView.[Ch]: move text related stuff to LyXText::dispatch()
5563
5564         * funcrequest.[Ch]: add message() do avoid direct access to LyXFunc
5565
5566 2002-08-19  André Pönitz <poenitz@gmx.net>
5567
5568         * lyxtext.h:
5569         * text.C: new LyXText::dispatch()
5570
5571         * BufferView_pimpl.C: move handling of LFUN_APPENDIX to LyXText
5572
5573 2002-08-18  Dekel Tsur  <dekelts@tau.ac.il>
5574
5575         * text.C (paintRowSelection): Fix code for rows with both RTL & LTR text.
5576
5577         * BufferView_pimpl.C (smartQuote): Insert typewriter quotes in
5578         Hebrew text.
5579
5580 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5581
5582         * Makefile.am: use $(variables) instead of @substitutions@
5583
5584 2002-08-15  André Pönitz <poenitz@gmx.net>
5585
5586         * lyxfunc.C:
5587         * BufferView_pimpl.C: streamlining mathed <-> outer world
5588         interaction
5589
5590         * commandtags.h:
5591         * LyXAction.C: remove unused LFUN_MATH
5592
5593 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5594
5595         * paragraph.[Ch]: add some NO_NEXT ifdefs.
5596
5597 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5598
5599         * paragraph.C (Paragraph): reformat a bit
5600         (cutIntoMinibuffer): use builtin InsetList function instad of
5601         doing it manually.
5602         (getInset): ditto
5603
5604         * buffer.C: include boost/bind.hpp, add using std::for_each
5605         (writeFileAscii): use ParagraphList iterators
5606         (validate): use for_each for validate traversal of paragraphs
5607         (getBibkeyList): use ParagraphList iterators
5608         (resizeInsets): use for_each to resizeInsetsLyXText for all
5609         paragraphs.
5610         (getParFromID): use ParagraphList iterators
5611
5612         * BufferView2.C (lockInset): use paragraph list and iterators
5613
5614 2002-08-14  John Levon  <levon@movementarian.org>
5615
5616         * lyxserver.C: remove spurious xforms include
5617
5618 2002-08-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5619
5620         * lyxfunc.C (getStatus): disable math-extern outside of math mode
5621
5622 2002-08-13  André Pönitz <poenitz@gmx.net>
5623
5624         * LyXAction.[Ch]:
5625         * lyxfunc.C: further cleaning
5626
5627 2002-08-13  André Pönitz <poenitz@gmx.net>
5628
5629         * funcrequest.h: new constructor
5630
5631         * funcrequest.C: move stuff here from .h
5632
5633         * Makefile.am:
5634         * BufferView_pimpl.C:
5635         * LyXAction.C:
5636         * toc.C:
5637         * lyxfunc.C: subsequent changes
5638
5639         * lyxfunc.h: new view() member function
5640
5641         * lyxfunc.C: subsequent changes
5642
5643 2002-08-13  Angus Leeming  <leeming@lyx.org>
5644
5645         * BufferView2.C:
5646         * BufferView_pimpl.C:
5647         * buffer.C:
5648         * converter.C:
5649         * importer.C:
5650         * lyxfunc.C:
5651         * lyxvc.C:
5652         * toc.C:
5653         * vc-backend.C:
5654         changes due to the changed LyXView interface that now returns references
5655         to member variables not pointers.
5656
5657 2002-08-13  Angus Leeming  <leeming@lyx.org>
5658
5659         * WordLangTuple (word, lang_code): return references to strings,
5660         not strings.
5661
5662         * BufferView.h:
5663         * SpellBase.h:
5664         * lyxtext.h: forward-declare WordLangTuple.
5665
5666         * BufferView2.C:
5667         * ispell.C:
5668         * pspell.C:
5669         * text.C: #include "WordLangTuple.h".
5670
5671         * lyxtext.h:
5672         * text.C: (selectNextWordToSpellcheck): constify return type.
5673
5674 2002-08-12  Martin Vermeer <martin.vermeer@hut.fi>
5675
5676         * buffer.C:
5677         * buffer.h:
5678         * lyxtext.h:
5679         * paragraph.C:
5680         * paragraph_pimpl.h:
5681         * text.C:
5682         * text2.C:
5683         * undo_funcs.C: replaced per-paragraph counter logic by per-buffer, as
5684         suggested by Angus.
5685         Made updateCounter always count from start of buffer, and removed
5686         second argument (par).
5687         Reverted floats number display to '#'. Perhaps I'll try again when the
5688         code base is sanitized a bit.
5689
5690 2002-08-12  Angus Leeming  <leeming@lyx.org>
5691
5692         * buffer.[Ch] (getLabelList): constify.
5693
5694 2002-08-07  André Pönitz <poenitz@gmx.net>
5695
5696         * commandtags.h: new LFUN_MOUSE_(PRESS|MOTION|RELEASE)
5697
5698         * funcrequest.h: extension to keep mouse (x,y) position
5699
5700 2002-08-12  Juergen Vigna  <jug@sad.it>
5701
5702         * BufferView2.C (insertErrors): forbid undo when inserting error
5703         insets.
5704
5705         * CutAndPaste.C (SwitchLayoutsBetweenClasses): ditto
5706
5707 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
5708
5709         * ParagraphList.[Ch]: new files
5710
5711         * Makefile.am (lyx_SOURCES): add ParagraphList.[Ch]
5712
5713         * BufferView2.C (lockInset): ParagraphList changes
5714         * toc.C: ditto
5715         * text2.C: ditto
5716         * bufferlist.C: ditto
5717         * buffer.h: ditto
5718         * buffer.C: ditto
5719
5720 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
5721
5722         * paragraph_pimpl.h: remove inclusion of boost/array.hpp, remove
5723         unused class variable counter_,
5724
5725         * paragraph.[Ch] (getFirstCounter): delete unused function
5726
5727         * counters.C: include LAssert.h
5728         (reset): add a new function with no arg, change other version to
5729         not have def. arg and to not allow empty arg.
5730
5731         * text2.C (setCounter): remove empty arg from call to Counters::reset
5732
5733 2002-08-11  John Levon  <levon@movementarian.org>
5734
5735         * Makefile.am: add WordLangTuple.h
5736
5737 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
5738
5739         * paragraph.C, ToolbarDefaults.h, kbsequence.h, lyx_main.C,
5740         lyxfunc.C lyxlex_pimpl.C: ws changes only.
5741
5742         * insets/insettext.C: InsetList changes
5743
5744         * graphics/GraphicsSupport.C (operator()): InsetList changes
5745
5746         * toc.C (getTocList): InsetList changes
5747
5748         * paragraph_pimpl.[Ch]: InsetList changes
5749
5750         * paragraph.[Ch]: InsetList changes
5751
5752         * buffer.C (inset_iterator): InsetList changes
5753         (setParagraph): ditto
5754         * buffer.h (inset_iterator): ditto
5755         * iterators.C (operator++): ditto
5756         * iterators.h: ditto
5757
5758         * Makefile.am (lyx_SOURCES): add InsetList.C and InsetList.h
5759
5760         * InsetList.[Ch]: new files, most InsetList handling moved out of
5761         paragraph.C.
5762
5763         * BufferView2.C (removeAutoInsets): InsetList changes
5764         (lockInset): ditto
5765         (ChangeInsets): ditto
5766
5767 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
5768
5769         * paragraph_pimpl.h (empty): new function
5770
5771         * paragraph.[Ch] (empty): new function
5772
5773         * other files: use the new Paragraph::empty function
5774
5775 2002-08-09  John Levon  <levon@movementarian.org>
5776
5777         * lyxtext.h: remove unused refresh_height
5778
5779 2002-08-09  John Levon  <levon@movementarian.org>
5780
5781         * Makefile.am:
5782         * sgml.h:
5783         * sgml.C:
5784         * buffer.C:
5785         * paragraph.h:
5786         * paragraph.C: move sgml char escaping out of paragraph
5787
5788         * paragraph.h:
5789         * paragraph.C: remove id setter
5790
5791         * buffer.C:
5792         * paragraph.C:
5793         * paragraph_pimpl.C: remove dead tex_code_break_column
5794
5795         * bufferview_funcs.C: small cleanup
5796
5797         * lyxfunc.C: remove dead proto
5798
5799         * lyxtext.h: make some stuff private. Remove some dead stuff.
5800
5801         * lyxgluelength.C: make as[LyX]String() readable
5802
5803 2002-08-08  John Levon  <levon@movementarian.org>
5804
5805         * LyXAction.h:
5806         * LyXAction.C:
5807         * MenuBackend.C:
5808         * ToolbarDefaults.C:
5809         * lyxfunc.C:
5810         * lyxrc.C:
5811         * toc.C: lyxaction cleanup
5812
5813 2002-08-08  John Levon  <levon@movementarian.org>
5814
5815         * BufferView2.C: small cleanup
5816
5817         * lyxfind.h:
5818         * lyxfind.C: move unnecessary header into the .C
5819
5820 2002-08-08  John Levon  <levon@movementarian.org>
5821
5822         * funcrequest.h: just tedious nonsense
5823
5824         * lyx_main.h:
5825         * lyx_main.C: cleanups
5826
5827         * buffer.C:
5828         * vspace.C: remove dead header lyx_main.h
5829
5830 2002-08-07  Angus Leeming  <leeming@lyx.org>
5831
5832         * Paragraph.[Ch]:
5833         * paragraph_pimpl.h:
5834         Forward declare class Counters in paragraph.h by moving the ctrs member
5835         variable into Paragraph::Pimpl.
5836         (counters): new method, returning a reference to pimpl_->ctrs.
5837
5838         * text2.C: ensuing changes.
5839
5840 2002-08-07  John Levon  <levon@movementarian.org>
5841
5842         * BufferView_pimpl.C (resizeCurrentBuffer): update scrollbar
5843
5844         * BufferView_pimpl.C: announce X selection on double/triple
5845           click
5846
5847         * lyx_main.C: use correct bool in batch dispatch
5848
5849         * counters.h: srcdocs (from Martin Vermeer and Angus Leeming)
5850
5851 2002-08-07  André Pönitz <poenitz@gmx.net>
5852
5853         * funcrequest.h: new class to wrap a kb_action and its argument
5854
5855         * BufferView.[Ch]:
5856         * BufferView_pimpl[Ch]:
5857         * LaTeX.C:
5858         * LyXAction.[Ch]:
5859         * lyxfunc.[Ch]:
5860         * lyxrc.C: subsequent changes
5861
5862
5863 2002-08-07  John Levon  <levon@movementarian.org>
5864
5865         * BufferView_pimpl.C (redoCurrentBuffer): fix screen update when
5866           document options change.
5867
5868 2002-08-06  Martin Vermeer  <martin.vermeer@hut.fi>
5869
5870         * counters.[Ch]
5871         * text2.C
5872         * paragraph.[Ch]
5873         * makefile.am: move counters functionality over from
5874         text2.C/paragraph.[Ch] to counters.[Ch], and make proper C++.
5875
5876 2002-08-06  John Levon  <levon@movementarian.org>
5877
5878         * WordLangTuple.h: new file for word + language code tuple
5879
5880         * SpellBase.h:
5881         * pspell.h:
5882         * pspell.C:
5883         * ispell.h:
5884         * ispell.C:
5885         * lyxtext.h:
5886         * text.C:
5887         * text2.C:
5888         * BufferView.h:
5889         * BufferView2.C: use WordLangTuple
5890
5891         * layout.h:
5892         * buffer.C: remove very dead LYX_LAYOUT_DEFAULT
5893
5894 2002-08-06  John Levon  <levon@movementarian.org>
5895
5896         * lyx_main.C: fix cmdline batch handling
5897
5898 2002-08-06  André Pönitz <poenitz@gmx.net>
5899
5900         * lyxrc.C: set default for show_banner to true
5901
5902 2002-08-06  John Levon  <levon@movementarian.org>
5903
5904         * pspell.C: fix a crash, and allow new aspell to work
5905
5906 2002-08-06  John Levon  <levon@movementarian.org>
5907
5908         * lyxfunc.C:
5909         * kbmap.C: small cleanup
5910
5911         * vspace.h:
5912         * vspace.C: add const
5913
5914 2002-08-05  John Levon  <levon@movementarian.org>
5915
5916         * LyXAction.C: back to tabular-insert
5917
5918 2002-08-04  John Levon  <levon@movementarian.org>
5919
5920         * BufferView.h:
5921         * BufferView.C: cosmetic change
5922
5923         * BufferView_pimpl.C: s/IGNORE_CODE/NOTE_CODE/
5924
5925         * bufferlist.C:
5926         * buffer.h:
5927         * buffer.C:
5928         * lyxcb.h:
5929         * lyxcb.C:
5930         * lyxserver.C:
5931         * lyxvc.C:
5932         * vc-backend.C:
5933         * BufferView2.C: purge all "Lyx" not "LyX" strings
5934
5935         * lyxcursor.h:
5936         * lyxcursor.C: attempt to add some documentation
5937
5938         * lyxfunc.C:
5939         * commandtags.h:
5940         * LyXAction.C:
5941         * ToolbarDefaults.C:
5942         * BufferView_pimpl.C: remove LFUN_DIALOG_TABULAR_INSERT and
5943           merge with LFUN_TABULAR_INSERT
5944
5945         * Makefile.am:
5946         * SpellBase.h:
5947         * ispell.h:
5948         * ispell.C:
5949         * pspell.h:
5950         * pspell.C: split up i/pspell implementations into separate
5951           files, many cleanups
5952
5953         * lyxlex.C: unrevert, with a proper fix for prefix.length() == 0
5954
5955         * text2.C: some cleanup
5956
5957         * lyxfunc.C: don't check for isp_command == "none" any more, it
5958           didn't make any sense
5959
5960 2002-08-06      Martin Vermeer <martin.vermeer@hut.fi>
5961
5962         * counters.[Ch]
5963         * text2.C
5964         * paragraph.[Ch]
5965         * makefile.am: move counters functionality over
5966         from text2.C/paragraph.[Ch] to counters.[Ch], and
5967         make proper C++.
5968 2002-08-02  John Levon  <levon@movementarian.org>
5969
5970         * buffer.C: s/lyxconvert/lyx2lyx/
5971
5972 2002-08-02  Angus Leeming  <leeming@lyx.org>
5973
5974         * lyxlex.C: revert John's change as it breaks reading of the user
5975         preamble.
5976
5977 2002-08-02  Angus Leeming  <leeming@lyx.org>
5978
5979         * importer.C (Import):
5980         * lyxfunc.C (moveCursorUpdate, dispatch, view_status_message):
5981         changes due to LyXView::view() now returning a boost::shared_ptr.
5982
5983 2002-08-02  John Levon  <levon@movementarian.org>
5984
5985         * lyxlex.C: small cleanup
5986
5987 2002-08-02  John Levon  <levon@movementarian.org>
5988
5989         * text2.C (status): small cleanup, no logic change
5990
5991 2002-08-01  John Levon  <levon@movementarian.org>
5992
5993         * buffer.h:
5994         * buffer.C (writeFile): don't output alerts, caller
5995           handles this
5996
5997         * bufferlist.C:
5998         * lyx_cb.C: from above
5999
6000         * lyxfunc.C: allow to open non-existent files
6001
6002 2002-07-31  John Levon  <levon@movementarian.org>
6003
6004         * lyxserver.C: don't let incidental errors get
6005           in the way (errno)
6006
6007 2002-07-30  John Levon  <levon@movementarian.org>
6008
6009         * lyxfunc.C: disable character dialog in ERT inset (partial fix)
6010
6011 2002-07-30  John Levon  <levon@movementarian.org>
6012
6013         * lyxserver.h:
6014         * lyxserver.C: remove I/O callback too
6015
6016 2002-07-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6017
6018         * lyxfunc.C (getStatus): disable LFUN_LATEX_LOG when there is no
6019         log.
6020
6021 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
6022
6023         * many files: strip,frontStrip -> trim,ltrim,rtrim
6024
6025 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
6026
6027         * PrinterParams.h: remove extern containsOnly, and include
6028         support/lstrings.h instead.
6029
6030         * LaTeX.C (scanAuxFile): modify because of strip changes
6031         (deplog): ditto
6032         * buffer.C (makeLaTeXFile): ditto
6033         * bufferparams.C (writeFile): ditt
6034         * lyxfont.C (stateText): ditto
6035         * lyxserver.C (read_ready): ditto
6036         * vc-backend.C (scanMaster): ditto
6037
6038         * BufferView_pimpl.h: ws changes
6039
6040         * BufferView_pimpl.C: inlude boost/signals/connection.hpp
6041
6042 2002-07-26  André Pönitz <poenitz@gmx.net>
6043
6044         * kb_sequence.C: remove unnedred usings
6045
6046 2002-07-26  Juergen Vigna  <jug@sad.it>
6047
6048         * lyxfind.C (LyXReplace): we have to check better if the returned
6049         text is not of theLockingInset()->getLockingInset().
6050
6051 2002-07-25  Juergen Vigna  <jug@sad.it>
6052
6053         * lyxfind.C (LyXReplace): don't replace if we don't get the
6054         right LyXText.
6055
6056         * undo_funcs.C (createUndo): remove debugging code.
6057
6058 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
6059
6060         * buffer.C (parseSingleLyXformat2Token): Use default placement
6061         when reading old floats.
6062
6063         * FloatList.C (FloatList): Change the default placement of figure
6064         and tables to "tbp".
6065
6066 2002-07-25  John Levon  <moz@compsoc.man.ac.uk>
6067
6068         * MenuBackend.C: using std::max
6069
6070 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6071
6072         * MenuBackend.C (expandToc):
6073         (expandToc2): code moved from xforms menu frontend. It is now
6074         generic and TOCs are transparent to menu frontends.
6075
6076 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6077
6078         * toc.C (getTocList): protect against buf=0
6079
6080         * MenuBackend.C (expand): move from Menu to MenuBackend; pass a
6081         Menu as first parameter. Now, this calls itself recursively to
6082         expand a whole tree (this will be useful for TOC handling)
6083         (expandFloatInsert): remove 'wide' version of floats
6084
6085         * MenuBackend.h (submenuname): returns the name of the submenu.
6086         (submenu): returns the submenu itself, provided it has been
6087         created by MenuBackend::expand
6088
6089 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6090
6091         * paragraph_pimpl.C (simpleTeXSpecialChars): close fonts before
6092         insets which have noFontChange == true. (bug #172)
6093
6094 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6095
6096         * BufferView_pimpl.C: add connection objects and use them...
6097         (Pimpl): here.
6098
6099 2002-07-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6100
6101         * MenuBackend.C (expandLastfiles):
6102         (expandDocuments):
6103         (expandFormats):
6104         (expandFloatListInsert):
6105         (expandFloatInsert):
6106         (expand): split expand in parts
6107
6108 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6109
6110         * lyx_gui.C: use lyx_gui::exit()
6111
6112 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6113
6114         * LyXAction.C: show the failing pseudo action
6115
6116 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
6117
6118         * buffer.C (readFile): Run the lyxconvert script in order to read
6119         old files.
6120
6121 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6122
6123         * LyXAction.C:
6124         * commandtags.h:
6125         * lyxfunc.C: remove LFUN_ADD_TO_TOOLBAR
6126
6127 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6128
6129         * LyXAction.C:
6130         * commandtags.h:
6131         * lyxfunc.C: remove LFUN_TOOLBAR_PUSH
6132
6133 2002-07-22  Herbert Voss  <voss@lyx.org>
6134
6135         * lengthcommon.C:
6136         * lyxlength.[Ch]: add support for the vertical lengths
6137
6138 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
6139
6140         * toc.[Ch]: std:: fixes
6141
6142 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6143
6144         * lyxrc.C: do not include lyx_main.h
6145
6146         * LaTeXFeatures.h: use a list<string> instead of a vector<string>
6147         for layouts
6148
6149         * lyxrc.C:
6150         * encoding.C:
6151         * bufferlist.C:
6152         * BufferView2.C: include "lyxlex.h"
6153
6154         * tabular.h:
6155         * bufferparams.h: do not #include "lyxlex.h"
6156
6157         * lyxtextclasslist.C (Add): remove method
6158         (classlist): renamed to classlist_
6159
6160         * paragraph_pimpl.C:
6161         * paragraph.C:
6162         * text2.C:
6163         * CutAndPaste.C:
6164         * bufferview_funcs.C:
6165         * bufferlist.C:
6166         * text.C:
6167         * LaTeXFeatures.C:
6168         * buffer.C:
6169         * toc.C (getTocList): use BufferParams::getLyXTextClass
6170
6171         * toc.C (getTocList): use InsetFloat::addToToc
6172
6173         * toc.[Ch]: new files, containing helper functions to handle table
6174         of contents
6175
6176         * lyxfunc.C (dispatch): no need to remove spaces around command
6177         given as a string
6178         (getStatus): handle LFUN_SEQUENCE by returning the status of the
6179         first command of the sequence; it is not very clever, but I do not
6180         have a better idea, actually
6181
6182         * LyXAction.C (LookupFunc): make sure to remove space at the
6183         beginning and end of the command
6184
6185 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6186
6187         * MenuBackend.C (getMenubar): new method: return the menubar of
6188         this menu set
6189         (read): treat differently reading of menu and menubar (in
6190         particular, the menubar has no name now)
6191         (Menu::menubar): remove
6192
6193         * lyxfunc.C (dispatch): add 'done' message to minibuffer when
6194         saving is finished
6195
6196 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
6197
6198         * BufferView_pimpl.C (workAreaButtonRelease): Fix opening of
6199         a bibitem inset in a RTL paragraph.
6200
6201 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
6202
6203         * paragraph_pimpl.C: constify
6204
6205         * BufferView_pimpl.C:
6206         * LaTeX.C:
6207         * lyxfunc.C: fix dispatch in a nicer way
6208
6209 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6210
6211         * lyxfunc.C (dispatch):
6212         * BufferView_pimpl.C:
6213         * BufferView_pimpl.h:
6214         * BufferView.C:
6215         * BufferView.h: rename Dispatch() to dispatch()
6216
6217         * LaTeXFeatures.C (useLayout): honor LyXLayout::depends_on()
6218
6219         * lyxlayout.C (Read): honor DependsOn tag
6220
6221         * lyxlayout.[Ch] (depends_on): new method
6222
6223         * version.C.in: update lyx_docversion
6224
6225         * LaTeXFeatures.C (getMacros): only define \LyX when needed
6226
6227         * paragraph.C (validate): remove from here...
6228         * paragraph_pimpl.C (validate): ... and move here
6229         (isTextAt): make it const
6230
6231         * buffer.C (getLists): ws cleanup
6232
6233 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
6234
6235         * language.C (read): Use iso8859-1 encoding in latex_lang
6236         (this prevents LyX from crashing when using iso10646-1 encoding).
6237
6238 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6239
6240         * text2.C (toggleInset): if cursor is inside an inset, close the
6241         inset and leave cursor _after_ it
6242
6243 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
6244
6245         * lyxfunc.C: move minibuffer completion handling out of here
6246
6247 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
6248
6249         * BufferView_pimpl.C:
6250         * LaTeX.C: fix dispatch calls
6251
6252 2002-07-19  Dekel Tsur  <dekelts@tau.ac.il>
6253
6254         * text.C (drawChars): Fix Arabic text rendering.
6255
6256 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
6257
6258         * LyXAction.C:
6259         * commandtags.h:
6260         * lyxfunc.C: remove message-push/pop
6261
6262         * lyxserver.C:
6263         * lyxfunc.h:
6264         * lyxfunc.C: rationalise some code by removing verboseDispatch
6265           in favour of a bool argument to dispatch()
6266
6267 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6268
6269         * lyx_main.C (init): make sure to read symlinks as absolute paths
6270
6271 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
6272
6273         * lyxfunc.h:
6274         * lyxfunc.C: no need for commandshortcut to be a member
6275
6276 2002-07-15  André Pönitz <poenitz@gmx.net>
6277
6278         * converter.C: add support for $$s (scripts from lib/scripts dir)
6279         * lyx_main.C: white space
6280
6281 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
6282
6283         * bufferlist.C:
6284         * lyxrc.h:
6285         * lyxrc.C: remove second exit confirmation
6286
6287 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
6288
6289         * BufferView.h:
6290         * BufferView.C:
6291         * BufferView2.C:
6292         * BufferView_pimpl.h:
6293         * BufferView_pimpl.C:
6294         * lyxfunc.C: s/setState/switchKeyMap/, s/showState/view_state_changed/
6295
6296 2002-07-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6297
6298         * MenuBackend.C (expand): add numeric shortcuts to document menu
6299
6300         * lyxrc.C (getDescription): remove RC_NEW_ASK_FILENAME
6301
6302 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6303
6304         * lyxfont.C (setLyXFamily):
6305         (setLyXSeries):
6306         (setLyXShape):
6307         (setLyXSize):
6308         (setLyXMisc):
6309         (lyxRead):
6310         * debug.C (value):
6311         * buffer.C (asciiParagraph): use ascii_lowercase
6312
6313 2002-07-15  Mike Fabian  <mfabian@suse.de>
6314
6315         * lyxlex_pimpl.C (search_kw):
6316         * lyxlex.C (getLongString):
6317         * converter.h (operator<):
6318         * converter.C (operator<):
6319         * buffer.C (parseSingleLyXformat2Token):
6320         (asciiParagraph):
6321         * ToolbarDefaults.C (read):
6322         * MenuBackend.C (checkShortcuts):
6323         (read):
6324         * LColor.C (getFromGUIName):
6325         (getFromLyXName): use the compare_ascii_no_case instead of
6326         compare_no_case, because in turkish, 'i' is not the lowercase
6327         version of 'I', and thus turkish locale breaks parsing of tags.
6328
6329 2002-07-16  Angus Leeming  <leeming@lyx.org>
6330
6331         * BufferView_pimpl.C (buffer): Previews::generateBufferPreviews
6332         now takes a Buffer const & argument.
6333
6334 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
6335
6336         * BufferView.C (resize): check there's a buffer to resize
6337
6338 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
6339
6340         * lyxfunc.C: remove dead code
6341
6342         * lyxserver.h:
6343         * lyxserver.C: use lyx_guii::set_read_callback
6344
6345 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
6346
6347         * lyxfunc.C (dispatch): Correct cursor behaviour when exiting
6348         an inset in a RTL paragraph.
6349
6350 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
6351
6352         * lyxfunc.C: repaint after a font size update
6353
6354 2002-07-15  André Pönitz <poenitz@gmx.net>
6355
6356         * lyxlength.C: inBP should be able to return negative values
6357
6358 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
6359
6360         * lyxfunc.C: use lyx_gui::update_fonts()
6361
6362 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
6363
6364         * lyxfunc.C: use lyx_gui::update_color()
6365
6366 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
6367
6368         * bufferlist.C:
6369         * lyxfunc.h:
6370         * lyxfunc.C:
6371         * lyxrc.h:
6372         * lyxrc.C: remove file->new asks for name option, and let
6373           buffer-new take an argument
6374
6375 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
6376
6377         * BufferView_pimpl.C: remove unneeded extra repaint()
6378
6379 2002-07-10  John Levon  <moz@compsoc.man.ac.uk>
6380
6381         * LyXAction.C: allow command-sequence with NoBuffer
6382
6383         * lyxfunc.C: don't insist on trailing ';' for command-sequence
6384
6385 2002-07-10  Angus Leeming  <leeming@lyx.org>
6386
6387         * lyxrc.[Ch]: preview_scale_factor should be a float not an int.
6388
6389 2002-07-09  Angus Leeming  <leeming@lyx.org>
6390
6391         * lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
6392
6393 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
6394
6395         * lengthcommon.h: whitespace
6396
6397         * lyxfunc.C: update scrollbar after goto paragraph
6398
6399         * lyxtext.h: factor out page break drawing, and fix it so
6400           page break/added space paints as selected nicely
6401
6402 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
6403
6404         * BufferView_pimpl.C: add FIXMEs, clean up a little
6405
6406 2002-07-09  André Pönitz <poenitz@gmx.net>
6407
6408         * lyxfont.[Ch]: support for wasy symbols
6409
6410 2002-07-08  André Pönitz <poenitz@gmx.net>
6411
6412         * BufferView_pimpl.C: apply John's patch for #93.
6413
6414 2002-07-05  Angus Leeming  <leeming@lyx.org>
6415
6416         * BufferView_pimpl.C (buffer): generate previews if desired.
6417
6418         * LColor.h: add "preview" to the color enum.
6419
6420         * LColor.C (LColor): add a corresponding entry to the items array.
6421
6422         * buffer.C (~Buffer): remove any previewed LaTeX snippets associated
6423         with this buffer.
6424
6425 2002-07-05  Angus Leeming  <leeming@lyx.org>
6426
6427         * buffer.[Ch] (makeLaTeXFile): create two methods where there was one.
6428         The body of the code is now in the method that is passed an ostream &
6429         rather than a file name.
6430         Pass an additional only_preamble parameter, useful for the forthcoming
6431         preview stuff.
6432
6433 2002-07-03  André Pönitz <poenitz@gmx.net>
6434
6435         * lyxfunc.C: simplify getStatus() a bit for math stuff
6436
6437 2002-07-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6438
6439         * BufferView_pimpl.C (workAreaResize): add an unconditional repaint.
6440
6441 2002-06-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6442
6443         * text.C (changeRegionCase): do not change case of all the
6444         document when region ends at paragraph end (bug #461)
6445
6446 2002-07-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6447
6448         * paragraph.C (startTeXParParams):
6449         (endTeXParParams): add \protect when necessary
6450
6451 2002-06-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6452
6453         * BufferView_pimpl.C (workAreaExpose): remove warning
6454
6455 2002-06-27  Angus Leeming  <leeming@lyx.org>
6456
6457         * Makefile.am: add lyxlayout_ptr_fwd.h.
6458
6459 2002-06-26  André Pönitz <poenitz@gmx.net>
6460
6461         * lyxrc.[Ch]: introduce \preview, revive half-dead \show_banner
6462
6463 2002-06-25  Angus Leeming  <leeming@lyx.org>
6464
6465         * lyxfunc.C (dispatch): Comment out the call to
6466         grfx::GCache::changeDisplay. The method no longer exists now that the
6467         pixmap generation part of the graphics loader has been moved into
6468         InsetGraphics.
6469
6470 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6471
6472         * text2.C: layout as layout
6473
6474         * text.C: layout as layout
6475
6476         * tabular.C (OldFormatRead): layout as layout
6477
6478         * paragraph_pimpl.C (TeXDeeper): layout as layout
6479         (realizeFont): layout as layout
6480
6481         * paragraph.C (writeFile): layout as layout
6482         (validate): layout as layout
6483         (getFont): layout as layout
6484         (getLabelFont): layout as layout
6485         (getLayoutFont): layout as layout
6486         (breakParagraph): layout as layout
6487         (stripLeadingSpaces): layout as layout
6488         (getEndLabel): layout as layout
6489         (getMaxDepthAfter): layout as layout
6490         (applyLayout): layout as layout
6491         (TeXOnePar): layout as layout
6492         (simpleTeXOnePar): layout as layout
6493         (TeXEnvironment): layout as layout
6494         (layout): layout as layout
6495         (layout): layout as layout
6496
6497         * lyxtextclass.C (compare_name): new functor to work with
6498         shared_ptr, layout as layout
6499         (Read): layout as layout
6500         (hasLayout): layout as layout
6501         (operator): layout as layout
6502         (delete_layout): layout as layout
6503         (defaultLayout): layout as layout
6504
6505         * lyxlayout_ptr_fwd.h: new file
6506
6507         * lyxlayout.C (Read): layout as layout
6508
6509         * lyx_cb.C (MenuInsertLabel): layout as layout
6510
6511         * bufferlist.C (newFile): layout as layout
6512
6513         * buffer.C (readLyXformat2): layout as layout
6514         (parseSingleLyXformat2Token): layout as layout
6515         (insertStringAsLines): layout as layout
6516         (asciiParagraph): layout as layout
6517         (latexParagraphs): layout as layout
6518         (makeLinuxDocFile): layout as layout
6519         (simpleLinuxDocOnePar): layout as layout
6520         (makeDocBookFile): layout as layout
6521         (simpleDocBookOnePar): layout as layout
6522         (getLists): layout as layout
6523
6524         * LaTeXFeatures.C (getTClassPreamble): layout as layout
6525
6526         * CutAndPaste.C (cutSelection): layout as layout
6527         (pasteSelection): layout as layout
6528         (SwitchLayoutsBetweenClasses): layout as layout
6529
6530         * BufferView_pimpl.C (Dispatch): layout as layout
6531         (smartQuote): layout as layout
6532
6533         * BufferView2.C (unlockInset): layout as layout
6534
6535 2002-06-24  André Pönitz <poenitz@gmx.net>
6536
6537         * lyxfunc.C: fix #487
6538
6539 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6540
6541         * lyxrc.h:
6542         * lyxrc.C:
6543         * lyxfunc.C: remove display_shortcuts, show_banner
6544
6545 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6546
6547         * Buffer_pimpl.C: oops, update on resize
6548
6549 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6550
6551         * buffer.C:
6552         * converter.C:
6553         * exporter.C:
6554         * lyxfunc.C:
6555         * BufferView.h:
6556         * BufferView.C: use repaint()
6557
6558         * BufferView_pimpl.h:
6559         * BufferView_pimpl.C: s/updateScreen()/repaint()/
6560           as it's a clearer description. Remove superfluous
6561           redraws.
6562
6563 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6564
6565         * text.C: fix bug 488. Not ideal, but getting
6566           getWord() to work properly for the insets that
6567           matter is more difficult ...
6568
6569 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
6570
6571         * BufferView_pimpl.C:
6572         * LyXAction.C:
6573         * commandtags.h:
6574         * lyxfunc.C: remove the six million index lyxfuncs to just
6575           one, and DTRT (bug 458)
6576
6577 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
6578
6579         * BufferView.h:
6580         * BufferView.C:
6581         * BufferView_pimpl.h:
6582         * BufferView_pimpl.C: clean up resize() stuff,
6583           and unnecessary updateScreen()s
6584
6585 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
6586
6587         * BufferView.h:
6588         * BufferView.C:
6589         * BufferView_pimpl.h:
6590         * BufferView_pimpl.C:
6591         * lyxfind.h:
6592         * lyxfind.C:
6593         * minibuffer.C: remove focus management of workarea,
6594           not needed. Use screen's greyOut()
6595
6596 2002-06-17  Herbert Voss  <voss@lyx.org>
6597
6598         * converter.C: (convert) do not post a message, when converting
6599         fails, let the calling function decide what to do in this case
6600
6601 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
6602
6603         * lyxfunc.C: tidy up a little
6604
6605 2002-06-16    <alstrup@diku.dk>
6606
6607         * BufferView_pimpl.C (Pimpl): Use WorkAreaFactory.
6608         Got rid of FORMS_H_LOCATION include. Now we are
6609         GUII.
6610
6611 2002-06-15  LyX Development team  <lyx@rilke>
6612
6613         * buffer.[Ch] (sgmlOpenTag):
6614         (sgmlCloseTag): Added support for avoiding pernicious mixed
6615         content. Return number of lines written.
6616
6617         (makeLinuxDocFile):
6618         (makeDocBookFile): Fixed calls to sgml*Tag.
6619         Simple white space clean.
6620
6621         (simpleDocBookOnePar): Simple white space clean.
6622
6623         * tabular.[Ch] (docBook): Renamed to docbook and got another
6624         argument to related with the pernicious mixed content.
6625
6626         (docbookRow): Fixed calls for docbook inset method.
6627
6628 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
6629
6630         * lyxfunc.[Ch]: Use LyXKeySym instead of KeySym,
6631         so it's X11 independent.
6632
6633         * kb*.[Ch]: ditto.
6634
6635         * BufferView_pimpl.[Ch] (workAreaKeyPress): ditto.
6636
6637 2002-06-15  Lyx Development team  <lyx@electronia>
6638
6639         * intl.h: Renamed getTrans to getTransManager.
6640
6641 2002-06-14  Angus Leeming  <leeming@lyx.org>
6642
6643         * Makefile.am: nuke forgotten stl_string_fwd.h.
6644
6645 2002-06-12  Angus Leeming  <leeming@lyx.org>
6646
6647         * stl_string_fwd.h: unused and non-compliant anyway. Nuked.
6648
6649 2002-06-13  Angus Leeming  <leeming@lyx.org>
6650
6651         * LaTeX.C:
6652         * vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
6653
6654 2002-06-12  Andrew Zabolotny  <zap@cobra.ru>
6655
6656         * kbmap.C (getiso): add support for cyrillic and greek
6657
6658 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6659
6660         * BufferView.h:
6661         * BufferView.C:
6662         * BufferView_pimpl.h:
6663         * BufferView_pimpl.C: move bogus scrolling logic
6664           to xforms
6665
6666 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6667
6668         * lyxfunc.C:
6669         * BufferView_pimpl.C: view->resize() change
6670
6671 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6672
6673         * BufferView_pimpl.C: topCursorVisible
6674           prototype change
6675
6676 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6677
6678         * Makefile.am:
6679         * lyx_gui.h:
6680         * lyx_gui.C: move to frontends/
6681
6682         * main.C:
6683         * lyx_main.h:
6684         * lyx_main.C: changes from above
6685
6686 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6687
6688         * intl.C:
6689         * intl.h:
6690         * kbmap.C:
6691         * kbsequence.C:
6692         * lyx_cb.C:
6693         * lyx_main.C: minor tidy
6694
6695 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6696
6697         * BufferView_pimpl.h:
6698         * BufferView_pimpl.C:
6699         * BufferView.h:
6700         * BufferView.C: make painter() const,
6701           remove dead code
6702
6703         * BufferView2.C: use screen() accessor
6704
6705         * lyx_main.h:
6706         * lyx_main.C: some minor cleanup
6707
6708 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6709
6710         * BufferView_pimpl.h:
6711         * BufferView_pimpl.C: remove enter/leaveView,
6712           use workHeight()
6713
6714 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6715
6716         * BufferView.h:
6717         * BufferView.C:
6718         * BufferView2.C:
6719         * BufferView_pimpl.h:
6720         * BufferView_pimpl.C: only construct screen once,
6721           rename
6722
6723         * lyxrc.C: remove pointless comment
6724
6725 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
6726
6727         * BufferView.h:
6728         * BufferView.C: remove active() and belowMouse()
6729
6730         * BufferView_pimpl.h:
6731         * BufferView_pimpl.C: use workarea() not workarea_,
6732           and make it use a scoped_ptr instead
6733
6734 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
6735
6736         * lyx_gui.C: add debug message on BadWindow
6737
6738 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6739
6740         * sp_spell.C: fdopen is not part of the C++ standard.
6741
6742         * paragraph.C (InsetIterator): use >= instead of ==
6743
6744 2002-06-07  Angus Leeming  <leeming@lyx.org>
6745
6746         Fixes needed to compile with Compaq cxx 6.5.
6747         * BufferView_pimpl.C:
6748         * DepTable.C:
6749         * buffer.C:
6750         * converter.C:
6751         * encoding.C:
6752         * lyx_gui.C:
6753         * lyx_main.C:
6754         * lyxtextclasslist.C:
6755         * minibuffer.C:
6756         * sp_spell.C:
6757         * tabular_funcs.C:
6758         * vc-backend.C:
6759         all c-library variables have been moved into namespace std. Wrap
6760         using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
6761
6762         * lyxlength.C:
6763         * tabular-old.C:
6764         * tabular.C:
6765         Add a using std::abs declaration.
6766
6767         * kbmap.h (modifier_pair):
6768         * paragraph.h (InsetTable, InsetList):
6769         * lyxfont.h (FontBits):
6770         type definition made public.
6771
6772         * bufferlist.C (emergencyWriteAll): the compiler complains that
6773         there is more than one possible lyx::class_fun template to choose from.
6774         I re-named the void specialisation as lyx::void_class_fun.
6775
6776         * lyxfont.C (FontBits' operator==, operator!=): taken out of class.
6777
6778         * tabular_funcs.C: lstrings.h must come before tabular_funcs.h or
6779         the compiler is is unable to find tostr in write_attribute.
6780
6781 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6782
6783         * buffer.C (sgmlError): hide #warning
6784
6785 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6786
6787         * xtl/*: get rid of xtl, which is not in use anyway
6788
6789         * LyXAction.C (init):
6790         * commandtags.h: remove BUFFER_PRINT and BUFFER_PARAMS_GET, which
6791         were unimplemented xtl experimentation
6792
6793 2002-06-04  André Pönitz <poenitz@gmx.net>
6794
6795         * lyxfunc.C: disable array operation on simple formulae
6796
6797 2002-06-03  John Levon  <moz@compsoc.man.ac.uk>
6798
6799         * converter.C: constify a bit
6800
6801 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
6802
6803         * lyx_gui.C: check xforms version correctly
6804
6805 2002-04-30  Herbert Voss  <voss@lyx.org>
6806
6807         * buffer.C (parseSingleLyXformat2Token): fix bug with ignored
6808         "keep" option
6809
6810 2002-05-31  John Levon  <moz@compsoc.man.ac.uk>
6811
6812         * lyxvc.C: fix bug 416 (make sure buffer is saved before
6813           attempt to register it with a VCS)
6814
6815 2002-05-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6816
6817         * lyx_main.C (init): honor variables LYX_DIR_13x and
6818         LYX_USERDIR_13x
6819
6820 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
6821
6822         * buffer.h:
6823         * buffer.C:
6824         * lyx_main.C: fix a crash on bad command line,
6825           and give a useful exit status on error
6826
6827         * lyxfunc.C (doImport): allow -i lyx to work
6828
6829 2002-03-30  André Pönitz <poenitz@gmx.net>
6830
6831         * lyxfunc.C: mathed font changes
6832
6833 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
6834
6835         * LaTeX.C:
6836         * importer.h:
6837         * importer.C:
6838         * lyx_sty.h:
6839         * lyx_sty.C:
6840         * lyxlex.C:
6841         * lyxrow.h:
6842         * lyxtext.h:
6843         * paragraph.h:
6844         * paragraph.C:
6845         * texrow.h:
6846         * texrow.C:
6847         * text.C:
6848         * trans_mgr.h: srcdocs, and some minor cleanups
6849
6850 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6851
6852         * paragraph_pimpl.C (isTextAt): rewrite to be much faster (do not
6853         call getFont all the time)
6854
6855 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6856
6857         * switch from SigC signals to boost::signals
6858
6859 2002-05-29  André Pönitz <poenitz@gmx.net>
6860
6861         * paragraph_pimpl.C (getChar): don't call size() too often...
6862
6863 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6864
6865         * paragraph_pimpl.C (insertChar): do not try to update tables when
6866         appending (pos == size())
6867
6868         * buffer.C (parseSingleLyXformat2Token): reorder a bit the tests
6869         in order to reduce drastically the number of comparisons needed to
6870         parse a large document
6871
6872 2002-05-29  André Pönitz <poenitz@gmx.net>
6873
6874         * text.C:
6875         * text2.C:
6876         * lyxtextclass.C:
6877         * sp_pspell.h:
6878         * textclasslist.[Ch]:
6879         * sp_ispell.h: whitespace change
6880
6881 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6882
6883         * lyxserver.C (callback): tentative fix of lyxserver. Does not use
6884         lyxaction directly now.
6885
6886 2002-05-27  John Levon  <moz@compsoc.man.ac.uk>
6887
6888         * trans.C:
6889         * lyxfont.C:
6890         * lyxvc.C: remove unused headers
6891
6892 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
6893
6894         * Makefile.am:
6895         * buffer.h:
6896         * undostack.h:
6897         * undostack.C:
6898         * undo_funcs.h:
6899         * undo_funcs.C: some cleanups. Use shared_ptr
6900           and a template for the undo stacks.
6901
6902 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
6903
6904         * BufferView_pimpl.h:
6905         * BufferView_pimpl.C:
6906         * kbmap.h:
6907         * kbmap.C:
6908         * kbsequence.h:
6909         * kbsequence.C:
6910         * lyxfunc.h:
6911         * lyxfunc.C:
6912         * text2.C: use key_state/mouse_state
6913
6914 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6915
6916         * vc-backend.C (scanMaster): use boost regex and get rid of LRegex
6917         and LSubstring
6918
6919         * chset.C: change include order
6920         (loadFile): use boost regex and get rid of LRegex and LSubstring
6921
6922         * Makefile.am (BOOST_LIBS): new variable
6923         (lyx_LDADD): use it
6924
6925         * LaTeX.C: change include order.
6926         (scanAuxFile): use boost regex and get rid of LRegex and
6927         LSubstring
6928         (deplog): ditto
6929
6930 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
6931
6932         * ColorHandler.h:
6933         * ColorHandler.C:
6934         * FontInfo.h:
6935         * FontInfo.C: moved to frontends/xforms/
6936
6937         * FontLoader.h:
6938         * FontLoader.C: moved into frontends for GUIIzation
6939
6940         * Makefile.am:
6941         * lyx_gui.C:
6942         * lyxfont.C:
6943         * lyxfunc.C: changes from above
6944
6945 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
6946
6947         * LColor.C: remove spurious X include
6948
6949         * BufferView_pimpl.C:
6950         * Makefile.am:
6951         * font.h:
6952         * font.C:
6953         * text.C:
6954         * text2.C: move font metrics to frontends/
6955
6956 2002-05-24  Juergen Vigna  <jug@sad.it>
6957
6958         * undo_funcs.C (textHandleUndo): fix the cursor selection after
6959         setting the undo_cursor.
6960
6961         * ParagraphParameters.h: include local includes first.
6962
6963 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
6964
6965         * BufferView_pimpl.C:
6966         * BufferView_pimpl.h:
6967         * Makefile.am:
6968         * WorkArea.h:
6969         * WorkArea.C:
6970         * screen.C: move WorkArea into frontends/
6971
6972         * lyxscreen.h:
6973         * screen.C:
6974         * text.C:
6975         * BufferView.C:
6976         * BufferView2.C: move LyXScreen into frontends/
6977
6978         * lyxlookup.h:
6979         * lyxlookup.C:
6980         * lyx_gui.C: move lyxlookup into frontends/xforms/
6981
6982 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
6983
6984         * BufferView2.C:
6985         * BufferView_pimpl.C:
6986         * FontLoader.C:
6987         * LyXView.h:
6988         * LyXView.C:
6989         * Makefile.am:
6990         * WorkArea.C:
6991         * XFormsView.h:
6992         * XFormsView.C:
6993         * buffer.C:
6994         * bufferlist.C:
6995         * bufferview_funcs.C:
6996         * converter.C:
6997         * importer.C:
6998         * lyx_cb.C:
6999         * lyx_gui.C:
7000         * lyx_main.C:
7001         * lyx_find.C:
7002         * lyxfunc.C:
7003         * lyxvc.C:
7004         * minibuffer.C:
7005         * text.C:
7006         * text2.C:
7007         * trans.C:
7008         * vc-backend.C: move LyX/XFormsView into frontends/
7009
7010 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
7011
7012         * Makefile.am:
7013         * PainterBase.C:
7014         * PainterBase.h:
7015         * Painter.C:
7016         * Painter.h:
7017         * WorkArea.C:
7018         * WorkArea.h:
7019         * screen.C:
7020         * tabular.C:
7021         * text.C:
7022         * text2.C: move Painter to frontends/
7023
7024 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7025
7026         * buffer.C: comment out some some code that depend upon lyx_format
7027         < 220
7028
7029         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
7030         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
7031
7032         * buffer.h (NO_COMPABILITY): turn off compability
7033
7034         * ColorHandler.C: include scoped_array.hpp
7035
7036         * font.C: Use more specific smart_ptr header.
7037         * Painter.C: ditto
7038         * gettext.C: ditto
7039         * ShareContainer.h: ditto
7040         * lyx_main.h: ditto
7041         * kbmap.h: ditto
7042         * FontInfo.h: ditto
7043         * BufferView_pimpl.h: ditto
7044         * ColorHandler.h: ditto
7045
7046         * kbmap.C (defkey): change call to shared_ptr::reset
7047
7048 2002-05-21  Juergen Vigna  <jug@sad.it>
7049
7050         * buffer.C (insertErtContents): fix to insert ert asis if it is
7051         non empty. Skip it completely if it contains only whitespaces.
7052
7053 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
7054
7055         * BufferView_pimpl.C:
7056         * BufferView2.C: clear selection on paste (bug 393)
7057
7058 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7059
7060         * DepTable.C: include ctime
7061
7062 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
7063
7064         * buffer.C (latexParagraphs): Add new argument (moving_arg).
7065
7066 2002-05-14  Juergen Vigna  <jug@sad.it>
7067
7068         * text.C (breakParagraph): fixed function to honor the keepempty
7069         layout in the right maner and also to permit the right breaking
7070         algorithm on empty or non empyt keepempty paragraphs.
7071
7072         * paragraph.C (breakParagraph): we have to check also if the par
7073         is really empty (!size()) for isempty otherwise we do the wrong
7074         paragraph break.
7075
7076 2002-05-10  Juergen Vigna  <jug@sad.it>
7077
7078         * buffer.[Ch] : The following are only changes to the ert
7079         compatibility read reading old LaTeX layout and font stuff and
7080         convert it to ERTInsets.
7081
7082         * buffer.h: added isErtInset().
7083
7084         * buffer.C (struct ErtComp): add a fromlayout bool to check
7085         if we're inside a LaTeX layout.
7086         (isErtInset): new helper function.
7087         (insertErtContents): look for other ert insets before this one
7088         and insert the contents there, so that we don't have subsequent
7089         ERT insets with nothing between them. This way we create only one
7090         inset with multiple paragraphs. Also check if we don't insert only
7091         spaces ' ' as they are ignored anyway afterwards in the .tex file
7092         so if we have only spaces we will ignore this latex part in the
7093         new file.
7094         (parseSingleLyXformat2Token \\layout): better compatibility when
7095         reading layout-latex stuff.
7096         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
7097         language tag.
7098         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
7099         stuff after reading the inset only get the information back from
7100         the stack.
7101
7102 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
7103
7104         * buffer.C (makeLaTeXFile): Put language options after loading babel.
7105
7106         * LaTeXFeatures.C (getBabelOptions): New method.
7107
7108 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7109
7110         * BufferView_pimpl.C (Dispatch): work around missing argument for
7111         'layout'
7112
7113 2002-05-08  Juergen Vigna  <jug@sad.it>
7114
7115         * text.C (leftMargin): handle paragraph leftindent.
7116
7117         * paragraph.C (writeFile): write the new \\leftindent tag.
7118         (validate): handle leftindent code.
7119         (TeXEnvironment): handle paragraphleftindent code again.
7120
7121         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
7122
7123         * buffer.C (parseSingleLyXformat2Token): added compatibility code
7124         for paragrap_extra indent code and new token \\leftindent.
7125         (latexParagraphs): handle the leftindent as environment.
7126
7127         * ParameterStruct.h: added leftindent support.
7128
7129         * ParagraphParameters.C (leftIndent): added support functions for
7130         the paragraph left indent.
7131
7132         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
7133         more appropriate.
7134
7135 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
7136
7137         * paragraph.C (isRightToLeftPar): Return false for a paragraph
7138         inside insetERT.
7139
7140         * text.C (computeBidiTables): No bidi in insetERT.
7141
7142         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
7143         in RTL documents.
7144
7145 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7146
7147         * version.C.in: pre 5
7148
7149 2002-05-02  José Matos  <jamatos@fep.up.pt>
7150         * buffer.C (makeDocBookFile): white space changes, add newline to
7151         command styles.
7152         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
7153
7154         * tabular.C (docBook): fix typo.
7155
7156 2002-05-03  Juergen Vigna  <jug@sad.it>
7157
7158         * screen.C (drawFromTo): recalculate the rowpointer if we had a
7159         change in LyXText as we can not be sure it was not freed.
7160         (drawOneRow): remove unused code.
7161
7162         * text.C (drawInset): redo the calculation of the need_break_row as
7163         it could have a row which was already freed.
7164         (draw): look at the return value of drawInset and return false if
7165         it also returned false.
7166         (paintRowText): look at the return value of draw and return false if
7167         it also returned false.
7168
7169         * lyxtext.h: added bool return type to drawInset() and draw() so that
7170         if we have a change in the row so that the rowbreak has to be redone
7171         we abort drawing as it will be called again.
7172
7173 2002-05-02  Juergen Vigna  <jug@sad.it>
7174
7175         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
7176         a change in the maintext also if we're inside an inset.
7177         (Dispatch): set the cursor again after a break line and after the
7178         screen has been updated as it could be we're in a different row.
7179
7180         * text2.C (fixCursorAfterDelete): check to make sure we don't request
7181         to set the cursor behind the pargraph with > size().
7182         (setCursor): check also for the same paragraph when checking where
7183         to put the cursor if we have a NFR inset.
7184
7185         * buffer.C (parseSingleLyXformat2Token): move the compatibility
7186         parts of layout read further up as it still was in the wrong
7187         position.
7188
7189 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7190
7191         * screen.C (drawFromTo): change sine fullRebreak always return
7192         true.
7193
7194         * buffer.C (parseSingleLyXformat2Token): reindent some
7195
7196         * BufferView_pimpl.C (update): change since fullRebreak always
7197         return true.
7198         (Dispatch): git rid of the last hardcoded "Standard"s.
7199
7200 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7201
7202         * text2.[Ch] (fullRebreak): make it return void now that we always
7203         returned true.
7204
7205 2002-04-30  Juergen Vigna  <jug@sad.it>
7206
7207         * buffer.C (parseSingleLyXformat2Token): reset the font before the
7208         ert compatibility check for "latex" layout.
7209
7210 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
7211
7212         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
7213         minipages: use col% instead of p%, and also use the current font.
7214         (makeLaTeXFile): Fix use babel condition.
7215         (parseSingleLyXformat2Token): Correct font when reading old floats.
7216
7217 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
7218
7219         * BufferView_pimpl.C (Dispatch): Check that float type exists when
7220         inserting list of floats.
7221
7222 2002-04-25  Herbert Voss  <voss@lyx.org>
7223
7224         * MenuBackend.C (expand): don't add the graphics extensions to the
7225         export menu
7226
7227 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7228
7229         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
7230         non-existing layout, do not complain if it was the default layout
7231         of the original class (bug #342)
7232
7233 2002-04-24  Juergen Vigna  <jug@sad.it>
7234
7235         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
7236         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
7237
7238 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
7239
7240         * buffer.C (getBibkeyList): If using \bibliography, return the
7241         option field with the reference itself. Enables us to provide natbib
7242         support when using \bibliography.
7243
7244 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
7245
7246         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
7247
7248         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
7249         natbib is provided by the LaTeX class.
7250
7251 2002-04-23  Juergen Vigna  <jug@sad.it>
7252
7253         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
7254         Wakeup functions.
7255
7256         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
7257
7258 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7259
7260         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
7261
7262         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
7263         ensuremath around textordmasculine, textordfeminine and
7264         textdegree.
7265
7266 2002-04-19  Juergen Vigna  <jug@sad.it>
7267
7268         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
7269         reinitializing the buffer otherwise row-dimensions may be wrong.
7270         (update): reset also the selection cursors if they do exits otherwise
7271         their x/y positions may be wrong.
7272
7273         * text2.C (cursorDown): don't enter the inset if we came from a row
7274         above and are one row over the inset.
7275
7276         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
7277         really leaving an inset.
7278
7279 2002-04-18  Juergen Vigna  <jug@sad.it>
7280
7281         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
7282         of the selected paragraph does not have the selected layout also if
7283         the last one had!
7284
7285         * text2.C (setLayout): fixed bug which did not change last selected
7286         paragraph.
7287
7288         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
7289         changed the read and substituted \\end_float with \\end_inset!
7290
7291         * BufferView_pimpl.C (cursorPrevious):
7292         (cursorNext): fixed to make it work with rows heigher than the work
7293         area without moving the cursor only the draw of the row.
7294         (workAreaMotionNotify): fix jumping over high rows.
7295
7296 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7297
7298         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
7299         Ressler.
7300
7301 2002-04-16  Juergen Vigna  <jug@sad.it>
7302
7303         * text2.C (setCursor): set also the irow().
7304         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
7305         (cursorUp):
7306         (cursorDown): support for locking an inset if the x_fix value goes
7307         inside it. That way I can transverse insets too with cursor up/down.
7308
7309         * lyxrow.h: added irow helper function same as other (i) functions.
7310
7311         * BufferView_pimpl.C (cursorPrevious):
7312         (cursorNext): fixed for insets!
7313
7314 2002-04-15  Juergen Vigna  <jug@sad.it>
7315
7316         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
7317         position otherwise it is wrong in some cases.
7318
7319         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
7320         inside the inset before the call.
7321
7322 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
7323
7324         * buffer.[Ch] (getBibkeyList): make it const.
7325
7326 2002-04-12  Juergen Vigna  <jug@sad.it>
7327
7328         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
7329
7330         * text2.C (getCursorX): new helper function
7331         (setCursor): compute also ix_
7332         (setCursorFromCoordinates): set also ix.
7333
7334         * lyxcursor.h: added ix_ and helper functions.
7335
7336         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
7337
7338         * buffer.C (insertStringAsLines): dont break paragraph if the this
7339         paragraph is inside an inset which does not permit it!
7340
7341         * text.C (breakParagraph): honor keepempty flag and break the paragraph
7342         also with no chars on this paragraph.
7343         (paintRowText): only paint stuff if it's inside the workarea!
7344
7345         * paragraph.C (breakParagraph): honor keepempty flag and break the
7346         paragraph always below not above.
7347
7348         * BufferView2.C (unlockInset): update the paragraph layout on inset
7349         unlock as we changed paragraph in such a case.
7350
7351         * lyxfind.C (LyXFind): clear the former selection if not found!
7352
7353         * text2.C (insertInset): freeze Undo after setUndo so that it is not
7354         again called in insertChar().
7355
7356         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
7357         an inset which uses the whole row!
7358         (rightMargin): ditto.
7359         (insertChar): force a rebreak if we inserted an inset!
7360
7361 2002-03-28  Herbert Voss  <voss@lyx.org>
7362
7363         * lyxlength.[Ch]: add inBP() to get the right PS-point
7364         units (BigPoint). With inPixels we have rounding errors
7365
7366 2002-04-11  Juergen Vigna  <jug@sad.it>
7367
7368         * text2.C (setCursorFromCoordinates): set iy to the right value.
7369         (setCursor): add check if row->previous exists!
7370
7371         * buffer.C (parseSingleLyXformat2Token): reset font after read of
7372         an old float_type as this was the case in the old code!
7373
7374         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
7375
7376         * BufferView2.C (showLockedInsetCursor): use iy
7377         (fitLockedInsetCursor): ditto
7378
7379         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
7380         locked insets as there we have the right value now.
7381
7382         * lyxcursor.C: added iy_ variable and iy functions to set to the
7383         baseline of cursor-y of the locked inset.
7384
7385         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
7386         (setCursor): fixed for insets which need a full row.
7387
7388         * text.C (rowLastPrintable): don't ignore the last space when before
7389         an inset which needs a full row.
7390         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
7391         as last character of a row when before a inset which needs a full row.
7392
7393 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7394
7395         * version.C.in: update date
7396
7397         * text2.C (fullRebreak): try to always return true and see what
7398         happens...
7399
7400 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7401
7402         * MenuBackend.C (expand): use Floating::listName
7403
7404         * FloatList.C (FloatList): add listName argument to the built-in
7405         floats
7406
7407         * Floating.[Ch]: add listName member, which is the 'List of XXX'
7408         text associated with the float.
7409
7410 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7411
7412         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
7413
7414 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7415
7416         * ShareContainer.h: add a couple of missing typenames.
7417
7418 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
7419
7420         * lyxrc.C (getDescription): use _() correctly rather than N_().
7421
7422 2002-03-28  Herbert Voss  <voss@lyx.org>
7423
7424         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
7425         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
7426
7427 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7428
7429         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
7430         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
7431
7432 2002-03-29  Juergen Vigna  <jug@sad.it>
7433
7434         * lyxfunc.C (dispatch): add a missing fitCursor call.
7435
7436         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
7437         it was scrolled by a cursor move, so return the bool status.
7438
7439         * BufferView.C (fitCursor): return the bool flag also to the outside
7440         world as this is needed.
7441
7442         * screen.C (toggleToggle): don't subtract the offset if it's positive.
7443
7444         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
7445         call the edit() as it is not needed (and wrong) IMO.
7446         (workAreaButtonPress): set the screen_first variable before evt.
7447         unlock the inset as this may change screen_first and then we have
7448         a wrong y position for the click!
7449
7450 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7451
7452         * MenuBackend.C (expand): another translation that I missed
7453
7454 2002-03-28  Juergen Vigna  <jug@sad.it>
7455
7456         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
7457
7458         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
7459
7460 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7461
7462         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
7463
7464         * MenuBackend.C (expand): fix export/view/update when there is no
7465         document open.
7466
7467 2002-03-27  Herbert Voss  <voss@lyx.org>
7468
7469         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
7470         and text%
7471
7472 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7473
7474         * bufferview_funcs.C (currentState): only show paragraph number
7475         for is DEVEL_VERSION is set.
7476
7477         * lyxfunc.C (dispatch): put warning in INFO channel
7478
7479         * MenuBackend.C (expand): translate the name of floats
7480
7481         * FloatList.C (FloatList): mark the float names for translation
7482
7483         * converter.C (convert): use LibScriptSearch
7484
7485 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7486
7487         * MenuBackend.C (defaults): fix default menu (we might as well get
7488         rid of it...)
7489
7490 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7491
7492         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
7493         directory.
7494
7495 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7496
7497         * lyxvc.C: reorder includes.
7498
7499 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
7500
7501         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
7502           properly
7503
7504 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
7505
7506         * CutAndPaste.C: change layouts earlier on paste
7507           to avoid crashing when calling getFont()
7508
7509 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
7510
7511         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
7512         irritating #error.
7513
7514 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7515
7516         * WorkArea.C: remove 'Pending' debug message.
7517
7518         * most files: ws cleanup
7519
7520         * buffer.[Ch]: ws changes
7521
7522         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
7523
7524 2002-03-21  Juergen Vigna  <jug@sad.it>
7525
7526         * tabular.C (SetMultiColumn): collapse also the contents of the
7527         cells and set the last border right. Added a Buffer const * param.
7528
7529 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7530
7531         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
7532         linking or not.
7533
7534 2002-03-19  Juergen Vigna  <jug@sad.it>
7535
7536         * text2.C (clearSelection): reset also xsel_cache.
7537
7538         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
7539         where it needs to be called (John tells us to do so too :)
7540         (selectionLost): reset sel_cache.
7541
7542         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
7543
7544 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7545
7546         * text2.C (setCursorIntern): put debuging code in INSETS channel
7547
7548 2002-03-19  André Pönitz <poenitz@gmx.net>
7549
7550         * lyxfunc.C: tiny whitespace change
7551
7552 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7553
7554         * ToolbarDefaults.C (init):
7555         * LyXAction.C (init):
7556         * commandtags.h:
7557         * BufferView_pimpl.C (Dispatch):
7558         * lyxfunc.C (dispatch): remove LFUN_DEPTH
7559
7560 2002-03-19  Allan Rae  <rae@lyx.org>
7561
7562         * exporter.C (Export): removeAutoInsets before doing anything else.
7563         While I've just introduced a dependency on BufferView this really is
7564         the best place to clean the buffer otherwise you need to cleanup in
7565         a dozen places before calling export or cleanup in a dozen functions
7566         that export calls.
7567
7568         * converter.C (runLaTeX):
7569         (scanLog): Better handling of removeAutoInsets and screen updates.
7570
7571         * lyxfunc.C (dispatch): small whitespace changes
7572
7573 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7574
7575         * WorkArea.C (C_WorkAreaEvent): return a value.
7576         (event_cb): return 1 if we handled the event, 0 otherwise.
7577
7578         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
7579
7580 2002-03-18  Juergen Vigna  <jug@sad.it>
7581
7582         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
7583         (GetAdditionalWidth): ditto.
7584         (RightLine): ditto.
7585         (LeftLine): ditto.
7586
7587         * BufferView2.C (copy): use getLyXText() so that we do it inside an
7588         inset if we're there actually (probably not used right now but this
7589         is the direction to go for unifying code).
7590         (paste): disable code to clear the selection.
7591
7592         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
7593         inside an InsetText and move the check further up as it is in the
7594         wrong place.
7595
7596         * text2.C (pasteSelection): set a selection over the pasted text.
7597
7598 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
7599
7600         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
7601         and libgraphics to build on Cygwin.
7602
7603 2002-03-15  Juergen Vigna  <jug@sad.it>
7604
7605         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
7606         inserting an Inset into the paragraph. I know this is not the best
7607         fix but we already use current_view in CutAndPaste so we will remove
7608         all of it's using at the same time.
7609
7610         * buffer.C (sgmlError): deactivated function till it is rewritten in
7611         the right mode, now it can create problems.
7612
7613         * paragraph.C (isLineSeparator): check if getInset returns != 0,
7614         before accessing it.
7615
7616 2002-03-14  Juergen Vigna  <jug@sad.it>
7617
7618         * undo_funcs.C (textHandleUndo): do the right thing when updating
7619         the inset after the undo/redo.
7620
7621         * text2.C (setCursor): just some testcode for #44 not ready yet.
7622
7623         * undo_funcs.C (textHandleUndo): set the next() and previous()
7624         pointers of the paragraph to 0 before deleting otherwise we have
7625         problems with the Paragraph::[destructor].
7626
7627         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
7628         on a paragraph insertion.
7629
7630 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7631
7632         * buffer.C (asciiParagraph): use += operator for char append to
7633         string.
7634
7635         * paragraph.C (getFontSettings): compare >= not just >
7636         (highestFontInRange): ditto
7637         (setFont): ditto
7638
7639 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7640
7641         * paragraph.C: change several algorithm to be more appripriate for
7642         the problem domain. This is lookip in FontList and in the InsetList.
7643
7644 2002-03-13  André Pönitz <poenitz@gmx.net>
7645
7646         * commandtags.h:
7647         * LyXAction.C: remove unused LFUN_MATH_MACROARG
7648
7649 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
7650
7651         * commandtags.h:
7652         * LyXAction.C:
7653         * lyxfunc.C:
7654         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
7655
7656 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7657
7658         * Painter.C (display): anon helper function, adjust code for this
7659         change.
7660         (pixmap): remove function.
7661
7662         * Painter.h: remove private display variable.
7663
7664         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
7665
7666 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
7667
7668         * WorkArea.[Ch]: remove figinset_canvas cruft.
7669
7670 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7671
7672         * lyxtextclass.C (operator): add one item cache optimization.
7673
7674         * bufferlist.h: doxy changes
7675
7676         * bufferlist.C: ws changes
7677
7678         * DepTable.[Ch] (ext_exist): place const in the right spot.
7679
7680         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
7681         call resizeInsets.
7682         (workAreaExpose): call resizeInsets when the with BufferView changes.
7683         (Dispatch): adjust for protectedBlank removal
7684         (specialChar): call updateInset if the insert went ok.
7685
7686         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
7687         specialChar instead.
7688
7689         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
7690
7691         * BufferView.h: doxy change
7692
7693         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
7694
7695         * lyxtextclass.C (operator[]): remove non-const version
7696         (defaultLayout): remove non-const version
7697
7698 2002-03-12  Juergen Vigna  <jug@sad.it>
7699
7700         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
7701         did resize the LyXText too.
7702
7703         * buffer.C (readLyXformat2): set layout information on newly allocated
7704         paragraphs.
7705
7706         * tabular.C (OldFormatRead): set layout information on the paragraph.
7707
7708 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
7709
7710         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
7711
7712 2002-03-11  Juergen Vigna  <jug@sad.it>
7713
7714         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
7715         plainly wrong.
7716         (resizeCurrentBuffer): force also the insets to resize themselfes.
7717         (moveCursorUpdate): fixed up for InsetText.
7718
7719 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
7720
7721         * commandtags.h:
7722         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
7723         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
7724         value of Dialogs::tooltipsEnabled().
7725         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
7726
7727 2002-03-08  Juergen Vigna  <jug@sad.it>
7728
7729         * BufferView_pimpl.C (updateInset): update inset inside inset also
7730         if it isn't inside theLockingInset().
7731
7732 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7733
7734         * buffer.C (asciiParagraph): redo some of the word and line length
7735         handling.
7736         (getLists): look for Caption instead of caption.
7737
7738 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7739
7740         * buffer.C (Buffer): initialize niceFile to true
7741         (makeLaTeXFile):
7742         (makeLinuxDocFile):
7743         (makeDocBookFile): make sure niceFile is true on exit
7744
7745 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7746
7747         * buffer.C (makeLaTeXFile): escape ~ in \input@path
7748
7749 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
7750
7751         * LyXSendto.C: remove.
7752         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
7753         * lyx_gui.C: remove now-redundant comment.
7754         * ColorHandler.h: remove forward declaration of class WorkArea.
7755         * lyxfunc.C: remove #include "WorkArea.h".
7756
7757 2002-03-07  Juergen Vigna  <jug@sad.it>
7758
7759         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
7760         got moved away with the DEPM and also set the inset_owner always
7761         right which before could have been omitted.
7762
7763 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7764
7765         * buffer.C (parseSingleLyXformat2Token): use default layout is the
7766         wanted layout is not found.
7767
7768 2002-03-07  Juergen Vigna  <jug@sad.it>
7769
7770         * CutAndPaste.C (cutSelection): another layout settings forgotten.
7771
7772 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7773
7774         * paragraph.C (breakParagraph): use default layout not layout of
7775         prev paragraph.
7776         (Paragraph): clear ParagraphParameters.
7777
7778 2002-03-06  Juergen Vigna  <jug@sad.it>
7779
7780         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
7781         otherwise it would not be a valid lenght. Fixed a special case in
7782         the minipage compatibility read where we end the document with a
7783         minipage.
7784
7785         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
7786         was set as it could be 0 for InsetTexts first entry.
7787
7788 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7789
7790         * paragraph.C (writeFile): if layout is empty write out
7791         defaultLayoutName().
7792
7793         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
7794         file without named layout we set layout to defaultLayoutName().
7795
7796 2002-03-06  Juergen Vigna  <jug@sad.it>
7797
7798         * CutAndPaste.C (copySelection): set layout for new paragraph.
7799
7800         * text.C (prepareToPrint): leave ERT inset left aligned
7801         (leftMargin): don't indent paragraphs inside ERT insets
7802
7803 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7804
7805         * paragraph.C (breakParagraph): dont call clear do the work manually
7806
7807         * paragraph.[Ch] (clear): remove function
7808
7809 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7810
7811         * paragraph.C (Paragraph): dont call clear, the work has already
7812         been done.
7813
7814         * lyxtextclass.C (operator): assert if n is empty
7815
7816         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
7817         work manually instead.
7818
7819 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
7820
7821         * BufferView_pimpl.C: protect selectionLost against text == 0
7822
7823 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7824
7825         * text.C (breakParagraph): fix a setting layout to '0' problem.
7826
7827 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
7828
7829         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
7830         final location of file, for the included files, and graphics.
7831
7832 2002-03-05  Juergen Vigna  <jug@sad.it>
7833
7834         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
7835
7836 2002-03-04  Juergen Vigna  <jug@sad.it>
7837
7838         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
7839
7840         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
7841         last column of multicolumn cells.
7842         (SetWidthOfMulticolCell): recalculate NMC and real columns.
7843
7844 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
7845
7846         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
7847         file if it doesn't go to a temporary file.
7848
7849         * buffer.C (sgmlOpenTag):
7850         (sgmlCloseTag):  remove extra newline insertion.
7851
7852 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7853
7854         * text.C (getRowNearY): comment out debug msg
7855
7856 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7857
7858         * text2.C: first -> first_y
7859
7860         * text.C (getRowNearY): add some attemts at a possible
7861         optimization, not working.
7862
7863         * tabular.[Ch]: add BufferParams to several function so that newly
7864         created paragraph can be initialized to he default layotu for the
7865         buffers textclass.
7866
7867         * tabular-old.C (ReadOld): add buf->params to call of Init
7868
7869         * screen.C: rename text->first to text->first_y
7870
7871         * paragraph.C (breakParagraph): always set layout in the broken
7872         paragraph
7873
7874         * lyxtextclass.C (Read): remove lowercase
7875         (hasLayout): ditto
7876         (operator): ditto
7877         (delete_layout): ditto
7878
7879         * lyxtext.h: rename first -> first_y
7880
7881         * lyxlayout.C (Read): remove lowercase
7882         (name): ditto
7883         (setName): ditto
7884         (obsoleted_by): ditto
7885
7886         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
7887
7888         * buffer.C (insertErtContents): add params are to InsetERT
7889         (parseSingleLyXformat2Token): add code to check if a paragraphs
7890         layout really exist.
7891         (parseSingleLyXformat2Token): add params to several inset
7892         constructors
7893         (asciiParagraph): remove lowercase, do the layout comparisons with
7894         no_case
7895
7896         * BufferView_pimpl.C (cursorNext): first -> first_y
7897         (resizeCurrentBuffer): first -> first_y
7898         (updateScrollbar): first -> first_y
7899         (scrollCB): first -> first_y
7900         (workAreaMotionNotify): first -> first_y
7901         (workAreaButtonPress): first -> first_y
7902         (checkInsetHit): first -> first_y
7903         (cursorPrevious): first -> first_y
7904         (cursorNext): first -> first_y
7905         (Dispatch): add buffer_->params to severl inset contructors
7906
7907 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7908
7909         * lyxlayout.C (Read): remove some debug info that I forgot.
7910
7911         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
7912         clean up the code slightly.
7913         (makeLinuxDocFile): ditto
7914         (makeDocBookFile): ditto
7915
7916         * text2.C: layout as string
7917
7918         * text.C: layout as string
7919
7920         * paragraph_pimpl.C: layout as string
7921
7922         * paragraph.[Ch]: layout as string
7923
7924         * lyxtextclasslist.[Ch]: layout as string
7925
7926         * lyxtextclass.[Ch]: layout as string
7927
7928         * lyxtext.h: layout as string
7929
7930         * lyxlayout.[Ch]: layout as string
7931
7932         * lyx_cb.C: layout as string
7933
7934         * bufferview_funcs.C: layout as string
7935
7936         * bufferparams.C: layout as string
7937
7938         * buffer.C: layout as string
7939
7940         * LyXView.[Ch]: layout as string
7941
7942         * LaTeXFeatures.[Ch]: layout as string
7943
7944         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
7945
7946         * BufferView_pimpl.C: change current_layout to string, remove
7947         lyx::layout_type.
7948         (Dispatch):
7949         (smartQuote):
7950         (insertInset):
7951         (workAreaButtonRelease): layout as string
7952
7953         * BufferView2.C (unlockInset): adjust
7954
7955         * vspace.C (asLatexCommand): use an explict temp variable.
7956
7957 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
7958
7959         * Makefile.am: use FRONTEND_*
7960
7961 2002-03-01  Juergen Vigna  <jug@sad.it>
7962
7963         * tabular.C (SetWidthOfMulticolCell): changed to something better
7964         I hope but still work in progress.
7965         (recalculateMulticolumnsOfColumn): renamed function from
7966         recalculateMulticolCells as it is more appropriate now.
7967         (SetWidthOfCell): calculate multicols better.
7968
7969 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7970
7971         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
7972
7973         * lyxfunc.C (processKeySym): print sequence also if it is
7974         `deleted' (complete)
7975
7976         * kbsequence.C (print): print sequence even if it is deleted
7977         (complete would be a better word, actually).
7978
7979         * lyxfunc.C (dispatch): print complete options after a prefix key
7980
7981         * vspace.C (asLatexCommand): rewrite in a slightly different form.
7982
7983 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
7984
7985         * text2.C (setCharFont): eliminate setCharFont code duplication.
7986
7987 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7988
7989         * BufferView_pimpl.C (Dispatch): remove bogus handling of
7990         LFUN_TABULAR_FEATURE (bug #177)
7991
7992 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
7993
7994         * Makefile.am: remove figure.h
7995
7996 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
7997
7998         * Bufferview_pimpl.C:
7999         * CutAndPasteC:
8000         * LaTeX.C:
8001         * LyXSendto.C:
8002         * buffer.C:
8003         * bufferlist.C:
8004         * converter.C:
8005         * language.C:
8006         * lyxfunc.C:
8007         * lyxvc.C:
8008         * paragraph.C:
8009         * text.C:
8010         * text2.C: remove #include "lyx_gui_misc.h".
8011
8012         * LaTeX.C: added #include <cstdio>
8013
8014 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8015
8016         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
8017         that the paragraph following this one can have.
8018
8019         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
8020
8021         * vspace.C (asLatexCommand): fix bogus gcc warning
8022
8023         * Makefile.am (lyx_SOURCES): remove vms_defines.h
8024
8025 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
8026
8027         * text2.C (setLayout): get rid of redundant code
8028
8029 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
8030
8031         * text2.C (incDepth): make sure depth cannot be increased beyond
8032         reasonable values.
8033
8034 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
8035
8036         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
8037         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
8038
8039         * PainterBase.h (image):
8040         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
8041         a LyXImage const *.
8042
8043 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
8044
8045         * BufferView.C:
8046         * BufferView.h:
8047         * BufferView_pimpl.C:
8048         * BufferView_pimpl.h:
8049         * LaTeXFeatures.C:
8050         * LyXAction.C:
8051         * LyXView.C:
8052         * Makefile.am:
8053         * UpdateList.h:
8054         * UpdateList.C:
8055         * buffer.C:
8056         * figure.h:
8057         * figureForm.C:
8058         * figureForm.h:
8059         * figure_form.C:
8060         * figure_form.h:
8061         * lyx_cb.C:
8062         * lyx_gui.C:
8063         * lyx_gui_misc.C:
8064         * lyxfunc.C:
8065         * sp_base.h:
8066         * sp_ispell.h:
8067         * sp_pspell.h:
8068         * sp_spell.C: remove fig inset, and the crap house of
8069           cards that follows it
8070
8071 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
8072
8073         * Makefile.am:
8074         * lyxserver.C:
8075         * os2_defines.h:
8076         * os2_errortable.h:
8077         * nt_defines.h: move .h into support/
8078
8079         * vms_defines.h: remove
8080
8081         * WorkArea.C: add space in debug output
8082
8083         * text2.C:
8084         * paragraph.C:
8085         * buffer.C: add WITH_WARNINGS
8086
8087         * vc-backend.h:
8088         * vc-backend.C:
8089         * bufferlist.C: s/retrive/retrieve/, add docs
8090
8091         * vspace.h:
8092         * vspace.C:
8093         * kbmap.h:
8094         * lyxlength.h:
8095         * lyxgluelength.h:
8096         * length_common.h:
8097         * chset.h:
8098         * chset.C: add docs
8099
8100         * lyxgui.C: add ID to X error handler
8101
8102         * lyxtestclass.c: fix typo
8103
8104 2002-02-26  Juergen Vigna  <jug@sad.it>
8105
8106         * tabular_funcs.C (write_attribute): changed so that some default
8107         attributes are not written at all.
8108         (getTokenValue): set default values before trying to read the
8109         value so we have the return value always set as default if we don't
8110         find the token we search for.
8111
8112         * tabular.C (Write): write bools as bools not as strings!
8113
8114 2002-02-22  Juergen Vigna  <jug@sad.it>
8115
8116         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
8117         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
8118
8119         * text.C (leftMargin): don't add an indent for paragraphs inside
8120         tabular cells (fix #208).
8121
8122 2002-02-21  José Matos  <jamatos@fep.up.pt>
8123
8124         * tabular.C (docBook): fixed support for long tables.
8125
8126 2002-02-20  Juergen Vigna  <jug@sad.it>
8127
8128         * text2.C (getFont): get the drawing font of the Inset if this
8129         paragraph is inside an inset (only important for InsetERT for now).
8130
8131         * buffer.C (insertErtContents): use new lanugage params in ERT
8132         constructor.
8133
8134         * CutAndPaste.C: commenting out seemingly uneeded code.
8135
8136 2002-02-19  Allan Rae  <rae@lyx.org>
8137
8138         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
8139         Iterators might be simple to use but they also get invalidated.
8140         (removeAutoInsets): renamed saved cursor tracking variables and added
8141         some comments to clarify what everything does.
8142
8143 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
8144
8145         * Chktex.C:
8146         * LaTeX.C:
8147         * LyXSendto.C:
8148         * converter.C:
8149         * lyx_cb.C:
8150         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
8151         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
8152
8153         * lyxfunc.C:
8154         * vc-backend.h: remove #include "support/syscall.h"
8155
8156         * LaTeX.C:
8157         * LyXSendto.C:
8158         * converter.C: rearrange #includes in Lars' approved fashion.
8159
8160         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
8161         forward declare class Timeout in the header file.
8162
8163         * XFormsView.C: changes due to the above.
8164
8165         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
8166         similar to LyXView.
8167
8168         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
8169         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
8170
8171 2002-02-18  José Matos  <jamatos@fep.up.pt>
8172
8173         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
8174         insets contents.
8175
8176 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
8177
8178         * a lot of small ws changes
8179         * add a lot of using std::XXX
8180         * use std construcs some places where approp.
8181         * use some exisint stuff from lyxfunctional where approp.
8182         * Make file changes to use partial linking (lets test this now...)
8183
8184 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
8185
8186         * Chktex.C:
8187         * buffer.C:
8188         remove #include "support/syscontr.h" as it's redundant. Always has been.
8189
8190         * Chktex.C:
8191         * LaTeX.C:
8192         * LyXSendto.C:
8193         * converter.C:
8194         * lyx_cb.C:
8195         * vc-backend.C:
8196         change Systemcalls::System to Systemcalls::Wait and
8197         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
8198         No change of functionality, just reflects the stripped down Systemcalls
8199         class.
8200
8201 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
8202
8203         * debug.[Ch]: add a GRAPHICS type to the enum.
8204
8205 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8206
8207         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
8208
8209         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
8210         there is an inset.
8211
8212 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8213
8214         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
8215         match the changes below.
8216
8217         * text2.C (toggleInset): if there is not editable inset at cursor
8218         position, try to see if cursor is _inside_ a collapsable inset
8219         and close it.
8220
8221 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8222
8223         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
8224         document menu has a nice checkbox
8225
8226 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8227
8228         * lyxlength.C (asLatexString): change PW to output as percent of
8229         \textwidth.
8230
8231         * lengthcommon.C: change '%' to 't%'
8232
8233         * lyxfunc.C (dispatch): a few comments from Martin
8234
8235 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
8236
8237         * WorkArea.h:
8238         * WorkArea.C:
8239         * BufferView_pimpl.h:
8240         * BufferView_pimpl.C: clear our selection when X tells us we've lost
8241           the X selection.
8242
8243 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8244
8245         * vspace.C (inPixels): fix compiler warning
8246
8247 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8248
8249         * lyxfunc.C (getStatus): fix status message for disabled commands.
8250
8251 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
8252
8253         * BufferView_pimpl.C: fix crash on close buffer
8254         during selection (#227)
8255
8256 2002-01-27  Herbert Voss  <voss@lyx.org>
8257
8258         * buffer.C: link old Figure to new graphic inset
8259
8260 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
8261
8262         * FontLoader.C (getFontinfo): Change the latex font names in order
8263         to match the names of type1inst.
8264
8265 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8266
8267         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
8268
8269         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
8270         (extchanged): ditto
8271         (ext_exist): ditto
8272         (remove_files_with_extension): ditto
8273         (remove_file): ditto
8274         (write): ditto
8275
8276         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
8277         document is smaller than the work area height. Do not initialize
8278         static variables to 0.
8279
8280 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8281
8282         * lyx_gui.C (init): give the toolbar tooltips a normal font.
8283
8284         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
8285         LFUN_LAYOUT_PARAGRAPHS.
8286
8287         * tabular.C (GetCellFromInset): new method. Finds an inset in a
8288         tabular. It is possible to provide a possible cell, which will
8289         typically be the actcell from the corresponding insettabular
8290
8291         * lyxfunc.C (getStatus): small cleanup; disable
8292         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
8293         true
8294
8295 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8296
8297         * tabular.C (Validate): remove broken optimization (fixes bug #201)
8298
8299         * paragraph.C (startTeXParParams):
8300         (endTeXParParams): new methods. The LaTeX code to
8301         start/end paragraph formatting
8302         (simpleTeXOnePar): call startTeXParParams also when paragraph is
8303         empty (fixes bug #200)
8304
8305         * vspace.C (inPixels): adapt to the change below
8306         (inPixels): [later] more cleanups (remove unused variables)
8307
8308         * lyxlength.C (inPixels): change to use a width and a height as
8309         parameter.
8310
8311 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8312
8313         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
8314         Replaced with \paperwidth
8315
8316         * DepTable.C (insert): add std:: qualifier
8317
8318 2002-01-18  Allan Rae  <rae@lyx.org>
8319
8320         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
8321         updated also?
8322
8323         * text.C (drawInset): Turned out I didn't know enough about how
8324         rebreaking worked.  This fixes most of the redraw problems.  I see
8325         an occasional cursor trail when a line is broken now and the cursor
8326         placement can seem out by a few pixels also after a rebreak.
8327
8328 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8329
8330         * buffer.C (parseSingleLyXformat2Token): update because minipage
8331         width is now a LyXLength
8332
8333         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
8334
8335         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
8336         math insets
8337
8338 2002-01-17  Juergen Vigna  <jug@sad.it>
8339
8340         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
8341
8342         * BufferView2.C (lockInset): call edit() so that theLockingInset()
8343         is set correctly and the inset is updated correctly.
8344
8345 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8346
8347         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
8348         the beginning of the loop.
8349
8350 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
8351
8352         * lyxrc.C: improve help for use_scalable_fonts
8353
8354 2002-01-17  Allan Rae  <rae@lyx.org>
8355
8356         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
8357
8358 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8359
8360         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
8361         make sure to set their inset_owner to the right value (bug #171)
8362
8363 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
8364
8365         * DepTable.h
8366         * DepTable.C: Implement mtime checking to reduce time spent doing
8367         CRCs.
8368
8369 2002-01-16  Juergen Vigna  <jug@sad.it>
8370
8371         * tabular.C (GetAdditionalHeight): one of error fixed.
8372
8373         * lyxrc.C (output): small fix in writing use_pspell.
8374
8375 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
8376
8377         * sp_base.h: #include LString.h
8378
8379 2002-01-16  Allan Rae  <rae@lyx.org>
8380
8381         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
8382         Can someone check this please?
8383
8384         * text.C (drawInset): It was possible that p.row would be removed by
8385         breakAgainOneRow upsetting a few other settings.  There may be another
8386         small tweak possible by setting need_break_row = 0 when p.row has been
8387         removed but I don't know enough about the logic here.
8388
8389 2002-01-15  Allan Rae  <rae@lyx.org>
8390
8391         * text.C (insertChar): removed conditional truism.
8392
8393         * BufferView2.C (removeAutoInsets): More tweaks.
8394         cur_par_prev could be a stray pointer.  Check for trailing empty line
8395         in case last line was cur_par and only had an error inset on it.
8396
8397 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8398
8399         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
8400         absolute
8401
8402         * vc-backend.C (most methods):
8403         * exporter.C (Export):
8404         * converter.C (convert):
8405         (runLaTeX):
8406         * LyXSendto.C (SendtoApplyCB):
8407         * lyxfunc.C (dispatch):
8408         (menuNew):
8409         (open):
8410         (doImport):
8411         * lyx_cb.C (AutoSave):
8412         (InsertAsciiFile):
8413         * BufferView_pimpl.C (MenuInsertLyXFile):
8414         * buffer.C (runChktex): use Buffer::filePath().
8415
8416         * buffer.h: rename filename to filename_; rename filepath to
8417         filepath_ and make it private
8418         (filePath): new method
8419
8420         * buffer.C (writeFile): use fileName()
8421         (getLatexName):
8422
8423         * lyx_main.C (init): fix starting  of LyX when the binary is a
8424         link from so,ewhere else.
8425
8426         * minibuffer.C: include <cctype> for isprint
8427
8428 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
8429
8430         * buffer.C (parseSingleLyXformat2Token): changes associated with the
8431         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
8432         name clash with InsetCollapsable's width function.
8433
8434 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8435
8436         * lastfiles.C: include <iterator>
8437
8438 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
8439
8440         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
8441         std::count.
8442
8443         * buffer.C (makeLaTeXFile): ditto.
8444         Also make loop operation more transparent.
8445
8446 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
8447
8448         * ToolbarDefaults.C: remove trailing comma closing namespace.
8449
8450         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
8451
8452         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
8453         as in WorkArea.
8454
8455         * trans.C (Load): comment out unused variable, allowed.
8456
8457 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
8458
8459         * minibuffer.[Ch] (append_char): new method to recieve input from the
8460         drop-down completion browser. If a key was pressed, then recieve this
8461         char and append it to the existing string.
8462         (peek_event): modify the positioning data passed to the completion
8463         browser so that it can be placed above the minibuffer rather than below.
8464 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8465
8466         * LyXAction.C (init): alloe error-next for readonly documents.
8467
8468         * BufferView2.C (ChangeRefsIfUnique): use standard version of
8469         count.
8470
8471 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8472
8473         * bufferlist.C (readFile): create the buffer _after_ checking that
8474         the file exists.
8475
8476         * lyxfunc.C (verboseDispatch): fix handling of arguments
8477
8478         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
8479
8480         * lyxrc.C: use string::erase() instead of initializing to "".
8481
8482
8483 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
8484
8485         * BufferView_pimpl.h:
8486         * BufferView_pimpl.C:
8487         * WorkArea.h:
8488         * WorkArea.C:
8489         * text2.C: tell X when we have made a selection for copying
8490
8491 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8492
8493         * BufferView_pimpl.C (MenuInsertLyXFile):
8494         * lyxfunc.C (menuNew):
8495         (open):
8496         (doImport): add shortcuts to directory buttons
8497
8498         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
8499         open a float)
8500
8501         * lyxfunc.C (setStatusMessage):
8502         (getStatusMessage): new methods
8503         (getStatus):use setStatusMessage instead of setErrorMessage
8504         (dispatch): when function is disabled, set error message here
8505         [instead of in getStatus previously]
8506
8507         * BufferView_pimpl.C (workAreaButtonRelease): update
8508         toolbar/menubar here too.
8509
8510 2002-01-13  Allan Rae  <rae@lyx.org>
8511
8512         * BufferView2.C (removeAutoInsets): finished off earlier fix.
8513         Now seems indestructible.  Remaining task is to audit all other
8514         code affected by deleteEmptyParagraphMechanism.  One small quirk
8515         left is that an empty document with an error in the preamble can
8516         be made to report an error but no error box appears.  I don't know
8517         where it goes.
8518         (removeAutoInsets): Improved comments.
8519
8520 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
8521
8522         * Thesaurus.h:
8523         * Thesaurus.C: update for Aiksaurus 0.14
8524
8525 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8526
8527         * text2.C (firstParagraph): removed member function, all uses
8528         replaces with ownerParagraph
8529         (redoParagraphs): here
8530         (updateInset): here
8531         (toggleAppendix): here
8532         * BufferView2.C (insertErrors): here
8533         (setCursorFromRow): here
8534
8535 2002-01-13  Allan Rae  <rae@lyx.org>
8536
8537         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
8538         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
8539         There is still a way to segfault this although you may have to do this
8540         multiple times: Have an InsetERT with an unknown command in it.
8541         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
8542         <down-arrow>, <Enter> again, View->DVI, BANG!
8543
8544         * text2.C (setCursor):
8545         (deleteEmptyParagraphMechanism):
8546         * lyxtext.h (setCursor):
8547         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
8548         Making use of the return value may help fix other bugs.
8549
8550 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8551
8552         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
8553
8554         * LyXView.C (updateMenubar): call MenuBar::update here
8555         (updateToolbar): but not here
8556         (showState): do not update toolbar/menubar
8557
8558         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
8559         should need to care about that.
8560
8561         * lyxfunc.C (verboseDispatch): simplify a bit
8562         (getStatus): have a version which takes a pseudoaction, and
8563         another which requires a (kb_action,string).
8564
8565         * LyXAction.C (retrieveActionArg): make it work also when action
8566         is not a pseudo-action.
8567         (getActionName): simplify a bit
8568         (helpText):
8569
8570 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8571
8572         * lyxfunc.C (verboseDispatch): new families of methods with
8573         several ways to specify a command and a bool to indicate whether
8574         the command name and shortcut should be displayed in minibuffer
8575         (eventually, we could extend that to a finer bitmask like
8576         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
8577         (dispatch): the pristine dispatch command which just, well,
8578         dispatchs! Note it still sets its result to minibuffer; I'm not
8579         sure we want that.
8580
8581         * lyxfunc.h: remove setHintMessage
8582
8583         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
8584
8585 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8586
8587         * BufferView_pimpl.C (specialChar): delete new inset if we have
8588         not been able to insert it.
8589
8590         * kbmap.C: revert to using int instead of kb_action, since all we
8591         are dealing with is pseudo-actions.
8592
8593         * LyXAction.C (searchActionArg): change to return int instead of
8594         kb_action, since the result is a pseudoaction.
8595
8596 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
8597
8598         * buffer.C (insertErtContents): Fix (partially) the font bug.
8599
8600 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
8601
8602         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
8603         as the other one is broken on my machine!
8604
8605 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
8606
8607         * commandtags.h:
8608         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
8609
8610 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
8611
8612         * lyxrc.[Ch]: change names and descriptions of popup font variables to
8613         reflect their actual use. Provide compatibility code for older lyxrc
8614         files.
8615
8616         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
8617         FL_NORMAL_STYLE.
8618         change names of popup font variables in line with the changes to lyxrc.C
8619
8620 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8621
8622         * buffer.C (asciiParagraph): avoid outputing a word twice after
8623         an inset.
8624
8625         * lyxrc.C (getDescription): document that document_path and
8626         template_path can be empty.
8627
8628 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8629
8630         * LaTeXFeatures.C (getMacros):
8631         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
8632
8633         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
8634
8635         * LaTeXFeatures.C (useFloat): require "float" here instead of in
8636         getPackages.
8637         (getPackages): rename feature "floats" to "float". Use an array to
8638         iterate over 'simple' features (i.e. just a \usepackage). Add
8639         handling of "amsmath" (renamed from "amsstyle").
8640
8641 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
8642
8643         * LaTeXFeatures.C (require): Prevent duplicate entries in the
8644         features list.
8645
8646 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
8647
8648         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
8649         FuncStaus::FuncStatus & FuncStaus::some_method().
8650
8651 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
8652
8653         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
8654         of the func_satus stuff. Edited and massaged in various ways by
8655         JMarc.
8656
8657         * lyxfunc.C (getStatus): use FuncStatus
8658
8659 2002-01-08  Juergen Vigna  <jug@sad.it>
8660
8661         * text.C (nextBreakPoint): use function Inset::isChar().
8662
8663         * paragraph.C (TeXOnePar): use function
8664         Inset::forceDefaultParagraphs.
8665
8666         * buffer.C (latexParagraphs): use function
8667         Inset::forceDefaultParagraphs.
8668
8669 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
8670
8671         * lyx_gui.C (init): set the style of the menu popups to
8672         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
8673
8674 2002-01-07  Juergen Vigna  <jug@sad.it>
8675
8676         * text.C (setHeightOfRow): small fix
8677         (prepareToPrint): don't look at alignment if we don't have the place
8678         for doing it.
8679
8680 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
8681
8682         * box.C: New file. Move the Box methods and functions out of box.h,
8683         following Lars' suggestion.
8684
8685 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
8686
8687         * box.h: #include "support/LOstream.h", needed for inlined function.
8688
8689         * lyxtextclass.C:
8690         * lyxtextclasslist.C: added some using std declarations.
8691
8692 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
8693
8694         * box.h: make signed dimensions to allow insets wider than
8695           the screen (bug #162)
8696
8697         * BufferView_pimpl.C: add some insetHit debug
8698
8699 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
8700
8701         * vc-backend.C: add FIXME
8702
8703 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8704
8705         * lyxfunc.C (getStatus): enable code for showing math font status
8706         in toolbar/menu.
8707
8708 2002-01-07  Juergen Vigna  <jug@sad.it>
8709
8710         * text.C (nextBreakPoint): removed debug output not needed anymore.
8711
8712 2002-01-06  Juergen Vigna  <jug@sad.it>
8713
8714         * text.C (nextBreakPoint): fixed up this function we had this bug
8715         since ever but now hopefully we break row better.
8716         (insertChar): we have to check if an inset is the next char as it
8717         could now happen that a large inset is causing a break.
8718
8719 2002-01-05  Juergen Vigna  <jug@sad.it>
8720
8721         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
8722         if it doesn't like to be drawed.
8723
8724 2002-01-04  Juergen Vigna  <jug@sad.it>
8725
8726         * BufferView2.C (lockInset): forgot to set a cursor.
8727
8728         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
8729
8730 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
8731
8732         * FormMathsPanel.C:
8733         * FormMathsPanel.h
8734         * MathsSymbols.C:
8735         * form_maths_panel.C:
8736         * form_maths_panel.h:
8737         * form_maths_panel.fd: implemented sub- and super- buttons in math
8738         panel.
8739
8740         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
8741         (or ^ space) to be used as in TeX (req'd by André).
8742
8743         * lyxfunc.C: Allow ^ and _ again to be used both as
8744         super/subscript (mathed) and as themselves (in text).
8745
8746 2002-01-03  Allan Rae  <rae@lyx.org>
8747
8748         * LyXView.C (updateWindowTitle): Setup a short icon title of either
8749         "LyX" or the filename of the current buffer if it has one.  This is a
8750         modified form of John Levon's patch.
8751
8752         * XFormsView.C (setWindowTitle): also set icon title.
8753
8754         * LyXView.h (setWindowTitle): signature changed.
8755         * XFormsView.h (setWindowTitle): ditto.
8756
8757 2002-01-02  Juergen Vigna  <jug@sad.it>
8758
8759         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
8760
8761 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8762
8763         * screen.C (topCursorVisible): introduce a temp var for
8764         text->cursor.row(), handle the case where this row is null. (kindo
8765         hachish)
8766
8767         * text2.C (setCursor): add a couple of asserts.
8768
8769         * paragraph.h (inset_iterator): add -> operator
8770
8771         * paragraph.[Ch] (autoDeleteInsets): remove member function
8772
8773         * BufferView2.C (removeAutoInsets): rewrite to handle the old
8774         cursor pos correctly and handle inset deletion by itself.
8775         (insertErrors): move iterator declaration out of for expression
8776
8777         * lyxtextclass.C: add <algorithm>
8778
8779         * Makefile.am: added the new files to sources, removed layout.C
8780
8781         * layout.C: removed file
8782
8783         * layout.h: remove LYX_DUMMY_LAYOUT
8784
8785         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
8786         layout.
8787
8788         * lyxlayout.[Ch]:
8789         * lyxtextclass.[Ch]:
8790         * lyxtextclasslist.[Ch]: new files
8791
8792         * include order changes to a lot of files, also changes because of
8793         the six new files.
8794
8795 2001-12-27  Juergen Vigna  <jug@sad.it>
8796
8797         * buffer.C (asciiParagraph): more fixes.
8798
8799         * tabular.C (ascii): make ascii export support export of only the
8800         data separated by a column-delimiter.
8801         (ascii): better support for ascii export.
8802
8803         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
8804
8805 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8806
8807         * tabular_funcs.C: use a "using std::getline" instead of the
8808         previous fix from Angus (necessary for cxx + lyxstring)
8809
8810 2001-12-24  Juergen Vigna  <jug@sad.it>
8811
8812         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
8813
8814         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
8815         problems. First check a minipage also if we have some ert-contents
8816         (not only on par->size(), second set the right depth of the paragraph
8817         on the relink to the root-paragraph-list!
8818
8819         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
8820         which then did not anymore update the main paragraphs on undo/redo!
8821
8822 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8823
8824         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
8825         code. Support all font-changing funcs (even those which are not in
8826         menu currently). Support for reporting font settings in
8827         mathed (disabled until Andre provides a function on mathed's side).
8828
8829         * func_status.h (toggle): small helper function to set toggle
8830         state on a flag.
8831
8832 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
8833
8834         * tabular_funcs.C: getline -> std::getline
8835
8836 2001-12-21  Juergen Vigna  <jug@sad.it>
8837
8838         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
8839         accessed and could be 0 (I couldn't generate this but it seems
8840         Michael could!).
8841
8842 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8843
8844         * tabular_funcs.C: add LIstream.h, move write_attribute to..
8845         * tabular_funcs.h: here and include iosfwd
8846
8847 2001-12-20  Juergen Vigna  <jug@sad.it>
8848
8849         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
8850         inside inset but undo_par was.
8851
8852 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8853
8854         * Thesaurus.C: always include <config.h> in sources.
8855
8856         * Painter.h:
8857         * lyxlookup.h:
8858         * box.h: do not include <config.h> in header files
8859
8860         * text.C (paintLastRow): remove unused variable
8861
8862         * text.C (transformChar):
8863         (insertChar):
8864         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
8865
8866         * Painter.C (text):
8867         * font.C (width): rewrite to use uppercase() instead of
8868         islower/toupper.
8869
8870         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
8871
8872 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
8873
8874         * lyxfind.C: clean up of find failure position change
8875
8876 2001-12-20  Juergen Vigna  <jug@sad.it>
8877
8878         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
8879
8880         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
8881         (TeXRow): added to LaTeX a single tabular row.
8882         (TeXLongtableHeaderFooter): added to output LT-h/f data.
8883         (Latex): simplified and finally good LT-h/f support.
8884         (various_functions): just small adaptions for LT-h/f support.
8885
8886         * tabular_funcs.[hC]: added and moved here all not classfunctions
8887         of LyXTabular.
8888
8889 2001-12-19  Juergen Vigna  <jug@sad.it>
8890
8891         * tabular.[Ch]: better support for longtabular options (not finished
8892         yet!)
8893
8894 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8895
8896         * text.C (paintLastRow): use the label font instead of the font of
8897         the last character to compute the size of *_BOX. This makes more
8898         sense and avoids a crash with empty paragraphs.
8899         Use Painter::rectangle to draw EMPTY_BOX.
8900
8901 2001-12-19  Juergen Vigna  <jug@sad.it>
8902
8903         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
8904         the paragraphs if the replaced paragraph is not the first one!
8905         Tried to delete not used paragraphs but does not work yet so for
8906         now it's inside #ifdef's and by default off!
8907
8908 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8909
8910         * MenuBackend.C: include "lyx_main.h" instead of declaring
8911         lastfiles (actually was declared as LastFiles* instead of a
8912         scoped_ptr).
8913
8914 2001-12-17  Juergen Vigna  <jug@sad.it>
8915
8916         * tabular.C (AppendColumn): applied John's fix
8917
8918 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
8919
8920         * BufferView.h:
8921         * BufferView.C:
8922         * BufferView_pimpl.h:
8923         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
8924
8925         * Makefile.am:
8926         * box.h: new start of class for above
8927
8928         * lyxfunc.C: ignore space-only minibuffer dispatches.
8929           Show the command name when it doesn't exist
8930
8931         * minibuffer.C: don't add empty lines to the history
8932
8933         * minibuffer.C: add a space on dropdown completion
8934
8935 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
8936
8937         * text.C: fix line above/below drawing in insets
8938
8939 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8940
8941         * lyxlength.C (LyXLength): Initialize private variables.
8942
8943 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
8944
8945         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
8946         when inserting error insets.
8947
8948 2001-12-13  Juergen Vigna  <jug@sad.it>
8949
8950         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
8951         actually sometimes the before-paragraph.
8952         (setUndo): don't clear the redostack if we're not actually undoing!
8953
8954 2001-12-06  Juergen Vigna  <jug@sad.it>
8955
8956         * undo_funcs.C (textHandleUndo): well after John's hint I got here
8957         and fixed redoing of main paragraph, so we can use it now ;)
8958
8959         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
8960
8961 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8962
8963         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
8964         Juergen's request
8965
8966 2001-12-13  André Pönitz <poenitz@gmx.net>
8967
8968         * undostack.[Ch]:
8969         * undo_func.C: minor cleanup
8970
8971 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8972
8973         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
8974         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
8975         font in urw-fonts package which is marked as -urw-fontspecific and
8976         does not work (incidentally, changing the encoding in the
8977         fonts.dir of this package to -adobe-fontspecific fixes the
8978         problem).
8979
8980         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
8981         is a crash when undoing first paragraph (Juergen, please take a
8982         look). THis does not mean the undo fix is wrong, just that it
8983         uncovers problems.
8984
8985         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
8986         the (Paragraph*) version when needed instead of duplicating the
8987         code.
8988
8989         * text.C (workWidth): use Inset::parOwner to find out where the
8990         inset has been inserted. This is a huge performance gain for large
8991         documents with lots of insets. If Inset::parOwner is not set, fall
8992         back on the brute force method
8993
8994         * paragraph_pimpl.C (insertInset):
8995         * paragraph.C (Paragraph):
8996         (cutIntoMinibuffer): set parOwner of insets when
8997         inserting/removing them
8998
8999         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
9000
9001 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
9002
9003         * commandtags.h:
9004         * LyXAction.C:
9005         * lyx_main.C:
9006         * lyxfunc.C:
9007         * mathed/formulabase.C:
9008         * mathed/math_cursor.[Ch]:
9009         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
9010
9011
9012 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9013
9014         * lyxlength.[Ch] (operator!=): new function
9015
9016 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9017
9018         * text.C (workWidth): use Inset::parOwner to find out where the
9019         inset has been inserted. This is a huge performance gain for large
9020         documents with lots of insets. If Inset::parOwner is not set, fall
9021         back on the brute force method
9022
9023         * paragraph_pimpl.C (insertInset):
9024         * paragraph.C (Paragraph):
9025         (cutIntoMinibuffer): set parOwner of insets when
9026         inserting/removing them
9027
9028         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
9029
9030 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9031
9032         * tabular-old.C (getTokenValue):
9033         * tabular.C (getTokenValue):
9034         (write_attribute): new versions for LyXLength
9035         (everywhere): adjust the use of widths
9036
9037         * tabular.h: change the type of widths from string to LyXLength
9038
9039 2001-12-11  Ben Stanley <bds02@uow.edu.au>
9040
9041         * paragraph.C: fixed missing line number count when exporting
9042         Environments to LaTeX file
9043
9044         * buffer.C: added informational message for checking line numbers.
9045
9046 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9047
9048         * text2.C (deleteEmptyParagraphMechanism): if there is only one
9049         paragraph, do the 'double space' part, but not the 'empty
9050         paragraph' one.
9051
9052         * text.C (workWidth): small optimization
9053         (getLengthMarkerHeight): use minimal size for negative lengths.
9054
9055 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
9056
9057         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
9058
9059         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
9060
9061 2001-12-11  André Pönitz <poenitz@gmx.net>
9062
9063         * FontLoader.C:
9064         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
9065
9066 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
9067
9068         * text2.C: keep selection on a setFont()
9069
9070 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
9071
9072         * lyx_cb.C: another bv->text misuse, from insert label
9073
9074 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
9075
9076         * kbsequence.h:
9077         * kbsequence.C: re-instate nmodifier mask
9078
9079 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
9080
9081         * lyx_main.h: make lyxGUI private.
9082
9083 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
9084
9085         * lyxfind.C: place the cursor correctly on failed search
9086
9087 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9088
9089         * text.C (getLengthMarkerHeight): for small heights, the arrows
9090         are not always on top/bottom of the text
9091         (drawLengthMarker): smaller arrows; take the left margin in
9092         account; draw also vfills.
9093         (paintFirstRow):
9094         (paintLastRow): remove special code for vfill and standard spaces,
9095         since everything is handled in drawLengthMarker now.
9096
9097 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9098
9099         * buffer.C (insertErtContents): try to handle font and language
9100         interaction a bit better.g
9101
9102         * ColorHandler.C (updateColor): change the hash to cover the whole
9103         LColor enum, ws cleanup
9104         (getGCLinepars): ditto
9105         (getGCLinepars): only lookup in the linecache once.
9106
9107 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
9108
9109         * iterators.C (operator++): Make the iterator more robust
9110
9111         * BufferView2.C (removeAutoInsets): Use paragraph iterators
9112         (John's patch)
9113         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
9114
9115 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9116
9117         * lyxtext.h:
9118         * text.C: better added space drawing
9119
9120 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9121
9122         * LyXView.C:
9123         * BufferView2.C: fix layout combo update on inset unlock
9124
9125 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9126
9127         * Makefile.am: don't compile unused files
9128
9129 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9130
9131         * lyxfunc.C:
9132         * commandtags.h:
9133         * LyXAction.C: remove old LFUN_LAYOUTNO
9134
9135 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9136
9137         * paragraph_pimpl.h:
9138         * paragraph_pimpl.C: isTextAt() doesn't need font param
9139
9140 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9141
9142         * lyxlex.h:
9143         * lyxlex.C: little cleanup
9144
9145 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9146
9147         * BufferView_pimpl.C: fix insertAscii for insets
9148
9149 2001-12-05  Juergen Vigna  <jug@sad.it>
9150
9151         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
9152         set the right font on the "multi" paragraph paste!
9153
9154 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9155
9156         * trans_decl.h:
9157         * trans_mgr.[Ch]:
9158         * trans.[Ch]:
9159         * lyxgluelength.C:
9160         * lyxlength.C: remove out-commented code.
9161
9162         * BufferView_pimpl:
9163         * CutAndPaste.C:
9164         * DepTable.C:
9165         * buffer.C:
9166         * chset.C:
9167         * lastfiles.C:
9168         * lyxlex.C:
9169         * lyxlex_pimpl.C:
9170         * lyxserver.C:
9171         * screen.C:
9172         * tabular-old.C:
9173         * tabular.C:
9174         * text.C:
9175         * trans_mgr.C:
9176         * vc-backend.C: change "while(" to "while ("
9177
9178         * lyxlength.[Ch]: add zero function to check if length is zero or
9179         not
9180         * lyxgluelength.C: use it
9181
9182 2001-12-05  Allan Rae  <rae@lyx.org>
9183
9184         * lyxlength.C: Attempted a fix for the abs(int) header selection.
9185         Works for 2.95.3, from what I understand of Garst's reports this should
9186         work for other g++ versions.  We're screwed if the abs(int) definition
9187         changed between bugfix releases of gcc.
9188
9189 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
9190
9191         * text.C: fix chapter label offset !
9192
9193 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
9194
9195         * lyxtext.h:
9196         * text.C: fix hfill at end of line, clean up
9197
9198 2001-12-04  Juergen Vigna  <jug@sad.it>
9199
9200         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
9201         that we force an update of the inset and it's owners if neccessary.
9202
9203 2001-12-03  Juergen Vigna  <jug@sad.it>
9204
9205         * text.C (rowLast): simplified code
9206
9207 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
9208
9209         * lyxfunc.C: fix show options on timeout
9210
9211 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9212
9213         * screen.C (topCursorVisible): scroll half a page when the cursor
9214         reached top of bottom of screen
9215
9216 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
9217
9218         * minibuffer.C: deactivate on loss of focus
9219
9220 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9221
9222         * vspace.[Ch] (operator!=): add operator.
9223
9224 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
9225
9226         * BufferView_pimpl.C: refuse to open an inset when
9227         there's a selection.
9228
9229 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
9230
9231         * BufferView_pimpl.C: allow to click on RHS of full row insets
9232
9233 2001-11-30  Juergen Vigna  <jug@sad.it>
9234
9235         * tabular.C (LyXTabular): add a same_id to set the same id's in the
9236         insets for undo reasons.
9237
9238 2001-11-28  André Pönitz <poenitz@gmx.net>
9239
9240         * vspace.[Ch]: cosmetical changes
9241
9242 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
9243
9244         * LyXAction.h:
9245         * LyXAction.C:
9246         * lyxfunc.h:
9247         * lyxfunc.C:
9248         * kbmap.h:
9249         * kbmap.C:
9250         * lyxrc.C:
9251         * kbsequence.h:
9252         * kbsequence.C: part re-write of old kb code
9253
9254         * Painter.C:
9255         * WorkArea.C: remove Lgb_bug_find_hack
9256
9257 2001-11-30  José Matos <jamatos@fep.up.pt>
9258
9259         * buffer.C (makeDocBookFile): add a comment to point a hack.
9260         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
9261         Fixed a double write of labels.
9262
9263 2001-11-29 Ben Stanley <bds02@uow.edu.au>
9264
9265         * LaTeX.C:
9266         * LaTeX.h Fixed bug in LaTeX class where it would not
9267         re-run latex if no depfiles were changed, but the .dvi was removed.
9268
9269 2001-11-28  André Pönitz <poenitz@gmx.net>
9270
9271         * all the files from the change on 2001/11/26:
9272         use lyx::layout_type instead of LyXTextClass::size_type
9273         use lyx::textclass_type instead of LyXTextClassList::size_type
9274
9275 2001-11-29  Juergen Vigna  <jug@sad.it>
9276
9277         * text.C: added support for paragraph::isFreeSpacing()
9278
9279         * buffer.C: same as above
9280
9281         * paragraph.h: inserted isFreeSpacing() function to enable
9282         FreeSpacing inside InsetERT.
9283
9284         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
9285         of the paragraph's in the cut/copy buffer to 0!
9286
9287         * text2.C (removeRow): remove the assert as it can!
9288
9289         * lyxtext.h: added helper function firstRow returning firstrow and
9290         made firstrow private again.
9291
9292         * BufferView2.C (lockInset): don't relock if we're already locked!
9293
9294         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
9295         the only paragraph.
9296         (removeRow): added Assert::(firstrow)
9297
9298         * debug.C: forgot to add INSETTEXT here.
9299
9300 2001-11-28  Juergen Vigna  <jug@sad.it>
9301
9302         * sp_spell.C (initialize): changed error text to more general
9303         spellchecker command use (not only ispell!)
9304
9305         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
9306
9307         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
9308
9309 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
9310
9311         * vspace.C: initialise lyxgluelength on failure
9312
9313 2001-11-28  Allan Rae  <rae@lyx.org>
9314
9315         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
9316         declaration & definition that looks like a function declaration.
9317
9318 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9319
9320         * BufferView2.C (copy):
9321         (copyEnvironment): do not clear the selection when doing a copy.
9322
9323         * text.C (paintFirstRow): compilation fix
9324
9325 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
9326
9327         * tabular.C (Latex): correct line count when writing latex.
9328
9329 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
9330
9331         * paragraph_pimpl.h:
9332         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
9333           bug a bit
9334
9335 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
9336
9337         * text.C:
9338         * LColor.h:
9339         * LColor.C: change vfillline->added_space
9340
9341         * text.C: add markers and text for added space
9342
9343         * vspace.C: fix comment
9344
9345 2001-11-28  André Pönitz <poenitz@gmx.net>
9346
9347         * paragraph.C: whitespace changes
9348         * all the other files from the change on 2001/11/26:
9349         change *::pos_type into lyx::pos_type
9350
9351 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
9352
9353         * buffer.C (parseSingleLyXformat2Token): Set the language to the
9354         language of the document when inserting error insets.
9355
9356 2001-11-26  André Pönitz <poenitz@gmx.net>
9357
9358         * BufferView_pimpl.[Ch]:
9359         *       CutAndPaste.C:
9360         * buffer.[Ch]:
9361         * lyxcursor.[Ch]:
9362         * lyxfind.C:
9363         * lyxfunc.C:
9364         * lyxrow.[Ch]:
9365         * paragraph.[Ch]:
9366         * paragraph_pimpl.[Ch]:
9367         * sp_spell.C:
9368         * text.C:
9369         * text2.C: reduce header dependencies, introduce type for positions
9370
9371 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
9372
9373         * <various>: change to use Alert.h
9374
9375 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
9376
9377         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
9378         when encountering an unknown token.
9379         (readLyXformat2): Show an error message if there were unknown tokens.
9380
9381 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
9382
9383         * BufferView2.C:
9384         * BufferView_pimpl.C:
9385         * buffer.C:
9386         * paragraph.h:
9387         * text.C:
9388         * text2.C: use par->isInset()
9389
9390 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
9391
9392         * paragraph_pimpl.h:
9393         * paragraph_pimpl.C: cleanup
9394
9395 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9396
9397         * text2.C (removeRow):
9398         * text.C (setHeightOfRow): remove useless (and costly) call to
9399         getRow.
9400
9401 2001-11-20  Allan Rae  <rae@lyx.org>
9402
9403         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
9404         Now need Inset*::checkInsertChar() to return true for appropriate
9405         cases so that the characters in the minibuffer will actually be
9406         inserted.
9407
9408 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9409
9410         * text.C: change the order of the includes.
9411         (workWidth): initialize it at once.
9412         (workWidth): make maxw unsigned
9413         (setHeightOfRow): remove unused variable (inset)
9414         (selectSelectedWord): remove unused variable (inset)
9415         (paintRowText): fix drawing of hfill characters, and clean up a bit.
9416
9417 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9418
9419         * lyxserver.C (emergencyCleanup): do not try to close pipes if
9420         server is not running.
9421         (openConnection):
9422         (closeConnection): add debug info when server is disabled.
9423
9424         * ColorHandler.C (getGCForeground): send debug message to GUI
9425         channel.
9426
9427         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
9428
9429         * kbmap.C (bind): modify because return conventions of
9430         kb_sequence::parse have changed.
9431
9432         * kbsequence.C (parse): only ignore spaces and not any stupid
9433         control character. This avoids tests like s[i] <= ' ', which are
9434         guaranteed to fail with 8bit characters and signed chars.
9435         Change return code to string::npos when there have been no error
9436         (0 was a bad idea when error is at first character)
9437
9438 2001-11-14  José Matos  <jamatos@fep.up.pt>
9439
9440         * buffer.h:
9441         * buffer.C (simpleDocBookOnePar): removed unused argument.
9442
9443 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9444
9445         * text.C (selectNextWordToSpellcheck): do not test explicitely for
9446         insets which are part of a word. Paragraph::isLetter takes care of
9447         that now. Use Paragraph::isInset to identify insets.
9448         (selectSelectedWord): do not test for hyphenation break.
9449
9450         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
9451         that protected spaces are considered as spaces.
9452
9453         * paragraph.C (isLetter): cleanup the code for ispell extras; use
9454         Inset::isLetter.
9455
9456 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
9457
9458         * lyxserver.h:
9459         * lyxserver.C: fix it. and small cleanup.
9460
9461 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
9462
9463         * BufferView_pimpl.C: use inline helpers
9464
9465         * LaTeXFeatures.h:
9466         * LaTeXFeatures.C: fix typos
9467
9468         * Spacing.h:
9469         * Spacing.C: move spacing_string into class
9470
9471         * ToolbarDefaults.C: move stuff into namespace anon
9472
9473         * layout.h: update enum
9474
9475         * lyxfunc.C: use better debug
9476
9477         * minibuffer.h: fix typo
9478
9479         * debug.h:
9480         * debug.C:
9481         * WorkArea.C: add and use Debug::WORKAREA
9482
9483         * lyxtext.h:
9484         * text.C:
9485         * text2.C: code re-organisation, inline helpers
9486
9487 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
9488
9489         * Layout.C: replaced a few cases of std::vector.size() == 0 with
9490         std::vector.empty().
9491
9492 2001-11-09  Allan Rae  <rae@lyx.org>
9493
9494         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
9495         '\n's after tables.  Tabular and ERT inset work now makes this no
9496         longer necessary.
9497
9498 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
9499
9500         * minibuffer.h:
9501         * minibuffer.C: fix crash, improve drop-down completion
9502
9503 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
9504
9505         * lyxserver.h:
9506         * lyxserver.C: invalidate fd's when doing endPipe()
9507
9508 2001-11-08  José Matos  <jamatos@fep.up.pt>
9509
9510         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
9511         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
9512
9513         * paragraph.h:
9514         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
9515
9516 2001-11-07  José Matos  <jamatos@fep.up.pt>
9517
9518         * buffer.h:
9519         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
9520         const qualifier.
9521
9522         * buffer.C (sgmlOpenTag):
9523         * buffer.C (sgmlCloseTag): removed debug info.
9524
9525         * buffer.h (sgmlOpenTag):
9526         * buffer.h (sgmlCloseTag): made public.
9527
9528 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9529
9530         * buffer.C (saveParamsAsDefaults):
9531         * lyx_cb.C (MenuLayoutSave): remove
9532
9533         * LyXAction.C (init):
9534         * commandtags.h:
9535         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
9536
9537 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9538
9539         * buffer.C (setPaperStuff): removed from here...
9540
9541         * bufferparams.C (setPaperStuff): ... and moved there.
9542
9543 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
9544
9545         * minibuffer.h:
9546         * minibuffer.C:
9547         * XFormsView.C: add support for drop-down completion
9548
9549 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
9550
9551         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
9552         commands.
9553
9554 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9555
9556         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
9557         disabled.
9558
9559 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
9560
9561         * lyx_main.C: change ref to known bugs
9562
9563 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
9564
9565         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
9566         to work around older babel problems.
9567
9568 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
9569
9570         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
9571
9572 2001-10-24  Juergen Vigna  <jug@sad.it>
9573
9574         * tabular-old.C (ReadOld): below variable changes reflected.
9575
9576         * tabular.[Ch]: added ltType struct for longtable header/footer
9577         defines and changed all instances where they are used. Added
9578         future support for double top/bottom rows.
9579
9580 2001-10-24  José Matos  <jamatos@fep.up.pt>
9581
9582         * buffer.h (docbookHandleCaption):
9583         * buffer.C (docbookHandleCaption): removed unused function.
9584         (makeDocBookFile): moved docbook supported version to v4.1.
9585
9586 2001-10-24  José Matos  <jamatos@fep.up.pt>
9587
9588         * tabular.h:
9589         * tabular.C (docbookRow): new function to export docbook code of a row.
9590         (DocBook): now honors the longtable flags.
9591
9592 2001-10-23  José Matos  <jamatos@fep.up.pt>
9593
9594         * LaTeXFeatures.h:
9595         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
9596         of the lyx defined sgml entities used in a docbook/linuxdoc document.
9597
9598         * buffer.C (makeLinuxDocFile):
9599         (makeDocBookFile): reworked the preamble, more clean, and with
9600         support for lyx defined entities. Changed the document declaration
9601         to be more XML friendly.
9602
9603         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
9604         if we need to output XML that should be done with a filter.
9605
9606 2001-10-22  Juergen Vigna  <jug@sad.it>
9607
9608         * sp_pspell.h (class PSpell): add alive function needed in the
9609         controller to see if the spellchecker could be started.
9610
9611 2001-10-22  Juergen Vigna  <jug@sad.it>
9612
9613         * buffer.C (insertStringAsLines): modify the font for inserting
9614         chars in certain conditions by calling checkInsertChar(font).
9615
9616 2001-10-19  Juergen Vigna  <jug@sad.it>
9617
9618         * text.C (workWidth): use getRow instead of wrong algorithm.
9619         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
9620
9621 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
9622
9623         * lyxserver.h:
9624         * lyxserver.C:
9625         * lyx_main.h:
9626         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
9627
9628 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9629
9630         * text.C (workWidth): do not search for the exact row when
9631         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
9632         optimization for big documents.
9633
9634 2001-10-18  Juergen Vigna  <jug@sad.it>
9635
9636         * text.C (workWidth): new function with added Inset * parameter.
9637
9638 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9639
9640         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
9641
9642         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
9643         change return type of getColumnNearX.
9644
9645
9646         * text.C (changeRegionCase): use uppercase/lowercase instead of
9647         toupper/tolower.
9648         (leftMargin):
9649         (rightMargin): simplify code by factoring out the uses of
9650         textclasslist.
9651         (labelFill):
9652         (numberOfHfills):
9653         (setHeightOfRow):
9654         (appendParagraph): use Paragraph::size_type
9655
9656 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9657
9658         * vspace.C (asLatexString): add a missing break
9659
9660 2001-10-15  Herbert Voss  <voss@perce.de>
9661
9662         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
9663
9664 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9665
9666         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
9667         is not available.
9668
9669 2001-10-10  André Pönitz <poenitz@gmx.net>
9670
9671         * lyxfunc.C: removed greek_kb_flag.
9672
9673 2001-10-10  Herbert Voss  <voss@perce.de>
9674
9675         * lyx_main.C: delete global string help_lyxdir.
9676
9677 2001-10-09  Herbert Voss  <voss@perce.de>
9678
9679         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
9680
9681         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
9682
9683         * lyx_main.C: added global string help_lyxdir.
9684
9685         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
9686
9687 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
9688
9689         * lyxrc.C (set_font_norm_type): support iso8859-4
9690
9691 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
9692
9693         * LaTeX.C (deplog): add another regex for MikTeX
9694
9695 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
9696
9697         * lyxrc.C (set_font_norm_type): support iso8859-3
9698
9699 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9700
9701         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
9702
9703         * LaTeXFeatures.C: remove special case of french and index
9704
9705         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
9706         before \begin{document}). This solves several incompatibilities.
9707
9708 2001-10-03  Garst Reese  <reese@isn.net>
9709
9710         * lyx_cb.C: change CheckTex error msg.
9711
9712 2001-10-03  José Matos  <jamatos@fep.up.pt>
9713
9714         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
9715
9716 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9717
9718         * .cvsignore: update
9719
9720         * lyx_main.C (commandLineVersionInfo): use new style version info.
9721
9722         * buffer.C (writeFile):
9723         (makeLaTeXFile):
9724         (makeLinuxDocFile):
9725         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
9726
9727         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
9728
9729         * version.h: update to use stuff in version.C
9730
9731         * version.C.in: new file. Contains version information determined
9732         at compile time. This is a merging of version.h and
9733         version_info.h.in.
9734
9735 2001-10-03  Juergen Vigna  <jug@sad.it>
9736
9737         * BufferView_pimpl.C (update): don't change "dirty" status in
9738         updateInset call.
9739
9740 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
9741
9742         * WorkArea.C (c-tor): re-position version string slightly.
9743
9744 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
9745
9746         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
9747         revert to previous code.
9748
9749         WorkArea.[Ch]: (show, destroySplash): methods removed.
9750
9751         WorkArea.C: rework code so that it's an amalgam of the codes before and
9752         after the splash screen was moved to WorkArea.
9753
9754 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9755
9756         * lyxrc.C (read):
9757         * vspace.C (inPixels):
9758         (lyx_advance):
9759         * kbmap.C (bind):
9760         * buffer.C (insertStringAsLines):
9761         (asciiParagraph): fix types to be large enough
9762
9763         * lyxlex_pimpl.h: change member status from short to int
9764
9765         * layout.h: fix type of endlabeltype
9766
9767         * kbmap.C (bind):
9768         * kbsequence.C (parse): change return type to string::size_type
9769
9770         * LaTeX.C (updateBibtexDependencies): comment out unneeded
9771         variable
9772
9773         * Bullet.C (bulletSize):
9774         (bulletEntry): do not use short ints as parameters
9775
9776         * BufferView2.C (insertLyXFile): change a char to an int.
9777
9778         * WorkArea.C (WorkArea): remove unneeded floats in computation
9779
9780 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
9781
9782         * buffer.C (asciiParagraph): Treat '\\' as other chars.
9783
9784         * paragraph.C (asString): Do not ignore newline/hfill chars when
9785         copying to the clipboard.
9786
9787 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
9788
9789         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
9790         after a multi-line inset.
9791
9792 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
9793
9794         * paragraph.C (validate): Set NeedLyXFootnoteCode
9795
9796 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
9797
9798         * lyxfont.C (LyXSizeNames): changed increase-error to increase
9799         and decrease-error to decrease.
9800
9801 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9802
9803         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
9804         it more readable (should be equivalent)
9805
9806 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
9807
9808         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
9809
9810 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9811
9812         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
9813         of a cursor (row, etc.) after a character has been deleted
9814         (deleteEmptyParagraphMechanism): call the method above on _all_
9815         cursors held by the LyXText when a double space has been
9816         detected/deleted.
9817
9818 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
9819
9820         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
9821         pixmap.
9822         (resizeCurrentBuff): remove code to destroy the old splash dialog.
9823
9824         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
9825         background. Use greyOut() and the new show() methods to toggle between
9826         the foreground and background. Add code to remove the splash after
9827         its initial showing.
9828
9829         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
9830         (create_forms): no longer call Dialogs::showSplash.
9831
9832 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9833
9834         * .cvsignore: add version_info.h
9835
9836 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9837
9838         * version_info.h.in: new file
9839
9840         * Makefile.am: add version_info.h.in
9841
9842         * lyx_main.C (commandLineVersionInfo): use version_info defined in
9843         version_info.h instead of VERSION_INFO
9844
9845 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
9846
9847         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
9848         The ERT inset now returns string().
9849
9850 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
9851
9852         * lyxtext.h, text.C (selectNextWord): renamed as
9853         selectNextWordToSpellcheck.
9854
9855         * text.C (selectNextWordToSpellcheck): Modified to not select
9856         words inside an ERT inset.
9857
9858 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9859
9860         * lyx_cb.C (MenuLayoutSave): change a bit the question
9861
9862         * sp_base.h: include <sys/types.h>
9863
9864 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
9865
9866         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
9867
9868 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
9869
9870         * several files: fix typos in user-visible strings
9871
9872 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9873
9874         * text2.C (pasteSelection): do not set the selection, since it
9875         will be cleared later. Actually, the intent was to fix the way the
9876         selection was set, but I figured rmoving the code was just as good.
9877
9878 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
9879
9880         * FontLoader.C (available): Check if font is available without
9881         loading the font.
9882
9883 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
9884
9885         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
9886
9887 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
9888
9889         * lyxrc.[Ch]: added display_graphics variable and associated code.
9890
9891 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9892
9893         * bufferparams.C (hasClassDefaults): new method. Returns true if
9894         the buffer parameters correspond to known class defaults
9895
9896 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
9897
9898         * XFormsView.C (show): set minimum size to the main window.
9899
9900 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9901
9902         * text2.C (copySelection):
9903         (cutSelection):
9904         * lyxfind.C (LyXReplace):
9905         * BufferView_pimpl.C (Dispatch): pass the correct flag to
9906         LyXText::selectionAsString.
9907
9908         * paragraph.C (asString): add "label" argument to the second form
9909
9910         * text2.C (selectionAsString): add "label" argument and pass it to
9911         Paragraph::asString.
9912
9913 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9914
9915         * lyx_main.C (commandLineHelp): remove version information
9916
9917 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
9918
9919         * lyx_main.C: add -version commandline option
9920
9921 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9922
9923         * paragraph.h: make the optional constructor arg required instead.
9924         some modifications to other files because of this.
9925
9926         * minibuffer.C (C_MiniBuffer_peek_event): make it static
9927
9928         * lyxserver.C (C_LyXComm_callback): make it static
9929
9930         * lyx_main.C (error_handler): make it static
9931
9932         * lyx_gui.C (LyX_XErrHandler): make it static
9933
9934         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
9935
9936         * WorkArea.C: make the extern "C" methods static.
9937
9938         * Makefile.am (lyx_LDADD): simplify
9939
9940 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
9941
9942         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
9943         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
9944
9945         * LyXAction.C (init):
9946         * lyxfunc.C (dispatch): associated code removal.
9947
9948 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9949
9950         * lyxfont.h (isSymbolFont): shut off warning
9951
9952         * text.C (setHeightOfRow):
9953         (getVisibleRow): fix crash with empty paragraphs which have a
9954         bottom line
9955
9956 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
9957
9958         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
9959         code.
9960
9961 2001-09-04  José Matos  <jamatos@fep.up.pt>
9962         * buffer.C
9963         * buffer.h
9964         * tabular.C (docbook): rename docBook method to docbook.
9965
9966 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
9967
9968         * Makefile.am: add dependencies to main.o.
9969
9970 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
9971
9972         * FontLoader.C (available): Return false if !lyxrc.use_gui
9973
9974 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
9975
9976         * FontInfo.C (query):
9977         * converter.C (view):
9978         * importer.C (Import):
9979         * exporter.C (Export): Can not -> cannot.
9980
9981 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
9982
9983         * BufferView_pimpl.C: allow to create index inset even if
9984           string is empty
9985
9986 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
9987
9988         * buffer.C (getLists): replace boost::tie code with an explicit pair
9989         as boost::tie can break some compilers.
9990
9991         * iterators.h: Added a std:: declaration to the return type of
9992         ParIterator::size.
9993
9994 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
9995
9996         * lyxrc.C: add help for view_dvi_paper_option, default to safe
9997           case.
9998
9999 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
10000
10001         * iterators.[Ch]: New files. Provide paragraph iterators.
10002
10003         * buffer.C (changeLanguage): Use paragraph iterators.
10004         (isMultiLingual): ditto
10005
10006         * BufferView2.C (ChangeInsets): Use paragraph iterators.
10007
10008 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
10009
10010         * FontLoader.C: Support for cmr font.
10011
10012 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
10013
10014         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
10015         (available): New method.
10016
10017         * FontInfo.C (getFontname): Use scalable fonts even when
10018         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
10019         found.
10020
10021 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
10022
10023         * converter.C (Formats::view): reverted! Incorrect fix.
10024
10025 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
10026
10027         * converter.C (Formats::view): only output the -paper option
10028         if the dvi viewer is xdvi, thereby fixing bug #233429.
10029
10030 2001-08-23  Herbert Voss  <voss@perce>
10031
10032         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
10033
10034 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
10035
10036         * Spacing.h (Spacing): Set space to Default on in the default
10037         constructor.
10038
10039 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10040
10041         * vc-backend.h (RCS::versionString): add RCS to version
10042         (CVS::versionString): add CVS to version
10043
10044         * vc-backend.C (scanMaster): do not add CVS to version.
10045         (scanMaster): do not add RCS to version
10046
10047         * lyxvc.C (versionString): new method
10048
10049         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
10050
10051 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10052
10053         * Spacing.C (set): initialize fval
10054
10055 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
10056
10057         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
10058         " or \.
10059
10060 2001-08-16  Juergen Vigna  <jug@sad.it>
10061
10062         * lyxfunc.C (dispatch): implemented the new FINISHED states.
10063
10064 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
10065
10066         * BufferView_pimpl.C:
10067         * figureForm.C:
10068         * lyxtext.h:
10069         * text2.C: setParagraph takes linespacing now
10070
10071 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
10072
10073         * LyxAction.C: add internal LFUN_CITATION_INSERT
10074
10075         * LyXView.C: actually apply fix
10076
10077         * bufferlist.C: fix open non-existent file
10078
10079         * lyxfind.C: fix indentation
10080
10081         * lyxfunc.C: remove unneeded assert, fix typo
10082
10083 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
10084
10085         * MenuBackend.C: use "Floatname List"
10086
10087 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
10088
10089         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
10090         when converting LaTeX layout to insetERT.
10091         Generate a non-collapsed float when reading old float
10092
10093 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
10094
10095         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
10096         ERT insets.
10097
10098 2001-08-13  Juergen Vigna  <jug@sad.it>
10099
10100         * text.C (fill): return 0 instead of 20 as this seems to be the more
10101         correct value.
10102
10103 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
10104
10105         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
10106         lyxrc.font_norm.
10107
10108 2001-08-13  Juergen Vigna  <jug@sad.it>
10109
10110         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
10111         casesensitive off.
10112         (SearchBackward): comment out the unlocking of the inset_owner this
10113         should not be needed!
10114
10115 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
10116
10117         * Many files: Remove inherit_language, and add latex_language
10118
10119         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
10120         collapsible insets.
10121
10122 2001-08-10  Juergen Vigna  <jug@sad.it>
10123
10124         * text.C (prepareToPrint): fixed hfill-width in draw!
10125
10126         * BufferView2.C (selectLastWord): save the selection cursor as this
10127         now is cleared in the function LyXText::clearSelection!
10128
10129 2001-08-08  Juergen Vigna  <jug@sad.it>
10130
10131         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
10132         BACKSPACE type functions.
10133
10134         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
10135         is only cutted from the document but not put in the cut-buffer, where
10136         still the old stuff should be.
10137
10138         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
10139
10140         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
10141
10142         * tabular.C (SetWidthOfCell): fixed special case where the width
10143         was not updated!
10144         (LeftLine): handle '|' in align_special.
10145         (RightLine): ditto
10146         (LeftAlreadyDrawed): ditto
10147         (SetWidthOfCell): ditto
10148
10149 2001-08-07  Juergen Vigna  <jug@sad.it>
10150
10151         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
10152
10153 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10154
10155         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
10156         * lyxlex.[hC]: ditto
10157
10158 2001-08-06  Juergen Vigna  <jug@sad.it>
10159
10160         * text.C (getVisibleRow): fix up row clearing a bit.
10161
10162 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10163
10164         * minibuffer.C: make sure the X server sees the changes in the input.
10165
10166 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10167
10168         * paragraph.C (getFont): split into...
10169         (getLabelFont): this
10170         (getLayoutFont): and this
10171         * paragraph_pimpl.C (realizeFont): calling this
10172
10173         * text2.C (getFont): split into...
10174         (getLayoutFont): this
10175         (getLabelFont): and this
10176         (realizeFont): all three calling this
10177
10178         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
10179         files where used.
10180
10181 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10182
10183         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
10184
10185 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
10186
10187         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
10188         layouts from the Quote inset insertion.
10189
10190 2001-08-03  Juergen Vigna  <jug@sad.it>
10191
10192         * BufferView_pimpl.C (update): do the fitCursor only at the end!
10193
10194         * screen.C (drawFromTo): don't call fitcursor here and do the loop
10195         only if status not is already CHANGED_IN_DRAW (second level).
10196
10197         * text.C (draw): don't set the need_break_row when inside an
10198         InsetText LyXText.
10199
10200 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10201
10202         * buffer.C (parseSingleLyXformat2Token): handle more latex
10203         conversion cases.
10204
10205         * bufferview_funcs.[hC]: change function names to
10206         begin with small char, adjust other files.
10207
10208 2001-08-02  André Pönitz <poenitz@gmx.net>
10209
10210         * lyxfunc.C:
10211         BufferView_pimpl.C: remove broken special code for math-greek
10212
10213 2001-08-02  Juergen Vigna  <jug@sad.it>
10214
10215         * BufferView_pimpl.C (update): redone this function so that we
10216         update the text again if there was a CHANGE_IN_DRAW.
10217
10218         * screen.C (cursorToggle): removed LyXText parameter and recoded.
10219         (drawFromTo): added a new internal bool which is used by draw() and
10220         redraw() function.
10221         (general): some cursor drawing problems fixed.
10222
10223 2001-08-01  Juergen Vigna  <jug@sad.it>
10224
10225         * lyxfind.C (LyXFind): fixed
10226         (SearchForward): ditto
10227         (SearchBackward): ditto
10228
10229         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
10230         spurius drawing of the cursor in the main area.
10231
10232         * text2.C (status): small fix which could lead to a segfault!
10233         (clearSelection): remove unneeded BufferView param.
10234
10235 2001-08-01  André Pönitz <poenitz@gmx.net>
10236
10237         * lyxfunc.C: small change due to changed mathed interface
10238
10239 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10240
10241         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
10242
10243 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
10244
10245         * lyxfunc.c: fail gracefully if file doesn't exist
10246
10247         * LyXSendto.C:
10248         * buffer.C:
10249         * lyxfunc.C:
10250         * BufferView_pimpl.C: IsDirWriteable() proto changed
10251
10252         * LyXView.C: fix updateWindowTitle() to store the last title
10253
10254 2001-07-31  Juergen Vigna  <jug@sad.it>
10255
10256         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
10257         the font (wrong since using of Paragraph::highestFontInRange).
10258
10259         * paragraph.C (highestFontInRange): added a default_size parameter.
10260
10261         * text.C (getVisibleRow): minor clear row changes (still not perfect).
10262         (setHeightOfRow): reformat
10263
10264 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10265
10266         * converter.[hC] + affected files: move to (inital-char)lowercase
10267         function names.
10268
10269         * ParagraphParameters.C (ParagraphParameters): remove commented code
10270
10271         * PainterBase.[Ch]: remove commented code
10272
10273         * LaTeXFeatures.h: add "bool floats" for float.sty
10274
10275         * LaTeXFeatures.C (LaTeXFeatures): init floats
10276         (require): handle float
10277         (getPackages): do it with floats
10278
10279 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10280
10281         * BufferView_pimpl.C (Dispatch): improve handling of
10282         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
10283
10284         * commandtags.h: #include lyxfont.h here temporarily to avoid
10285         keybinding bug.
10286
10287         * bufferlist.h: include LString.h here.
10288
10289 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10290
10291         * text2.C (getStringToIndex): new method.
10292
10293 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
10294
10295         * *: Reduced header file dependencies all over.
10296
10297 2001-07-30  Baruch Even  <baruch@lyx.org>
10298
10299         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
10300
10301 2001-07-29  Baruch Even  <baruch@lyx.org>
10302
10303         * buffer.C (readInset): Changed GRAPHICS to Graphics.
10304
10305 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10306
10307         * ParameterStruct.h (endif): add a default constructor to make
10308         sure that all variables is initialized.
10309
10310         * ParagraphParameters.C (ParagraphParameters): adjust
10311
10312 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10313
10314         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
10315         index; also, check that there is something to index, and that it
10316         does not span over several paragraphs.
10317         (doubleClick): use WHOLE_WORD_STRICT for double click.
10318
10319         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
10320
10321         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
10322         scheme.
10323
10324 2001-07-26  Baruch Even  <baruch@lyx.org>
10325
10326         * buffer.C (readInset): Changed to call up InsetGraphics when reading
10327         an InsetFig figure, backwards compatible reading of old figure code.
10328
10329 2001-07-27  Juergen Vigna  <jug@sad.it>
10330
10331         * text2.C: font.realize function adaption.
10332
10333         * text.C (draw): add a warnings lyxerr text if needed.
10334
10335         * layout.C: font.realize function adaption.
10336
10337         * language.C: add inherit_language and implement it's handlings
10338
10339         * bufferview_funcs.C (StyleReset): remove language parameter from
10340         font creation (should be language_inherit now).
10341
10342         * bufferparams.C (writeFile): handle ignore_language.
10343
10344         * paragraph.C (getFontSettings): the language has to be resolved
10345         otherwise we have problems in LyXFont!
10346
10347         * lyxfont.C (lyxWriteChanges): added document_language parameter
10348         (update): removed unneeded language parameter
10349
10350         * paragraph.C (validate): fixed wrong output of color-package when
10351         using interface colors for certain fonts in certain environments,
10352         which should not seen as that on the final output.
10353
10354 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
10355
10356         * BufferView_pimpl.C:
10357         * Thesaurus.h:
10358         * Thesaurus.C:
10359         * Makefile.am:
10360         * commandtags.h:
10361         * LyXAction.C: add thesaurus support
10362
10363         * lyxfind.h:
10364         * lyxfind.C: add "once" parameter, for thesaurus, to not
10365           move to the next match
10366
10367 2001-07-26  Juergen Vigna  <jug@sad.it>
10368
10369         * lyxfont.C (realize): honor ignore_language too!
10370         (resolved): ditto.
10371
10372         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
10373
10374         * text.C (draw): one place more for ignore_language to not draw
10375         itself!
10376
10377 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
10378
10379         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
10380
10381 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10382
10383         * buffer.C (parseSingleLyXformat2Token): a more general fix for
10384         the minipage conversion problem.
10385
10386 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10387
10388         * buffer.C (parseSingleLyXformat2Token): check minipage if we
10389         insert an inset.
10390
10391 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10392
10393         * BufferView.h: don't forward declare WorkArea
10394
10395         * BufferView.C: don't include WorkArea.h
10396
10397 2001-07-25  André Pönitz <poenitz@gmx.net>
10398
10399         * commandtags.h:
10400         * LyXAction.C:
10401         * lyxfunc.C:  new LFUN 'math-space'
10402
10403         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
10404
10405 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10406
10407         * text2.C (toggleInset): call open/close
10408
10409 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10410
10411         * lyxfunc.C (dispatch): add debug for the disabled case
10412
10413         * font.C (buttonText): make similar to rectText
10414
10415         * buffer.C (readInset): comment out parsing of insetlist and
10416         insttheorem
10417
10418         * PainterBase.C (rectText): small correction
10419
10420         * BufferView_pimpl.C: comment out insettheorem and insetlist
10421         * LyXAction.C: ditto
10422         * commandtags.h: ditto
10423
10424 2001-07-24  Juergen Vigna  <jug@sad.it>
10425
10426         * text.C (draw): honor the ignore_language.
10427
10428         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
10429
10430 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10431
10432         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
10433         char inset.
10434
10435 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10436
10437         * lyxtext.h: remove unused (and unimplemented) methods
10438
10439 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10440
10441         * text.C (getVisibleRow): honor background color
10442
10443         * PainterBase.h:
10444         * Painter.h: remove default color argument for fillRectangle
10445
10446         * text.C (backgroundColor): new method
10447
10448 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10449
10450         * text.C (getVisibleRow): adjust
10451
10452         * font.[Ch] (rectText): new method, metrics
10453         (buttonText): new method, metrics
10454
10455         * PainterBase.[hC]: make rectText and buttonText always draw and take
10456         fewer paramteres.
10457
10458 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10459
10460         * ToolbarDefaults.C (read):
10461         * MenuBackend.C (read): allow escaping in all strings
10462
10463         * BufferView_pimpl.C (insertAndEditInset): new method.
10464         (Dispatch): use insertAndEditInset whenever appropriate.
10465
10466         * BufferView_pimpl.C (insertNote): removed
10467
10468         * BufferView_pimpl.C (smartQuote): new method, moved from
10469         BufferView; if an insetquote cannot be inserted, insert a '"'
10470         character instead.
10471
10472         * BufferView2.C: remove insertCorrectQuote();
10473
10474         * lyxfunc.C (getStatus): Add support for all remaingin
10475         inset-insert lfuns.
10476
10477         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
10478
10479         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
10480         command (necessary to pass " as parameter of self-insert.
10481
10482         * text.C (selectWordWhenUnderCursor):
10483         (selectWord): add word_location parameter
10484         (selectWordWhenUnderCursor): same + remove special code for word
10485         boundary.
10486         (selectNextWord): use kind() to guess type of insetspecialchar,
10487         not latex().
10488
10489         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
10490         (insertErtContents): create ert insets as collapsed.
10491         (readInset): better compatibility code for Info inset.
10492
10493 2001-07-20  Juergen Vigna  <jug@sad.it>
10494
10495         * lyxfunc.C (dispatch): use always LyXFind now!
10496
10497         * text2.C (init): add a reinit flag so that the LyXText can be
10498         reinited instead of deleted and reallocated (used in InsetText).
10499
10500         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
10501
10502         * text.C: ditto
10503
10504         * text2.C: ditto
10505
10506 2001-07-18  Juergen Vigna  <jug@sad.it>
10507
10508         * text.C (selectNextWord): handle insets inside inset by calling
10509         always the bv->text functions so that we can go up the_locking_inset!
10510
10511         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
10512         in strange locations when inside an inset!
10513
10514         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
10515         handling to include insets.
10516
10517         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
10518
10519 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10520
10521         * LyXAction.C (init):
10522         * commandtags.h:
10523         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
10524         LIGATURE_BREAK, since the name is so stupid.
10525
10526 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
10527
10528         * buffer.C (readInset): enable reading of new InsetNotes as well as old
10529         InsetInfos.
10530
10531         * FontLoader.C: remove FORMS_H_LOCATION cruft.
10532
10533         * sp_form.[Ch]: remove.
10534
10535         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
10536
10537         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
10538         InsetInfo.
10539
10540         * src/buffer.C (readInset): ditto.
10541
10542 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10543
10544         * BufferView_pimpl.C (specialChar): new method. Obsoletes
10545         menuSeparator(), endOfSentenceDot(), ldots() and
10546         hyphenationPoint(), which are therefore removed.
10547         (Dispatch): handle LFUN_HYPHENATION_BREAK.
10548
10549         * LyXAction.C (init):
10550         * commandtags.h: add LFUN_HYPHENATION_BREAK.
10551
10552         * paragraph.C (getWord): removed.
10553
10554         * BufferView_pimpl.C (Dispatch): use last word or selection for
10555         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
10556
10557         * lyx_main.C (queryUserLyXDir): do not ask before creating
10558         user_dir, except if it has been named explicitely.
10559
10560 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
10561
10562         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
10563         a document of zero size.
10564
10565 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
10566
10567         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
10568         approriately in the c-tor and in require().
10569         (getPackages): output the appropriate LaTeX for natbib support.
10570
10571         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
10572         variables "use_natbib" and "use_numerical_citations" when reading the
10573         LyX file.
10574         (readInset): read the various natbib cite commands.
10575         (validate): white-space change.
10576
10577         * bufferparams.[Ch]: new variables "bool use_natbib" and
10578         "bool use_numerical_citations".
10579         (writeFile): output them in the LyX file.
10580
10581 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10582
10583         * lyxfunc.C (getStatus): add support for all the inset insertion
10584         commands.
10585
10586         * text2.C (insertInset):
10587         * paragraph.C (insetAllowed):
10588         * BufferView_pimpl.C (insertInset): update to take in account the
10589         renaming of insertInsetAllowed
10590
10591         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
10592
10593         * text2.C (getInset): new method. returns inset at cursor position.
10594
10595         * BufferView_pimpl.C (Dispatch): changes because of this.
10596
10597         * LyXAction.C (init): rename open-stuff to inset-toggle.
10598
10599         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
10600
10601         * text2.C (toggleInset): renamed from openStuff; use
10602         Inset::open().
10603
10604 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
10605
10606         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
10607
10608         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
10609
10610 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
10611
10612         * buffer.C (readLyXformat2): Add filename to the error dialog
10613
10614 2001-07-18  Juergen Vigna  <jug@sad.it>
10615
10616         * tabular.C (GetCellNumber): put an assert here instead of the check!
10617
10618 2001-07-17  Juergen Vigna  <jug@sad.it>
10619
10620         * BufferView_pimpl.C (toggleSelection): adapted too.
10621
10622         * text.C (selectNextWord): adapted for use with insets.
10623         (selectSelectedWord): ditto
10624
10625 2001-07-17  Juergen Vigna  <jug@sad.it>
10626
10627         * sp_spell.C (PSpell): fix initialitation order.
10628
10629 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10630
10631         * paragraph.C: spacing
10632
10633 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
10634
10635         * sp_spell.C: repair language selection for pspell
10636
10637 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10638
10639         * lyxfunc.h: change more methods to begin with lower char.
10640
10641 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
10642
10643         * buffer.C (parseSingleLyXformat2Token): Generate error insets
10644         for unknown layouts.
10645
10646 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
10647
10648         * buffer.C (readLyXformat2): Generate an error dialog if there are
10649         unknown layouts.
10650
10651 2001-07-16  Juergen Vigna  <jug@sad.it>
10652
10653         * sp_spell.C: always compile ISpell part.
10654
10655         * lyxrc.C: added use_pspell entry and it's handling.
10656
10657 2001-07-13  Juergen Vigna  <jug@sad.it>
10658
10659         * sp_spell.C: removed double includes.
10660
10661 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
10662
10663         Consistent use of Lsstream.h:
10664         * Lsstream.h: added using std::stringstream for consistencies sake.
10665
10666         * buffer.C: removed using std::stringstream
10667
10668         * lyxfont.C (stateText):
10669         * paragraph.C (asString):
10670         * text.C (selectNextWord, selectSelectedWord):
10671         * text2.C (setCounter):
10672         * vspace.C (asString, asLatexString):
10673         std::ostringstream -> ostringstream.
10674
10675 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
10676
10677         * LyXAction.C: add LFUN_HELP_ABOUTLYX
10678         * commandtags.h: add LFUN_HELP_ABOUTLYX
10679         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
10680
10681 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
10682
10683         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
10684         cursorToggle()
10685         * lyx_gui_misc.C: remove spellchecker
10686         * lyxfunc.C: showSpellchecker
10687         * sp_base.h: added
10688         * sp_ispell.h: added
10689         * sp_pspell.h: added
10690         * sp_spell.C: added
10691         * sp_form.[Ch]: removed
10692         * spellchecker.[Ch]: removed
10693
10694 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
10695
10696         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
10697         is set.
10698         (simpleTeXSpecialChars): Simply print the input character without
10699         any special translation if pass_thru is set.
10700
10701         * layout.h: Added bool pass_thru to layout class for being able to
10702         implement pass through of a paragraph for Literate Programming.
10703
10704         * layout.C: add LT_PASS_THRU to LayoutTags enum.
10705         * layout.C (LyXLayout): set pass_thru to flase in constructor.
10706         * layout.C (Read): add "passthru" to list of layout tags and add
10707         code to set the pass_thru boolean when it is read.
10708
10709 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10710
10711         * trans_decl.h: remove allowed from KmodInfo
10712
10713         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
10714         remove allowed code
10715         (Load): adjust
10716
10717         * paragraph_pimpl.C (erase): use boost::prior
10718
10719         * Painter.C (text): use data() instead of c_str() when length is
10720         also provided.
10721         * WorkArea.C (putClipboard): ditto
10722         * font.h (width): ditto
10723
10724         * BufferView2.C: use it-> instead of (*it). for iterators
10725         * texrow.C: ditto
10726         * paragraph_pimpl.C: ditto
10727         * paragraph.C: ditto
10728         * minibuffer.C: ditto
10729         * language.C: ditto
10730         * kbmap.C: ditto
10731         * encoding.C: ditto
10732         * counters.C: ditto
10733         * converter.C: ditto
10734         * chset.C: ditto
10735         * Variables.C: ditto
10736         * TextCache.C: ditto
10737         * MenuBackend.C: ditto
10738         * LyXAction.C: ditto
10739         * LColor.C: ditto
10740         * FloatList.C: ditto
10741         * DepTable.C: ditto
10742         * ColorHandler.C (LyXColorHandler): ditto
10743
10744 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10745
10746         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
10747
10748         * text2.C (openStuff): reintroduce this method (which had been
10749         nuked in NEW_INSETS frenzy).
10750
10751         * lyxfunc.C (Dispatch): when an action has not been handled, use
10752         its name in the error message, not its number.
10753
10754         * paragraph.C (inInset): change method name to begin with lowercase.
10755
10756         * undo_funcs.C:
10757         * text2.C: updates because of this.
10758
10759 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10760
10761         * ToolbarDefaults.C (add): add spaces in error message
10762
10763 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10764
10765         * buffer.C (readLyXformat2): initialize the ert comp. variables.
10766         (readLyXformat2): rename return_par to first_par, use lyxlex's
10767         pushToken and remove the manual push handling.
10768         (parseSingleLyXformat2Token): add another ert comp. variable:
10769         in_tabular, rename return_par to first_par. handle newlines better
10770
10771 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10772
10773         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
10774
10775 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10776
10777         * text2.C (getParFromID): removed
10778
10779         * buffer.C (getParFromID): new method moved form lyxtext.
10780         * BufferView2.C (insertErrors): adjust
10781         (setCursorFromRow): adjust
10782         * BufferView_pimpl.C (restorePosition): adjust
10783         * lyxfunc.C (Dispatch): adjust
10784         * undo_funcs.C (textUndo): adjust
10785         (textRedo): adjust
10786         (textHandleUndo): adjust
10787         (textHandleUndo): adjust
10788
10789 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10790
10791         * buffer.C: up' the LYX_FORMAT
10792
10793         * lyxfont.h: turn NO_LATEX on as default
10794
10795         * buffer.C (insertErtContents): new methods of tex style compability.
10796         (parseSingleLyXformat2Token): use it several places.
10797         * tabular.C (OldFormatRead): and here
10798
10799 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10800
10801         * text2.C: remove some commented code.
10802         reindent file.
10803
10804         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
10805         * trans.C: changes because of the above.
10806
10807 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
10808
10809         * text2.C (setCounter): Fix counters bug with bibliography layout.
10810
10811 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10812
10813         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
10814         own member functions
10815         (simpleTeXSpecialChars): ditto
10816
10817 2001-07-06  Juergen Vigna  <jug@sad.it>
10818
10819         * a lot of files: changed the access to LyXText::status and the
10820         call of undo-functions.
10821
10822         * undo.[Ch]: added a inset_id to the undo informations.
10823
10824         * undo_funcs.[Ch]: added and moved here all undo functions.
10825
10826         * lyxtext.h: give the status enum a weight, made status_ a private
10827         variable and made accessor functions for it, removed the whole bunch
10828         of undo-functions as they are now in their own file, make some
10829         functions publically available. Added function ownerParagraph with
10830         int parameter.
10831
10832         * paragraph.[Ch]: added "bool same_ids" to the constructor,
10833         made InInset() a const function, added getParFromID() function.
10834
10835         * buffer.[Ch]: added const version for inset_iterator functions,
10836         added getInsetFromID() function.
10837
10838         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
10839         changed undo functions for new version.
10840
10841 2001-07-05  Juergen Vigna  <jug@sad.it>
10842
10843         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
10844         unknow mechanism does not call the proper constructor but only this
10845         one also if I request the other!?
10846
10847 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10848
10849         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
10850
10851         * text2.C (LyXText): use initialization lists.
10852
10853         * lyxtext.h (Selection): initialize set_ and mark_
10854         (init): remove method
10855
10856 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
10857
10858         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
10859
10860 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10861
10862         * screen.[Ch]: change method names to begin with lowercase
10863
10864         * BufferView_pimpl.C (updateScrollbar): simplify further and
10865         hopefully make it a bit faster.
10866
10867 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10868
10869         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
10870         calling directly xforms functions.
10871
10872         * Painter.C (Painter):
10873         * lyx_cb.C (MenuWrite):
10874         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
10875         fl_display.
10876
10877         * lyx_gui.C: remove bogus guiruntime extern declaration.
10878
10879 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10880
10881         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
10882         in NEW_INSETS
10883         (redoDrawingOfParagraph): ditto
10884         (redoParagraphs): ditto
10885         (cutSelection): don't create a object for CutAndPaste use the
10886         static method directly
10887         (pasteSelection): ditto
10888
10889         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
10890         LyXview (+ rename)
10891
10892 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10893
10894         * modifications to some other files because of this.
10895
10896         * Makefile.am (lyx_SOURCES): add XFormsView
10897
10898         * XFormsView.[Ch]: new files
10899
10900         * LyXView.[Ch]: make LyXView a base class for the gui handling for
10901         the main window. Move the gui dependent stuff to XFormsView
10902
10903 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10904
10905         * tabular.C (GetCellInset): update cur_cell also in the row/col
10906         version of this function.
10907
10908         * lyxfunc.C: no need to include figure_form.h here.
10909
10910         * FontLoader.h:
10911         * lyxfunc.h:
10912         * lyxscreen.h:
10913         * text2.C:
10914         * lyxvc.C: no need to include forms.h here.
10915
10916 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10917
10918         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
10919
10920         * lyxfunc.C (Dispatch):
10921         * Spacing.C (set):
10922         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
10923         constructor argument.
10924
10925 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10926
10927         * paragraph.C (Paragraph): dont't clear, and just set layout.
10928         (makeSameLayout): use params's copy contructor.
10929
10930         * ParagraphParameters.[Ch] (makeSame): delete method
10931
10932 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
10933
10934         * Variables.[Ch]: fix indentation, rename set to isSet
10935
10936 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10937
10938         * lyxfunc.C (Dispatch): fix typo
10939
10940 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10941
10942         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
10943         upper_bound.
10944
10945         * bufferlist.C: include assert.h for emergencyWrite().
10946
10947 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
10948
10949         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
10950           give up at last (bug #425202) !
10951
10952 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
10953
10954         * lyx_gui_misc.C:
10955         * sp_form.h:
10956         * sp_form.C:
10957         * spellchecker.h:
10958         * spellchecker.C: strip spellchecker options and bring up
10959           preferences tab instead
10960
10961 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10962
10963         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
10964         the istringstream constructor
10965
10966 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10967
10968         * paragraph.C (getLayout): fix return value
10969
10970         * paragraph.h: do not declare getLayout as inline.
10971
10972         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
10973
10974 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10975
10976         * lyxcursor.h (operator<): new func
10977         (operator>): new func
10978         (operator>=): new func
10979         (operator<=): new func
10980
10981         * text.C (changeCase): use selection.start and selection.end
10982         (changeRegionCase): require from to be <= to. Require par to be a
10983         valid paragraph.
10984
10985         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
10986
10987 2001-06-27  Juergen Vigna  <jug@sad.it>
10988
10989         * text.C (cursorLeftOneWord): changed to return the cursor and added
10990         overlay with BufferView * parameter which calls this one.
10991         (getWord): added
10992         (selectWord): use new getWord function.
10993         (changeCase): renamed from changeWordCase as and extended to work
10994         also on selections.
10995
10996         * lyxtext.h: added enum word_location
10997
10998         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
10999         changeCase as this operates now also on selections.
11000
11001 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
11002
11003         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
11004
11005         * many files: send debug output to Debug::INFO instead of
11006         Debug::ANY.
11007
11008         * converter.C (View):
11009         (Convert):
11010         (Move): send debug output to Debug::FILES instead of console.
11011
11012 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
11013
11014         * lyxfunc.C (getStatus): use func_status
11015
11016         * func_status.h: new header, describing the results of
11017         LyXFunc::getStatus;
11018
11019         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
11020         LFUN_MATH_HALIGN.
11021
11022 2001-06-25  The LyX Project  <jug@sad.it>
11023
11024         * buffer.C (sgmlOpenTag):
11025         (sgmlCloseTag):
11026         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
11027
11028 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11029
11030         * text2.C: remove some dead code
11031
11032         * tabular.C (GetCellInset): store the last cell checked (gotten)
11033
11034         * tabular.h: add the helper for the speedup
11035
11036         * lyxtext.h: remove some dead code
11037
11038 2001-06-26  The LyX Project  <Asger>
11039
11040         * paragraph.C: Change export to LaTeX of alignment to
11041         \begin{center} and family for better roundtrip work with reLyX.
11042
11043         * Tune the math drawing a bit.
11044
11045 2001-06-25  The LyX Project  <Asger>
11046
11047         * LColor.C (LColor): New color for math background. New color
11048         for buttons.
11049
11050 2001-06-25  The LyX Project  <jug@sad.it>
11051
11052         * lyxfunc.C (MenuNew): remove extra check for .lyx file
11053
11054         * lyxfunc.C (Open):
11055         * bufferlist.C (newFile): do not restrict to files ending with
11056         .lyx
11057
11058         * BufferView_pimpl.C (MenuInsertLyXFile):
11059
11060 2001-06-24  The LyX Project  <jug@sad.it>
11061
11062         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
11063         of compare_no_case
11064
11065 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11066
11067         * lyxtext.h: rename most methods to begin with a small char.
11068         Lots of changes because of this.
11069
11070         * paragraph.C (Paragraph): do not call fitToSize
11071         (erase): call Pimpl::erase
11072         (insertChar): call Pimpl::insertChar
11073         (insertInset): call Pipl::insertInset
11074         (breakParagraph): do not call fitToSize
11075         (breakParagraphConservative): do not call fitToSize
11076         (fitToSize): remove method
11077
11078         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
11079
11080 2001-06-24  The LyX Project  <Asger>
11081
11082         * Fix Qt compilation^2
11083
11084 2001-06-24  The LyX Project  <jug@sad.it>
11085
11086         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
11087         depthHook(getDepth()-1).
11088
11089         * paragraph.h:
11090         * ParagraphParameters.h:
11091         * ParameterStruct.h: change type of depth to unsigned int ==
11092         depth_type. Many adaptations to other files before of that.
11093
11094 2001-06-24  The LyX Project  <Asger>
11095
11096         * Fix Qt compilation.
11097
11098 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11099
11100         * paragraph.h: renamed several methods to begin with small letter.
11101         several changes to many parts of the code because of this.
11102
11103 2001-06-23  The LyX Project  <jug@sad.it>
11104
11105         * text2.C (InsertStringAsLines): renamed from InsertStringA;
11106         rewritten to discard all double spaces when KeepEmpty is off
11107         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
11108         to only handle newlines but not fiddle with spaces and friends.
11109
11110         * lyxfunc.C (MenuNew): when doing 'new from template', use
11111         template_path as default directory
11112
11113 2001-06-23  The LyX Project  <Asger>
11114
11115         * Clean-up of header file includes all over
11116         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
11117
11118 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11119
11120         * paragraph.h: renamed from lyxparagraph.h
11121
11122 2001-06-23  Asger  <lyx@violet.home.sad.it>
11123
11124         * Buffer.h: Removed Buffer::resize
11125         * BufferList.h: Removed BufferList::resize
11126         * LyXView.h: Added LyXView::resize. This way, we will only reflow
11127         the document lazily when we change the width, or the font settings.
11128
11129 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
11130
11131         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
11132
11133 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
11134
11135         * buffer.h: remove out of date comment
11136
11137 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
11138
11139         * lyxscreen.h:
11140         * screen.C: fix "theoretical" GC leak
11141
11142 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11143
11144         * LaTeX.C (scanAuxFile):
11145         (deplog): remove trailing \r when reading stream (useful under
11146         win32)
11147
11148 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
11149
11150         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
11151         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
11152         and BufferView::theLockingInset(Inset*), so should use them and not
11153         access bv_->text->the_locking_inset directly.
11154
11155         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
11156
11157 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
11158
11159         * Makefile.am:
11160         * tex-defs.h: remove old unused file
11161
11162 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
11163
11164         * BufferView_pimpl.C: fix typo, remove minibuffer message
11165           when buffer has loaded
11166
11167 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11168
11169         * lyxfunc.C (Dispatch): use stringstream
11170         (MenuNew): use stringstream
11171         (Open): use stringstream
11172
11173         * importer.C (Import): use stringstream
11174
11175         * bufferview_funcs.C (CurrentState): use stringstream
11176
11177         * LaTeX.C (run): use stringstream
11178
11179         * BufferView_pimpl.C (savePosition): use stringstream
11180         (restorePosition): use stringstream
11181         (MenuInsertLyXFile): use stringstream
11182
11183 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
11184
11185         * BufferView.C:
11186         * Bullet.C:
11187         * ColorHandler.C:
11188         * FontInfo.C:
11189         * FontLoader.C:
11190         * LColor.C:
11191         * LaTeXFeatures.C:
11192         * Painter.C:
11193         * gettext.C:
11194         * lyx_gui_misc.C:
11195         * lyxserver.C:
11196         * vspace.C: removed // -*- C++ -*- as first line.
11197
11198         * lyxfind.h:
11199         * version.h: added // -*- C++ -*- as first line.
11200
11201 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11202
11203         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
11204
11205         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
11206         of string
11207
11208 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11209
11210         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
11211         of floats.
11212
11213 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11214
11215         * gettext.C: include LString.h even when --disable-nls is on.
11216
11217 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
11218
11219         * converter.h (Get): changed argument type from int to
11220         FormatList::size_type to avoid unnecessary conversion.
11221
11222         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
11223         before using it.
11224
11225 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11226
11227         * gettext.h: include LString.h even when --disable-nls is on.
11228
11229 2001-06-07  Juergen Vigna  <jug@sad.it>
11230
11231         * text.C (BreakAgain): subst spaces with tabs.
11232
11233         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
11234         (resizeInsetsLyXText): set force on resizeLyXText.
11235
11236 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11237
11238         * gettext.h (gettext_init):
11239         (locale_init): use a real definition instead of a macro
11240
11241 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
11242
11243         * Bufferview_pimpl.C:
11244         * LColor.h:
11245         * LColor.C: further lcolor tidies
11246
11247 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11248
11249         * BufferView_pimpl.C (updateScrollbar): simplify.
11250
11251         * BufferView2.C: don't include insets/insetinfo.h, change
11252         prototype for insertInset and call the Pimpl version. let
11253         updateInset call Pimpl version.
11254
11255         * BufferView.h: move inset_slept to BufferView::Pimpl, move
11256         gotoInset to BufferView::Pimpl
11257
11258 2001-06-01  Juergen Vigna  <jug@sad.it>
11259
11260         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
11261         inside a LockingInset (is the update needed at all?).
11262
11263 2001-05-31  Juergen Vigna  <jug@sad.it>
11264
11265         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
11266         here not the old one otherwise how should we compare it afterwards
11267         if it's the same!
11268
11269 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11270
11271         * lyxfont.C:
11272         * tabular.C:
11273         * tabular-old.C:
11274         * FontInfo.C: bring C functions into global namespace when
11275         necessary
11276
11277 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11278
11279         * LString.h: make sure config.h has been loaded before LString.h.
11280
11281         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
11282         (one for each char read by EatLine!).
11283
11284         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
11285         variables.
11286
11287 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11288
11289         * paragraph.C (BreakParagraph): set the inset_owner in the new par
11290         to the same as the par we break from
11291
11292 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11293
11294         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
11295
11296         * MenuBackend.C (expand): also create menu entries for wide
11297         versions of the floats.
11298
11299         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
11300
11301         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
11302
11303         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
11304         frontends/Makefile.am
11305
11306         * text2.C: adjust
11307         * text.C: adjust
11308
11309
11310         * tabular.C (getTokenValue): add std::
11311
11312         * tabular-old.C (getTokenValue): add std::
11313         (getTokenValue): ditto
11314         (getTokenValue): ditto
11315
11316         * screen.C (ToggleSelection): adjust
11317
11318         * lyxtext.h: put selection cursors inside a Selection struct.
11319
11320         * lyxfunc.C (moveCursorUpdate): adjust
11321
11322         * lyxfont.C (latexWriteStartChanges): add std::
11323
11324         * lyxfind.C: adjust
11325
11326         * font.h: delete with(char const *, LyXFont const &)
11327
11328         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
11329
11330         * FontInfo.C (getFontname): add std::
11331
11332         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
11333         (workAreaButtonPress): adjust
11334         (tripleClick): adjust
11335         (update): adjust
11336         (moveCursorUpdate): adjust
11337         (Dispatch): adjust
11338
11339         * BufferView2.C (gotoInset): adjust
11340
11341 2001-05-30  Juergen Vigna  <jug@sad.it>
11342
11343         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
11344         to check pspell I add this as default as I now have new pspell
11345         libraries and they seem to use this.
11346
11347 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11348
11349         * text2.C (CutSelection): make the cursor valid before the call to
11350         ClearSelection.
11351
11352 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11353
11354         * kbsequence.C (parse): de-uglify a bit the parsing code, which
11355         relied on 0 terminated strings and other horrors. Bug found due to
11356         the new assert in lyxstring!
11357
11358         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
11359         KP_ keys.
11360
11361 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11362
11363         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
11364         to latinkeys.bind.
11365
11366         * lyxfunc.C (processKeySym): change method of getting to the
11367         self-insert char.
11368
11369         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
11370         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
11371         * BufferView_pimpl.[Ch]: here as private methods.
11372
11373 2001-05-28  Juergen Vigna  <jug@sad.it>
11374
11375         * text.C (SetHeightOfRow): added the update() call again as it is
11376         needed to initialize inset dimensions!
11377
11378 2001-05-16  Juergen Vigna  <jug@sad.it>
11379
11380         * text2.C (SetCharFont): Add new function with BufferView * and
11381         bool toggleall parameters for setting insets internal fonts.
11382         (SetFont): Freeze the undo as we may change fonts in Insets and
11383         all this change should be inside only one Undo!
11384
11385         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
11386         setting font's in insets as for them we have the SetFont function!
11387
11388 2001-05-15  Juergen Vigna  <jug@sad.it>
11389
11390         * text2.C (ClearSelection): to be sure we REALLY don't have any
11391         selection anymore!
11392
11393         * tabular.C (TeXCellPreamble): fixed the left border problem for
11394         multicolumn cells.
11395
11396 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
11397
11398         * LaTeX.C (deplog): Make sure that the main .tex file is in the
11399         dependancy file
11400
11401 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11402
11403         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
11404         LFUN_BREAKPARAGRAPH.
11405
11406         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
11407         help test to "internal only", similar for LFUN_INSERT_URL
11408
11409         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
11410         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
11411         auto_region_delete and deadkeys.
11412
11413 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
11414
11415         * LColor.h:
11416         * LColor.C: remove some dead entries, tidy a little
11417
11418 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11419
11420         * lyxfunc.C (processKeySym): comment the Escape handling, remove
11421         commented code.
11422         (Dispatch): implement LFUN_ESCAPE
11423
11424         * commandtags.h: add LFUN_ESCAPE
11425
11426         * LyXAction.C (init): add entry for LFUN_ESCAPE
11427
11428         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
11429         Remove commented code.
11430         (insertNote): moved here
11431         (open_new_inset): moved here
11432
11433         * BufferView[2].[Ch]: move insertNote and open_new_inset to
11434         BufferView_pimpl
11435
11436 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11437
11438         * kbmap.C (findbinding): clean it up and make it work correctly.
11439
11440         * lyx_main.C (init): do not pass argc and argv as parameters
11441
11442 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
11443
11444         * buffer.C: fix path for OS/2 & Win32
11445
11446         * lyx_gui.C:
11447         * lyx_main:
11448         * lyx_main.C: Added os:: class.
11449
11450         * os2_defines.h: update
11451
11452 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11453
11454         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
11455         better by trying again with reduced state.
11456
11457 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11458
11459         * lyxrc.C (read): print error about invalid key sequence only when
11460         debugging (because not all latinX keysyms are known to some X
11461         servers)
11462
11463         * kbsequence.C (getiso): add a few std:: qualifiers
11464         (getiso): comment out extra return statement.
11465
11466 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11467
11468         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
11469         handling.
11470         (Dispatch): enhance the accent inset a bit. (not perfect)
11471
11472 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11473
11474         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
11475
11476 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11477
11478         * bufferlist.C (emergencyWrite): fix assert() call
11479
11480 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
11481
11482         * text.C (InsertChar): Added trivial patch to only send the "you
11483         can not do multiple spaces this way" message once during a
11484         session.
11485
11486 2001-05-08  Baruch Even  <baruch@lyx.org>
11487
11488         * Makefile.am: Changed order of libraries to get LyX to link properly
11489         with the gnome frontend.
11490
11491 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11492
11493         * LaTeXFeatures.h: add a std:: qualifier
11494
11495 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11496
11497         * paragraph.C (String): use stringstream
11498
11499 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11500
11501         * paragraph.C (writeFile): remove footflag arg
11502
11503         * buffer.C (makeLaTeXFile): use stringstream
11504         (latexParagraphs): remove footnot gurba
11505
11506         * LaTeXFeatures.C (getPackages): use stringstream
11507         (getMacros): likewise
11508         (getTClassPreamble): likewise
11509         (getFloatDefinitions): new method
11510
11511         * paragraph.C (writeFile): reindent
11512         (Erase): reindent
11513
11514         * WorkArea.h: revert the xpos + etc changes.
11515
11516         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
11517
11518         * lyxparagraph.[Ch]: add copy constructor, remove Clone
11519
11520         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
11521         (pasteSelection): likewise
11522         * text2.C (CreateUndo): likewise
11523
11524 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11525
11526         * minibuffer.C (peek_event): temporarily reduce the functionality
11527         of the minibuffer (to allow args on lfuns)
11528
11529         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
11530         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
11531
11532         * buffer.C (readInset): add compability reading of old float
11533         lists, add reading of new style float list.
11534         (readInset): avoid reevaluation of inscmd.getCmdName()
11535         (getLists): reindent
11536
11537         * MenuBackend.C (MenuItem): implement parsing of
11538         md_floatlistinsert and md_floatinsert.
11539         (expand::LastFiles): move initalizaton of iterators out of loop,
11540         avoid reevaluation.
11541         (expand::Documents): introduce typdedef vector<string> Strings,
11542         and use it.
11543         (expand::ExportFormats): introduce typedef vector<Format const *>
11544         Formats, and use it.
11545         (expand): implement FloatListInsert and FloatInsert.
11546
11547         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
11548         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
11549         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
11550
11551         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
11552         handling.
11553         (Dispatch::LFUN_FLOAT_LIST): implement
11554
11555 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
11556
11557         * LaTeX.C (run): Fix problem with --export code.
11558
11559 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
11560
11561         * BufferView.[Ch] (workarea): removed.
11562         (getClipboard) new method; wrapper for workarea()->getClipboard()
11563
11564         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
11565         bug.
11566
11567         * WorkArea.h (width, height, xpos, ypos): These methods all
11568         returned the dimensions of the work_area sub-area of WorkArea,
11569         resulting in a position error if the WorkArea were resized. Now
11570         return the dimensions of the entire WorkArea.
11571
11572         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
11573
11574 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11575
11576         * LaTeX.C (deplog): correct the syntax of regex reg1
11577
11578 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11579
11580         * undo.C: remove !NEW_INSETS cruft
11581
11582 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11583
11584         * text2.C: remove !NEW_INSETS cruft
11585
11586         * text.C: remove !NEW_INSETS cruft
11587
11588         * tabular.C: remove !NEW_INSETS cruft
11589
11590         * spellchecker.C: remove !NEW_INSETS cruft
11591
11592         * lyxtext.h: remove !NEW_INSETS cruft
11593
11594         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
11595
11596         * lyxfunc.C: remove !NEW_INSETS cruft
11597
11598         * lyxfind.C: remove !NEW_INSETS cruft
11599
11600         * lyx_cb.C: remove !NEW_INSETS cruft
11601
11602         * figureForm.C: remove  !NEW_INSETS cruft
11603
11604         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
11605
11606         * buffer.[Ch]: remove !NEW_INSETS cruft
11607
11608         * ToolbarDefaults.C: remove !NEW_INSETS cruft
11609
11610         * CutAndPaste.C: remove !NEW_INSETS cruft
11611
11612         * BufferView_pimpl.C: remove !NEW_INSETS cruft
11613
11614         * BufferView2.C: remove !NEW_INSETS cruft
11615
11616         * BufferView.h: remove !NEW_INSETS cruft
11617
11618 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11619
11620         * Lsstream.h: include LString.h before the sstream headers to
11621         fix problem with gcc 2.95.3 and lyxstring
11622
11623 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11624
11625         * lyx_main.C: add using directives when needed for C functions
11626         declared in std:: namespace.
11627
11628 2001-04-27  Juergen Vigna  <jug@sad.it>
11629
11630         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
11631         (SetHeightOfRow): comment out the update call should not be needed!
11632
11633 2001-04-13  Juergen Vigna  <jug@sad.it>
11634
11635         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
11636         (LyXTabular): tried to minimize operator= operations (and realized
11637         hopfully Lars wish).
11638
11639 2001-04-27  Juergen Vigna  <jug@sad.it>
11640
11641         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
11642
11643 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11644
11645         * lyxfunc.C (Dispatch): hack to make listof algorithm work
11646
11647         * buffer.C (readInset): hack to make listof algorithm work
11648
11649         * BufferView_pimpl.C: hack to make listof algorithm work
11650
11651 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11652
11653         * LyXAction.C: removed all !NEW_INSETS cruft
11654         (init): moved lfun_item in method
11655
11656         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
11657
11658 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
11659
11660         * BufferView2.C (theLockingInset): white space.
11661
11662 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11663
11664         * minibuffer.C: include <iostream>
11665
11666         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
11667
11668         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
11669
11670         * commandtags.h: add LFUN_TRANSPOSE_CHARS
11671
11672         * text.[Ch] (TransposeChars): new method
11673
11674 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11675
11676         * call message directly through LyXView instead of through LyXFunc
11677         * BufferView2.C: adjust
11678         * BufferView_pimpl.C: adjust
11679         * FontLoader.C: adjust
11680         * buffer.C: adjust
11681         * bufferview_funcs.C: adjust
11682         * converter.C: adjust
11683         * figureForm.C: adjust
11684         * importer.C: adjust
11685         * lyx_cb.C: adjust
11686         * lyx_gui_misc.C: adjust
11687         * lyxfunc.C: adjust
11688         * lyxvc.C: adjust
11689         * text2.C: adjust
11690         + more files in subdirs
11691
11692         * lyxparagraph.h (size): move up int file
11693         (GetLayout): ditto
11694
11695         * adjust all uses of Assert to lyx::Assert.
11696
11697         * BufferView2.C (ChangeCitationsIfUnique): adjust for
11698         lyxfunctional in namespace lyx
11699         * layout.C (hasLayout): ditto
11700         (GetLayout): ditto
11701         (GetLayout): ditto
11702         (delete_layout): ditto
11703         (NumberOfClass): ditto
11704         * converter.C (GetFormat): ditto
11705         (GetNumber): ditto
11706         (Add): ditto
11707         (Delete): ditto
11708         (SetViewer): ditto
11709         * bufferlist.C (getFileNames): ditto
11710         (emergencyWriteAll): ditto
11711         (exists): ditto
11712         (getBuffer): ditto
11713         * MenuBackend.C (hasSubmenu): ditto
11714         (hasMenu): ditto
11715         (getMenu): ditto
11716         * BufferView_pimpl.C (getInsetByCode): ditto
11717
11718 2001-04-18  Juergen Vigna  <jug@sad.it>
11719
11720         * vspace.C (asLatexString): fixed the 100% problem.
11721
11722 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11723
11724         * lyxfunc.C (Dispatch):
11725         * minibuffer.C:
11726         * minibuffer.h: add a few std:: qualifiers
11727
11728 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11729
11730         * minibuffer.[Ch]: reimplement so that commands is initiated and
11731         run from lyxfunc, simplified som handling, and made the completion
11732         and history code for complete. wip.
11733
11734         * lyxfunc.C (processKeySym): call message
11735         (miniDispatch): new temporary method
11736         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
11737         (LFUN_MESSAGE): implement
11738         (LFUN_MESSAGE_PUSH): implement
11739         (LFUN_MESSAGE_POP): implement
11740         (initMiniBuffer): the initial/defualt minibuffer message.
11741
11742         * lyxfont.[Ch]: inline some more getters
11743
11744         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
11745
11746         * lyx_gui_misc.[Ch] (WriteStatus): remove method
11747
11748         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
11749         (AutoSave): use LFUN_MESSAGE
11750         (Reconfigure): ditto
11751
11752         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
11753
11754         * figureForm.C: use LFUN_MESSAGE
11755
11756         * converter.C (runLaTeX): use LFUN_MESSAGE
11757
11758         * bufferview_funcs.C: use LFUN_MESSAGE
11759         (Melt): ditto
11760         (changeDepth): ditto
11761
11762         * bufferparams.h: use boost::
11763
11764         * bufferlist.h: inherit privately from noncopyable
11765
11766         * bufferlist.C (loadLyXFile): remove some commented code.
11767
11768         * buffer.C (runChktex): use LFUN_MESSAGE
11769
11770         * ShareContainer.h: inherit privately from noncopyable
11771
11772         * ParagraphParameters.[hC] (depth): inline it.
11773
11774         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
11775         methods.
11776         (message): new method
11777         (messagePush): ditto
11778         (messagePop): ditto
11779         (show): init minibuffer
11780         (showState): direct call
11781
11782         * LaTeX.[Ch]: inherit privately from noncopyable
11783         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
11784         instead of WriteStatus.
11785
11786         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
11787
11788         * BufferView_pimpl.C (buffer): don't init minibuffer
11789         (workAreaButtonPress): use LFUN_MESSAGE
11790         (workAreaButtonRelease): ditto
11791         (savePosition): ditto
11792         (restorePosition): ditto
11793         (MenuInsertLyXFile): ditto
11794         (workAreaExpose): don't init minibuffer
11795         (update): remove commented code, simplify
11796
11797         * BufferView2.C (openStuff): use LFUN_MESSAGE
11798         (toggleFloat): ditto
11799         (menuUndo): ditto
11800         (menuRedo): ditto
11801         (copyEnvironment): ditto
11802         (pasteEnvironment): ditto
11803         (copy): ditto
11804         (cut): ditto
11805         (paste): ditto
11806         (gotoInset): ditto
11807         (updateInset): remove some commented code
11808
11809         * lastfiles.h: inherit privately from noncopyable
11810         * layout.h: ditto
11811         * lyx_gui.h: ditto
11812         * lyx_main.h: ditto
11813         * lyxlex.h: ditto
11814         * lyxlex_pimpl.h: ditto
11815
11816         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
11817         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
11818         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
11819
11820         * LyXAction.h: inherit privately from noncopyable, add methods
11821         func_begin, func_end, returning iterators to the func map.
11822
11823         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
11824         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
11825         (func_begin): new method
11826         (func_end): new method
11827
11828         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
11829         and not)
11830         (copySelection): ditto
11831         (pasteSelection): ditto
11832
11833         * BufferView.C: whitespace change
11834         * BufferView.h: inherit privately from noncopyable
11835
11836 2001-04-16  Allan Rae  <rae@lyx.org>
11837
11838         * tabular-old.C (l_getline):
11839         * spellchecker.C (sc_check_word):
11840         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
11841         an unrecognised preprocessor directive.  So ensure they're wrapped.
11842
11843 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
11844
11845         * src/exporter.C (Export): Give an error message when path to file
11846         contains spaces.
11847
11848 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
11849
11850         * LaTeX.C (deplog): Always check that foundfile exists.
11851
11852 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11853
11854         * lyx_main.h:
11855         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
11856
11857 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11858
11859         * tabular.[Ch] (getLabelList): implement new method
11860
11861         * minibuffer.h: comment ouf setTiimer
11862
11863         * minibuffer.C (ExecutingCB): constify res
11864         (peek_event): constify s
11865         (Set): constify ntext
11866         (Init): constify nicename
11867
11868         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
11869
11870         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
11871         (savePosition): use two params to Minibuffer::Set
11872         (restorePosition): ditto
11873
11874 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11875
11876         * lyx_main.C: include language.h
11877
11878         * Makefile.am (lyx_main.o): add language.h
11879
11880 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11881
11882         * exporter.C:
11883         * paragraph.C:
11884         * screen.C:
11885         * tabular.C:
11886         * CutAndPaste.C: include gettext.h
11887
11888         * lyxfont.h: remove old hack with ON and OFF.
11889
11890         * lyxparagraph.h:
11891         * lyxfont.h: do not include language.h...
11892
11893         * BufferView2.C:
11894         * LaTeXFeatures.C:
11895         * Painter.C:
11896         * bufferview_funcs.C:
11897         * font.C:
11898         * lyxfont.C:
11899         * text.C:
11900         * text2.C:
11901         * trans_mgr.C:
11902         * paragraph.C: ... but do it here instead
11903
11904 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11905
11906         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
11907
11908         * tabular.C: small reformat
11909
11910         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
11911         NEW_INSETS version
11912         (GetChar): ditto
11913         (BreakParagraph): ditto
11914         (SetOnlyLayout): ditto
11915         (SetLayout): ditto
11916
11917         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
11918         with one arg less.
11919
11920         * lastfiles.C: removed most using decl, add std:: where needed
11921
11922         * buffer.C: ws changes
11923
11924         * MenuBackend.C (class compare_format): put into anon namespace
11925         (expand): constify label, names, action, action2
11926         (expand):
11927
11928         * text.C (SingleWidth): constify font
11929         (IsBoundary): constify rtl2
11930         (GetVisibleRow): constify ww
11931
11932         * LaTeX.C (deplog): constify logfile
11933
11934         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
11935         start_x, end_x
11936         (workAreaExpose): constify widthChange, heightChange
11937
11938         * lyxrow.C (par): moved
11939         (height): moved
11940         (next): moved
11941         * lyxrow.h: as inlines here
11942
11943         * lyxfont.h (shape): moved from lyxfont.C
11944         (emph): moved from lyxfont.C
11945
11946         * lyxfont.C (LyXFont): use initialization list for all
11947         constructors
11948         (shape): move to lyxfont.h as inline
11949         (emph): move to lyxfont.h as inline
11950
11951
11952 2001-04-04  Juergen Vigna  <jug@sad.it>
11953
11954         * vspace.C: had to include stdio.h for use of sscanf
11955
11956 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
11957
11958         * BufferView.h:
11959         * BufferView_pimpl.h: remove xforms cruft. Both classes are
11960         independent of xforms.
11961
11962 2001-04-02  Juergen Vigna  <jug@sad.it>
11963
11964         * spellchecker.C: fixed namespace placing!
11965
11966 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
11967
11968         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
11969         the LyXParagraph * is 0.
11970
11971 2001-03-29  Juergen Vigna  <jug@sad.it>
11972
11973         * vspace.C: added support for %, c%, p%, l%.
11974         (stringFromUnit): added helper function.
11975         (asLatexString): changed to give right results for the %-values.
11976
11977         * buffer.C: convert the widthp in a width%.
11978
11979 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
11980
11981         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
11982         figureForm.[Ch].
11983
11984         * figureForm.[Ch]: stripped the FD_from_figure manipulation
11985         code out of lux_cb.[Ch], ready for its (imminent?) removal.
11986
11987         * lyx_cb.[Ch]: see above.
11988
11989         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
11990         form1.[Ch].
11991
11992         * form1.[Ch]:
11993         * lyx.[Ch]: replaced by figure_form.[Ch].
11994
11995         * lyx_gui.C:
11996         * lyx_gui_misc.C:
11997         * lyxfunc.C: changed headers associated with above changes.
11998
11999 2001-03-27  Juergen Vigna  <jug@sad.it>
12000
12001         * BufferView_pimpl.C: set the temporary cursor right!
12002
12003 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
12004
12005         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
12006
12007 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
12008
12009         * LString.h: removed "using std::getline"!
12010
12011         * BufferView_pimpl.C (Dispatch): changes due to changes in
12012         InsetInclude::Params.
12013
12014         * buffer.C (tag_name): removed redundant break statements as they were
12015         producing lots of warnings with my compiler.
12016
12017 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12018
12019         * LString.h: add "using std::getline" when using the real <string>.
12020
12021 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
12022
12023         * buffer.C: removed bitset usage.
12024         PAR_TAG moved to an anonymous name space.
12025         (tag_name): new funtion, also in the anonymous namespace.
12026         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
12027         (makeDocBookFile): clean code. Completed transition from string arrays
12028         to string vectors.
12029         (SimpleDocBookOnePar): code clean.
12030
12031 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12032
12033         * tabular.C: add some comments.
12034
12035 2001-03-22  Juergen Vigna  <jug@sad.it>
12036
12037         * buffer.C (parseSingleLyXformat2Token): redone the minipage
12038         compatibility read a bit and fixed bug with minipage in different
12039         depth.
12040
12041 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
12042
12043         * buffer.C (pop_tag): removed.
12044         (push_tag): removed.
12045         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
12046         array replaced with vector. Added support for CDATA sections.
12047         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
12048         at any nest level.
12049         (makeDocBookFile): XML conformant declaration of CDATA section,
12050         fixed bug related to <emphasis> in the first paragraph char.
12051         (sgmlOpenTag): exclude empty tags.
12052         (sgmlCloseTag): ditto.
12053
12054         * buffer.h (pop_tag): removed.
12055         (push_tag): removed.
12056
12057 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
12058
12059         * language.h (Languages): added size_type and size().
12060
12061 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12062
12063         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
12064         response on compability reading of minipages. One probliem is that
12065         the old usage of minipages was «flertydig»
12066
12067         * several files here and in subdirs: don't use static at file
12068         scope use anon namespaces instead.
12069
12070 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
12071
12072         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
12073         LaTeX output. This is necessary for Literate document
12074         processing.
12075
12076 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12077
12078         * buffer.C: insert hfill when needed.
12079
12080         * tabular.C (l_getline): use string::erase, small whitespace change.
12081
12082         * BufferView_pimpl.C: try the anon namespace.
12083         * WorkArea.C: ditto
12084
12085 2001-03-16  Juergen Vigna  <jug@sad.it>
12086
12087         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
12088         otherwise it won't open options-dialogs.
12089
12090         * buffer.C: honor pextraWidth(p) on converting minipages.
12091
12092         * tabular.C (l_getline): changed the functions to strip trailing \r.
12093
12094 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
12095
12096         * BufferView_pimpl.C:
12097         * minibuffer..C: added "using SigC::slot" declaration.
12098
12099 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12100
12101         * lyxlex_pimpl.h: noncopyable is in namespace boost.
12102
12103         * text2.C: ditto
12104
12105         * text.C: ditto
12106
12107         * paragraph.C: ditto
12108
12109         * lyxtext.h: NO_PEXTRA
12110
12111         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
12112
12113         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
12114         * ParameterStruct.h: ditto
12115         * ParagraphParameters.h: ditto
12116         * lyxparagraph.h: ditto
12117
12118 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12119
12120         * buffer.C: add compability for minipage alignment.
12121         (latexParagraphs): remove unwanted pextra check.
12122
12123         * several files: remove CXX_WORKING_NAMESPACES
12124
12125         * buffer.C (pop_tag): tie is in namespace boost
12126
12127         * BufferView.h: noncopyable is in namespace boost
12128         * lyxlex.h: ditto
12129         * lyx_main.h: ditto
12130         * lyx_gui.h: ditto
12131         * layout.h: ditto
12132         * lastfiles.h: ditto
12133         * bufferlist.h: ditto
12134         * ShareContainer.h: ditto
12135         * LyXView.h: ditto
12136         * LyXAction.h: ditto
12137         * LaTeX.h: ditto
12138
12139 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
12140
12141         * Merging changes from BRANCH_MVC back into HEAD.
12142
12143         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
12144
12145 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
12146
12147         * BufferView_pimpl.C: change from intl.C
12148
12149         * combox.h:
12150         * combox.C:
12151         * Makefile.am: move combox.*
12152
12153         * form1.h:
12154         * form1.C:
12155         * lyx_gui.C:
12156         * intl.h:
12157         * intl.C: remove dialog (covered by prefs)
12158
12159 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
12160
12161         * lyxfunc.C (Dispatch): removed redundant break statement.
12162
12163 2001-03-14  Juergen Vigna  <jug@sad.it>
12164
12165         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
12166
12167 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12168
12169         * buffer.C: add hack to fix compability reading of minipages.
12170
12171 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
12172
12173         * buffer.C (getLists): Cleanup.
12174
12175 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12176
12177         * lyxfont.C (update): don't honor toggleall on font size.
12178
12179 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
12180
12181         * bmtable.c:
12182         * bmtable.h:
12183         * Makefile.am: moved to frontends/xforms/
12184
12185         * lyx_gui_misc.C:
12186         * lyxfunc.C:
12187         * BufferView_pimpl.C: changes for moved mathpanel
12188
12189 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
12190
12191         * gettext.h: fix gettext_init() in --disable-nls
12192
12193 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12194
12195         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
12196
12197 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
12198
12199         * lyx.C:
12200         * lyx.h: strip external form
12201
12202 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
12203
12204         * BufferView_pimpl.C: add comment, destroySplash()
12205
12206 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
12207
12208         * BufferView_pimpl.C:
12209         * LyXAction.C:
12210         * buffer.C:
12211         * commandtags.h:
12212         * lyxfunc.C: use re-worked insetinclude
12213
12214 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12215
12216         * buffer.C: add using std::stringstream.
12217
12218         * lyx_cb.C: readd using std::ios.
12219
12220         * buffer.C: add using std::map.
12221
12222         * BufferView_pimpl.C: add using std::vector.
12223
12224         * ShareContainer.h: add std:: to swap.
12225
12226         * buffer.h: add some typedefs
12227         * buffer.C (getLists): use them
12228         (getLists): renamed from getTocList.
12229         add a counter for the different float types and use it in the
12230         generated string.
12231         (getLists): use the same counter for the NEW_INSETS and the "non"
12232         NEW_INSETS
12233
12234         * lyx_cb.h: remove unused items, includes, using etc.
12235
12236         * ShareContainer.h: remove some commented code, add more comments
12237         and "documentation".
12238
12239 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12240
12241         * buffer.C (getTocList): make the list also when NEW_INSETS is
12242         defined.
12243
12244         * buffer.h: remove TocType
12245
12246         * buffer.C (getTocList): change to return a map<string,
12247         vector<TocItem> >, implement for dynamic number of list.
12248
12249         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
12250         * text2.C (PasteSelection): adjust
12251         * CutAndPaste.C (pasteSelection): adjust
12252
12253         * FloatList.C (FloatList): update from the new_insets branch.
12254         * Floating.[Ch]: ditto
12255         * LaTeXFeatures.C: ditto
12256         * buffer.C: ditto
12257         * lyxlex_pimpl.C: ditto
12258
12259         * paragraph.C (Last): remove when NEW_INSETS is defined.
12260
12261         * other file: changes because of the above.
12262
12263 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12264
12265         * lyxparagraph.h: rename next to next_, previous to previous_,
12266         make them private for NEW_INSETS. Rename Next() to next(),
12267         Previous() to previous().
12268
12269         * other files: changes because of the above.
12270
12271 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
12272
12273         * BufferView.h:
12274         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
12275         problem.
12276
12277 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12278
12279         * main.C (main): pass lyx_localedir to gettext_init().
12280
12281         * gettext.h: remove locale_init and gettext_init macros
12282
12283         * gettext.C (locale_init): new function
12284         (gettext_init): new function
12285
12286         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
12287         setlocale().
12288
12289 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
12290
12291         * Moved credits to frontends:
12292         * credits.[Ch]: removed
12293         * credits_form.[Ch]: removed
12294         * lyx_gui_misc.C: remove credits stuff
12295         * Makefile.am:
12296
12297 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12298
12299         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
12300
12301         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
12302         unneeded destructor.
12303
12304         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
12305         a standalone pointer again.
12306
12307         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
12308
12309 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
12310
12311         * Makefile.am:
12312         * filedlg.h:
12313         * filedlg.C:
12314         * LyXAction.C:
12315         * ToolbarDefaults.C:
12316         * bufferlist.C:
12317         * commandtags.h:
12318         * form1.C:
12319         * form1.h:
12320         * lyx_cb.C:
12321         * lyx_cb.h:
12322         * lyxfunc.h:
12323         * lyxfunc.C:
12324         * BufferView_pimpl.C: use new file dialog in GUII
12325
12326         * lyx_cb.h:
12327         * lyx_cb.C: remove LayoutsCB to Toolbar
12328
12329 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12330
12331         * ShareContainer.h (get): add std:: qualifier
12332
12333 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12334
12335         * ShareContainer.h: define a proper ShareContainer::value_type
12336         type (and use typename to please compaq cxx)
12337
12338 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12339
12340         * lyxparagraph.h: move serveral local vars to
12341         ParameterStruct/ParagraphParameters., use ShareContainer in
12342         FontTable., make vars in FontTable private and add getter and
12343         setter.
12344
12345         * paragraph.C: changes because of the above.
12346
12347         * lyxfont.h: remove copy constructor and copy assignment. (the
12348         default ones is ok), move number inside FontBits. move inlines to
12349         lyxfont.C
12350
12351         * lyxfont.C: add number to initializaton of statics, move several
12352         inlines here. constify several local vars. some whitespace
12353         cleanup. Dont hide outerscope variables.
12354
12355         * Spacing.h: add two new constructors to match the set methods.
12356
12357         * ShareContainer.h: new file, will perhaps be moved to support
12358
12359         * ParameterStruct.h: new file
12360
12361         * ParagraphParameters.h: new file
12362
12363         * ParagraphParameters.C: new file
12364
12365         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
12366         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
12367
12368         * BufferView_pimpl.C: ParagraphParameter changes.
12369         * buffer.C: Likewise.
12370         * bufferview_funcs.C: Likewise.
12371         * text.C: Likewise.
12372         * text2.C: Likewise.
12373
12374 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12375
12376         * lyxfind.C (LyXReplace): do not redefine default argument in
12377         implementation.
12378         (IsStringInText): ditto
12379         (SearchForward): ditto
12380         (SearchBackward): ditto
12381
12382 2001-03-06  Juergen Vigna  <jug@sad.it>
12383
12384         * lyxfind.C (IsStringInText): put parentes around expressions.
12385
12386 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
12387
12388         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
12389
12390 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
12391
12392         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
12393
12394         * stl_string_fwd.h: add comment
12395
12396         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
12397
12398         * tabular.h:
12399         * tabular.C: remove unused DocBook methods
12400
12401         * intl.C:
12402         * language.C:
12403         * paragraph.C:
12404         * buffer.C:
12405         killed DO_USE_DEFAULT_LANGUAGE
12406
12407 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12408
12409         * lyx_gui.C: do not include language.h.
12410
12411         * bufferview_funcs.C (ToggleAndShow): do not provide optional
12412         arguments in function implementation.
12413
12414 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12415
12416         * BufferView_pimpl.C: add <ctime>
12417
12418 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12419
12420         * BufferView_pimpl.C: add using std::find_if
12421
12422 2001-02-27  José Matos  <jamatos@fep.up.pt>
12423
12424         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
12425         by OnlyPath.
12426
12427 2001-02-11  José Matos  <jamatos@fep.up.pt>
12428
12429         * buffer.C (makeDocBookFile): command styles now have a parameter as
12430         "title" by default.
12431
12432 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
12433
12434         * layout_forms.[Ch]: removed
12435         * lyx_cb.[Ch]: out character
12436         * lyx_gui.C: out character
12437         * lyx_gui_misc.C: out character
12438         * bufferview_funcs.C: : out character,
12439         added toggleall as parameter in ToggleAndShow
12440
12441 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
12442
12443         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
12444
12445         * text2.C (SetCurrentFont): Disable number property at boundary.
12446
12447 2001-02-26  Juergen Vigna  <jug@sad.it>
12448
12449         * lyxfunc.C (getStatus): added a string argument override function so
12450         that this is correctly called from LyXFunc::Dispatch if it contains a
12451         do_not_use_argument which is used!
12452         (Dispatch): added check for "custom" export and call appropriate func.
12453
12454 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
12455
12456         * lyxrc.C: Add language_command_local, language_use_babel and
12457         language_global_options.
12458
12459         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
12460
12461         * buffer.C (makeLaTeXFile): Use language_use_babel and
12462         language_global_options.
12463
12464 2001-02-23  Juergen Vigna  <jug@sad.it>
12465
12466         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
12467         which works with LyXText and putted it inside BufferView. Here now we
12468         only call for that part the BufferView::Dispatch() function.
12469
12470         * BufferView.C (Dispatch): added.
12471
12472         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
12473         functions which needs to use a LyXText over from LyXFunc.
12474         (MenuInsertLyXFile): added
12475         (getInsetByCode): added
12476         (moveCursorUpdate): added
12477         (static TEXT): added
12478
12479 2001-02-22  Juergen Vigna  <jug@sad.it>
12480
12481         * BufferView_pimpl.C (update): call a status update to see if LyXText
12482         needs it.
12483
12484 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12485
12486         * vc-backend.C (revert): implement for CVS
12487         (getLog): implement for CVS
12488
12489 2001-02-20  Juergen Vigna  <jug@sad.it>
12490
12491         * text2.C (ClearSelection): added BufferView param for inset_owner call
12492
12493         * lyxfunc.C (TEXT): added this function and use it instead of
12494         directly owner->view()-text of getLyXText().
12495
12496 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
12497
12498         * src/layout_forms.C: out preamble
12499         * src/layout_forms.h: out preamble
12500         * src/lyx_cb.C: out preamble
12501         * src/lyx_cb.h: out preamble
12502         * src/lyx_gui.C: out preamble
12503         * src/lyx_gui_misc.C: out preamble
12504         * src/lyxfunc.C: connect with guii preamble
12505
12506 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
12507
12508         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
12509
12510 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
12511
12512         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
12513         whether to run bibtex.
12514
12515 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
12516
12517         * Makefile.am (lyx_SOURCES): Remove BackStack.h
12518
12519 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
12520
12521         * Makefile.am (lyx_SOURCES): removed bibforms.h
12522
12523         * vspace.h: doxygen
12524
12525         * text.C (GetVisibleRow): make several local vars const
12526
12527         * tabular.C: small cleanup.
12528
12529         * lyxserver.C (callback): use compare instead of strncmp
12530
12531         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
12532         inlines to after class or to paragraph.C
12533
12534         * lyxfont.h: remove friend operator!=
12535
12536         * converter.h: move friend bool operator< to non friend and after
12537         class def.
12538
12539         * combox.h: small cleanup
12540
12541         * buffer.h: doxygen, remove unused constructor, move inclas inlies
12542         to inlines after class def.
12543
12544         * buffer.C (pop_tag): use string operations instead of strcmp
12545
12546         * bmtable.c: doxygen, small cleanup
12547
12548         * LaTeX.h: remove friend operator==
12549
12550 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
12551
12552         * screen.C:
12553         * lyxrc.[Ch]:
12554         * lyxfunc.C:
12555         * lyxfont.[Ch]:
12556         * lyx_cb.C:
12557         * intl.[Ch]:
12558         * commandtags.h:
12559         * buffer.C:
12560         * WorkArea.[Ch]:
12561         * LyXAction.C:
12562         * BufferView_pimpl.C:
12563         * BufferView.[Ch]: remove cruft
12564
12565 2001-02-14  Juergen Vigna  <jug@sad.it>
12566
12567         * lyxfunc.C: removed #if 0 unused code
12568
12569         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
12570
12571         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
12572
12573         * text2.C (SetSelection): added a BufferView * parameter
12574
12575 2001-02-13  Juergen Vigna  <jug@sad.it>
12576
12577         * lyxfunc.C (Dispatch): fixed protected blank problem.
12578         * BufferView2.C (protectedBlank): added LyxText * parameter.
12579
12580         * tabular.C (AppendRow): forgot to set row_info of newly added row.
12581         (AppendColumn): same as above for column_info.
12582
12583         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
12584         (moveCursorUpdate): use a LyXText param for support of InsetText.
12585
12586         * BufferView_pimpl.C (doubleClick): added support for InsetText.
12587         (tripleClick): ditto
12588
12589         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
12590
12591         * BufferView_pimpl.C (update): added LyXText param to honor insets.
12592
12593         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
12594
12595         * text2.C (SetSelection): set correct update status if inset_owner
12596         (ToggleFree): ditto
12597
12598 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
12599
12600         * tabular.C: remove some commented code.
12601
12602 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
12603
12604         * BufferView_pimpl.C: call hideSplash()
12605
12606         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
12607
12608         * include_form.h:
12609         * bibforms.h: remove
12610
12611         * lyxfunc.C:
12612         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
12613           add LFUN_CHILD_CREATE
12614
12615         * counters.h: fix tiny typo
12616
12617         * lyx_cb.C:
12618         * lyx.h:
12619         * lyx_gui.C:
12620         * lyx.C: move splash to frontends/xforms/
12621
12622         * lyx_gui_misc.C: move Include and Bibform to frontends
12623
12624         * lyxvc.h: clarify comment
12625
12626         * vspace.C: tiny housekeeping
12627
12628 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
12629
12630         * text.C (PrepareToPrint): RTL Fix.
12631
12632         * paragraph.C (GetUChar): New method.
12633         (String):  Use GetUChar.
12634
12635         * buffer.C (asciiParagraph): Use GetUChar.
12636
12637 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
12638
12639         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
12640
12641 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
12642
12643         * buffer.h:
12644         * buffer.C: rename to getLogName(), handle
12645           build log / latex log nicely
12646
12647 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12648
12649         * MenuBackend.C:
12650         * MenuBackend.h: remove support for reference menuitem type.
12651
12652 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
12653
12654         * BufferView_pimpl.C: housekeeping
12655         * BufferView_pimpl.h:
12656         * LyXView.h:
12657         * Makefile.am:
12658         * Timeout.C:
12659         * Timeout.h:
12660         * minibuffer.h: move Timeout GUI-I
12661
12662 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
12663
12664         * lyxrc.C (read): Update converters data-structures.
12665
12666 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
12667
12668         * LaTeX.h (operator!=): add operator != for Aux_Info
12669
12670 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
12671
12672         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
12673
12674         * LaTeXLog.C: deleted, useful code moved to Buffer
12675
12676         * buffer.h:
12677         * buffer.C: new function getLatexLogName()
12678
12679         * lyx_gui_misc.C:
12680         * lyx_gui.C:
12681         * lyxvc.C:
12682         * lyxvc.h:
12683         * lyxfunc.C: use frontends for LaTeX and VC logs
12684
12685 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12686
12687         * LaTeX.h: yet another std:: that Allan forgot.
12688
12689         * Variables.C (set): renamed from isset(), because this clashes
12690         with some HP-UX macros (grr).
12691
12692 2001-02-06  Allan Rae  <rae@lyx.org>
12693
12694         * LaTeX.h: Another bug fix.  Missing std:: this time.
12695
12696 2001-02-04  Allan Rae  <rae@lyx.org>
12697
12698         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
12699         floats problem. I've left it commented out because it's not quite
12700         correct.  It should also test that the current object is a table or
12701         figure inset.  But I haven't gotten around to figuring out how to do
12702         that.  I *think* it'll be something like: "table" == inset.type()
12703
12704         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
12705         bool.
12706
12707 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
12708
12709         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
12710         all the citation/databases/styles in the auxilary file.
12711         (run): Rerun latex if there was a babel language error.
12712
12713 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
12714
12715         * text.C (Backspace): Preserve the font when changing newline char
12716         with a space.
12717         (BreakParagraph): If the cursor is before a space, delete the space.
12718
12719         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
12720
12721 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
12722
12723         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
12724         new argument (code).
12725         (ChangeCitationsIfUnique): New method.
12726
12727         * paragraph.C (GetPositionOfInset): Handle bibkey.
12728
12729 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12730
12731         * BufferView_pimpl.h: change type of Position::par_pos to
12732         LyXParagraph::size_type.
12733
12734 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
12735
12736         * BufferView_pimpl.C (savePosition, restorePosition): Write
12737         messages to minibuffer.
12738
12739 2001-01-28  José Matos  <jamatos@fep.up.pt>
12740
12741         * buffer.C (makeDocBookFile): adds support for document language.
12742         A silly restriction on the name of LatexCommand types where removed.
12743         Added support for CDATA sections, allows to chars unescaped, used
12744         among others in code, to avoid escape < and >.
12745
12746 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
12747
12748         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
12749         saved positions instrad of a stack. Furthermore, a position is
12750         stored using paragraph id/paragraph position.
12751
12752         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
12753         Remove LFUN_REF_BACK.
12754
12755 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
12756
12757         * converter.C (dvipdfm_options): New method.
12758
12759 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
12760
12761         * vspace.C (isValidLength): Fix for empty input string.
12762
12763 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12764
12765         * LyXAction.C (init): change description of LFUN_FIGURE to
12766         "Insert Graphics"
12767
12768 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12769
12770         * LaTeX.C: add using directive
12771
12772 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
12773
12774         * MenuBackend.C (expand): Fix the sorting of the formats.
12775
12776 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
12777
12778         * lyx_main.C: tiny error message fix
12779
12780 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12781
12782         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
12783         calling fl_initialize(). This fixes the problem with ',' as
12784         decimal separator in text files.
12785
12786 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
12787
12788         * trans.C (process): Fix the keymap bug.
12789
12790 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
12791
12792         * LaTeX.C (scanAuxFiles): New method. Provides support for
12793         multiple bibliographies (when using the bibtopic/bibunits pacakges).
12794         (scanLogFile) Scan for "run BibTeX" messages.
12795
12796         * buffer.C (makeLaTeXFile): Do not load the ae package when using
12797         OT1 font encoding. Also, load the aecompl package if the ae
12798         package is loaded.
12799
12800         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
12801
12802 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12803
12804         * texrow.C (increasePos): turn two error messages into debug
12805         messages.
12806
12807 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
12808
12809         * LaTeX.C (scanAux): Handle the \@input macro.
12810         (runBibTeX): Use scanAux().
12811
12812         * language.C (latex_options_): New field.
12813
12814         * LaTeXFeatures.C (getMacros): Add language macros.
12815
12816         * buffer.C (makeLaTeXFile): Small fix.
12817
12818 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12819
12820         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
12821
12822         * text2.C: add a using directive.
12823
12824 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
12825
12826         * BufferView2.C:
12827         * lyx_gui_misc.h:
12828         * lyxfr1.C:
12829         * lyxfunc.C: kill LyXBell.
12830
12831 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
12832
12833         * text.C (IsBoundary): Remove the error message
12834
12835         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
12836
12837         * lyxrc.C (setDefaults): Correct initialization value for
12838         font_norm_type.
12839
12840 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
12841
12842         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
12843         gotoError().
12844
12845         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
12846         and GotoNextNote().
12847
12848         * src/LyXAction.C: Added reference-next.
12849
12850         * text.C (InsertChar): Use contains instead of strchr.
12851
12852         * lyx_cb.C (MenuInsertLabel): Enable default value code.
12853
12854 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
12855
12856         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
12857         alignment commands (when needed).
12858
12859         * text.C (InsertChar): Add ':' to number separator chars.