]> git.lyx.org Git - lyx.git/blob - src/ChangeLog
Don't build a dialog prior to hiding it...
[lyx.git] / src / ChangeLog
1
2 2003-09-16  Martin Vermeer  <martin.vermeer@hut.fi>
3
4         * BufferView.C: remove more locking stuff that apparently doesn't
5         do anything sensible.
6
7 2003-09-16  André Pönitz  <poenitz@gmx.net>
8
9         * paragraph.[Ch]:
10         * paragraph_pimpl.[Ch]: un-pimpl Paragraph::(Pimpl::)text for a >10%
11           performance boost.
12
13 2003-09-16  Angus Leeming  <leeming@lyx.org>
14
15         * lyxfont.h (LyXFont_size): a wrapper class for LyXFont::FONT_SIZE.
16
17         * paragraph.[Ch] (highestFontInRange): use LyXFont_size as function
18         arg/return type.
19
20         * paragraph.h: remove #include "lyxfont.h". Forward declare LyXFont_size.
21
22 2003-09-16  Angus Leeming  <leeming@lyx.org>
23
24         * paragraph.C (IsInsetChar): new function in namespace anon, moved out of
25         support/textutils.h.
26         (isWord): move the contents of support/textutils.h's IsWordChar here.
27
28         * buffer.C:
29         * lyxfind.C:
30         * rowpainter.C:
31         * text.C:
32         * text2.C: add #include "paragraph.h".
33
34         * rowpainter.C:
35         * text.C: replace IsInsetChar(c) with a direct test of Paragraph::META_INSET.
36
37 2003-09-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
38
39         * main.C: 
40         * lyx_main.C: 
41         * lyx_cb.C: 
42         * buffer.C: 
43         * LaTeX.C: use namespace alias for lyx::support::os
44
45 2003-09-16  Angus Leeming  <leeming@lyx.org>
46
47         * bufferparams.C:
48         * bufferview_funcs.C:
49         * factory.C:
50         * lyxfunc.C:
51         * paragraph_pimpl.C:
52         * rowpainter.C:
53         * text.C: add #include "LColor.h".
54
55 2003-09-16  Angus Leeming  <leeming@lyx.org>
56
57         * lyxfont.[Ch]: (setFamily, setSeries, setShape, setSize, setEmph, setUnderbar,
58         setNoun, setNumber, setColor, setLanguage): no longer return LyXFont &.
59         Store the FontBits::color variable as an int rather than as an LColor::color
60         so that we can move LColor.h out of the lyxfont.h header file.
61
62         * rowpainter.C (paintAppendixStart, paintPageBreak, paintLengthMarker):
63         LyXFont::setColor, decSize no longer return a LyXFont &, so cannot string
64         calls together.
65
66         * lyxrc.C: add #include "LColor.h".
67
68 2003-09-15  Angus Leeming  <leeming@lyx.org>
69
70         * bufferparams.[Ch]: store the pimpl_ as a copied_ptr, rather than as a cow_ptr.
71
72 2003-09-15  Angus Leeming  <leeming@lyx.org>
73
74         * LColor.h: add an EnumLColor wrapper for LColor::color.
75
76         * lyxfont.[Ch] (color, setColor, realColor):
77         * lyxtext.h, text.C (backgroundColor):
78         pass EnumLColor args to/from the functions, rather than LColor::color ones.
79
80         * lyxfont.h:
81         * lyxtext.h: forward declare EnumLColor.
82
83         * lyx_main.C: add #include "LColor.h".
84
85 2003-09-15  Angus Leeming  <leeming@lyx.org>
86
87         * .cvsignore: add lyx-gtk.
88
89 2003-09-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
90
91         * Chktex.C
92         * LaTeX.C
93         * LaTeXFeatures.C
94         * ParagraphParameters.C
95         * Spacing.C
96         * buffer.C
97         * bufferparams.C
98         * bufferview_funcs.C
99         * chset.C
100         * counters.C
101         * funcrequest.C
102         * lyxfont.C
103         * lyxgluelength.C
104         * lyxlength.C
105         * paragraph.C
106         * paragraph_funcs.C
107         * text3.C
108         * vc-backend.C: remove usage of STRCONV
109
110 2003-09-15  Angus Leeming  <leeming@lyx.org>
111
112         * rowpainter.C (paintLengthMarker, paintPageBreak, paintAppendixStart):
113         explicitly define the color passed to the painter.
114
115 2003-09-15  Angus Leeming  <leeming@lyx.org>
116
117         * bufferparams.C (BufferParams): reorder member initializers to avoid
118         compiler warning.
119
120 2003-09-15  Alfredo Braunstein  <abraunst@libero.it>
121
122         * CutAndPaste.C (pasteSelection): remove an outdated #warning
123         * text.C (updateRowPositions): remove an unusual nop
124
125 2003-09-12  André Pönitz  <poenitz@gmx.net>
126
127         * BufferView_pimpl.C:
128         * Bullet.C:
129         * layout.h:
130         * lyxfunc.C:
131         * lyxlayout.[Ch]:
132         * lyxtextclass.C:
133         * rowpainter.C:
134         * text.C:
135         * text2.C:
136         * Counters.[Ch]: finish the 'automatic counters' job
137
138 2003-09-12  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
139
140         * aspell.C: include <boost/assert.cpp> (compile fix)
141
142 2003-09-10  Rob Lahaye  <lahaye@snu.ac.kr>
143
144         * boost.C (assertion_failed): use lyx::support::abort instead of
145         assert.
146
147 2003-09-10  Angus Leeming  <leeming@lyx.org>
148
149         * Makefile.am (lyx_SOURCES): replace ParagraphList.h and RowList.h with their
150         _fwd progeny.
151
152 2003-09-09  Angus Leeming  <leeming@lyx.org>
153
154         134 files throughtout the source tree: replace 'using namespace abc;'
155         directives with the appropriate 'using abc::xyz;' declarations.
156
157 2003-09-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
158
159         * boost.C (emergencyCleanup): moved here from LAssert.c
160         (assertion_failed): new function, called by BOOST_ASSERT
161
162         * several files: change Assert to BOOST_ASSERT
163
164 2003-09-09  Angus Leeming  <leeming@lyx.org>
165
166         * buffer.[Ch]: Add an Impl class and move Buffer's member
167         variables into it. As a result move several header files out of
168         buffer.h.
169
170         Add header files to lots of .C files all over the tree as a result.
171
172 2003-09-09  Angus Leeming  <leeming@lyx.org>
173
174         * buffer.[Ch]: make Buffer's member variables private. Add
175         accessor functions.
176
177         Lots of changes all over the tree as a result.
178
179 2003-09-08  Angus Leeming  <leeming@lyx.org>
180
181         * graph.C: #include <config.h>.
182
183 2003-09-08  Angus Leeming  <leeming@lyx.org>
184
185         * BranchList.C:
186         * BufferView.C:
187         * BufferView_pimpl.C:
188         * CutAndPaste.C:
189         * DepTable.C:
190         * LaTeX.C:
191         * LaTeXFeatures.C:
192         * LyXAction.C:
193         * MenuBackend.C:
194         * TextCache.C:
195         * aspell.C:
196         * buffer.C:
197         * bufferlist.C:
198         * changes.C:
199         * chset.C:
200         * converter.C:
201         * counters.C:
202         * debug.C:
203         * graph.C:
204         * ispell.C:
205         * lyx_cb.C:
206         * lyxfind.C:
207         * lyxfunc.C:
208         * lyxlex_pimpl.C:
209         * lyxrc.C:
210         * lyxrow.C:
211         * paragraph.C:
212         * rowpainter.C:
213         * texrow.C:
214         * text.C:
215         * text2.C:
216         * toc.C: remove redundant using directives.
217
218 2003-09-07  Angus Leeming  <leeming@lyx.org>
219
220         * LaTeXFeatures.h: remove #include "support/types.h".
221         * ToolbarBackend.h: remove #include <algorithm>.
222         * changes.h: remove #include <ctime>.
223         * debug.h: remove #include <iosfwd>.
224         * graph.h: remove #include "support/std_string.h".
225         * lyx_main.h: remove #include <csignal>.
226         * lyxlex_pimpl.h: remove #include <fstream>.
227         * sgml.h: remove #include <algorithm>, <utility>.
228         * toc.h: remove #include "support/std_ostream.h". Add #include <iosfwd>.
229
230 2003-09-07  Angus Leeming  <leeming@lyx.org>
231
232         * vspace.[Ch] (length): returns a const & to a LyXGlueLength.
233
234         * converter.h: forward declare LatexRunParams.
235         * encoding.h: remove #include "lyxrc.h".
236         * lyxtext.h: remove #include "LColor.h".
237         * lyxtextclass.h: remove #include "support/types.h".
238         * trans.h: remove #include "tex-accent.h".
239         * trans_mgr.h: remove #include "tex-accent.h".
240         * insets/inset.h: remove #include "support/types.h", <vector>.
241         * insets/insetcollapsable.h: remove #include "LColor.h".
242         * insets/insetinclude.h: remove #include "dimension.h".
243         * insets/insetlatexaccent.h: remove #include "dimension.h".
244         * insets/insetoptarg.h:: remove #include "insettext.h".
245         * insets/insettext.h: remove #include "dimension.h", <boost/shared_ptr.hpp>
246
247         * insets/renderers.h: add #include "dimension.h".
248         * insets/updatableinset.h: add #include "support/types.h".
249
250         * many .C files: Associated changes.
251
252 2003-09-06  Angus Leeming  <leeming@lyx.org>
253
254         * Bullet.[Ch]: factorize all those #ifdef ENABLE_ASSERTIONS to just one,
255         inside testInvariant.
256
257         * PrinterParams.C: new file.
258         * PrinterParams.[Ch]: move the function bodies out of line.
259
260 2003-09-06  Angus Leeming  <leeming@lyx.org>
261
262         * ParagraphParameters.h: forward declare ParameterStruct rather than
263         including its header file.
264         (depth): moved out-of-line.
265
266 2003-09-06  Angus Leeming  <leeming@lyx.org>
267
268         * BufferView_pimpl.h:
269         * kbmap.h:
270         * kbsequence.h:
271         * lyxfunc.h: forward declare LyXKeySym rather than
272         #include "frontends/LyXKeySym.h".
273
274         * BufferView_pimpl.C:
275         * kbmap.C:
276         * kbsequence.C:
277         * lyxfunc.C: associated changes.
278
279 2003-09-06  Angus Leeming  <leeming@lyx.org>
280
281         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
282         As a result, can remove the #include "insets/inset.h" from BufferView.h
283
284 2003-09-06  Angus Leeming  <leeming@lyx.org>
285
286         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
287         As a result, can remove the #include "insets/inset.h" from BufferView.h
288
289 2003-09-06  Angus Leeming  <leeming@lyx.org>
290
291         * buffer_funcs.C:
292         * buffer.h:
293         * bufferlist.C:
294         * BufferView.C:
295         * bufferview_funcs.C:
296         * BufferView_pimpl.C:
297         * CutAndPaste.C:
298         * lyx_cb.C:
299         * lyxfunc.C:
300         * paragraph.h:
301         * ParagraphParameters.C:
302         * tabular.C:
303         * text3.C:
304         * toc.C:
305         * undo_funcs.C:
306         * frontends/controllers/ControlDocument.C:
307         * insets/insetcaption.C: rearrange the #includes into some sort of
308         coherent order.
309
310         * buffer.h: remove #includes ErrorList.h, undo.h
311
312 2003-09-06  Angus Leeming  <leeming@lyx.org>
313
314         * support/types.h: add a 'depth_type' typedef, used to store the
315         nesting depth of a paragraph.
316
317         * paragraph.h:
318         * ParameterStruct.h: use this lyx::depth_type typedef rather than
319         defining explicitly.
320
321         * buffer.h:
322         * paragraph_funcs.h:
323         * ParagraphParameters.h:
324         * sgml.h: use lyx::depth_type rather than Paragraph or
325         ParameterStruct's depth_type.
326
327         * buffer.h
328         * paragraph_funcs.h: no need to #include paragraph.h anymore.
329
330         * BufferView.C:
331         * BufferView_pimpl.C:
332         * CutAndPaste.C:
333         * ParagraphParameters.C:
334         * buffer_funcs.C:
335         * bufferlist.C:
336         * bufferview_funcs.C:
337         * lyx_cb.C:
338         * lyxfunc.C:
339         * tabular.C:
340         * text3.C:
341         * toc.C:
342         * undo_funcs.C:
343         * frontends/LyXView.C:
344         * frontends/controllers/ControlDocument.C:
345         * frontends/controllers/ControlErrorList.C:
346         * insets/insetbibitem.C:
347         * insets/insetbranch.C:
348         * insets/insetcaption.C:
349         * insets/insetcollapsable.C:
350         * insets/insetenv.C:
351         * insets/insetert.C:
352         * insets/insetfloat.C:
353         * insets/insetfoot.C:
354         * insets/insetfootlike.C:
355         * insets/insetnewline.C:
356         * insets/insetquotes.C:
357         * insets/insettabular.C:
358         * insets/insettext.C:
359         * insets/insetwrap.C: must now explicitly #include "paragraph.h".
360
361         * frontends/controllers/ControlChanges.C: #include "changes.h".
362
363 2003-09-06  Angus Leeming  <leeming@lyx.org>
364
365         * ParagraphList_fwd.h: new file, forward-declaring Paragraph rather than
366         #including paragraph.h.
367
368         * ParagraphList.h:
369         * RowList.h: deleted. Superfluous.
370
371         * CutAndPaste.h:
372         * iterators.h:
373         * lyxcursor.h:
374         * lyxtext.h:
375         * text_funcs.h:
376         * undo.h:
377         * undo_funcs.h:
378         * insets/inset.h:
379         * insets/insettext.h: use ParagraphList_fwd.h rather than ParagraphList.h.
380
381         * paragraph.h: don't forward declare ParagraphList.
382
383         * buffer.h:
384         * paragraph_funcs.h: #include ParagraphList_fwd.h and paragraph.h
385         rather than ParagraphList.h. paragraph.h is still needed for the
386         Paragraph::depth_type parameters.
387
388         * textcursor.h: enable it to compile stand-alone in light of the
389         above changes.
390
391         * bufferview_funcs.C:
392         * iterators.C:
393         * lyxfunc.C:
394         * lyxrow_funcs.C:
395         * paragraph.C:
396         * rowpainter.C:
397         * text.C:
398         * text2.C:
399         * text3.C:
400         * text_funcs.C:
401         * textcursor.C:
402         * undo.C:
403         * frontends/controllers/ControlParagraph.C:
404         * frontends/controllers/ControlTabular.C:
405         * insets/insetmarginal.C:
406         * insets/insetminipage.C:
407         * insets/insetnote.C:
408         * insets/insetoptarg.C: add header files needed to compile again.
409
410 2003-09-06  Angus Leeming  <leeming@lyx.org>
411
412         * RowList_fwd.h: new file, forward-declaring Row rather than
413         #including lyxrow.h.
414
415         * lyxrow_funcs.h:
416         * lyxtext.h:
417         * paragraph.h:
418         * insets/insettext.h: use it instead of RowList.h
419
420         * bufferview_funcs.C:
421         * lyxfunc.C:
422         * lyxrow_funcs.C:
423         * paragraph.C:
424         * rowpainter.C:
425         * text.C:
426         * text2.C:
427         * text3.C: #include "RowList.h".
428
429 2003-09-05  Angus Leeming  <leeming@lyx.org>
430
431         * factory.C (createInset):
432         * vspace.C (c-tor): replace sscanf call with an istringstream.
433         * ispell.C: re-add missing HP/UX headers.
434         * lyxserver.C: re-add missing  os2 headers.
435
436 2003-09-05  Martin Vermeer  <martin.vermeer@hut.fi>
437
438         * BranchList.C:
439         * graph.C:
440         * ispell.C:
441         * lastfiles.C:
442         * lyx_cb.C:
443         * lyxserver.C:
444         * texrow.C:
445         * text3.C: re-add missing system headers, needed for 2.95.2.
446
447 2003-09-05  Angus Leeming  <leeming@lyx.org>
448
449         Changes most place everywhere due to the removal of using directives
450         from support/std_sstream.h.
451
452 2003-09-05  Angus Leeming  <leeming@lyx.org>
453
454         Replace LString.h with support/std_string.h,
455         Lsstream.h with support/std_sstream.h,
456         support/LIstream.h with support/std_istream.h,
457         support/LOstream.h with support/std_ostream.h.
458
459         Changes resulting throughout the tree.
460
461 2003-09-05  Angus Leeming  <leeming@lyx.org>
462
463         * sgml.h: ensure that the header file can be compiled stand-alone.
464         * *.C: strip out redundant #includes. (320 in total.)
465
466 2003-09-04  Angus Leeming  <leeming@lyx.org>
467
468         * LaTeXFeatures.C (getMacros): move the output of the preamble_snippets
469         here (from getPackages).
470
471         * debug.[Ch]: add a new EXTERNAL tag.
472
473 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
474
475         * text2.C (cursorEnd): simplify
476         (setCursor): adjust
477         (getColumnNearX): adjust
478
479         * text.C (computeBidiTables): adjust
480         (fill): adjust
481
482         * rowpainter.C (paintChars): adjust
483         (paintSelection): adjust
484         (paintChangeBar): adjust
485         (paintText): adjust
486
487         * lyxrow_funcs.C (lastPrintablePos): remove, all users now call
488         lastPos instead.
489         (numberOfSeparators): adjust
490
491 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
492
493         * LyXAction.C:
494         * box.[Ch]:
495         * lfuns.h:
496         * lyxfunc.C:
497         * text3.C: Restricts the mouse click functionality
498         of insets like bibtex, include, toc and floatlist to the visible
499         button, and allows the use of LFUN_INSET_SHOW_DIALOG to bring
500         up the dialogs. Cursor has to be in front of the inset (i.e.
501         start of row) for this to function.
502
503 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
504
505         * bufferview_funcs.C (currentState): output row information
506
507 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
508
509         * bufferview_funcs.C (currentState): output paragraph position
510
511 2003-09-04  Angus Leeming  <leeming@lyx.org>
512
513         * FloatList.h: move out #include "Floating.h".
514         * LaTeX.h: move out #include "DepTable.h".
515         * LyXAction.h: move out #include "funcrequest.h".
516         * buffer.h: move out #include "author.h", "iterators.h".
517         * bufferparams.h: move out #include "LaTeXFeatures.h", "texrow.h".
518         * lyx_main.h: move out #include "errorlist.h".
519         * lyxfunc.h: move out #include "FuncStatus.h".
520         * lyxtext: move out #include "lyxcursor.h".
521         * paragraph_pimpl.h: move out #include "counters.h".
522
523 2003-09-03  Angus Leeming  <leeming@lyx.org>
524
525         * LaTeXFeatures.[Ch]: replace the externalPreambles string with a
526         preamble_snippets list, enabling us to add snippets to the preamble only
527         if the snippet was not there already.
528
529 2003-09-04  Angus Leeming  <leeming@lyx.org>
530
531         * Chktex.C, converter.C, lyx_cb.C: add #include "support/lyxlib.h".
532
533 2003-09-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
534
535         * lyxfunc.C (dispatch): if fitCursor did something be sure to
536         update
537
538 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
539
540         * BranchList.C: point fix, earlier forgotten
541
542 2003-09-02  Angus Leeming  <leeming@lyx.org>
543
544         * box.C (contains): renamed from 'contained' after a fantastic
545         amount of hot air.
546
547 2003-09-02  John Levon  <levon@movementarian.org>
548
549         * BufferView.C:
550         * lyxcursor.h:
551         * lyxcursor.C:
552         * lyxfunc.C:
553         * lyxfunc.h: remove cursor.i[x]y(), it no longer differs
554
555 2003-09-02  John Levon  <levon@movementarian.org>
556
557         * text2.C: simplification of cursorEnd(), including partial
558         fix for bug 1376
559
560 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
561
562         * buffer.C (readFile): add a space
563
564 2003-09-02  Alfredo Braunstein  <abraunst@libero.it>
565
566         * BufferView_pimpl.C (update): remove bogus fitCursor() call
567
568 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
569
570         * buffer.C (readFile): new function, take a filename and a
571         ParagraphList::iterator
572         (readFile): adjust
573         (readFile): adjust, make it private. don't use setStream, make
574         lyx2lyx use a temporary file. Some simplificaton. Make the Alerts
575         always contain the filename.
576
577         * BufferView.C (insertLyXFile): simplify and make it work for
578         gzipped files.
579
580 2003-08-30  John Levon  <levon@movementarian.org>
581
582         * Makefile.am: fix dist (from Kayvan)
583
584 2003-08-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
585
586         * most files: change to use const Buffer refs
587
588 2003-08-27  André Pönitz  <poenitz@gmx.net>
589
590         * BufferView.[Ch]: remove getParentText, implement getParentLanguage
591         on top of ownerPar().
592
593 2003-08-27  John Levon  <levon@movementarian.org>
594
595         * funcrequest.C: properly initialise POD members
596
597 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
598
599         * lyxtext.h (top_y): move top_y from here
600         * text.C:
601         * text2.C:
602         * text3.C:
603         * BufferView.[Ch]:
604         * BufferView_pimpl.[Ch]: to here
605         * frontends/screen.C:
606         * insets/insettabular.C:
607         * insets/insettext.C: adjust
608         * rowpainter.[Ch] (paintRows): remove LyXText & argument
609
610 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
611
612         * BufferView.[Ch]:
613         * BufferView_pimpl.[Ch] (updateInset): add an InsetOld * argument
614
615 2003-08-26  André Pönitz  <poenitz@gmx.net>
616
617         * paragraph_func.[Ch] (outerPar): new function
618
619         * paragraph.C:
620         * paragraph_funcs.C:
621         * paragraph_funcs.h:
622         * paragraph_pimpl.C:
623         * text2.C: remove Inset::par_owner
624
625 2003-08-25  Martin Vermeer  <martin.vermeer@hut.fi>
626
627         * lyxrow_funcs.C:
628         * lyxtext.h:
629         * text.C:
630         * text2.C: eliminates the needFullRow/display() stuff
631         altogether, putting the logic in metrics/draw in the insets.
632
633 2003-08-25  Alfredo Braunstein  <abraunst@libero.it>
634
635         * text2.C (redoParagraphInternal, redoParagraphs):
636         * text.C (redoParagraph): add a call to updateRowPositions at the
637         end of each 'metrics-like' call. Remove all others.
638         (getRow): remove the 'y-computing' version.
639         (getRowNearY): do not compute nor return the real y. Solve the
640         'y < 0' problem and simplify.
641
642 2003-08-22  Angus Leeming  <leeming@lyx.org>
643
644         * *.[Ch]: clean-up of licence and author blurbs.
645         Also move config.h out of a few .h files and into a few .C files.
646
647 2003-08-22  André Pönitz  <poenitz@gmx.net>
648
649         * lyxrow.[Ch]: add x_ and *fill_ members
650
651         * lyxtext.h:
652         * text.C:
653         * rowpainter.C:
654         * text2.C: adjust/remove prepareToPrint() calls
655
656 2003-08-22  André Pönitz  <poenitz@gmx.net>
657
658         * lyxrow.[Ch]: add  end_ member
659
660         * lyxrow_funcs.C: use LyXRow::end_
661
662         * lyxtext.h (singleWidth): add LyXFont parameter
663
664         * rowpainter.C:
665         * text2.C: adjust LyXText::singleWidth() calls
666
667         * text.C (redoParagraph): simplify row breaking logic
668
669
670 2003-08-19  André Pönitz  <poenitz@gmx.net>
671
672         * funcrequest.C: initialize button_ member
673
674         * text3.C:
675         * rowpainter.[Ch]: interface consolidation
676
677 2003-08-18  André Pönitz  <poenitz@gmx.net>
678
679         * BufferView.C:
680         * BufferView_pimpl.C:
681         * lyxfind.C:
682         * paragraph_funcs.C:
683         * rowpainter.C:
684         * text3.C: remove LyXScreen::draw() and fitCursor calls
685
686         * BranchList.h: remove spurious semicolons
687
688         * MenuBackend.C: fix branchlist related crash
689
690 2003-08-17  Martin Vermeer  <martin.vermeer@hut.fi>
691
692         * BranchList.[Ch]:
693         * InsetList.[Ch]:
694         * LColor.[Ch]:
695         * LyXAction.C:
696         * Makefile.am:
697         * MenuBackend.[Ch]:
698         * bufferparams.[Ch]:
699         * factory.C:
700         * lfuns.h:
701         * lyxfunc.C:
702         * text3.C: implements the 'branch inset'
703         idea. This allows the output of various versions of a document
704         from a single source version, selectively outputing or suppressing
705         output of parts of the text.
706         This implementation contains a 'branch list editor' in a separate
707         tab of the document settings dialog. Branches are user definable
708         and have a "display colour" to distinguish them on-screen.
709
710         ColorHandler was somewhat cleaned up.
711         (1) make possible a dynamically growing LColor list by allowing
712         the graphic context cache to grow along (vector);
713         (2) eliminate an IMHO unnecessary step in colour allocation.
714
715 2003-08-15  Kayvan A. Sylvan <kayvan@sylvan.com>
716
717         * BufferView_pimpl.C: compile fix
718
719 2003-08-15  André Pönitz  <poenitz@gmx.net>
720
721         * rowpainter.C: remove extra metrics calls
722
723         * lyxtext.h: merge the two constructors into a single one,
724           pass reference to owner's par list
725
726         * BufferView_pimpl.C:
727         * text.C:
728         * text2.C: adjust
729
730 2003-08-15  André Pönitz  <poenitz@gmx.net>
731
732         * lyxrow_funcs.[Ch]:
733         * lyxtext.h:
734         * paragraph.h:
735         * paragraph_funcs.C:
736         * rowpainter.C:
737         * text.C:
738         * text2.C:
739         * text3.C:
740         * text_funcs.C: split LyXText::rowlist_ into individual
741         Paragraph::rows_ chunks
742
743         * BufferView.[Ch]:
744         * BufferView_pimpl.[Ch]:
745         * lyxfind.C:
746         * lyxtext.h:
747         * text3.C: remove toggleSelection()
748
749 2003-08-12  Michael Schmitt  <michael.schmitt@teststep.org>
750
751         * bufferlist.C: beautify two alerts (shorter text of buttons)
752         * buffer.C: Remove redundant ' ' from message
753         * tabular.h:
754         * tabular.C: rename LYX_VALIGN_CENTER" to LYX_VALIGN_MIDDLE";
755         rename M_VALIGN_CENTER to M_VALIGN_MIDDLE;
756         rename VALIGN_CENTER to VALIGN_MIDDLE
757
758 2003-08-11  André Pönitz  <poenitz@gmx.net>
759
760         * lyxtext.h (getPar):
761         * text.C: new function
762
763 2003-08-11  André Pönitz  <poenitz@gmx.net>
764
765         * Makefile.am:
766         * tracer.[Ch]: remove unneeded files
767
768         * InsetList.[Ch]: remove resizeInsetsLyXText()
769
770         * lyxtext.h:
771         * text.C:
772         * text2.C:
773         * text3.C: merge insertParagraphs() and appendParagraph()
774         remove breakAgain(), update()
775
776         * BufferView_pimpl.[Ch]:
777         * bufferview_funcs.[Ch]:
778         * lyxfunc.C:
779         * paragraph.[Ch]:
780         * rowpainter.C:
781         * tabular.C: adjust after text & InsetList changes.
782
783 2003-08-08  André Pönitz  <poenitz@gmx.net>
784
785         * text.C (insertChar, backspace): replace rowlist fiddling
786         with rebreak of full par
787
788         * lyxtext.h:
789         * text.C (breakAgainOneRow, redoHeightOfParagraph,
790         checkParagraph, updateInset): removed
791
792 2003-08-07  André Pönitz  <poenitz@gmx.net>
793
794         * paragraph.C:
795         * text3.C: merge some LFUN handlers, remove dead code
796
797 2003-08-06  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
798
799         * .cvsignore: add lyx-xforms, lyx-qt, version.C-tmp and stamp-version
800
801 2003-08-05  Alfredo Braunstein  <abraunst@libero.it>
802
803         * text2.C (DEPM): fix part of bug 1255 and 1256
804
805 2003-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
806
807         * BufferView_pimpl.C (workAreaDispatch): change to use
808         LyXView::dispatch instead of BufferView::Pimpl::dispatch for lfuns
809         that are no mouse related.
810
811 2003-08-05  André Pönitz  <poenitz@gmx.net>
812
813         * BufferView.[Ch]:
814         * BufferView_pimpl.[Ch]:
815         * bufferview_funcs.C:
816         * text2.C:
817         * text3.C: rip out "deep update"
818
819         * textcursor.[Ch] (last_sel_cursor): remove unused member
820
821 2003-08-04  André Pönitz  <poenitz@gmx.net>
822
823         * BufferView.[Ch]:
824         * BufferView_pimpl.[Ch]:
825         * ParagraphParameters.C:
826         * bufferview_funcs.C:
827         * lyx_cb.C:
828         * lyxfind.C:
829         * lyxfunc.C:
830         * text.C:
831         * text2.C:
832         * text3.C: replace "complicated" BufferView::update(...) calls with
833         simpler ones.
834
835         * BufferView.[Ch]: remove now unneeded BufferView::UpdateCodes
836
837 2003-08-02  Kayvan Sylvan  <kayvan@sylvan.com>
838
839         * Makefile.am (lyx_SOURCES): add paper.h
840
841 2003-08-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
842
843         * Makefile.am: move things around so that both lyx-qt and
844         lyx-xforms can be built (according to --with-frontend). Then lyx
845         is a symbolic link to lyx-[firstfrontend]
846
847 2003-08-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
848
849         * Always use std::endl with lyxerr
850
851 2003-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
852
853         * BufferView_pimpl.C: _Always_ use std::endl with lyxerr
854
855 2003-08-01  André Pönitz  <poenitz@gmx.net>
856
857         * BufferView.[Ch]:
858         * BufferView_pimpl.[Ch]:
859         * lyxfunc.C:
860         * text3.C: merge BufferView::repaint() and BufferView::update()
861
862 2003-08-01  José Matos  <jamatos@lyx.org>
863
864         * buffer.[Ch]: file_format is no longer a buffer data element.
865
866 2003-08-01  André Pönitz  <poenitz@gmx.net>
867
868         * BufferView.C:
869         * lyxtext.h:
870         * text.C:
871         * text2.C: make redoParagraph more independent of current cursor
872
873         * lyxtext.h (need_update, needUpdate, postPaint, clearPaint):
874         * text.C:
875         * text2.C: remove unneeded members
876
877 2003-07-30  André Pönitz  <poenitz@gmx.net>
878
879         * paragraph.[Ch] (copyIntoMinibuffer): removed unused function
880
881         * paragraph.[Ch] (cutIntoMinibuffer, insertFromMinibuffer):
882           create a single function...
883
884         * paragraph_funcs.C (moveItem): ... here.
885
886         * text.C:
887           lyxtext.h (LyXText::workWidth(InsetOld*)) remove. unused.
888
889 2003-07-30  Martin Vermeer  <martin.vermeer@hut.fi>
890
891         * LColor.[Ch]: Add comment and greyedout logical colors.
892
893 2003-07-30  André Pönitz  <poenitz@gmx.net>
894
895         * tabular.C: don't use Assert too heavily. This crashes where it
896           shouldn't
897
898 2003-07-30  Alfredo Braunstein  <abraunst@libero.it>
899
900         * lyxfunc.C (dispatch): do not mark the buffer dirty if the action
901         is disabled (bug 1232)
902
903 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
904
905         * factory.C: limited 'arg' scope
906
907 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
908
909         * factory.C: fixed Note submenu issues
910
911 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
912
913         * factory.C: submenu for Note/Comment/Greyedout
914
915 2003-07-29  Alfredo Braunstein  <abraunst@libero.it>
916
917         * lyx_main.C (LyX):
918         * BufferView_pimpl.C (loadLyXFile): fix to bugs 1287 and 1297 + ws
919
920 2003-07-29  Martin Vermeer  <martin.vermeer@hut.fi>
921
922         * LaTeXFeatures.C:
923         * lyx_sty.[Ch]:h: Implement a newenvironment in preamble for
924         greyedout. Patch provided by Jürgen Spitzmüller.
925
926 2003-07-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
927
928         * kbmap.C (read): fix error message when reading bind files
929
930 2003-07-29  Angus Leeming  <leeming@lyx.org>
931
932         * BufferView.[Ch] (ChangeCitationsIfUnique): This function most
933         certainly does not do what it purports to do. I am doing it, and
934         us, a favour by killing it.
935
936 2003-07-28  José Matos  <jamatos@lyx.org>
937
938         * buffer.C (readBody, do_writeFile):
939         * paragraph.C(readParagraph): \end_document replaces \the_end.
940
941 2003-07-29  André Pönitz  <poenitz@gmx.net>
942
943         * BufferView.[Ch]:
944         * BufferView_pimpl.[Ch]:
945         * lyxfunc.C:
946         * text2.C:
947         * text3.C:
948         * textcursor.[Ch]: remove toggleToggle & Co
949
950 2003-07-28  José Matos  <jamatos@fep.up.pt>
951
952         * buffer.C (readParagraph):
953         * params_func (readParToken, readParagraph):
954         * paragraph.C (write): \layout -> \begin_layout.
955
956 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
957
958         * lyxlex_pimpl.C (setFile): clean up slightly.
959
960         * bufferparams.h: add compressed var
961
962         * buffer_funcs.C (readFile): adjust for LyXLex change
963         (newFile): ditto + simplify
964
965         * buffer.C (writeFile): handle writing of compressed files
966
967         * buffer.[Ch] (readFile): begin LyXLex here, remove one argument.
968         Check if the file is compressed and set a bufferparm if so.
969
970         * Makefile.am (lyx_LDADD): remove explicit -lz
971
972 2003-07-28  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
973
974         * buffer.C (do_writeFile, makeLaTeXFile, makeLinuxDocFile,
975         makeDocBookFile): put the real LyX version in the first line of
976         the file
977
978         * version.h:
979         * version.C.in: remove lyx_docversion
980
981         * tabular.C (write_attribute): add a template-based version to
982         write enums properly
983
984 2003-07-28  André Pönitz  <poenitz@gmx.net>
985
986         * lyxtext.h:
987         * text.C:
988         * text2.C:
989         * text3.C: use doubles again for x-coordinates. They are needed.
990
991 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
992
993         * messages.C (getLocaleDir): use lyx_localedir()
994
995         * lyxlex_pimpl.C (setFile): compress stuff
996
997         * buffer.C (writeFile): add some compression stuff
998         (do_writeFile): new func, dont call expliti close... will this
999         breake anything?
1000
1001         * Makefile.am (lyx_LDADD): add -lz
1002
1003 2003-07-28  José Matos  <jamatos@fep.up.pt>
1004
1005         * buffer.C: increment file format.
1006         * paragraph_funcs (readParagraph, readParToken):
1007         * paragraph.C (readParagraph): add \end_layout.
1008
1009 2003-07-27  Angus Leeming  <leeming@lyx.org>
1010
1011         * Makefile.am: remove special casing for configure-time setting of
1012         LYX_DIR, TOP_SRCDIR and LOCALEDIR.
1013
1014         * lyx_main.C (init): remove all Jean-Marc's magic setting of
1015         system_lyxdir, build_lyxdir and user_lyxdir into the support lib.
1016
1017 2003-07-26  André Pönitz  <poenitz@gmx.net>
1018
1019         * paragraph_func.[Ch]:
1020         * paragraph.C (realizeFont): inline it whereever it is used
1021
1022         * rowpainter.C:
1023         * text.C:
1024         * text2.C:
1025         * text3.C: remove Buffer * parameter from a bunch of get*Font functions
1026
1027
1028 2003-07-26  André Pönitz  <poenitz@gmx.net>
1029
1030         *       lyxtext.h:
1031         * text.C:
1032         * text2.C: get rid of LyXText::need_break_row
1033
1034 2003-07-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
1035
1036         * toc.[Ch]: put namespace toc inside namespace lyx
1037
1038         * MenuBackend.C (expandToc2): adjust for lyx::toc
1039         (expandToc): ditto
1040
1041         * lyxfunc.C (dispatch): adjust for lyx::find
1042
1043         * lyxfind.[hC]: get rid of namespace lyxfind introduce namespace
1044         lyx::find instead. Reorganize a bit.
1045         (LyXReplace): rename to replace
1046         (LyXFind): rename to find
1047
1048         * BufferView_pimpl.C (trackChanges): adjust for lyx::find
1049         (dispatch): ditto
1050
1051 2003-07-26  André Pönitz  <poenitz@gmx.net>
1052
1053         * text.C (setHeightOfRow): restrict scope of temporary variable
1054
1055         * paragraph_funcs.C (readParToken): remove USE_CAPTION  compatibility
1056           code (never has been used?)
1057
1058 2003-07-27  Asger Alstrup  <alstrup@local>
1059
1060         * text.C (fill): Optimise algorithm to exploit that we can reuse
1061         the LyXFont for many characters.
1062         (setHeightOfRow): Same thing.
1063         (rowBreakPoint): Same thing.
1064
1065 2003-07-26  Asger Alstrup  <alstrup@local>
1066
1067         * text2.C (metrics): change a brain-dead algorithm to a smarter one.
1068
1069         * text.C (singleWidth): Spurious font copying in hot-spot
1070         singleWidth avoided. Reorder tests for arabic for efficiency.
1071
1072         * text.C (fill): handle empty paragraphs better.
1073
1074 2003-07-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1075
1076         * ispell.C:
1077         * encoding.h: add includes
1078
1079         * lyxrc.C: remove reading of bind files
1080
1081         * lyx_main.C (init): setup bindings and menus only if we have a
1082         gui.
1083
1084         * kbmap.C (read): new method. Do the actual reading of bind
1085         files.
1086
1087         * converter.C (dvipdfm_options):
1088         * bufferparams.C:
1089         * lyxrc.C (read):
1090         (output): adapt PAPER_* enums.
1091
1092         * lyxrc.h: include paper.h instead of bufferparams.h (mucho lighter)
1093
1094         * bufferparams.h: remove paper-related enums from there
1095
1096         * paper.h: New file. A trivial header file to hold paper-related
1097         enums. It should later expand to contain many paper-related
1098         horrors access.
1099
1100         * lyxrc.C: declare extern displayTranslator
1101
1102 2003-07-27  José Matos  <jamatos@fep.up.pt>
1103
1104         * tabular.[Ch] (linuxdoc): add support for tables and figures
1105         (linuxdoc).
1106
1107 2003-07-27  José Matos  <jamatos@fep.up.pt>
1108
1109         * buffer.[Ch] (makeLaTeXFile): changed name of arguments for
1110         consistency in both functions.
1111         * bufferlist.C (updateIncludedTeXfiles): change client to comply.
1112
1113 2003-07-26  Asger Alstrup  <alstrup@local>
1114
1115         * rowpainter.C (paintRows): Change algorithm to work directly on
1116         the insets rather than asking every character in the document
1117         whether its an inset.
1118
1119 2003-07.26  Alfredo Braunstein  <abraunst@libero.it>
1120
1121         * buffer.C (openFileWrite): factorize some code
1122
1123 2003-07-26  Angus Leeming  <leeming@lyx.org>
1124
1125         * lyx_cb.C:
1126         * lyx_main.[Ch]: replace occurances of system_tempdir with
1127         os::getTmpDir().
1128
1129 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
1130
1131         * rename Inset to InsetOld
1132
1133 2003-07-25  Asger Alstrup  <alstrup@diku.dk>
1134
1135         * undo_funcs.h: Removed setCursorParUndo to simplify things a bit.
1136         Renamed setUndo family to recordUndo. Renamed FINISH to ATOMIC
1137         which I think is a bit clearer. EDIT is gone, since it was
1138         premature optimisation, and broken for mathed anyway.
1139         * undo_funcs.C (performUndoOrRedo): Cleaned up and made it work
1140         with cursor positioning in insets as well (math insets still do not
1141         work, but that's a different story anyway.) It mysteriously
1142         crashes sometimes with undo in the first paragraph, but I'm fairly
1143         confident that this is a compiler bug.
1144
1145 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
1146
1147         * paragraph.C (Paragraph): adjust for new clone return type
1148         (operator==): ditto
1149         (copyIntoMinibuffer): ditto
1150
1151 2003-07-25  Asger Alstrup  <alstrup@lyx.org>
1152
1153         * undo_funcs.C (textHandleUndo): Fix undo crash in first paragraph
1154         by not having a special case, and always doing a full rebreak of
1155         the document after undo.
1156
1157 2003-07-23  Angus Leeming  <leeming@lyx.org>
1158
1159         * factory.C (createInset): InsetExternal::setParams now takes a
1160         Buffer const * arg.
1161
1162 2003-07-23  Angus Leeming  <leeming@lyx.org>
1163
1164         * factory.C (createInset): changed interface to the external and
1165         graphics mailers' string2params functions.
1166
1167 2003-07-23  Angus Leeming  <leeming@lyx.org>
1168
1169         * factory.C (createInset): pass a
1170         Buffer const * parameter to InsetExternalMailer's string2params.
1171
1172 2003-07-22  John Levon  <levon@movementarian.org>
1173
1174         * Thesaurus.h: include the right aiksaurus header
1175
1176 2003-07-21  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1177
1178         * MenuBackend.C (expand): check menu shortcuts unconditionally
1179
1180 2003-07-21  Angus Leeming  <leeming@lyx.org>
1181
1182         * factory.C (createInset): pass a
1183         buffer_path parameter to InsetGraphicsMailer's string2params.
1184
1185 2003-07-21  Angus Leeming  <leeming@lyx.org>
1186
1187         * BufferView_pimpl.C (buffer):
1188         * buffer.C (d-tor):
1189         * lyx_main.C (LyX):
1190         * lyxfunc.C (dispatch):
1191         * lyxrc.C (setDefaults, read, output): use namespace lyx::graphics
1192         rather than the grfx shortcut.
1193
1194 2003-07-21  André Pönitz  <poenitz@gmx.net>
1195
1196         * rowpainter.C: remove unused variables
1197
1198         * tabular_funcs.C:
1199         * tabular_funcs.h: move to tabular.C
1200         * Makefile.am: adjust
1201
1202         * tabular.[Ch]: basic optical cleaning
1203
1204         * author.h: pass references, not values
1205
1206 2003-07-18  André Pönitz  <poenitz@gmx.net>
1207
1208         * lyxtext.h:
1209         * metricsinfo.C:
1210         * metricsinfo.h:
1211         * rowpainter.C:
1212         * text.C:
1213         * text2.C:
1214         * text3.C: two-phase drawing for InsetText and InsetTabular
1215         some float -> int changes.
1216
1217 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
1218
1219         * lyx_main.C: fix the fix
1220
1221 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
1222
1223         * lyx_main.C: fix a crash in batch mode if no files specified
1224         * converter.C: ws
1225
1226 2003-07-17  Alfredo Braunstein  <abraunst@libero.it>
1227
1228         * format.[Ch] (papersize): moved to BufferParams
1229         * converter.[Ch] (dvips_options): moved to BufferParams
1230         (dvipdfm_options): moved to anon namespace
1231         * bufferparams.[Ch]: added above functions.
1232
1233 2003-07-17  André Pönitz  <poenitz@gmx.net>
1234
1235         * lyxtext.h:
1236         * rowpainter.C:
1237         * text2.C: don't call inset->update() anymore
1238
1239         * metricsinfo.[Ch]: add convenience constructor
1240
1241 2003-07-16  André Pönitz  <poenitz@gmx.net>
1242
1243         * lyxcursor.[Ch]:
1244         * lyxfunc.[Ch]:
1245         * text.C:
1246         * text2.C: replace the LyXCursor::irow_ member with
1247          on-demand computation of the value
1248
1249 2003-07-16  John Levon  <levon@movementarian.org>
1250
1251         * lyxfunc.C: support LFUN_INSET_SETTINGS for Note
1252
1253 2003-07-15  André Pönitz  <poenitz@gmx.net>
1254
1255         * text.C:
1256         * text2.C: remove no more needed refresh_row
1257
1258 2003-07-15  André Pönitz  <poenitz@gmx.net>
1259
1260         * lyxtext.h:
1261         * rowpainter.C:
1262         * text2.C:
1263         * text3.C: refresh_status tristate -> need_update bool
1264
1265 2003-07-15  Alfredo Braunstein  <abraunst@libero.it>
1266
1267         * lyxtext.h (init): remove reinit argument (act as if always true)
1268         * text2.C: adjust to that
1269
1270 2003-07-14  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1271
1272         * bufferview_funcs.[Ch]: introduce function replaceSelection()
1273         * text3.C: use it to delete selections in some cases
1274         (bugs 441, 673, 702, 954).
1275
1276 2003-07-14  André Pönitz  <poenitz@gmx.net>
1277
1278         * rowpainter.[Ch]: reduce interface
1279
1280 2003-07-14  André Pönitz  <poenitz@gmx.net>
1281
1282         * BufferView_pimpl.C:
1283         * text2.C: adjust after removing unused BufferView * argument
1284
1285 2003-07-14  Alfredo Braunstein  <abraunst@libero.it>
1286
1287         * text2.C (init): fix a crash fired on resize
1288
1289 2003-07-11  Alfredo Braunstein  <abraunst@libero.it>
1290
1291         * buffer.[Ch]: added new closing signal
1292         * BufferView_pimpl.[Ch]: connect/disconnect to new signal
1293         * lyxfunc.C: removed BufferView::buffer(0) call now handled in
1294         BufferView::Pimpl via the closing the signal
1295
1296 2003-07-10  Alfredo Braunstein  <abraunst@libero.it>
1297
1298         * buffer.[Ch]: take out all bv-related from buffer
1299         * BufferView.C:
1300         * BufferView_pimpl.[Ch]: connect to new signals
1301         * CutAndPaste.C: removed useless asserts
1302         * bufferview_funcs.[Ch] (resizeInsets): moved from buffer
1303         * lyxvc.[Ch]:
1304         * vc-backend.[Ch]:
1305         * lyxfunc.C: moved view-related funciontality from vc here
1306         * paragraph.C: removed outdated comments
1307         * text.C: ws
1308
1309 2003-07-10  André Pönitz  <poenitz@gmx.net>
1310
1311         * BufferView_pimpl.C:
1312         * tabular.h:
1313         * tabular_funcs.C:
1314         * text.C:
1315         * text2.C: remove InsetText::InnerCache, clean up consequences
1316
1317 2003-07-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
1318
1319         * ispell.C: fix two typos in error messages
1320
1321 2003-07-08  Martin Vermeer  <martin.vermeer@hut.fi>
1322
1323         * Extend Note inset to other forms of annotation like Comment
1324         and Greyedout. Right button click gives dialog.
1325
1326         Files modified or added (+):
1327
1328         * insetnote.[Ch]
1329         * FormNote.[Ch]      +
1330         * ControlNote.[Ch]   +
1331         * form_note.fd       +
1332         * Makefile.am in frontends/xforms, frontends/xforms/forms,
1333         frontends/controllers
1334         * xforms/Dialogs.C
1335         * factory.C
1336
1337 2003-07-01  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1338
1339         * aspell.C: add missing namespace lyx::support
1340
1341 2003-07-07  Alfredo Braunstein  <abraunst@libero.it>
1342
1343         * BufferView.[Ch] (newFile): Add
1344         * BufferView_pimpl.[Ch] (newFile, connectBuffer, disconnectBuffer): Add
1345         * LaTeX.[Ch] (message): added this signal and use it
1346         * buffer.[Ch] (busy, message): added these signals and use them
1347         * buffer_funcs.[Ch]: rename parseErrors to bufferErrors
1348         * converter.C:
1349         * exporter.C:
1350         * format.C:
1351         * importer.C: use buffer signals instead of direct bv calling
1352         * lyx_cb.[Ch] (ShowMessage): removed
1353         * lyx_main.C:
1354         * lyxfunc.C:
1355         * paragraph_funcs.C:
1356         * text2.C: use buffer signals
1357
1358 2003-07-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
1359
1360         * introduce namespace lyx::graphics
1361
1362 2003-07-02  André Pönitz  <poenitz@gmx.net>
1363
1364         * BufferView_pimpl.C (workAreaDispatch): tell the FuncRequest who we are
1365
1366 2003-07-01  André Pönitz  <poenitz@gmx.net>
1367
1368         * text.C:
1369         * text2.C:
1370         * text3.C:
1371         * text_funcs.[Ch]:
1372         * textcursor.h:
1373         * lyxtext.h: shuffle pure paragraph/cursor related cursor movement from
1374           text*.C to text_func.C
1375
1376 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1377
1378         * introduce namespace lyx::support
1379
1380 2003-06-30  André Pönitz  <poenitz@gmx.net>
1381
1382         * Chktex.C:
1383         * funcrequest.C:
1384         * lyxtext.h:
1385         * text.C: re-enable --with-included-string
1386
1387 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1388
1389         * textcursor.C: add <config.h>
1390
1391         * text.C (getWord): remove const from word_location arg
1392
1393         * lyxvc.C (getLogFile): fix const type order
1394
1395         * lyxtext.h: remove const from word_location arg, add arg name
1396
1397         * lyxlayout.h: currect type on labeltype.
1398
1399         * importer.C: correct \file
1400
1401         * converter.C (intToFormat): use std:: on ret val, ws changes
1402
1403         * bufferlist.h: correct \file
1404
1405         * buffer.C (makeLinuxDocFile): fix const type order
1406         (makeDocBookFile): ditto
1407         (fillWithBibKeys): use std:: on stdlib args.
1408
1409         * CutAndPaste.C: fix authors.
1410         (availableSelections): use std:: on return vector
1411
1412 2003-06-27  André Pönitz  <poenitz@gmx.net>
1413
1414         * BufferView_pimpl.C:
1415         * bufferview_funcs.C:
1416         * lyxcursor.C:
1417         * lyxcursor.h:
1418         * lyxfunc.C:
1419         * lyxtext.h:
1420         * rowpainter.C:
1421         * text.C:
1422         * text2.C:
1423         * text3.C: remove LyXCursor::row_ member
1424
1425         * lyxtext.h:
1426         * text.C: rename fullRebreak() to partialRebreak() and implement
1427           a fullRebreak() that really bereks fully
1428
1429         * textcursor.h: new struct for cursor-related data
1430
1431 2003-06-26  Alfredo Braunstein  <abraunst@lyx.org>
1432
1433         * lyx_main.C (LyX): get full path of document loaded on the
1434         command line
1435
1436 2003-06-26  André Pönitz  <poenitz@gmx.net>
1437
1438         * lyxcursor.[Ch]: move rarely used operator==,!= out of line
1439           remove unused/broken operator>,<,>=.
1440
1441         *       text.C: remove only use of broken operator<= in an Assert().
1442
1443 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
1444
1445         * BufferView.[Ch] (getErrorList): removed unneeded forward declare,
1446         moved errorlist_.clear to showErrorList
1447
1448 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
1449
1450         * converter.C (scanLog, runLaTeX):
1451         * buffer.C (makeLinuxDocFile, makeDocBookFile, runChkTeX):
1452         move the bv->showErrorList call to the callers
1453         * lyxfunc.C: i.e. here...
1454         * text2.C: and here
1455         * BufferView.[Ch] (setErrorList, resetErrorList): both removed
1456         * exporter.[Ch] (Backends, BufferFormat): the first was moved to anon
1457         namespace, the second to...
1458         * buffer_funcs (BufferFormat, parseErrors): added
1459         * errorlist.C (ErrorList(TeXErrors const &)): removed
1460
1461 2003-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1462
1463         * ToolbarBackend.C (getIcon): complain when icon cannot be found
1464
1465 2003-06-24  "Garst R. Reese" <reese@isn.net>
1466
1467         * debug.C: fix typo
1468
1469 2003-06-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1470
1471         * lyx_main.C (init): honor LYX_DIR_14x and LYX_USERDIR_14x
1472
1473         * version.C.in: change docversion to 1.4
1474
1475 2003-06-22  Alfredo Braunstein  <abraunst@libero.it>
1476
1477         * buffer.C: fix a bug just introduced
1478
1479 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
1480
1481         * buffer.[Ch]: added the parseError signal and use it, removed
1482         sgmlError
1483         * BufferView.[Ch] (addError): moved to ...
1484         * BufferView_pimpl.[Ch] (addError, loadLyXFile): ... here. Attach
1485         to the Buffer::parseError signal to catch (guess what) parse errors
1486         * lyx_main.[Ch] (printError,LyX): added gui-less parsing error feedback
1487
1488 2003-06-19  Alfredo Braunstein  <abraunst@libero.it>
1489
1490         * bufferlist.[Ch] (loadLyXFile, readFile, newFile): removed the
1491         ability to create a buffer and to return an existing one from
1492         the list. Moved these functions to...
1493         * buffer_funcs.[Ch]: added
1494         * BufferView.[Ch] (loadLyXFile): added
1495         * BufferView_pimpl.[Ch] (loadLyXFile): Added. Does the guessing
1496         job removed from bufferlist::loadLyXFile.
1497         * buffer.C (setReadOnly): make it work without view
1498         (i.e added an if (users))
1499
1500 2003-06-19  Angus Leeming  <leeming@lyx.org>
1501
1502         * lfuns.h:
1503         * LyXAction.C (init):
1504         * lyxfunc.C (getStatus, dispatch): remove 14 LFUNs, replacing them
1505         with LFUN_DIALOG_SHOW <name> <data>.
1506
1507 2003-06-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1508
1509         * CutAndPaste.C (availableSelections): small compilation fix for
1510         ancient (gcc 2.9x) compilers
1511
1512 2003-06-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
1513
1514         * text3.C (cursorNext): add tmp var
1515
1516         * text2.C (updateCounters): for function calling out of for clause
1517         (replaceSelectionWithString): ditto
1518         (insertStringAsParagraphs): ditto
1519         (getColumnNearX): add tmp var
1520         (setCursorFromCoordinates): add tmp var
1521         (cursorDownParagraph): add tmp var
1522         (deleteEmptyParagraphMechanism): add tmp var
1523
1524         * text.C (insertChar): add tmp var
1525
1526         * rowpainter.C (paintDepthBar): add tmp var
1527
1528         * CutAndPaste.C (availableSelections): potentially check all
1529         paragraphs in a cut to fill the shown strings.
1530
1531 2003-06-18  André Pönitz  <poenitz@gmx.net>
1532
1533         * kbmap.[Ch]: use vector<> instead of list<>
1534
1535 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
1536
1537         * text3.C (dispatch): handle arg to LFUN_PASTE, call
1538         pasteSelection with index
1539
1540         * text2.C (pasteSelection): modify, call pasteSelection with index
1541
1542         * paragraph.C (asString): reimplement version with no interval to
1543         call the one with interval.
1544
1545         * lyxtext.h: add index arg to pasteSelection
1546
1547         * MenuBackend.C (MenuItem): handle PasteRecent
1548         (Menu::read::Menutags): add md_pasterecent
1549         (read): handle it
1550         (expandPasteRecent): new function
1551         (expand): use it
1552
1553         * MenuBackend.h: add PasteRecent to MenuItem::Kind
1554
1555         * CutAndPaste.C: get rid of some stale comments. Add typdefe for
1556         the limited stack
1557         (availableSelections): new function
1558
1559 2003-06-17  Angus Leeming  <leeming@lyx.org>
1560
1561         * lyxfunc.C (dispatch): s/showMathPanel/show("mathpanel")/
1562
1563 2003-06-17  Angus Leeming  <leeming@lyx.org>
1564
1565         * lfuns.h:
1566         * LyXAction.C (init): new LFUN_DIALOG_SHOW.
1567
1568         * lyxfunc.C (dispatch): invoke it.
1569
1570 2003-06-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1571
1572         * iterators.C (operator++, ParPosition): reintroduce some
1573         const_cast for the benefit of older compilers.
1574
1575 2003-06-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1576
1577         * text3.C (dispatch): do not modify clipboard when doing
1578         LFUN_BACKSPACE, LFUN_BACKSPACE_SKIP, LFUN_DELETE or
1579         LFUN_DELETE_SKIP on a selection selection
1580
1581 2003-06-16  André Pönitz  <poenitz@gmx.net>
1582
1583         * BufferView.C:
1584         * buffer.C:
1585         * buffer.h:
1586         * paragraph.C:
1587         * tabular.[Ch]: IU of clone() and getLabelList();
1588
1589 2003-06-13  André Pönitz  <poenitz@gmx.net>
1590
1591         * tabular.h: compactification
1592
1593 2003-06-12  André Pönitz  <poenitz@gmx.net>
1594
1595         * tabular.C:
1596         * tabular.h:
1597         * tabular_funcs.h: some renaming plus whitespace
1598
1599 2003-06-12  André Pönitz  <poenitz@gmx.net>
1600
1601         * BufferView.C:
1602         * BufferView_pimpl.C:
1603         * CutAndPaste.C:
1604         * buffer.C:
1605         * iterators.[Ch]:
1606         * lyxfunc.C:
1607         * text.C:
1608         * toc.C: Return a Paragraph & for ParIterator::operator*()
1609
1610 2003-06-11  John Levon  <levon@movementarian.org>
1611
1612         * lyx_main.C:
1613         * ToolbarBackend.h:
1614         * ToolbarBackend.C: add "Toolbars" section and
1615         put the flags there
1616
1617 2003-06-10  Angus Leeming  <leeming@lyx.org>
1618
1619         * lfuns.h:
1620         * LyXAction.C (init): new LFUN_EXTERNAL_EDIT.
1621
1622         * lyxfunc.C (dispatch): invoke it.
1623
1624 2003-06-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
1625
1626         * main.C: protect <ios> with HAVE_IOS
1627         (main): protect sync_with_stdio with HAVE_IOS
1628
1629 2003-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
1630
1631         * text2.C (cutSelection): adjust
1632         (pasteSelection): adjust
1633
1634         * messages.C: handle get of empty string
1635
1636         * main.C (main): use sync_with_stdio(false)
1637
1638         * lyxfunc.C (dispatch): adjust
1639
1640         * lyx_cb.[Ch] (MenuWrite): remove unneeded BufferView arg
1641         (WriteAs): remove unneeded BufferView arg.
1642
1643         * bufferparams.h: use correct types on papersize, papersize2 and
1644         paperpackage.
1645
1646         * bufferparams.C (readToken): adjust for type
1647         (writeLaTeX): add missing cases to switch.
1648
1649         * bufferlist.C (quitWriteBuffer): adjust
1650         (close): adjust
1651
1652         * buffer.C (asciiParagraph): remove some commented code.
1653
1654         * CutAndPaste.C: remove current_view extern variable.
1655         (cutSelection): add BufferParams arg.
1656         (eraseSelection): add BufferParams arg.
1657         (pasteSelection): add Buffer const & arg
1658
1659 2003-06-07  John Levon  <levon@movementarian.org>
1660
1661         * buffer.C:
1662         * paragraph_funcs.C:
1663         * paragraph_pimpl.C:
1664         * text.C:
1665         * text2.C:
1666         * paragraph.h:
1667         * paragraph.C: allow InsetERT to freely space lines,
1668         and some consolidation of code
1669
1670 2003-06-06  José Matos  <jamatos@fep.up.pt>
1671
1672         * buffer.C (makeDocBookFile): fix bug #821
1673
1674 2003-06-06  Alfredo Braunstein  <abraunst@libero.it>
1675
1676         * BufferView_pimpl.C (dispatch): use Dialogs::visible
1677
1678 2003-06-04  Angus Leeming  <leeming@lyx.org>
1679
1680         * buffer.C: bump format to 224.
1681
1682 2003-06-05  André Pönitz  <poenitz@gmx.net>
1683
1684         * text2.C (redoParagraphs): remove two const_cast<>
1685
1686 2003-06-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1687
1688         * ParagraphList.h: remove last remnants of NO_STD_LIST
1689
1690 2003-06-03  Angus Leeming  <leeming@lyx.org>
1691
1692         * factory.C (createInset): small change to the way InsetExternal's params
1693         are set.
1694
1695 2003-06-04  André Pönitz  <poenitz@gmx.net>
1696
1697         * buffer.h: use Undo directly instead of shared_ptr<Undo>
1698
1699         * paragraph_pimpl.h:
1700         * paragraph.[Ch]: some Inset -> UpdatableInset changes
1701
1702         * undo.[Ch]: use ParagraphList instead of vector<Paragraph>
1703
1704         * undo_funcs.C: make some simple cases of undo work again
1705
1706 2003-06-03  John Levon  <levon@movementarian.org>
1707
1708         * ispell.C: HPUX doesn't have sys/select.h
1709         (from Albert Chin)
1710
1711 2003-06-03  John Levon  <levon@movementarian.org>
1712
1713         * CutAndPaste.C: update tabular and include inset
1714         buffer references
1715
1716         * buffer.h:
1717         * paragraph.h:
1718         * paragraph.C: remove owningBuffer(), don't pass Buffer
1719         to clone()
1720
1721         * factory.C: insetGraphicsParams changed
1722
1723 2003-06-02  John Levon  <levon@movementarian.org>
1724
1725         * LyXAction.C:
1726         * factory.C:
1727         * lfuns.h:
1728         * lyxfunc.C:
1729         * text3.C: remove insetparent
1730
1731 2003-06-02  John Levon  <levon@movementarian.org>
1732
1733         * buffer.h:
1734         * buffer.C: fix inset_iterator.end(), move out of line
1735         (bug 1149)
1736
1737 2003-06-01  John Levon  <levon@movementarian.org>
1738
1739         * text3.C: use a proper cut/paste when doing inset
1740         insert (from Jürgen Spitzmüller)
1741
1742 2003-06-01  John Levon  <levon@movementarian.org>
1743
1744         * factory.C: accept "\bibtex" not "\BibTeX" (bug 1018)
1745
1746 2003-05-30  André Pönitz  <poenitz@gmx.net>
1747
1748         * rowpainter.C: unify second drawing phase
1749
1750 2003-05-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1751
1752         * trans_mgr.C: remove one case of current_view
1753
1754         * text2.C (cursorBottom): delete NO_STD_LIST stuff
1755
1756         * paragraph_funcs.h: remove paragraph.h include
1757
1758         * paragraph.h: delete NO_STD_LIST stuff
1759
1760         * paragraph.C (Paragraph): delete NO_STD_LIST stuff
1761
1762         * buffer.h: remove paragraph.h include
1763
1764         * ParagraphList.C: delete file
1765
1766         * Makefile.am (lyx_SOURCES): remove ParagraphList.C
1767
1768         * toc.C (getTocList): adjust
1769
1770         * paragraph_pimpl.C (validate): adjust
1771
1772         * paragraph_funcs.C (optArgInset): use const_iterator, adjust
1773
1774         * paragraph.C (Paragraph): adjust
1775         (getPositionOfInset): use const_iterator, adjust
1776         (bibitem): use const_iterator, adjust
1777         (setInsetOwner): adjust
1778
1779         * iterators.C (operator++): adjust
1780
1781         * InsetList.[Ch]: Replace selfmade iterator with standard
1782         vector::iterator also introduce const_iterator. Remove getPos,
1783         getInset and setInset from InsetTable. Adjust accordingly.
1784
1785         * BufferView.C (lockInset): adjust
1786         (ChangeInsets): adjust
1787
1788         * tabular.[Ch]: delete commented same_id functions
1789
1790 2003-05-28  John Levon  <levon@movementarian.org>
1791
1792         * lyxfunc.C: fix LFUN_ESCAPE (bug 1055)
1793
1794 2003-05-28  André Pönitz  <poenitz@gmx.net>
1795
1796         * metricsinfo.[Ch]: remove 'fullredraw' member
1797
1798 2003-05-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
1799
1800         * lyxtextclass.C (operator): remove caching.
1801
1802 2003-05-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
1803
1804         * text3.C: adjust
1805
1806         * text2.C (cursorBottom): adjust
1807         (setCounter): use ParagraphList::find, adjust
1808
1809         * text.C (workWidth): use ParagraphList::find, adjust
1810
1811         * lyxcursor.C (LyXCursor): adjust
1812
1813         * buffer.C (inset_iterator): adjust
1814
1815         * ParagraphList.h: make iterator(value_type) private, make
1816         ParagraphList a friend of iterator.
1817
1818         * ParagraphList.C (find): new function
1819
1820         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
1821
1822 2003-05-27  André Pönitz  <poenitz@gmx.net>
1823
1824         * dimension.[Ch]: a -> asc, d -> des, w -> wid
1825
1826 2003-05-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1827
1828         * lyxfont.C (latexWriteStartChanges): fix character count for \noun
1829
1830 2003-05-26  John Levon  <levon@movementarian.org>
1831
1832         * LyXAction.C: LFUN_ESCAPE should be ReadOnly
1833
1834 2003-05-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
1835
1836         * remove same_id from function signatures, adjust.
1837
1838 2003-05-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
1839
1840         * undo_funcs.C (createUndo): use the id functions directly, adjust.
1841
1842         * paragraph_pimpl.C (Pimpl): get rid of same_ids parameter
1843
1844         * paragraph.C (Paragraph): get rid of same_ids parameter
1845
1846         * ParagraphList.C (insert): adjust
1847         (push_back): adjust
1848
1849 2003-05-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
1850
1851         * paragraph_funcs.C (breakParagraph): adjust
1852         (breakParagraphConservative): adjust
1853
1854         * buffer.C (readParagraph): adjust
1855
1856         * ParagraphList.C (insert): take a reference instead of a pointer
1857         (insert): adjust
1858
1859         * paragraph.[Ch] (id): new function
1860
1861         * bufferlist.C (newFile): adjust
1862
1863         * ParagraphList.C (ParagraphList): adjust
1864         (assign): adjust
1865         (push_back): take a reference instead of a pointer.
1866
1867         * paragraph.h: add NO_STD_LIST define, remove NO_NEXT define.
1868
1869         * paragraph.C: remove all NO_NEXT node add some NO_STD_LIST parts
1870         instead.
1871
1872         * ParagraphList.h: degenerate to std::list if NO_STD_LIST is not
1873         set else use old code.
1874
1875         * ParagraphList.C: remove all NO_NEXT code and only compile this
1876         code of NO_STD_LIST is set.
1877
1878 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
1879
1880         * BufferView_pimpl.C:
1881         * TextCache.C:
1882         * TextCache.h:
1883         * bufferlist.C:
1884         * errorlist.h:
1885         * format.C:
1886         * format.h:
1887         * graph.C:
1888         * lyxfunc.C:
1889         * lyxrc.C:
1890         * graphics/GraphicsConverter.C:
1891         * graphics/PreviewLoader.C: header adjustment
1892
1893 2003-05-23  Angus Leeming  <leeming@lyx.org>
1894
1895         * LaTeXFeatures.[Ch] (useBabel): new method.
1896         * bufferparams.C (writeLaTeX): use it.
1897
1898 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
1899
1900         * ParagraphList.h (set): remove unused function.
1901
1902 2003-05-23  André Pönitz  <poenitz@gmx.net>
1903
1904         * BufferView.C:
1905         * BufferView_pimpl.C:
1906         * buffer.C:
1907         * buffer.h:
1908         * lyxfunc.C:
1909         * undo_funcs.C: setUndo reworked
1910
1911         * iterators.[Ch]: add access to topmost ParagraphList
1912
1913         * lyxtext.[Ch] (workWidth): add a const
1914
1915 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
1916
1917         * texrow.[Ch] (increasePos): remove function
1918         * exporter.C (export): removed unused var and outdated comment
1919
1920 2003-05-23  Angus Leeming  <leeming@lyx.org>
1921
1922         * latexrunparams.h: rename fragile as moving_arg.
1923         * paragraph.C (simpleTeXOnePar): ditto.
1924         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto.
1925
1926 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
1927
1928         * undo_funcs.C (textHandleUndo): comment out next/previous stuff
1929         (createUndo): ditto
1930         (textUndoOrRedo): comment out a currently unused var.
1931
1932         * paragraph.h (NO_NEXT): enable NO_NEXT
1933
1934         * lyxfunc.C (dispatch): remove LFUN_REMOVEERRORS
1935
1936         * lfuns.h: remove LFUN_REMOVEERRORS and adjust lfun numbers.
1937
1938         * exporter.C (Export): adjust for removeAutoInsets removal.
1939
1940         * buffer.C (runChktex): adjust for removeAutoInsets removal.
1941
1942         * LyXAction.C (init): remove LFUN_REMOVEERRORS
1943
1944         * BufferView.[Ch] (removeAutoInsets): delete function
1945
1946 2003-05-22  Angus Leeming  <leeming@lyx.org>
1947
1948         * latexrunparams.h: add a free_spacing variable.
1949
1950         * paragraph.[Ch] (simpleTeXOnePar): further fragile clean-up; no need
1951         to pass moving_arg, as the data is stored in runparams.fragile.
1952
1953         * paragraph_funcs.C (TeXOnePar): no longer pass free_spacing arg
1954         to Inset::latexOptional or to simpleTeXOnePar.
1955
1956         * paragraph_pimpl.C (simpleTeXSpecialChars): no longer pass
1957         free_spacing arg to Inset::latexOptional.
1958
1959         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
1960         free_spacing arg.
1961
1962 2003-05-22  Angus Leeming  <leeming@lyx.org>
1963
1964         * latexrunparams.h: add fragile and use_babel variables.
1965
1966         * bufferparams.[Ch] (writeLaTeX): return use_babel.
1967         * buffer.C (makeLaTeXFile): store this returned value in
1968         runparams.use_babel, thus passing it to the inset::latex methods.
1969
1970         * paragraph.C (simpleTeXOnePar): no need to pass 'moving_arg' to
1971         simpleTeXSpecialChars as it is now stored in runparams.fragile.
1972
1973         * paragraph_funcs.[Ch] (TeXOnePar, latexParagraphs): TeXOnePar no
1974         longer has a fragile arg, as it is stored in runparams.fragile.
1975
1976         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars): no longer has a
1977         moving_arg parameter as the data is stored in runparams.fragile.
1978
1979         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
1980         a fragile parameter as the data is stored in runparams.fragile.
1981
1982 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
1983
1984         * paragraph.C (Paragraph): initialize next_par_ and prev_par_
1985
1986 2003-05-22  Angus Leeming  <leeming@lyx.org>
1987
1988         * latexrunparams.h: add a 'bool nice' which defaults to false.
1989
1990         * buffer.[Ch] (makeLaTeXFile): remove the nice parameter as it is
1991         now encapsulated within runparams.
1992
1993         * bufferlist.C (updateIncludedTeXfiles):
1994         * exporter.C (Export): ensuing change to the calls to makeLaTeXFile.
1995
1996 2003-05-22  Angus Leeming  <leeming@lyx.org>
1997
1998         * latexrunparams.h: new file containing struct LatexRunParams.
1999         * Makefile.am: add new file.
2000
2001         * LaTeX.[Ch] (c-tor, run):
2002         * buffer.[Ch] (makeLaTeXFile):
2003         * bufferlist.[Ch] (updateIncludedTeXfiles):
2004         * converter.C (convert, scanLog):
2005         * converter.[Ch] (runLaTeX):
2006         * exporter.C (Export):
2007         * paragraph.[Ch] (simpleTeXOnePar):
2008         * paragraph_funcs.C (TeXEnvironment, TeXOnePar, TeXDeeper):
2009         * paragraph_funcs.[Ch] (latexParagraphs):
2010         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars):
2011         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow, latex):
2012         pass around a LatexRunParams parameter.
2013
2014 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
2015
2016         * paragraph.[Ch]: remove unused constructor
2017
2018         * ParagraphList.C (erase): new function, taking two iterators
2019
2020 2003-05-22  André Pönitz  <poenitz@gmx.net>
2021
2022         * undo_funcs.C: remove duplicated code
2023
2024         * iterator.[Ch]: operator=
2025
2026 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
2027
2028         * tabular.C (SetMultiColumn): ws changes
2029
2030         * rowpainter.C (paintFirst): get rid of a ->previous
2031
2032         * lyx_cb.C (getPossibleLabel): parlist simplification
2033
2034         * BufferView.C (ChangeInsets): simplify slightly.
2035
2036 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2037
2038         * LyXAction.C: new lfun space-insert, kill protected-space-insert
2039         * lfuns.h: new LFUN_SPACE
2040         * lyxfunc.C: protected space has a new lfun
2041         * paragraph_funcs.C: read new space insets
2042         * text3.C:
2043         * factory.C: handle new space insets
2044
2045 2003-05-22  André Pönitz  <poenitz@gmx.net>
2046
2047         * BufferView.C:
2048         * BufferView_pimpl.C:
2049         * buffer.[Ch]:
2050         * lyxfunc.C:
2051         * undo_funcs.C: return a ParIterator from getParFromID.
2052
2053         * iterators.[Ch]: add two const's
2054
2055 2003-05-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
2056
2057         * toc.C (getTocList): adjust
2058
2059         * iterators.[Ch]: rework for parlist
2060
2061         * buffer.C (par_iterator_begin): adjust
2062         (par_iterator_end): adjust
2063
2064         * CutAndPaste.C (SwitchLayoutsBetweenClasses): adjust
2065
2066         * BufferView.C (removeAutoInsets): adjust
2067         (ChangeInsets): adjust
2068
2069 2003-05-21  Alfredo Braunstein  <abraunst@libero.it>
2070
2071         * text.C (top_y): fix bug 1110
2072
2073 2003-05-08  Alfredo Braunstein  <abraunst@libero.it>
2074
2075         * errorlist.[Ch]: added
2076         * buffer.C:
2077         * BufferView.[Ch]:
2078         * BufferView_pimpl.C:
2079         * CutAndPaste.[Ch]: get rid of InsetError users, use ErrorList
2080         instead
2081
2082 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
2083
2084         * Makefile.am: ensure that lyx is relinked upon changes to the
2085         various "convenience" libs.
2086
2087 2003-05-20  Angus Leeming  <leeming@lyx.org>
2088
2089         * Makefile.am (lyx_SOURCES): move format.[Ch] and graph.[Ch] so that
2090         files are compiled in alphabetical order again.
2091
2092         * gettext.h: #ifndef _GETTEXT_H_ -> #ifndef GETTEXT_H.
2093
2094 2003-05-19  Angus Leeming  <leeming@lyx.org>
2095
2096         * gettext.[Ch]: remove "char const * _(char const *)".
2097
2098 2003-05-19  André Pönitz  <poenitz@gmx.net>
2099
2100         * dimension.[Ch]: promote from mathed/dimension.[Ch]
2101
2102         * Makefile.am:
2103         * BufferView.C:
2104         * DepTable.h:
2105         * LaTeXFeatures.C:
2106         * buffer.C:
2107         * lyxfont.C:
2108         * lyxlex.h:
2109         * paragraph_funcs.C: dimensions() instead of ascend/descend/width
2110
2111 2003-05-19  André Pönitz  <poenitz@gmx.net>
2112
2113         * buffer.C:
2114         * lyxlayout.[Ch]:
2115         * lyxtextclass.[Ch]:
2116         * paragraph.C:
2117         * paragraph_funcs.[Ch]:
2118         * text2.C:
2119         * text3.C: more insetenv work
2120
2121 2003-05-16  Alfredo Braunstein  <abraunst@libero.it>
2122
2123         * ParagraphParameters.C (params2string): small bug fixed
2124
2125 2003-05-16  André Pönitz  <poenitz@gmx.net>
2126
2127         * debug.C:
2128         * bufferview_funcs.C: patch from Kornel Benko to prevent
2129           crash when _(...) is called twice in a statement
2130
2131 2003-05-16  André Pönitz  <poenitz@gmx.net>
2132
2133         * BufferView.C:
2134         * lyxfunc.C:
2135         * text.C:
2136         * text2.C:
2137         * text3.C:
2138         * undo_funcs.C: edit() -> LFUN_INSET_EDIT
2139
2140 2003-05-14  Alfredo Braunstein  <abraunst@libero.it>
2141
2142         * lyx_main.C (init): remove spurious static_cast
2143
2144 2003-05-14  André Pönitz  <poenitz@gmx.net>
2145
2146         * BufferView.C: fix format string
2147
2148 2003-05-12  Alfredo Braunstein  <abraunst@libero.it>
2149
2150         * BufferView.[Ch] (insertErrors): removed
2151         * BufferView.[Ch] (showErrorList): added
2152         * buffer.C (runChkTeX):
2153         * converter.C (scanLog): call showErrorList instead of inserterrors
2154
2155 2003-05-13  André Pönitz  <poenitz@gmx.net>
2156
2157         * BufferView_pimpl.C:
2158         * buffer.C:
2159         * bufferview_func.C:
2160         * MenuBackend.C:
2161         * lyxfunc.C:
2162         * lyxrc.C:
2163         * tex-accent.C:
2164         * text3.C:
2165         * toc.C:
2166         * tabular_funcs.h: tostr() from its own header
2167
2168         * ParagraphParameters.C:
2169         * ToolbarBackend.C:
2170         * bufferparams.C:
2171         * format.C:
2172         * lyxlex_pimpl.C:
2173         * text3.C: STRCONV()
2174
2175 2003-05-12  André Pönitz  <poenitz@gmx.net>
2176
2177         * BufferView.C:
2178         * BufferView_pimpl.C:
2179         * CutAndPaste.C:
2180         * LaTeX.C:
2181         * LaTeXFeatures.C:
2182         * ParagraphParameters.C:
2183         * buffer.C:
2184         * bufferlist.C:
2185         * bufferparams.C:
2186         * bufferview_funcs.C:
2187         * converter.C:
2188         * counters.C:
2189         * debug.C:
2190         * exporter.C:
2191         * format.C:
2192         * importer.C:
2193         * lyx_cb.C:
2194         * lyx_main.C:
2195         * lyxfont.C:
2196         * lyxfunc.C:
2197         * lyxvc.C:
2198         * paragraph.C:
2199         * paragraph_funcs.C:
2200         * tabular.C:
2201         * tabular_funcs.C:
2202         * text2.C:
2203         * text3.C:  boost::format -> bformat  all over the place
2204
2205
2206 2003-05-09  André Pönitz  <poenitz@gmx.net>
2207
2208         * LColor.[Ch]: Pimpl the #include <map> away
2209
2210 2003-05-09  John Levon  <levon@movementarian.org>
2211
2212         * bufferlist.C: never remove emergency saves
2213
2214 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
2215
2216         * Makefile.am: better lib building
2217
2218 2003-05-07  Lars Gullik Bjønnes  <larsbj@gullik.net>
2219
2220         * texrow.[Ch]: remove dependency on Paragraph and just store a id
2221         instead.
2222         * paragraph_pimpl.C (simpleTeXBlanks): adjust
2223         (simpleTeXSpecialChars): adjust
2224         (simpleTeXSpecialChars): adjust
2225         * paragraph.C (simpleTeXOnePar): adjust
2226         * buffer.C (makeLaTeXFile): adjust
2227
2228         * Makefile.am (BOOST_LIBS): allow boost as system lib.
2229
2230         * text2.C (changeDepth): parlist cleanup
2231         (getColumnNearX): ditto
2232
2233         * rowpainter.C (getLabelFont): parlist cleanup
2234
2235         * bufferlist.C (newFile): parlist cleanup
2236
2237         * CutAndPaste.C (eraseSelection): parlist cleanup
2238
2239         * BufferView_pimpl.C (trackChanges): parlist cleanup
2240         (dispatch): ditto
2241
2242         * BufferView.C (lockInset): parlist cleanup.
2243         (ChangeInsets): ditto
2244
2245 2003-05-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
2246
2247         * CutAndPaste.h: Update file header.
2248
2249         * CutAndPaste.C: Update file header.
2250         Store the parts cut out of the Document in a limited_stack.
2251         (copySelection): adjust
2252         (pasteSelection): new function, takes the index in the limited stack.
2253         (nrOfParagraphs): adjust
2254         (SwitchLayoutsBetweenClasses): Change to take a ParagraphList&,
2255         simplify error inset insertion.
2256         (checkPastePossible): adjust
2257
2258 2003-05-06  John Levon  <levon@movementarian.org>
2259
2260         * text2.C: don't cast wrap inset to float
2261
2262 2003-05-05  André Pönitz  <poenitz@gmx.net>
2263
2264         * iterator.C:
2265         * undo_funcs.C: use getParagraphs() instead of getFirstParagraph()
2266
2267         * buffer.[Ch]: new function hasParWithId() to help to get rid of a
2268           few naked Paragraph *.
2269
2270 2003-05-02  Michael Schmitt  <michael.schmitt@teststep.org>
2271
2272         * bufferparams.C: Output warning if a document with missing
2273         TeX document class is loaded
2274         * exporter.C: Disable TeX exports if the document class is missing
2275         * lyxtextclass.C:
2276         * lyxtextclass.h:
2277         * lyxtextclasslist.C: Handle new textclass.lst format; new method
2278         isTeXClassAvailable()
2279
2280 2003-05-03  John Levon  <levon@movementarian.org>
2281
2282         * BufferView.h:
2283         * BufferView.C: remove showLockedInsetCursor(), showCursor(),
2284         explicit cursor show/hide
2285
2286         * BufferView_pimpl.h:
2287         * BufferView_pimpl.C: hide cursor before dispatching. Show cursor
2288         after a cursor move lfun. Simplify cursorToggle(). Remove show/hideCursor().
2289
2290         * lyxfunc.C: hide cursor before dispatching.
2291
2292         * lyx_cb.C:
2293         * lyxfind.C:
2294         * text.C:
2295         * text3.C: remove explicit cursor hides
2296
2297 2003-05-02  André Pönitz  <poenitz@gmx.net>
2298
2299         * buffer.[Ch]: two instances of Paragraph * -> ParagraphList::iterator
2300
2301         * undo_funcs.C:
2302         * undo.[Ch]: rely on std::vector<Paragraph *> instead of manually
2303           linked lists
2304
2305         * text2.C: tiny whitespace
2306
2307 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2308
2309         * undo_funcs.C: almost only ws changes.
2310
2311         * ParagraphList.C (splice): just return if pl is empty.
2312
2313 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2314
2315         * ParagraphList.C (splice): new function.
2316
2317         * CutAndPaste.C (pasteSelection): use it
2318
2319 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2320
2321         * CutAndPaste.C (pasteSelection): remove the last next and
2322         previous from this file.
2323
2324 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2325
2326         * CutAndPaste.C (pasteSelection): more clean up, user proper
2327         ParagraphList functions for pasteing.
2328
2329         * ParagraphList.C (insert): new function, three arg insert
2330
2331 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2332
2333         * ParagraphList.C (insert): new function, three arg insert
2334
2335         * CutAndPaste.C (pasteSelection): work on the simple_cut_clone,
2336         not on paragraphs.
2337
2338 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2339
2340         * CutAndPaste.C (pasteSelection): copy paragraphlist the nice way.
2341
2342 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2343
2344         * CutAndPaste.C (pasteSelection): remove some unneeded code.
2345
2346 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2347
2348         * CutAndPaste.C (resetOwnerAndChanges): new helper functor
2349         (copySelection): clean up a bit.
2350         (pasteSelection): use make_pair
2351
2352         * ParagraphList.C (ParagraphList): implement copy constructor
2353         (operator=): implement, base on copy constructor.
2354         (assign): new func
2355
2356         * paragraph.C (erase): return a bool
2357
2358         * paragraph_pimpl.C (erasePos): remove function, move contents...
2359         (erase): ... here. Return a bool.
2360         (erase): call erase instead of erasePos.
2361
2362 2003-04-30  Alfredo Braunstein  <abraunst@libero.it>
2363
2364         * ParagraphList.h: define PitPosPair
2365         * CutAndPaste.C (copySelection, pasteSelection): big rework, use
2366         ParagraphList, fix a bug on pasting multiple pars
2367         * text2.C: change interface to C&P
2368
2369 2003-04-30  André Pönitz  <poenitz@gmx.net>
2370
2371         * undo_func.C: revert part of yesterday's patch 2
2372
2373 2003-04-30  John Levon  <levon@movementarian.org>
2374
2375         * LColor.C: s/tabular/table/
2376
2377 2003-04-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
2378
2379         * text3.C (dispatch): do not convert iterator -> pointer
2380         * undo_funcs.C (setCursorParUndo): ditto
2381         * text_funcs.C (transposeChars): ditto
2382
2383         * text2.C (setLayout): ws changes only
2384
2385         * text.C (breakParagraph): do not convert iterator -> pointer
2386         (insertChar): ditto
2387         (acceptChange): ditto
2388         (rejectChange): ditto
2389         (changeCase): ditto
2390         (Delete): ditto
2391         (backspace): ditto
2392
2393         * BufferView.C (lockedInsetStoreUndo): do not convert iterator ->
2394         pointer
2395
2396 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
2397
2398         * text3.C (gotoInset): YABG (yet another bad getChar)
2399
2400 2003-04-29  André Pönitz  <poenitz@gmx.net>
2401
2402         * paragraph.h: make operator= private unimplemented as long as
2403           it is unusable
2404
2405         * ParagraphList.C: whitespace
2406
2407         * paragraph.[Ch]:
2408         * paragraph_pimpl.[Ch]:
2409         * paragraph_funcs.C:
2410         * CutAndPaste.C:
2411         * undo_funcs.C: whitespace + Paragraph *  -> Paragraph (const) &
2412
2413         * text2.C:
2414           undo_funcs.[Ch]: Paragraph * -> ParagraphList::iterator
2415
2416 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
2417
2418         * CutAndPaste.[Ch] (cutSelection): big rework, some bugs fixed
2419         * paragraph.[Ch] (erase):
2420         * paragraph_pimpl.[Ch] (erase): change return type and value
2421         * text2.C (cutSelection): some rework
2422
2423 2003-04-28  John Levon  <levon@movementarian.org>
2424
2425         * bufferlist.C: changes for unsaved changes dialog
2426
2427 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2428
2429         * bufferlist.C (newFile): set language (messages_) for new
2430         documents also.
2431
2432         * buffer.C (readFile): ws changes only.
2433
2434 2003-04-28  André Pönitz  <poenitz@gmx.net>
2435
2436         * undo_funcs.C:
2437         * lyxfunc.C:
2438         * buffer.[Ch]:
2439         * BufferView_pimpl.C:
2440         * BufferView.C: getParFromID related ParagraphList::iterator changes
2441
2442 2003-04-28  André Pönitz  <poenitz@gmx.net>
2443
2444         * tabular.[Ch]: part of Lars' Paragraph * -> ParagraphList::iterator
2445           Changes
2446
2447 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2448
2449         * messages.C: remove one more localedir class variable.
2450
2451 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2452
2453         * messages.C (getLocaleDir): singleton generation function
2454         (Pimpl): use it.
2455         (Messages): add a default constructor.
2456
2457         * main.C (main): do not setup localedir here, do not call
2458         gettext_init.
2459
2460         * gettext.C (_): use it.
2461         (gettext_init): delete funciton
2462
2463 2003-04-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
2464
2465         * gettext.C (getLyXMessages): new singleton generating function.
2466
2467         * buffer.C (updateDocLang): adjust
2468
2469         * Makefile.am (messages.o): add target
2470         (main.o): remove target
2471
2472 2003-04-27  John Levon  <levon@movementarian.org>
2473
2474         * bufferlist.C:
2475         * lyx_cb.C:
2476         * lyxfunc.C:
2477         * lyxvc.C: specify cancel button in Alert::prompt
2478
2479 2003-04-26  John Levon  <levon@movementarian.org>
2480
2481         * text3.C:
2482         * lyxfunc.C:
2483         * lfuns.h:
2484         * LyXAction.C: add LFUN_INSET_SETTINGS
2485
2486         * lyxfunc.C: don't enable tabular-feature when there's
2487         just any locking inset
2488
2489 2003-04-26  John Levon  <levon@movementarian.org>
2490
2491         * bufferlist.C: re-add Cancel to buffer close question
2492
2493         * lyxfunc.C: fix import UI a bit
2494
2495 2003-04-25  John Levon  <levon@movementarian.org>
2496
2497         * gettext.C: remove the broken asserts for now
2498
2499 2003-04-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
2500
2501         * messages.C: make case where setlocale cannot comply work better.
2502
2503         * buffer.C (updateDocLang): new function
2504         (changeLanguage): use it
2505         (readFile): use it
2506
2507         * text2.C (setCounter): use B_ a bit.
2508
2509         * lyxlayout.C (Read): be sure to trim the label strings.
2510
2511         * messages.C (Messages): fix typo in comment
2512
2513         * buffer.C (readFile): set message_ after file is loaded.
2514         (makeDocBookFile): remove double return
2515         (changeLanguage): reset message_ upon language change.
2516         (B_): new func, use this to get translated buffer strings.
2517
2518         * main.C: add myself and Jean Marc as authors.
2519
2520 2003-04-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
2521
2522         * messages.[hC]: pimplify Messages, and three different pimpls to be
2523         used in different circumstances.
2524
2525         * gettext.[Ch]: change for use with new message code.
2526
2527 2003-04-24 André Pönitz <poenitz@gmx.net>
2528
2529         * factory.C: support for eqref
2530
2531 2003-04-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
2532
2533         * messages.[Ch]: add missing char
2534
2535         * Makefile.am (lyx_SOURCES): add messages.[Ch]
2536
2537         * messages.[Ch]: New files
2538
2539 2003-04-18  John Levon  <levon@movementarian.org>
2540
2541         * BufferView.h:
2542         * BufferView.C:
2543         * BufferView_pimpl.C:
2544         * lfuns.h:
2545         * LyXAction.C:
2546         * lyxtext.h:
2547         * text2.C: remove layout-copy/paste (bug 778)
2548
2549 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
2550
2551         * text2.C (redoParagraphs): eliminate good_prevrit, rewrite a loop
2552
2553 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
2554
2555         * bufferlist.C (quitWriteBuffer): WriteAs and MenuWrite return true
2556         if they succeed. Act accordingly.
2557
2558 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2559
2560         * text2.C (setCharFont): adjust
2561         (setCounter): adjust
2562         (insertStringAsLines): adjust
2563
2564         * text.C (leftMargin): adjust
2565         (setHeightOfRow): adjust
2566
2567         * rowpainter.C (paintFirst): adjust
2568         (paintLast): adjust
2569
2570         * paragraph_funcs.C (depthHook): ParagraphList::iterators
2571         (outerHook): ditto
2572         (isFirstInSequence): ditto
2573         (getEndLabel): ditto
2574         (outerFont): adjust
2575
2576         * paragraph.C (getParLanguage): comment out some hard stuff.
2577
2578         * buffer.C (insertStringAsLines): take a ParagraphList as arg
2579         (sgmlError): ditto
2580         (simpleDocBookOnePar): ditto
2581         (makeDocBookFile): use ParagraphList::iterator
2582
2583         * CutAndPaste.C (pasteSelection): adjust
2584
2585 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2586
2587         * text2.C (getFont): adjust
2588         (getLayoutFont): adjust
2589         (getLabelFont): adjust
2590
2591         * paragraph_funcs.C (TeXOnePar): adjust
2592
2593         * buffer.C (simpleLinuxDocOnePar): adjust
2594         (simpleDocBookOnePar): adjust
2595
2596         * CutAndPaste.C (pasteSelection): adjust
2597
2598         * BufferView.C (getEncoding): adjust
2599
2600         * paragraph_funcs.C (outerFont): prepare for a ParagraphList arg.
2601
2602 2003-04-16  John Levon  <levon@movementarian.org>
2603
2604         * lyxfind.C: use parlist stuff for search/changes
2605
2606 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2607
2608         * undo_funcs.C (textHandleUndo): ajust (rather big adsjust this one)
2609
2610         * text2.C (deleteEmptyParagraphMechanism): adjust
2611
2612         * text2.[Ch] (ownerParagraph): delete func (both of them
2613
2614 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2615
2616         * text_funcs.C (transposeChars): use ParagraphList::iterator here.
2617
2618 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2619
2620         * ParagraphList.C: prepare for NO_NEXT
2621
2622 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2623
2624         * text2.C (getFont): adjust
2625         (getLayoutFont): adjust
2626         (getLabelFont): adjust
2627
2628         * paragraph.C (getFont): adjust
2629         (getLabelFont): adjust
2630         (getLayoutFont): adjust
2631
2632         * paragraph_funcs.[Ch] (realizeFont): remove unneeded arguments.
2633
2634 2003-04-15  John Levon  <levon@movementarian.org>
2635
2636         From Angus Leeming
2637
2638         * lyx_main.C: handle Include in .ui files
2639
2640 2003-04-15  John Levon  <levon@movementarian.org>
2641
2642         * MenuBackend.C: make the doc files length shorter
2643
2644         * ToolbarBackend.h:
2645         * ToolbarBackend.C: handle toolbar placement flags,
2646         Minibuffer
2647
2648 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2649
2650         * paragraph_pimpl.C (simpleTeXSpecialChars): take a outerfont arg,
2651         adjust
2652
2653         * paragraph_funcs.C (TeXOnePar): adjust
2654
2655         * paragraph.C (getLabelFont): add outerfont arg, adjust
2656         (getLayoutFont): ditto
2657         (simpleTeXOnePar): adjust
2658
2659         * paragraph_pimpl.C (realizeFont): delete func
2660
2661 2003-04-14  Alfredo Braunstein  <abraunst@libero.it>
2662
2663         * text2.C (beforeFullRowInset): added a bad getchar check, removed
2664         row argument, constify cur argument.
2665
2666 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2667
2668         * text2.C (getFont): adjust
2669         (getLayoutFont): adjust
2670         (getLabelFont): adjust
2671
2672         * paragraph_funcs.C (TeXOnePar): adjust
2673         (outerFont): new func...
2674         (realizeFont): ...moved out from here, changed this to facilitate
2675         transition
2676
2677         * paragraph.C (getFont): take outerfont as arg, adjust
2678         (simpleTeXOnePar): add outerfont arg, adjust
2679
2680         * buffer.C (simpleLinuxDocOnePar): adjust
2681         (simpleDocBookOnePar): adjust
2682
2683         * CutAndPaste.C (pasteSelection): adjust
2684
2685         * BufferView.C (getEncoding): adjust
2686
2687 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2688
2689         * text2.C (setCharFont): adjust
2690         (setCounter): adjust
2691
2692         * text.C (leftMargin): adjust
2693         (setHeightOfRow): adjust
2694
2695         * rowpainter.C (paintFirst): adjust
2696         (paintLast): adjust
2697
2698         * paragraph_pimpl.C (realizeFont): adjust
2699
2700         * paragraph.C (isFirstInSequence): move from here...
2701         * paragraph_funcs.C (isFirstInSequence): ...to here
2702
2703         * paragraph.C (outerHook): move from here...
2704         * paragraph_funcs.C (outerHook): ...to here
2705
2706         * paragraph.C (depthHook): move from here...
2707         * paragraph_funcs.C (depthHook): ...to here
2708
2709         * paragraph.C (getEndLabel): move from here...
2710         * paragraph_funcs.C (getEndLabel): ...to here
2711
2712         * text2.C (realizeFont): move from here...
2713         * paragraph_funcs.C (realizeFont): ...to here
2714
2715 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2716
2717         * text3.C (gotoNextInset): use separate tmp vars for par and pos.
2718
2719 2003-04-14  Angus Leeming  <leeming@lyx.org>
2720
2721         * LColor.[Ch]: scrap LColor mathcursor.
2722
2723 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2724
2725         * lyxlex.[Ch] (text): delete function
2726         * trans.C (Load): adjust
2727         * paragraph_funcs.C (readParToken): adjust
2728
2729 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2730
2731         * lyxlex_pimpl.h: get rid of LEX_MAX_BUFF, change buff to be a
2732         vector<char> instead of a char[].
2733
2734         * lyxlex_pimpl.C (getString): adjust
2735         (next): adjust
2736         (lex): use getString
2737         (eatLine): adjust
2738         (nextToken): adjust
2739
2740         * lyxlex.C (text): use pimpl_->getString()
2741         (getBool): ditto
2742         (findToken): ditto
2743
2744 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2745
2746         * text2.C (getInset): temp vars for cursor.par() and cursor.pos()
2747         (makeFontEntriesLayoutSpecific): temp var for par.size()
2748         (setLayout): temp var for ownerParagraphs().end()
2749         (fullRebreak): temp var for rows().end()
2750         (selectionAsString): temp var for boost::next(startpit), realize
2751         that the while really is a regular for loop.
2752         (cursorEnd): temp vars for cursor.row(), lastPos ++, only call
2753         setCursor in one place.
2754         (setParagraph): temp vr for ownerParagraphs().end()
2755         (updateCounters): make the while loop a for loop
2756         (cutSelection): temp var for ownerParagraphs().end()
2757         (updateInset): make the do {} while() a regular for loop
2758         (getCursorX): use temp vars
2759         (setCurrentFont): use temp vars
2760         (getColumnNearX): use temp vars
2761
2762 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2763
2764         * text.C (transformChar): use temp var for getChar
2765         (computeBidiTables): use temp var for row->par()
2766         (fill): move temp vars for row->par() and pit->layout() earlier in
2767         the function.
2768         (labelFill): use temp var for row->par()
2769         (setHeightOfRow): do not allow rit to be RowList::end, get rid of
2770         asc and desc, realize that pit never changes and that firstpit is
2771         just a duplicate and not needed. Exchange rit->par() with pit in a
2772         lot of places.
2773         (breakAgain): use a temp var for boost::next(rit)
2774         (breakAgainOneRow): ditto
2775         (breakParagraph): use a temp var for rows().begin()
2776         (prepareToPrint): move nlh into minimal scope, use temp var for rit->par()
2777         (cursorRightOneWord): use temp var for cursor.par() and
2778         cursor.pos(), remove usage of tmpcursor.
2779         (cursorLeftOneWord): use temp var for cursor.par() and
2780         cursor.pos() only set cur at end of function.
2781
2782 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2783
2784         * text.C, text2.C: exchange all usage of Paragraph::next with
2785         boost::next(ParagraphList::iterator)
2786
2787         * CutAndPaste.C (cutSelection): change 2. arg to a Paragraph*
2788
2789         * text2.C (cursorTop): simplify implementation
2790         (cursorBottom): ditto
2791         (setParagraph): use ParagraphList::iterator
2792         (setCurrentFont): adjust
2793         (getColumnNearX): adjust
2794         (cursorRight): adjust
2795         (cursorLeft): remove usage of Paragraph::previous
2796         (cursorUpParagraph): ditto
2797         (deleteEmptyParagraphMechanism): slight cleanup
2798
2799         * text.C (isBoundary): take a Paragraph const & instead of a
2800         pointer as arg.
2801         (addressBreakPoint): ditto
2802         (leftMargin): remove usage of Paragraph::previous.
2803         (setHeightOfRow): ditto
2804         (cursorLeftOneWord): ditto
2805         (selectNextWordToSpellcheck): ditto
2806         (Delete): ditto
2807         (backspace): ditto
2808         (breakParagraph): remove one usage of Paragraph::next
2809         (redoParagraph): ditto
2810         (acceptChange): ditto
2811         (insertChar): adjust
2812         (rowBreakPoint): adjust
2813
2814         * bufferview_funcs.C (toggleAndShow): adjust
2815
2816 2003-04-11  Alfredo Braunstein  <abraunst@libero.it>
2817
2818         * lyxrow.[Ch]: add a cached y position to a Row and Row::y()
2819         methods to access it.
2820         * lyxtext.h:
2821         * text.C: Added updateRowPositions to compute all row positions.
2822         Make top_y and getRowNearY() to use the cached y position
2823
2824 2003-04-11  John Levon  <levon@movementarian.org>
2825
2826         * text.C (rowBreakPoint): reintroduce the labelEnd
2827         checks, code copied from the row fill stuff. Deep voodoo.
2828
2829         * text.C (fill): add a comment and debugging for the
2830         next poor soul.
2831
2832 2003-04-11  John Levon  <levon@movementarian.org>
2833
2834         * text.C: make sure fullrow insets get wrapped to the next line,
2835         even when they're in a manual label
2836
2837 2003-04-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
2838
2839         * text2.C (insertParagraph): make it take ParagraphList::iterator
2840         as arg.
2841         (setLayout): make it return ParagraphList::iterator
2842         (redoParagraphs): ditto
2843         (setCounter): ditto
2844         (checkParagraph): ditto
2845
2846         * text.C (getRow): make getrow take ParagraphList::iterator as arg
2847
2848         * text2.C: adjust several funcs.
2849         (realizeFont): take a ParagraphList::iterator as arg.
2850         (getLayoutFont): ditto
2851         (getLabelFont): ditto
2852         (setCharFont): ditto
2853
2854         * text.C: adjust several funcs.
2855
2856 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
2857
2858         * text.C (selectNextWordToSpellcheck): don't accidentally
2859         skip insets
2860
2861 2003-04-10  John Levon  <levon@movementarian.org>
2862
2863         * ToolbarBackend.C (getIcon): special handling for
2864         LFUN_MATH_DELIM
2865
2866 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
2867
2868         * text2.C (cursorRight): a getChar assert fixed
2869
2870 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
2871
2872         * text2.C (getFont): change to take a ParagraphList::iterator
2873         instead of Paragraph*
2874         Adjust several functions.
2875
2876         * text.C (transformChar): change to take a ParagraphList::iterator
2877         instead of Paragraph*
2878         (singleWidth): ditto
2879         Adjust several functions.
2880
2881         * rowpainter.C: adjust several functions
2882         * rowpainter.h:store a ParagraphList::iterator and not a
2883         Paragraph&.
2884
2885
2886 2003-04-09  John Levon  <levon@movementarian.org>
2887
2888         * lyxfunc.C:
2889         * lfuns.h:
2890         * LyXAction.h:
2891         * LyXAction.C: remove LFUN_APROPOS, LFUN_GETTIP,
2892         and the "help" bits as well
2893
2894 2003-04-09  John Levon  <levon@movementarian.org>
2895
2896         * ToolbarBackend.h:
2897         * ToolbarBackend.C: allow multiple toolbars
2898
2899 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
2900
2901         * undo_funcs.C (setCursorParUndo): adjust
2902
2903         * text_funcs.C (transposeChars): adjust
2904
2905         * text3.C (gotoNextInset): adjust
2906         (dispatch): adjust
2907
2908         * text2.C (setLayout): adjust
2909         (changeDepth): adjust
2910         (setFont): adjust
2911         (redoParagraphs): adjust
2912         (selectionAsString): adjust
2913         (setParagraph): adjust
2914         (insertInset): adjust
2915         (cutSelection): adjust
2916         (copySelection): adjust
2917         (pasteSelection): adjust
2918         (insertStringAsLines): adjust
2919         (updateInset): adjust
2920         (setCursor): change to take a ParagraphList::iterator parameter
2921         (setCursorIntern): change to take a ParagraphList::iterator parameter
2922         (setCurrentFont): adjust
2923         (cursorLeft): adjust
2924         (cursorRight): adjust
2925         (deleteEmptyParagraphMechanism): adjust
2926
2927         * text.C (breakParagraph): adjust
2928         (insertChar): adjust
2929         (acceptChange): adjust
2930         (rejectChange): adjust
2931         (selectNextWordToSpellcheck): adjust
2932         (changeCase): adjust
2933         (Delete): adjust
2934         (backspace): adjust
2935
2936         * lyxfind.C (SearchForward): adjust
2937         (SearchBackward): adjust
2938         (nextChange): adjust
2939
2940         * lyxcursor.C (par): adjust
2941
2942         * lyxcursor.h: store a ParagraphList::iterator instead of a
2943         Paragraph*
2944
2945         * lyx_cb.C (getPossibleLabel): adjust
2946
2947         * bufferview_funcs.C (toggleAndShow): adjust
2948
2949         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
2950         (dispatch): adjust
2951
2952         * BufferView.C (removeAutoInsets): adjust
2953         (lockedInsetStoreUndo): adjust
2954
2955 2003-04-09  John Levon  <levon@movementarian.org>
2956
2957         * ToolbarBackend.C: try icon without argument
2958         if with argument fails
2959
2960 2003-04-08  John Levon  <levon@movementarian.org>
2961
2962         * ToolbarBackend.h:
2963         * ToolbarBackend.C: add getIcon(), handle tooltip,
2964         and change from "Icon" to "Item".
2965
2966 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
2967
2968         * BufferView.C (lockInset): another bad getchar crunched
2969
2970 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
2971
2972         * text2.C (changeDepth): do not setUndo on test_only (make undo work
2973         again)
2974
2975 2003-04-05  Alfredo Braunstein  <abraunst@libero.it>
2976
2977         * lyxfind.C (searchForward, searchBackwards): bug 782
2978
2979 2003-04-07  John Levon  <levon@movementarian.org>
2980
2981         * paragraph.C: remove dead comment
2982
2983         * text.C: remove troublesome depth-fiddling code
2984         in leftMargin() and rightMargin() (bug 1017)
2985
2986         * text.C: fix breaking of rows in nested lists
2987         (bug 1004)
2988
2989         * text2.C (updateCounters): fix up depth values
2990         (bug 1013)
2991
2992 2003-04-07  John Levon  <levon@movementarian.org>
2993
2994         * BufferView_pimpl.C: clear message when doc finishes resizing,
2995         and after a mouse event
2996
2997         * lyxfunc.C: clear message after exiting inset
2998
2999 2003-04-07  John Levon  <levon@movementarian.org>
3000
3001         * bufferview_funcs.C: show math status not outside
3002         status in the statusbar
3003
3004 2003-04-07  John Levon  <levon@movementarian.org>
3005
3006         * lyxfunc.C: note status changed after a depth change
3007
3008 2003-04-04  Angus Leeming  <leeming@lyx.org>
3009
3010         * LaTeX.h: move AuxInfo operator==, != out of line.
3011         Remove LaTeX virtual destructor; nothing derives from it.
3012         Move operator()() out of public area and rename it startscript().
3013         Change protected for private.
3014
3015 2003-04-04  Angus Leeming  <leeming@lyx.org>
3016
3017         * lyxfunc.C:
3018         * text2.C: remove unneeded #includes.
3019
3020 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
3021
3022         * text2.C (dEPM): fix the heigth of the next row
3023
3024 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
3025
3026         * text.C: squashed an invalid getChar requester + some ws changes
3027
3028 2003-04-03  John Levon  <levon@movementarian.org>
3029
3030         * bufferview_funcs.h:
3031         * bufferview_funcs.C:
3032         * lyxfunc.C:
3033         * lyxtext.h:
3034         * text2.C: make getStatus work for the env depth lfuns
3035
3036 2003-04-03  John Levon  <levon@movementarian.org>
3037
3038         * bufferview_funcs.h:
3039         * bufferview_funcs.C:
3040         * lyxfunc.C:
3041         * lyxtext.h:
3042         * text2.C: parlistize decDepth(), by merging it with incDepth()
3043
3044 2003-04-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
3045
3046         * lyxrow.h: store a ParagraphList::iterator instead of a
3047         Paragraph* and adjust other class functions to suit.
3048
3049         * lyxrow_funcs.C, text.C, text2.C, text3.C: adjust because of the
3050         above.
3051
3052 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
3053
3054         * text2.C (setCursor): do not anchor to cursor row for the time being
3055
3056 2003-04-02  John Levon  <levon@movementarian.org>
3057
3058         * LyXAction.C:
3059         * lfuns.h:
3060         * lyx_main.C:
3061         * lyxtext.h:
3062         * text.C:
3063         * text3.C: rename the "tab" lfuns. Remove tab support from normal text
3064
3065 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3066
3067         * paragraph.h: make ParagraphList and ParagraphList::iterator
3068         friends of Paragraph.
3069
3070         * buffer.C (makeLinuxDocFile): move towards ParagraphList
3071
3072         * ParagraphList.C: Use the private next_ and previous_ from
3073         Paragraph.
3074
3075 2003-04-01  John Levon  <levon@movementarian.org>
3076
3077         * ToolbarBackend.h:
3078         * ToolbarBackend.C:
3079         * Makefile.am: rename, remove defaults gunk
3080
3081         * MenuBackend.h:
3082         * MenuBackend.C: remove defaults gunk
3083
3084         * Languages.h:
3085         * Languages.C: remove defaults gunk
3086
3087         * lyx_main.h:
3088         * lyx_main.C: error out if files couldn't be found.
3089
3090 2003-04-02  John Levon  <levon@movementarian.org>
3091
3092         * text2.C: make incDepth() use parlist
3093
3094 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3095
3096         * undo_funcs.C (firstUndoParagraph): adjust
3097
3098         * text3.C (gotoInset): adjust
3099         (dispatch): adjust, and rewrite loop.
3100
3101         * text2.C (init): adjust, and rewrite loop.
3102         (redoParagraphs): adjust
3103         (updateInset): adjust, and rewrite loop.
3104         (deleteEmptyParagraphMechanism): adjust
3105
3106         * tabular.C (LyXTabular): adjust
3107         (SetMultiColumn): adjust
3108         (TeXRow): adjust
3109
3110         * lyxtext.[Ch] (ownerParagraph): delete function
3111         (ownerParagraphs): new function returns a ParagraphList.
3112
3113         * BufferView.C (removeAutoInsets): adjust
3114         (insertErrors): adjust
3115         (setCursorFromRow): adjust
3116
3117 2003-04-01  Angus Leeming  <leeming@lyx.org>
3118
3119         * BufferView_pimpl.C (buffer): ensure that the Layout is correct
3120         in the frontends.
3121
3122 2003-04-02  John Levon  <levon@movementarian.org>
3123
3124         * lyxtext.h:
3125         * text.C:
3126         * Makefile.am:
3127         * text_funcs.h:
3128         * text_funcs.C: make transposeChars a free function
3129
3130         * lyxrow_funcs.C: remove wrong comment
3131
3132 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3133
3134         * lyxtext.h: adjust
3135         * rowpainter.C: adjust
3136         * text.C: adjust
3137         * text2.C: adjust
3138         * text3.C: adjust
3139
3140         * lyxrow_funcs. [Ch]: new files
3141
3142         * lyxrow.[Ch]: remove next and previous pointers
3143         (next,previous): remove accessor functions
3144         (isParEnd): move to lyxrow_funcs
3145         (lastPos): move to lyxrow_funcs
3146         (nextRowIsAllInset): move to lyxrow_funcs
3147         (lastPrintablePos): move to lyxrow_funcs
3148         (numberOfSeparators): move to lyxrow_funcs
3149         (numberOfHfills): move to lyxrow_funcs
3150         (numberOfLabelHfills): move to lyxrow_funcs
3151         (hfillExpansion): move to lyxrow_funcs
3152
3153         * lyxfunc.C: adjust
3154
3155         * bufferview_funcs.C (toggleAndShow): adjust
3156
3157         * RowList.h: Remove class RowList from file leave just a
3158         std::list<Row>.
3159
3160         * RowList.C: delete file
3161
3162         * Makefile.am (lyx_SOURCES): remove RowList.C, add lyxrow_funcs.C
3163         and lyxrow_funcs.h
3164
3165 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3166
3167         * text3.C (cursorPrevious): adjust
3168         (cursorNext): adjust
3169         (dispatch): adjust
3170
3171         * text2.C (redoHeightOfParagraph): adjust
3172         (redoDrawingOfParagraph): adjust
3173         (setCursor): adjust
3174
3175         * text.C (breakParagraph): adjust
3176         (insertChar): adjust
3177         (backspace): adjust
3178
3179         * rowpainter.C (RowPainter): adjust
3180         (leftMargin): simplify and adjust
3181         (most rowpainter functions): adjust.
3182
3183         * rowpainter.h: store the row as RowList::iterator not as Row*
3184
3185         * lyxcursor.C (row): taka RowList::iterator as arg
3186         (irow): ditto
3187
3188         * lyxcursor.h: make the LyXCursor store RowList::iterators instead
3189         of Row*.
3190
3191 2003-04-01  Angus Leeming  <leeming@lyx.org>
3192
3193         * bufferview_funcs.C (string2font): rewrite so that it no longer uses
3194         stuff like bool Bool.
3195
3196 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
3197
3198         * text2.C (redoParagraphs): fix a bug (introduced by myself) and
3199         rewrite a loop
3200
3201 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3202
3203         * text2.C (redoParagraphs): rewrite (with help from Alfredo) for
3204         RowList::iterator.
3205
3206         * lyxtext.h (rows): drop one version and leve a const variant that
3207         returns a RowList::iterator.
3208
3209 2003-03-31  Angus Leeming  <leeming@lyx.org>
3210
3211         * text.C (fill): ensure that the signature is the same as that in the
3212         header file.
3213
3214 2003-03-31  Lars Gullik Bjønnes  <larsbj@gullik.net>
3215
3216         * text2.C (redoParagraphs): adjust
3217         (updateCounters): adjust
3218         (checkParagraph): adjust
3219         (getColumnNearX): adjust and reformat a bit.
3220
3221         * text.C (top_y): adjust
3222         (workWidth): adjust
3223         (leftMargin): adjust
3224         (prepareToPrint): adjust
3225         (getRow): adjust
3226         (getRowNearY): adjust
3227
3228         * lyxtext.h: make rowlist_ mutable.
3229
3230         * RowList.h: add const_iterator
3231         * RowList.C: adjust for RowList::const_iterator.
3232
3233         * text2.C (getCursorX): make it take a RowList::iterator as arg,
3234         adjust.
3235
3236 2003-03-31  John Levon  <levon@movementarian.org>
3237
3238         * lyxrc.h:
3239         * lyxrc.C: moved pdf_mode and use_gui to elsewhere
3240
3241         * lyx_main.C: set default fonts from using lyx_gui funcs
3242
3243         * exporter.C: pdf_mode moved from lyxrc
3244
3245         * lyx_cb.C:
3246         * lyxfunc.C: changes from above
3247
3248 2003-03-31  John Levon  <levon@movementarian.org>
3249
3250         * lyx_main.C: fix to the last fix
3251
3252 2003-03-31  John Levon  <levon@movementarian.org>
3253
3254         * bufferlist.C: "Load original" -> "Load Original"
3255
3256         * converter.C:
3257         * exporter.C:
3258         * importer.C:
3259         * lyx_main.C:
3260         * format.C: more Alert cleanups
3261
3262 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
3263
3264         * text2.C (removeParagraph): make it take a RowList::iterator as
3265         arg, adjust.
3266         (getColumnNearX): make it take a RowList::iterator as arg, adjust.
3267         (postRowPaint): make it take a RowList::iterator as arg, adjust.
3268
3269         * text.C (anchor_row): make it take a RowList::iterator as arg,
3270         adjust.
3271         (computeBidiTables): make it take a const reference to Row instead
3272         of Row pointer, adjust.
3273         (leftMargin): make it take a RowList::iterator as arg, adjust.
3274         (rowBreakPoint): adjust
3275         (breakAgainOneRow): make it take a RowList::iterator as arg,
3276         adjust.
3277         (prepareToPrint): make it take a RowList::iterator as arg, adjust.
3278
3279         * bufferview_funcs.C (toggleAndShow): adjust
3280
3281 2003-03-30  John Levon  <levon@movementarian.org>
3282
3283         * Makefile.am:
3284         * BoostFormat.h:
3285         * boost-inst.C: moved to support
3286
3287         * several files: changes as a result
3288
3289 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
3290
3291         * text2.C (LyXText): adjust.
3292         (init): adjust
3293         (removeRow): make it take a RowList::iterator as arg, adjust.
3294         (fullRebreak): adjust
3295         (deleteEmptyParagraphMechanism): adjust
3296         (clearPaint): adjust
3297         (postPaint): adjust
3298
3299         * text.C (top_y): adjust
3300         (setHeightOfRow): make it take a RowList::iterator as arg, adjust.
3301         (breakAgain): make it take a RowList::iterator as arg, adjust.
3302         (breakParagraph): adjust
3303         (insertChar): adjust
3304         (backspace): adjust
3305
3306         * lyxtext.h: make anchor_row_ be a RowList::iterator, ditto
3307         need_break_row, and refresh_row.
3308
3309         * text3.C (dispatch): adjust
3310
3311         * text2.C (checkParagraph): adjust
3312         (setCursor): adjust
3313         (setCursorFromCoordinates): adjust
3314
3315         * text.C (top_y): adjust
3316         (workWidth): adjust
3317         (getRow): make it return a RowList::iterator, adjust
3318         (getRowNearY): make it return a RowList::iterator, adjust
3319
3320         * text2.C (init): adjust
3321         (insertRow): remove function
3322         (insertParagraph): adjust
3323         (redoParagraphs): adjust
3324         (fullRebreak): adjust
3325         (updateCounters): adjust
3326
3327         * text.C (top_y): rewrite to use RowList iterators.
3328         (top_y): adjust
3329         (setHeightOfRow): rewrite to sue RowList iterators.
3330         (appendParagraph): adjust
3331         (breakAgain): adjust
3332         (breakAgainOneRow): adjust
3333         (breakParagraph): adjust
3334         (getRow): adjust
3335         (getRowNearY): adjust, and remove commented code.
3336
3337         * lyxtext.h (firstRow): delete function
3338         (lastRow): delete function
3339         (rows): new function (const and non-const versions.)
3340         (insertRow): delete function
3341
3342         * lyxrow.[Ch] (Row): new constructor taking a par and a pos
3343
3344 2003-03-29  John Levon  <levon@movementarian.org>
3345
3346         * BufferView_pimpl.C: always update scrollbar top
3347         because pasting text when we're anchored could mean we
3348         miss an update altogether
3349
3350 2003-03-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
3351
3352         * text2.C (init): use rowlist_.end() and not 0.
3353         (insertRow): change to take a RowList::iterator as arg, adjust
3354         for this.
3355         (insertParagraph): change to take a RowList::iterator as arg,
3356         adjust for this.
3357         (redoParagraphs): remove some debug msgs.
3358
3359         * text.C (appendParagraph): change to take a RowList::iterator
3360         arg, adjust for this.
3361         (breakAgain): add an assert
3362         (breakAgainOneRow): ditto
3363
3364 2003-03-29  John Levon  <levon@movementarian.org>
3365
3366         * text2.C: do not clear selection after inc/decDepth
3367         (bug 550)
3368
3369 2003-03-29  John Levon  <levon@movementarian.org>
3370
3371         * BufferView.C:
3372         * buffer.C: fix broken strerrors according to Lars
3373
3374 2003-03-29  John Levon  <levon@movementarian.org>
3375
3376         * converters.C: more Alert cleanups
3377
3378 2003-03-29  John Levon  <levon@movementarian.org>
3379
3380         * bufferview_funcs.C: remove pointless Alert
3381
3382         * buffer.C: fix confusing error message when
3383         a template is chmoded 000
3384
3385 2003-03-29  John Levon  <levon@movementarian.org>
3386
3387         * BufferView.C:
3388         * BufferView.h:
3389         * BufferView_pimpl.C: Alert fixes
3390
3391         * Makefile.am:
3392         * tabular.C:
3393         * tabular-old.C: remove unused table compat reading
3394
3395 2003-03-29  John Levon  <levon@movementarian.org>
3396
3397         * BufferView.C:
3398         * buffer.C:
3399         * lyx_cb.h:
3400         * lyx_cb.C: more Alert cleanups
3401
3402         * lyxfunc.C: don't allow chktex if not latex document
3403
3404 2003-03-29  John Levon  <levon@movementarian.org>
3405
3406         * lyx_cb.C:
3407         * BufferView.C:
3408         * buffer.C: warnings pushed down from support/,
3409         kill err_alert
3410
3411 2003-03-29  John Levon  <levon@movementarian.org>
3412
3413         * lyxfunc.C: safety check for C-r (revert)
3414
3415 2003-03-29  John Levon  <levon@movementarian.org>
3416
3417         * bufferlist.h:
3418         * bufferlist.C: several UI fixes using Alert::prompt.
3419         Fix the pointless looping quit code. Fix stupid revert
3420         behaviour (bug 938)
3421
3422         * lyxvc.h:
3423         * lyxvc.C:
3424         * lyx_cb.C: use Alert::prompt
3425
3426         * lyx_main.C: remove a silly question
3427
3428         * lyxfunc.C: remove a couple of silly questions,
3429         use Alert::prompt
3430
3431 2003-03-28  John Levon  <levon@movementarian.org>
3432
3433         * text2.C: fix bug 974 (End on empty par)
3434
3435 2003-03-28  John Levon  <levon@movementarian.org>
3436
3437         * BufferView_pimpl.C:
3438         * LyXAction.C:
3439         * lfuns.h: remove do-nothing math greek lfuns
3440
3441 2003-03-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
3442
3443         * lyxgluelength.h (isValidGlueLength): add default arg on
3444         parameter 2. Remove default arg from friend in class.
3445
3446         * lyxlength.h (isValidLength): add default arg on parameter 2.
3447         Remove default arg from friend in class.
3448
3449         * text2.C (LyXText): adjust, initialize refresh_row.
3450         (init): adjust
3451         (removeRow): adjust
3452         (insertRow): adjust
3453         (insertParagraph): adjst
3454         (redoParagraphs): adjust
3455         (fullRebreak): adjust
3456         (updateCounters): adjust
3457         (deleteEmptyParagraphMechanism): first attempt at fixing a
3458         crashing bug.
3459
3460         * text.C (top_y): adjust
3461         (setHeightOfRow): adjust
3462         (getRow): adjust
3463         (getRowNearY): adjust
3464
3465         * lyxtext.h: include RowList.h
3466         (~LyXText): not needed anymore, deleted.
3467         (firstRow): modify for RowList
3468         (lastRow): new function
3469         Delete firstrow and lastrow class variables, add a Rowlist
3470         rowlist_ class variable.
3471
3472         * lyxrow.C (lastPos): use empty() and not !size() to check if a
3473         paragraph is empty.
3474
3475         * RowList.C (insert): fix case where it == begin().
3476
3477 2003-03-26  Angus Leeming  <leeming@lyx.org>
3478
3479         * BufferView_pimpl.C (dispatch): changes to the Dialogs interface for
3480         the thesaurus dialog.
3481
3482 2003-03-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
3483
3484         * Makefile.am (lyx_SOURCES): add RowList.[Ch]
3485
3486         * RowList.[Ch]: new files
3487
3488         * ParagraphList.C (erase): handle the case where it == begin
3489         correctly.
3490
3491 2003-03-25  John Levon  <levon@movementarian.org>
3492
3493         * Makefile.am:
3494         * aspell_local.h:
3495         * aspell.C: add new aspell support
3496
3497         * lyxrc.h:
3498         * lyxrc.C: Make use_pspell be use_spell_lib. Always
3499         have it accessible.
3500
3501 2003-03-25  Angus Leeming  <leeming@lyx.org>
3502
3503         * lfuns.h:
3504         * LyXAction.C (init): new LFUN_INSET_INSERT.
3505
3506         * BufferView_pimpl.C (dispatch): split out part of the
3507         LFUN_INSET_APPLY block LFUN_INSET_INSERT.
3508
3509         * factory.C (createInset): act on LFUN_INSET_INSERT rather than
3510         LFUN_INSET_APPLY.
3511
3512 2003-03-25  Angus Leeming  <leeming@lyx.org>
3513
3514         * lyxfunc.C (dispatch): changes to the Dialogs interface.
3515
3516 2003-03-25  Alfredo Braunstein  <abraunst@libero.it>
3517
3518         * text2.C:
3519         * text3.C: remove useless row->height(0)
3520
3521 2003-03-25  John Levon  <levon@movementarian.org>
3522
3523         * lyxtext.h:
3524         * text2.C:
3525         * text3.C: rename the refreshing stuff to better names
3526
3527 2003-03-24  John Levon  <levon@movementarian.org>
3528
3529         * BufferView_pimpl.h:
3530         * BufferView_pimpl.C: update layout choice on a mouse
3531         press/release
3532
3533 2003-03-23  John Levon  <levon@movementarian.org>
3534
3535         * Makefile.am: fix commandtags.h reference
3536
3537 2003-03-22  John Levon  <levon@movementarian.org>
3538
3539         * BufferView_pimpl.C:
3540         * lyxtext.h:
3541         * rowpainter.C:
3542         * rowpainter.h:
3543         * text.C:
3544         * text2.C: remove CHANGED_IN_DRAW, it cannot happen now
3545
3546 2003-03-21  Alfredo Braunstein  <abraunst@libero.it>
3547
3548         * lyxtext.h:
3549         * text.C: take the rtl methods out of line
3550
3551 2003-03-21 André Pönitz <poenitz@gmx.net>
3552
3553         * metricsinfo.[Ch]: new files containing structures to be passed around
3554         during the two-phase-drawing...
3555
3556 2003-03-21 André Pönitz <poenitz@gmx.net>
3557
3558         * lyxtextclass.C: read 'environment' tag.
3559
3560 2003-03-20  Alfredo Braunstein  <abraunst@libero.it>
3561
3562         * text2.C (removeRow): fix bug 964
3563
3564 2003-03-20  John Levon  <levon@movementarian.org>
3565
3566         * rowpainter.C:
3567         * text.C:
3568         * text2.C: paint cleanups. Inset::update() dropped font
3569         parameter
3570
3571 2003-03-19  John Levon  <levon@movementarian.org>
3572
3573         * lyxfunc.C: only fitcursor/markDirty if available()
3574
3575 2003-03-19  John Levon  <levon@movementarian.org>
3576
3577         * commandtags.h: rename to ...
3578
3579         * lfuns.h: ... this, and renumber / cleanup
3580
3581 2003-03-19  John Levon  <levon@movementarian.org>
3582
3583         * lyxfunc.C: mark buffer dirty if we executed a "dirtying" lfun.
3584         fit the cursor after an lfun
3585
3586         * BufferView.h:
3587         * BufferView.C:
3588         * BufferView_pimpl.h:
3589         * BufferView_pimpl.C: remove BufferView::FITCUR/CHANGE
3590
3591         * LyXAction.C: layout-character should have ReadOnly
3592
3593         * ParagraphParameters.C:
3594         * buffer.C:
3595         * bufferview_funcs.C:
3596         * lyx_cb.C:
3597         * lyxfind.C:
3598         * lyxtext.h:
3599         * text.C:
3600         * text2.C:
3601         * text3.C:
3602         * undo_funcs.C: changes from above
3603
3604 2003-03-18  John Levon  <levon@movementarian.org>
3605
3606         * BufferView_pimpl.C (scrollDocView): add updateLayoutChoice(),
3607         remove it from update()
3608
3609         * lyxfunc.C: update layout choice after an lfun
3610
3611         * text3.C: remove extra updateLayoutChoice()s
3612
3613 2003-03-18  John Levon  <levon@movementarian.org>
3614
3615         * text.C: top_y change means full repaint, fix
3616         a drawing bug with cursor movement
3617
3618 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
3619
3620         * lyxtext.h:
3621         * text.C:
3622         * text2.C: anchor row on setCursor
3623
3624 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
3625
3626         * lyxtext.h: remove almost all mutable keywords
3627         * text.C:
3628         * text2.C:
3629         * text3.C: remove const keywords accordingly
3630
3631 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
3632
3633         * paragraph_funcs.C (TeXDeeper): reduce number of args, move into
3634         anon namespace
3635         (TeXEnvironment): ditto
3636         (TeXOnePar): ditto
3637
3638 2003-03-17  John Levon  <levon@movementarian.org>
3639
3640         * text.C (rowBreakPoint): remove attempt to fix displayed
3641         math insets inside a manual label
3642
3643 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
3644
3645         * lyxtext.h: remove BufferView* as first arg from almost all class
3646         functions.
3647         * other files: adjust.
3648
3649 2003-03-17  John Levon  <levon@movementarian.org>
3650
3651         * lyxtext.h:
3652         * undo_funcs.C:
3653         * text2.C: more paint cleanups
3654
3655         * BufferView_pimpl.C: screen prototype changed, use postPaint etc.
3656
3657         * rowpainter.h:
3658         * rowpainter.C: remove "smart" background painting code
3659
3660 2003-03-16  John Levon  <levon@movementarian.org>
3661
3662         * lyxtext.h:
3663         * text.C:
3664         * text2.C:
3665         * text3.C: add helper functions for setting refresh_row/y
3666
3667 2003-03-14  Kayvan Sylvan  <kayvan@sylvan.com>
3668
3669         * paragraph_pimpl.C (simpleTeXSpecialChars): Added fix for the
3670         newline inset which *can* get inserted in the pass_thru layouts.
3671         This is primarily for literate documents.
3672
3673 2003-03-14  Dekel Tsur  <dekelts@tau.ac.il>
3674
3675         * buffer.C: increment LYX_FORMAT to 223
3676
3677 2003-03-14 André Pönitz <poenitz@gmx.net>
3678
3679         * textclass.h: prepare for environment handling, ws changes
3680         * lyxlayout.C: read latexheader and latexfooter tags
3681
3682 2003-03-14  John Levon  <levon@movementarian.org>
3683
3684         * text2.C: rewrite ::status() a bit
3685
3686 2003-03-13  John Levon  <levon@movementarian.org>
3687
3688         * lyxtext.h: add some docs
3689
3690 2003-03-13  John Levon  <levon@movementarian.org>
3691
3692         * lyxtext.h:
3693         * text.C:
3694         * text2.C:
3695         * text3.C: remove pointless 2nd arg to setHeightOfParagraph()
3696
3697 2003-03-13  John Levon  <levon@movementarian.org>
3698
3699         * text3.C: fix appendix redrawing
3700
3701 2003-03-13  John Levon  <levon@movementarian.org>
3702
3703         * text.C (setHeightOfRow):
3704         * rowpainter.h:
3705         * rowpainter.C: make appendix mark have the text
3706           "Appendix" so the user knows what it is
3707
3708         * LColor.h:
3709         * LColor.C: s/appendixline/appendix/ from above
3710
3711 2003-03-13  John Levon  <levon@movementarian.org>
3712
3713         * paragraph_pimpl.C: fix Andre's backing out of the strong assertion
3714
3715         * text.C: fix a getChar(pos) bug properly
3716
3717 2003-03-13  Angus Leeming  <leeming@lyx.org>
3718
3719         * commandtags.h:
3720         * LyXAction.C (init): new LFUNs PARAGRAPH_APPLY and PARAGRAPH_UPDATE.
3721         Probably only temporary. Let's see how things pan out.
3722
3723         * BufferView.C (unlockInset):
3724         * BufferView_pimpl.C (fitCursor):
3725         replace Dialogs::updateParagraph with dispatch(LFUN_PARAGRAPH_UPDATE).
3726
3727         * BufferView_pimpl.C (dispatch): code for LFUNs LAYOUT_PARAGRAPH,
3728         PARAGRAPH_UPDATE, PARAGRAPH_APPLY.
3729
3730         * ParagraphParameters.[Ch] (setParagraphParams, params2string):
3731         new functions that convert ParagraphParameters to and from a string.
3732
3733         * lyxfunc.C (dispatch): move LFUN_LAYOUT_PARAGRAPH to
3734         BufferView::Pimpl's dispatch.
3735         In LFUN_ESCAPE, dispatch LFUN_PARAGRAPH_UPDATE.
3736
3737 2003-03-13 André Pönitz <poenitz@gmx.net>
3738
3739         * lyxfunc.C:
3740         * text3.C:
3741         * factory.C: make it aware of InsetEnv
3742
3743 2003-03-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
3744
3745         * text2.C (setCursor): never ask for one past last
3746         (setCursor): add some debugging messages.
3747
3748         * text.C (singleWidth): never ask for one past last
3749         (singleWidth): ditto
3750         (leftMargin): ditto
3751         (rightMargin): ditto
3752         (rowBreakPoint): ditto
3753         (setHeightOfRow): ditto
3754         (prepareToPrint): ditto
3755
3756         * rowpainter.C (paintBackground): never ask for one past last
3757         (paintText): never ask for one past last
3758
3759         * paragraph_pimpl.C (getChar): make the assert stricter, never
3760         allow the one past last pos to be taken
3761
3762         * paragraph.C (getChar): ws changes only
3763
3764         * lyxrow.C (nextRowIsAllInset): never ask for one past last
3765         (numberOfSeparators): ditto
3766         (numberOfHfills): ditto
3767
3768 2003-03-12  John Levon  <levon@movementarian.org>
3769
3770         * author.h:
3771         * author.C:
3772         * bufferparams.h:
3773         * bufferparams.C:
3774         * paragraph_funcs.C: fix per-buffer authorlists
3775
3776 2003-03-12  John Levon  <levon@movementarian.org>
3777
3778         * text.C: fix newline in right address
3779
3780 2003-03-12  Angus Leeming  <leeming@lyx.org>
3781
3782         * BufferView_pimpl.C (dispatch): remove LFUNs from switch as they
3783         duplicate those in LyXFunc::dispatch.
3784
3785         * commandtags.h:
3786         * LyXAction.C:
3787         * ToolbarDefaults.C:
3788         rename LFUN_FREE as LFUN_FONTFREE_APPLY.
3789         Add LFUN_FONTFREE_UPDATE.
3790
3791         * lyxfunc.C (dispatch): code for LFUN_FREEFONT_APPLY,
3792         LFUN_FREEFONT_UPDATE, LFUN_LAYOUT_CHARACTER.
3793
3794         * bufferview_func.[Ch]: several new functions to facilliate
3795         transfer of data to and from the character dialog.
3796
3797 2003-03-12  John Levon  <levon@movementarian.org>
3798
3799         * buffer.C:
3800         * paragraph.h:
3801         * paragraph.C:
3802         * paragraph_funcs.C:
3803         * paragraph_pimpl.C:
3804         * sgml.C:
3805         * tabular.C:
3806         * text.C:
3807         * text3.C: remove META_NEWLINE in favour of an inset
3808
3809         * rowpainter.h:
3810         * rowpainter.C: remove paintNewline (done by inset)
3811
3812 2003-03-12  John Levon  <levon@movementarian.org>
3813
3814         * paragraph_pimpl.C: complain about bad getChar()s
3815         for a while at least
3816
3817 2003-03-12  John Levon  <levon@movementarian.org>
3818
3819         * buffer.h:
3820         * buffer.C: move paragraph read into a separate function,
3821         a little renaming to reflect that.
3822
3823         * bufferparams.h:
3824         * bufferparams.C: remove the author_ids map, not necessary now
3825
3826         * factory.h:
3827         * factory.C: moved Buffer::readInset to here
3828
3829         * paragraph_funcs.h:
3830         * paragraph_funcs.C: readParagraph free function moved from
3831         buffer.C
3832
3833         * tabular.C: name change
3834
3835 2003-03-12  John Levon  <levon@movementarian.org>
3836
3837         * buffer.C:
3838         * ParagraphParameters.C: move par params input to
3839         a read() method
3840
3841         * lyxlex_pimpl.C: make nextToken()/next() after a pushToken()
3842         behave like a normal read from the stream wrt reading
3843         a line vs. a \\token
3844
3845 2003-03-12  John Levon  <levon@movementarian.org>
3846
3847         * paragraph.C:
3848         * ParagraphParameters.h:
3849         * ParagraphParameters.C: move output code to a
3850         ::write() method
3851
3852 2003-03-12  John Levon  <levon@movementarian.org>
3853
3854         * BufferView.C (insertLyXFile):
3855         * buffer.h:
3856         * buffer.C:
3857         * tabular.C: use a parlist iterator for creating the
3858           document.
3859
3860 2003-03-12  John Levon  <levon@movementarian.org>
3861
3862         * buffer.C: make current_change static local not
3863           static file-scope
3864
3865 2003-03-12  John Levon  <levon@movementarian.org>
3866
3867         * buffer.C: fix insertStringAsLines for change tracking
3868
3869 2003-03-12  John Levon  <levon@movementarian.org>
3870
3871         * BufferView.C:
3872         * tabular.C:
3873         * buffer.h:
3874         * buffer.C:
3875         * bufferparams.h:
3876         * bufferparams.C: move author list into params. Rename some
3877           functions. Move the header reading into a separate token
3878           loop. Move the header token reading into BufferParams.
3879
3880 2003-03-12  John Levon  <levon@movementarian.org>
3881
3882         * changes.C: put debug inside lyxerr.debugging() checks
3883
3884 2003-03-11 André Pönitz <poenitz@gmx.net>
3885
3886         * factory.C: make it aware of InsetHFill
3887
3888 2003-03-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3889
3890         * buffer.C (latexParagraphs): move function from here...
3891         * paragraph_funcs.C (latexParagraphs): ...to here, and adjust
3892         args.
3893
3894 2003-03-10  Angus Leeming  <leeming@lyx.org>
3895
3896         * LyXAction.C (init): fix bug in poplating array with multiple entries
3897         with the same LFUN (spotted by JMarc).
3898
3899 2003-03-10  John Levon  <levon@movementarian.org>
3900
3901         * text.C:
3902         * text2.C: move getColumnNearX() near its
3903         only call site
3904
3905 2003-03-10  John Levon  <levon@movementarian.org>
3906
3907         * text.C: fix break before a minipage
3908
3909 2003-03-10  John Levon  <levon@movementarian.org>
3910
3911         * text.C: fix the last commit
3912
3913 2003-03-09  John Levon  <levon@movementarian.org>
3914
3915         * lyxtext.h:
3916         * text.C:
3917         * text2.C: clean up nextBreakPoint (now rowBreakPoint). Fix
3918         bug 365 (don't break before insets unless needed). Don't
3919         return a value > last under any circumstances.
3920
3921 2003-03-09  Angus Leeming  <leeming@lyx.org>
3922
3923         * BufferView_pimpl.C (trackChanges, dispatch): call
3924         Dialogs::show("changes") rather than Dialogs::showMergeChanges().
3925
3926 2003-03-09  Angus Leeming  <leeming@lyx.org>
3927
3928         * lyxfunc.C (dispatch): call Dialogs::show("about") rather
3929         than Dialogs::showAboutlyx().
3930
3931 2003-03-09  Angus Leeming  <leeming@lyx.org>
3932
3933         * factory.C (createInset): call Dialogs::show("tabularcreate") rather
3934         than Dialogs::showTabularCreate().
3935
3936 2003-03-09  John Levon  <levon@movementarian.org>
3937
3938         * lyxtext.h:
3939         * text.C:
3940         * text2.C: 3rd arg to nextBreakPoint was always the same.
3941           Use references.
3942
3943 2003-03-08  John Levon  <levon@movementarian.org>
3944
3945         * lyxrow.C:
3946         * paragraph.C:
3947         * paragraph.h:
3948         * rowpainter.C:
3949         * text.C:
3950         * text2.C: Remove the "main" bit from the "main body"
3951           notion.
3952
3953 2003-03-08  John Levon  <levon@movementarian.org>
3954
3955         * text.C (leftMargin): The left margin of an empty
3956         manual label paragraph should not include the label width
3957         string length.
3958
3959         * text.C (prepareToPrint): don't attempt to measure hfills
3960         for empty manual label paragraphs - the answer should be 0
3961
3962 2003-03-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
3963
3964         * CutAndPaste.C: remove commented code and reindent.
3965
3966 2003-03-08  John Levon  <levon@movementarian.org>
3967
3968         * lyxfunc.h:
3969         * lyxfunc.C: move reloadBuffer()
3970
3971         * BufferView.h:
3972         * BufferView.C: to here
3973
3974         * lyxvc.C: add comment
3975
3976         * vc-backend.h:
3977         * vc-backend.C: call bv->reload() to avoid
3978           getStatus() check on MENURELOAD
3979
3980 2003-03-07  Dekel Tsur  <dekelts@tau.ac.il>
3981
3982         * LaTeX.C (run): Fix a bug where the DVI file was not updated due
3983         to an old format .dep file.
3984
3985 2003-03-07  Angus Leeming  <leeming@lyx.org>
3986
3987         * text3.C (dispatch): remove the 'gross hack' of calling inset->edit
3988         when the LFUN_MOUSE_RELEASE should have been handled by
3989         inset->localDispatch.
3990
3991 2003-03-07  Angus Leeming  <leeming@lyx.org>
3992
3993         * BufferView_pimpl.C (dispatch):
3994         * LyXAction.C (init):
3995         * ToolbarDefaults.C (init):
3996         * commandtags.h:
3997         * lyxfunc.C (getStatus):
3998         remove LFUN_INSET_GRAPHICS.
3999
4000         * factory.C (createInset): add "graphics" to LFUN_INSET_APPLY.
4001
4002 2003-03-07  Angus Leeming  <leeming@lyx.org>
4003
4004         * commandtags.h:
4005         * LyXAction.C (init):
4006         * lyxfunc.C (getStatus): remove LFUN_REF_INSERT.
4007
4008         * lyxfunc.C (getStatus): add LFUN_DIALOG_SHOW_NEW_INSET to switch.
4009
4010         * commandtags.h:
4011         * LyXAction.C: add LFUN_INSET_DIALOG_UPDATE.
4012
4013         * lyxfunc (dispatch): on LFUN_DIALOG_UPDATE, pass the 'open' inset's
4014         localDispatch method LFUN_INSET_DIALOG_UPDATE.
4015
4016 2003-03-07  Angus Leeming  <leeming@lyx.org>
4017
4018         * lyxfunc.C (dispatch): add "include" to LFUN_SHOW_NEW_INSET and
4019         remove "ert".
4020
4021 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
4022
4023         * ParagraphList.C (front): new function
4024         (back): implement
4025
4026 2003-03-06  Alfredo Braunstein  <abraunst@libero.it>
4027
4028         * lyxtext.h (top_y): added these 2 methods, and private vars top_row_
4029         and top_row_offset_. removed var first_y.
4030         * text.C (top_y):
4031         * text2.C (LyXText, removeRow):
4032         * text3.C:
4033         * BufferView_pimpl.C:
4034         use these methods instead of using first_y
4035
4036 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
4037
4038         * text2.C (pasteSelection): adjust for checkPastePossible
4039
4040         * CutAndPaste.C: remove Paragraph * buf and replace with
4041         ParagraphList paragraphs.
4042         (DeleteBuffer): delete
4043         (cutSelection): change the tc type to textclass_type
4044         (copySelection): change the tc type to textclass_type
4045         (copySelection): adjust for ParagraphList
4046         (pasteSelection): change the tc type to textclass_type
4047         (pasteSelection): adjust for Paragraphlist
4048         (nrOfParagraphs): simplify for ParagraphList
4049         (checkPastePossible): simplify for ParagraphList
4050         (checkPastePossible): remove unused arg
4051
4052         * ParagraphList.C (insert): handle the case where there are no
4053         paragraphs yet.
4054
4055         * CutAndPaste.h: make CutAndPaste a namespace.
4056
4057         * text3.C (dispatch): adjust
4058
4059         * text.C (breakParagraph): add a ParagraphList as arg
4060
4061         * paragraph_funcs.C (breakParagraph): change to take a
4062         BufferParams and a ParagraphList as args.
4063         (breakParagraphConservative): ditto
4064         (mergeParagraph): ditto
4065         (TeXDeeper): add a ParagraphList arg
4066         (TeXEnvironment): ditto
4067         (TeXOnePar): ditto
4068
4069         * buffer.C (readLyXformat2): adjust
4070         (insertStringAsLines): adjust
4071         (latexParagraphs): adjust
4072
4073         * CutAndPaste.C (cutSelection): use 'true' not '1' as truth value.
4074         (cutSelection): adjust
4075         (pasteSelection): adjust
4076
4077         * BufferView_pimpl.C (insertInset): adjust
4078
4079 2003-03-05  Angus Leeming  <leeming@lyx.org>
4080
4081         * commandtags.h:
4082         * LyXAction.C (init):
4083         * BufferView_pimpl.C (dispatch):
4084         * lyxfunc.C (getStatus):
4085         remove LFUN_CHILD_INSERT.
4086
4087         * factory.C (createInset): add "include" to LFUN_INSET_APPLY.
4088
4089 2003-03-05  Angus Leeming  <leeming@lyx.org>
4090
4091         * commandtags.h:
4092         * LyXAction.C (init):
4093         * src/factory.C (createInset):
4094         * lyxfunc.C (getStatus):
4095         * text3.C (dispatch):
4096         remove LFUN_INSET_EXTERNAL and LFUN_INSERT_URL
4097
4098         * factory.C (createInset): add "external" to LFUN_INSET_APPLY.
4099
4100 2003-03-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
4101
4102         * ParagraphList.C (insert): handle insert right before end()
4103         (erase): fix cases where it can be first or last paragraph.
4104
4105 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4106
4107         * paragraph_funcs.C (TeXEnvironment): remove all usage of
4108         Paragraph::next and Paragraph::previous
4109         (TeXOnePar): ditto
4110
4111         * text.C (breakParagraph): adjust
4112
4113         * paragraph_funcs.C (breakParagraph): take a Buffer* instead of a
4114         BufferParams& as arg.
4115         (breakParagraph): use ParagraphList::insert
4116         (breakParagraphConservative): take a Buffer* instead of a
4117         BufferParams& as arg.
4118         (breakParagraphConservative): use ParagraphList::insert.
4119
4120         * buffer.C (insertStringAsLines): un-const it
4121         (insertStringAsLines): adjust
4122
4123         * ParagraphList.C (insert): new function
4124
4125         * CutAndPaste.C (pasteSelection): adjust
4126
4127         * text.C (backspace): adjust
4128
4129         * tabular.C (SetMultiColumn): adjust
4130
4131         * CutAndPaste.C (cutSelection): adjust
4132         (pasteSelection): adjust
4133
4134         * tabular.C (SetMultiColumn): make it take a Buffer* instead of a
4135         Buffer const * as arg
4136
4137         * ParagraphList.C (erase): new function
4138         * paragraph_funcs.C (mergeParagraph): use it
4139         (mergeParagraph): make it take a Buffer* instead of a
4140         BufferParams* as arg
4141
4142         * paragraph_funcs.C (breakParagraph): take ParagraphList::iterator
4143         as arg
4144         (breakParagraphConservative): ditto
4145
4146         * paragraph.h: remove the breakParagraph friend
4147
4148         * paragraph.C (eraseIntern): new function
4149         (setChange): new function
4150
4151         * paragraph_funcs.C (mergeParagraph): make it take a
4152         ParagraphList::iterator instead of a Paragraph *, adjust
4153         accordingly.
4154
4155         * paragraph.h: move an #endif so that the change tracking stuff
4156         also works in the NO_NEXT case.
4157
4158 2003-03-04  Angus Leeming  <leeming@lyx.org>
4159
4160         * commandtags.h:
4161         * LyXAction.C: new LFUN_INSET_MODIFY.
4162
4163         * BufferView_pimpl.C (dispatch): if an inset is found to be open
4164         on LFUN_INSET_APPLY, pass LFUN_INSET_MODIFY to its localDispatch.
4165
4166 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4167
4168         * several files: ws changes only
4169
4170         * paragraph_funcs.C (TeXOnePar): take ParagraphList::iterator as args
4171         (TeXEnvironment): ditto
4172         (TeXDeeper): ditto
4173
4174         * buffer.C (makeLaTeXFile): adjust
4175         (latexParagraphs): make it take ParagraphList::iterator as args
4176
4177 2003-03-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
4178
4179         * buffer.C (latexParagraphs): adjust
4180
4181         * paragraph.C (TeXOnePar): move function...
4182         (optArgInset): move function...
4183         (TeXEnvironment): move function...
4184         * paragraph_pimpl.C (TeXDeeper): move function...
4185         * paragraph_funcs.C: ...here
4186
4187         * tabular.C (UseParbox): rewrite to use ParagraphList iterators.
4188
4189 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4190
4191         * buffer.C (readInset): remove compability code for old Figure and
4192         InsetInfo insets
4193
4194 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4195
4196         * buffer.C: ws changes
4197         (readInset):
4198
4199         * BufferView_pimpl.C: ditto
4200         * author.C: ditto
4201         * buffer.h: ditto
4202         * bufferlist.h: ditto
4203         * changes.h: ditto
4204         * lyxfunc.C: ditto
4205
4206 2003-02-28  Alfredo Braunstein <abraunst@libero.it>
4207
4208         * converter.[Ch]: split into itself +
4209         * graph.[Ch]
4210         * format.[Ch]
4211         * Makefile.am: += graph.[Ch] + format.[Ch]
4212         * MenuBackend.C
4213         * buffer.C
4214         * exporter.C
4215         * importer.C
4216         * lyx_main.C
4217         * lyxfunc.C
4218         * lyxrc.C: added #include "format.h"
4219
4220 2003-02-27  Angus Leeming  <leeming@lyx.org>
4221
4222         * BufferView_pimpl.C (dispatch): call a real, LyX dialog to insert
4223           a label.
4224
4225         * factory.C (createInset): add "label" to the factory.
4226
4227         * lyx_cb.[Ch] (getPossibleLabel): rewrite MenuInsertLabel to return the
4228           string and do no more.
4229
4230 2003-02-27  Angus Leeming  <leeming@lyx.org>
4231
4232         * commandtags.h:
4233         * LyXAction.C (init):
4234         * factory.C (createInset):
4235         * BufferView_pimpl.C (dispatch):
4236           collapse LFUN_XYZ_APPLY to LFUN_INSET_APPLY.
4237
4238         * lyxfunc.C (getStatus): remove LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY.
4239
4240         * lyxfunc.C (dispatch):
4241         * text3.C (dispatch): pass name to params2string.
4242
4243 2003-02-26  Angus Leeming  <leeming@lyx.org>
4244
4245         * BufferView_pimpl.C (dispatch): collapse the various LFUN_XYZ_APPLY
4246           blocks together.
4247           Rearrange the ~includes. Strip out the unnecessary ones.
4248
4249         * factory.C (createInset): reformat.
4250           create new insets for the various LFUN_XYZ_APPLY lfuns.
4251
4252 2003-02-26  John Levon  <levon@movementarian.org>
4253
4254         * lyxrow.h:
4255         * lyxrow.C: add isParStart,isParEnd helpers
4256
4257         * paragraph.h: make isInserted/DeletedText take refs
4258
4259         * paragraph_funcs.h:
4260         * paragraph_funcs.C: remove #if 0'd code
4261
4262         * lyxtext.h:
4263         * text3.C:
4264         * text2.C:
4265         * text.C: use lyxrow helpers above.
4266           Move draw and paint routines to RowPainter.
4267           Make several methods use refs not pointers.
4268           Make backgroundColor() const.
4269           Add markChangeInDraw(), isInInset().
4270           Merge changeRegionCase into changeCase.
4271           Make workWidth() shouldn't-happen code into an Assert.
4272
4273         * rowpainter.h:
4274         * rowpainter.C: new class for painting a row.
4275
4276         * vspace.h:
4277         * vspace.C: make inPixels take a ref
4278
4279 2003-02-26  Angus Leeming  <leeming@lyx.org>
4280
4281         * BufferView_pimpl.C (dispatch): use InsetCommand::localDispatch for
4282         LFUN_REF_APPLY.
4283
4284 2003-02-25  John Levon  <levon@movementarian.org>
4285
4286         * ispell.C: give the forked command a more accurate name
4287
4288 2003-02-22  John Levon  <levon@movementarian.org>
4289
4290         * toc.h:
4291         * toc.C: make TocItem store an id not a Paragraph *
4292           (bug #913)
4293
4294 2003-02-21  Angus Leeming  <leeming@lyx.org>
4295
4296         * commandtags.h: Retire LFUN_CITATION_INSERT, LFUN_CITATION_CREATE,
4297           LFUN_INSERT_BIBTEX, LFUN_BIBTEX_STYLE, LFUN_BIBDB_ADD, LFUN_BIBDB_DEL.
4298           Bring to life LFUN_DIALOG_SHOW_NEW_INSET, LFUN_DIALOG_SHOW_NEXT_INSET,
4299           LFUN_DIALOG_UPDATE, LFUN_DIALOG_HIDE, LFUN_DIALOG_DISCONNECT_INSET,
4300           LFUN_BIBITEM_APPLY, LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY,
4301           LFUN_INDEX_APPLY, LFUN_REF_APPLY, LFUN_TOC_APPLY, LFUN_URL_APPLY,
4302
4303         * BufferView_pimpl.C (dispatch):
4304         * LyXAction.C (init):
4305         * factory.C (createInset):
4306         * lyxfunc.C (getStatus, dispatch):
4307         * text3.C (dispatch): retire old LFUNs and bring new ones to life.
4308
4309 2003-02-21  Angus Leeming  <leeming@lyx.org>
4310
4311         * BufferView_pimpl.C (MenuInsertLyXFile):
4312         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
4313         * lyxfunc.C (menuNew, open, doImport):
4314           no longer pass a LyXView & to fileDlg.
4315
4316 2003-02-21  Angus Leeming  <leeming@lyx.org>
4317
4318         * BufferView_pimpl.C: replace insetbib.h with insetbibtex.h.
4319         * LyXAction.C: change, BIBKEY to BIBITEM.
4320         * buffer.C: replace insetbib.h with insetbibitem.h and insetbibtex.h.
4321         Change InsetBibKey to InsetBibitem.
4322         Change BIBKEY_CODE to BIBITEM_CODE.
4323         * commandtags.h: change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
4324         * factory.C: replace insetbib.h with insetbibitem.h.
4325         Change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
4326         * paragraph.C: replace insetbib.h with insetbibitem.h.
4327         * paragraph.[Ch]: change InsetBibKey to InsetBibitem.
4328         Change bibkey() to bibitem().
4329         * text.C: remove insetbib.h.
4330         * text2.C: replace insetbib.h with insetbibitem.h.
4331         change bibkey() to bibitem().
4332         * text3.C: remove insetbib.h.
4333         change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
4334
4335 2003-02-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4336
4337         * lyxrc.C (output): enclose user email in quotes (in case there are
4338         several words)
4339
4340 2003-02-18  John Levon  <levon@movementarian.org>
4341
4342         * buffer.h: add std::
4343
4344 2003-02-17  John Levon  <levon@movementarian.org>
4345
4346         * SpellBase.h:
4347         * ispell.h:
4348         * ispell.C:
4349         * pspell.h:
4350         * pspell.C: reworking. Especially in ispell, a large
4351           number of clean ups and bug fixes.
4352
4353         * lyxfunc.C: fix revert to behave sensibly
4354
4355 2003-02-17 André Pönitz <poenitz@gmx.net>
4356
4357         * LyXAction.C:
4358         * commandtags.h: new LFUN_INSERT_BIBKEY
4359
4360         * layout.h:
4361         * lyxlayout.C:
4362         * buffer.C:
4363         * factory.C:
4364         * text.C:
4365         * text2.C:
4366         * text3.C:
4367         * paragraph.[Ch]:
4368         * paragraph_func.C: remove special bibkey handling
4369
4370 2003-02-17  John Levon  <levon@movementarian.org>
4371
4372         * text.C (Delete): fix case where delete at the end of
4373           the very first paragraph would not merge the pars
4374
4375 2003-02-17  John Levon  <levon@movementarian.org>
4376
4377         * lyxrow.C: fix lastPrintablePos()
4378
4379 2003-02-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4380
4381         * bufferparams.C (writeLaTeX): add a std:here
4382
4383         * buffer.C: and remove a using directive there
4384
4385 2003-02-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4386
4387         * buffer.C (makeLaTeXFile): move the code that generates the
4388           preamble...
4389
4390         * bufferparams.C (writeLaTeX): ... in this new method
4391
4392         * LaTeXFeatures.C (getEncodingSet): make const
4393           (getLanguages): make const
4394
4395         * MenuBackend.C (binding): returns the binding associated to this
4396           action
4397           (add): sets the status of each item by calling getStatus. Adds
4398           some intelligence.
4399           (read): add support for OptSubMenu
4400           (expand): remove extra separator at the end of expanded menu
4401
4402 2003-02-15  John Levon  <levon@movementarian.org>
4403
4404         * BufferView.C:
4405         * BufferView_pimpl.C:
4406         * bufferlist.h:
4407         * bufferlist.C: remove pointless BufferStorage bloat. Remove
4408           inset code that had no actual effect. Remove unneeded status
4409           code.
4410
4411 2003-02-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4412
4413         * buffer.C (makeLaTeXFile): fix counting of number of line feeds
4414           in preamble
4415
4416 2003-02-14  Michael Schmitt <michael.schmitt@teststep.org>
4417
4418         * text.C (drawLengthMarker): also draw an arrow marker for
4419           symbolic lengths (medskip...)
4420
4421 2003-02-14  John Levon  <levon@movementarian.org>
4422
4423         * tabular.h:
4424         * tabular.C: better method names
4425
4426 2003-02-14  John Levon  <levon@movementarian.org>
4427
4428         * BufferView_pimpl.C:
4429         * bufferlist.C:
4430         * buffer.C:
4431         * converter.C:
4432         * lyx_cb.C:
4433         * lyxfunc.C: change prohibit/allowInput to busy(bool), as
4434           it's a more accurate name. Remove some pointless uses.
4435
4436 2003-02-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4437
4438         * text2.C (LyXText): change order of initilizers to shut off
4439           warnings
4440
4441 2003-02-14  John Levon  <levon@movementarian.org>
4442
4443         * buffer.C: use ParIterator for getParFromID()
4444
4445         * paragraph.h:
4446         * paragraph.C:
4447         * paragraph_pimpl.h:
4448         * paragraph_pimpl.C: remove unused getParFromID()
4449
4450 2003-02-14  John Levon  <levon@movementarian.org>
4451
4452         * buffer.C: remove some very old #if 0'd parse code
4453
4454 2003-02-13  John Levon  <levon@movementarian.org>
4455
4456         * text.h:
4457         * text.C:
4458         * text2.C: move hfillExpansion(), numberOfSeparators(),
4459           rowLast(), rowLastPrintable(), numberofHfills(),
4460           numberOfLabelHfills() ...
4461
4462         * lyxrow.h:
4463         * lyxrow.C: ... to member functions here.
4464
4465         * paragraph.h:
4466         * paragraph.C:
4467         * lyxtext.h:
4468         * text.C: remove LyXText::beginningOfMainBody(), and call
4469           p->beginningOfMainBody() directly. Move the check for
4470           LABEL_MANUAL into the latter.
4471
4472         * text.h:
4473         * text.C:
4474         * text2.C:
4475         * vspace.C:
4476         * BufferView.h:
4477         * BufferView.C: make defaultHeight() be a free defaultRowHeight()
4478
4479         * text.h:
4480         * text.C:
4481         * text2.C:
4482         * text3.C:
4483         * frontends/screen.C: move bv_owner private, introduce isTopLevel()
4484           to make it clear we're testing for outmost-lyxtext vs. inset's lyxtext
4485
4486 2003-02-13  John Levon  <levon@movementarian.org>
4487
4488         * CutAndPaste.C: remove debug
4489
4490 2003-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4491
4492         * paragraph.C (asString): remove two unused variables
4493
4494         * lyxtextclass.C (readTitleType):
4495           (Read):
4496           (LyXTextClass): handle new members titletype_ and titlename_
4497
4498         * buffer.C (latexParagraphs): honor LyXTextClass::titletype
4499
4500 2003-02-09  John Levon  <levon@movementarian.org>
4501
4502         * buffer.h:
4503         * buffer.C: replace hand-coded list with a map for the dep clean
4504
4505 2003-02-08  John Levon  <levon@movementarian.org>
4506
4507         * LaTeX.C: consolidate code into showRunMessage() helper
4508
4509 2003-02-08  John Levon  <levon@movementarian.org>
4510
4511         * lyxfind.C:
4512         * lyxtext.h:
4513         * text2.C:
4514         * BufferView.C: change setSelectionOverString() to setSelectionRange()
4515           and pass the size in explicitly
4516
4517         * BufferView_pimpl.h:
4518         * BufferView_pimpl.C:
4519         * BufferView.h:
4520         * BufferView.C: add getCurrentChange()
4521
4522         * BufferView_pimpl.h:
4523         * BufferView_pimpl.C: handle change lfuns
4524
4525         * CutAndPaste.C: merge the cut and copy code. Rework the cut code
4526           for changes. Mark pasted paragraphs as new.
4527
4528         * support/lyxtime.h:
4529         * support/lyxtime.C:
4530         * DepTable.C: abstract time_t as lyx::time_type
4531
4532         * LColor.h:
4533         * LColor.C: add colours for new text, deleted text, changebars
4534
4535         * LaTeXFeatures.C: add dvipost as a simple feature. Make the color
4536           package use "usenames" option.
4537
4538         * commandtags.h:
4539         * lyxfunc.C:
4540         * LyXAction.C: add change lfuns
4541
4542         * Makefile.am:
4543         * author.h:
4544         * author.C: author handling
4545
4546         * buffer.h:
4547         * buffer.C: add a per-buffer author list, with first entry as
4548           current author. Handle new .lyx tokens for change tracking. Output
4549           author list to .lyx file. Output dvipost stuff to .tex preamble.
4550           Bump lyx format to 222.
4551
4552         * bufferlist.h:
4553         * bufferlist.C: add setCurrentAuthor() to reset current author details
4554           in all buffers.
4555
4556         * bufferparams.h:
4557         * bufferparams.C: add param for tracking
4558
4559         * bufferview_funcs.C: output change info in minibuffer
4560
4561         * Makefile.am:
4562         * changes.h:
4563         * changes.C: add change-tracking structure
4564
4565         * debug.h:
4566         * debug.C: add CHANGES debug flag
4567
4568         * lyxfind.h:
4569         * lyxfind.C: add code for finding the next change piece
4570
4571         * lyxrc.h:
4572         * lyxrc.C: add user_name and user_email
4573
4574         * lyxrow.h:
4575         * lyxrow.C: add a metric for the top of the text line
4576
4577         * lyxtext.h:
4578         * text.C: implement accept/rejectChange()
4579
4580         * lyxtext.h:
4581         * text.C: paint changebars. Paint new/deleted text in the chosen
4582         colours. Strike through deleted text.
4583
4584         * paragraph.h:
4585         * paragraph.C:
4586         * paragraph_pimpl.h:
4587         * paragraph_pimpl.C: output change markers in .lyx and .tex. Pass
4588           in the current change to the insert functions. Rework erase to
4589           mark text as deleted, adding an eraseIntern() and a range-based
4590           erase(). Implement per-paragraph change lookup and
4591           accept/reject.
4592
4593         * paragraph_funcs.C: Fixup paste for change tracking.
4594
4595         * tabular.C: mark added row/columns as new.
4596
4597         * text.C: fix rowLast() to never return -1. Don't allow
4598           spellchecking of deleted text. Track transpose changes. Don't
4599           allow paragraph break or merge where appropriate.
4600
4601         * text2.C: leave cursor at end of selection after a cut.
4602
4603 2003-02-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4604
4605         * text.C (getLengthMarkerHeight):
4606         (drawLengthMarker): make the `symbolic' lengths (small/med/big)
4607         visible on screen too.
4608
4609 2003-02-07  John Levon  <levon@movementarian.org>
4610
4611         * text.C: s/LYX_PAPER_MARGIN/PAPER_MARGIN/g
4612
4613 2003-02-05  Angus Leeming  <leeming@lyx.org>
4614
4615         * lyxserver.C (read_ready): revert my patch of 11 September last year
4616         as it sends PC cpu through the roof. Presumably this means that
4617         the lyxserver will no longer run on an Alpha...
4618
4619 2003-01-30  Angus Leeming  <leeming@lyx.org>
4620
4621         * factory.C (createInset): create an InsetCommandParam of type "index"
4622         and use it to 'do the right thing'.
4623
4624         * text2.C (getStringToIndex): ensure that cursor position is always
4625         reset to the reset_cursor position.
4626
4627 2003-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4628
4629         * lyxfunc.C (getStatus): "buffer-export custom" should never be
4630         disabled.
4631
4632 2003-01-20  Michael Schmitt <michael.schmitt@teststep.org>
4633
4634         * bufferview.C:
4635         * lyxcb.C:
4636         * lyxfunc.C: Output messages with identical spelling, punctuation,
4637         and spaces
4638
4639 2003-01-22  Michael Schmitt  <Michael.Schmitt@teststep.org>
4640
4641         * MenuBackend.C (expandFormats): List only viewable export formats
4642         in "View" menu
4643
4644         * buffer.C (parseSingleLyXformat2Token): Fix misleading error
4645         message
4646
4647         * lyxfunc.C (getStatus): Make sure that formats other than
4648         "fax" can also be disabled
4649
4650 2003-01-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4651
4652         * text3.C (dispatch): put the lfuns that insert insets in 3
4653         groups, and call doInsertInset with appropriate arguments.
4654         (doInsertInset): new function, that creates an inset and inserts
4655         it according to some boolean parameters.
4656
4657 2003-01-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
4658
4659         * buffer.C (readFile): remember to pass on 'par' when calling
4660         readFile recursively.
4661
4662 2003-01-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4663
4664         * MenuBackend.C (expandFormats): add "..." to import formats.
4665
4666 2003-01-15  Dekel Tsur  <dekelts@tau.ac.il>
4667
4668         * paragraph.C (asString): Remove XForms RTL hacks.
4669
4670 2003-01-13  Alfredo Braunstein <abraunst@libero.it>
4671         * buffer.C: fix typo
4672
4673 2003-01-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
4674
4675         * Makefile.am (LIBS): delete var
4676         (lyx_LDADD): add @LIBS@ here instead.
4677
4678 2003-01-08  Michael Schmitt <Michael.Schmitt@teststep.org>
4679
4680         * Clarify the meaning of "wheel mouse jump"
4681
4682 2003-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4683
4684         * lyxfunc.C (getStatus): fix disabling of cut/paste of cells in a
4685         tabular in a float
4686
4687 2003-01-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4688
4689         * importer.C (Loaders): do not preallocate 3 elements in the
4690         vector, since one ends up with 6 elements otherwise
4691
4692 2002-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4693
4694         * DepTable.C (write): write the file name as last element of the
4695         .dep file (because it may contain spaces)
4696         (read): read info in the right order
4697
4698 2003-01-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4699
4700         * paragraph_pimpl.C (simpleTeXBlanks):
4701         (simpleTeXSpecialChars):
4702         * paragraph.C (simpleTeXOnePar): make `column' unsigned.
4703
4704         * tabular.C (latex): add some missing case statements. Reindent.
4705
4706         * MenuBackend.C (expandToc): remove unused variable.
4707
4708 2003-01-06  Michael Schmitt <Michael.Schmitt@teststep.org>
4709
4710         * LColor.C:
4711         * LaTeX.C:
4712         * LyXAction.C:
4713         * MenuBackend.C:
4714         * buffer.C:
4715         * exporter.C:
4716         * lyxfunc.C:
4717         * lyxrc.C: fix inconsistent usage of spaces, colons, capitalization,
4718         and the like.
4719
4720 2003-01-05  John Levon  <levon@movementarian.org>
4721
4722         * BufferView.h:
4723         * BufferView.C: add getEncoding()
4724
4725         * kbsequence.h:
4726         * kbsequence.C: do not store last keypress
4727
4728         * lyxfunc.h:
4729         * lyxfunc.C: store last keypress here instead. Pass encoding
4730           to getISOEncoded()
4731
4732 2002-12-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4733
4734         * lyx_main.C (init): remove annoying error message when following
4735         symbolic links (bug #780)
4736
4737 2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4738
4739         * text.C (insertChar):
4740         * lyxrc.C (getDescription): remove extra spaces
4741
4742 2002-12-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4743
4744         * lyxrc.C (getDescription): remove extra spaces
4745
4746 2002-12-20  John Levon  <levon@movementarian.org>
4747
4748         * text3.C: hack fix for page up/down across tall rows
4749
4750 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4751
4752         * text2.C (pasteEnvironmentType): avoid crash if layout-copy has
4753         not been invoked
4754
4755 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4756
4757         * lyxfunc.C (getStatus): query lyx_gui::getStatus() to catter for
4758         unimplemented lfuns. Make LFUN_THESAURUS_ENTRY status unknown if
4759         thesaurus is not compiled in
4760
4761 2002-12-17  Alfredo Braunstein <abraunst@libero.it>
4762
4763         * lyxfunc.C: correct  inversion of WORDFINDBACK/FORWARD
4764
4765 2002-12-16  Angus Leeming  <leeming@lyx.org>
4766
4767         * lyxrc.[Ch]:
4768         * lyx_main.C (init): remove override_x_deadkeys stuff.
4769
4770 2002-12-12  John Levon  <levon@movementarian.org>
4771
4772         * lyxfunc.C: use LyXKeySym->isText() as last-ditch
4773           insert. Only remove shift modifier under strict
4774           circumstances.
4775
4776 2002-12-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
4777
4778         * MenuBackend.C (expandToc): fix crash.
4779
4780 2002-12-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
4781
4782         * MenuBackend.C (expandToc): gettext on float names.
4783
4784 2002-12-03  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
4785
4786         * lyxlength.[Ch]: set default unit to UNIT_NONE,
4787         implement bool empty() [bug 490]
4788
4789 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4790
4791         * text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
4792
4793 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4794
4795         * several files: ws changes
4796
4797 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4798
4799         * text2.C (setCounter): clean up a bit, use boost.format.
4800         (updateCounters): initialize par upon declaration.
4801
4802         * CutAndPaste.C (SwitchLayoutsBetweenClasses): set the layout also
4803         if the layout exists. We do not just store the layout any more.
4804         (SwitchLayoutsBetweenClasses): use boost.format
4805
4806 2002-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4807
4808         * converter.C (convert): if from and to files are the same, use a
4809         temporary files as intermediary
4810
4811 2002-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4812
4813         * commandtags.h:
4814         * LyXAction.C (init): remove LFUN_VECTOR (bug 662)
4815
4816 2002-11-27  Dekel Tsur  <dekelts@tau.ac.il>
4817
4818         * lyxrc.[Ch]: Add {roman,sans,typewriter}_font_foundry variables.
4819
4820 2002-11-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
4821
4822         * tabular.C (asciiPrintCell): use string(size, char) instead of
4823         explicit loop.
4824
4825         * sgml.C (openTag): fix order of arguments to string constructor
4826         (closeTag): ditto
4827
4828         * lyxfunc.C (dispatch): use boost.format
4829
4830         * lots of files: change "c" -> 'c'
4831
4832 2002-11-25  Dekel Tsur  <dekelts@tau.ac.il>
4833
4834         * encoding.C: Patch from Isam Bayazidi: Fix Arabic shaping.
4835
4836 2002-11-25  Angus Leeming  <leeming@lyx.org>
4837
4838         * BoostFormat.h: wrap code inside #ifdef __GNUG__ block.
4839
4840         * lyx_main.C (init): compile fix.
4841
4842 2002-11-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4843
4844         * lyx_cb.C (start): boost.formatify
4845         do not include <iostream>
4846
4847         * lengthcommon.C: ws only
4848
4849         * boost-inst.C,BoostFormat.h: add more explict instantations
4850
4851 2002-11-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
4852
4853         * lots of files: handle USE_BOOST_FORMAT
4854
4855 2002-11-21  John Levon  <levon@movementarian.org>
4856
4857         * pspell.C: fix compile
4858
4859 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4860
4861         * lyxfunc.C (dispatch): use boost::format
4862         (open): ditto
4863         (doImport): ditto
4864
4865         * lyxfont.C (stateText): use boost::format
4866
4867         * lyx_main.C (LyX): use boost::format
4868         (init): ditto
4869         (queryUserLyXDir): ditto
4870         (readRcFile): ditto
4871         (parse_dbg): ditto
4872         (typedef boost::function): use the recommened syntax.
4873
4874         * importer.C (Import): use boost::format
4875
4876         * debug.C (showLevel): use boost::format
4877
4878         * converter.C (view): use boost::format
4879         (convert): ditto
4880         (move): ditto
4881         (scanLog): ditto
4882
4883         * bufferview_funcs.C (currentState): use boost::format
4884
4885         * bufferlist.C (emergencyWrite): use boost::format
4886
4887         * buffer.C (readLyXformat2): use boost::format
4888         (parseSingleLyXformat2Token): ditto
4889
4890         * Makefile.am (lyx_SOURCES): add BoostFormat.h and boost-inst.C
4891
4892         * LaTeX.C (run): use boost::format
4893
4894         * Chktex.C (scanLogFile): use boost::format
4895
4896         * BufferView_pimpl.C (savePosition): use boost::format
4897         (restorePosition): ditto
4898         (MenuInsertLyXFile): ditto
4899
4900         * BoostFormat.h: help file for explicit instation.
4901
4902 2002-11-21  Dekel Tsur  <dekelts@tau.ac.il>
4903
4904         * tabular.C (latex): Support for block alignment in fixed width
4905         columns.
4906
4907 2002-11-17  John Levon  <levon@movementarian.org>
4908
4909         * BufferView_pimpl.C:
4910         * lyx_cb.C:
4911         * lyxfunc.C: split filedialog into open/save
4912
4913 2002-11-08  Juergen Vigna  <jug@sad.it>
4914
4915         * undo_funcs.C (textHandleUndo): fixed problems with undo introduced
4916         by my last patch (hopefully).
4917
4918 2002-11-08  John Levon  <levon@movementarian.org>
4919
4920         * iterators.h:
4921         * iterators.C:
4922         * buffer.h:
4923         * buffer.C:
4924         * paragraph.h:
4925         * paragraph.C:
4926         * toc.h:
4927         * toc.C: ParConstIterator, and use it (from Lars)
4928
4929 2002-11-07  Ben Stanley  <bds02@uow.edu.au>
4930
4931         * lyxtextclass.[Ch]: revise and add doxygen comments
4932
4933 2002-11-07  John Levon  <levon@movementarian.org>
4934
4935         * text.C: fix progress value for spellchecker
4936
4937         * toc.C: fix navigate menu for insetwrap inside minipage
4938
4939         * paragraph_funcs.C: added FIXME for suspect code
4940
4941 2002-11-07  John Levon  <levon@movementarian.org>
4942
4943         * BufferView_pimpl.C: fix redrawing of insets
4944           on buffer switch
4945
4946 2002-11-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4947
4948         * text2.C (updateCounters): fix bug 668
4949
4950 2002-11-04  Dekel Tsur  <dekelts@tau.ac.il>
4951
4952         * text3.C (dispatch): Do not make the buffer dirty when moving the
4953         cursor.
4954
4955 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4956
4957         * vc-backend.C: STRCONV
4958         (scanMaster): ditto
4959
4960         * text2.C (setCounter): STRCONV
4961
4962         * paragraph.C (asString): STRCONV
4963
4964         * lyxlength.C (asString): STRCONV
4965         (asLatexString): ditto
4966
4967         * lyxgluelength.C (asString): STRCONV
4968         (asLatexString): ditto
4969
4970         * lyxfunc.C (dispatch): STRCONV
4971         (open): ditto
4972
4973         * lyxfont.C (stateText): STRCONV
4974
4975         * importer.C (Import): STRCONV
4976
4977         * counters.C (labelItem): STRCONV
4978         (numberLabel): ditto
4979         (numberLabel): remove unused ostringstream o
4980
4981         * chset.C: STRCONV
4982         (loadFile): ditto
4983
4984         * bufferview_funcs.C (currentState): STRCONV
4985
4986         * buffer.C (readFile): STRCONV
4987         (asciiParagraph): ditto
4988         (makeLaTeXFile): ditto
4989
4990         * Spacing.C (writeEnvirBegin): STRCONV
4991
4992         * LaTeXFeatures.C (getLanguages): STRCONV
4993         (getPackages): ditto
4994         (getMacros): ditto
4995         (getBabelOptions): ditto
4996         (getTClassPreamble): ditto
4997         (getLyXSGMLEntities): ditto
4998         (getIncludedFiles): ditto
4999
5000         * LaTeX.C: STRCONV
5001         (run): ditto
5002         (scanAuxFile): ditto
5003         (deplog): ditto
5004
5005         * LString.h: add the STRCONV macros
5006
5007         * BufferView_pimpl.C (savePosition): STRCONV
5008         (restorePosition): ditto
5009         (MenuInsertLyXFile): ditto
5010
5011         * vc-backend.C (scanMaster): change from submatch[...] to
5012         submatch.str(...)
5013
5014         * funcrequest.C: include config.h
5015
5016         * factory.C: include config.h
5017
5018         * chset.C (loadFile): change from submatch[...] to submatch.str(...)
5019
5020         * box.C: include config.h
5021
5022         * LaTeX.C (scanAuxFile): change from submatch[...] to
5023         submatch.str(...)
5024         (deplog): ditto
5025
5026 2002-10-25  Angus Leeming  <leeming@lyx.org>
5027
5028         * BufferView_pimpl.C (cursorToggle): remove reapSpellchecker hack.
5029
5030         * ispell.[Ch] (setError): new method.
5031         * ispell.C (c-tor): move out child process into new class LaunchIspell.
5032         Use setError() insetead of goto END.
5033
5034         * lyx_cb.C (AutoSave): move out child process into new class
5035         AutoSaveBuffer.
5036
5037 2002-10-30  John Levon  <levon@movementarian.org>
5038
5039         * text3.C: make start appendix undoable
5040
5041 2002-10-24  Dekel Tsur  <dekelts@tau.ac.il>
5042
5043         * lyxlength.C (inPixels): Fix returned value.
5044
5045         * paragraph.C (TeXOnePar): Fix bug with language changes in nested
5046         environment.
5047
5048 2002-10-24  Angus Leeming  <leeming@lyx.org>
5049
5050         * lyxgluelength.h: no need to forward declare BufferParams
5051         or BufferView, so don't.
5052
5053 2002-10-21  John Levon  <levon@movementarian.org>
5054
5055         * BufferView.C: menuUndo ->undo, redo
5056
5057         * BufferView.h: document, remove dead, make some methods private
5058
5059         * paragraph_funcs.h:
5060         * paragraph_funcs.C:
5061         * CutAndPaste.C: s/pasteParagraph/mergeParagraph
5062
5063         * buffer.h:
5064         * buffer.C:
5065         * sgml.h:
5066         * sgml.C: move sgml open/close tag into sgml.C
5067
5068         * bufferview_funcs.h: unused prototype
5069
5070         * lyxfunc.h:
5071         * lyxfunc.C: remove unused
5072
5073         * lyxtext.h:
5074         * text.C: remove unused
5075
5076 2002-10-21  John Levon  <levon@movementarian.org>
5077
5078         * BufferView.h:
5079         * BufferView.C:
5080         * BufferView_pimpl.h:
5081         * BufferView_pimpl.C: fix mouse wheel handling based on
5082           patch from Darren Freeman
5083
5084 2002-10-09  Dekel Tsur  <dekelts@tau.ac.il>
5085
5086         * lyx_main.C (queryUserLyXDir): Fix automatic reconfiguration.
5087
5088 2002-10-17  Dekel Tsur  <dekelts@tau.ac.il>
5089
5090         * lyxlength.C (inPixels): Fix hanfling of negative length.
5091         Fix LyXLength::MU case.
5092
5093 2002-10-16  John Levon  <levon@movementarian.org>
5094
5095         * buffer.C: remove \\protected_separator parsing done by lyx2lyx now
5096
5097 2002-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5098
5099         * converter.C (view): add support for $$i (file name) and $$p
5100         (file path) for the viewer command. If $$i is not specified, then
5101         it is appended to the command (for compatibility with old syntax)
5102
5103 2002-10-14  Juergen Vigna  <jug@sad.it>
5104
5105         * undo_funcs.C (textHandleUndo): alter the order in which the
5106         new undopar is added to the LyXText, as we have to set first
5107         the right prev/next and then add it as otherwise the rebuild of
5108         LyXText is not correct. Also reset the cursor to the right paragraph,
5109         with this IMO we could remove the hack in "redoParagraphs()".
5110
5111 2002-10-09  Angus Leeming  <leeming@lyx.org>
5112
5113         * Bufferview_pimpl.C (dispatch): call InsetCitation::setLoadingBuffer
5114         to turn off an optimisation if a new inset is to be inserted.
5115
5116 2002-10-11 André Pönitz <poenitz@gmx.net>
5117
5118         * lyxtext.h: make some functions public to allow access
5119         from inset/lyxtext for handling LFUN_PRIOR/NEXT
5120
5121 2002-10-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5122
5123         * text3.C (dispatch): when changing layout, avoid an infinite loop
5124         [bug #652]
5125
5126 2002-10-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5127
5128         * lyxrc.C (read): treat a viewer or converter command of "none" as
5129         if it were empty.
5130
5131         * MenuBackend.C (expandFormats): for an update, also allow the
5132         formats that are not viewable
5133
5134         * lyx_main.C (queryUserLyXDir): re-run automatically the configure
5135         script if it is newer than the lyxrc.defaults in user directory
5136
5137 2002-10-07 André Pönitz <poenitz@gmx.net>
5138
5139         * text.C: Vitaly Lipatov's small i18n fix
5140
5141 2002-09-25  Angus Leeming  <leeming@lyx.org>
5142
5143         * ispell.h: doxygen fix.
5144
5145 2002-09-25  Dekel Tsur  <dekelts@tau.ac.il>
5146
5147         * buffer.h (readFile): Add a new argument to the method, to allow
5148         reading of old-format templates.
5149
5150 2002-09-24  Dekel Tsur  <dekelts@tau.ac.il>
5151
5152         * toc.C (getTocList): Get TOC from InsetWrap.
5153
5154 2002-09-16  John Levon  <levon@movementarian.org>
5155
5156         * lyxfunc.C: check tabular for cut/copy too
5157
5158 2002-09-12  John Levon  <levon@movementarian.org>
5159
5160         * LyXAction.C: tidy
5161
5162         * factory.h:
5163         * factory.C: add header
5164
5165         * paragraph_funcs.h:
5166         * paragraph_funcs.C: cleanup
5167
5168 2002-09-11  John Levon  <levon@movementarian.org>
5169
5170         * PrinterParams.h: odd/even default to true
5171
5172 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
5173
5174         * PrinterParams.h: update printer parameters for new xforms dialog
5175
5176 2002-09-11  Angus Leeming  <leeming@lyx.org>
5177
5178         * lyxserver.C (read_ready): re-write to make it more transparent
5179         and to make it work in coherent fashion under Tru64 Unix.
5180
5181 2002-09-11  André Pönitz <poenitz@gmx.net>
5182
5183         * commandtags.h:
5184         * LyXAction.C:
5185         * text3.C: implement LFUN_WORDSEL
5186
5187 2002-09-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
5188
5189         * lyxtextclass.h: don't include FloatList.h, forward declare instead.
5190         make floatlist_ a boost::shared_ptr<FloatList>
5191
5192         * lyxtextclass.C: include FloatList.h
5193         (LyXTextClass): initialize floatlist_
5194         (TextClassTags): add TC_NOFLOAT
5195         (Read): match "nofloat" to TC_NOFLOAT and use it.
5196         (readFloat): modify call to floatlist_
5197         (floats): ditto
5198         (floats): ditto
5199
5200         * FloatList.[Ch] (FloatList): remove commented out float
5201         initialization.
5202         (erase): new function
5203
5204 2002-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5205
5206         * MenuBackend.C (expandToc): fix crash when there is no document
5207         open
5208
5209 2002-09-10  Dekel Tsur  <dekelts@tau.ac.il>
5210
5211         * many files: Add insetwrap.
5212
5213 2002-09-09  John Levon  <levon@movementarian.org>
5214
5215         * text2.C: remove confusing and awkward depth wraparound
5216
5217 2002-09-09  John Levon  <levon@movementarian.org>
5218
5219         * BufferView_pimpl.C: Don't use empty arg for LFUN_CHILD_INSERT
5220
5221         * buffer.h:
5222         * buffer.C: remove getIncludeonlyList()
5223
5224         * paragraph.C:
5225         * lyxfunc.C: remove headers
5226
5227 2002-09-09  Juergen Vigna  <jug@sad.it>
5228
5229         * text.C (getColumnNearX): fix form Michael this is most
5230         probably a cut&paste bug.
5231
5232 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
5233
5234         * remove all INHERIT_LANG and INHERIT_LANGUAGE commented code
5235
5236         * LaTeXFeatures.C (useLayout): let tclass and lyt be a const
5237         references, ws changes.
5238
5239         * text2.C (init): update counters after init
5240         (insertParagraph): no need to set counter on idividual paragraphs.
5241         (setCounter): access the counters object in the textclass object
5242         on in the buffer object.
5243         (updateCounters): ditto
5244
5245         * lyxtextclass.C: include counters.h, add variable ctrs_ as
5246         shared_ptr<Counters> to avoid loading counters.h in all
5247         compilation units.
5248         (LyXTextClass): initialize ctrs_
5249         (TextClassTags): add TC_COUNTER, and ...
5250         (Read): use it here.
5251         (CounterTags): new tags
5252         (readCounter): new function
5253         (counters): new funtion
5254         (defaultLayoutName): return a const reference
5255
5256         * counters.C (Counters): remove contructor
5257         (newCounter): remove a couple of unneeded statements.
5258         (newCounter): simplify a bit.
5259         (numberLabel): some small formatting changes.
5260
5261         * buffer.[Ch]: remove all traces of counters, move the Counters
5262         object to the LyXTextClass.
5263
5264 2002-09-06  Alain Castera  <castera@in2p3.fr>
5265
5266         * tabular.C: uses \tabularnewline; uses >{...} construct from array
5267         package to set the horizontal alignment on fixed width columns.
5268
5269         * lyx_sty.C:
5270         * lyx_sty.h: added tabularnewline macro def.
5271
5272         * LaTeXFeatures.C: added NeedTabularnewline macro feature
5273
5274 2002-09-06  John Levon  <levon@movementarian.org>
5275
5276         * LyXAction.C: tooltips for sub/superscript
5277
5278         * MenuBackend.C: a bit more verbose
5279
5280         * lyxfunc.C: tiny clean
5281
5282         * undo_funcs.C: document undo_frozen
5283
5284 2002-09-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
5285
5286         * counters.C (Counters): add missing algorithm counter.
5287
5288         * text2.C (setCounter): lookup the counter with layouts latexname
5289         instead of by section number.
5290         (setCounter): use a hackish way to lookup the correct enum
5291         counter.
5292         a float name->type change
5293         reset enum couners with counter name directly instead of depth value.
5294
5295         * counters.C (Counters): remove the push_backs, change to use the
5296         float type not the float name.
5297         (labelItem): remove unused string, float name->type change
5298
5299         * counters.h: don't include vector, loose the enums and sects vectors
5300
5301 2002-09-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
5302
5303         * lyxtextclass.C (TextClassTags): add TC_FLOAT
5304         (Read): add float->TC_FLOAT to textclassTags
5305         (Read): and handle it in the switch
5306         (readFloat): new function
5307
5308         * FloatList.C (FloatList): comment out the hardcoded float
5309         definitions.
5310
5311         * lyxlayout.h: ws change.
5312
5313 2002-08-29  Dekel Tsur  <dekelts@tau.ac.il>
5314
5315         * buffer.C (readFile): Look for lyx2lyx in LYXDIR/lyx2lyx/
5316
5317 2002-09-03  Angus Leeming  <leeming@lyx.org>
5318
5319         * BufferView_pimpl.h: qualified name is not allowed in member
5320         declaration: WorkArea & Pimpl::workarea() const;
5321
5322         * factory.C: added using std::endl directive.
5323
5324         * text3.C: added using std::find and std::vector directives.
5325
5326 2002-08-29  André Pönitz <poenitz@gmx.net>
5327
5328         * lyxtext.h:
5329         * text2.C: remove unused member number_of_rows
5330
5331         * Makefile.am:
5332         * BufferView2.C: remove file, move contents to...
5333         * BufferView.C: ... here
5334
5335         * BufferView_pimpl.C:
5336         * factory.C: move more inset creation to factory
5337
5338         * vspace.C: avoid direct usage of LyXText, ws changes
5339
5340         * BufferView.[Ch]:
5341                 don't provide direct access to WorkArea, use two simple
5342                 acessors haveSelction() and workHeight() instead
5343
5344
5345 2002-08-29  John Levon  <levon@movementarian.org>
5346
5347         * BufferView_pimpl.C (dispatch): do not continue when
5348           no buffer
5349
5350 2002-08-28  André Pönitz <poenitz@gmx.net>
5351
5352         * commandtags.h: new LFUN_MOUSE_DOUBLE, LFUN_MOUSE_TRIPLE
5353
5354         * BufferView.h:
5355         * BufferView_pimpl.[Ch] move work area mouse event to LFUNs
5356
5357 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
5358
5359         * buffer.C: increment LYX_FORMAT to 221
5360
5361         * lyxrc.[Ch]: declare display_graphics as grfx::DisplayType and use
5362         grfx::displayTranslator.find(foo); include graphics/GraphicsTypes.h.
5363
5364         * lyxrc.C: use more "if (...) { } else { }" style (John's advice).
5365
5366         * lyx_main.C: call once the setDisplayTranslator(); is that okay here?
5367
5368 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5369
5370         * factory.C (createInset): use LyXTextClass::floats
5371
5372         * MenuBackend.C (expandFloatListInsert):
5373         (expandFloatInsert):
5374         (expandToc):
5375
5376         * text2.C (setCounter):
5377
5378         * LaTeXFeatures.C (useFloat):
5379         (getFloatDefinitions):
5380
5381         * BufferView_pimpl.C (dispatch): use LyXTextClass::floats()
5382
5383         * lyxtextclass.[Ch]: rename layoutlist to layoutlist_; add
5384         floatlist_, with accessor floats().
5385
5386         * FloatList.h: remove global FloatList
5387
5388 2002-08-26  André Pönitz <poenitz@gmx.net>
5389
5390         * paragraph.[Ch]: Martin's patch for the \end_deeper bug
5391
5392         * BufferView.h:
5393         * BufferView2.C:
5394         * BufferView_pimpl.C:
5395         * text3.C: mun hanfling of LFUN_CUT/COPY/PASTE to LyXText
5396
5397 2002-08-25  John Levon  <levon@movementarian.org>
5398
5399         * LyXAction.C: fix margin note description
5400
5401 2002-08-24  John Levon  <levon@movementarian.org>
5402
5403         * buffer.C:
5404         * bufferlist.C:
5405         * bufferview_funcs.C:
5406         * lyxfont.C:
5407         * undo_funcs.C: cleanups
5408
5409         * lyxfunc.C: disable CUT/COPY when no selection
5410
5411 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
5412
5413         * lyxlength.[Ch]: use better (three letters) mnemonics for percentage units
5414         in "enum UNIT"; e.g. PTW for Percent of TextWidth
5415
5416         * lyxrc.C: graphics display is now monochrome|grayscale|color|none.
5417         Add backward compatibility to "mono", "gray" and "no".
5418
5419 2002-08-24  Dekel Tsur  <dekelts@tau.ac.il>
5420
5421         * buffer.C (readFile): Always run lyx2lyx if file_format < LYX_FORMAT
5422         (and file_format >= 200).
5423
5424 2002-08-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5425
5426         * lyxlayout.C (Read): treat LT_OPTARGS as an integer, not a bool
5427
5428 2002-08-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5429
5430         * lyxfunc.C (getStatus): handle LFUN_INSET_OPTARG
5431
5432 2002-08-20  Martin Vermeer  <martin.vermeer@hut.fi>
5433
5434         * BufferView_pimpl.C:
5435         * LyXAction.C:
5436         * buffer.C:
5437         * commandtags.h:
5438         * lyxfunc.C:
5439         * paragraph.[Ch]:
5440         * text2.C:
5441         * insets/insetoptarg.[Ch]: Added "optional argument" collapsible
5442         inset and code to make it  work with the paragraph code. The inset
5443         can be anywhere in the paragraph, but will only do the expected
5444         thing in LaTeX if the layout file contains the parameter line
5445                         OptionalArgs    1
5446         (or more generally, a nonzero value) for that layout.
5447
5448 2002-08-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5449
5450         * paragraph.h: remove the declaration of undefined counters class
5451         function.
5452
5453 2002-08-22  Martin Vermeer <martin.vermeer@hut.fi>
5454
5455         * text2.C (setCounter):  fixed enumeration mis-count as reported by
5456         Dr. Richard Hawkins.
5457
5458 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5459
5460         * paragraph_funcs.h: remove some unneeded includes
5461
5462         * text.C (backspace): pasteParagraph now in global scipe
5463
5464         * CutAndPaste.C (cutSelection): pasteParagraph now in global scope
5465         (pasteSelection): ditto
5466
5467         * paragraph.[Ch] (pasteParagraph): move function to global scope ...
5468         * paragraph_funcs.C (pasteParagraph): ... here
5469
5470 2002-08-20  André Pönitz <poenitz@gmx.net>
5471
5472         * commandtags.h: new LFUNs for swapping/copying table row/colums
5473
5474         * LyXAction.C:
5475         * lyxfunc.C: support for new lfuns
5476
5477 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
5478
5479         * tabular.C:
5480         * buffer.[Ch]: remove NO_COMPABILITY stuff
5481
5482 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
5483
5484         * boost.C (throw_exception): new file, with helper function for
5485         boost compiled without exceptions.
5486
5487         * paragraph.h:
5488         * lyxlength.C:
5489         * buffer.C:
5490         * ParameterStruct.h:
5491         * ParagraphParameters.[Ch]: remove NO_PEXTRA_REALLY stuff
5492
5493         * bufferlist.C (emergencyWriteAll): use boost bind
5494
5495         * BufferView_pimpl.C (moveCursorUpdate): remove inline
5496
5497         * text.C: include paragraph_funcs.h
5498         (breakParagraph): breakParagraph is now in global scope
5499
5500         * paragraph_funcs.[Ch]: new files
5501
5502         * paragraph.C (breakParagraph,breakParagraphConservative): move to
5503         global scope
5504
5505         * buffer.C: include paragraph_funcs.h
5506         (insertStringAsLines): breakParagraph is now in global scope
5507
5508         * Makefile.am (lyx_SOURCES): add paragraph_funcs.h and
5509         paragraph_funcs.C
5510
5511         * CutAndPaste.C: include paragraph_funcs.h
5512         (cutSelection): breakParagraphConservative is now in global scope
5513         (pasteSelection): ditto
5514
5515         * buffer.h: declare oprator== and operator!= for
5516         Buffer::inset_iterator
5517
5518         * bufferlist.C (emergencyWrite): don't use fmt(...)
5519
5520         * text3.C: add using std::endl
5521
5522         * BufferView.C (moveCursorUpdate): remove default arg
5523
5524 2002-08-20  André Pönitz <poenitz@gmx.net>
5525
5526         * buffer.[Ch]: move inline functions to .C
5527
5528         * BufferView2.C:
5529         * BufferView_pimpl.C:
5530         * text.C:
5531         * buffer.[Ch]: use improved inset_iterator
5532
5533         * buffer.C:
5534         * paragraph.[Ch]: write one paragraph at a time
5535
5536 2002-08-20  Dekel Tsur  <dekelts@tau.ac.il>
5537
5538         * BufferView_pimpl.C (dispatch): Insert insetbibtex with "plain"
5539         style if style is not specified.
5540
5541 2002-08-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5542
5543         * text2.C (setCounter): when searching for right label for a
5544         caption, make sure to recurse to parent insets (so that a caption
5545         in a minipage in a figure float works) (bug #568)
5546
5547 2002-08-20  André Pönitz <poenitz@gmx.net>
5548
5549         * text3.C: new file for LyXText::dispatch() and helpers
5550
5551         * BufferView.[Ch]: move text related stuff to LyXText::dispatch()
5552
5553         * funcrequest.[Ch]: add message() do avoid direct access to LyXFunc
5554
5555 2002-08-19  André Pönitz <poenitz@gmx.net>
5556
5557         * lyxtext.h:
5558         * text.C: new LyXText::dispatch()
5559
5560         * BufferView_pimpl.C: move handling of LFUN_APPENDIX to LyXText
5561
5562 2002-08-18  Dekel Tsur  <dekelts@tau.ac.il>
5563
5564         * text.C (paintRowSelection): Fix code for rows with both RTL & LTR text.
5565
5566         * BufferView_pimpl.C (smartQuote): Insert typewriter quotes in
5567         Hebrew text.
5568
5569 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5570
5571         * Makefile.am: use $(variables) instead of @substitutions@
5572
5573 2002-08-15  André Pönitz <poenitz@gmx.net>
5574
5575         * lyxfunc.C:
5576         * BufferView_pimpl.C: streamlining mathed <-> outer world
5577         interaction
5578
5579         * commandtags.h:
5580         * LyXAction.C: remove unused LFUN_MATH
5581
5582 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5583
5584         * paragraph.[Ch]: add some NO_NEXT ifdefs.
5585
5586 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5587
5588         * paragraph.C (Paragraph): reformat a bit
5589         (cutIntoMinibuffer): use builtin InsetList function instad of
5590         doing it manually.
5591         (getInset): ditto
5592
5593         * buffer.C: include boost/bind.hpp, add using std::for_each
5594         (writeFileAscii): use ParagraphList iterators
5595         (validate): use for_each for validate traversal of paragraphs
5596         (getBibkeyList): use ParagraphList iterators
5597         (resizeInsets): use for_each to resizeInsetsLyXText for all
5598         paragraphs.
5599         (getParFromID): use ParagraphList iterators
5600
5601         * BufferView2.C (lockInset): use paragraph list and iterators
5602
5603 2002-08-14  John Levon  <levon@movementarian.org>
5604
5605         * lyxserver.C: remove spurious xforms include
5606
5607 2002-08-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5608
5609         * lyxfunc.C (getStatus): disable math-extern outside of math mode
5610
5611 2002-08-13  André Pönitz <poenitz@gmx.net>
5612
5613         * LyXAction.[Ch]:
5614         * lyxfunc.C: further cleaning
5615
5616 2002-08-13  André Pönitz <poenitz@gmx.net>
5617
5618         * funcrequest.h: new constructor
5619
5620         * funcrequest.C: move stuff here from .h
5621
5622         * Makefile.am:
5623         * BufferView_pimpl.C:
5624         * LyXAction.C:
5625         * toc.C:
5626         * lyxfunc.C: subsequent changes
5627
5628         * lyxfunc.h: new view() member function
5629
5630         * lyxfunc.C: subsequent changes
5631
5632 2002-08-13  Angus Leeming  <leeming@lyx.org>
5633
5634         * BufferView2.C:
5635         * BufferView_pimpl.C:
5636         * buffer.C:
5637         * converter.C:
5638         * importer.C:
5639         * lyxfunc.C:
5640         * lyxvc.C:
5641         * toc.C:
5642         * vc-backend.C:
5643         changes due to the changed LyXView interface that now returns references
5644         to member variables not pointers.
5645
5646 2002-08-13  Angus Leeming  <leeming@lyx.org>
5647
5648         * WordLangTuple (word, lang_code): return references to strings,
5649         not strings.
5650
5651         * BufferView.h:
5652         * SpellBase.h:
5653         * lyxtext.h: forward-declare WordLangTuple.
5654
5655         * BufferView2.C:
5656         * ispell.C:
5657         * pspell.C:
5658         * text.C: #include "WordLangTuple.h".
5659
5660         * lyxtext.h:
5661         * text.C: (selectNextWordToSpellcheck): constify return type.
5662
5663 2002-08-12  Martin Vermeer <martin.vermeer@hut.fi>
5664
5665         * buffer.C:
5666         * buffer.h:
5667         * lyxtext.h:
5668         * paragraph.C:
5669         * paragraph_pimpl.h:
5670         * text.C:
5671         * text2.C:
5672         * undo_funcs.C: replaced per-paragraph counter logic by per-buffer, as
5673         suggested by Angus.
5674         Made updateCounter always count from start of buffer, and removed
5675         second argument (par).
5676         Reverted floats number display to '#'. Perhaps I'll try again when the
5677         code base is sanitized a bit.
5678
5679 2002-08-12  Angus Leeming  <leeming@lyx.org>
5680
5681         * buffer.[Ch] (getLabelList): constify.
5682
5683 2002-08-07  André Pönitz <poenitz@gmx.net>
5684
5685         * commandtags.h: new LFUN_MOUSE_(PRESS|MOTION|RELEASE)
5686
5687         * funcrequest.h: extension to keep mouse (x,y) position
5688
5689 2002-08-12  Juergen Vigna  <jug@sad.it>
5690
5691         * BufferView2.C (insertErrors): forbid undo when inserting error
5692         insets.
5693
5694         * CutAndPaste.C (SwitchLayoutsBetweenClasses): ditto
5695
5696 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
5697
5698         * ParagraphList.[Ch]: new files
5699
5700         * Makefile.am (lyx_SOURCES): add ParagraphList.[Ch]
5701
5702         * BufferView2.C (lockInset): ParagraphList changes
5703         * toc.C: ditto
5704         * text2.C: ditto
5705         * bufferlist.C: ditto
5706         * buffer.h: ditto
5707         * buffer.C: ditto
5708
5709 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
5710
5711         * paragraph_pimpl.h: remove inclusion of boost/array.hpp, remove
5712         unused class variable counter_,
5713
5714         * paragraph.[Ch] (getFirstCounter): delete unused function
5715
5716         * counters.C: include LAssert.h
5717         (reset): add a new function with no arg, change other version to
5718         not have def. arg and to not allow empty arg.
5719
5720         * text2.C (setCounter): remove empty arg from call to Counters::reset
5721
5722 2002-08-11  John Levon  <levon@movementarian.org>
5723
5724         * Makefile.am: add WordLangTuple.h
5725
5726 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
5727
5728         * paragraph.C, ToolbarDefaults.h, kbsequence.h, lyx_main.C,
5729         lyxfunc.C lyxlex_pimpl.C: ws changes only.
5730
5731         * insets/insettext.C: InsetList changes
5732
5733         * graphics/GraphicsSupport.C (operator()): InsetList changes
5734
5735         * toc.C (getTocList): InsetList changes
5736
5737         * paragraph_pimpl.[Ch]: InsetList changes
5738
5739         * paragraph.[Ch]: InsetList changes
5740
5741         * buffer.C (inset_iterator): InsetList changes
5742         (setParagraph): ditto
5743         * buffer.h (inset_iterator): ditto
5744         * iterators.C (operator++): ditto
5745         * iterators.h: ditto
5746
5747         * Makefile.am (lyx_SOURCES): add InsetList.C and InsetList.h
5748
5749         * InsetList.[Ch]: new files, most InsetList handling moved out of
5750         paragraph.C.
5751
5752         * BufferView2.C (removeAutoInsets): InsetList changes
5753         (lockInset): ditto
5754         (ChangeInsets): ditto
5755
5756 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
5757
5758         * paragraph_pimpl.h (empty): new function
5759
5760         * paragraph.[Ch] (empty): new function
5761
5762         * other files: use the new Paragraph::empty function
5763
5764 2002-08-09  John Levon  <levon@movementarian.org>
5765
5766         * lyxtext.h: remove unused refresh_height
5767
5768 2002-08-09  John Levon  <levon@movementarian.org>
5769
5770         * Makefile.am:
5771         * sgml.h:
5772         * sgml.C:
5773         * buffer.C:
5774         * paragraph.h:
5775         * paragraph.C: move sgml char escaping out of paragraph
5776
5777         * paragraph.h:
5778         * paragraph.C: remove id setter
5779
5780         * buffer.C:
5781         * paragraph.C:
5782         * paragraph_pimpl.C: remove dead tex_code_break_column
5783
5784         * bufferview_funcs.C: small cleanup
5785
5786         * lyxfunc.C: remove dead proto
5787
5788         * lyxtext.h: make some stuff private. Remove some dead stuff.
5789
5790         * lyxgluelength.C: make as[LyX]String() readable
5791
5792 2002-08-08  John Levon  <levon@movementarian.org>
5793
5794         * LyXAction.h:
5795         * LyXAction.C:
5796         * MenuBackend.C:
5797         * ToolbarDefaults.C:
5798         * lyxfunc.C:
5799         * lyxrc.C:
5800         * toc.C: lyxaction cleanup
5801
5802 2002-08-08  John Levon  <levon@movementarian.org>
5803
5804         * BufferView2.C: small cleanup
5805
5806         * lyxfind.h:
5807         * lyxfind.C: move unnecessary header into the .C
5808
5809 2002-08-08  John Levon  <levon@movementarian.org>
5810
5811         * funcrequest.h: just tedious nonsense
5812
5813         * lyx_main.h:
5814         * lyx_main.C: cleanups
5815
5816         * buffer.C:
5817         * vspace.C: remove dead header lyx_main.h
5818
5819 2002-08-07  Angus Leeming  <leeming@lyx.org>
5820
5821         * Paragraph.[Ch]:
5822         * paragraph_pimpl.h:
5823         Forward declare class Counters in paragraph.h by moving the ctrs member
5824         variable into Paragraph::Pimpl.
5825         (counters): new method, returning a reference to pimpl_->ctrs.
5826
5827         * text2.C: ensuing changes.
5828
5829 2002-08-07  John Levon  <levon@movementarian.org>
5830
5831         * BufferView_pimpl.C (resizeCurrentBuffer): update scrollbar
5832
5833         * BufferView_pimpl.C: announce X selection on double/triple
5834           click
5835
5836         * lyx_main.C: use correct bool in batch dispatch
5837
5838         * counters.h: srcdocs (from Martin Vermeer and Angus Leeming)
5839
5840 2002-08-07  André Pönitz <poenitz@gmx.net>
5841
5842         * funcrequest.h: new class to wrap a kb_action and its argument
5843
5844         * BufferView.[Ch]:
5845         * BufferView_pimpl[Ch]:
5846         * LaTeX.C:
5847         * LyXAction.[Ch]:
5848         * lyxfunc.[Ch]:
5849         * lyxrc.C: subsequent changes
5850
5851
5852 2002-08-07  John Levon  <levon@movementarian.org>
5853
5854         * BufferView_pimpl.C (redoCurrentBuffer): fix screen update when
5855           document options change.
5856
5857 2002-08-06  Martin Vermeer  <martin.vermeer@hut.fi>
5858
5859         * counters.[Ch]
5860         * text2.C
5861         * paragraph.[Ch]
5862         * makefile.am: move counters functionality over from
5863         text2.C/paragraph.[Ch] to counters.[Ch], and make proper C++.
5864
5865 2002-08-06  John Levon  <levon@movementarian.org>
5866
5867         * WordLangTuple.h: new file for word + language code tuple
5868
5869         * SpellBase.h:
5870         * pspell.h:
5871         * pspell.C:
5872         * ispell.h:
5873         * ispell.C:
5874         * lyxtext.h:
5875         * text.C:
5876         * text2.C:
5877         * BufferView.h:
5878         * BufferView2.C: use WordLangTuple
5879
5880         * layout.h:
5881         * buffer.C: remove very dead LYX_LAYOUT_DEFAULT
5882
5883 2002-08-06  John Levon  <levon@movementarian.org>
5884
5885         * lyx_main.C: fix cmdline batch handling
5886
5887 2002-08-06  André Pönitz <poenitz@gmx.net>
5888
5889         * lyxrc.C: set default for show_banner to true
5890
5891 2002-08-06  John Levon  <levon@movementarian.org>
5892
5893         * pspell.C: fix a crash, and allow new aspell to work
5894
5895 2002-08-06  John Levon  <levon@movementarian.org>
5896
5897         * lyxfunc.C:
5898         * kbmap.C: small cleanup
5899
5900         * vspace.h:
5901         * vspace.C: add const
5902
5903 2002-08-05  John Levon  <levon@movementarian.org>
5904
5905         * LyXAction.C: back to tabular-insert
5906
5907 2002-08-04  John Levon  <levon@movementarian.org>
5908
5909         * BufferView.h:
5910         * BufferView.C: cosmetic change
5911
5912         * BufferView_pimpl.C: s/IGNORE_CODE/NOTE_CODE/
5913
5914         * bufferlist.C:
5915         * buffer.h:
5916         * buffer.C:
5917         * lyxcb.h:
5918         * lyxcb.C:
5919         * lyxserver.C:
5920         * lyxvc.C:
5921         * vc-backend.C:
5922         * BufferView2.C: purge all "Lyx" not "LyX" strings
5923
5924         * lyxcursor.h:
5925         * lyxcursor.C: attempt to add some documentation
5926
5927         * lyxfunc.C:
5928         * commandtags.h:
5929         * LyXAction.C:
5930         * ToolbarDefaults.C:
5931         * BufferView_pimpl.C: remove LFUN_DIALOG_TABULAR_INSERT and
5932           merge with LFUN_TABULAR_INSERT
5933
5934         * Makefile.am:
5935         * SpellBase.h:
5936         * ispell.h:
5937         * ispell.C:
5938         * pspell.h:
5939         * pspell.C: split up i/pspell implementations into separate
5940           files, many cleanups
5941
5942         * lyxlex.C: unrevert, with a proper fix for prefix.length() == 0
5943
5944         * text2.C: some cleanup
5945
5946         * lyxfunc.C: don't check for isp_command == "none" any more, it
5947           didn't make any sense
5948
5949 2002-08-06      Martin Vermeer <martin.vermeer@hut.fi>
5950
5951         * counters.[Ch]
5952         * text2.C
5953         * paragraph.[Ch]
5954         * makefile.am: move counters functionality over
5955         from text2.C/paragraph.[Ch] to counters.[Ch], and
5956         make proper C++.
5957 2002-08-02  John Levon  <levon@movementarian.org>
5958
5959         * buffer.C: s/lyxconvert/lyx2lyx/
5960
5961 2002-08-02  Angus Leeming  <leeming@lyx.org>
5962
5963         * lyxlex.C: revert John's change as it breaks reading of the user
5964         preamble.
5965
5966 2002-08-02  Angus Leeming  <leeming@lyx.org>
5967
5968         * importer.C (Import):
5969         * lyxfunc.C (moveCursorUpdate, dispatch, view_status_message):
5970         changes due to LyXView::view() now returning a boost::shared_ptr.
5971
5972 2002-08-02  John Levon  <levon@movementarian.org>
5973
5974         * lyxlex.C: small cleanup
5975
5976 2002-08-02  John Levon  <levon@movementarian.org>
5977
5978         * text2.C (status): small cleanup, no logic change
5979
5980 2002-08-01  John Levon  <levon@movementarian.org>
5981
5982         * buffer.h:
5983         * buffer.C (writeFile): don't output alerts, caller
5984           handles this
5985
5986         * bufferlist.C:
5987         * lyx_cb.C: from above
5988
5989         * lyxfunc.C: allow to open non-existent files
5990
5991 2002-07-31  John Levon  <levon@movementarian.org>
5992
5993         * lyxserver.C: don't let incidental errors get
5994           in the way (errno)
5995
5996 2002-07-30  John Levon  <levon@movementarian.org>
5997
5998         * lyxfunc.C: disable character dialog in ERT inset (partial fix)
5999
6000 2002-07-30  John Levon  <levon@movementarian.org>
6001
6002         * lyxserver.h:
6003         * lyxserver.C: remove I/O callback too
6004
6005 2002-07-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6006
6007         * lyxfunc.C (getStatus): disable LFUN_LATEX_LOG when there is no
6008         log.
6009
6010 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
6011
6012         * many files: strip,frontStrip -> trim,ltrim,rtrim
6013
6014 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
6015
6016         * PrinterParams.h: remove extern containsOnly, and include
6017         support/lstrings.h instead.
6018
6019         * LaTeX.C (scanAuxFile): modify because of strip changes
6020         (deplog): ditto
6021         * buffer.C (makeLaTeXFile): ditto
6022         * bufferparams.C (writeFile): ditt
6023         * lyxfont.C (stateText): ditto
6024         * lyxserver.C (read_ready): ditto
6025         * vc-backend.C (scanMaster): ditto
6026
6027         * BufferView_pimpl.h: ws changes
6028
6029         * BufferView_pimpl.C: inlude boost/signals/connection.hpp
6030
6031 2002-07-26  André Pönitz <poenitz@gmx.net>
6032
6033         * kb_sequence.C: remove unnedred usings
6034
6035 2002-07-26  Juergen Vigna  <jug@sad.it>
6036
6037         * lyxfind.C (LyXReplace): we have to check better if the returned
6038         text is not of theLockingInset()->getLockingInset().
6039
6040 2002-07-25  Juergen Vigna  <jug@sad.it>
6041
6042         * lyxfind.C (LyXReplace): don't replace if we don't get the
6043         right LyXText.
6044
6045         * undo_funcs.C (createUndo): remove debugging code.
6046
6047 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
6048
6049         * buffer.C (parseSingleLyXformat2Token): Use default placement
6050         when reading old floats.
6051
6052         * FloatList.C (FloatList): Change the default placement of figure
6053         and tables to "tbp".
6054
6055 2002-07-25  John Levon  <moz@compsoc.man.ac.uk>
6056
6057         * MenuBackend.C: using std::max
6058
6059 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6060
6061         * MenuBackend.C (expandToc):
6062         (expandToc2): code moved from xforms menu frontend. It is now
6063         generic and TOCs are transparent to menu frontends.
6064
6065 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6066
6067         * toc.C (getTocList): protect against buf=0
6068
6069         * MenuBackend.C (expand): move from Menu to MenuBackend; pass a
6070         Menu as first parameter. Now, this calls itself recursively to
6071         expand a whole tree (this will be useful for TOC handling)
6072         (expandFloatInsert): remove 'wide' version of floats
6073
6074         * MenuBackend.h (submenuname): returns the name of the submenu.
6075         (submenu): returns the submenu itself, provided it has been
6076         created by MenuBackend::expand
6077
6078 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6079
6080         * paragraph_pimpl.C (simpleTeXSpecialChars): close fonts before
6081         insets which have noFontChange == true. (bug #172)
6082
6083 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6084
6085         * BufferView_pimpl.C: add connection objects and use them...
6086         (Pimpl): here.
6087
6088 2002-07-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6089
6090         * MenuBackend.C (expandLastfiles):
6091         (expandDocuments):
6092         (expandFormats):
6093         (expandFloatListInsert):
6094         (expandFloatInsert):
6095         (expand): split expand in parts
6096
6097 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6098
6099         * lyx_gui.C: use lyx_gui::exit()
6100
6101 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6102
6103         * LyXAction.C: show the failing pseudo action
6104
6105 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
6106
6107         * buffer.C (readFile): Run the lyxconvert script in order to read
6108         old files.
6109
6110 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6111
6112         * LyXAction.C:
6113         * commandtags.h:
6114         * lyxfunc.C: remove LFUN_ADD_TO_TOOLBAR
6115
6116 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6117
6118         * LyXAction.C:
6119         * commandtags.h:
6120         * lyxfunc.C: remove LFUN_TOOLBAR_PUSH
6121
6122 2002-07-22  Herbert Voss  <voss@lyx.org>
6123
6124         * lengthcommon.C:
6125         * lyxlength.[Ch]: add support for the vertical lengths
6126
6127 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
6128
6129         * toc.[Ch]: std:: fixes
6130
6131 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6132
6133         * lyxrc.C: do not include lyx_main.h
6134
6135         * LaTeXFeatures.h: use a list<string> instead of a vector<string>
6136         for layouts
6137
6138         * lyxrc.C:
6139         * encoding.C:
6140         * bufferlist.C:
6141         * BufferView2.C: include "lyxlex.h"
6142
6143         * tabular.h:
6144         * bufferparams.h: do not #include "lyxlex.h"
6145
6146         * lyxtextclasslist.C (Add): remove method
6147         (classlist): renamed to classlist_
6148
6149         * paragraph_pimpl.C:
6150         * paragraph.C:
6151         * text2.C:
6152         * CutAndPaste.C:
6153         * bufferview_funcs.C:
6154         * bufferlist.C:
6155         * text.C:
6156         * LaTeXFeatures.C:
6157         * buffer.C:
6158         * toc.C (getTocList): use BufferParams::getLyXTextClass
6159
6160         * toc.C (getTocList): use InsetFloat::addToToc
6161
6162         * toc.[Ch]: new files, containing helper functions to handle table
6163         of contents
6164
6165         * lyxfunc.C (dispatch): no need to remove spaces around command
6166         given as a string
6167         (getStatus): handle LFUN_SEQUENCE by returning the status of the
6168         first command of the sequence; it is not very clever, but I do not
6169         have a better idea, actually
6170
6171         * LyXAction.C (LookupFunc): make sure to remove space at the
6172         beginning and end of the command
6173
6174 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6175
6176         * MenuBackend.C (getMenubar): new method: return the menubar of
6177         this menu set
6178         (read): treat differently reading of menu and menubar (in
6179         particular, the menubar has no name now)
6180         (Menu::menubar): remove
6181
6182         * lyxfunc.C (dispatch): add 'done' message to minibuffer when
6183         saving is finished
6184
6185 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
6186
6187         * BufferView_pimpl.C (workAreaButtonRelease): Fix opening of
6188         a bibitem inset in a RTL paragraph.
6189
6190 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
6191
6192         * paragraph_pimpl.C: constify
6193
6194         * BufferView_pimpl.C:
6195         * LaTeX.C:
6196         * lyxfunc.C: fix dispatch in a nicer way
6197
6198 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6199
6200         * lyxfunc.C (dispatch):
6201         * BufferView_pimpl.C:
6202         * BufferView_pimpl.h:
6203         * BufferView.C:
6204         * BufferView.h: rename Dispatch() to dispatch()
6205
6206         * LaTeXFeatures.C (useLayout): honor LyXLayout::depends_on()
6207
6208         * lyxlayout.C (Read): honor DependsOn tag
6209
6210         * lyxlayout.[Ch] (depends_on): new method
6211
6212         * version.C.in: update lyx_docversion
6213
6214         * LaTeXFeatures.C (getMacros): only define \LyX when needed
6215
6216         * paragraph.C (validate): remove from here...
6217         * paragraph_pimpl.C (validate): ... and move here
6218         (isTextAt): make it const
6219
6220         * buffer.C (getLists): ws cleanup
6221
6222 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
6223
6224         * language.C (read): Use iso8859-1 encoding in latex_lang
6225         (this prevents LyX from crashing when using iso10646-1 encoding).
6226
6227 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6228
6229         * text2.C (toggleInset): if cursor is inside an inset, close the
6230         inset and leave cursor _after_ it
6231
6232 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
6233
6234         * lyxfunc.C: move minibuffer completion handling out of here
6235
6236 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
6237
6238         * BufferView_pimpl.C:
6239         * LaTeX.C: fix dispatch calls
6240
6241 2002-07-19  Dekel Tsur  <dekelts@tau.ac.il>
6242
6243         * text.C (drawChars): Fix Arabic text rendering.
6244
6245 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
6246
6247         * LyXAction.C:
6248         * commandtags.h:
6249         * lyxfunc.C: remove message-push/pop
6250
6251         * lyxserver.C:
6252         * lyxfunc.h:
6253         * lyxfunc.C: rationalise some code by removing verboseDispatch
6254           in favour of a bool argument to dispatch()
6255
6256 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6257
6258         * lyx_main.C (init): make sure to read symlinks as absolute paths
6259
6260 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
6261
6262         * lyxfunc.h:
6263         * lyxfunc.C: no need for commandshortcut to be a member
6264
6265 2002-07-15  André Pönitz <poenitz@gmx.net>
6266
6267         * converter.C: add support for $$s (scripts from lib/scripts dir)
6268         * lyx_main.C: white space
6269
6270 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
6271
6272         * bufferlist.C:
6273         * lyxrc.h:
6274         * lyxrc.C: remove second exit confirmation
6275
6276 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
6277
6278         * BufferView.h:
6279         * BufferView.C:
6280         * BufferView2.C:
6281         * BufferView_pimpl.h:
6282         * BufferView_pimpl.C:
6283         * lyxfunc.C: s/setState/switchKeyMap/, s/showState/view_state_changed/
6284
6285 2002-07-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6286
6287         * MenuBackend.C (expand): add numeric shortcuts to document menu
6288
6289         * lyxrc.C (getDescription): remove RC_NEW_ASK_FILENAME
6290
6291 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6292
6293         * lyxfont.C (setLyXFamily):
6294         (setLyXSeries):
6295         (setLyXShape):
6296         (setLyXSize):
6297         (setLyXMisc):
6298         (lyxRead):
6299         * debug.C (value):
6300         * buffer.C (asciiParagraph): use ascii_lowercase
6301
6302 2002-07-15  Mike Fabian  <mfabian@suse.de>
6303
6304         * lyxlex_pimpl.C (search_kw):
6305         * lyxlex.C (getLongString):
6306         * converter.h (operator<):
6307         * converter.C (operator<):
6308         * buffer.C (parseSingleLyXformat2Token):
6309         (asciiParagraph):
6310         * ToolbarDefaults.C (read):
6311         * MenuBackend.C (checkShortcuts):
6312         (read):
6313         * LColor.C (getFromGUIName):
6314         (getFromLyXName): use the compare_ascii_no_case instead of
6315         compare_no_case, because in turkish, 'i' is not the lowercase
6316         version of 'I', and thus turkish locale breaks parsing of tags.
6317
6318 2002-07-16  Angus Leeming  <leeming@lyx.org>
6319
6320         * BufferView_pimpl.C (buffer): Previews::generateBufferPreviews
6321         now takes a Buffer const & argument.
6322
6323 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
6324
6325         * BufferView.C (resize): check there's a buffer to resize
6326
6327 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
6328
6329         * lyxfunc.C: remove dead code
6330
6331         * lyxserver.h:
6332         * lyxserver.C: use lyx_guii::set_read_callback
6333
6334 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
6335
6336         * lyxfunc.C (dispatch): Correct cursor behaviour when exiting
6337         an inset in a RTL paragraph.
6338
6339 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
6340
6341         * lyxfunc.C: repaint after a font size update
6342
6343 2002-07-15  André Pönitz <poenitz@gmx.net>
6344
6345         * lyxlength.C: inBP should be able to return negative values
6346
6347 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
6348
6349         * lyxfunc.C: use lyx_gui::update_fonts()
6350
6351 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
6352
6353         * lyxfunc.C: use lyx_gui::update_color()
6354
6355 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
6356
6357         * bufferlist.C:
6358         * lyxfunc.h:
6359         * lyxfunc.C:
6360         * lyxrc.h:
6361         * lyxrc.C: remove file->new asks for name option, and let
6362           buffer-new take an argument
6363
6364 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
6365
6366         * BufferView_pimpl.C: remove unneeded extra repaint()
6367
6368 2002-07-10  John Levon  <moz@compsoc.man.ac.uk>
6369
6370         * LyXAction.C: allow command-sequence with NoBuffer
6371
6372         * lyxfunc.C: don't insist on trailing ';' for command-sequence
6373
6374 2002-07-10  Angus Leeming  <leeming@lyx.org>
6375
6376         * lyxrc.[Ch]: preview_scale_factor should be a float not an int.
6377
6378 2002-07-09  Angus Leeming  <leeming@lyx.org>
6379
6380         * lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
6381
6382 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
6383
6384         * lengthcommon.h: whitespace
6385
6386         * lyxfunc.C: update scrollbar after goto paragraph
6387
6388         * lyxtext.h: factor out page break drawing, and fix it so
6389           page break/added space paints as selected nicely
6390
6391 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
6392
6393         * BufferView_pimpl.C: add FIXMEs, clean up a little
6394
6395 2002-07-09  André Pönitz <poenitz@gmx.net>
6396
6397         * lyxfont.[Ch]: support for wasy symbols
6398
6399 2002-07-08  André Pönitz <poenitz@gmx.net>
6400
6401         * BufferView_pimpl.C: apply John's patch for #93.
6402
6403 2002-07-05  Angus Leeming  <leeming@lyx.org>
6404
6405         * BufferView_pimpl.C (buffer): generate previews if desired.
6406
6407         * LColor.h: add "preview" to the color enum.
6408
6409         * LColor.C (LColor): add a corresponding entry to the items array.
6410
6411         * buffer.C (~Buffer): remove any previewed LaTeX snippets associated
6412         with this buffer.
6413
6414 2002-07-05  Angus Leeming  <leeming@lyx.org>
6415
6416         * buffer.[Ch] (makeLaTeXFile): create two methods where there was one.
6417         The body of the code is now in the method that is passed an ostream &
6418         rather than a file name.
6419         Pass an additional only_preamble parameter, useful for the forthcoming
6420         preview stuff.
6421
6422 2002-07-03  André Pönitz <poenitz@gmx.net>
6423
6424         * lyxfunc.C: simplify getStatus() a bit for math stuff
6425
6426 2002-07-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6427
6428         * BufferView_pimpl.C (workAreaResize): add an unconditional repaint.
6429
6430 2002-06-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6431
6432         * text.C (changeRegionCase): do not change case of all the
6433         document when region ends at paragraph end (bug #461)
6434
6435 2002-07-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6436
6437         * paragraph.C (startTeXParParams):
6438         (endTeXParParams): add \protect when necessary
6439
6440 2002-06-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6441
6442         * BufferView_pimpl.C (workAreaExpose): remove warning
6443
6444 2002-06-27  Angus Leeming  <leeming@lyx.org>
6445
6446         * Makefile.am: add lyxlayout_ptr_fwd.h.
6447
6448 2002-06-26  André Pönitz <poenitz@gmx.net>
6449
6450         * lyxrc.[Ch]: introduce \preview, revive half-dead \show_banner
6451
6452 2002-06-25  Angus Leeming  <leeming@lyx.org>
6453
6454         * lyxfunc.C (dispatch): Comment out the call to
6455         grfx::GCache::changeDisplay. The method no longer exists now that the
6456         pixmap generation part of the graphics loader has been moved into
6457         InsetGraphics.
6458
6459 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6460
6461         * text2.C: layout as layout
6462
6463         * text.C: layout as layout
6464
6465         * tabular.C (OldFormatRead): layout as layout
6466
6467         * paragraph_pimpl.C (TeXDeeper): layout as layout
6468         (realizeFont): layout as layout
6469
6470         * paragraph.C (writeFile): layout as layout
6471         (validate): layout as layout
6472         (getFont): layout as layout
6473         (getLabelFont): layout as layout
6474         (getLayoutFont): layout as layout
6475         (breakParagraph): layout as layout
6476         (stripLeadingSpaces): layout as layout
6477         (getEndLabel): layout as layout
6478         (getMaxDepthAfter): layout as layout
6479         (applyLayout): layout as layout
6480         (TeXOnePar): layout as layout
6481         (simpleTeXOnePar): layout as layout
6482         (TeXEnvironment): layout as layout
6483         (layout): layout as layout
6484         (layout): layout as layout
6485
6486         * lyxtextclass.C (compare_name): new functor to work with
6487         shared_ptr, layout as layout
6488         (Read): layout as layout
6489         (hasLayout): layout as layout
6490         (operator): layout as layout
6491         (delete_layout): layout as layout
6492         (defaultLayout): layout as layout
6493
6494         * lyxlayout_ptr_fwd.h: new file
6495
6496         * lyxlayout.C (Read): layout as layout
6497
6498         * lyx_cb.C (MenuInsertLabel): layout as layout
6499
6500         * bufferlist.C (newFile): layout as layout
6501
6502         * buffer.C (readLyXformat2): layout as layout
6503         (parseSingleLyXformat2Token): layout as layout
6504         (insertStringAsLines): layout as layout
6505         (asciiParagraph): layout as layout
6506         (latexParagraphs): layout as layout
6507         (makeLinuxDocFile): layout as layout
6508         (simpleLinuxDocOnePar): layout as layout
6509         (makeDocBookFile): layout as layout
6510         (simpleDocBookOnePar): layout as layout
6511         (getLists): layout as layout
6512
6513         * LaTeXFeatures.C (getTClassPreamble): layout as layout
6514
6515         * CutAndPaste.C (cutSelection): layout as layout
6516         (pasteSelection): layout as layout
6517         (SwitchLayoutsBetweenClasses): layout as layout
6518
6519         * BufferView_pimpl.C (Dispatch): layout as layout
6520         (smartQuote): layout as layout
6521
6522         * BufferView2.C (unlockInset): layout as layout
6523
6524 2002-06-24  André Pönitz <poenitz@gmx.net>
6525
6526         * lyxfunc.C: fix #487
6527
6528 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6529
6530         * lyxrc.h:
6531         * lyxrc.C:
6532         * lyxfunc.C: remove display_shortcuts, show_banner
6533
6534 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6535
6536         * Buffer_pimpl.C: oops, update on resize
6537
6538 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6539
6540         * buffer.C:
6541         * converter.C:
6542         * exporter.C:
6543         * lyxfunc.C:
6544         * BufferView.h:
6545         * BufferView.C: use repaint()
6546
6547         * BufferView_pimpl.h:
6548         * BufferView_pimpl.C: s/updateScreen()/repaint()/
6549           as it's a clearer description. Remove superfluous
6550           redraws.
6551
6552 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6553
6554         * text.C: fix bug 488. Not ideal, but getting
6555           getWord() to work properly for the insets that
6556           matter is more difficult ...
6557
6558 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
6559
6560         * BufferView_pimpl.C:
6561         * LyXAction.C:
6562         * commandtags.h:
6563         * lyxfunc.C: remove the six million index lyxfuncs to just
6564           one, and DTRT (bug 458)
6565
6566 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
6567
6568         * BufferView.h:
6569         * BufferView.C:
6570         * BufferView_pimpl.h:
6571         * BufferView_pimpl.C: clean up resize() stuff,
6572           and unnecessary updateScreen()s
6573
6574 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
6575
6576         * BufferView.h:
6577         * BufferView.C:
6578         * BufferView_pimpl.h:
6579         * BufferView_pimpl.C:
6580         * lyxfind.h:
6581         * lyxfind.C:
6582         * minibuffer.C: remove focus management of workarea,
6583           not needed. Use screen's greyOut()
6584
6585 2002-06-17  Herbert Voss  <voss@lyx.org>
6586
6587         * converter.C: (convert) do not post a message, when converting
6588         fails, let the calling function decide what to do in this case
6589
6590 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
6591
6592         * lyxfunc.C: tidy up a little
6593
6594 2002-06-16    <alstrup@diku.dk>
6595
6596         * BufferView_pimpl.C (Pimpl): Use WorkAreaFactory.
6597         Got rid of FORMS_H_LOCATION include. Now we are
6598         GUII.
6599
6600 2002-06-15  LyX Development team  <lyx@rilke>
6601
6602         * buffer.[Ch] (sgmlOpenTag):
6603         (sgmlCloseTag): Added support for avoiding pernicious mixed
6604         content. Return number of lines written.
6605
6606         (makeLinuxDocFile):
6607         (makeDocBookFile): Fixed calls to sgml*Tag.
6608         Simple white space clean.
6609
6610         (simpleDocBookOnePar): Simple white space clean.
6611
6612         * tabular.[Ch] (docBook): Renamed to docbook and got another
6613         argument to related with the pernicious mixed content.
6614
6615         (docbookRow): Fixed calls for docbook inset method.
6616
6617 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
6618
6619         * lyxfunc.[Ch]: Use LyXKeySym instead of KeySym,
6620         so it's X11 independent.
6621
6622         * kb*.[Ch]: ditto.
6623
6624         * BufferView_pimpl.[Ch] (workAreaKeyPress): ditto.
6625
6626 2002-06-15  Lyx Development team  <lyx@electronia>
6627
6628         * intl.h: Renamed getTrans to getTransManager.
6629
6630 2002-06-14  Angus Leeming  <leeming@lyx.org>
6631
6632         * Makefile.am: nuke forgotten stl_string_fwd.h.
6633
6634 2002-06-12  Angus Leeming  <leeming@lyx.org>
6635
6636         * stl_string_fwd.h: unused and non-compliant anyway. Nuked.
6637
6638 2002-06-13  Angus Leeming  <leeming@lyx.org>
6639
6640         * LaTeX.C:
6641         * vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
6642
6643 2002-06-12  Andrew Zabolotny  <zap@cobra.ru>
6644
6645         * kbmap.C (getiso): add support for cyrillic and greek
6646
6647 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6648
6649         * BufferView.h:
6650         * BufferView.C:
6651         * BufferView_pimpl.h:
6652         * BufferView_pimpl.C: move bogus scrolling logic
6653           to xforms
6654
6655 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6656
6657         * lyxfunc.C:
6658         * BufferView_pimpl.C: view->resize() change
6659
6660 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6661
6662         * BufferView_pimpl.C: topCursorVisible
6663           prototype change
6664
6665 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6666
6667         * Makefile.am:
6668         * lyx_gui.h:
6669         * lyx_gui.C: move to frontends/
6670
6671         * main.C:
6672         * lyx_main.h:
6673         * lyx_main.C: changes from above
6674
6675 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6676
6677         * intl.C:
6678         * intl.h:
6679         * kbmap.C:
6680         * kbsequence.C:
6681         * lyx_cb.C:
6682         * lyx_main.C: minor tidy
6683
6684 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6685
6686         * BufferView_pimpl.h:
6687         * BufferView_pimpl.C:
6688         * BufferView.h:
6689         * BufferView.C: make painter() const,
6690           remove dead code
6691
6692         * BufferView2.C: use screen() accessor
6693
6694         * lyx_main.h:
6695         * lyx_main.C: some minor cleanup
6696
6697 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6698
6699         * BufferView_pimpl.h:
6700         * BufferView_pimpl.C: remove enter/leaveView,
6701           use workHeight()
6702
6703 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6704
6705         * BufferView.h:
6706         * BufferView.C:
6707         * BufferView2.C:
6708         * BufferView_pimpl.h:
6709         * BufferView_pimpl.C: only construct screen once,
6710           rename
6711
6712         * lyxrc.C: remove pointless comment
6713
6714 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
6715
6716         * BufferView.h:
6717         * BufferView.C: remove active() and belowMouse()
6718
6719         * BufferView_pimpl.h:
6720         * BufferView_pimpl.C: use workarea() not workarea_,
6721           and make it use a scoped_ptr instead
6722
6723 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
6724
6725         * lyx_gui.C: add debug message on BadWindow
6726
6727 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6728
6729         * sp_spell.C: fdopen is not part of the C++ standard.
6730
6731         * paragraph.C (InsetIterator): use >= instead of ==
6732
6733 2002-06-07  Angus Leeming  <leeming@lyx.org>
6734
6735         Fixes needed to compile with Compaq cxx 6.5.
6736         * BufferView_pimpl.C:
6737         * DepTable.C:
6738         * buffer.C:
6739         * converter.C:
6740         * encoding.C:
6741         * lyx_gui.C:
6742         * lyx_main.C:
6743         * lyxtextclasslist.C:
6744         * minibuffer.C:
6745         * sp_spell.C:
6746         * tabular_funcs.C:
6747         * vc-backend.C:
6748         all c-library variables have been moved into namespace std. Wrap
6749         using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
6750
6751         * lyxlength.C:
6752         * tabular-old.C:
6753         * tabular.C:
6754         Add a using std::abs declaration.
6755
6756         * kbmap.h (modifier_pair):
6757         * paragraph.h (InsetTable, InsetList):
6758         * lyxfont.h (FontBits):
6759         type definition made public.
6760
6761         * bufferlist.C (emergencyWriteAll): the compiler complains that
6762         there is more than one possible lyx::class_fun template to choose from.
6763         I re-named the void specialisation as lyx::void_class_fun.
6764
6765         * lyxfont.C (FontBits' operator==, operator!=): taken out of class.
6766
6767         * tabular_funcs.C: lstrings.h must come before tabular_funcs.h or
6768         the compiler is is unable to find tostr in write_attribute.
6769
6770 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6771
6772         * buffer.C (sgmlError): hide #warning
6773
6774 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6775
6776         * xtl/*: get rid of xtl, which is not in use anyway
6777
6778         * LyXAction.C (init):
6779         * commandtags.h: remove BUFFER_PRINT and BUFFER_PARAMS_GET, which
6780         were unimplemented xtl experimentation
6781
6782 2002-06-04  André Pönitz <poenitz@gmx.net>
6783
6784         * lyxfunc.C: disable array operation on simple formulae
6785
6786 2002-06-03  John Levon  <moz@compsoc.man.ac.uk>
6787
6788         * converter.C: constify a bit
6789
6790 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
6791
6792         * lyx_gui.C: check xforms version correctly
6793
6794 2002-04-30  Herbert Voss  <voss@lyx.org>
6795
6796         * buffer.C (parseSingleLyXformat2Token): fix bug with ignored
6797         "keep" option
6798
6799 2002-05-31  John Levon  <moz@compsoc.man.ac.uk>
6800
6801         * lyxvc.C: fix bug 416 (make sure buffer is saved before
6802           attempt to register it with a VCS)
6803
6804 2002-05-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6805
6806         * lyx_main.C (init): honor variables LYX_DIR_13x and
6807         LYX_USERDIR_13x
6808
6809 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
6810
6811         * buffer.h:
6812         * buffer.C:
6813         * lyx_main.C: fix a crash on bad command line,
6814           and give a useful exit status on error
6815
6816         * lyxfunc.C (doImport): allow -i lyx to work
6817
6818 2002-03-30  André Pönitz <poenitz@gmx.net>
6819
6820         * lyxfunc.C: mathed font changes
6821
6822 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
6823
6824         * LaTeX.C:
6825         * importer.h:
6826         * importer.C:
6827         * lyx_sty.h:
6828         * lyx_sty.C:
6829         * lyxlex.C:
6830         * lyxrow.h:
6831         * lyxtext.h:
6832         * paragraph.h:
6833         * paragraph.C:
6834         * texrow.h:
6835         * texrow.C:
6836         * text.C:
6837         * trans_mgr.h: srcdocs, and some minor cleanups
6838
6839 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6840
6841         * paragraph_pimpl.C (isTextAt): rewrite to be much faster (do not
6842         call getFont all the time)
6843
6844 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6845
6846         * switch from SigC signals to boost::signals
6847
6848 2002-05-29  André Pönitz <poenitz@gmx.net>
6849
6850         * paragraph_pimpl.C (getChar): don't call size() too often...
6851
6852 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6853
6854         * paragraph_pimpl.C (insertChar): do not try to update tables when
6855         appending (pos == size())
6856
6857         * buffer.C (parseSingleLyXformat2Token): reorder a bit the tests
6858         in order to reduce drastically the number of comparisons needed to
6859         parse a large document
6860
6861 2002-05-29  André Pönitz <poenitz@gmx.net>
6862
6863         * text.C:
6864         * text2.C:
6865         * lyxtextclass.C:
6866         * sp_pspell.h:
6867         * textclasslist.[Ch]:
6868         * sp_ispell.h: whitespace change
6869
6870 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6871
6872         * lyxserver.C (callback): tentative fix of lyxserver. Does not use
6873         lyxaction directly now.
6874
6875 2002-05-27  John Levon  <moz@compsoc.man.ac.uk>
6876
6877         * trans.C:
6878         * lyxfont.C:
6879         * lyxvc.C: remove unused headers
6880
6881 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
6882
6883         * Makefile.am:
6884         * buffer.h:
6885         * undostack.h:
6886         * undostack.C:
6887         * undo_funcs.h:
6888         * undo_funcs.C: some cleanups. Use shared_ptr
6889           and a template for the undo stacks.
6890
6891 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
6892
6893         * BufferView_pimpl.h:
6894         * BufferView_pimpl.C:
6895         * kbmap.h:
6896         * kbmap.C:
6897         * kbsequence.h:
6898         * kbsequence.C:
6899         * lyxfunc.h:
6900         * lyxfunc.C:
6901         * text2.C: use key_state/mouse_state
6902
6903 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6904
6905         * vc-backend.C (scanMaster): use boost regex and get rid of LRegex
6906         and LSubstring
6907
6908         * chset.C: change include order
6909         (loadFile): use boost regex and get rid of LRegex and LSubstring
6910
6911         * Makefile.am (BOOST_LIBS): new variable
6912         (lyx_LDADD): use it
6913
6914         * LaTeX.C: change include order.
6915         (scanAuxFile): use boost regex and get rid of LRegex and
6916         LSubstring
6917         (deplog): ditto
6918
6919 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
6920
6921         * ColorHandler.h:
6922         * ColorHandler.C:
6923         * FontInfo.h:
6924         * FontInfo.C: moved to frontends/xforms/
6925
6926         * FontLoader.h:
6927         * FontLoader.C: moved into frontends for GUIIzation
6928
6929         * Makefile.am:
6930         * lyx_gui.C:
6931         * lyxfont.C:
6932         * lyxfunc.C: changes from above
6933
6934 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
6935
6936         * LColor.C: remove spurious X include
6937
6938         * BufferView_pimpl.C:
6939         * Makefile.am:
6940         * font.h:
6941         * font.C:
6942         * text.C:
6943         * text2.C: move font metrics to frontends/
6944
6945 2002-05-24  Juergen Vigna  <jug@sad.it>
6946
6947         * undo_funcs.C (textHandleUndo): fix the cursor selection after
6948         setting the undo_cursor.
6949
6950         * ParagraphParameters.h: include local includes first.
6951
6952 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
6953
6954         * BufferView_pimpl.C:
6955         * BufferView_pimpl.h:
6956         * Makefile.am:
6957         * WorkArea.h:
6958         * WorkArea.C:
6959         * screen.C: move WorkArea into frontends/
6960
6961         * lyxscreen.h:
6962         * screen.C:
6963         * text.C:
6964         * BufferView.C:
6965         * BufferView2.C: move LyXScreen into frontends/
6966
6967         * lyxlookup.h:
6968         * lyxlookup.C:
6969         * lyx_gui.C: move lyxlookup into frontends/xforms/
6970
6971 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
6972
6973         * BufferView2.C:
6974         * BufferView_pimpl.C:
6975         * FontLoader.C:
6976         * LyXView.h:
6977         * LyXView.C:
6978         * Makefile.am:
6979         * WorkArea.C:
6980         * XFormsView.h:
6981         * XFormsView.C:
6982         * buffer.C:
6983         * bufferlist.C:
6984         * bufferview_funcs.C:
6985         * converter.C:
6986         * importer.C:
6987         * lyx_cb.C:
6988         * lyx_gui.C:
6989         * lyx_main.C:
6990         * lyx_find.C:
6991         * lyxfunc.C:
6992         * lyxvc.C:
6993         * minibuffer.C:
6994         * text.C:
6995         * text2.C:
6996         * trans.C:
6997         * vc-backend.C: move LyX/XFormsView into frontends/
6998
6999 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
7000
7001         * Makefile.am:
7002         * PainterBase.C:
7003         * PainterBase.h:
7004         * Painter.C:
7005         * Painter.h:
7006         * WorkArea.C:
7007         * WorkArea.h:
7008         * screen.C:
7009         * tabular.C:
7010         * text.C:
7011         * text2.C: move Painter to frontends/
7012
7013 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7014
7015         * buffer.C: comment out some some code that depend upon lyx_format
7016         < 220
7017
7018         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
7019         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
7020
7021         * buffer.h (NO_COMPABILITY): turn off compability
7022
7023         * ColorHandler.C: include scoped_array.hpp
7024
7025         * font.C: Use more specific smart_ptr header.
7026         * Painter.C: ditto
7027         * gettext.C: ditto
7028         * ShareContainer.h: ditto
7029         * lyx_main.h: ditto
7030         * kbmap.h: ditto
7031         * FontInfo.h: ditto
7032         * BufferView_pimpl.h: ditto
7033         * ColorHandler.h: ditto
7034
7035         * kbmap.C (defkey): change call to shared_ptr::reset
7036
7037 2002-05-21  Juergen Vigna  <jug@sad.it>
7038
7039         * buffer.C (insertErtContents): fix to insert ert asis if it is
7040         non empty. Skip it completely if it contains only whitespaces.
7041
7042 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
7043
7044         * BufferView_pimpl.C:
7045         * BufferView2.C: clear selection on paste (bug 393)
7046
7047 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7048
7049         * DepTable.C: include ctime
7050
7051 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
7052
7053         * buffer.C (latexParagraphs): Add new argument (moving_arg).
7054
7055 2002-05-14  Juergen Vigna  <jug@sad.it>
7056
7057         * text.C (breakParagraph): fixed function to honor the keepempty
7058         layout in the right maner and also to permit the right breaking
7059         algorithm on empty or non empyt keepempty paragraphs.
7060
7061         * paragraph.C (breakParagraph): we have to check also if the par
7062         is really empty (!size()) for isempty otherwise we do the wrong
7063         paragraph break.
7064
7065 2002-05-10  Juergen Vigna  <jug@sad.it>
7066
7067         * buffer.[Ch] : The following are only changes to the ert
7068         compatibility read reading old LaTeX layout and font stuff and
7069         convert it to ERTInsets.
7070
7071         * buffer.h: added isErtInset().
7072
7073         * buffer.C (struct ErtComp): add a fromlayout bool to check
7074         if we're inside a LaTeX layout.
7075         (isErtInset): new helper function.
7076         (insertErtContents): look for other ert insets before this one
7077         and insert the contents there, so that we don't have subsequent
7078         ERT insets with nothing between them. This way we create only one
7079         inset with multiple paragraphs. Also check if we don't insert only
7080         spaces ' ' as they are ignored anyway afterwards in the .tex file
7081         so if we have only spaces we will ignore this latex part in the
7082         new file.
7083         (parseSingleLyXformat2Token \\layout): better compatibility when
7084         reading layout-latex stuff.
7085         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
7086         language tag.
7087         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
7088         stuff after reading the inset only get the information back from
7089         the stack.
7090
7091 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
7092
7093         * buffer.C (makeLaTeXFile): Put language options after loading babel.
7094
7095         * LaTeXFeatures.C (getBabelOptions): New method.
7096
7097 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7098
7099         * BufferView_pimpl.C (Dispatch): work around missing argument for
7100         'layout'
7101
7102 2002-05-08  Juergen Vigna  <jug@sad.it>
7103
7104         * text.C (leftMargin): handle paragraph leftindent.
7105
7106         * paragraph.C (writeFile): write the new \\leftindent tag.
7107         (validate): handle leftindent code.
7108         (TeXEnvironment): handle paragraphleftindent code again.
7109
7110         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
7111
7112         * buffer.C (parseSingleLyXformat2Token): added compatibility code
7113         for paragrap_extra indent code and new token \\leftindent.
7114         (latexParagraphs): handle the leftindent as environment.
7115
7116         * ParameterStruct.h: added leftindent support.
7117
7118         * ParagraphParameters.C (leftIndent): added support functions for
7119         the paragraph left indent.
7120
7121         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
7122         more appropriate.
7123
7124 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
7125
7126         * paragraph.C (isRightToLeftPar): Return false for a paragraph
7127         inside insetERT.
7128
7129         * text.C (computeBidiTables): No bidi in insetERT.
7130
7131         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
7132         in RTL documents.
7133
7134 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7135
7136         * version.C.in: pre 5
7137
7138 2002-05-02  José Matos  <jamatos@fep.up.pt>
7139         * buffer.C (makeDocBookFile): white space changes, add newline to
7140         command styles.
7141         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
7142
7143         * tabular.C (docBook): fix typo.
7144
7145 2002-05-03  Juergen Vigna  <jug@sad.it>
7146
7147         * screen.C (drawFromTo): recalculate the rowpointer if we had a
7148         change in LyXText as we can not be sure it was not freed.
7149         (drawOneRow): remove unused code.
7150
7151         * text.C (drawInset): redo the calculation of the need_break_row as
7152         it could have a row which was already freed.
7153         (draw): look at the return value of drawInset and return false if
7154         it also returned false.
7155         (paintRowText): look at the return value of draw and return false if
7156         it also returned false.
7157
7158         * lyxtext.h: added bool return type to drawInset() and draw() so that
7159         if we have a change in the row so that the rowbreak has to be redone
7160         we abort drawing as it will be called again.
7161
7162 2002-05-02  Juergen Vigna  <jug@sad.it>
7163
7164         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
7165         a change in the maintext also if we're inside an inset.
7166         (Dispatch): set the cursor again after a break line and after the
7167         screen has been updated as it could be we're in a different row.
7168
7169         * text2.C (fixCursorAfterDelete): check to make sure we don't request
7170         to set the cursor behind the pargraph with > size().
7171         (setCursor): check also for the same paragraph when checking where
7172         to put the cursor if we have a NFR inset.
7173
7174         * buffer.C (parseSingleLyXformat2Token): move the compatibility
7175         parts of layout read further up as it still was in the wrong
7176         position.
7177
7178 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7179
7180         * screen.C (drawFromTo): change sine fullRebreak always return
7181         true.
7182
7183         * buffer.C (parseSingleLyXformat2Token): reindent some
7184
7185         * BufferView_pimpl.C (update): change since fullRebreak always
7186         return true.
7187         (Dispatch): git rid of the last hardcoded "Standard"s.
7188
7189 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7190
7191         * text2.[Ch] (fullRebreak): make it return void now that we always
7192         returned true.
7193
7194 2002-04-30  Juergen Vigna  <jug@sad.it>
7195
7196         * buffer.C (parseSingleLyXformat2Token): reset the font before the
7197         ert compatibility check for "latex" layout.
7198
7199 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
7200
7201         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
7202         minipages: use col% instead of p%, and also use the current font.
7203         (makeLaTeXFile): Fix use babel condition.
7204         (parseSingleLyXformat2Token): Correct font when reading old floats.
7205
7206 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
7207
7208         * BufferView_pimpl.C (Dispatch): Check that float type exists when
7209         inserting list of floats.
7210
7211 2002-04-25  Herbert Voss  <voss@lyx.org>
7212
7213         * MenuBackend.C (expand): don't add the graphics extensions to the
7214         export menu
7215
7216 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7217
7218         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
7219         non-existing layout, do not complain if it was the default layout
7220         of the original class (bug #342)
7221
7222 2002-04-24  Juergen Vigna  <jug@sad.it>
7223
7224         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
7225         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
7226
7227 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
7228
7229         * buffer.C (getBibkeyList): If using \bibliography, return the
7230         option field with the reference itself. Enables us to provide natbib
7231         support when using \bibliography.
7232
7233 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
7234
7235         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
7236
7237         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
7238         natbib is provided by the LaTeX class.
7239
7240 2002-04-23  Juergen Vigna  <jug@sad.it>
7241
7242         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
7243         Wakeup functions.
7244
7245         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
7246
7247 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7248
7249         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
7250
7251         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
7252         ensuremath around textordmasculine, textordfeminine and
7253         textdegree.
7254
7255 2002-04-19  Juergen Vigna  <jug@sad.it>
7256
7257         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
7258         reinitializing the buffer otherwise row-dimensions may be wrong.
7259         (update): reset also the selection cursors if they do exits otherwise
7260         their x/y positions may be wrong.
7261
7262         * text2.C (cursorDown): don't enter the inset if we came from a row
7263         above and are one row over the inset.
7264
7265         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
7266         really leaving an inset.
7267
7268 2002-04-18  Juergen Vigna  <jug@sad.it>
7269
7270         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
7271         of the selected paragraph does not have the selected layout also if
7272         the last one had!
7273
7274         * text2.C (setLayout): fixed bug which did not change last selected
7275         paragraph.
7276
7277         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
7278         changed the read and substituted \\end_float with \\end_inset!
7279
7280         * BufferView_pimpl.C (cursorPrevious):
7281         (cursorNext): fixed to make it work with rows heigher than the work
7282         area without moving the cursor only the draw of the row.
7283         (workAreaMotionNotify): fix jumping over high rows.
7284
7285 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7286
7287         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
7288         Ressler.
7289
7290 2002-04-16  Juergen Vigna  <jug@sad.it>
7291
7292         * text2.C (setCursor): set also the irow().
7293         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
7294         (cursorUp):
7295         (cursorDown): support for locking an inset if the x_fix value goes
7296         inside it. That way I can transverse insets too with cursor up/down.
7297
7298         * lyxrow.h: added irow helper function same as other (i) functions.
7299
7300         * BufferView_pimpl.C (cursorPrevious):
7301         (cursorNext): fixed for insets!
7302
7303 2002-04-15  Juergen Vigna  <jug@sad.it>
7304
7305         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
7306         position otherwise it is wrong in some cases.
7307
7308         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
7309         inside the inset before the call.
7310
7311 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
7312
7313         * buffer.[Ch] (getBibkeyList): make it const.
7314
7315 2002-04-12  Juergen Vigna  <jug@sad.it>
7316
7317         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
7318
7319         * text2.C (getCursorX): new helper function
7320         (setCursor): compute also ix_
7321         (setCursorFromCoordinates): set also ix.
7322
7323         * lyxcursor.h: added ix_ and helper functions.
7324
7325         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
7326
7327         * buffer.C (insertStringAsLines): dont break paragraph if the this
7328         paragraph is inside an inset which does not permit it!
7329
7330         * text.C (breakParagraph): honor keepempty flag and break the paragraph
7331         also with no chars on this paragraph.
7332         (paintRowText): only paint stuff if it's inside the workarea!
7333
7334         * paragraph.C (breakParagraph): honor keepempty flag and break the
7335         paragraph always below not above.
7336
7337         * BufferView2.C (unlockInset): update the paragraph layout on inset
7338         unlock as we changed paragraph in such a case.
7339
7340         * lyxfind.C (LyXFind): clear the former selection if not found!
7341
7342         * text2.C (insertInset): freeze Undo after setUndo so that it is not
7343         again called in insertChar().
7344
7345         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
7346         an inset which uses the whole row!
7347         (rightMargin): ditto.
7348         (insertChar): force a rebreak if we inserted an inset!
7349
7350 2002-03-28  Herbert Voss  <voss@lyx.org>
7351
7352         * lyxlength.[Ch]: add inBP() to get the right PS-point
7353         units (BigPoint). With inPixels we have rounding errors
7354
7355 2002-04-11  Juergen Vigna  <jug@sad.it>
7356
7357         * text2.C (setCursorFromCoordinates): set iy to the right value.
7358         (setCursor): add check if row->previous exists!
7359
7360         * buffer.C (parseSingleLyXformat2Token): reset font after read of
7361         an old float_type as this was the case in the old code!
7362
7363         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
7364
7365         * BufferView2.C (showLockedInsetCursor): use iy
7366         (fitLockedInsetCursor): ditto
7367
7368         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
7369         locked insets as there we have the right value now.
7370
7371         * lyxcursor.C: added iy_ variable and iy functions to set to the
7372         baseline of cursor-y of the locked inset.
7373
7374         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
7375         (setCursor): fixed for insets which need a full row.
7376
7377         * text.C (rowLastPrintable): don't ignore the last space when before
7378         an inset which needs a full row.
7379         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
7380         as last character of a row when before a inset which needs a full row.
7381
7382 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7383
7384         * version.C.in: update date
7385
7386         * text2.C (fullRebreak): try to always return true and see what
7387         happens...
7388
7389 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7390
7391         * MenuBackend.C (expand): use Floating::listName
7392
7393         * FloatList.C (FloatList): add listName argument to the built-in
7394         floats
7395
7396         * Floating.[Ch]: add listName member, which is the 'List of XXX'
7397         text associated with the float.
7398
7399 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7400
7401         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
7402
7403 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7404
7405         * ShareContainer.h: add a couple of missing typenames.
7406
7407 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
7408
7409         * lyxrc.C (getDescription): use _() correctly rather than N_().
7410
7411 2002-03-28  Herbert Voss  <voss@lyx.org>
7412
7413         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
7414         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
7415
7416 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7417
7418         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
7419         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
7420
7421 2002-03-29  Juergen Vigna  <jug@sad.it>
7422
7423         * lyxfunc.C (dispatch): add a missing fitCursor call.
7424
7425         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
7426         it was scrolled by a cursor move, so return the bool status.
7427
7428         * BufferView.C (fitCursor): return the bool flag also to the outside
7429         world as this is needed.
7430
7431         * screen.C (toggleToggle): don't subtract the offset if it's positive.
7432
7433         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
7434         call the edit() as it is not needed (and wrong) IMO.
7435         (workAreaButtonPress): set the screen_first variable before evt.
7436         unlock the inset as this may change screen_first and then we have
7437         a wrong y position for the click!
7438
7439 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7440
7441         * MenuBackend.C (expand): another translation that I missed
7442
7443 2002-03-28  Juergen Vigna  <jug@sad.it>
7444
7445         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
7446
7447         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
7448
7449 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7450
7451         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
7452
7453         * MenuBackend.C (expand): fix export/view/update when there is no
7454         document open.
7455
7456 2002-03-27  Herbert Voss  <voss@lyx.org>
7457
7458         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
7459         and text%
7460
7461 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7462
7463         * bufferview_funcs.C (currentState): only show paragraph number
7464         for is DEVEL_VERSION is set.
7465
7466         * lyxfunc.C (dispatch): put warning in INFO channel
7467
7468         * MenuBackend.C (expand): translate the name of floats
7469
7470         * FloatList.C (FloatList): mark the float names for translation
7471
7472         * converter.C (convert): use LibScriptSearch
7473
7474 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7475
7476         * MenuBackend.C (defaults): fix default menu (we might as well get
7477         rid of it...)
7478
7479 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7480
7481         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
7482         directory.
7483
7484 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7485
7486         * lyxvc.C: reorder includes.
7487
7488 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
7489
7490         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
7491           properly
7492
7493 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
7494
7495         * CutAndPaste.C: change layouts earlier on paste
7496           to avoid crashing when calling getFont()
7497
7498 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
7499
7500         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
7501         irritating #error.
7502
7503 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7504
7505         * WorkArea.C: remove 'Pending' debug message.
7506
7507         * most files: ws cleanup
7508
7509         * buffer.[Ch]: ws changes
7510
7511         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
7512
7513 2002-03-21  Juergen Vigna  <jug@sad.it>
7514
7515         * tabular.C (SetMultiColumn): collapse also the contents of the
7516         cells and set the last border right. Added a Buffer const * param.
7517
7518 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7519
7520         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
7521         linking or not.
7522
7523 2002-03-19  Juergen Vigna  <jug@sad.it>
7524
7525         * text2.C (clearSelection): reset also xsel_cache.
7526
7527         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
7528         where it needs to be called (John tells us to do so too :)
7529         (selectionLost): reset sel_cache.
7530
7531         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
7532
7533 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7534
7535         * text2.C (setCursorIntern): put debuging code in INSETS channel
7536
7537 2002-03-19  André Pönitz <poenitz@gmx.net>
7538
7539         * lyxfunc.C: tiny whitespace change
7540
7541 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7542
7543         * ToolbarDefaults.C (init):
7544         * LyXAction.C (init):
7545         * commandtags.h:
7546         * BufferView_pimpl.C (Dispatch):
7547         * lyxfunc.C (dispatch): remove LFUN_DEPTH
7548
7549 2002-03-19  Allan Rae  <rae@lyx.org>
7550
7551         * exporter.C (Export): removeAutoInsets before doing anything else.
7552         While I've just introduced a dependency on BufferView this really is
7553         the best place to clean the buffer otherwise you need to cleanup in
7554         a dozen places before calling export or cleanup in a dozen functions
7555         that export calls.
7556
7557         * converter.C (runLaTeX):
7558         (scanLog): Better handling of removeAutoInsets and screen updates.
7559
7560         * lyxfunc.C (dispatch): small whitespace changes
7561
7562 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7563
7564         * WorkArea.C (C_WorkAreaEvent): return a value.
7565         (event_cb): return 1 if we handled the event, 0 otherwise.
7566
7567         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
7568
7569 2002-03-18  Juergen Vigna  <jug@sad.it>
7570
7571         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
7572         (GetAdditionalWidth): ditto.
7573         (RightLine): ditto.
7574         (LeftLine): ditto.
7575
7576         * BufferView2.C (copy): use getLyXText() so that we do it inside an
7577         inset if we're there actually (probably not used right now but this
7578         is the direction to go for unifying code).
7579         (paste): disable code to clear the selection.
7580
7581         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
7582         inside an InsetText and move the check further up as it is in the
7583         wrong place.
7584
7585         * text2.C (pasteSelection): set a selection over the pasted text.
7586
7587 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
7588
7589         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
7590         and libgraphics to build on Cygwin.
7591
7592 2002-03-15  Juergen Vigna  <jug@sad.it>
7593
7594         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
7595         inserting an Inset into the paragraph. I know this is not the best
7596         fix but we already use current_view in CutAndPaste so we will remove
7597         all of it's using at the same time.
7598
7599         * buffer.C (sgmlError): deactivated function till it is rewritten in
7600         the right mode, now it can create problems.
7601
7602         * paragraph.C (isLineSeparator): check if getInset returns != 0,
7603         before accessing it.
7604
7605 2002-03-14  Juergen Vigna  <jug@sad.it>
7606
7607         * undo_funcs.C (textHandleUndo): do the right thing when updating
7608         the inset after the undo/redo.
7609
7610         * text2.C (setCursor): just some testcode for #44 not ready yet.
7611
7612         * undo_funcs.C (textHandleUndo): set the next() and previous()
7613         pointers of the paragraph to 0 before deleting otherwise we have
7614         problems with the Paragraph::[destructor].
7615
7616         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
7617         on a paragraph insertion.
7618
7619 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7620
7621         * buffer.C (asciiParagraph): use += operator for char append to
7622         string.
7623
7624         * paragraph.C (getFontSettings): compare >= not just >
7625         (highestFontInRange): ditto
7626         (setFont): ditto
7627
7628 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7629
7630         * paragraph.C: change several algorithm to be more appripriate for
7631         the problem domain. This is lookip in FontList and in the InsetList.
7632
7633 2002-03-13  André Pönitz <poenitz@gmx.net>
7634
7635         * commandtags.h:
7636         * LyXAction.C: remove unused LFUN_MATH_MACROARG
7637
7638 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
7639
7640         * commandtags.h:
7641         * LyXAction.C:
7642         * lyxfunc.C:
7643         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
7644
7645 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7646
7647         * Painter.C (display): anon helper function, adjust code for this
7648         change.
7649         (pixmap): remove function.
7650
7651         * Painter.h: remove private display variable.
7652
7653         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
7654
7655 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
7656
7657         * WorkArea.[Ch]: remove figinset_canvas cruft.
7658
7659 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7660
7661         * lyxtextclass.C (operator): add one item cache optimization.
7662
7663         * bufferlist.h: doxy changes
7664
7665         * bufferlist.C: ws changes
7666
7667         * DepTable.[Ch] (ext_exist): place const in the right spot.
7668
7669         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
7670         call resizeInsets.
7671         (workAreaExpose): call resizeInsets when the with BufferView changes.
7672         (Dispatch): adjust for protectedBlank removal
7673         (specialChar): call updateInset if the insert went ok.
7674
7675         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
7676         specialChar instead.
7677
7678         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
7679
7680         * BufferView.h: doxy change
7681
7682         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
7683
7684         * lyxtextclass.C (operator[]): remove non-const version
7685         (defaultLayout): remove non-const version
7686
7687 2002-03-12  Juergen Vigna  <jug@sad.it>
7688
7689         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
7690         did resize the LyXText too.
7691
7692         * buffer.C (readLyXformat2): set layout information on newly allocated
7693         paragraphs.
7694
7695         * tabular.C (OldFormatRead): set layout information on the paragraph.
7696
7697 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
7698
7699         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
7700
7701 2002-03-11  Juergen Vigna  <jug@sad.it>
7702
7703         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
7704         plainly wrong.
7705         (resizeCurrentBuffer): force also the insets to resize themselfes.
7706         (moveCursorUpdate): fixed up for InsetText.
7707
7708 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
7709
7710         * commandtags.h:
7711         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
7712         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
7713         value of Dialogs::tooltipsEnabled().
7714         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
7715
7716 2002-03-08  Juergen Vigna  <jug@sad.it>
7717
7718         * BufferView_pimpl.C (updateInset): update inset inside inset also
7719         if it isn't inside theLockingInset().
7720
7721 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7722
7723         * buffer.C (asciiParagraph): redo some of the word and line length
7724         handling.
7725         (getLists): look for Caption instead of caption.
7726
7727 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7728
7729         * buffer.C (Buffer): initialize niceFile to true
7730         (makeLaTeXFile):
7731         (makeLinuxDocFile):
7732         (makeDocBookFile): make sure niceFile is true on exit
7733
7734 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7735
7736         * buffer.C (makeLaTeXFile): escape ~ in \input@path
7737
7738 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
7739
7740         * LyXSendto.C: remove.
7741         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
7742         * lyx_gui.C: remove now-redundant comment.
7743         * ColorHandler.h: remove forward declaration of class WorkArea.
7744         * lyxfunc.C: remove #include "WorkArea.h".
7745
7746 2002-03-07  Juergen Vigna  <jug@sad.it>
7747
7748         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
7749         got moved away with the DEPM and also set the inset_owner always
7750         right which before could have been omitted.
7751
7752 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7753
7754         * buffer.C (parseSingleLyXformat2Token): use default layout is the
7755         wanted layout is not found.
7756
7757 2002-03-07  Juergen Vigna  <jug@sad.it>
7758
7759         * CutAndPaste.C (cutSelection): another layout settings forgotten.
7760
7761 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7762
7763         * paragraph.C (breakParagraph): use default layout not layout of
7764         prev paragraph.
7765         (Paragraph): clear ParagraphParameters.
7766
7767 2002-03-06  Juergen Vigna  <jug@sad.it>
7768
7769         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
7770         otherwise it would not be a valid lenght. Fixed a special case in
7771         the minipage compatibility read where we end the document with a
7772         minipage.
7773
7774         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
7775         was set as it could be 0 for InsetTexts first entry.
7776
7777 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7778
7779         * paragraph.C (writeFile): if layout is empty write out
7780         defaultLayoutName().
7781
7782         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
7783         file without named layout we set layout to defaultLayoutName().
7784
7785 2002-03-06  Juergen Vigna  <jug@sad.it>
7786
7787         * CutAndPaste.C (copySelection): set layout for new paragraph.
7788
7789         * text.C (prepareToPrint): leave ERT inset left aligned
7790         (leftMargin): don't indent paragraphs inside ERT insets
7791
7792 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7793
7794         * paragraph.C (breakParagraph): dont call clear do the work manually
7795
7796         * paragraph.[Ch] (clear): remove function
7797
7798 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7799
7800         * paragraph.C (Paragraph): dont call clear, the work has already
7801         been done.
7802
7803         * lyxtextclass.C (operator): assert if n is empty
7804
7805         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
7806         work manually instead.
7807
7808 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
7809
7810         * BufferView_pimpl.C: protect selectionLost against text == 0
7811
7812 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7813
7814         * text.C (breakParagraph): fix a setting layout to '0' problem.
7815
7816 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
7817
7818         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
7819         final location of file, for the included files, and graphics.
7820
7821 2002-03-05  Juergen Vigna  <jug@sad.it>
7822
7823         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
7824
7825 2002-03-04  Juergen Vigna  <jug@sad.it>
7826
7827         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
7828
7829         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
7830         last column of multicolumn cells.
7831         (SetWidthOfMulticolCell): recalculate NMC and real columns.
7832
7833 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
7834
7835         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
7836         file if it doesn't go to a temporary file.
7837
7838         * buffer.C (sgmlOpenTag):
7839         (sgmlCloseTag):  remove extra newline insertion.
7840
7841 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7842
7843         * text.C (getRowNearY): comment out debug msg
7844
7845 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7846
7847         * text2.C: first -> first_y
7848
7849         * text.C (getRowNearY): add some attemts at a possible
7850         optimization, not working.
7851
7852         * tabular.[Ch]: add BufferParams to several function so that newly
7853         created paragraph can be initialized to he default layotu for the
7854         buffers textclass.
7855
7856         * tabular-old.C (ReadOld): add buf->params to call of Init
7857
7858         * screen.C: rename text->first to text->first_y
7859
7860         * paragraph.C (breakParagraph): always set layout in the broken
7861         paragraph
7862
7863         * lyxtextclass.C (Read): remove lowercase
7864         (hasLayout): ditto
7865         (operator): ditto
7866         (delete_layout): ditto
7867
7868         * lyxtext.h: rename first -> first_y
7869
7870         * lyxlayout.C (Read): remove lowercase
7871         (name): ditto
7872         (setName): ditto
7873         (obsoleted_by): ditto
7874
7875         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
7876
7877         * buffer.C (insertErtContents): add params are to InsetERT
7878         (parseSingleLyXformat2Token): add code to check if a paragraphs
7879         layout really exist.
7880         (parseSingleLyXformat2Token): add params to several inset
7881         constructors
7882         (asciiParagraph): remove lowercase, do the layout comparisons with
7883         no_case
7884
7885         * BufferView_pimpl.C (cursorNext): first -> first_y
7886         (resizeCurrentBuffer): first -> first_y
7887         (updateScrollbar): first -> first_y
7888         (scrollCB): first -> first_y
7889         (workAreaMotionNotify): first -> first_y
7890         (workAreaButtonPress): first -> first_y
7891         (checkInsetHit): first -> first_y
7892         (cursorPrevious): first -> first_y
7893         (cursorNext): first -> first_y
7894         (Dispatch): add buffer_->params to severl inset contructors
7895
7896 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7897
7898         * lyxlayout.C (Read): remove some debug info that I forgot.
7899
7900         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
7901         clean up the code slightly.
7902         (makeLinuxDocFile): ditto
7903         (makeDocBookFile): ditto
7904
7905         * text2.C: layout as string
7906
7907         * text.C: layout as string
7908
7909         * paragraph_pimpl.C: layout as string
7910
7911         * paragraph.[Ch]: layout as string
7912
7913         * lyxtextclasslist.[Ch]: layout as string
7914
7915         * lyxtextclass.[Ch]: layout as string
7916
7917         * lyxtext.h: layout as string
7918
7919         * lyxlayout.[Ch]: layout as string
7920
7921         * lyx_cb.C: layout as string
7922
7923         * bufferview_funcs.C: layout as string
7924
7925         * bufferparams.C: layout as string
7926
7927         * buffer.C: layout as string
7928
7929         * LyXView.[Ch]: layout as string
7930
7931         * LaTeXFeatures.[Ch]: layout as string
7932
7933         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
7934
7935         * BufferView_pimpl.C: change current_layout to string, remove
7936         lyx::layout_type.
7937         (Dispatch):
7938         (smartQuote):
7939         (insertInset):
7940         (workAreaButtonRelease): layout as string
7941
7942         * BufferView2.C (unlockInset): adjust
7943
7944         * vspace.C (asLatexCommand): use an explict temp variable.
7945
7946 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
7947
7948         * Makefile.am: use FRONTEND_*
7949
7950 2002-03-01  Juergen Vigna  <jug@sad.it>
7951
7952         * tabular.C (SetWidthOfMulticolCell): changed to something better
7953         I hope but still work in progress.
7954         (recalculateMulticolumnsOfColumn): renamed function from
7955         recalculateMulticolCells as it is more appropriate now.
7956         (SetWidthOfCell): calculate multicols better.
7957
7958 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7959
7960         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
7961
7962         * lyxfunc.C (processKeySym): print sequence also if it is
7963         `deleted' (complete)
7964
7965         * kbsequence.C (print): print sequence even if it is deleted
7966         (complete would be a better word, actually).
7967
7968         * lyxfunc.C (dispatch): print complete options after a prefix key
7969
7970         * vspace.C (asLatexCommand): rewrite in a slightly different form.
7971
7972 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
7973
7974         * text2.C (setCharFont): eliminate setCharFont code duplication.
7975
7976 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7977
7978         * BufferView_pimpl.C (Dispatch): remove bogus handling of
7979         LFUN_TABULAR_FEATURE (bug #177)
7980
7981 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
7982
7983         * Makefile.am: remove figure.h
7984
7985 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
7986
7987         * Bufferview_pimpl.C:
7988         * CutAndPasteC:
7989         * LaTeX.C:
7990         * LyXSendto.C:
7991         * buffer.C:
7992         * bufferlist.C:
7993         * converter.C:
7994         * language.C:
7995         * lyxfunc.C:
7996         * lyxvc.C:
7997         * paragraph.C:
7998         * text.C:
7999         * text2.C: remove #include "lyx_gui_misc.h".
8000
8001         * LaTeX.C: added #include <cstdio>
8002
8003 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8004
8005         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
8006         that the paragraph following this one can have.
8007
8008         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
8009
8010         * vspace.C (asLatexCommand): fix bogus gcc warning
8011
8012         * Makefile.am (lyx_SOURCES): remove vms_defines.h
8013
8014 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
8015
8016         * text2.C (setLayout): get rid of redundant code
8017
8018 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
8019
8020         * text2.C (incDepth): make sure depth cannot be increased beyond
8021         reasonable values.
8022
8023 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
8024
8025         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
8026         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
8027
8028         * PainterBase.h (image):
8029         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
8030         a LyXImage const *.
8031
8032 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
8033
8034         * BufferView.C:
8035         * BufferView.h:
8036         * BufferView_pimpl.C:
8037         * BufferView_pimpl.h:
8038         * LaTeXFeatures.C:
8039         * LyXAction.C:
8040         * LyXView.C:
8041         * Makefile.am:
8042         * UpdateList.h:
8043         * UpdateList.C:
8044         * buffer.C:
8045         * figure.h:
8046         * figureForm.C:
8047         * figureForm.h:
8048         * figure_form.C:
8049         * figure_form.h:
8050         * lyx_cb.C:
8051         * lyx_gui.C:
8052         * lyx_gui_misc.C:
8053         * lyxfunc.C:
8054         * sp_base.h:
8055         * sp_ispell.h:
8056         * sp_pspell.h:
8057         * sp_spell.C: remove fig inset, and the crap house of
8058           cards that follows it
8059
8060 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
8061
8062         * Makefile.am:
8063         * lyxserver.C:
8064         * os2_defines.h:
8065         * os2_errortable.h:
8066         * nt_defines.h: move .h into support/
8067
8068         * vms_defines.h: remove
8069
8070         * WorkArea.C: add space in debug output
8071
8072         * text2.C:
8073         * paragraph.C:
8074         * buffer.C: add WITH_WARNINGS
8075
8076         * vc-backend.h:
8077         * vc-backend.C:
8078         * bufferlist.C: s/retrive/retrieve/, add docs
8079
8080         * vspace.h:
8081         * vspace.C:
8082         * kbmap.h:
8083         * lyxlength.h:
8084         * lyxgluelength.h:
8085         * length_common.h:
8086         * chset.h:
8087         * chset.C: add docs
8088
8089         * lyxgui.C: add ID to X error handler
8090
8091         * lyxtestclass.c: fix typo
8092
8093 2002-02-26  Juergen Vigna  <jug@sad.it>
8094
8095         * tabular_funcs.C (write_attribute): changed so that some default
8096         attributes are not written at all.
8097         (getTokenValue): set default values before trying to read the
8098         value so we have the return value always set as default if we don't
8099         find the token we search for.
8100
8101         * tabular.C (Write): write bools as bools not as strings!
8102
8103 2002-02-22  Juergen Vigna  <jug@sad.it>
8104
8105         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
8106         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
8107
8108         * text.C (leftMargin): don't add an indent for paragraphs inside
8109         tabular cells (fix #208).
8110
8111 2002-02-21  José Matos  <jamatos@fep.up.pt>
8112
8113         * tabular.C (docBook): fixed support for long tables.
8114
8115 2002-02-20  Juergen Vigna  <jug@sad.it>
8116
8117         * text2.C (getFont): get the drawing font of the Inset if this
8118         paragraph is inside an inset (only important for InsetERT for now).
8119
8120         * buffer.C (insertErtContents): use new lanugage params in ERT
8121         constructor.
8122
8123         * CutAndPaste.C: commenting out seemingly uneeded code.
8124
8125 2002-02-19  Allan Rae  <rae@lyx.org>
8126
8127         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
8128         Iterators might be simple to use but they also get invalidated.
8129         (removeAutoInsets): renamed saved cursor tracking variables and added
8130         some comments to clarify what everything does.
8131
8132 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
8133
8134         * Chktex.C:
8135         * LaTeX.C:
8136         * LyXSendto.C:
8137         * converter.C:
8138         * lyx_cb.C:
8139         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
8140         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
8141
8142         * lyxfunc.C:
8143         * vc-backend.h: remove #include "support/syscall.h"
8144
8145         * LaTeX.C:
8146         * LyXSendto.C:
8147         * converter.C: rearrange #includes in Lars' approved fashion.
8148
8149         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
8150         forward declare class Timeout in the header file.
8151
8152         * XFormsView.C: changes due to the above.
8153
8154         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
8155         similar to LyXView.
8156
8157         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
8158         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
8159
8160 2002-02-18  José Matos  <jamatos@fep.up.pt>
8161
8162         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
8163         insets contents.
8164
8165 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
8166
8167         * a lot of small ws changes
8168         * add a lot of using std::XXX
8169         * use std construcs some places where approp.
8170         * use some exisint stuff from lyxfunctional where approp.
8171         * Make file changes to use partial linking (lets test this now...)
8172
8173 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
8174
8175         * Chktex.C:
8176         * buffer.C:
8177         remove #include "support/syscontr.h" as it's redundant. Always has been.
8178
8179         * Chktex.C:
8180         * LaTeX.C:
8181         * LyXSendto.C:
8182         * converter.C:
8183         * lyx_cb.C:
8184         * vc-backend.C:
8185         change Systemcalls::System to Systemcalls::Wait and
8186         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
8187         No change of functionality, just reflects the stripped down Systemcalls
8188         class.
8189
8190 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
8191
8192         * debug.[Ch]: add a GRAPHICS type to the enum.
8193
8194 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8195
8196         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
8197
8198         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
8199         there is an inset.
8200
8201 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8202
8203         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
8204         match the changes below.
8205
8206         * text2.C (toggleInset): if there is not editable inset at cursor
8207         position, try to see if cursor is _inside_ a collapsable inset
8208         and close it.
8209
8210 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8211
8212         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
8213         document menu has a nice checkbox
8214
8215 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8216
8217         * lyxlength.C (asLatexString): change PW to output as percent of
8218         \textwidth.
8219
8220         * lengthcommon.C: change '%' to 't%'
8221
8222         * lyxfunc.C (dispatch): a few comments from Martin
8223
8224 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
8225
8226         * WorkArea.h:
8227         * WorkArea.C:
8228         * BufferView_pimpl.h:
8229         * BufferView_pimpl.C: clear our selection when X tells us we've lost
8230           the X selection.
8231
8232 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8233
8234         * vspace.C (inPixels): fix compiler warning
8235
8236 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8237
8238         * lyxfunc.C (getStatus): fix status message for disabled commands.
8239
8240 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
8241
8242         * BufferView_pimpl.C: fix crash on close buffer
8243         during selection (#227)
8244
8245 2002-01-27  Herbert Voss  <voss@lyx.org>
8246
8247         * buffer.C: link old Figure to new graphic inset
8248
8249 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
8250
8251         * FontLoader.C (getFontinfo): Change the latex font names in order
8252         to match the names of type1inst.
8253
8254 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8255
8256         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
8257
8258         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
8259         (extchanged): ditto
8260         (ext_exist): ditto
8261         (remove_files_with_extension): ditto
8262         (remove_file): ditto
8263         (write): ditto
8264
8265         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
8266         document is smaller than the work area height. Do not initialize
8267         static variables to 0.
8268
8269 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8270
8271         * lyx_gui.C (init): give the toolbar tooltips a normal font.
8272
8273         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
8274         LFUN_LAYOUT_PARAGRAPHS.
8275
8276         * tabular.C (GetCellFromInset): new method. Finds an inset in a
8277         tabular. It is possible to provide a possible cell, which will
8278         typically be the actcell from the corresponding insettabular
8279
8280         * lyxfunc.C (getStatus): small cleanup; disable
8281         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
8282         true
8283
8284 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8285
8286         * tabular.C (Validate): remove broken optimization (fixes bug #201)
8287
8288         * paragraph.C (startTeXParParams):
8289         (endTeXParParams): new methods. The LaTeX code to
8290         start/end paragraph formatting
8291         (simpleTeXOnePar): call startTeXParParams also when paragraph is
8292         empty (fixes bug #200)
8293
8294         * vspace.C (inPixels): adapt to the change below
8295         (inPixels): [later] more cleanups (remove unused variables)
8296
8297         * lyxlength.C (inPixels): change to use a width and a height as
8298         parameter.
8299
8300 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8301
8302         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
8303         Replaced with \paperwidth
8304
8305         * DepTable.C (insert): add std:: qualifier
8306
8307 2002-01-18  Allan Rae  <rae@lyx.org>
8308
8309         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
8310         updated also?
8311
8312         * text.C (drawInset): Turned out I didn't know enough about how
8313         rebreaking worked.  This fixes most of the redraw problems.  I see
8314         an occasional cursor trail when a line is broken now and the cursor
8315         placement can seem out by a few pixels also after a rebreak.
8316
8317 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8318
8319         * buffer.C (parseSingleLyXformat2Token): update because minipage
8320         width is now a LyXLength
8321
8322         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
8323
8324         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
8325         math insets
8326
8327 2002-01-17  Juergen Vigna  <jug@sad.it>
8328
8329         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
8330
8331         * BufferView2.C (lockInset): call edit() so that theLockingInset()
8332         is set correctly and the inset is updated correctly.
8333
8334 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8335
8336         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
8337         the beginning of the loop.
8338
8339 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
8340
8341         * lyxrc.C: improve help for use_scalable_fonts
8342
8343 2002-01-17  Allan Rae  <rae@lyx.org>
8344
8345         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
8346
8347 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8348
8349         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
8350         make sure to set their inset_owner to the right value (bug #171)
8351
8352 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
8353
8354         * DepTable.h
8355         * DepTable.C: Implement mtime checking to reduce time spent doing
8356         CRCs.
8357
8358 2002-01-16  Juergen Vigna  <jug@sad.it>
8359
8360         * tabular.C (GetAdditionalHeight): one of error fixed.
8361
8362         * lyxrc.C (output): small fix in writing use_pspell.
8363
8364 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
8365
8366         * sp_base.h: #include LString.h
8367
8368 2002-01-16  Allan Rae  <rae@lyx.org>
8369
8370         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
8371         Can someone check this please?
8372
8373         * text.C (drawInset): It was possible that p.row would be removed by
8374         breakAgainOneRow upsetting a few other settings.  There may be another
8375         small tweak possible by setting need_break_row = 0 when p.row has been
8376         removed but I don't know enough about the logic here.
8377
8378 2002-01-15  Allan Rae  <rae@lyx.org>
8379
8380         * text.C (insertChar): removed conditional truism.
8381
8382         * BufferView2.C (removeAutoInsets): More tweaks.
8383         cur_par_prev could be a stray pointer.  Check for trailing empty line
8384         in case last line was cur_par and only had an error inset on it.
8385
8386 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8387
8388         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
8389         absolute
8390
8391         * vc-backend.C (most methods):
8392         * exporter.C (Export):
8393         * converter.C (convert):
8394         (runLaTeX):
8395         * LyXSendto.C (SendtoApplyCB):
8396         * lyxfunc.C (dispatch):
8397         (menuNew):
8398         (open):
8399         (doImport):
8400         * lyx_cb.C (AutoSave):
8401         (InsertAsciiFile):
8402         * BufferView_pimpl.C (MenuInsertLyXFile):
8403         * buffer.C (runChktex): use Buffer::filePath().
8404
8405         * buffer.h: rename filename to filename_; rename filepath to
8406         filepath_ and make it private
8407         (filePath): new method
8408
8409         * buffer.C (writeFile): use fileName()
8410         (getLatexName):
8411
8412         * lyx_main.C (init): fix starting  of LyX when the binary is a
8413         link from so,ewhere else.
8414
8415         * minibuffer.C: include <cctype> for isprint
8416
8417 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
8418
8419         * buffer.C (parseSingleLyXformat2Token): changes associated with the
8420         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
8421         name clash with InsetCollapsable's width function.
8422
8423 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8424
8425         * lastfiles.C: include <iterator>
8426
8427 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
8428
8429         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
8430         std::count.
8431
8432         * buffer.C (makeLaTeXFile): ditto.
8433         Also make loop operation more transparent.
8434
8435 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
8436
8437         * ToolbarDefaults.C: remove trailing comma closing namespace.
8438
8439         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
8440
8441         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
8442         as in WorkArea.
8443
8444         * trans.C (Load): comment out unused variable, allowed.
8445
8446 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
8447
8448         * minibuffer.[Ch] (append_char): new method to recieve input from the
8449         drop-down completion browser. If a key was pressed, then recieve this
8450         char and append it to the existing string.
8451         (peek_event): modify the positioning data passed to the completion
8452         browser so that it can be placed above the minibuffer rather than below.
8453 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8454
8455         * LyXAction.C (init): alloe error-next for readonly documents.
8456
8457         * BufferView2.C (ChangeRefsIfUnique): use standard version of
8458         count.
8459
8460 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8461
8462         * bufferlist.C (readFile): create the buffer _after_ checking that
8463         the file exists.
8464
8465         * lyxfunc.C (verboseDispatch): fix handling of arguments
8466
8467         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
8468
8469         * lyxrc.C: use string::erase() instead of initializing to "".
8470
8471
8472 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
8473
8474         * BufferView_pimpl.h:
8475         * BufferView_pimpl.C:
8476         * WorkArea.h:
8477         * WorkArea.C:
8478         * text2.C: tell X when we have made a selection for copying
8479
8480 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8481
8482         * BufferView_pimpl.C (MenuInsertLyXFile):
8483         * lyxfunc.C (menuNew):
8484         (open):
8485         (doImport): add shortcuts to directory buttons
8486
8487         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
8488         open a float)
8489
8490         * lyxfunc.C (setStatusMessage):
8491         (getStatusMessage): new methods
8492         (getStatus):use setStatusMessage instead of setErrorMessage
8493         (dispatch): when function is disabled, set error message here
8494         [instead of in getStatus previously]
8495
8496         * BufferView_pimpl.C (workAreaButtonRelease): update
8497         toolbar/menubar here too.
8498
8499 2002-01-13  Allan Rae  <rae@lyx.org>
8500
8501         * BufferView2.C (removeAutoInsets): finished off earlier fix.
8502         Now seems indestructible.  Remaining task is to audit all other
8503         code affected by deleteEmptyParagraphMechanism.  One small quirk
8504         left is that an empty document with an error in the preamble can
8505         be made to report an error but no error box appears.  I don't know
8506         where it goes.
8507         (removeAutoInsets): Improved comments.
8508
8509 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
8510
8511         * Thesaurus.h:
8512         * Thesaurus.C: update for Aiksaurus 0.14
8513
8514 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8515
8516         * text2.C (firstParagraph): removed member function, all uses
8517         replaces with ownerParagraph
8518         (redoParagraphs): here
8519         (updateInset): here
8520         (toggleAppendix): here
8521         * BufferView2.C (insertErrors): here
8522         (setCursorFromRow): here
8523
8524 2002-01-13  Allan Rae  <rae@lyx.org>
8525
8526         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
8527         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
8528         There is still a way to segfault this although you may have to do this
8529         multiple times: Have an InsetERT with an unknown command in it.
8530         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
8531         <down-arrow>, <Enter> again, View->DVI, BANG!
8532
8533         * text2.C (setCursor):
8534         (deleteEmptyParagraphMechanism):
8535         * lyxtext.h (setCursor):
8536         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
8537         Making use of the return value may help fix other bugs.
8538
8539 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8540
8541         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
8542
8543         * LyXView.C (updateMenubar): call MenuBar::update here
8544         (updateToolbar): but not here
8545         (showState): do not update toolbar/menubar
8546
8547         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
8548         should need to care about that.
8549
8550         * lyxfunc.C (verboseDispatch): simplify a bit
8551         (getStatus): have a version which takes a pseudoaction, and
8552         another which requires a (kb_action,string).
8553
8554         * LyXAction.C (retrieveActionArg): make it work also when action
8555         is not a pseudo-action.
8556         (getActionName): simplify a bit
8557         (helpText):
8558
8559 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8560
8561         * lyxfunc.C (verboseDispatch): new families of methods with
8562         several ways to specify a command and a bool to indicate whether
8563         the command name and shortcut should be displayed in minibuffer
8564         (eventually, we could extend that to a finer bitmask like
8565         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
8566         (dispatch): the pristine dispatch command which just, well,
8567         dispatchs! Note it still sets its result to minibuffer; I'm not
8568         sure we want that.
8569
8570         * lyxfunc.h: remove setHintMessage
8571
8572         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
8573
8574 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8575
8576         * BufferView_pimpl.C (specialChar): delete new inset if we have
8577         not been able to insert it.
8578
8579         * kbmap.C: revert to using int instead of kb_action, since all we
8580         are dealing with is pseudo-actions.
8581
8582         * LyXAction.C (searchActionArg): change to return int instead of
8583         kb_action, since the result is a pseudoaction.
8584
8585 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
8586
8587         * buffer.C (insertErtContents): Fix (partially) the font bug.
8588
8589 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
8590
8591         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
8592         as the other one is broken on my machine!
8593
8594 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
8595
8596         * commandtags.h:
8597         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
8598
8599 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
8600
8601         * lyxrc.[Ch]: change names and descriptions of popup font variables to
8602         reflect their actual use. Provide compatibility code for older lyxrc
8603         files.
8604
8605         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
8606         FL_NORMAL_STYLE.
8607         change names of popup font variables in line with the changes to lyxrc.C
8608
8609 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8610
8611         * buffer.C (asciiParagraph): avoid outputing a word twice after
8612         an inset.
8613
8614         * lyxrc.C (getDescription): document that document_path and
8615         template_path can be empty.
8616
8617 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8618
8619         * LaTeXFeatures.C (getMacros):
8620         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
8621
8622         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
8623
8624         * LaTeXFeatures.C (useFloat): require "float" here instead of in
8625         getPackages.
8626         (getPackages): rename feature "floats" to "float". Use an array to
8627         iterate over 'simple' features (i.e. just a \usepackage). Add
8628         handling of "amsmath" (renamed from "amsstyle").
8629
8630 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
8631
8632         * LaTeXFeatures.C (require): Prevent duplicate entries in the
8633         features list.
8634
8635 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
8636
8637         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
8638         FuncStaus::FuncStatus & FuncStaus::some_method().
8639
8640 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
8641
8642         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
8643         of the func_satus stuff. Edited and massaged in various ways by
8644         JMarc.
8645
8646         * lyxfunc.C (getStatus): use FuncStatus
8647
8648 2002-01-08  Juergen Vigna  <jug@sad.it>
8649
8650         * text.C (nextBreakPoint): use function Inset::isChar().
8651
8652         * paragraph.C (TeXOnePar): use function
8653         Inset::forceDefaultParagraphs.
8654
8655         * buffer.C (latexParagraphs): use function
8656         Inset::forceDefaultParagraphs.
8657
8658 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
8659
8660         * lyx_gui.C (init): set the style of the menu popups to
8661         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
8662
8663 2002-01-07  Juergen Vigna  <jug@sad.it>
8664
8665         * text.C (setHeightOfRow): small fix
8666         (prepareToPrint): don't look at alignment if we don't have the place
8667         for doing it.
8668
8669 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
8670
8671         * box.C: New file. Move the Box methods and functions out of box.h,
8672         following Lars' suggestion.
8673
8674 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
8675
8676         * box.h: #include "support/LOstream.h", needed for inlined function.
8677
8678         * lyxtextclass.C:
8679         * lyxtextclasslist.C: added some using std declarations.
8680
8681 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
8682
8683         * box.h: make signed dimensions to allow insets wider than
8684           the screen (bug #162)
8685
8686         * BufferView_pimpl.C: add some insetHit debug
8687
8688 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
8689
8690         * vc-backend.C: add FIXME
8691
8692 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8693
8694         * lyxfunc.C (getStatus): enable code for showing math font status
8695         in toolbar/menu.
8696
8697 2002-01-07  Juergen Vigna  <jug@sad.it>
8698
8699         * text.C (nextBreakPoint): removed debug output not needed anymore.
8700
8701 2002-01-06  Juergen Vigna  <jug@sad.it>
8702
8703         * text.C (nextBreakPoint): fixed up this function we had this bug
8704         since ever but now hopefully we break row better.
8705         (insertChar): we have to check if an inset is the next char as it
8706         could now happen that a large inset is causing a break.
8707
8708 2002-01-05  Juergen Vigna  <jug@sad.it>
8709
8710         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
8711         if it doesn't like to be drawed.
8712
8713 2002-01-04  Juergen Vigna  <jug@sad.it>
8714
8715         * BufferView2.C (lockInset): forgot to set a cursor.
8716
8717         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
8718
8719 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
8720
8721         * FormMathsPanel.C:
8722         * FormMathsPanel.h
8723         * MathsSymbols.C:
8724         * form_maths_panel.C:
8725         * form_maths_panel.h:
8726         * form_maths_panel.fd: implemented sub- and super- buttons in math
8727         panel.
8728
8729         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
8730         (or ^ space) to be used as in TeX (req'd by André).
8731
8732         * lyxfunc.C: Allow ^ and _ again to be used both as
8733         super/subscript (mathed) and as themselves (in text).
8734
8735 2002-01-03  Allan Rae  <rae@lyx.org>
8736
8737         * LyXView.C (updateWindowTitle): Setup a short icon title of either
8738         "LyX" or the filename of the current buffer if it has one.  This is a
8739         modified form of John Levon's patch.
8740
8741         * XFormsView.C (setWindowTitle): also set icon title.
8742
8743         * LyXView.h (setWindowTitle): signature changed.
8744         * XFormsView.h (setWindowTitle): ditto.
8745
8746 2002-01-02  Juergen Vigna  <jug@sad.it>
8747
8748         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
8749
8750 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8751
8752         * screen.C (topCursorVisible): introduce a temp var for
8753         text->cursor.row(), handle the case where this row is null. (kindo
8754         hachish)
8755
8756         * text2.C (setCursor): add a couple of asserts.
8757
8758         * paragraph.h (inset_iterator): add -> operator
8759
8760         * paragraph.[Ch] (autoDeleteInsets): remove member function
8761
8762         * BufferView2.C (removeAutoInsets): rewrite to handle the old
8763         cursor pos correctly and handle inset deletion by itself.
8764         (insertErrors): move iterator declaration out of for expression
8765
8766         * lyxtextclass.C: add <algorithm>
8767
8768         * Makefile.am: added the new files to sources, removed layout.C
8769
8770         * layout.C: removed file
8771
8772         * layout.h: remove LYX_DUMMY_LAYOUT
8773
8774         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
8775         layout.
8776
8777         * lyxlayout.[Ch]:
8778         * lyxtextclass.[Ch]:
8779         * lyxtextclasslist.[Ch]: new files
8780
8781         * include order changes to a lot of files, also changes because of
8782         the six new files.
8783
8784 2001-12-27  Juergen Vigna  <jug@sad.it>
8785
8786         * buffer.C (asciiParagraph): more fixes.
8787
8788         * tabular.C (ascii): make ascii export support export of only the
8789         data separated by a column-delimiter.
8790         (ascii): better support for ascii export.
8791
8792         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
8793
8794 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8795
8796         * tabular_funcs.C: use a "using std::getline" instead of the
8797         previous fix from Angus (necessary for cxx + lyxstring)
8798
8799 2001-12-24  Juergen Vigna  <jug@sad.it>
8800
8801         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
8802
8803         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
8804         problems. First check a minipage also if we have some ert-contents
8805         (not only on par->size(), second set the right depth of the paragraph
8806         on the relink to the root-paragraph-list!
8807
8808         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
8809         which then did not anymore update the main paragraphs on undo/redo!
8810
8811 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8812
8813         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
8814         code. Support all font-changing funcs (even those which are not in
8815         menu currently). Support for reporting font settings in
8816         mathed (disabled until Andre provides a function on mathed's side).
8817
8818         * func_status.h (toggle): small helper function to set toggle
8819         state on a flag.
8820
8821 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
8822
8823         * tabular_funcs.C: getline -> std::getline
8824
8825 2001-12-21  Juergen Vigna  <jug@sad.it>
8826
8827         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
8828         accessed and could be 0 (I couldn't generate this but it seems
8829         Michael could!).
8830
8831 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8832
8833         * tabular_funcs.C: add LIstream.h, move write_attribute to..
8834         * tabular_funcs.h: here and include iosfwd
8835
8836 2001-12-20  Juergen Vigna  <jug@sad.it>
8837
8838         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
8839         inside inset but undo_par was.
8840
8841 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8842
8843         * Thesaurus.C: always include <config.h> in sources.
8844
8845         * Painter.h:
8846         * lyxlookup.h:
8847         * box.h: do not include <config.h> in header files
8848
8849         * text.C (paintLastRow): remove unused variable
8850
8851         * text.C (transformChar):
8852         (insertChar):
8853         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
8854
8855         * Painter.C (text):
8856         * font.C (width): rewrite to use uppercase() instead of
8857         islower/toupper.
8858
8859         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
8860
8861 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
8862
8863         * lyxfind.C: clean up of find failure position change
8864
8865 2001-12-20  Juergen Vigna  <jug@sad.it>
8866
8867         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
8868
8869         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
8870         (TeXRow): added to LaTeX a single tabular row.
8871         (TeXLongtableHeaderFooter): added to output LT-h/f data.
8872         (Latex): simplified and finally good LT-h/f support.
8873         (various_functions): just small adaptions for LT-h/f support.
8874
8875         * tabular_funcs.[hC]: added and moved here all not classfunctions
8876         of LyXTabular.
8877
8878 2001-12-19  Juergen Vigna  <jug@sad.it>
8879
8880         * tabular.[Ch]: better support for longtabular options (not finished
8881         yet!)
8882
8883 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8884
8885         * text.C (paintLastRow): use the label font instead of the font of
8886         the last character to compute the size of *_BOX. This makes more
8887         sense and avoids a crash with empty paragraphs.
8888         Use Painter::rectangle to draw EMPTY_BOX.
8889
8890 2001-12-19  Juergen Vigna  <jug@sad.it>
8891
8892         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
8893         the paragraphs if the replaced paragraph is not the first one!
8894         Tried to delete not used paragraphs but does not work yet so for
8895         now it's inside #ifdef's and by default off!
8896
8897 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8898
8899         * MenuBackend.C: include "lyx_main.h" instead of declaring
8900         lastfiles (actually was declared as LastFiles* instead of a
8901         scoped_ptr).
8902
8903 2001-12-17  Juergen Vigna  <jug@sad.it>
8904
8905         * tabular.C (AppendColumn): applied John's fix
8906
8907 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
8908
8909         * BufferView.h:
8910         * BufferView.C:
8911         * BufferView_pimpl.h:
8912         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
8913
8914         * Makefile.am:
8915         * box.h: new start of class for above
8916
8917         * lyxfunc.C: ignore space-only minibuffer dispatches.
8918           Show the command name when it doesn't exist
8919
8920         * minibuffer.C: don't add empty lines to the history
8921
8922         * minibuffer.C: add a space on dropdown completion
8923
8924 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
8925
8926         * text.C: fix line above/below drawing in insets
8927
8928 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8929
8930         * lyxlength.C (LyXLength): Initialize private variables.
8931
8932 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
8933
8934         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
8935         when inserting error insets.
8936
8937 2001-12-13  Juergen Vigna  <jug@sad.it>
8938
8939         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
8940         actually sometimes the before-paragraph.
8941         (setUndo): don't clear the redostack if we're not actually undoing!
8942
8943 2001-12-06  Juergen Vigna  <jug@sad.it>
8944
8945         * undo_funcs.C (textHandleUndo): well after John's hint I got here
8946         and fixed redoing of main paragraph, so we can use it now ;)
8947
8948         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
8949
8950 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8951
8952         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
8953         Juergen's request
8954
8955 2001-12-13  André Pönitz <poenitz@gmx.net>
8956
8957         * undostack.[Ch]:
8958         * undo_func.C: minor cleanup
8959
8960 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8961
8962         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
8963         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
8964         font in urw-fonts package which is marked as -urw-fontspecific and
8965         does not work (incidentally, changing the encoding in the
8966         fonts.dir of this package to -adobe-fontspecific fixes the
8967         problem).
8968
8969         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
8970         is a crash when undoing first paragraph (Juergen, please take a
8971         look). THis does not mean the undo fix is wrong, just that it
8972         uncovers problems.
8973
8974         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
8975         the (Paragraph*) version when needed instead of duplicating the
8976         code.
8977
8978         * text.C (workWidth): use Inset::parOwner to find out where the
8979         inset has been inserted. This is a huge performance gain for large
8980         documents with lots of insets. If Inset::parOwner is not set, fall
8981         back on the brute force method
8982
8983         * paragraph_pimpl.C (insertInset):
8984         * paragraph.C (Paragraph):
8985         (cutIntoMinibuffer): set parOwner of insets when
8986         inserting/removing them
8987
8988         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
8989
8990 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
8991
8992         * commandtags.h:
8993         * LyXAction.C:
8994         * lyx_main.C:
8995         * lyxfunc.C:
8996         * mathed/formulabase.C:
8997         * mathed/math_cursor.[Ch]:
8998         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
8999
9000
9001 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9002
9003         * lyxlength.[Ch] (operator!=): new function
9004
9005 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9006
9007         * text.C (workWidth): use Inset::parOwner to find out where the
9008         inset has been inserted. This is a huge performance gain for large
9009         documents with lots of insets. If Inset::parOwner is not set, fall
9010         back on the brute force method
9011
9012         * paragraph_pimpl.C (insertInset):
9013         * paragraph.C (Paragraph):
9014         (cutIntoMinibuffer): set parOwner of insets when
9015         inserting/removing them
9016
9017         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
9018
9019 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9020
9021         * tabular-old.C (getTokenValue):
9022         * tabular.C (getTokenValue):
9023         (write_attribute): new versions for LyXLength
9024         (everywhere): adjust the use of widths
9025
9026         * tabular.h: change the type of widths from string to LyXLength
9027
9028 2001-12-11  Ben Stanley <bds02@uow.edu.au>
9029
9030         * paragraph.C: fixed missing line number count when exporting
9031         Environments to LaTeX file
9032
9033         * buffer.C: added informational message for checking line numbers.
9034
9035 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9036
9037         * text2.C (deleteEmptyParagraphMechanism): if there is only one
9038         paragraph, do the 'double space' part, but not the 'empty
9039         paragraph' one.
9040
9041         * text.C (workWidth): small optimization
9042         (getLengthMarkerHeight): use minimal size for negative lengths.
9043
9044 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
9045
9046         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
9047
9048         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
9049
9050 2001-12-11  André Pönitz <poenitz@gmx.net>
9051
9052         * FontLoader.C:
9053         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
9054
9055 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
9056
9057         * text2.C: keep selection on a setFont()
9058
9059 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
9060
9061         * lyx_cb.C: another bv->text misuse, from insert label
9062
9063 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
9064
9065         * kbsequence.h:
9066         * kbsequence.C: re-instate nmodifier mask
9067
9068 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
9069
9070         * lyx_main.h: make lyxGUI private.
9071
9072 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
9073
9074         * lyxfind.C: place the cursor correctly on failed search
9075
9076 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9077
9078         * text.C (getLengthMarkerHeight): for small heights, the arrows
9079         are not always on top/bottom of the text
9080         (drawLengthMarker): smaller arrows; take the left margin in
9081         account; draw also vfills.
9082         (paintFirstRow):
9083         (paintLastRow): remove special code for vfill and standard spaces,
9084         since everything is handled in drawLengthMarker now.
9085
9086 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9087
9088         * buffer.C (insertErtContents): try to handle font and language
9089         interaction a bit better.g
9090
9091         * ColorHandler.C (updateColor): change the hash to cover the whole
9092         LColor enum, ws cleanup
9093         (getGCLinepars): ditto
9094         (getGCLinepars): only lookup in the linecache once.
9095
9096 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
9097
9098         * iterators.C (operator++): Make the iterator more robust
9099
9100         * BufferView2.C (removeAutoInsets): Use paragraph iterators
9101         (John's patch)
9102         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
9103
9104 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9105
9106         * lyxtext.h:
9107         * text.C: better added space drawing
9108
9109 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9110
9111         * LyXView.C:
9112         * BufferView2.C: fix layout combo update on inset unlock
9113
9114 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9115
9116         * Makefile.am: don't compile unused files
9117
9118 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9119
9120         * lyxfunc.C:
9121         * commandtags.h:
9122         * LyXAction.C: remove old LFUN_LAYOUTNO
9123
9124 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9125
9126         * paragraph_pimpl.h:
9127         * paragraph_pimpl.C: isTextAt() doesn't need font param
9128
9129 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9130
9131         * lyxlex.h:
9132         * lyxlex.C: little cleanup
9133
9134 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9135
9136         * BufferView_pimpl.C: fix insertAscii for insets
9137
9138 2001-12-05  Juergen Vigna  <jug@sad.it>
9139
9140         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
9141         set the right font on the "multi" paragraph paste!
9142
9143 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9144
9145         * trans_decl.h:
9146         * trans_mgr.[Ch]:
9147         * trans.[Ch]:
9148         * lyxgluelength.C:
9149         * lyxlength.C: remove out-commented code.
9150
9151         * BufferView_pimpl:
9152         * CutAndPaste.C:
9153         * DepTable.C:
9154         * buffer.C:
9155         * chset.C:
9156         * lastfiles.C:
9157         * lyxlex.C:
9158         * lyxlex_pimpl.C:
9159         * lyxserver.C:
9160         * screen.C:
9161         * tabular-old.C:
9162         * tabular.C:
9163         * text.C:
9164         * trans_mgr.C:
9165         * vc-backend.C: change "while(" to "while ("
9166
9167         * lyxlength.[Ch]: add zero function to check if length is zero or
9168         not
9169         * lyxgluelength.C: use it
9170
9171 2001-12-05  Allan Rae  <rae@lyx.org>
9172
9173         * lyxlength.C: Attempted a fix for the abs(int) header selection.
9174         Works for 2.95.3, from what I understand of Garst's reports this should
9175         work for other g++ versions.  We're screwed if the abs(int) definition
9176         changed between bugfix releases of gcc.
9177
9178 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
9179
9180         * text.C: fix chapter label offset !
9181
9182 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
9183
9184         * lyxtext.h:
9185         * text.C: fix hfill at end of line, clean up
9186
9187 2001-12-04  Juergen Vigna  <jug@sad.it>
9188
9189         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
9190         that we force an update of the inset and it's owners if neccessary.
9191
9192 2001-12-03  Juergen Vigna  <jug@sad.it>
9193
9194         * text.C (rowLast): simplified code
9195
9196 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
9197
9198         * lyxfunc.C: fix show options on timeout
9199
9200 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9201
9202         * screen.C (topCursorVisible): scroll half a page when the cursor
9203         reached top of bottom of screen
9204
9205 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
9206
9207         * minibuffer.C: deactivate on loss of focus
9208
9209 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9210
9211         * vspace.[Ch] (operator!=): add operator.
9212
9213 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
9214
9215         * BufferView_pimpl.C: refuse to open an inset when
9216         there's a selection.
9217
9218 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
9219
9220         * BufferView_pimpl.C: allow to click on RHS of full row insets
9221
9222 2001-11-30  Juergen Vigna  <jug@sad.it>
9223
9224         * tabular.C (LyXTabular): add a same_id to set the same id's in the
9225         insets for undo reasons.
9226
9227 2001-11-28  André Pönitz <poenitz@gmx.net>
9228
9229         * vspace.[Ch]: cosmetical changes
9230
9231 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
9232
9233         * LyXAction.h:
9234         * LyXAction.C:
9235         * lyxfunc.h:
9236         * lyxfunc.C:
9237         * kbmap.h:
9238         * kbmap.C:
9239         * lyxrc.C:
9240         * kbsequence.h:
9241         * kbsequence.C: part re-write of old kb code
9242
9243         * Painter.C:
9244         * WorkArea.C: remove Lgb_bug_find_hack
9245
9246 2001-11-30  José Matos <jamatos@fep.up.pt>
9247
9248         * buffer.C (makeDocBookFile): add a comment to point a hack.
9249         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
9250         Fixed a double write of labels.
9251
9252 2001-11-29 Ben Stanley <bds02@uow.edu.au>
9253
9254         * LaTeX.C:
9255         * LaTeX.h Fixed bug in LaTeX class where it would not
9256         re-run latex if no depfiles were changed, but the .dvi was removed.
9257
9258 2001-11-28  André Pönitz <poenitz@gmx.net>
9259
9260         * all the files from the change on 2001/11/26:
9261         use lyx::layout_type instead of LyXTextClass::size_type
9262         use lyx::textclass_type instead of LyXTextClassList::size_type
9263
9264 2001-11-29  Juergen Vigna  <jug@sad.it>
9265
9266         * text.C: added support for paragraph::isFreeSpacing()
9267
9268         * buffer.C: same as above
9269
9270         * paragraph.h: inserted isFreeSpacing() function to enable
9271         FreeSpacing inside InsetERT.
9272
9273         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
9274         of the paragraph's in the cut/copy buffer to 0!
9275
9276         * text2.C (removeRow): remove the assert as it can!
9277
9278         * lyxtext.h: added helper function firstRow returning firstrow and
9279         made firstrow private again.
9280
9281         * BufferView2.C (lockInset): don't relock if we're already locked!
9282
9283         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
9284         the only paragraph.
9285         (removeRow): added Assert::(firstrow)
9286
9287         * debug.C: forgot to add INSETTEXT here.
9288
9289 2001-11-28  Juergen Vigna  <jug@sad.it>
9290
9291         * sp_spell.C (initialize): changed error text to more general
9292         spellchecker command use (not only ispell!)
9293
9294         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
9295
9296         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
9297
9298 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
9299
9300         * vspace.C: initialise lyxgluelength on failure
9301
9302 2001-11-28  Allan Rae  <rae@lyx.org>
9303
9304         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
9305         declaration & definition that looks like a function declaration.
9306
9307 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9308
9309         * BufferView2.C (copy):
9310         (copyEnvironment): do not clear the selection when doing a copy.
9311
9312         * text.C (paintFirstRow): compilation fix
9313
9314 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
9315
9316         * tabular.C (Latex): correct line count when writing latex.
9317
9318 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
9319
9320         * paragraph_pimpl.h:
9321         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
9322           bug a bit
9323
9324 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
9325
9326         * text.C:
9327         * LColor.h:
9328         * LColor.C: change vfillline->added_space
9329
9330         * text.C: add markers and text for added space
9331
9332         * vspace.C: fix comment
9333
9334 2001-11-28  André Pönitz <poenitz@gmx.net>
9335
9336         * paragraph.C: whitespace changes
9337         * all the other files from the change on 2001/11/26:
9338         change *::pos_type into lyx::pos_type
9339
9340 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
9341
9342         * buffer.C (parseSingleLyXformat2Token): Set the language to the
9343         language of the document when inserting error insets.
9344
9345 2001-11-26  André Pönitz <poenitz@gmx.net>
9346
9347         * BufferView_pimpl.[Ch]:
9348         *       CutAndPaste.C:
9349         * buffer.[Ch]:
9350         * lyxcursor.[Ch]:
9351         * lyxfind.C:
9352         * lyxfunc.C:
9353         * lyxrow.[Ch]:
9354         * paragraph.[Ch]:
9355         * paragraph_pimpl.[Ch]:
9356         * sp_spell.C:
9357         * text.C:
9358         * text2.C: reduce header dependencies, introduce type for positions
9359
9360 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
9361
9362         * <various>: change to use Alert.h
9363
9364 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
9365
9366         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
9367         when encountering an unknown token.
9368         (readLyXformat2): Show an error message if there were unknown tokens.
9369
9370 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
9371
9372         * BufferView2.C:
9373         * BufferView_pimpl.C:
9374         * buffer.C:
9375         * paragraph.h:
9376         * text.C:
9377         * text2.C: use par->isInset()
9378
9379 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
9380
9381         * paragraph_pimpl.h:
9382         * paragraph_pimpl.C: cleanup
9383
9384 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9385
9386         * text2.C (removeRow):
9387         * text.C (setHeightOfRow): remove useless (and costly) call to
9388         getRow.
9389
9390 2001-11-20  Allan Rae  <rae@lyx.org>
9391
9392         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
9393         Now need Inset*::checkInsertChar() to return true for appropriate
9394         cases so that the characters in the minibuffer will actually be
9395         inserted.
9396
9397 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9398
9399         * text.C: change the order of the includes.
9400         (workWidth): initialize it at once.
9401         (workWidth): make maxw unsigned
9402         (setHeightOfRow): remove unused variable (inset)
9403         (selectSelectedWord): remove unused variable (inset)
9404         (paintRowText): fix drawing of hfill characters, and clean up a bit.
9405
9406 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9407
9408         * lyxserver.C (emergencyCleanup): do not try to close pipes if
9409         server is not running.
9410         (openConnection):
9411         (closeConnection): add debug info when server is disabled.
9412
9413         * ColorHandler.C (getGCForeground): send debug message to GUI
9414         channel.
9415
9416         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
9417
9418         * kbmap.C (bind): modify because return conventions of
9419         kb_sequence::parse have changed.
9420
9421         * kbsequence.C (parse): only ignore spaces and not any stupid
9422         control character. This avoids tests like s[i] <= ' ', which are
9423         guaranteed to fail with 8bit characters and signed chars.
9424         Change return code to string::npos when there have been no error
9425         (0 was a bad idea when error is at first character)
9426
9427 2001-11-14  José Matos  <jamatos@fep.up.pt>
9428
9429         * buffer.h:
9430         * buffer.C (simpleDocBookOnePar): removed unused argument.
9431
9432 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9433
9434         * text.C (selectNextWordToSpellcheck): do not test explicitely for
9435         insets which are part of a word. Paragraph::isLetter takes care of
9436         that now. Use Paragraph::isInset to identify insets.
9437         (selectSelectedWord): do not test for hyphenation break.
9438
9439         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
9440         that protected spaces are considered as spaces.
9441
9442         * paragraph.C (isLetter): cleanup the code for ispell extras; use
9443         Inset::isLetter.
9444
9445 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
9446
9447         * lyxserver.h:
9448         * lyxserver.C: fix it. and small cleanup.
9449
9450 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
9451
9452         * BufferView_pimpl.C: use inline helpers
9453
9454         * LaTeXFeatures.h:
9455         * LaTeXFeatures.C: fix typos
9456
9457         * Spacing.h:
9458         * Spacing.C: move spacing_string into class
9459
9460         * ToolbarDefaults.C: move stuff into namespace anon
9461
9462         * layout.h: update enum
9463
9464         * lyxfunc.C: use better debug
9465
9466         * minibuffer.h: fix typo
9467
9468         * debug.h:
9469         * debug.C:
9470         * WorkArea.C: add and use Debug::WORKAREA
9471
9472         * lyxtext.h:
9473         * text.C:
9474         * text2.C: code re-organisation, inline helpers
9475
9476 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
9477
9478         * Layout.C: replaced a few cases of std::vector.size() == 0 with
9479         std::vector.empty().
9480
9481 2001-11-09  Allan Rae  <rae@lyx.org>
9482
9483         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
9484         '\n's after tables.  Tabular and ERT inset work now makes this no
9485         longer necessary.
9486
9487 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
9488
9489         * minibuffer.h:
9490         * minibuffer.C: fix crash, improve drop-down completion
9491
9492 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
9493
9494         * lyxserver.h:
9495         * lyxserver.C: invalidate fd's when doing endPipe()
9496
9497 2001-11-08  José Matos  <jamatos@fep.up.pt>
9498
9499         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
9500         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
9501
9502         * paragraph.h:
9503         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
9504
9505 2001-11-07  José Matos  <jamatos@fep.up.pt>
9506
9507         * buffer.h:
9508         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
9509         const qualifier.
9510
9511         * buffer.C (sgmlOpenTag):
9512         * buffer.C (sgmlCloseTag): removed debug info.
9513
9514         * buffer.h (sgmlOpenTag):
9515         * buffer.h (sgmlCloseTag): made public.
9516
9517 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9518
9519         * buffer.C (saveParamsAsDefaults):
9520         * lyx_cb.C (MenuLayoutSave): remove
9521
9522         * LyXAction.C (init):
9523         * commandtags.h:
9524         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
9525
9526 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9527
9528         * buffer.C (setPaperStuff): removed from here...
9529
9530         * bufferparams.C (setPaperStuff): ... and moved there.
9531
9532 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
9533
9534         * minibuffer.h:
9535         * minibuffer.C:
9536         * XFormsView.C: add support for drop-down completion
9537
9538 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
9539
9540         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
9541         commands.
9542
9543 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9544
9545         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
9546         disabled.
9547
9548 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
9549
9550         * lyx_main.C: change ref to known bugs
9551
9552 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
9553
9554         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
9555         to work around older babel problems.
9556
9557 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
9558
9559         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
9560
9561 2001-10-24  Juergen Vigna  <jug@sad.it>
9562
9563         * tabular-old.C (ReadOld): below variable changes reflected.
9564
9565         * tabular.[Ch]: added ltType struct for longtable header/footer
9566         defines and changed all instances where they are used. Added
9567         future support for double top/bottom rows.
9568
9569 2001-10-24  José Matos  <jamatos@fep.up.pt>
9570
9571         * buffer.h (docbookHandleCaption):
9572         * buffer.C (docbookHandleCaption): removed unused function.
9573         (makeDocBookFile): moved docbook supported version to v4.1.
9574
9575 2001-10-24  José Matos  <jamatos@fep.up.pt>
9576
9577         * tabular.h:
9578         * tabular.C (docbookRow): new function to export docbook code of a row.
9579         (DocBook): now honors the longtable flags.
9580
9581 2001-10-23  José Matos  <jamatos@fep.up.pt>
9582
9583         * LaTeXFeatures.h:
9584         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
9585         of the lyx defined sgml entities used in a docbook/linuxdoc document.
9586
9587         * buffer.C (makeLinuxDocFile):
9588         (makeDocBookFile): reworked the preamble, more clean, and with
9589         support for lyx defined entities. Changed the document declaration
9590         to be more XML friendly.
9591
9592         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
9593         if we need to output XML that should be done with a filter.
9594
9595 2001-10-22  Juergen Vigna  <jug@sad.it>
9596
9597         * sp_pspell.h (class PSpell): add alive function needed in the
9598         controller to see if the spellchecker could be started.
9599
9600 2001-10-22  Juergen Vigna  <jug@sad.it>
9601
9602         * buffer.C (insertStringAsLines): modify the font for inserting
9603         chars in certain conditions by calling checkInsertChar(font).
9604
9605 2001-10-19  Juergen Vigna  <jug@sad.it>
9606
9607         * text.C (workWidth): use getRow instead of wrong algorithm.
9608         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
9609
9610 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
9611
9612         * lyxserver.h:
9613         * lyxserver.C:
9614         * lyx_main.h:
9615         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
9616
9617 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9618
9619         * text.C (workWidth): do not search for the exact row when
9620         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
9621         optimization for big documents.
9622
9623 2001-10-18  Juergen Vigna  <jug@sad.it>
9624
9625         * text.C (workWidth): new function with added Inset * parameter.
9626
9627 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9628
9629         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
9630
9631         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
9632         change return type of getColumnNearX.
9633
9634
9635         * text.C (changeRegionCase): use uppercase/lowercase instead of
9636         toupper/tolower.
9637         (leftMargin):
9638         (rightMargin): simplify code by factoring out the uses of
9639         textclasslist.
9640         (labelFill):
9641         (numberOfHfills):
9642         (setHeightOfRow):
9643         (appendParagraph): use Paragraph::size_type
9644
9645 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9646
9647         * vspace.C (asLatexString): add a missing break
9648
9649 2001-10-15  Herbert Voss  <voss@perce.de>
9650
9651         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
9652
9653 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9654
9655         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
9656         is not available.
9657
9658 2001-10-10  André Pönitz <poenitz@gmx.net>
9659
9660         * lyxfunc.C: removed greek_kb_flag.
9661
9662 2001-10-10  Herbert Voss  <voss@perce.de>
9663
9664         * lyx_main.C: delete global string help_lyxdir.
9665
9666 2001-10-09  Herbert Voss  <voss@perce.de>
9667
9668         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
9669
9670         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
9671
9672         * lyx_main.C: added global string help_lyxdir.
9673
9674         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
9675
9676 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
9677
9678         * lyxrc.C (set_font_norm_type): support iso8859-4
9679
9680 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
9681
9682         * LaTeX.C (deplog): add another regex for MikTeX
9683
9684 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
9685
9686         * lyxrc.C (set_font_norm_type): support iso8859-3
9687
9688 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9689
9690         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
9691
9692         * LaTeXFeatures.C: remove special case of french and index
9693
9694         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
9695         before \begin{document}). This solves several incompatibilities.
9696
9697 2001-10-03  Garst Reese  <reese@isn.net>
9698
9699         * lyx_cb.C: change CheckTex error msg.
9700
9701 2001-10-03  José Matos  <jamatos@fep.up.pt>
9702
9703         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
9704
9705 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9706
9707         * .cvsignore: update
9708
9709         * lyx_main.C (commandLineVersionInfo): use new style version info.
9710
9711         * buffer.C (writeFile):
9712         (makeLaTeXFile):
9713         (makeLinuxDocFile):
9714         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
9715
9716         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
9717
9718         * version.h: update to use stuff in version.C
9719
9720         * version.C.in: new file. Contains version information determined
9721         at compile time. This is a merging of version.h and
9722         version_info.h.in.
9723
9724 2001-10-03  Juergen Vigna  <jug@sad.it>
9725
9726         * BufferView_pimpl.C (update): don't change "dirty" status in
9727         updateInset call.
9728
9729 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
9730
9731         * WorkArea.C (c-tor): re-position version string slightly.
9732
9733 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
9734
9735         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
9736         revert to previous code.
9737
9738         WorkArea.[Ch]: (show, destroySplash): methods removed.
9739
9740         WorkArea.C: rework code so that it's an amalgam of the codes before and
9741         after the splash screen was moved to WorkArea.
9742
9743 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9744
9745         * lyxrc.C (read):
9746         * vspace.C (inPixels):
9747         (lyx_advance):
9748         * kbmap.C (bind):
9749         * buffer.C (insertStringAsLines):
9750         (asciiParagraph): fix types to be large enough
9751
9752         * lyxlex_pimpl.h: change member status from short to int
9753
9754         * layout.h: fix type of endlabeltype
9755
9756         * kbmap.C (bind):
9757         * kbsequence.C (parse): change return type to string::size_type
9758
9759         * LaTeX.C (updateBibtexDependencies): comment out unneeded
9760         variable
9761
9762         * Bullet.C (bulletSize):
9763         (bulletEntry): do not use short ints as parameters
9764
9765         * BufferView2.C (insertLyXFile): change a char to an int.
9766
9767         * WorkArea.C (WorkArea): remove unneeded floats in computation
9768
9769 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
9770
9771         * buffer.C (asciiParagraph): Treat '\\' as other chars.
9772
9773         * paragraph.C (asString): Do not ignore newline/hfill chars when
9774         copying to the clipboard.
9775
9776 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
9777
9778         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
9779         after a multi-line inset.
9780
9781 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
9782
9783         * paragraph.C (validate): Set NeedLyXFootnoteCode
9784
9785 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
9786
9787         * lyxfont.C (LyXSizeNames): changed increase-error to increase
9788         and decrease-error to decrease.
9789
9790 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9791
9792         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
9793         it more readable (should be equivalent)
9794
9795 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
9796
9797         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
9798
9799 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9800
9801         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
9802         of a cursor (row, etc.) after a character has been deleted
9803         (deleteEmptyParagraphMechanism): call the method above on _all_
9804         cursors held by the LyXText when a double space has been
9805         detected/deleted.
9806
9807 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
9808
9809         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
9810         pixmap.
9811         (resizeCurrentBuff): remove code to destroy the old splash dialog.
9812
9813         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
9814         background. Use greyOut() and the new show() methods to toggle between
9815         the foreground and background. Add code to remove the splash after
9816         its initial showing.
9817
9818         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
9819         (create_forms): no longer call Dialogs::showSplash.
9820
9821 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9822
9823         * .cvsignore: add version_info.h
9824
9825 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9826
9827         * version_info.h.in: new file
9828
9829         * Makefile.am: add version_info.h.in
9830
9831         * lyx_main.C (commandLineVersionInfo): use version_info defined in
9832         version_info.h instead of VERSION_INFO
9833
9834 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
9835
9836         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
9837         The ERT inset now returns string().
9838
9839 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
9840
9841         * lyxtext.h, text.C (selectNextWord): renamed as
9842         selectNextWordToSpellcheck.
9843
9844         * text.C (selectNextWordToSpellcheck): Modified to not select
9845         words inside an ERT inset.
9846
9847 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9848
9849         * lyx_cb.C (MenuLayoutSave): change a bit the question
9850
9851         * sp_base.h: include <sys/types.h>
9852
9853 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
9854
9855         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
9856
9857 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
9858
9859         * several files: fix typos in user-visible strings
9860
9861 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9862
9863         * text2.C (pasteSelection): do not set the selection, since it
9864         will be cleared later. Actually, the intent was to fix the way the
9865         selection was set, but I figured rmoving the code was just as good.
9866
9867 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
9868
9869         * FontLoader.C (available): Check if font is available without
9870         loading the font.
9871
9872 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
9873
9874         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
9875
9876 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
9877
9878         * lyxrc.[Ch]: added display_graphics variable and associated code.
9879
9880 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9881
9882         * bufferparams.C (hasClassDefaults): new method. Returns true if
9883         the buffer parameters correspond to known class defaults
9884
9885 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
9886
9887         * XFormsView.C (show): set minimum size to the main window.
9888
9889 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9890
9891         * text2.C (copySelection):
9892         (cutSelection):
9893         * lyxfind.C (LyXReplace):
9894         * BufferView_pimpl.C (Dispatch): pass the correct flag to
9895         LyXText::selectionAsString.
9896
9897         * paragraph.C (asString): add "label" argument to the second form
9898
9899         * text2.C (selectionAsString): add "label" argument and pass it to
9900         Paragraph::asString.
9901
9902 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9903
9904         * lyx_main.C (commandLineHelp): remove version information
9905
9906 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
9907
9908         * lyx_main.C: add -version commandline option
9909
9910 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9911
9912         * paragraph.h: make the optional constructor arg required instead.
9913         some modifications to other files because of this.
9914
9915         * minibuffer.C (C_MiniBuffer_peek_event): make it static
9916
9917         * lyxserver.C (C_LyXComm_callback): make it static
9918
9919         * lyx_main.C (error_handler): make it static
9920
9921         * lyx_gui.C (LyX_XErrHandler): make it static
9922
9923         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
9924
9925         * WorkArea.C: make the extern "C" methods static.
9926
9927         * Makefile.am (lyx_LDADD): simplify
9928
9929 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
9930
9931         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
9932         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
9933
9934         * LyXAction.C (init):
9935         * lyxfunc.C (dispatch): associated code removal.
9936
9937 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9938
9939         * lyxfont.h (isSymbolFont): shut off warning
9940
9941         * text.C (setHeightOfRow):
9942         (getVisibleRow): fix crash with empty paragraphs which have a
9943         bottom line
9944
9945 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
9946
9947         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
9948         code.
9949
9950 2001-09-04  José Matos  <jamatos@fep.up.pt>
9951         * buffer.C
9952         * buffer.h
9953         * tabular.C (docbook): rename docBook method to docbook.
9954
9955 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
9956
9957         * Makefile.am: add dependencies to main.o.
9958
9959 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
9960
9961         * FontLoader.C (available): Return false if !lyxrc.use_gui
9962
9963 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
9964
9965         * FontInfo.C (query):
9966         * converter.C (view):
9967         * importer.C (Import):
9968         * exporter.C (Export): Can not -> cannot.
9969
9970 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
9971
9972         * BufferView_pimpl.C: allow to create index inset even if
9973           string is empty
9974
9975 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
9976
9977         * buffer.C (getLists): replace boost::tie code with an explicit pair
9978         as boost::tie can break some compilers.
9979
9980         * iterators.h: Added a std:: declaration to the return type of
9981         ParIterator::size.
9982
9983 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
9984
9985         * lyxrc.C: add help for view_dvi_paper_option, default to safe
9986           case.
9987
9988 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
9989
9990         * iterators.[Ch]: New files. Provide paragraph iterators.
9991
9992         * buffer.C (changeLanguage): Use paragraph iterators.
9993         (isMultiLingual): ditto
9994
9995         * BufferView2.C (ChangeInsets): Use paragraph iterators.
9996
9997 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
9998
9999         * FontLoader.C: Support for cmr font.
10000
10001 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
10002
10003         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
10004         (available): New method.
10005
10006         * FontInfo.C (getFontname): Use scalable fonts even when
10007         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
10008         found.
10009
10010 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
10011
10012         * converter.C (Formats::view): reverted! Incorrect fix.
10013
10014 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
10015
10016         * converter.C (Formats::view): only output the -paper option
10017         if the dvi viewer is xdvi, thereby fixing bug #233429.
10018
10019 2001-08-23  Herbert Voss  <voss@perce>
10020
10021         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
10022
10023 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
10024
10025         * Spacing.h (Spacing): Set space to Default on in the default
10026         constructor.
10027
10028 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10029
10030         * vc-backend.h (RCS::versionString): add RCS to version
10031         (CVS::versionString): add CVS to version
10032
10033         * vc-backend.C (scanMaster): do not add CVS to version.
10034         (scanMaster): do not add RCS to version
10035
10036         * lyxvc.C (versionString): new method
10037
10038         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
10039
10040 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10041
10042         * Spacing.C (set): initialize fval
10043
10044 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
10045
10046         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
10047         " or \.
10048
10049 2001-08-16  Juergen Vigna  <jug@sad.it>
10050
10051         * lyxfunc.C (dispatch): implemented the new FINISHED states.
10052
10053 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
10054
10055         * BufferView_pimpl.C:
10056         * figureForm.C:
10057         * lyxtext.h:
10058         * text2.C: setParagraph takes linespacing now
10059
10060 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
10061
10062         * LyxAction.C: add internal LFUN_CITATION_INSERT
10063
10064         * LyXView.C: actually apply fix
10065
10066         * bufferlist.C: fix open non-existent file
10067
10068         * lyxfind.C: fix indentation
10069
10070         * lyxfunc.C: remove unneeded assert, fix typo
10071
10072 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
10073
10074         * MenuBackend.C: use "Floatname List"
10075
10076 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
10077
10078         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
10079         when converting LaTeX layout to insetERT.
10080         Generate a non-collapsed float when reading old float
10081
10082 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
10083
10084         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
10085         ERT insets.
10086
10087 2001-08-13  Juergen Vigna  <jug@sad.it>
10088
10089         * text.C (fill): return 0 instead of 20 as this seems to be the more
10090         correct value.
10091
10092 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
10093
10094         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
10095         lyxrc.font_norm.
10096
10097 2001-08-13  Juergen Vigna  <jug@sad.it>
10098
10099         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
10100         casesensitive off.
10101         (SearchBackward): comment out the unlocking of the inset_owner this
10102         should not be needed!
10103
10104 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
10105
10106         * Many files: Remove inherit_language, and add latex_language
10107
10108         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
10109         collapsible insets.
10110
10111 2001-08-10  Juergen Vigna  <jug@sad.it>
10112
10113         * text.C (prepareToPrint): fixed hfill-width in draw!
10114
10115         * BufferView2.C (selectLastWord): save the selection cursor as this
10116         now is cleared in the function LyXText::clearSelection!
10117
10118 2001-08-08  Juergen Vigna  <jug@sad.it>
10119
10120         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
10121         BACKSPACE type functions.
10122
10123         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
10124         is only cutted from the document but not put in the cut-buffer, where
10125         still the old stuff should be.
10126
10127         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
10128
10129         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
10130
10131         * tabular.C (SetWidthOfCell): fixed special case where the width
10132         was not updated!
10133         (LeftLine): handle '|' in align_special.
10134         (RightLine): ditto
10135         (LeftAlreadyDrawed): ditto
10136         (SetWidthOfCell): ditto
10137
10138 2001-08-07  Juergen Vigna  <jug@sad.it>
10139
10140         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
10141
10142 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10143
10144         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
10145         * lyxlex.[hC]: ditto
10146
10147 2001-08-06  Juergen Vigna  <jug@sad.it>
10148
10149         * text.C (getVisibleRow): fix up row clearing a bit.
10150
10151 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10152
10153         * minibuffer.C: make sure the X server sees the changes in the input.
10154
10155 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10156
10157         * paragraph.C (getFont): split into...
10158         (getLabelFont): this
10159         (getLayoutFont): and this
10160         * paragraph_pimpl.C (realizeFont): calling this
10161
10162         * text2.C (getFont): split into...
10163         (getLayoutFont): this
10164         (getLabelFont): and this
10165         (realizeFont): all three calling this
10166
10167         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
10168         files where used.
10169
10170 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10171
10172         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
10173
10174 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
10175
10176         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
10177         layouts from the Quote inset insertion.
10178
10179 2001-08-03  Juergen Vigna  <jug@sad.it>
10180
10181         * BufferView_pimpl.C (update): do the fitCursor only at the end!
10182
10183         * screen.C (drawFromTo): don't call fitcursor here and do the loop
10184         only if status not is already CHANGED_IN_DRAW (second level).
10185
10186         * text.C (draw): don't set the need_break_row when inside an
10187         InsetText LyXText.
10188
10189 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10190
10191         * buffer.C (parseSingleLyXformat2Token): handle more latex
10192         conversion cases.
10193
10194         * bufferview_funcs.[hC]: change function names to
10195         begin with small char, adjust other files.
10196
10197 2001-08-02  André Pönitz <poenitz@gmx.net>
10198
10199         * lyxfunc.C:
10200         BufferView_pimpl.C: remove broken special code for math-greek
10201
10202 2001-08-02  Juergen Vigna  <jug@sad.it>
10203
10204         * BufferView_pimpl.C (update): redone this function so that we
10205         update the text again if there was a CHANGE_IN_DRAW.
10206
10207         * screen.C (cursorToggle): removed LyXText parameter and recoded.
10208         (drawFromTo): added a new internal bool which is used by draw() and
10209         redraw() function.
10210         (general): some cursor drawing problems fixed.
10211
10212 2001-08-01  Juergen Vigna  <jug@sad.it>
10213
10214         * lyxfind.C (LyXFind): fixed
10215         (SearchForward): ditto
10216         (SearchBackward): ditto
10217
10218         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
10219         spurius drawing of the cursor in the main area.
10220
10221         * text2.C (status): small fix which could lead to a segfault!
10222         (clearSelection): remove unneeded BufferView param.
10223
10224 2001-08-01  André Pönitz <poenitz@gmx.net>
10225
10226         * lyxfunc.C: small change due to changed mathed interface
10227
10228 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10229
10230         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
10231
10232 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
10233
10234         * lyxfunc.c: fail gracefully if file doesn't exist
10235
10236         * LyXSendto.C:
10237         * buffer.C:
10238         * lyxfunc.C:
10239         * BufferView_pimpl.C: IsDirWriteable() proto changed
10240
10241         * LyXView.C: fix updateWindowTitle() to store the last title
10242
10243 2001-07-31  Juergen Vigna  <jug@sad.it>
10244
10245         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
10246         the font (wrong since using of Paragraph::highestFontInRange).
10247
10248         * paragraph.C (highestFontInRange): added a default_size parameter.
10249
10250         * text.C (getVisibleRow): minor clear row changes (still not perfect).
10251         (setHeightOfRow): reformat
10252
10253 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10254
10255         * converter.[hC] + affected files: move to (inital-char)lowercase
10256         function names.
10257
10258         * ParagraphParameters.C (ParagraphParameters): remove commented code
10259
10260         * PainterBase.[Ch]: remove commented code
10261
10262         * LaTeXFeatures.h: add "bool floats" for float.sty
10263
10264         * LaTeXFeatures.C (LaTeXFeatures): init floats
10265         (require): handle float
10266         (getPackages): do it with floats
10267
10268 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10269
10270         * BufferView_pimpl.C (Dispatch): improve handling of
10271         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
10272
10273         * commandtags.h: #include lyxfont.h here temporarily to avoid
10274         keybinding bug.
10275
10276         * bufferlist.h: include LString.h here.
10277
10278 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10279
10280         * text2.C (getStringToIndex): new method.
10281
10282 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
10283
10284         * *: Reduced header file dependencies all over.
10285
10286 2001-07-30  Baruch Even  <baruch@lyx.org>
10287
10288         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
10289
10290 2001-07-29  Baruch Even  <baruch@lyx.org>
10291
10292         * buffer.C (readInset): Changed GRAPHICS to Graphics.
10293
10294 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10295
10296         * ParameterStruct.h (endif): add a default constructor to make
10297         sure that all variables is initialized.
10298
10299         * ParagraphParameters.C (ParagraphParameters): adjust
10300
10301 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10302
10303         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
10304         index; also, check that there is something to index, and that it
10305         does not span over several paragraphs.
10306         (doubleClick): use WHOLE_WORD_STRICT for double click.
10307
10308         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
10309
10310         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
10311         scheme.
10312
10313 2001-07-26  Baruch Even  <baruch@lyx.org>
10314
10315         * buffer.C (readInset): Changed to call up InsetGraphics when reading
10316         an InsetFig figure, backwards compatible reading of old figure code.
10317
10318 2001-07-27  Juergen Vigna  <jug@sad.it>
10319
10320         * text2.C: font.realize function adaption.
10321
10322         * text.C (draw): add a warnings lyxerr text if needed.
10323
10324         * layout.C: font.realize function adaption.
10325
10326         * language.C: add inherit_language and implement it's handlings
10327
10328         * bufferview_funcs.C (StyleReset): remove language parameter from
10329         font creation (should be language_inherit now).
10330
10331         * bufferparams.C (writeFile): handle ignore_language.
10332
10333         * paragraph.C (getFontSettings): the language has to be resolved
10334         otherwise we have problems in LyXFont!
10335
10336         * lyxfont.C (lyxWriteChanges): added document_language parameter
10337         (update): removed unneeded language parameter
10338
10339         * paragraph.C (validate): fixed wrong output of color-package when
10340         using interface colors for certain fonts in certain environments,
10341         which should not seen as that on the final output.
10342
10343 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
10344
10345         * BufferView_pimpl.C:
10346         * Thesaurus.h:
10347         * Thesaurus.C:
10348         * Makefile.am:
10349         * commandtags.h:
10350         * LyXAction.C: add thesaurus support
10351
10352         * lyxfind.h:
10353         * lyxfind.C: add "once" parameter, for thesaurus, to not
10354           move to the next match
10355
10356 2001-07-26  Juergen Vigna  <jug@sad.it>
10357
10358         * lyxfont.C (realize): honor ignore_language too!
10359         (resolved): ditto.
10360
10361         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
10362
10363         * text.C (draw): one place more for ignore_language to not draw
10364         itself!
10365
10366 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
10367
10368         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
10369
10370 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10371
10372         * buffer.C (parseSingleLyXformat2Token): a more general fix for
10373         the minipage conversion problem.
10374
10375 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10376
10377         * buffer.C (parseSingleLyXformat2Token): check minipage if we
10378         insert an inset.
10379
10380 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10381
10382         * BufferView.h: don't forward declare WorkArea
10383
10384         * BufferView.C: don't include WorkArea.h
10385
10386 2001-07-25  André Pönitz <poenitz@gmx.net>
10387
10388         * commandtags.h:
10389         * LyXAction.C:
10390         * lyxfunc.C:  new LFUN 'math-space'
10391
10392         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
10393
10394 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10395
10396         * text2.C (toggleInset): call open/close
10397
10398 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10399
10400         * lyxfunc.C (dispatch): add debug for the disabled case
10401
10402         * font.C (buttonText): make similar to rectText
10403
10404         * buffer.C (readInset): comment out parsing of insetlist and
10405         insttheorem
10406
10407         * PainterBase.C (rectText): small correction
10408
10409         * BufferView_pimpl.C: comment out insettheorem and insetlist
10410         * LyXAction.C: ditto
10411         * commandtags.h: ditto
10412
10413 2001-07-24  Juergen Vigna  <jug@sad.it>
10414
10415         * text.C (draw): honor the ignore_language.
10416
10417         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
10418
10419 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10420
10421         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
10422         char inset.
10423
10424 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10425
10426         * lyxtext.h: remove unused (and unimplemented) methods
10427
10428 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10429
10430         * text.C (getVisibleRow): honor background color
10431
10432         * PainterBase.h:
10433         * Painter.h: remove default color argument for fillRectangle
10434
10435         * text.C (backgroundColor): new method
10436
10437 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10438
10439         * text.C (getVisibleRow): adjust
10440
10441         * font.[Ch] (rectText): new method, metrics
10442         (buttonText): new method, metrics
10443
10444         * PainterBase.[hC]: make rectText and buttonText always draw and take
10445         fewer paramteres.
10446
10447 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10448
10449         * ToolbarDefaults.C (read):
10450         * MenuBackend.C (read): allow escaping in all strings
10451
10452         * BufferView_pimpl.C (insertAndEditInset): new method.
10453         (Dispatch): use insertAndEditInset whenever appropriate.
10454
10455         * BufferView_pimpl.C (insertNote): removed
10456
10457         * BufferView_pimpl.C (smartQuote): new method, moved from
10458         BufferView; if an insetquote cannot be inserted, insert a '"'
10459         character instead.
10460
10461         * BufferView2.C: remove insertCorrectQuote();
10462
10463         * lyxfunc.C (getStatus): Add support for all remaingin
10464         inset-insert lfuns.
10465
10466         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
10467
10468         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
10469         command (necessary to pass " as parameter of self-insert.
10470
10471         * text.C (selectWordWhenUnderCursor):
10472         (selectWord): add word_location parameter
10473         (selectWordWhenUnderCursor): same + remove special code for word
10474         boundary.
10475         (selectNextWord): use kind() to guess type of insetspecialchar,
10476         not latex().
10477
10478         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
10479         (insertErtContents): create ert insets as collapsed.
10480         (readInset): better compatibility code for Info inset.
10481
10482 2001-07-20  Juergen Vigna  <jug@sad.it>
10483
10484         * lyxfunc.C (dispatch): use always LyXFind now!
10485
10486         * text2.C (init): add a reinit flag so that the LyXText can be
10487         reinited instead of deleted and reallocated (used in InsetText).
10488
10489         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
10490
10491         * text.C: ditto
10492
10493         * text2.C: ditto
10494
10495 2001-07-18  Juergen Vigna  <jug@sad.it>
10496
10497         * text.C (selectNextWord): handle insets inside inset by calling
10498         always the bv->text functions so that we can go up the_locking_inset!
10499
10500         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
10501         in strange locations when inside an inset!
10502
10503         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
10504         handling to include insets.
10505
10506         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
10507
10508 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10509
10510         * LyXAction.C (init):
10511         * commandtags.h:
10512         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
10513         LIGATURE_BREAK, since the name is so stupid.
10514
10515 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
10516
10517         * buffer.C (readInset): enable reading of new InsetNotes as well as old
10518         InsetInfos.
10519
10520         * FontLoader.C: remove FORMS_H_LOCATION cruft.
10521
10522         * sp_form.[Ch]: remove.
10523
10524         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
10525
10526         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
10527         InsetInfo.
10528
10529         * src/buffer.C (readInset): ditto.
10530
10531 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10532
10533         * BufferView_pimpl.C (specialChar): new method. Obsoletes
10534         menuSeparator(), endOfSentenceDot(), ldots() and
10535         hyphenationPoint(), which are therefore removed.
10536         (Dispatch): handle LFUN_HYPHENATION_BREAK.
10537
10538         * LyXAction.C (init):
10539         * commandtags.h: add LFUN_HYPHENATION_BREAK.
10540
10541         * paragraph.C (getWord): removed.
10542
10543         * BufferView_pimpl.C (Dispatch): use last word or selection for
10544         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
10545
10546         * lyx_main.C (queryUserLyXDir): do not ask before creating
10547         user_dir, except if it has been named explicitely.
10548
10549 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
10550
10551         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
10552         a document of zero size.
10553
10554 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
10555
10556         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
10557         approriately in the c-tor and in require().
10558         (getPackages): output the appropriate LaTeX for natbib support.
10559
10560         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
10561         variables "use_natbib" and "use_numerical_citations" when reading the
10562         LyX file.
10563         (readInset): read the various natbib cite commands.
10564         (validate): white-space change.
10565
10566         * bufferparams.[Ch]: new variables "bool use_natbib" and
10567         "bool use_numerical_citations".
10568         (writeFile): output them in the LyX file.
10569
10570 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10571
10572         * lyxfunc.C (getStatus): add support for all the inset insertion
10573         commands.
10574
10575         * text2.C (insertInset):
10576         * paragraph.C (insetAllowed):
10577         * BufferView_pimpl.C (insertInset): update to take in account the
10578         renaming of insertInsetAllowed
10579
10580         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
10581
10582         * text2.C (getInset): new method. returns inset at cursor position.
10583
10584         * BufferView_pimpl.C (Dispatch): changes because of this.
10585
10586         * LyXAction.C (init): rename open-stuff to inset-toggle.
10587
10588         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
10589
10590         * text2.C (toggleInset): renamed from openStuff; use
10591         Inset::open().
10592
10593 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
10594
10595         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
10596
10597         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
10598
10599 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
10600
10601         * buffer.C (readLyXformat2): Add filename to the error dialog
10602
10603 2001-07-18  Juergen Vigna  <jug@sad.it>
10604
10605         * tabular.C (GetCellNumber): put an assert here instead of the check!
10606
10607 2001-07-17  Juergen Vigna  <jug@sad.it>
10608
10609         * BufferView_pimpl.C (toggleSelection): adapted too.
10610
10611         * text.C (selectNextWord): adapted for use with insets.
10612         (selectSelectedWord): ditto
10613
10614 2001-07-17  Juergen Vigna  <jug@sad.it>
10615
10616         * sp_spell.C (PSpell): fix initialitation order.
10617
10618 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10619
10620         * paragraph.C: spacing
10621
10622 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
10623
10624         * sp_spell.C: repair language selection for pspell
10625
10626 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10627
10628         * lyxfunc.h: change more methods to begin with lower char.
10629
10630 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
10631
10632         * buffer.C (parseSingleLyXformat2Token): Generate error insets
10633         for unknown layouts.
10634
10635 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
10636
10637         * buffer.C (readLyXformat2): Generate an error dialog if there are
10638         unknown layouts.
10639
10640 2001-07-16  Juergen Vigna  <jug@sad.it>
10641
10642         * sp_spell.C: always compile ISpell part.
10643
10644         * lyxrc.C: added use_pspell entry and it's handling.
10645
10646 2001-07-13  Juergen Vigna  <jug@sad.it>
10647
10648         * sp_spell.C: removed double includes.
10649
10650 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
10651
10652         Consistent use of Lsstream.h:
10653         * Lsstream.h: added using std::stringstream for consistencies sake.
10654
10655         * buffer.C: removed using std::stringstream
10656
10657         * lyxfont.C (stateText):
10658         * paragraph.C (asString):
10659         * text.C (selectNextWord, selectSelectedWord):
10660         * text2.C (setCounter):
10661         * vspace.C (asString, asLatexString):
10662         std::ostringstream -> ostringstream.
10663
10664 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
10665
10666         * LyXAction.C: add LFUN_HELP_ABOUTLYX
10667         * commandtags.h: add LFUN_HELP_ABOUTLYX
10668         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
10669
10670 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
10671
10672         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
10673         cursorToggle()
10674         * lyx_gui_misc.C: remove spellchecker
10675         * lyxfunc.C: showSpellchecker
10676         * sp_base.h: added
10677         * sp_ispell.h: added
10678         * sp_pspell.h: added
10679         * sp_spell.C: added
10680         * sp_form.[Ch]: removed
10681         * spellchecker.[Ch]: removed
10682
10683 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
10684
10685         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
10686         is set.
10687         (simpleTeXSpecialChars): Simply print the input character without
10688         any special translation if pass_thru is set.
10689
10690         * layout.h: Added bool pass_thru to layout class for being able to
10691         implement pass through of a paragraph for Literate Programming.
10692
10693         * layout.C: add LT_PASS_THRU to LayoutTags enum.
10694         * layout.C (LyXLayout): set pass_thru to flase in constructor.
10695         * layout.C (Read): add "passthru" to list of layout tags and add
10696         code to set the pass_thru boolean when it is read.
10697
10698 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10699
10700         * trans_decl.h: remove allowed from KmodInfo
10701
10702         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
10703         remove allowed code
10704         (Load): adjust
10705
10706         * paragraph_pimpl.C (erase): use boost::prior
10707
10708         * Painter.C (text): use data() instead of c_str() when length is
10709         also provided.
10710         * WorkArea.C (putClipboard): ditto
10711         * font.h (width): ditto
10712
10713         * BufferView2.C: use it-> instead of (*it). for iterators
10714         * texrow.C: ditto
10715         * paragraph_pimpl.C: ditto
10716         * paragraph.C: ditto
10717         * minibuffer.C: ditto
10718         * language.C: ditto
10719         * kbmap.C: ditto
10720         * encoding.C: ditto
10721         * counters.C: ditto
10722         * converter.C: ditto
10723         * chset.C: ditto
10724         * Variables.C: ditto
10725         * TextCache.C: ditto
10726         * MenuBackend.C: ditto
10727         * LyXAction.C: ditto
10728         * LColor.C: ditto
10729         * FloatList.C: ditto
10730         * DepTable.C: ditto
10731         * ColorHandler.C (LyXColorHandler): ditto
10732
10733 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10734
10735         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
10736
10737         * text2.C (openStuff): reintroduce this method (which had been
10738         nuked in NEW_INSETS frenzy).
10739
10740         * lyxfunc.C (Dispatch): when an action has not been handled, use
10741         its name in the error message, not its number.
10742
10743         * paragraph.C (inInset): change method name to begin with lowercase.
10744
10745         * undo_funcs.C:
10746         * text2.C: updates because of this.
10747
10748 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10749
10750         * ToolbarDefaults.C (add): add spaces in error message
10751
10752 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10753
10754         * buffer.C (readLyXformat2): initialize the ert comp. variables.
10755         (readLyXformat2): rename return_par to first_par, use lyxlex's
10756         pushToken and remove the manual push handling.
10757         (parseSingleLyXformat2Token): add another ert comp. variable:
10758         in_tabular, rename return_par to first_par. handle newlines better
10759
10760 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10761
10762         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
10763
10764 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10765
10766         * text2.C (getParFromID): removed
10767
10768         * buffer.C (getParFromID): new method moved form lyxtext.
10769         * BufferView2.C (insertErrors): adjust
10770         (setCursorFromRow): adjust
10771         * BufferView_pimpl.C (restorePosition): adjust
10772         * lyxfunc.C (Dispatch): adjust
10773         * undo_funcs.C (textUndo): adjust
10774         (textRedo): adjust
10775         (textHandleUndo): adjust
10776         (textHandleUndo): adjust
10777
10778 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10779
10780         * buffer.C: up' the LYX_FORMAT
10781
10782         * lyxfont.h: turn NO_LATEX on as default
10783
10784         * buffer.C (insertErtContents): new methods of tex style compability.
10785         (parseSingleLyXformat2Token): use it several places.
10786         * tabular.C (OldFormatRead): and here
10787
10788 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10789
10790         * text2.C: remove some commented code.
10791         reindent file.
10792
10793         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
10794         * trans.C: changes because of the above.
10795
10796 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
10797
10798         * text2.C (setCounter): Fix counters bug with bibliography layout.
10799
10800 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10801
10802         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
10803         own member functions
10804         (simpleTeXSpecialChars): ditto
10805
10806 2001-07-06  Juergen Vigna  <jug@sad.it>
10807
10808         * a lot of files: changed the access to LyXText::status and the
10809         call of undo-functions.
10810
10811         * undo.[Ch]: added a inset_id to the undo informations.
10812
10813         * undo_funcs.[Ch]: added and moved here all undo functions.
10814
10815         * lyxtext.h: give the status enum a weight, made status_ a private
10816         variable and made accessor functions for it, removed the whole bunch
10817         of undo-functions as they are now in their own file, make some
10818         functions publically available. Added function ownerParagraph with
10819         int parameter.
10820
10821         * paragraph.[Ch]: added "bool same_ids" to the constructor,
10822         made InInset() a const function, added getParFromID() function.
10823
10824         * buffer.[Ch]: added const version for inset_iterator functions,
10825         added getInsetFromID() function.
10826
10827         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
10828         changed undo functions for new version.
10829
10830 2001-07-05  Juergen Vigna  <jug@sad.it>
10831
10832         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
10833         unknow mechanism does not call the proper constructor but only this
10834         one also if I request the other!?
10835
10836 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10837
10838         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
10839
10840         * text2.C (LyXText): use initialization lists.
10841
10842         * lyxtext.h (Selection): initialize set_ and mark_
10843         (init): remove method
10844
10845 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
10846
10847         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
10848
10849 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10850
10851         * screen.[Ch]: change method names to begin with lowercase
10852
10853         * BufferView_pimpl.C (updateScrollbar): simplify further and
10854         hopefully make it a bit faster.
10855
10856 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10857
10858         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
10859         calling directly xforms functions.
10860
10861         * Painter.C (Painter):
10862         * lyx_cb.C (MenuWrite):
10863         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
10864         fl_display.
10865
10866         * lyx_gui.C: remove bogus guiruntime extern declaration.
10867
10868 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10869
10870         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
10871         in NEW_INSETS
10872         (redoDrawingOfParagraph): ditto
10873         (redoParagraphs): ditto
10874         (cutSelection): don't create a object for CutAndPaste use the
10875         static method directly
10876         (pasteSelection): ditto
10877
10878         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
10879         LyXview (+ rename)
10880
10881 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10882
10883         * modifications to some other files because of this.
10884
10885         * Makefile.am (lyx_SOURCES): add XFormsView
10886
10887         * XFormsView.[Ch]: new files
10888
10889         * LyXView.[Ch]: make LyXView a base class for the gui handling for
10890         the main window. Move the gui dependent stuff to XFormsView
10891
10892 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10893
10894         * tabular.C (GetCellInset): update cur_cell also in the row/col
10895         version of this function.
10896
10897         * lyxfunc.C: no need to include figure_form.h here.
10898
10899         * FontLoader.h:
10900         * lyxfunc.h:
10901         * lyxscreen.h:
10902         * text2.C:
10903         * lyxvc.C: no need to include forms.h here.
10904
10905 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10906
10907         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
10908
10909         * lyxfunc.C (Dispatch):
10910         * Spacing.C (set):
10911         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
10912         constructor argument.
10913
10914 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10915
10916         * paragraph.C (Paragraph): dont't clear, and just set layout.
10917         (makeSameLayout): use params's copy contructor.
10918
10919         * ParagraphParameters.[Ch] (makeSame): delete method
10920
10921 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
10922
10923         * Variables.[Ch]: fix indentation, rename set to isSet
10924
10925 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10926
10927         * lyxfunc.C (Dispatch): fix typo
10928
10929 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10930
10931         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
10932         upper_bound.
10933
10934         * bufferlist.C: include assert.h for emergencyWrite().
10935
10936 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
10937
10938         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
10939           give up at last (bug #425202) !
10940
10941 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
10942
10943         * lyx_gui_misc.C:
10944         * sp_form.h:
10945         * sp_form.C:
10946         * spellchecker.h:
10947         * spellchecker.C: strip spellchecker options and bring up
10948           preferences tab instead
10949
10950 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10951
10952         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
10953         the istringstream constructor
10954
10955 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10956
10957         * paragraph.C (getLayout): fix return value
10958
10959         * paragraph.h: do not declare getLayout as inline.
10960
10961         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
10962
10963 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10964
10965         * lyxcursor.h (operator<): new func
10966         (operator>): new func
10967         (operator>=): new func
10968         (operator<=): new func
10969
10970         * text.C (changeCase): use selection.start and selection.end
10971         (changeRegionCase): require from to be <= to. Require par to be a
10972         valid paragraph.
10973
10974         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
10975
10976 2001-06-27  Juergen Vigna  <jug@sad.it>
10977
10978         * text.C (cursorLeftOneWord): changed to return the cursor and added
10979         overlay with BufferView * parameter which calls this one.
10980         (getWord): added
10981         (selectWord): use new getWord function.
10982         (changeCase): renamed from changeWordCase as and extended to work
10983         also on selections.
10984
10985         * lyxtext.h: added enum word_location
10986
10987         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
10988         changeCase as this operates now also on selections.
10989
10990 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
10991
10992         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
10993
10994         * many files: send debug output to Debug::INFO instead of
10995         Debug::ANY.
10996
10997         * converter.C (View):
10998         (Convert):
10999         (Move): send debug output to Debug::FILES instead of console.
11000
11001 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
11002
11003         * lyxfunc.C (getStatus): use func_status
11004
11005         * func_status.h: new header, describing the results of
11006         LyXFunc::getStatus;
11007
11008         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
11009         LFUN_MATH_HALIGN.
11010
11011 2001-06-25  The LyX Project  <jug@sad.it>
11012
11013         * buffer.C (sgmlOpenTag):
11014         (sgmlCloseTag):
11015         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
11016
11017 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11018
11019         * text2.C: remove some dead code
11020
11021         * tabular.C (GetCellInset): store the last cell checked (gotten)
11022
11023         * tabular.h: add the helper for the speedup
11024
11025         * lyxtext.h: remove some dead code
11026
11027 2001-06-26  The LyX Project  <Asger>
11028
11029         * paragraph.C: Change export to LaTeX of alignment to
11030         \begin{center} and family for better roundtrip work with reLyX.
11031
11032         * Tune the math drawing a bit.
11033
11034 2001-06-25  The LyX Project  <Asger>
11035
11036         * LColor.C (LColor): New color for math background. New color
11037         for buttons.
11038
11039 2001-06-25  The LyX Project  <jug@sad.it>
11040
11041         * lyxfunc.C (MenuNew): remove extra check for .lyx file
11042
11043         * lyxfunc.C (Open):
11044         * bufferlist.C (newFile): do not restrict to files ending with
11045         .lyx
11046
11047         * BufferView_pimpl.C (MenuInsertLyXFile):
11048
11049 2001-06-24  The LyX Project  <jug@sad.it>
11050
11051         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
11052         of compare_no_case
11053
11054 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11055
11056         * lyxtext.h: rename most methods to begin with a small char.
11057         Lots of changes because of this.
11058
11059         * paragraph.C (Paragraph): do not call fitToSize
11060         (erase): call Pimpl::erase
11061         (insertChar): call Pimpl::insertChar
11062         (insertInset): call Pipl::insertInset
11063         (breakParagraph): do not call fitToSize
11064         (breakParagraphConservative): do not call fitToSize
11065         (fitToSize): remove method
11066
11067         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
11068
11069 2001-06-24  The LyX Project  <Asger>
11070
11071         * Fix Qt compilation^2
11072
11073 2001-06-24  The LyX Project  <jug@sad.it>
11074
11075         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
11076         depthHook(getDepth()-1).
11077
11078         * paragraph.h:
11079         * ParagraphParameters.h:
11080         * ParameterStruct.h: change type of depth to unsigned int ==
11081         depth_type. Many adaptations to other files before of that.
11082
11083 2001-06-24  The LyX Project  <Asger>
11084
11085         * Fix Qt compilation.
11086
11087 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11088
11089         * paragraph.h: renamed several methods to begin with small letter.
11090         several changes to many parts of the code because of this.
11091
11092 2001-06-23  The LyX Project  <jug@sad.it>
11093
11094         * text2.C (InsertStringAsLines): renamed from InsertStringA;
11095         rewritten to discard all double spaces when KeepEmpty is off
11096         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
11097         to only handle newlines but not fiddle with spaces and friends.
11098
11099         * lyxfunc.C (MenuNew): when doing 'new from template', use
11100         template_path as default directory
11101
11102 2001-06-23  The LyX Project  <Asger>
11103
11104         * Clean-up of header file includes all over
11105         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
11106
11107 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11108
11109         * paragraph.h: renamed from lyxparagraph.h
11110
11111 2001-06-23  Asger  <lyx@violet.home.sad.it>
11112
11113         * Buffer.h: Removed Buffer::resize
11114         * BufferList.h: Removed BufferList::resize
11115         * LyXView.h: Added LyXView::resize. This way, we will only reflow
11116         the document lazily when we change the width, or the font settings.
11117
11118 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
11119
11120         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
11121
11122 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
11123
11124         * buffer.h: remove out of date comment
11125
11126 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
11127
11128         * lyxscreen.h:
11129         * screen.C: fix "theoretical" GC leak
11130
11131 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11132
11133         * LaTeX.C (scanAuxFile):
11134         (deplog): remove trailing \r when reading stream (useful under
11135         win32)
11136
11137 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
11138
11139         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
11140         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
11141         and BufferView::theLockingInset(Inset*), so should use them and not
11142         access bv_->text->the_locking_inset directly.
11143
11144         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
11145
11146 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
11147
11148         * Makefile.am:
11149         * tex-defs.h: remove old unused file
11150
11151 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
11152
11153         * BufferView_pimpl.C: fix typo, remove minibuffer message
11154           when buffer has loaded
11155
11156 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11157
11158         * lyxfunc.C (Dispatch): use stringstream
11159         (MenuNew): use stringstream
11160         (Open): use stringstream
11161
11162         * importer.C (Import): use stringstream
11163
11164         * bufferview_funcs.C (CurrentState): use stringstream
11165
11166         * LaTeX.C (run): use stringstream
11167
11168         * BufferView_pimpl.C (savePosition): use stringstream
11169         (restorePosition): use stringstream
11170         (MenuInsertLyXFile): use stringstream
11171
11172 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
11173
11174         * BufferView.C:
11175         * Bullet.C:
11176         * ColorHandler.C:
11177         * FontInfo.C:
11178         * FontLoader.C:
11179         * LColor.C:
11180         * LaTeXFeatures.C:
11181         * Painter.C:
11182         * gettext.C:
11183         * lyx_gui_misc.C:
11184         * lyxserver.C:
11185         * vspace.C: removed // -*- C++ -*- as first line.
11186
11187         * lyxfind.h:
11188         * version.h: added // -*- C++ -*- as first line.
11189
11190 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11191
11192         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
11193
11194         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
11195         of string
11196
11197 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11198
11199         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
11200         of floats.
11201
11202 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11203
11204         * gettext.C: include LString.h even when --disable-nls is on.
11205
11206 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
11207
11208         * converter.h (Get): changed argument type from int to
11209         FormatList::size_type to avoid unnecessary conversion.
11210
11211         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
11212         before using it.
11213
11214 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11215
11216         * gettext.h: include LString.h even when --disable-nls is on.
11217
11218 2001-06-07  Juergen Vigna  <jug@sad.it>
11219
11220         * text.C (BreakAgain): subst spaces with tabs.
11221
11222         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
11223         (resizeInsetsLyXText): set force on resizeLyXText.
11224
11225 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11226
11227         * gettext.h (gettext_init):
11228         (locale_init): use a real definition instead of a macro
11229
11230 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
11231
11232         * Bufferview_pimpl.C:
11233         * LColor.h:
11234         * LColor.C: further lcolor tidies
11235
11236 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11237
11238         * BufferView_pimpl.C (updateScrollbar): simplify.
11239
11240         * BufferView2.C: don't include insets/insetinfo.h, change
11241         prototype for insertInset and call the Pimpl version. let
11242         updateInset call Pimpl version.
11243
11244         * BufferView.h: move inset_slept to BufferView::Pimpl, move
11245         gotoInset to BufferView::Pimpl
11246
11247 2001-06-01  Juergen Vigna  <jug@sad.it>
11248
11249         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
11250         inside a LockingInset (is the update needed at all?).
11251
11252 2001-05-31  Juergen Vigna  <jug@sad.it>
11253
11254         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
11255         here not the old one otherwise how should we compare it afterwards
11256         if it's the same!
11257
11258 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11259
11260         * lyxfont.C:
11261         * tabular.C:
11262         * tabular-old.C:
11263         * FontInfo.C: bring C functions into global namespace when
11264         necessary
11265
11266 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11267
11268         * LString.h: make sure config.h has been loaded before LString.h.
11269
11270         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
11271         (one for each char read by EatLine!).
11272
11273         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
11274         variables.
11275
11276 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11277
11278         * paragraph.C (BreakParagraph): set the inset_owner in the new par
11279         to the same as the par we break from
11280
11281 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11282
11283         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
11284
11285         * MenuBackend.C (expand): also create menu entries for wide
11286         versions of the floats.
11287
11288         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
11289
11290         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
11291
11292         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
11293         frontends/Makefile.am
11294
11295         * text2.C: adjust
11296         * text.C: adjust
11297
11298
11299         * tabular.C (getTokenValue): add std::
11300
11301         * tabular-old.C (getTokenValue): add std::
11302         (getTokenValue): ditto
11303         (getTokenValue): ditto
11304
11305         * screen.C (ToggleSelection): adjust
11306
11307         * lyxtext.h: put selection cursors inside a Selection struct.
11308
11309         * lyxfunc.C (moveCursorUpdate): adjust
11310
11311         * lyxfont.C (latexWriteStartChanges): add std::
11312
11313         * lyxfind.C: adjust
11314
11315         * font.h: delete with(char const *, LyXFont const &)
11316
11317         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
11318
11319         * FontInfo.C (getFontname): add std::
11320
11321         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
11322         (workAreaButtonPress): adjust
11323         (tripleClick): adjust
11324         (update): adjust
11325         (moveCursorUpdate): adjust
11326         (Dispatch): adjust
11327
11328         * BufferView2.C (gotoInset): adjust
11329
11330 2001-05-30  Juergen Vigna  <jug@sad.it>
11331
11332         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
11333         to check pspell I add this as default as I now have new pspell
11334         libraries and they seem to use this.
11335
11336 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11337
11338         * text2.C (CutSelection): make the cursor valid before the call to
11339         ClearSelection.
11340
11341 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11342
11343         * kbsequence.C (parse): de-uglify a bit the parsing code, which
11344         relied on 0 terminated strings and other horrors. Bug found due to
11345         the new assert in lyxstring!
11346
11347         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
11348         KP_ keys.
11349
11350 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11351
11352         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
11353         to latinkeys.bind.
11354
11355         * lyxfunc.C (processKeySym): change method of getting to the
11356         self-insert char.
11357
11358         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
11359         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
11360         * BufferView_pimpl.[Ch]: here as private methods.
11361
11362 2001-05-28  Juergen Vigna  <jug@sad.it>
11363
11364         * text.C (SetHeightOfRow): added the update() call again as it is
11365         needed to initialize inset dimensions!
11366
11367 2001-05-16  Juergen Vigna  <jug@sad.it>
11368
11369         * text2.C (SetCharFont): Add new function with BufferView * and
11370         bool toggleall parameters for setting insets internal fonts.
11371         (SetFont): Freeze the undo as we may change fonts in Insets and
11372         all this change should be inside only one Undo!
11373
11374         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
11375         setting font's in insets as for them we have the SetFont function!
11376
11377 2001-05-15  Juergen Vigna  <jug@sad.it>
11378
11379         * text2.C (ClearSelection): to be sure we REALLY don't have any
11380         selection anymore!
11381
11382         * tabular.C (TeXCellPreamble): fixed the left border problem for
11383         multicolumn cells.
11384
11385 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
11386
11387         * LaTeX.C (deplog): Make sure that the main .tex file is in the
11388         dependancy file
11389
11390 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11391
11392         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
11393         LFUN_BREAKPARAGRAPH.
11394
11395         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
11396         help test to "internal only", similar for LFUN_INSERT_URL
11397
11398         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
11399         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
11400         auto_region_delete and deadkeys.
11401
11402 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
11403
11404         * LColor.h:
11405         * LColor.C: remove some dead entries, tidy a little
11406
11407 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11408
11409         * lyxfunc.C (processKeySym): comment the Escape handling, remove
11410         commented code.
11411         (Dispatch): implement LFUN_ESCAPE
11412
11413         * commandtags.h: add LFUN_ESCAPE
11414
11415         * LyXAction.C (init): add entry for LFUN_ESCAPE
11416
11417         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
11418         Remove commented code.
11419         (insertNote): moved here
11420         (open_new_inset): moved here
11421
11422         * BufferView[2].[Ch]: move insertNote and open_new_inset to
11423         BufferView_pimpl
11424
11425 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11426
11427         * kbmap.C (findbinding): clean it up and make it work correctly.
11428
11429         * lyx_main.C (init): do not pass argc and argv as parameters
11430
11431 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
11432
11433         * buffer.C: fix path for OS/2 & Win32
11434
11435         * lyx_gui.C:
11436         * lyx_main:
11437         * lyx_main.C: Added os:: class.
11438
11439         * os2_defines.h: update
11440
11441 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11442
11443         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
11444         better by trying again with reduced state.
11445
11446 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11447
11448         * lyxrc.C (read): print error about invalid key sequence only when
11449         debugging (because not all latinX keysyms are known to some X
11450         servers)
11451
11452         * kbsequence.C (getiso): add a few std:: qualifiers
11453         (getiso): comment out extra return statement.
11454
11455 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11456
11457         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
11458         handling.
11459         (Dispatch): enhance the accent inset a bit. (not perfect)
11460
11461 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11462
11463         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
11464
11465 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11466
11467         * bufferlist.C (emergencyWrite): fix assert() call
11468
11469 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
11470
11471         * text.C (InsertChar): Added trivial patch to only send the "you
11472         can not do multiple spaces this way" message once during a
11473         session.
11474
11475 2001-05-08  Baruch Even  <baruch@lyx.org>
11476
11477         * Makefile.am: Changed order of libraries to get LyX to link properly
11478         with the gnome frontend.
11479
11480 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11481
11482         * LaTeXFeatures.h: add a std:: qualifier
11483
11484 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11485
11486         * paragraph.C (String): use stringstream
11487
11488 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11489
11490         * paragraph.C (writeFile): remove footflag arg
11491
11492         * buffer.C (makeLaTeXFile): use stringstream
11493         (latexParagraphs): remove footnot gurba
11494
11495         * LaTeXFeatures.C (getPackages): use stringstream
11496         (getMacros): likewise
11497         (getTClassPreamble): likewise
11498         (getFloatDefinitions): new method
11499
11500         * paragraph.C (writeFile): reindent
11501         (Erase): reindent
11502
11503         * WorkArea.h: revert the xpos + etc changes.
11504
11505         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
11506
11507         * lyxparagraph.[Ch]: add copy constructor, remove Clone
11508
11509         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
11510         (pasteSelection): likewise
11511         * text2.C (CreateUndo): likewise
11512
11513 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11514
11515         * minibuffer.C (peek_event): temporarily reduce the functionality
11516         of the minibuffer (to allow args on lfuns)
11517
11518         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
11519         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
11520
11521         * buffer.C (readInset): add compability reading of old float
11522         lists, add reading of new style float list.
11523         (readInset): avoid reevaluation of inscmd.getCmdName()
11524         (getLists): reindent
11525
11526         * MenuBackend.C (MenuItem): implement parsing of
11527         md_floatlistinsert and md_floatinsert.
11528         (expand::LastFiles): move initalizaton of iterators out of loop,
11529         avoid reevaluation.
11530         (expand::Documents): introduce typdedef vector<string> Strings,
11531         and use it.
11532         (expand::ExportFormats): introduce typedef vector<Format const *>
11533         Formats, and use it.
11534         (expand): implement FloatListInsert and FloatInsert.
11535
11536         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
11537         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
11538         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
11539
11540         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
11541         handling.
11542         (Dispatch::LFUN_FLOAT_LIST): implement
11543
11544 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
11545
11546         * LaTeX.C (run): Fix problem with --export code.
11547
11548 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
11549
11550         * BufferView.[Ch] (workarea): removed.
11551         (getClipboard) new method; wrapper for workarea()->getClipboard()
11552
11553         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
11554         bug.
11555
11556         * WorkArea.h (width, height, xpos, ypos): These methods all
11557         returned the dimensions of the work_area sub-area of WorkArea,
11558         resulting in a position error if the WorkArea were resized. Now
11559         return the dimensions of the entire WorkArea.
11560
11561         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
11562
11563 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11564
11565         * LaTeX.C (deplog): correct the syntax of regex reg1
11566
11567 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11568
11569         * undo.C: remove !NEW_INSETS cruft
11570
11571 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11572
11573         * text2.C: remove !NEW_INSETS cruft
11574
11575         * text.C: remove !NEW_INSETS cruft
11576
11577         * tabular.C: remove !NEW_INSETS cruft
11578
11579         * spellchecker.C: remove !NEW_INSETS cruft
11580
11581         * lyxtext.h: remove !NEW_INSETS cruft
11582
11583         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
11584
11585         * lyxfunc.C: remove !NEW_INSETS cruft
11586
11587         * lyxfind.C: remove !NEW_INSETS cruft
11588
11589         * lyx_cb.C: remove !NEW_INSETS cruft
11590
11591         * figureForm.C: remove  !NEW_INSETS cruft
11592
11593         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
11594
11595         * buffer.[Ch]: remove !NEW_INSETS cruft
11596
11597         * ToolbarDefaults.C: remove !NEW_INSETS cruft
11598
11599         * CutAndPaste.C: remove !NEW_INSETS cruft
11600
11601         * BufferView_pimpl.C: remove !NEW_INSETS cruft
11602
11603         * BufferView2.C: remove !NEW_INSETS cruft
11604
11605         * BufferView.h: remove !NEW_INSETS cruft
11606
11607 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11608
11609         * Lsstream.h: include LString.h before the sstream headers to
11610         fix problem with gcc 2.95.3 and lyxstring
11611
11612 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11613
11614         * lyx_main.C: add using directives when needed for C functions
11615         declared in std:: namespace.
11616
11617 2001-04-27  Juergen Vigna  <jug@sad.it>
11618
11619         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
11620         (SetHeightOfRow): comment out the update call should not be needed!
11621
11622 2001-04-13  Juergen Vigna  <jug@sad.it>
11623
11624         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
11625         (LyXTabular): tried to minimize operator= operations (and realized
11626         hopfully Lars wish).
11627
11628 2001-04-27  Juergen Vigna  <jug@sad.it>
11629
11630         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
11631
11632 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11633
11634         * lyxfunc.C (Dispatch): hack to make listof algorithm work
11635
11636         * buffer.C (readInset): hack to make listof algorithm work
11637
11638         * BufferView_pimpl.C: hack to make listof algorithm work
11639
11640 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11641
11642         * LyXAction.C: removed all !NEW_INSETS cruft
11643         (init): moved lfun_item in method
11644
11645         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
11646
11647 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
11648
11649         * BufferView2.C (theLockingInset): white space.
11650
11651 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11652
11653         * minibuffer.C: include <iostream>
11654
11655         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
11656
11657         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
11658
11659         * commandtags.h: add LFUN_TRANSPOSE_CHARS
11660
11661         * text.[Ch] (TransposeChars): new method
11662
11663 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11664
11665         * call message directly through LyXView instead of through LyXFunc
11666         * BufferView2.C: adjust
11667         * BufferView_pimpl.C: adjust
11668         * FontLoader.C: adjust
11669         * buffer.C: adjust
11670         * bufferview_funcs.C: adjust
11671         * converter.C: adjust
11672         * figureForm.C: adjust
11673         * importer.C: adjust
11674         * lyx_cb.C: adjust
11675         * lyx_gui_misc.C: adjust
11676         * lyxfunc.C: adjust
11677         * lyxvc.C: adjust
11678         * text2.C: adjust
11679         + more files in subdirs
11680
11681         * lyxparagraph.h (size): move up int file
11682         (GetLayout): ditto
11683
11684         * adjust all uses of Assert to lyx::Assert.
11685
11686         * BufferView2.C (ChangeCitationsIfUnique): adjust for
11687         lyxfunctional in namespace lyx
11688         * layout.C (hasLayout): ditto
11689         (GetLayout): ditto
11690         (GetLayout): ditto
11691         (delete_layout): ditto
11692         (NumberOfClass): ditto
11693         * converter.C (GetFormat): ditto
11694         (GetNumber): ditto
11695         (Add): ditto
11696         (Delete): ditto
11697         (SetViewer): ditto
11698         * bufferlist.C (getFileNames): ditto
11699         (emergencyWriteAll): ditto
11700         (exists): ditto
11701         (getBuffer): ditto
11702         * MenuBackend.C (hasSubmenu): ditto
11703         (hasMenu): ditto
11704         (getMenu): ditto
11705         * BufferView_pimpl.C (getInsetByCode): ditto
11706
11707 2001-04-18  Juergen Vigna  <jug@sad.it>
11708
11709         * vspace.C (asLatexString): fixed the 100% problem.
11710
11711 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11712
11713         * lyxfunc.C (Dispatch):
11714         * minibuffer.C:
11715         * minibuffer.h: add a few std:: qualifiers
11716
11717 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11718
11719         * minibuffer.[Ch]: reimplement so that commands is initiated and
11720         run from lyxfunc, simplified som handling, and made the completion
11721         and history code for complete. wip.
11722
11723         * lyxfunc.C (processKeySym): call message
11724         (miniDispatch): new temporary method
11725         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
11726         (LFUN_MESSAGE): implement
11727         (LFUN_MESSAGE_PUSH): implement
11728         (LFUN_MESSAGE_POP): implement
11729         (initMiniBuffer): the initial/defualt minibuffer message.
11730
11731         * lyxfont.[Ch]: inline some more getters
11732
11733         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
11734
11735         * lyx_gui_misc.[Ch] (WriteStatus): remove method
11736
11737         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
11738         (AutoSave): use LFUN_MESSAGE
11739         (Reconfigure): ditto
11740
11741         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
11742
11743         * figureForm.C: use LFUN_MESSAGE
11744
11745         * converter.C (runLaTeX): use LFUN_MESSAGE
11746
11747         * bufferview_funcs.C: use LFUN_MESSAGE
11748         (Melt): ditto
11749         (changeDepth): ditto
11750
11751         * bufferparams.h: use boost::
11752
11753         * bufferlist.h: inherit privately from noncopyable
11754
11755         * bufferlist.C (loadLyXFile): remove some commented code.
11756
11757         * buffer.C (runChktex): use LFUN_MESSAGE
11758
11759         * ShareContainer.h: inherit privately from noncopyable
11760
11761         * ParagraphParameters.[hC] (depth): inline it.
11762
11763         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
11764         methods.
11765         (message): new method
11766         (messagePush): ditto
11767         (messagePop): ditto
11768         (show): init minibuffer
11769         (showState): direct call
11770
11771         * LaTeX.[Ch]: inherit privately from noncopyable
11772         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
11773         instead of WriteStatus.
11774
11775         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
11776
11777         * BufferView_pimpl.C (buffer): don't init minibuffer
11778         (workAreaButtonPress): use LFUN_MESSAGE
11779         (workAreaButtonRelease): ditto
11780         (savePosition): ditto
11781         (restorePosition): ditto
11782         (MenuInsertLyXFile): ditto
11783         (workAreaExpose): don't init minibuffer
11784         (update): remove commented code, simplify
11785
11786         * BufferView2.C (openStuff): use LFUN_MESSAGE
11787         (toggleFloat): ditto
11788         (menuUndo): ditto
11789         (menuRedo): ditto
11790         (copyEnvironment): ditto
11791         (pasteEnvironment): ditto
11792         (copy): ditto
11793         (cut): ditto
11794         (paste): ditto
11795         (gotoInset): ditto
11796         (updateInset): remove some commented code
11797
11798         * lastfiles.h: inherit privately from noncopyable
11799         * layout.h: ditto
11800         * lyx_gui.h: ditto
11801         * lyx_main.h: ditto
11802         * lyxlex.h: ditto
11803         * lyxlex_pimpl.h: ditto
11804
11805         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
11806         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
11807         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
11808
11809         * LyXAction.h: inherit privately from noncopyable, add methods
11810         func_begin, func_end, returning iterators to the func map.
11811
11812         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
11813         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
11814         (func_begin): new method
11815         (func_end): new method
11816
11817         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
11818         and not)
11819         (copySelection): ditto
11820         (pasteSelection): ditto
11821
11822         * BufferView.C: whitespace change
11823         * BufferView.h: inherit privately from noncopyable
11824
11825 2001-04-16  Allan Rae  <rae@lyx.org>
11826
11827         * tabular-old.C (l_getline):
11828         * spellchecker.C (sc_check_word):
11829         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
11830         an unrecognised preprocessor directive.  So ensure they're wrapped.
11831
11832 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
11833
11834         * src/exporter.C (Export): Give an error message when path to file
11835         contains spaces.
11836
11837 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
11838
11839         * LaTeX.C (deplog): Always check that foundfile exists.
11840
11841 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11842
11843         * lyx_main.h:
11844         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
11845
11846 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11847
11848         * tabular.[Ch] (getLabelList): implement new method
11849
11850         * minibuffer.h: comment ouf setTiimer
11851
11852         * minibuffer.C (ExecutingCB): constify res
11853         (peek_event): constify s
11854         (Set): constify ntext
11855         (Init): constify nicename
11856
11857         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
11858
11859         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
11860         (savePosition): use two params to Minibuffer::Set
11861         (restorePosition): ditto
11862
11863 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11864
11865         * lyx_main.C: include language.h
11866
11867         * Makefile.am (lyx_main.o): add language.h
11868
11869 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11870
11871         * exporter.C:
11872         * paragraph.C:
11873         * screen.C:
11874         * tabular.C:
11875         * CutAndPaste.C: include gettext.h
11876
11877         * lyxfont.h: remove old hack with ON and OFF.
11878
11879         * lyxparagraph.h:
11880         * lyxfont.h: do not include language.h...
11881
11882         * BufferView2.C:
11883         * LaTeXFeatures.C:
11884         * Painter.C:
11885         * bufferview_funcs.C:
11886         * font.C:
11887         * lyxfont.C:
11888         * text.C:
11889         * text2.C:
11890         * trans_mgr.C:
11891         * paragraph.C: ... but do it here instead
11892
11893 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11894
11895         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
11896
11897         * tabular.C: small reformat
11898
11899         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
11900         NEW_INSETS version
11901         (GetChar): ditto
11902         (BreakParagraph): ditto
11903         (SetOnlyLayout): ditto
11904         (SetLayout): ditto
11905
11906         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
11907         with one arg less.
11908
11909         * lastfiles.C: removed most using decl, add std:: where needed
11910
11911         * buffer.C: ws changes
11912
11913         * MenuBackend.C (class compare_format): put into anon namespace
11914         (expand): constify label, names, action, action2
11915         (expand):
11916
11917         * text.C (SingleWidth): constify font
11918         (IsBoundary): constify rtl2
11919         (GetVisibleRow): constify ww
11920
11921         * LaTeX.C (deplog): constify logfile
11922
11923         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
11924         start_x, end_x
11925         (workAreaExpose): constify widthChange, heightChange
11926
11927         * lyxrow.C (par): moved
11928         (height): moved
11929         (next): moved
11930         * lyxrow.h: as inlines here
11931
11932         * lyxfont.h (shape): moved from lyxfont.C
11933         (emph): moved from lyxfont.C
11934
11935         * lyxfont.C (LyXFont): use initialization list for all
11936         constructors
11937         (shape): move to lyxfont.h as inline
11938         (emph): move to lyxfont.h as inline
11939
11940
11941 2001-04-04  Juergen Vigna  <jug@sad.it>
11942
11943         * vspace.C: had to include stdio.h for use of sscanf
11944
11945 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
11946
11947         * BufferView.h:
11948         * BufferView_pimpl.h: remove xforms cruft. Both classes are
11949         independent of xforms.
11950
11951 2001-04-02  Juergen Vigna  <jug@sad.it>
11952
11953         * spellchecker.C: fixed namespace placing!
11954
11955 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
11956
11957         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
11958         the LyXParagraph * is 0.
11959
11960 2001-03-29  Juergen Vigna  <jug@sad.it>
11961
11962         * vspace.C: added support for %, c%, p%, l%.
11963         (stringFromUnit): added helper function.
11964         (asLatexString): changed to give right results for the %-values.
11965
11966         * buffer.C: convert the widthp in a width%.
11967
11968 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
11969
11970         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
11971         figureForm.[Ch].
11972
11973         * figureForm.[Ch]: stripped the FD_from_figure manipulation
11974         code out of lux_cb.[Ch], ready for its (imminent?) removal.
11975
11976         * lyx_cb.[Ch]: see above.
11977
11978         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
11979         form1.[Ch].
11980
11981         * form1.[Ch]:
11982         * lyx.[Ch]: replaced by figure_form.[Ch].
11983
11984         * lyx_gui.C:
11985         * lyx_gui_misc.C:
11986         * lyxfunc.C: changed headers associated with above changes.
11987
11988 2001-03-27  Juergen Vigna  <jug@sad.it>
11989
11990         * BufferView_pimpl.C: set the temporary cursor right!
11991
11992 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
11993
11994         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
11995
11996 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
11997
11998         * LString.h: removed "using std::getline"!
11999
12000         * BufferView_pimpl.C (Dispatch): changes due to changes in
12001         InsetInclude::Params.
12002
12003         * buffer.C (tag_name): removed redundant break statements as they were
12004         producing lots of warnings with my compiler.
12005
12006 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12007
12008         * LString.h: add "using std::getline" when using the real <string>.
12009
12010 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
12011
12012         * buffer.C: removed bitset usage.
12013         PAR_TAG moved to an anonymous name space.
12014         (tag_name): new funtion, also in the anonymous namespace.
12015         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
12016         (makeDocBookFile): clean code. Completed transition from string arrays
12017         to string vectors.
12018         (SimpleDocBookOnePar): code clean.
12019
12020 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12021
12022         * tabular.C: add some comments.
12023
12024 2001-03-22  Juergen Vigna  <jug@sad.it>
12025
12026         * buffer.C (parseSingleLyXformat2Token): redone the minipage
12027         compatibility read a bit and fixed bug with minipage in different
12028         depth.
12029
12030 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
12031
12032         * buffer.C (pop_tag): removed.
12033         (push_tag): removed.
12034         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
12035         array replaced with vector. Added support for CDATA sections.
12036         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
12037         at any nest level.
12038         (makeDocBookFile): XML conformant declaration of CDATA section,
12039         fixed bug related to <emphasis> in the first paragraph char.
12040         (sgmlOpenTag): exclude empty tags.
12041         (sgmlCloseTag): ditto.
12042
12043         * buffer.h (pop_tag): removed.
12044         (push_tag): removed.
12045
12046 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
12047
12048         * language.h (Languages): added size_type and size().
12049
12050 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12051
12052         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
12053         response on compability reading of minipages. One probliem is that
12054         the old usage of minipages was «flertydig»
12055
12056         * several files here and in subdirs: don't use static at file
12057         scope use anon namespaces instead.
12058
12059 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
12060
12061         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
12062         LaTeX output. This is necessary for Literate document
12063         processing.
12064
12065 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12066
12067         * buffer.C: insert hfill when needed.
12068
12069         * tabular.C (l_getline): use string::erase, small whitespace change.
12070
12071         * BufferView_pimpl.C: try the anon namespace.
12072         * WorkArea.C: ditto
12073
12074 2001-03-16  Juergen Vigna  <jug@sad.it>
12075
12076         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
12077         otherwise it won't open options-dialogs.
12078
12079         * buffer.C: honor pextraWidth(p) on converting minipages.
12080
12081         * tabular.C (l_getline): changed the functions to strip trailing \r.
12082
12083 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
12084
12085         * BufferView_pimpl.C:
12086         * minibuffer..C: added "using SigC::slot" declaration.
12087
12088 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12089
12090         * lyxlex_pimpl.h: noncopyable is in namespace boost.
12091
12092         * text2.C: ditto
12093
12094         * text.C: ditto
12095
12096         * paragraph.C: ditto
12097
12098         * lyxtext.h: NO_PEXTRA
12099
12100         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
12101
12102         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
12103         * ParameterStruct.h: ditto
12104         * ParagraphParameters.h: ditto
12105         * lyxparagraph.h: ditto
12106
12107 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12108
12109         * buffer.C: add compability for minipage alignment.
12110         (latexParagraphs): remove unwanted pextra check.
12111
12112         * several files: remove CXX_WORKING_NAMESPACES
12113
12114         * buffer.C (pop_tag): tie is in namespace boost
12115
12116         * BufferView.h: noncopyable is in namespace boost
12117         * lyxlex.h: ditto
12118         * lyx_main.h: ditto
12119         * lyx_gui.h: ditto
12120         * layout.h: ditto
12121         * lastfiles.h: ditto
12122         * bufferlist.h: ditto
12123         * ShareContainer.h: ditto
12124         * LyXView.h: ditto
12125         * LyXAction.h: ditto
12126         * LaTeX.h: ditto
12127
12128 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
12129
12130         * Merging changes from BRANCH_MVC back into HEAD.
12131
12132         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
12133
12134 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
12135
12136         * BufferView_pimpl.C: change from intl.C
12137
12138         * combox.h:
12139         * combox.C:
12140         * Makefile.am: move combox.*
12141
12142         * form1.h:
12143         * form1.C:
12144         * lyx_gui.C:
12145         * intl.h:
12146         * intl.C: remove dialog (covered by prefs)
12147
12148 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
12149
12150         * lyxfunc.C (Dispatch): removed redundant break statement.
12151
12152 2001-03-14  Juergen Vigna  <jug@sad.it>
12153
12154         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
12155
12156 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12157
12158         * buffer.C: add hack to fix compability reading of minipages.
12159
12160 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
12161
12162         * buffer.C (getLists): Cleanup.
12163
12164 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12165
12166         * lyxfont.C (update): don't honor toggleall on font size.
12167
12168 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
12169
12170         * bmtable.c:
12171         * bmtable.h:
12172         * Makefile.am: moved to frontends/xforms/
12173
12174         * lyx_gui_misc.C:
12175         * lyxfunc.C:
12176         * BufferView_pimpl.C: changes for moved mathpanel
12177
12178 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
12179
12180         * gettext.h: fix gettext_init() in --disable-nls
12181
12182 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12183
12184         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
12185
12186 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
12187
12188         * lyx.C:
12189         * lyx.h: strip external form
12190
12191 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
12192
12193         * BufferView_pimpl.C: add comment, destroySplash()
12194
12195 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
12196
12197         * BufferView_pimpl.C:
12198         * LyXAction.C:
12199         * buffer.C:
12200         * commandtags.h:
12201         * lyxfunc.C: use re-worked insetinclude
12202
12203 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12204
12205         * buffer.C: add using std::stringstream.
12206
12207         * lyx_cb.C: readd using std::ios.
12208
12209         * buffer.C: add using std::map.
12210
12211         * BufferView_pimpl.C: add using std::vector.
12212
12213         * ShareContainer.h: add std:: to swap.
12214
12215         * buffer.h: add some typedefs
12216         * buffer.C (getLists): use them
12217         (getLists): renamed from getTocList.
12218         add a counter for the different float types and use it in the
12219         generated string.
12220         (getLists): use the same counter for the NEW_INSETS and the "non"
12221         NEW_INSETS
12222
12223         * lyx_cb.h: remove unused items, includes, using etc.
12224
12225         * ShareContainer.h: remove some commented code, add more comments
12226         and "documentation".
12227
12228 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12229
12230         * buffer.C (getTocList): make the list also when NEW_INSETS is
12231         defined.
12232
12233         * buffer.h: remove TocType
12234
12235         * buffer.C (getTocList): change to return a map<string,
12236         vector<TocItem> >, implement for dynamic number of list.
12237
12238         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
12239         * text2.C (PasteSelection): adjust
12240         * CutAndPaste.C (pasteSelection): adjust
12241
12242         * FloatList.C (FloatList): update from the new_insets branch.
12243         * Floating.[Ch]: ditto
12244         * LaTeXFeatures.C: ditto
12245         * buffer.C: ditto
12246         * lyxlex_pimpl.C: ditto
12247
12248         * paragraph.C (Last): remove when NEW_INSETS is defined.
12249
12250         * other file: changes because of the above.
12251
12252 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12253
12254         * lyxparagraph.h: rename next to next_, previous to previous_,
12255         make them private for NEW_INSETS. Rename Next() to next(),
12256         Previous() to previous().
12257
12258         * other files: changes because of the above.
12259
12260 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
12261
12262         * BufferView.h:
12263         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
12264         problem.
12265
12266 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12267
12268         * main.C (main): pass lyx_localedir to gettext_init().
12269
12270         * gettext.h: remove locale_init and gettext_init macros
12271
12272         * gettext.C (locale_init): new function
12273         (gettext_init): new function
12274
12275         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
12276         setlocale().
12277
12278 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
12279
12280         * Moved credits to frontends:
12281         * credits.[Ch]: removed
12282         * credits_form.[Ch]: removed
12283         * lyx_gui_misc.C: remove credits stuff
12284         * Makefile.am:
12285
12286 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12287
12288         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
12289
12290         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
12291         unneeded destructor.
12292
12293         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
12294         a standalone pointer again.
12295
12296         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
12297
12298 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
12299
12300         * Makefile.am:
12301         * filedlg.h:
12302         * filedlg.C:
12303         * LyXAction.C:
12304         * ToolbarDefaults.C:
12305         * bufferlist.C:
12306         * commandtags.h:
12307         * form1.C:
12308         * form1.h:
12309         * lyx_cb.C:
12310         * lyx_cb.h:
12311         * lyxfunc.h:
12312         * lyxfunc.C:
12313         * BufferView_pimpl.C: use new file dialog in GUII
12314
12315         * lyx_cb.h:
12316         * lyx_cb.C: remove LayoutsCB to Toolbar
12317
12318 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12319
12320         * ShareContainer.h (get): add std:: qualifier
12321
12322 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12323
12324         * ShareContainer.h: define a proper ShareContainer::value_type
12325         type (and use typename to please compaq cxx)
12326
12327 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12328
12329         * lyxparagraph.h: move serveral local vars to
12330         ParameterStruct/ParagraphParameters., use ShareContainer in
12331         FontTable., make vars in FontTable private and add getter and
12332         setter.
12333
12334         * paragraph.C: changes because of the above.
12335
12336         * lyxfont.h: remove copy constructor and copy assignment. (the
12337         default ones is ok), move number inside FontBits. move inlines to
12338         lyxfont.C
12339
12340         * lyxfont.C: add number to initializaton of statics, move several
12341         inlines here. constify several local vars. some whitespace
12342         cleanup. Dont hide outerscope variables.
12343
12344         * Spacing.h: add two new constructors to match the set methods.
12345
12346         * ShareContainer.h: new file, will perhaps be moved to support
12347
12348         * ParameterStruct.h: new file
12349
12350         * ParagraphParameters.h: new file
12351
12352         * ParagraphParameters.C: new file
12353
12354         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
12355         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
12356
12357         * BufferView_pimpl.C: ParagraphParameter changes.
12358         * buffer.C: Likewise.
12359         * bufferview_funcs.C: Likewise.
12360         * text.C: Likewise.
12361         * text2.C: Likewise.
12362
12363 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12364
12365         * lyxfind.C (LyXReplace): do not redefine default argument in
12366         implementation.
12367         (IsStringInText): ditto
12368         (SearchForward): ditto
12369         (SearchBackward): ditto
12370
12371 2001-03-06  Juergen Vigna  <jug@sad.it>
12372
12373         * lyxfind.C (IsStringInText): put parentes around expressions.
12374
12375 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
12376
12377         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
12378
12379 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
12380
12381         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
12382
12383         * stl_string_fwd.h: add comment
12384
12385         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
12386
12387         * tabular.h:
12388         * tabular.C: remove unused DocBook methods
12389
12390         * intl.C:
12391         * language.C:
12392         * paragraph.C:
12393         * buffer.C:
12394         killed DO_USE_DEFAULT_LANGUAGE
12395
12396 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12397
12398         * lyx_gui.C: do not include language.h.
12399
12400         * bufferview_funcs.C (ToggleAndShow): do not provide optional
12401         arguments in function implementation.
12402
12403 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12404
12405         * BufferView_pimpl.C: add <ctime>
12406
12407 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12408
12409         * BufferView_pimpl.C: add using std::find_if
12410
12411 2001-02-27  José Matos  <jamatos@fep.up.pt>
12412
12413         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
12414         by OnlyPath.
12415
12416 2001-02-11  José Matos  <jamatos@fep.up.pt>
12417
12418         * buffer.C (makeDocBookFile): command styles now have a parameter as
12419         "title" by default.
12420
12421 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
12422
12423         * layout_forms.[Ch]: removed
12424         * lyx_cb.[Ch]: out character
12425         * lyx_gui.C: out character
12426         * lyx_gui_misc.C: out character
12427         * bufferview_funcs.C: : out character,
12428         added toggleall as parameter in ToggleAndShow
12429
12430 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
12431
12432         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
12433
12434         * text2.C (SetCurrentFont): Disable number property at boundary.
12435
12436 2001-02-26  Juergen Vigna  <jug@sad.it>
12437
12438         * lyxfunc.C (getStatus): added a string argument override function so
12439         that this is correctly called from LyXFunc::Dispatch if it contains a
12440         do_not_use_argument which is used!
12441         (Dispatch): added check for "custom" export and call appropriate func.
12442
12443 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
12444
12445         * lyxrc.C: Add language_command_local, language_use_babel and
12446         language_global_options.
12447
12448         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
12449
12450         * buffer.C (makeLaTeXFile): Use language_use_babel and
12451         language_global_options.
12452
12453 2001-02-23  Juergen Vigna  <jug@sad.it>
12454
12455         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
12456         which works with LyXText and putted it inside BufferView. Here now we
12457         only call for that part the BufferView::Dispatch() function.
12458
12459         * BufferView.C (Dispatch): added.
12460
12461         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
12462         functions which needs to use a LyXText over from LyXFunc.
12463         (MenuInsertLyXFile): added
12464         (getInsetByCode): added
12465         (moveCursorUpdate): added
12466         (static TEXT): added
12467
12468 2001-02-22  Juergen Vigna  <jug@sad.it>
12469
12470         * BufferView_pimpl.C (update): call a status update to see if LyXText
12471         needs it.
12472
12473 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12474
12475         * vc-backend.C (revert): implement for CVS
12476         (getLog): implement for CVS
12477
12478 2001-02-20  Juergen Vigna  <jug@sad.it>
12479
12480         * text2.C (ClearSelection): added BufferView param for inset_owner call
12481
12482         * lyxfunc.C (TEXT): added this function and use it instead of
12483         directly owner->view()-text of getLyXText().
12484
12485 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
12486
12487         * src/layout_forms.C: out preamble
12488         * src/layout_forms.h: out preamble
12489         * src/lyx_cb.C: out preamble
12490         * src/lyx_cb.h: out preamble
12491         * src/lyx_gui.C: out preamble
12492         * src/lyx_gui_misc.C: out preamble
12493         * src/lyxfunc.C: connect with guii preamble
12494
12495 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
12496
12497         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
12498
12499 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
12500
12501         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
12502         whether to run bibtex.
12503
12504 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
12505
12506         * Makefile.am (lyx_SOURCES): Remove BackStack.h
12507
12508 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
12509
12510         * Makefile.am (lyx_SOURCES): removed bibforms.h
12511
12512         * vspace.h: doxygen
12513
12514         * text.C (GetVisibleRow): make several local vars const
12515
12516         * tabular.C: small cleanup.
12517
12518         * lyxserver.C (callback): use compare instead of strncmp
12519
12520         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
12521         inlines to after class or to paragraph.C
12522
12523         * lyxfont.h: remove friend operator!=
12524
12525         * converter.h: move friend bool operator< to non friend and after
12526         class def.
12527
12528         * combox.h: small cleanup
12529
12530         * buffer.h: doxygen, remove unused constructor, move inclas inlies
12531         to inlines after class def.
12532
12533         * buffer.C (pop_tag): use string operations instead of strcmp
12534
12535         * bmtable.c: doxygen, small cleanup
12536
12537         * LaTeX.h: remove friend operator==
12538
12539 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
12540
12541         * screen.C:
12542         * lyxrc.[Ch]:
12543         * lyxfunc.C:
12544         * lyxfont.[Ch]:
12545         * lyx_cb.C:
12546         * intl.[Ch]:
12547         * commandtags.h:
12548         * buffer.C:
12549         * WorkArea.[Ch]:
12550         * LyXAction.C:
12551         * BufferView_pimpl.C:
12552         * BufferView.[Ch]: remove cruft
12553
12554 2001-02-14  Juergen Vigna  <jug@sad.it>
12555
12556         * lyxfunc.C: removed #if 0 unused code
12557
12558         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
12559
12560         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
12561
12562         * text2.C (SetSelection): added a BufferView * parameter
12563
12564 2001-02-13  Juergen Vigna  <jug@sad.it>
12565
12566         * lyxfunc.C (Dispatch): fixed protected blank problem.
12567         * BufferView2.C (protectedBlank): added LyxText * parameter.
12568
12569         * tabular.C (AppendRow): forgot to set row_info of newly added row.
12570         (AppendColumn): same as above for column_info.
12571
12572         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
12573         (moveCursorUpdate): use a LyXText param for support of InsetText.
12574
12575         * BufferView_pimpl.C (doubleClick): added support for InsetText.
12576         (tripleClick): ditto
12577
12578         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
12579
12580         * BufferView_pimpl.C (update): added LyXText param to honor insets.
12581
12582         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
12583
12584         * text2.C (SetSelection): set correct update status if inset_owner
12585         (ToggleFree): ditto
12586
12587 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
12588
12589         * tabular.C: remove some commented code.
12590
12591 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
12592
12593         * BufferView_pimpl.C: call hideSplash()
12594
12595         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
12596
12597         * include_form.h:
12598         * bibforms.h: remove
12599
12600         * lyxfunc.C:
12601         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
12602           add LFUN_CHILD_CREATE
12603
12604         * counters.h: fix tiny typo
12605
12606         * lyx_cb.C:
12607         * lyx.h:
12608         * lyx_gui.C:
12609         * lyx.C: move splash to frontends/xforms/
12610
12611         * lyx_gui_misc.C: move Include and Bibform to frontends
12612
12613         * lyxvc.h: clarify comment
12614
12615         * vspace.C: tiny housekeeping
12616
12617 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
12618
12619         * text.C (PrepareToPrint): RTL Fix.
12620
12621         * paragraph.C (GetUChar): New method.
12622         (String):  Use GetUChar.
12623
12624         * buffer.C (asciiParagraph): Use GetUChar.
12625
12626 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
12627
12628         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
12629
12630 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
12631
12632         * buffer.h:
12633         * buffer.C: rename to getLogName(), handle
12634           build log / latex log nicely
12635
12636 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12637
12638         * MenuBackend.C:
12639         * MenuBackend.h: remove support for reference menuitem type.
12640
12641 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
12642
12643         * BufferView_pimpl.C: housekeeping
12644         * BufferView_pimpl.h:
12645         * LyXView.h:
12646         * Makefile.am:
12647         * Timeout.C:
12648         * Timeout.h:
12649         * minibuffer.h: move Timeout GUI-I
12650
12651 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
12652
12653         * lyxrc.C (read): Update converters data-structures.
12654
12655 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
12656
12657         * LaTeX.h (operator!=): add operator != for Aux_Info
12658
12659 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
12660
12661         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
12662
12663         * LaTeXLog.C: deleted, useful code moved to Buffer
12664
12665         * buffer.h:
12666         * buffer.C: new function getLatexLogName()
12667
12668         * lyx_gui_misc.C:
12669         * lyx_gui.C:
12670         * lyxvc.C:
12671         * lyxvc.h:
12672         * lyxfunc.C: use frontends for LaTeX and VC logs
12673
12674 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12675
12676         * LaTeX.h: yet another std:: that Allan forgot.
12677
12678         * Variables.C (set): renamed from isset(), because this clashes
12679         with some HP-UX macros (grr).
12680
12681 2001-02-06  Allan Rae  <rae@lyx.org>
12682
12683         * LaTeX.h: Another bug fix.  Missing std:: this time.
12684
12685 2001-02-04  Allan Rae  <rae@lyx.org>
12686
12687         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
12688         floats problem. I've left it commented out because it's not quite
12689         correct.  It should also test that the current object is a table or
12690         figure inset.  But I haven't gotten around to figuring out how to do
12691         that.  I *think* it'll be something like: "table" == inset.type()
12692
12693         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
12694         bool.
12695
12696 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
12697
12698         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
12699         all the citation/databases/styles in the auxilary file.
12700         (run): Rerun latex if there was a babel language error.
12701
12702 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
12703
12704         * text.C (Backspace): Preserve the font when changing newline char
12705         with a space.
12706         (BreakParagraph): If the cursor is before a space, delete the space.
12707
12708         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
12709
12710 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
12711
12712         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
12713         new argument (code).
12714         (ChangeCitationsIfUnique): New method.
12715
12716         * paragraph.C (GetPositionOfInset): Handle bibkey.
12717
12718 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12719
12720         * BufferView_pimpl.h: change type of Position::par_pos to
12721         LyXParagraph::size_type.
12722
12723 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
12724
12725         * BufferView_pimpl.C (savePosition, restorePosition): Write
12726         messages to minibuffer.
12727
12728 2001-01-28  José Matos  <jamatos@fep.up.pt>
12729
12730         * buffer.C (makeDocBookFile): adds support for document language.
12731         A silly restriction on the name of LatexCommand types where removed.
12732         Added support for CDATA sections, allows to chars unescaped, used
12733         among others in code, to avoid escape < and >.
12734
12735 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
12736
12737         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
12738         saved positions instrad of a stack. Furthermore, a position is
12739         stored using paragraph id/paragraph position.
12740
12741         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
12742         Remove LFUN_REF_BACK.
12743
12744 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
12745
12746         * converter.C (dvipdfm_options): New method.
12747
12748 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
12749
12750         * vspace.C (isValidLength): Fix for empty input string.
12751
12752 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12753
12754         * LyXAction.C (init): change description of LFUN_FIGURE to
12755         "Insert Graphics"
12756
12757 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12758
12759         * LaTeX.C: add using directive
12760
12761 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
12762
12763         * MenuBackend.C (expand): Fix the sorting of the formats.
12764
12765 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
12766
12767         * lyx_main.C: tiny error message fix
12768
12769 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12770
12771         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
12772         calling fl_initialize(). This fixes the problem with ',' as
12773         decimal separator in text files.
12774
12775 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
12776
12777         * trans.C (process): Fix the keymap bug.
12778
12779 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
12780
12781         * LaTeX.C (scanAuxFiles): New method. Provides support for
12782         multiple bibliographies (when using the bibtopic/bibunits pacakges).
12783         (scanLogFile) Scan for "run BibTeX" messages.
12784
12785         * buffer.C (makeLaTeXFile): Do not load the ae package when using
12786         OT1 font encoding. Also, load the aecompl package if the ae
12787         package is loaded.
12788
12789         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
12790
12791 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12792
12793         * texrow.C (increasePos): turn two error messages into debug
12794         messages.
12795
12796 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
12797
12798         * LaTeX.C (scanAux): Handle the \@input macro.
12799         (runBibTeX): Use scanAux().
12800
12801         * language.C (latex_options_): New field.
12802
12803         * LaTeXFeatures.C (getMacros): Add language macros.
12804
12805         * buffer.C (makeLaTeXFile): Small fix.
12806
12807 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12808
12809         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
12810
12811         * text2.C: add a using directive.
12812
12813 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
12814
12815         * BufferView2.C:
12816         * lyx_gui_misc.h:
12817         * lyxfr1.C:
12818         * lyxfunc.C: kill LyXBell.
12819
12820 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
12821
12822         * text.C (IsBoundary): Remove the error message
12823
12824         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
12825
12826         * lyxrc.C (setDefaults): Correct initialization value for
12827         font_norm_type.
12828
12829 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
12830
12831         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
12832         gotoError().
12833
12834         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
12835         and GotoNextNote().
12836
12837         * src/LyXAction.C: Added reference-next.
12838
12839         * text.C (InsertChar): Use contains instead of strchr.
12840
12841         * lyx_cb.C (MenuInsertLabel): Enable default value code.
12842
12843 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
12844
12845         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
12846         alignment commands (when needed).
12847
12848         * text.C (InsertChar): Add ':' to number separator chars.