]> git.lyx.org Git - lyx.git/blob - src/ChangeLog
lyxfont.h no longer #includes LColor.h.
[lyx.git] / src / ChangeLog
1 2003-09-16  Angus Leeming  <leeming@lyx.org>
2
3         * lyxfont.[Ch]: (setFamily, setSeries, setShape, setSize, setEmph, setUnderbar,
4         setNoun, setNumber, setColor, setLanguage): no longer return LyXFont &.
5         Store the FontBits::color variable as an int rather than as an LColor::color
6         so that we can move LColor.h out of the lyxfont.h header file.
7
8         * rowpainter.C (paintAppendixStart, paintPageBreak, paintLengthMarker):
9         LyXFont::setColor, decSize no longer return a LyXFont &, so cannot string
10         calls together.
11
12         * lyxrc.C: add #include "LColor.h".
13
14 2003-09-15  Angus Leeming  <leeming@lyx.org>
15
16         * bufferparams.[Ch]: store the pimpl_ as a copied_ptr, rather than as a cow_ptr.
17
18 2003-09-15  Angus Leeming  <leeming@lyx.org>
19
20         * LColor.h: add an EnumLColor wrapper for LColor::color.
21
22         * lyxfont.[Ch] (color, setColor, realColor):
23         * lyxtext.h, text.C (backgroundColor):
24         pass EnumLColor args to/from the functions, rather than LColor::color ones.
25
26         * lyxfont.h:
27         * lyxtext.h: forward declare EnumLColor.
28
29         * lyx_main.C: add #include "LColor.h".
30
31 2003-09-15  Angus Leeming  <leeming@lyx.org>
32
33         * .cvsignore: add lyx-gtk.
34
35 2003-09-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
36
37         * Chktex.C
38         * LaTeX.C
39         * LaTeXFeatures.C
40         * ParagraphParameters.C
41         * Spacing.C
42         * buffer.C
43         * bufferparams.C
44         * bufferview_funcs.C
45         * chset.C
46         * counters.C
47         * funcrequest.C
48         * lyxfont.C
49         * lyxgluelength.C
50         * lyxlength.C
51         * paragraph.C
52         * paragraph_funcs.C
53         * text3.C
54         * vc-backend.C: remove usage of STRCONV
55
56 2003-09-15  Angus Leeming  <leeming@lyx.org>
57
58         * rowpainter.C (paintLengthMarker, paintPageBreak, paintAppendixStart):
59         explicitly define the color passed to the painter.
60
61 2003-09-15  Angus Leeming  <leeming@lyx.org>
62
63         * bufferparams.C (BufferParams): reorder member initializers to avoid
64         compiler warning.
65
66 2003-09-15  Alfredo Braunstein  <abraunst@libero.it>
67
68         * CutAndPaste.C (pasteSelection): remove an outdated #warning
69         * text.C (updateRowPositions): remove an unusual nop
70
71 2003-09-12  André Pönitz  <poenitz@gmx.net>
72
73         * BufferView_pimpl.C:
74         * Bullet.C:
75         * layout.h:
76         * lyxfunc.C:
77         * lyxlayout.[Ch]:
78         * lyxtextclass.C:
79         * rowpainter.C:
80         * text.C:
81         * text2.C:
82         * Counters.[Ch]: finish the 'automatic counters' job
83
84 2003-09-12  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
85
86         * aspell.C: include <boost/assert.cpp> (compile fix)
87
88 2003-09-10  Rob Lahaye  <lahaye@snu.ac.kr>
89
90         * boost.C (assertion_failed): use lyx::support::abort instead of
91         assert.
92
93 2003-09-10  Angus Leeming  <leeming@lyx.org>
94
95         * Makefile.am (lyx_SOURCES): replace ParagraphList.h and RowList.h with their
96         _fwd progeny.
97
98 2003-09-09  Angus Leeming  <leeming@lyx.org>
99
100         134 files throughtout the source tree: replace 'using namespace abc;'
101         directives with the appropriate 'using abc::xyz;' declarations.
102
103 2003-09-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
104
105         * boost.C (emergencyCleanup): moved here from LAssert.c
106         (assertion_failed): new function, called by BOOST_ASSERT
107
108         * several files: change Assert to BOOST_ASSERT
109
110 2003-09-09  Angus Leeming  <leeming@lyx.org>
111
112         * buffer.[Ch]: Add an Impl class and move Buffer's member
113         variables into it. As a result move several header files out of
114         buffer.h.
115
116         Add header files to lots of .C files all over the tree as a result.
117
118 2003-09-09  Angus Leeming  <leeming@lyx.org>
119
120         * buffer.[Ch]: make Buffer's member variables private. Add
121         accessor functions.
122
123         Lots of changes all over the tree as a result.
124
125 2003-09-08  Angus Leeming  <leeming@lyx.org>
126
127         * graph.C: #include <config.h>.
128
129 2003-09-08  Angus Leeming  <leeming@lyx.org>
130
131         * BranchList.C:
132         * BufferView.C:
133         * BufferView_pimpl.C:
134         * CutAndPaste.C:
135         * DepTable.C:
136         * LaTeX.C:
137         * LaTeXFeatures.C:
138         * LyXAction.C:
139         * MenuBackend.C:
140         * TextCache.C:
141         * aspell.C:
142         * buffer.C:
143         * bufferlist.C:
144         * changes.C:
145         * chset.C:
146         * converter.C:
147         * counters.C:
148         * debug.C:
149         * graph.C:
150         * ispell.C:
151         * lyx_cb.C:
152         * lyxfind.C:
153         * lyxfunc.C:
154         * lyxlex_pimpl.C:
155         * lyxrc.C:
156         * lyxrow.C:
157         * paragraph.C:
158         * rowpainter.C:
159         * texrow.C:
160         * text.C:
161         * text2.C:
162         * toc.C: remove redundant using directives.
163
164 2003-09-07  Angus Leeming  <leeming@lyx.org>
165
166         * LaTeXFeatures.h: remove #include "support/types.h".
167         * ToolbarBackend.h: remove #include <algorithm>.
168         * changes.h: remove #include <ctime>.
169         * debug.h: remove #include <iosfwd>.
170         * graph.h: remove #include "support/std_string.h".
171         * lyx_main.h: remove #include <csignal>.
172         * lyxlex_pimpl.h: remove #include <fstream>.
173         * sgml.h: remove #include <algorithm>, <utility>.
174         * toc.h: remove #include "support/std_ostream.h". Add #include <iosfwd>.
175
176 2003-09-07  Angus Leeming  <leeming@lyx.org>
177
178         * vspace.[Ch] (length): returns a const & to a LyXGlueLength.
179
180         * converter.h: forward declare LatexRunParams.
181         * encoding.h: remove #include "lyxrc.h".
182         * lyxtext.h: remove #include "LColor.h".
183         * lyxtextclass.h: remove #include "support/types.h".
184         * trans.h: remove #include "tex-accent.h".
185         * trans_mgr.h: remove #include "tex-accent.h".
186         * insets/inset.h: remove #include "support/types.h", <vector>.
187         * insets/insetcollapsable.h: remove #include "LColor.h".
188         * insets/insetinclude.h: remove #include "dimension.h".
189         * insets/insetlatexaccent.h: remove #include "dimension.h".
190         * insets/insetoptarg.h:: remove #include "insettext.h".
191         * insets/insettext.h: remove #include "dimension.h", <boost/shared_ptr.hpp>
192
193         * insets/renderers.h: add #include "dimension.h".
194         * insets/updatableinset.h: add #include "support/types.h".
195
196         * many .C files: Associated changes.
197
198 2003-09-06  Angus Leeming  <leeming@lyx.org>
199
200         * Bullet.[Ch]: factorize all those #ifdef ENABLE_ASSERTIONS to just one,
201         inside testInvariant.
202
203         * PrinterParams.C: new file.
204         * PrinterParams.[Ch]: move the function bodies out of line.
205
206 2003-09-06  Angus Leeming  <leeming@lyx.org>
207
208         * ParagraphParameters.h: forward declare ParameterStruct rather than
209         including its header file.
210         (depth): moved out-of-line.
211
212 2003-09-06  Angus Leeming  <leeming@lyx.org>
213
214         * BufferView_pimpl.h:
215         * kbmap.h:
216         * kbsequence.h:
217         * lyxfunc.h: forward declare LyXKeySym rather than
218         #include "frontends/LyXKeySym.h".
219
220         * BufferView_pimpl.C:
221         * kbmap.C:
222         * kbsequence.C:
223         * lyxfunc.C: associated changes.
224
225 2003-09-06  Angus Leeming  <leeming@lyx.org>
226
227         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
228         As a result, can remove the #include "insets/inset.h" from BufferView.h
229
230 2003-09-06  Angus Leeming  <leeming@lyx.org>
231
232         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
233         As a result, can remove the #include "insets/inset.h" from BufferView.h
234
235 2003-09-06  Angus Leeming  <leeming@lyx.org>
236
237         * buffer_funcs.C:
238         * buffer.h:
239         * bufferlist.C:
240         * BufferView.C:
241         * bufferview_funcs.C:
242         * BufferView_pimpl.C:
243         * CutAndPaste.C:
244         * lyx_cb.C:
245         * lyxfunc.C:
246         * paragraph.h:
247         * ParagraphParameters.C:
248         * tabular.C:
249         * text3.C:
250         * toc.C:
251         * undo_funcs.C:
252         * frontends/controllers/ControlDocument.C:
253         * insets/insetcaption.C: rearrange the #includes into some sort of
254         coherent order.
255
256         * buffer.h: remove #includes ErrorList.h, undo.h
257
258 2003-09-06  Angus Leeming  <leeming@lyx.org>
259
260         * support/types.h: add a 'depth_type' typedef, used to store the
261         nesting depth of a paragraph.
262
263         * paragraph.h:
264         * ParameterStruct.h: use this lyx::depth_type typedef rather than
265         defining explicitly.
266
267         * buffer.h:
268         * paragraph_funcs.h:
269         * ParagraphParameters.h:
270         * sgml.h: use lyx::depth_type rather than Paragraph or
271         ParameterStruct's depth_type.
272
273         * buffer.h
274         * paragraph_funcs.h: no need to #include paragraph.h anymore.
275
276         * BufferView.C:
277         * BufferView_pimpl.C:
278         * CutAndPaste.C:
279         * ParagraphParameters.C:
280         * buffer_funcs.C:
281         * bufferlist.C:
282         * bufferview_funcs.C:
283         * lyx_cb.C:
284         * lyxfunc.C:
285         * tabular.C:
286         * text3.C:
287         * toc.C:
288         * undo_funcs.C:
289         * frontends/LyXView.C:
290         * frontends/controllers/ControlDocument.C:
291         * frontends/controllers/ControlErrorList.C:
292         * insets/insetbibitem.C:
293         * insets/insetbranch.C:
294         * insets/insetcaption.C:
295         * insets/insetcollapsable.C:
296         * insets/insetenv.C:
297         * insets/insetert.C:
298         * insets/insetfloat.C:
299         * insets/insetfoot.C:
300         * insets/insetfootlike.C:
301         * insets/insetnewline.C:
302         * insets/insetquotes.C:
303         * insets/insettabular.C:
304         * insets/insettext.C:
305         * insets/insetwrap.C: must now explicitly #include "paragraph.h".
306
307         * frontends/controllers/ControlChanges.C: #include "changes.h".
308
309 2003-09-06  Angus Leeming  <leeming@lyx.org>
310
311         * ParagraphList_fwd.h: new file, forward-declaring Paragraph rather than
312         #including paragraph.h.
313
314         * ParagraphList.h:
315         * RowList.h: deleted. Superfluous.
316
317         * CutAndPaste.h:
318         * iterators.h:
319         * lyxcursor.h:
320         * lyxtext.h:
321         * text_funcs.h:
322         * undo.h:
323         * undo_funcs.h:
324         * insets/inset.h:
325         * insets/insettext.h: use ParagraphList_fwd.h rather than ParagraphList.h.
326
327         * paragraph.h: don't forward declare ParagraphList.
328
329         * buffer.h:
330         * paragraph_funcs.h: #include ParagraphList_fwd.h and paragraph.h
331         rather than ParagraphList.h. paragraph.h is still needed for the
332         Paragraph::depth_type parameters.
333
334         * textcursor.h: enable it to compile stand-alone in light of the
335         above changes.
336
337         * bufferview_funcs.C:
338         * iterators.C:
339         * lyxfunc.C:
340         * lyxrow_funcs.C:
341         * paragraph.C:
342         * rowpainter.C:
343         * text.C:
344         * text2.C:
345         * text3.C:
346         * text_funcs.C:
347         * textcursor.C:
348         * undo.C:
349         * frontends/controllers/ControlParagraph.C:
350         * frontends/controllers/ControlTabular.C:
351         * insets/insetmarginal.C:
352         * insets/insetminipage.C:
353         * insets/insetnote.C:
354         * insets/insetoptarg.C: add header files needed to compile again.
355
356 2003-09-06  Angus Leeming  <leeming@lyx.org>
357
358         * RowList_fwd.h: new file, forward-declaring Row rather than
359         #including lyxrow.h.
360
361         * lyxrow_funcs.h:
362         * lyxtext.h:
363         * paragraph.h:
364         * insets/insettext.h: use it instead of RowList.h
365
366         * bufferview_funcs.C:
367         * lyxfunc.C:
368         * lyxrow_funcs.C:
369         * paragraph.C:
370         * rowpainter.C:
371         * text.C:
372         * text2.C:
373         * text3.C: #include "RowList.h".
374
375 2003-09-05  Angus Leeming  <leeming@lyx.org>
376
377         * factory.C (createInset):
378         * vspace.C (c-tor): replace sscanf call with an istringstream.
379         * ispell.C: re-add missing HP/UX headers.
380         * lyxserver.C: re-add missing  os2 headers.
381
382 2003-09-05  Martin Vermeer  <martin.vermeer@hut.fi>
383
384         * BranchList.C:
385         * graph.C:
386         * ispell.C:
387         * lastfiles.C:
388         * lyx_cb.C:
389         * lyxserver.C:
390         * texrow.C:
391         * text3.C: re-add missing system headers, needed for 2.95.2.
392
393 2003-09-05  Angus Leeming  <leeming@lyx.org>
394
395         Changes most place everywhere due to the removal of using directives
396         from support/std_sstream.h.
397
398 2003-09-05  Angus Leeming  <leeming@lyx.org>
399
400         Replace LString.h with support/std_string.h,
401         Lsstream.h with support/std_sstream.h,
402         support/LIstream.h with support/std_istream.h,
403         support/LOstream.h with support/std_ostream.h.
404
405         Changes resulting throughout the tree.
406
407 2003-09-05  Angus Leeming  <leeming@lyx.org>
408
409         * sgml.h: ensure that the header file can be compiled stand-alone.
410         * *.C: strip out redundant #includes. (320 in total.)
411
412 2003-09-04  Angus Leeming  <leeming@lyx.org>
413
414         * LaTeXFeatures.C (getMacros): move the output of the preamble_snippets
415         here (from getPackages).
416
417         * debug.[Ch]: add a new EXTERNAL tag.
418
419 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
420
421         * text2.C (cursorEnd): simplify
422         (setCursor): adjust
423         (getColumnNearX): adjust
424
425         * text.C (computeBidiTables): adjust
426         (fill): adjust
427
428         * rowpainter.C (paintChars): adjust
429         (paintSelection): adjust
430         (paintChangeBar): adjust
431         (paintText): adjust
432
433         * lyxrow_funcs.C (lastPrintablePos): remove, all users now call
434         lastPos instead.
435         (numberOfSeparators): adjust
436
437 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
438
439         * LyXAction.C:
440         * box.[Ch]:
441         * lfuns.h:
442         * lyxfunc.C:
443         * text3.C: Restricts the mouse click functionality
444         of insets like bibtex, include, toc and floatlist to the visible
445         button, and allows the use of LFUN_INSET_SHOW_DIALOG to bring
446         up the dialogs. Cursor has to be in front of the inset (i.e.
447         start of row) for this to function.
448
449 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
450
451         * bufferview_funcs.C (currentState): output row information
452
453 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
454
455         * bufferview_funcs.C (currentState): output paragraph position
456
457 2003-09-04  Angus Leeming  <leeming@lyx.org>
458
459         * FloatList.h: move out #include "Floating.h".
460         * LaTeX.h: move out #include "DepTable.h".
461         * LyXAction.h: move out #include "funcrequest.h".
462         * buffer.h: move out #include "author.h", "iterators.h".
463         * bufferparams.h: move out #include "LaTeXFeatures.h", "texrow.h".
464         * lyx_main.h: move out #include "errorlist.h".
465         * lyxfunc.h: move out #include "FuncStatus.h".
466         * lyxtext: move out #include "lyxcursor.h".
467         * paragraph_pimpl.h: move out #include "counters.h".
468
469 2003-09-03  Angus Leeming  <leeming@lyx.org>
470
471         * LaTeXFeatures.[Ch]: replace the externalPreambles string with a
472         preamble_snippets list, enabling us to add snippets to the preamble only
473         if the snippet was not there already.
474
475 2003-09-04  Angus Leeming  <leeming@lyx.org>
476
477         * Chktex.C, converter.C, lyx_cb.C: add #include "support/lyxlib.h".
478
479 2003-09-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
480
481         * lyxfunc.C (dispatch): if fitCursor did something be sure to
482         update
483
484 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
485
486         * BranchList.C: point fix, earlier forgotten
487
488 2003-09-02  Angus Leeming  <leeming@lyx.org>
489
490         * box.C (contains): renamed from 'contained' after a fantastic
491         amount of hot air.
492
493 2003-09-02  John Levon  <levon@movementarian.org>
494
495         * BufferView.C:
496         * lyxcursor.h:
497         * lyxcursor.C:
498         * lyxfunc.C:
499         * lyxfunc.h: remove cursor.i[x]y(), it no longer differs
500
501 2003-09-02  John Levon  <levon@movementarian.org>
502
503         * text2.C: simplification of cursorEnd(), including partial
504         fix for bug 1376
505
506 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
507
508         * buffer.C (readFile): add a space
509
510 2003-09-02  Alfredo Braunstein  <abraunst@libero.it>
511
512         * BufferView_pimpl.C (update): remove bogus fitCursor() call
513
514 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
515
516         * buffer.C (readFile): new function, take a filename and a
517         ParagraphList::iterator
518         (readFile): adjust
519         (readFile): adjust, make it private. don't use setStream, make
520         lyx2lyx use a temporary file. Some simplificaton. Make the Alerts
521         always contain the filename.
522
523         * BufferView.C (insertLyXFile): simplify and make it work for
524         gzipped files.
525
526 2003-08-30  John Levon  <levon@movementarian.org>
527
528         * Makefile.am: fix dist (from Kayvan)
529
530 2003-08-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
531
532         * most files: change to use const Buffer refs
533
534 2003-08-27  André Pönitz  <poenitz@gmx.net>
535
536         * BufferView.[Ch]: remove getParentText, implement getParentLanguage
537         on top of ownerPar().
538
539 2003-08-27  John Levon  <levon@movementarian.org>
540
541         * funcrequest.C: properly initialise POD members
542
543 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
544
545         * lyxtext.h (top_y): move top_y from here
546         * text.C:
547         * text2.C:
548         * text3.C:
549         * BufferView.[Ch]:
550         * BufferView_pimpl.[Ch]: to here
551         * frontends/screen.C:
552         * insets/insettabular.C:
553         * insets/insettext.C: adjust
554         * rowpainter.[Ch] (paintRows): remove LyXText & argument
555
556 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
557
558         * BufferView.[Ch]:
559         * BufferView_pimpl.[Ch] (updateInset): add an InsetOld * argument
560
561 2003-08-26  André Pönitz  <poenitz@gmx.net>
562
563         * paragraph_func.[Ch] (outerPar): new function
564
565         * paragraph.C:
566         * paragraph_funcs.C:
567         * paragraph_funcs.h:
568         * paragraph_pimpl.C:
569         * text2.C: remove Inset::par_owner
570
571 2003-08-25  Martin Vermeer  <martin.vermeer@hut.fi>
572
573         * lyxrow_funcs.C:
574         * lyxtext.h:
575         * text.C:
576         * text2.C: eliminates the needFullRow/display() stuff
577         altogether, putting the logic in metrics/draw in the insets.
578
579 2003-08-25  Alfredo Braunstein  <abraunst@libero.it>
580
581         * text2.C (redoParagraphInternal, redoParagraphs):
582         * text.C (redoParagraph): add a call to updateRowPositions at the
583         end of each 'metrics-like' call. Remove all others.
584         (getRow): remove the 'y-computing' version.
585         (getRowNearY): do not compute nor return the real y. Solve the
586         'y < 0' problem and simplify.
587
588 2003-08-22  Angus Leeming  <leeming@lyx.org>
589
590         * *.[Ch]: clean-up of licence and author blurbs.
591         Also move config.h out of a few .h files and into a few .C files.
592
593 2003-08-22  André Pönitz  <poenitz@gmx.net>
594
595         * lyxrow.[Ch]: add x_ and *fill_ members
596
597         * lyxtext.h:
598         * text.C:
599         * rowpainter.C:
600         * text2.C: adjust/remove prepareToPrint() calls
601
602 2003-08-22  André Pönitz  <poenitz@gmx.net>
603
604         * lyxrow.[Ch]: add  end_ member
605
606         * lyxrow_funcs.C: use LyXRow::end_
607
608         * lyxtext.h (singleWidth): add LyXFont parameter
609
610         * rowpainter.C:
611         * text2.C: adjust LyXText::singleWidth() calls
612
613         * text.C (redoParagraph): simplify row breaking logic
614
615
616 2003-08-19  André Pönitz  <poenitz@gmx.net>
617
618         * funcrequest.C: initialize button_ member
619
620         * text3.C:
621         * rowpainter.[Ch]: interface consolidation
622
623 2003-08-18  André Pönitz  <poenitz@gmx.net>
624
625         * BufferView.C:
626         * BufferView_pimpl.C:
627         * lyxfind.C:
628         * paragraph_funcs.C:
629         * rowpainter.C:
630         * text3.C: remove LyXScreen::draw() and fitCursor calls
631
632         * BranchList.h: remove spurious semicolons
633
634         * MenuBackend.C: fix branchlist related crash
635
636 2003-08-17  Martin Vermeer  <martin.vermeer@hut.fi>
637
638         * BranchList.[Ch]:
639         * InsetList.[Ch]:
640         * LColor.[Ch]:
641         * LyXAction.C:
642         * Makefile.am:
643         * MenuBackend.[Ch]:
644         * bufferparams.[Ch]:
645         * factory.C:
646         * lfuns.h:
647         * lyxfunc.C:
648         * text3.C: implements the 'branch inset'
649         idea. This allows the output of various versions of a document
650         from a single source version, selectively outputing or suppressing
651         output of parts of the text.
652         This implementation contains a 'branch list editor' in a separate
653         tab of the document settings dialog. Branches are user definable
654         and have a "display colour" to distinguish them on-screen.
655
656         ColorHandler was somewhat cleaned up.
657         (1) make possible a dynamically growing LColor list by allowing
658         the graphic context cache to grow along (vector);
659         (2) eliminate an IMHO unnecessary step in colour allocation.
660
661 2003-08-15  Kayvan A. Sylvan <kayvan@sylvan.com>
662
663         * BufferView_pimpl.C: compile fix
664
665 2003-08-15  André Pönitz  <poenitz@gmx.net>
666
667         * rowpainter.C: remove extra metrics calls
668
669         * lyxtext.h: merge the two constructors into a single one,
670           pass reference to owner's par list
671
672         * BufferView_pimpl.C:
673         * text.C:
674         * text2.C: adjust
675
676 2003-08-15  André Pönitz  <poenitz@gmx.net>
677
678         * lyxrow_funcs.[Ch]:
679         * lyxtext.h:
680         * paragraph.h:
681         * paragraph_funcs.C:
682         * rowpainter.C:
683         * text.C:
684         * text2.C:
685         * text3.C:
686         * text_funcs.C: split LyXText::rowlist_ into individual
687         Paragraph::rows_ chunks
688
689         * BufferView.[Ch]:
690         * BufferView_pimpl.[Ch]:
691         * lyxfind.C:
692         * lyxtext.h:
693         * text3.C: remove toggleSelection()
694
695 2003-08-12  Michael Schmitt  <michael.schmitt@teststep.org>
696
697         * bufferlist.C: beautify two alerts (shorter text of buttons)
698         * buffer.C: Remove redundant ' ' from message
699         * tabular.h:
700         * tabular.C: rename LYX_VALIGN_CENTER" to LYX_VALIGN_MIDDLE";
701         rename M_VALIGN_CENTER to M_VALIGN_MIDDLE;
702         rename VALIGN_CENTER to VALIGN_MIDDLE
703
704 2003-08-11  André Pönitz  <poenitz@gmx.net>
705
706         * lyxtext.h (getPar):
707         * text.C: new function
708
709 2003-08-11  André Pönitz  <poenitz@gmx.net>
710
711         * Makefile.am:
712         * tracer.[Ch]: remove unneeded files
713
714         * InsetList.[Ch]: remove resizeInsetsLyXText()
715
716         * lyxtext.h:
717         * text.C:
718         * text2.C:
719         * text3.C: merge insertParagraphs() and appendParagraph()
720         remove breakAgain(), update()
721
722         * BufferView_pimpl.[Ch]:
723         * bufferview_funcs.[Ch]:
724         * lyxfunc.C:
725         * paragraph.[Ch]:
726         * rowpainter.C:
727         * tabular.C: adjust after text & InsetList changes.
728
729 2003-08-08  André Pönitz  <poenitz@gmx.net>
730
731         * text.C (insertChar, backspace): replace rowlist fiddling
732         with rebreak of full par
733
734         * lyxtext.h:
735         * text.C (breakAgainOneRow, redoHeightOfParagraph,
736         checkParagraph, updateInset): removed
737
738 2003-08-07  André Pönitz  <poenitz@gmx.net>
739
740         * paragraph.C:
741         * text3.C: merge some LFUN handlers, remove dead code
742
743 2003-08-06  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
744
745         * .cvsignore: add lyx-xforms, lyx-qt, version.C-tmp and stamp-version
746
747 2003-08-05  Alfredo Braunstein  <abraunst@libero.it>
748
749         * text2.C (DEPM): fix part of bug 1255 and 1256
750
751 2003-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
752
753         * BufferView_pimpl.C (workAreaDispatch): change to use
754         LyXView::dispatch instead of BufferView::Pimpl::dispatch for lfuns
755         that are no mouse related.
756
757 2003-08-05  André Pönitz  <poenitz@gmx.net>
758
759         * BufferView.[Ch]:
760         * BufferView_pimpl.[Ch]:
761         * bufferview_funcs.C:
762         * text2.C:
763         * text3.C: rip out "deep update"
764
765         * textcursor.[Ch] (last_sel_cursor): remove unused member
766
767 2003-08-04  André Pönitz  <poenitz@gmx.net>
768
769         * BufferView.[Ch]:
770         * BufferView_pimpl.[Ch]:
771         * ParagraphParameters.C:
772         * bufferview_funcs.C:
773         * lyx_cb.C:
774         * lyxfind.C:
775         * lyxfunc.C:
776         * text.C:
777         * text2.C:
778         * text3.C: replace "complicated" BufferView::update(...) calls with
779         simpler ones.
780
781         * BufferView.[Ch]: remove now unneeded BufferView::UpdateCodes
782
783 2003-08-02  Kayvan Sylvan  <kayvan@sylvan.com>
784
785         * Makefile.am (lyx_SOURCES): add paper.h
786
787 2003-08-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
788
789         * Makefile.am: move things around so that both lyx-qt and
790         lyx-xforms can be built (according to --with-frontend). Then lyx
791         is a symbolic link to lyx-[firstfrontend]
792
793 2003-08-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
794
795         * Always use std::endl with lyxerr
796
797 2003-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
798
799         * BufferView_pimpl.C: _Always_ use std::endl with lyxerr
800
801 2003-08-01  André Pönitz  <poenitz@gmx.net>
802
803         * BufferView.[Ch]:
804         * BufferView_pimpl.[Ch]:
805         * lyxfunc.C:
806         * text3.C: merge BufferView::repaint() and BufferView::update()
807
808 2003-08-01  José Matos  <jamatos@lyx.org>
809
810         * buffer.[Ch]: file_format is no longer a buffer data element.
811
812 2003-08-01  André Pönitz  <poenitz@gmx.net>
813
814         * BufferView.C:
815         * lyxtext.h:
816         * text.C:
817         * text2.C: make redoParagraph more independent of current cursor
818
819         * lyxtext.h (need_update, needUpdate, postPaint, clearPaint):
820         * text.C:
821         * text2.C: remove unneeded members
822
823 2003-07-30  André Pönitz  <poenitz@gmx.net>
824
825         * paragraph.[Ch] (copyIntoMinibuffer): removed unused function
826
827         * paragraph.[Ch] (cutIntoMinibuffer, insertFromMinibuffer):
828           create a single function...
829
830         * paragraph_funcs.C (moveItem): ... here.
831
832         * text.C:
833           lyxtext.h (LyXText::workWidth(InsetOld*)) remove. unused.
834
835 2003-07-30  Martin Vermeer  <martin.vermeer@hut.fi>
836
837         * LColor.[Ch]: Add comment and greyedout logical colors.
838
839 2003-07-30  André Pönitz  <poenitz@gmx.net>
840
841         * tabular.C: don't use Assert too heavily. This crashes where it
842           shouldn't
843
844 2003-07-30  Alfredo Braunstein  <abraunst@libero.it>
845
846         * lyxfunc.C (dispatch): do not mark the buffer dirty if the action
847         is disabled (bug 1232)
848
849 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
850
851         * factory.C: limited 'arg' scope
852
853 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
854
855         * factory.C: fixed Note submenu issues
856
857 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
858
859         * factory.C: submenu for Note/Comment/Greyedout
860
861 2003-07-29  Alfredo Braunstein  <abraunst@libero.it>
862
863         * lyx_main.C (LyX):
864         * BufferView_pimpl.C (loadLyXFile): fix to bugs 1287 and 1297 + ws
865
866 2003-07-29  Martin Vermeer  <martin.vermeer@hut.fi>
867
868         * LaTeXFeatures.C:
869         * lyx_sty.[Ch]:h: Implement a newenvironment in preamble for
870         greyedout. Patch provided by Jürgen Spitzmüller.
871
872 2003-07-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
873
874         * kbmap.C (read): fix error message when reading bind files
875
876 2003-07-29  Angus Leeming  <leeming@lyx.org>
877
878         * BufferView.[Ch] (ChangeCitationsIfUnique): This function most
879         certainly does not do what it purports to do. I am doing it, and
880         us, a favour by killing it.
881
882 2003-07-28  José Matos  <jamatos@lyx.org>
883
884         * buffer.C (readBody, do_writeFile):
885         * paragraph.C(readParagraph): \end_document replaces \the_end.
886
887 2003-07-29  André Pönitz  <poenitz@gmx.net>
888
889         * BufferView.[Ch]:
890         * BufferView_pimpl.[Ch]:
891         * lyxfunc.C:
892         * text2.C:
893         * text3.C:
894         * textcursor.[Ch]: remove toggleToggle & Co
895
896 2003-07-28  José Matos  <jamatos@fep.up.pt>
897
898         * buffer.C (readParagraph):
899         * params_func (readParToken, readParagraph):
900         * paragraph.C (write): \layout -> \begin_layout.
901
902 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
903
904         * lyxlex_pimpl.C (setFile): clean up slightly.
905
906         * bufferparams.h: add compressed var
907
908         * buffer_funcs.C (readFile): adjust for LyXLex change
909         (newFile): ditto + simplify
910
911         * buffer.C (writeFile): handle writing of compressed files
912
913         * buffer.[Ch] (readFile): begin LyXLex here, remove one argument.
914         Check if the file is compressed and set a bufferparm if so.
915
916         * Makefile.am (lyx_LDADD): remove explicit -lz
917
918 2003-07-28  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
919
920         * buffer.C (do_writeFile, makeLaTeXFile, makeLinuxDocFile,
921         makeDocBookFile): put the real LyX version in the first line of
922         the file
923
924         * version.h:
925         * version.C.in: remove lyx_docversion
926
927         * tabular.C (write_attribute): add a template-based version to
928         write enums properly
929
930 2003-07-28  André Pönitz  <poenitz@gmx.net>
931
932         * lyxtext.h:
933         * text.C:
934         * text2.C:
935         * text3.C: use doubles again for x-coordinates. They are needed.
936
937 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
938
939         * messages.C (getLocaleDir): use lyx_localedir()
940
941         * lyxlex_pimpl.C (setFile): compress stuff
942
943         * buffer.C (writeFile): add some compression stuff
944         (do_writeFile): new func, dont call expliti close... will this
945         breake anything?
946
947         * Makefile.am (lyx_LDADD): add -lz
948
949 2003-07-28  José Matos  <jamatos@fep.up.pt>
950
951         * buffer.C: increment file format.
952         * paragraph_funcs (readParagraph, readParToken):
953         * paragraph.C (readParagraph): add \end_layout.
954
955 2003-07-27  Angus Leeming  <leeming@lyx.org>
956
957         * Makefile.am: remove special casing for configure-time setting of
958         LYX_DIR, TOP_SRCDIR and LOCALEDIR.
959
960         * lyx_main.C (init): remove all Jean-Marc's magic setting of
961         system_lyxdir, build_lyxdir and user_lyxdir into the support lib.
962
963 2003-07-26  André Pönitz  <poenitz@gmx.net>
964
965         * paragraph_func.[Ch]:
966         * paragraph.C (realizeFont): inline it whereever it is used
967
968         * rowpainter.C:
969         * text.C:
970         * text2.C:
971         * text3.C: remove Buffer * parameter from a bunch of get*Font functions
972
973
974 2003-07-26  André Pönitz  <poenitz@gmx.net>
975
976         *       lyxtext.h:
977         * text.C:
978         * text2.C: get rid of LyXText::need_break_row
979
980 2003-07-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
981
982         * toc.[Ch]: put namespace toc inside namespace lyx
983
984         * MenuBackend.C (expandToc2): adjust for lyx::toc
985         (expandToc): ditto
986
987         * lyxfunc.C (dispatch): adjust for lyx::find
988
989         * lyxfind.[hC]: get rid of namespace lyxfind introduce namespace
990         lyx::find instead. Reorganize a bit.
991         (LyXReplace): rename to replace
992         (LyXFind): rename to find
993
994         * BufferView_pimpl.C (trackChanges): adjust for lyx::find
995         (dispatch): ditto
996
997 2003-07-26  André Pönitz  <poenitz@gmx.net>
998
999         * text.C (setHeightOfRow): restrict scope of temporary variable
1000
1001         * paragraph_funcs.C (readParToken): remove USE_CAPTION  compatibility
1002           code (never has been used?)
1003
1004 2003-07-27  Asger Alstrup  <alstrup@local>
1005
1006         * text.C (fill): Optimise algorithm to exploit that we can reuse
1007         the LyXFont for many characters.
1008         (setHeightOfRow): Same thing.
1009         (rowBreakPoint): Same thing.
1010
1011 2003-07-26  Asger Alstrup  <alstrup@local>
1012
1013         * text2.C (metrics): change a brain-dead algorithm to a smarter one.
1014
1015         * text.C (singleWidth): Spurious font copying in hot-spot
1016         singleWidth avoided. Reorder tests for arabic for efficiency.
1017
1018         * text.C (fill): handle empty paragraphs better.
1019
1020 2003-07-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1021
1022         * ispell.C:
1023         * encoding.h: add includes
1024
1025         * lyxrc.C: remove reading of bind files
1026
1027         * lyx_main.C (init): setup bindings and menus only if we have a
1028         gui.
1029
1030         * kbmap.C (read): new method. Do the actual reading of bind
1031         files.
1032
1033         * converter.C (dvipdfm_options):
1034         * bufferparams.C:
1035         * lyxrc.C (read):
1036         (output): adapt PAPER_* enums.
1037
1038         * lyxrc.h: include paper.h instead of bufferparams.h (mucho lighter)
1039
1040         * bufferparams.h: remove paper-related enums from there
1041
1042         * paper.h: New file. A trivial header file to hold paper-related
1043         enums. It should later expand to contain many paper-related
1044         horrors access.
1045
1046         * lyxrc.C: declare extern displayTranslator
1047
1048 2003-07-27  José Matos  <jamatos@fep.up.pt>
1049
1050         * tabular.[Ch] (linuxdoc): add support for tables and figures
1051         (linuxdoc).
1052
1053 2003-07-27  José Matos  <jamatos@fep.up.pt>
1054
1055         * buffer.[Ch] (makeLaTeXFile): changed name of arguments for
1056         consistency in both functions.
1057         * bufferlist.C (updateIncludedTeXfiles): change client to comply.
1058
1059 2003-07-26  Asger Alstrup  <alstrup@local>
1060
1061         * rowpainter.C (paintRows): Change algorithm to work directly on
1062         the insets rather than asking every character in the document
1063         whether its an inset.
1064
1065 2003-07.26  Alfredo Braunstein  <abraunst@libero.it>
1066
1067         * buffer.C (openFileWrite): factorize some code
1068
1069 2003-07-26  Angus Leeming  <leeming@lyx.org>
1070
1071         * lyx_cb.C:
1072         * lyx_main.[Ch]: replace occurances of system_tempdir with
1073         os::getTmpDir().
1074
1075 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
1076
1077         * rename Inset to InsetOld
1078
1079 2003-07-25  Asger Alstrup  <alstrup@diku.dk>
1080
1081         * undo_funcs.h: Removed setCursorParUndo to simplify things a bit.
1082         Renamed setUndo family to recordUndo. Renamed FINISH to ATOMIC
1083         which I think is a bit clearer. EDIT is gone, since it was
1084         premature optimisation, and broken for mathed anyway.
1085         * undo_funcs.C (performUndoOrRedo): Cleaned up and made it work
1086         with cursor positioning in insets as well (math insets still do not
1087         work, but that's a different story anyway.) It mysteriously
1088         crashes sometimes with undo in the first paragraph, but I'm fairly
1089         confident that this is a compiler bug.
1090
1091 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
1092
1093         * paragraph.C (Paragraph): adjust for new clone return type
1094         (operator==): ditto
1095         (copyIntoMinibuffer): ditto
1096
1097 2003-07-25  Asger Alstrup  <alstrup@lyx.org>
1098
1099         * undo_funcs.C (textHandleUndo): Fix undo crash in first paragraph
1100         by not having a special case, and always doing a full rebreak of
1101         the document after undo.
1102
1103 2003-07-23  Angus Leeming  <leeming@lyx.org>
1104
1105         * factory.C (createInset): InsetExternal::setParams now takes a
1106         Buffer const * arg.
1107
1108 2003-07-23  Angus Leeming  <leeming@lyx.org>
1109
1110         * factory.C (createInset): changed interface to the external and
1111         graphics mailers' string2params functions.
1112
1113 2003-07-23  Angus Leeming  <leeming@lyx.org>
1114
1115         * factory.C (createInset): pass a
1116         Buffer const * parameter to InsetExternalMailer's string2params.
1117
1118 2003-07-22  John Levon  <levon@movementarian.org>
1119
1120         * Thesaurus.h: include the right aiksaurus header
1121
1122 2003-07-21  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1123
1124         * MenuBackend.C (expand): check menu shortcuts unconditionally
1125
1126 2003-07-21  Angus Leeming  <leeming@lyx.org>
1127
1128         * factory.C (createInset): pass a
1129         buffer_path parameter to InsetGraphicsMailer's string2params.
1130
1131 2003-07-21  Angus Leeming  <leeming@lyx.org>
1132
1133         * BufferView_pimpl.C (buffer):
1134         * buffer.C (d-tor):
1135         * lyx_main.C (LyX):
1136         * lyxfunc.C (dispatch):
1137         * lyxrc.C (setDefaults, read, output): use namespace lyx::graphics
1138         rather than the grfx shortcut.
1139
1140 2003-07-21  André Pönitz  <poenitz@gmx.net>
1141
1142         * rowpainter.C: remove unused variables
1143
1144         * tabular_funcs.C:
1145         * tabular_funcs.h: move to tabular.C
1146         * Makefile.am: adjust
1147
1148         * tabular.[Ch]: basic optical cleaning
1149
1150         * author.h: pass references, not values
1151
1152 2003-07-18  André Pönitz  <poenitz@gmx.net>
1153
1154         * lyxtext.h:
1155         * metricsinfo.C:
1156         * metricsinfo.h:
1157         * rowpainter.C:
1158         * text.C:
1159         * text2.C:
1160         * text3.C: two-phase drawing for InsetText and InsetTabular
1161         some float -> int changes.
1162
1163 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
1164
1165         * lyx_main.C: fix the fix
1166
1167 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
1168
1169         * lyx_main.C: fix a crash in batch mode if no files specified
1170         * converter.C: ws
1171
1172 2003-07-17  Alfredo Braunstein  <abraunst@libero.it>
1173
1174         * format.[Ch] (papersize): moved to BufferParams
1175         * converter.[Ch] (dvips_options): moved to BufferParams
1176         (dvipdfm_options): moved to anon namespace
1177         * bufferparams.[Ch]: added above functions.
1178
1179 2003-07-17  André Pönitz  <poenitz@gmx.net>
1180
1181         * lyxtext.h:
1182         * rowpainter.C:
1183         * text2.C: don't call inset->update() anymore
1184
1185         * metricsinfo.[Ch]: add convenience constructor
1186
1187 2003-07-16  André Pönitz  <poenitz@gmx.net>
1188
1189         * lyxcursor.[Ch]:
1190         * lyxfunc.[Ch]:
1191         * text.C:
1192         * text2.C: replace the LyXCursor::irow_ member with
1193          on-demand computation of the value
1194
1195 2003-07-16  John Levon  <levon@movementarian.org>
1196
1197         * lyxfunc.C: support LFUN_INSET_SETTINGS for Note
1198
1199 2003-07-15  André Pönitz  <poenitz@gmx.net>
1200
1201         * text.C:
1202         * text2.C: remove no more needed refresh_row
1203
1204 2003-07-15  André Pönitz  <poenitz@gmx.net>
1205
1206         * lyxtext.h:
1207         * rowpainter.C:
1208         * text2.C:
1209         * text3.C: refresh_status tristate -> need_update bool
1210
1211 2003-07-15  Alfredo Braunstein  <abraunst@libero.it>
1212
1213         * lyxtext.h (init): remove reinit argument (act as if always true)
1214         * text2.C: adjust to that
1215
1216 2003-07-14  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1217
1218         * bufferview_funcs.[Ch]: introduce function replaceSelection()
1219         * text3.C: use it to delete selections in some cases
1220         (bugs 441, 673, 702, 954).
1221
1222 2003-07-14  André Pönitz  <poenitz@gmx.net>
1223
1224         * rowpainter.[Ch]: reduce interface
1225
1226 2003-07-14  André Pönitz  <poenitz@gmx.net>
1227
1228         * BufferView_pimpl.C:
1229         * text2.C: adjust after removing unused BufferView * argument
1230
1231 2003-07-14  Alfredo Braunstein  <abraunst@libero.it>
1232
1233         * text2.C (init): fix a crash fired on resize
1234
1235 2003-07-11  Alfredo Braunstein  <abraunst@libero.it>
1236
1237         * buffer.[Ch]: added new closing signal
1238         * BufferView_pimpl.[Ch]: connect/disconnect to new signal
1239         * lyxfunc.C: removed BufferView::buffer(0) call now handled in
1240         BufferView::Pimpl via the closing the signal
1241
1242 2003-07-10  Alfredo Braunstein  <abraunst@libero.it>
1243
1244         * buffer.[Ch]: take out all bv-related from buffer
1245         * BufferView.C:
1246         * BufferView_pimpl.[Ch]: connect to new signals
1247         * CutAndPaste.C: removed useless asserts
1248         * bufferview_funcs.[Ch] (resizeInsets): moved from buffer
1249         * lyxvc.[Ch]:
1250         * vc-backend.[Ch]:
1251         * lyxfunc.C: moved view-related funciontality from vc here
1252         * paragraph.C: removed outdated comments
1253         * text.C: ws
1254
1255 2003-07-10  André Pönitz  <poenitz@gmx.net>
1256
1257         * BufferView_pimpl.C:
1258         * tabular.h:
1259         * tabular_funcs.C:
1260         * text.C:
1261         * text2.C: remove InsetText::InnerCache, clean up consequences
1262
1263 2003-07-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
1264
1265         * ispell.C: fix two typos in error messages
1266
1267 2003-07-08  Martin Vermeer  <martin.vermeer@hut.fi>
1268
1269         * Extend Note inset to other forms of annotation like Comment
1270         and Greyedout. Right button click gives dialog.
1271
1272         Files modified or added (+):
1273
1274         * insetnote.[Ch]
1275         * FormNote.[Ch]      +
1276         * ControlNote.[Ch]   +
1277         * form_note.fd       +
1278         * Makefile.am in frontends/xforms, frontends/xforms/forms,
1279         frontends/controllers
1280         * xforms/Dialogs.C
1281         * factory.C
1282
1283 2003-07-01  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1284
1285         * aspell.C: add missing namespace lyx::support
1286
1287 2003-07-07  Alfredo Braunstein  <abraunst@libero.it>
1288
1289         * BufferView.[Ch] (newFile): Add
1290         * BufferView_pimpl.[Ch] (newFile, connectBuffer, disconnectBuffer): Add
1291         * LaTeX.[Ch] (message): added this signal and use it
1292         * buffer.[Ch] (busy, message): added these signals and use them
1293         * buffer_funcs.[Ch]: rename parseErrors to bufferErrors
1294         * converter.C:
1295         * exporter.C:
1296         * format.C:
1297         * importer.C: use buffer signals instead of direct bv calling
1298         * lyx_cb.[Ch] (ShowMessage): removed
1299         * lyx_main.C:
1300         * lyxfunc.C:
1301         * paragraph_funcs.C:
1302         * text2.C: use buffer signals
1303
1304 2003-07-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
1305
1306         * introduce namespace lyx::graphics
1307
1308 2003-07-02  André Pönitz  <poenitz@gmx.net>
1309
1310         * BufferView_pimpl.C (workAreaDispatch): tell the FuncRequest who we are
1311
1312 2003-07-01  André Pönitz  <poenitz@gmx.net>
1313
1314         * text.C:
1315         * text2.C:
1316         * text3.C:
1317         * text_funcs.[Ch]:
1318         * textcursor.h:
1319         * lyxtext.h: shuffle pure paragraph/cursor related cursor movement from
1320           text*.C to text_func.C
1321
1322 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1323
1324         * introduce namespace lyx::support
1325
1326 2003-06-30  André Pönitz  <poenitz@gmx.net>
1327
1328         * Chktex.C:
1329         * funcrequest.C:
1330         * lyxtext.h:
1331         * text.C: re-enable --with-included-string
1332
1333 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1334
1335         * textcursor.C: add <config.h>
1336
1337         * text.C (getWord): remove const from word_location arg
1338
1339         * lyxvc.C (getLogFile): fix const type order
1340
1341         * lyxtext.h: remove const from word_location arg, add arg name
1342
1343         * lyxlayout.h: currect type on labeltype.
1344
1345         * importer.C: correct \file
1346
1347         * converter.C (intToFormat): use std:: on ret val, ws changes
1348
1349         * bufferlist.h: correct \file
1350
1351         * buffer.C (makeLinuxDocFile): fix const type order
1352         (makeDocBookFile): ditto
1353         (fillWithBibKeys): use std:: on stdlib args.
1354
1355         * CutAndPaste.C: fix authors.
1356         (availableSelections): use std:: on return vector
1357
1358 2003-06-27  André Pönitz  <poenitz@gmx.net>
1359
1360         * BufferView_pimpl.C:
1361         * bufferview_funcs.C:
1362         * lyxcursor.C:
1363         * lyxcursor.h:
1364         * lyxfunc.C:
1365         * lyxtext.h:
1366         * rowpainter.C:
1367         * text.C:
1368         * text2.C:
1369         * text3.C: remove LyXCursor::row_ member
1370
1371         * lyxtext.h:
1372         * text.C: rename fullRebreak() to partialRebreak() and implement
1373           a fullRebreak() that really bereks fully
1374
1375         * textcursor.h: new struct for cursor-related data
1376
1377 2003-06-26  Alfredo Braunstein  <abraunst@lyx.org>
1378
1379         * lyx_main.C (LyX): get full path of document loaded on the
1380         command line
1381
1382 2003-06-26  André Pönitz  <poenitz@gmx.net>
1383
1384         * lyxcursor.[Ch]: move rarely used operator==,!= out of line
1385           remove unused/broken operator>,<,>=.
1386
1387         *       text.C: remove only use of broken operator<= in an Assert().
1388
1389 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
1390
1391         * BufferView.[Ch] (getErrorList): removed unneeded forward declare,
1392         moved errorlist_.clear to showErrorList
1393
1394 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
1395
1396         * converter.C (scanLog, runLaTeX):
1397         * buffer.C (makeLinuxDocFile, makeDocBookFile, runChkTeX):
1398         move the bv->showErrorList call to the callers
1399         * lyxfunc.C: i.e. here...
1400         * text2.C: and here
1401         * BufferView.[Ch] (setErrorList, resetErrorList): both removed
1402         * exporter.[Ch] (Backends, BufferFormat): the first was moved to anon
1403         namespace, the second to...
1404         * buffer_funcs (BufferFormat, parseErrors): added
1405         * errorlist.C (ErrorList(TeXErrors const &)): removed
1406
1407 2003-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1408
1409         * ToolbarBackend.C (getIcon): complain when icon cannot be found
1410
1411 2003-06-24  "Garst R. Reese" <reese@isn.net>
1412
1413         * debug.C: fix typo
1414
1415 2003-06-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1416
1417         * lyx_main.C (init): honor LYX_DIR_14x and LYX_USERDIR_14x
1418
1419         * version.C.in: change docversion to 1.4
1420
1421 2003-06-22  Alfredo Braunstein  <abraunst@libero.it>
1422
1423         * buffer.C: fix a bug just introduced
1424
1425 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
1426
1427         * buffer.[Ch]: added the parseError signal and use it, removed
1428         sgmlError
1429         * BufferView.[Ch] (addError): moved to ...
1430         * BufferView_pimpl.[Ch] (addError, loadLyXFile): ... here. Attach
1431         to the Buffer::parseError signal to catch (guess what) parse errors
1432         * lyx_main.[Ch] (printError,LyX): added gui-less parsing error feedback
1433
1434 2003-06-19  Alfredo Braunstein  <abraunst@libero.it>
1435
1436         * bufferlist.[Ch] (loadLyXFile, readFile, newFile): removed the
1437         ability to create a buffer and to return an existing one from
1438         the list. Moved these functions to...
1439         * buffer_funcs.[Ch]: added
1440         * BufferView.[Ch] (loadLyXFile): added
1441         * BufferView_pimpl.[Ch] (loadLyXFile): Added. Does the guessing
1442         job removed from bufferlist::loadLyXFile.
1443         * buffer.C (setReadOnly): make it work without view
1444         (i.e added an if (users))
1445
1446 2003-06-19  Angus Leeming  <leeming@lyx.org>
1447
1448         * lfuns.h:
1449         * LyXAction.C (init):
1450         * lyxfunc.C (getStatus, dispatch): remove 14 LFUNs, replacing them
1451         with LFUN_DIALOG_SHOW <name> <data>.
1452
1453 2003-06-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1454
1455         * CutAndPaste.C (availableSelections): small compilation fix for
1456         ancient (gcc 2.9x) compilers
1457
1458 2003-06-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
1459
1460         * text3.C (cursorNext): add tmp var
1461
1462         * text2.C (updateCounters): for function calling out of for clause
1463         (replaceSelectionWithString): ditto
1464         (insertStringAsParagraphs): ditto
1465         (getColumnNearX): add tmp var
1466         (setCursorFromCoordinates): add tmp var
1467         (cursorDownParagraph): add tmp var
1468         (deleteEmptyParagraphMechanism): add tmp var
1469
1470         * text.C (insertChar): add tmp var
1471
1472         * rowpainter.C (paintDepthBar): add tmp var
1473
1474         * CutAndPaste.C (availableSelections): potentially check all
1475         paragraphs in a cut to fill the shown strings.
1476
1477 2003-06-18  André Pönitz  <poenitz@gmx.net>
1478
1479         * kbmap.[Ch]: use vector<> instead of list<>
1480
1481 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
1482
1483         * text3.C (dispatch): handle arg to LFUN_PASTE, call
1484         pasteSelection with index
1485
1486         * text2.C (pasteSelection): modify, call pasteSelection with index
1487
1488         * paragraph.C (asString): reimplement version with no interval to
1489         call the one with interval.
1490
1491         * lyxtext.h: add index arg to pasteSelection
1492
1493         * MenuBackend.C (MenuItem): handle PasteRecent
1494         (Menu::read::Menutags): add md_pasterecent
1495         (read): handle it
1496         (expandPasteRecent): new function
1497         (expand): use it
1498
1499         * MenuBackend.h: add PasteRecent to MenuItem::Kind
1500
1501         * CutAndPaste.C: get rid of some stale comments. Add typdefe for
1502         the limited stack
1503         (availableSelections): new function
1504
1505 2003-06-17  Angus Leeming  <leeming@lyx.org>
1506
1507         * lyxfunc.C (dispatch): s/showMathPanel/show("mathpanel")/
1508
1509 2003-06-17  Angus Leeming  <leeming@lyx.org>
1510
1511         * lfuns.h:
1512         * LyXAction.C (init): new LFUN_DIALOG_SHOW.
1513
1514         * lyxfunc.C (dispatch): invoke it.
1515
1516 2003-06-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1517
1518         * iterators.C (operator++, ParPosition): reintroduce some
1519         const_cast for the benefit of older compilers.
1520
1521 2003-06-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1522
1523         * text3.C (dispatch): do not modify clipboard when doing
1524         LFUN_BACKSPACE, LFUN_BACKSPACE_SKIP, LFUN_DELETE or
1525         LFUN_DELETE_SKIP on a selection selection
1526
1527 2003-06-16  André Pönitz  <poenitz@gmx.net>
1528
1529         * BufferView.C:
1530         * buffer.C:
1531         * buffer.h:
1532         * paragraph.C:
1533         * tabular.[Ch]: IU of clone() and getLabelList();
1534
1535 2003-06-13  André Pönitz  <poenitz@gmx.net>
1536
1537         * tabular.h: compactification
1538
1539 2003-06-12  André Pönitz  <poenitz@gmx.net>
1540
1541         * tabular.C:
1542         * tabular.h:
1543         * tabular_funcs.h: some renaming plus whitespace
1544
1545 2003-06-12  André Pönitz  <poenitz@gmx.net>
1546
1547         * BufferView.C:
1548         * BufferView_pimpl.C:
1549         * CutAndPaste.C:
1550         * buffer.C:
1551         * iterators.[Ch]:
1552         * lyxfunc.C:
1553         * text.C:
1554         * toc.C: Return a Paragraph & for ParIterator::operator*()
1555
1556 2003-06-11  John Levon  <levon@movementarian.org>
1557
1558         * lyx_main.C:
1559         * ToolbarBackend.h:
1560         * ToolbarBackend.C: add "Toolbars" section and
1561         put the flags there
1562
1563 2003-06-10  Angus Leeming  <leeming@lyx.org>
1564
1565         * lfuns.h:
1566         * LyXAction.C (init): new LFUN_EXTERNAL_EDIT.
1567
1568         * lyxfunc.C (dispatch): invoke it.
1569
1570 2003-06-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
1571
1572         * main.C: protect <ios> with HAVE_IOS
1573         (main): protect sync_with_stdio with HAVE_IOS
1574
1575 2003-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
1576
1577         * text2.C (cutSelection): adjust
1578         (pasteSelection): adjust
1579
1580         * messages.C: handle get of empty string
1581
1582         * main.C (main): use sync_with_stdio(false)
1583
1584         * lyxfunc.C (dispatch): adjust
1585
1586         * lyx_cb.[Ch] (MenuWrite): remove unneeded BufferView arg
1587         (WriteAs): remove unneeded BufferView arg.
1588
1589         * bufferparams.h: use correct types on papersize, papersize2 and
1590         paperpackage.
1591
1592         * bufferparams.C (readToken): adjust for type
1593         (writeLaTeX): add missing cases to switch.
1594
1595         * bufferlist.C (quitWriteBuffer): adjust
1596         (close): adjust
1597
1598         * buffer.C (asciiParagraph): remove some commented code.
1599
1600         * CutAndPaste.C: remove current_view extern variable.
1601         (cutSelection): add BufferParams arg.
1602         (eraseSelection): add BufferParams arg.
1603         (pasteSelection): add Buffer const & arg
1604
1605 2003-06-07  John Levon  <levon@movementarian.org>
1606
1607         * buffer.C:
1608         * paragraph_funcs.C:
1609         * paragraph_pimpl.C:
1610         * text.C:
1611         * text2.C:
1612         * paragraph.h:
1613         * paragraph.C: allow InsetERT to freely space lines,
1614         and some consolidation of code
1615
1616 2003-06-06  José Matos  <jamatos@fep.up.pt>
1617
1618         * buffer.C (makeDocBookFile): fix bug #821
1619
1620 2003-06-06  Alfredo Braunstein  <abraunst@libero.it>
1621
1622         * BufferView_pimpl.C (dispatch): use Dialogs::visible
1623
1624 2003-06-04  Angus Leeming  <leeming@lyx.org>
1625
1626         * buffer.C: bump format to 224.
1627
1628 2003-06-05  André Pönitz  <poenitz@gmx.net>
1629
1630         * text2.C (redoParagraphs): remove two const_cast<>
1631
1632 2003-06-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1633
1634         * ParagraphList.h: remove last remnants of NO_STD_LIST
1635
1636 2003-06-03  Angus Leeming  <leeming@lyx.org>
1637
1638         * factory.C (createInset): small change to the way InsetExternal's params
1639         are set.
1640
1641 2003-06-04  André Pönitz  <poenitz@gmx.net>
1642
1643         * buffer.h: use Undo directly instead of shared_ptr<Undo>
1644
1645         * paragraph_pimpl.h:
1646         * paragraph.[Ch]: some Inset -> UpdatableInset changes
1647
1648         * undo.[Ch]: use ParagraphList instead of vector<Paragraph>
1649
1650         * undo_funcs.C: make some simple cases of undo work again
1651
1652 2003-06-03  John Levon  <levon@movementarian.org>
1653
1654         * ispell.C: HPUX doesn't have sys/select.h
1655         (from Albert Chin)
1656
1657 2003-06-03  John Levon  <levon@movementarian.org>
1658
1659         * CutAndPaste.C: update tabular and include inset
1660         buffer references
1661
1662         * buffer.h:
1663         * paragraph.h:
1664         * paragraph.C: remove owningBuffer(), don't pass Buffer
1665         to clone()
1666
1667         * factory.C: insetGraphicsParams changed
1668
1669 2003-06-02  John Levon  <levon@movementarian.org>
1670
1671         * LyXAction.C:
1672         * factory.C:
1673         * lfuns.h:
1674         * lyxfunc.C:
1675         * text3.C: remove insetparent
1676
1677 2003-06-02  John Levon  <levon@movementarian.org>
1678
1679         * buffer.h:
1680         * buffer.C: fix inset_iterator.end(), move out of line
1681         (bug 1149)
1682
1683 2003-06-01  John Levon  <levon@movementarian.org>
1684
1685         * text3.C: use a proper cut/paste when doing inset
1686         insert (from Jürgen Spitzmüller)
1687
1688 2003-06-01  John Levon  <levon@movementarian.org>
1689
1690         * factory.C: accept "\bibtex" not "\BibTeX" (bug 1018)
1691
1692 2003-05-30  André Pönitz  <poenitz@gmx.net>
1693
1694         * rowpainter.C: unify second drawing phase
1695
1696 2003-05-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1697
1698         * trans_mgr.C: remove one case of current_view
1699
1700         * text2.C (cursorBottom): delete NO_STD_LIST stuff
1701
1702         * paragraph_funcs.h: remove paragraph.h include
1703
1704         * paragraph.h: delete NO_STD_LIST stuff
1705
1706         * paragraph.C (Paragraph): delete NO_STD_LIST stuff
1707
1708         * buffer.h: remove paragraph.h include
1709
1710         * ParagraphList.C: delete file
1711
1712         * Makefile.am (lyx_SOURCES): remove ParagraphList.C
1713
1714         * toc.C (getTocList): adjust
1715
1716         * paragraph_pimpl.C (validate): adjust
1717
1718         * paragraph_funcs.C (optArgInset): use const_iterator, adjust
1719
1720         * paragraph.C (Paragraph): adjust
1721         (getPositionOfInset): use const_iterator, adjust
1722         (bibitem): use const_iterator, adjust
1723         (setInsetOwner): adjust
1724
1725         * iterators.C (operator++): adjust
1726
1727         * InsetList.[Ch]: Replace selfmade iterator with standard
1728         vector::iterator also introduce const_iterator. Remove getPos,
1729         getInset and setInset from InsetTable. Adjust accordingly.
1730
1731         * BufferView.C (lockInset): adjust
1732         (ChangeInsets): adjust
1733
1734         * tabular.[Ch]: delete commented same_id functions
1735
1736 2003-05-28  John Levon  <levon@movementarian.org>
1737
1738         * lyxfunc.C: fix LFUN_ESCAPE (bug 1055)
1739
1740 2003-05-28  André Pönitz  <poenitz@gmx.net>
1741
1742         * metricsinfo.[Ch]: remove 'fullredraw' member
1743
1744 2003-05-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
1745
1746         * lyxtextclass.C (operator): remove caching.
1747
1748 2003-05-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
1749
1750         * text3.C: adjust
1751
1752         * text2.C (cursorBottom): adjust
1753         (setCounter): use ParagraphList::find, adjust
1754
1755         * text.C (workWidth): use ParagraphList::find, adjust
1756
1757         * lyxcursor.C (LyXCursor): adjust
1758
1759         * buffer.C (inset_iterator): adjust
1760
1761         * ParagraphList.h: make iterator(value_type) private, make
1762         ParagraphList a friend of iterator.
1763
1764         * ParagraphList.C (find): new function
1765
1766         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
1767
1768 2003-05-27  André Pönitz  <poenitz@gmx.net>
1769
1770         * dimension.[Ch]: a -> asc, d -> des, w -> wid
1771
1772 2003-05-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1773
1774         * lyxfont.C (latexWriteStartChanges): fix character count for \noun
1775
1776 2003-05-26  John Levon  <levon@movementarian.org>
1777
1778         * LyXAction.C: LFUN_ESCAPE should be ReadOnly
1779
1780 2003-05-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
1781
1782         * remove same_id from function signatures, adjust.
1783
1784 2003-05-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
1785
1786         * undo_funcs.C (createUndo): use the id functions directly, adjust.
1787
1788         * paragraph_pimpl.C (Pimpl): get rid of same_ids parameter
1789
1790         * paragraph.C (Paragraph): get rid of same_ids parameter
1791
1792         * ParagraphList.C (insert): adjust
1793         (push_back): adjust
1794
1795 2003-05-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
1796
1797         * paragraph_funcs.C (breakParagraph): adjust
1798         (breakParagraphConservative): adjust
1799
1800         * buffer.C (readParagraph): adjust
1801
1802         * ParagraphList.C (insert): take a reference instead of a pointer
1803         (insert): adjust
1804
1805         * paragraph.[Ch] (id): new function
1806
1807         * bufferlist.C (newFile): adjust
1808
1809         * ParagraphList.C (ParagraphList): adjust
1810         (assign): adjust
1811         (push_back): take a reference instead of a pointer.
1812
1813         * paragraph.h: add NO_STD_LIST define, remove NO_NEXT define.
1814
1815         * paragraph.C: remove all NO_NEXT node add some NO_STD_LIST parts
1816         instead.
1817
1818         * ParagraphList.h: degenerate to std::list if NO_STD_LIST is not
1819         set else use old code.
1820
1821         * ParagraphList.C: remove all NO_NEXT code and only compile this
1822         code of NO_STD_LIST is set.
1823
1824 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
1825
1826         * BufferView_pimpl.C:
1827         * TextCache.C:
1828         * TextCache.h:
1829         * bufferlist.C:
1830         * errorlist.h:
1831         * format.C:
1832         * format.h:
1833         * graph.C:
1834         * lyxfunc.C:
1835         * lyxrc.C:
1836         * graphics/GraphicsConverter.C:
1837         * graphics/PreviewLoader.C: header adjustment
1838
1839 2003-05-23  Angus Leeming  <leeming@lyx.org>
1840
1841         * LaTeXFeatures.[Ch] (useBabel): new method.
1842         * bufferparams.C (writeLaTeX): use it.
1843
1844 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
1845
1846         * ParagraphList.h (set): remove unused function.
1847
1848 2003-05-23  André Pönitz  <poenitz@gmx.net>
1849
1850         * BufferView.C:
1851         * BufferView_pimpl.C:
1852         * buffer.C:
1853         * buffer.h:
1854         * lyxfunc.C:
1855         * undo_funcs.C: setUndo reworked
1856
1857         * iterators.[Ch]: add access to topmost ParagraphList
1858
1859         * lyxtext.[Ch] (workWidth): add a const
1860
1861 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
1862
1863         * texrow.[Ch] (increasePos): remove function
1864         * exporter.C (export): removed unused var and outdated comment
1865
1866 2003-05-23  Angus Leeming  <leeming@lyx.org>
1867
1868         * latexrunparams.h: rename fragile as moving_arg.
1869         * paragraph.C (simpleTeXOnePar): ditto.
1870         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto.
1871
1872 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
1873
1874         * undo_funcs.C (textHandleUndo): comment out next/previous stuff
1875         (createUndo): ditto
1876         (textUndoOrRedo): comment out a currently unused var.
1877
1878         * paragraph.h (NO_NEXT): enable NO_NEXT
1879
1880         * lyxfunc.C (dispatch): remove LFUN_REMOVEERRORS
1881
1882         * lfuns.h: remove LFUN_REMOVEERRORS and adjust lfun numbers.
1883
1884         * exporter.C (Export): adjust for removeAutoInsets removal.
1885
1886         * buffer.C (runChktex): adjust for removeAutoInsets removal.
1887
1888         * LyXAction.C (init): remove LFUN_REMOVEERRORS
1889
1890         * BufferView.[Ch] (removeAutoInsets): delete function
1891
1892 2003-05-22  Angus Leeming  <leeming@lyx.org>
1893
1894         * latexrunparams.h: add a free_spacing variable.
1895
1896         * paragraph.[Ch] (simpleTeXOnePar): further fragile clean-up; no need
1897         to pass moving_arg, as the data is stored in runparams.fragile.
1898
1899         * paragraph_funcs.C (TeXOnePar): no longer pass free_spacing arg
1900         to Inset::latexOptional or to simpleTeXOnePar.
1901
1902         * paragraph_pimpl.C (simpleTeXSpecialChars): no longer pass
1903         free_spacing arg to Inset::latexOptional.
1904
1905         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
1906         free_spacing arg.
1907
1908 2003-05-22  Angus Leeming  <leeming@lyx.org>
1909
1910         * latexrunparams.h: add fragile and use_babel variables.
1911
1912         * bufferparams.[Ch] (writeLaTeX): return use_babel.
1913         * buffer.C (makeLaTeXFile): store this returned value in
1914         runparams.use_babel, thus passing it to the inset::latex methods.
1915
1916         * paragraph.C (simpleTeXOnePar): no need to pass 'moving_arg' to
1917         simpleTeXSpecialChars as it is now stored in runparams.fragile.
1918
1919         * paragraph_funcs.[Ch] (TeXOnePar, latexParagraphs): TeXOnePar no
1920         longer has a fragile arg, as it is stored in runparams.fragile.
1921
1922         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars): no longer has a
1923         moving_arg parameter as the data is stored in runparams.fragile.
1924
1925         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
1926         a fragile parameter as the data is stored in runparams.fragile.
1927
1928 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
1929
1930         * paragraph.C (Paragraph): initialize next_par_ and prev_par_
1931
1932 2003-05-22  Angus Leeming  <leeming@lyx.org>
1933
1934         * latexrunparams.h: add a 'bool nice' which defaults to false.
1935
1936         * buffer.[Ch] (makeLaTeXFile): remove the nice parameter as it is
1937         now encapsulated within runparams.
1938
1939         * bufferlist.C (updateIncludedTeXfiles):
1940         * exporter.C (Export): ensuing change to the calls to makeLaTeXFile.
1941
1942 2003-05-22  Angus Leeming  <leeming@lyx.org>
1943
1944         * latexrunparams.h: new file containing struct LatexRunParams.
1945         * Makefile.am: add new file.
1946
1947         * LaTeX.[Ch] (c-tor, run):
1948         * buffer.[Ch] (makeLaTeXFile):
1949         * bufferlist.[Ch] (updateIncludedTeXfiles):
1950         * converter.C (convert, scanLog):
1951         * converter.[Ch] (runLaTeX):
1952         * exporter.C (Export):
1953         * paragraph.[Ch] (simpleTeXOnePar):
1954         * paragraph_funcs.C (TeXEnvironment, TeXOnePar, TeXDeeper):
1955         * paragraph_funcs.[Ch] (latexParagraphs):
1956         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars):
1957         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow, latex):
1958         pass around a LatexRunParams parameter.
1959
1960 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
1961
1962         * paragraph.[Ch]: remove unused constructor
1963
1964         * ParagraphList.C (erase): new function, taking two iterators
1965
1966 2003-05-22  André Pönitz  <poenitz@gmx.net>
1967
1968         * undo_funcs.C: remove duplicated code
1969
1970         * iterator.[Ch]: operator=
1971
1972 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
1973
1974         * tabular.C (SetMultiColumn): ws changes
1975
1976         * rowpainter.C (paintFirst): get rid of a ->previous
1977
1978         * lyx_cb.C (getPossibleLabel): parlist simplification
1979
1980         * BufferView.C (ChangeInsets): simplify slightly.
1981
1982 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1983
1984         * LyXAction.C: new lfun space-insert, kill protected-space-insert
1985         * lfuns.h: new LFUN_SPACE
1986         * lyxfunc.C: protected space has a new lfun
1987         * paragraph_funcs.C: read new space insets
1988         * text3.C:
1989         * factory.C: handle new space insets
1990
1991 2003-05-22  André Pönitz  <poenitz@gmx.net>
1992
1993         * BufferView.C:
1994         * BufferView_pimpl.C:
1995         * buffer.[Ch]:
1996         * lyxfunc.C:
1997         * undo_funcs.C: return a ParIterator from getParFromID.
1998
1999         * iterators.[Ch]: add two const's
2000
2001 2003-05-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
2002
2003         * toc.C (getTocList): adjust
2004
2005         * iterators.[Ch]: rework for parlist
2006
2007         * buffer.C (par_iterator_begin): adjust
2008         (par_iterator_end): adjust
2009
2010         * CutAndPaste.C (SwitchLayoutsBetweenClasses): adjust
2011
2012         * BufferView.C (removeAutoInsets): adjust
2013         (ChangeInsets): adjust
2014
2015 2003-05-21  Alfredo Braunstein  <abraunst@libero.it>
2016
2017         * text.C (top_y): fix bug 1110
2018
2019 2003-05-08  Alfredo Braunstein  <abraunst@libero.it>
2020
2021         * errorlist.[Ch]: added
2022         * buffer.C:
2023         * BufferView.[Ch]:
2024         * BufferView_pimpl.C:
2025         * CutAndPaste.[Ch]: get rid of InsetError users, use ErrorList
2026         instead
2027
2028 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
2029
2030         * Makefile.am: ensure that lyx is relinked upon changes to the
2031         various "convenience" libs.
2032
2033 2003-05-20  Angus Leeming  <leeming@lyx.org>
2034
2035         * Makefile.am (lyx_SOURCES): move format.[Ch] and graph.[Ch] so that
2036         files are compiled in alphabetical order again.
2037
2038         * gettext.h: #ifndef _GETTEXT_H_ -> #ifndef GETTEXT_H.
2039
2040 2003-05-19  Angus Leeming  <leeming@lyx.org>
2041
2042         * gettext.[Ch]: remove "char const * _(char const *)".
2043
2044 2003-05-19  André Pönitz  <poenitz@gmx.net>
2045
2046         * dimension.[Ch]: promote from mathed/dimension.[Ch]
2047
2048         * Makefile.am:
2049         * BufferView.C:
2050         * DepTable.h:
2051         * LaTeXFeatures.C:
2052         * buffer.C:
2053         * lyxfont.C:
2054         * lyxlex.h:
2055         * paragraph_funcs.C: dimensions() instead of ascend/descend/width
2056
2057 2003-05-19  André Pönitz  <poenitz@gmx.net>
2058
2059         * buffer.C:
2060         * lyxlayout.[Ch]:
2061         * lyxtextclass.[Ch]:
2062         * paragraph.C:
2063         * paragraph_funcs.[Ch]:
2064         * text2.C:
2065         * text3.C: more insetenv work
2066
2067 2003-05-16  Alfredo Braunstein  <abraunst@libero.it>
2068
2069         * ParagraphParameters.C (params2string): small bug fixed
2070
2071 2003-05-16  André Pönitz  <poenitz@gmx.net>
2072
2073         * debug.C:
2074         * bufferview_funcs.C: patch from Kornel Benko to prevent
2075           crash when _(...) is called twice in a statement
2076
2077 2003-05-16  André Pönitz  <poenitz@gmx.net>
2078
2079         * BufferView.C:
2080         * lyxfunc.C:
2081         * text.C:
2082         * text2.C:
2083         * text3.C:
2084         * undo_funcs.C: edit() -> LFUN_INSET_EDIT
2085
2086 2003-05-14  Alfredo Braunstein  <abraunst@libero.it>
2087
2088         * lyx_main.C (init): remove spurious static_cast
2089
2090 2003-05-14  André Pönitz  <poenitz@gmx.net>
2091
2092         * BufferView.C: fix format string
2093
2094 2003-05-12  Alfredo Braunstein  <abraunst@libero.it>
2095
2096         * BufferView.[Ch] (insertErrors): removed
2097         * BufferView.[Ch] (showErrorList): added
2098         * buffer.C (runChkTeX):
2099         * converter.C (scanLog): call showErrorList instead of inserterrors
2100
2101 2003-05-13  André Pönitz  <poenitz@gmx.net>
2102
2103         * BufferView_pimpl.C:
2104         * buffer.C:
2105         * bufferview_func.C:
2106         * MenuBackend.C:
2107         * lyxfunc.C:
2108         * lyxrc.C:
2109         * tex-accent.C:
2110         * text3.C:
2111         * toc.C:
2112         * tabular_funcs.h: tostr() from its own header
2113
2114         * ParagraphParameters.C:
2115         * ToolbarBackend.C:
2116         * bufferparams.C:
2117         * format.C:
2118         * lyxlex_pimpl.C:
2119         * text3.C: STRCONV()
2120
2121 2003-05-12  André Pönitz  <poenitz@gmx.net>
2122
2123         * BufferView.C:
2124         * BufferView_pimpl.C:
2125         * CutAndPaste.C:
2126         * LaTeX.C:
2127         * LaTeXFeatures.C:
2128         * ParagraphParameters.C:
2129         * buffer.C:
2130         * bufferlist.C:
2131         * bufferparams.C:
2132         * bufferview_funcs.C:
2133         * converter.C:
2134         * counters.C:
2135         * debug.C:
2136         * exporter.C:
2137         * format.C:
2138         * importer.C:
2139         * lyx_cb.C:
2140         * lyx_main.C:
2141         * lyxfont.C:
2142         * lyxfunc.C:
2143         * lyxvc.C:
2144         * paragraph.C:
2145         * paragraph_funcs.C:
2146         * tabular.C:
2147         * tabular_funcs.C:
2148         * text2.C:
2149         * text3.C:  boost::format -> bformat  all over the place
2150
2151
2152 2003-05-09  André Pönitz  <poenitz@gmx.net>
2153
2154         * LColor.[Ch]: Pimpl the #include <map> away
2155
2156 2003-05-09  John Levon  <levon@movementarian.org>
2157
2158         * bufferlist.C: never remove emergency saves
2159
2160 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
2161
2162         * Makefile.am: better lib building
2163
2164 2003-05-07  Lars Gullik Bjønnes  <larsbj@gullik.net>
2165
2166         * texrow.[Ch]: remove dependency on Paragraph and just store a id
2167         instead.
2168         * paragraph_pimpl.C (simpleTeXBlanks): adjust
2169         (simpleTeXSpecialChars): adjust
2170         (simpleTeXSpecialChars): adjust
2171         * paragraph.C (simpleTeXOnePar): adjust
2172         * buffer.C (makeLaTeXFile): adjust
2173
2174         * Makefile.am (BOOST_LIBS): allow boost as system lib.
2175
2176         * text2.C (changeDepth): parlist cleanup
2177         (getColumnNearX): ditto
2178
2179         * rowpainter.C (getLabelFont): parlist cleanup
2180
2181         * bufferlist.C (newFile): parlist cleanup
2182
2183         * CutAndPaste.C (eraseSelection): parlist cleanup
2184
2185         * BufferView_pimpl.C (trackChanges): parlist cleanup
2186         (dispatch): ditto
2187
2188         * BufferView.C (lockInset): parlist cleanup.
2189         (ChangeInsets): ditto
2190
2191 2003-05-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
2192
2193         * CutAndPaste.h: Update file header.
2194
2195         * CutAndPaste.C: Update file header.
2196         Store the parts cut out of the Document in a limited_stack.
2197         (copySelection): adjust
2198         (pasteSelection): new function, takes the index in the limited stack.
2199         (nrOfParagraphs): adjust
2200         (SwitchLayoutsBetweenClasses): Change to take a ParagraphList&,
2201         simplify error inset insertion.
2202         (checkPastePossible): adjust
2203
2204 2003-05-06  John Levon  <levon@movementarian.org>
2205
2206         * text2.C: don't cast wrap inset to float
2207
2208 2003-05-05  André Pönitz  <poenitz@gmx.net>
2209
2210         * iterator.C:
2211         * undo_funcs.C: use getParagraphs() instead of getFirstParagraph()
2212
2213         * buffer.[Ch]: new function hasParWithId() to help to get rid of a
2214           few naked Paragraph *.
2215
2216 2003-05-02  Michael Schmitt  <michael.schmitt@teststep.org>
2217
2218         * bufferparams.C: Output warning if a document with missing
2219         TeX document class is loaded
2220         * exporter.C: Disable TeX exports if the document class is missing
2221         * lyxtextclass.C:
2222         * lyxtextclass.h:
2223         * lyxtextclasslist.C: Handle new textclass.lst format; new method
2224         isTeXClassAvailable()
2225
2226 2003-05-03  John Levon  <levon@movementarian.org>
2227
2228         * BufferView.h:
2229         * BufferView.C: remove showLockedInsetCursor(), showCursor(),
2230         explicit cursor show/hide
2231
2232         * BufferView_pimpl.h:
2233         * BufferView_pimpl.C: hide cursor before dispatching. Show cursor
2234         after a cursor move lfun. Simplify cursorToggle(). Remove show/hideCursor().
2235
2236         * lyxfunc.C: hide cursor before dispatching.
2237
2238         * lyx_cb.C:
2239         * lyxfind.C:
2240         * text.C:
2241         * text3.C: remove explicit cursor hides
2242
2243 2003-05-02  André Pönitz  <poenitz@gmx.net>
2244
2245         * buffer.[Ch]: two instances of Paragraph * -> ParagraphList::iterator
2246
2247         * undo_funcs.C:
2248         * undo.[Ch]: rely on std::vector<Paragraph *> instead of manually
2249           linked lists
2250
2251         * text2.C: tiny whitespace
2252
2253 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2254
2255         * undo_funcs.C: almost only ws changes.
2256
2257         * ParagraphList.C (splice): just return if pl is empty.
2258
2259 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2260
2261         * ParagraphList.C (splice): new function.
2262
2263         * CutAndPaste.C (pasteSelection): use it
2264
2265 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2266
2267         * CutAndPaste.C (pasteSelection): remove the last next and
2268         previous from this file.
2269
2270 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2271
2272         * CutAndPaste.C (pasteSelection): more clean up, user proper
2273         ParagraphList functions for pasteing.
2274
2275         * ParagraphList.C (insert): new function, three arg insert
2276
2277 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2278
2279         * ParagraphList.C (insert): new function, three arg insert
2280
2281         * CutAndPaste.C (pasteSelection): work on the simple_cut_clone,
2282         not on paragraphs.
2283
2284 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2285
2286         * CutAndPaste.C (pasteSelection): copy paragraphlist the nice way.
2287
2288 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2289
2290         * CutAndPaste.C (pasteSelection): remove some unneeded code.
2291
2292 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2293
2294         * CutAndPaste.C (resetOwnerAndChanges): new helper functor
2295         (copySelection): clean up a bit.
2296         (pasteSelection): use make_pair
2297
2298         * ParagraphList.C (ParagraphList): implement copy constructor
2299         (operator=): implement, base on copy constructor.
2300         (assign): new func
2301
2302         * paragraph.C (erase): return a bool
2303
2304         * paragraph_pimpl.C (erasePos): remove function, move contents...
2305         (erase): ... here. Return a bool.
2306         (erase): call erase instead of erasePos.
2307
2308 2003-04-30  Alfredo Braunstein  <abraunst@libero.it>
2309
2310         * ParagraphList.h: define PitPosPair
2311         * CutAndPaste.C (copySelection, pasteSelection): big rework, use
2312         ParagraphList, fix a bug on pasting multiple pars
2313         * text2.C: change interface to C&P
2314
2315 2003-04-30  André Pönitz  <poenitz@gmx.net>
2316
2317         * undo_func.C: revert part of yesterday's patch 2
2318
2319 2003-04-30  John Levon  <levon@movementarian.org>
2320
2321         * LColor.C: s/tabular/table/
2322
2323 2003-04-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
2324
2325         * text3.C (dispatch): do not convert iterator -> pointer
2326         * undo_funcs.C (setCursorParUndo): ditto
2327         * text_funcs.C (transposeChars): ditto
2328
2329         * text2.C (setLayout): ws changes only
2330
2331         * text.C (breakParagraph): do not convert iterator -> pointer
2332         (insertChar): ditto
2333         (acceptChange): ditto
2334         (rejectChange): ditto
2335         (changeCase): ditto
2336         (Delete): ditto
2337         (backspace): ditto
2338
2339         * BufferView.C (lockedInsetStoreUndo): do not convert iterator ->
2340         pointer
2341
2342 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
2343
2344         * text3.C (gotoInset): YABG (yet another bad getChar)
2345
2346 2003-04-29  André Pönitz  <poenitz@gmx.net>
2347
2348         * paragraph.h: make operator= private unimplemented as long as
2349           it is unusable
2350
2351         * ParagraphList.C: whitespace
2352
2353         * paragraph.[Ch]:
2354         * paragraph_pimpl.[Ch]:
2355         * paragraph_funcs.C:
2356         * CutAndPaste.C:
2357         * undo_funcs.C: whitespace + Paragraph *  -> Paragraph (const) &
2358
2359         * text2.C:
2360           undo_funcs.[Ch]: Paragraph * -> ParagraphList::iterator
2361
2362 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
2363
2364         * CutAndPaste.[Ch] (cutSelection): big rework, some bugs fixed
2365         * paragraph.[Ch] (erase):
2366         * paragraph_pimpl.[Ch] (erase): change return type and value
2367         * text2.C (cutSelection): some rework
2368
2369 2003-04-28  John Levon  <levon@movementarian.org>
2370
2371         * bufferlist.C: changes for unsaved changes dialog
2372
2373 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2374
2375         * bufferlist.C (newFile): set language (messages_) for new
2376         documents also.
2377
2378         * buffer.C (readFile): ws changes only.
2379
2380 2003-04-28  André Pönitz  <poenitz@gmx.net>
2381
2382         * undo_funcs.C:
2383         * lyxfunc.C:
2384         * buffer.[Ch]:
2385         * BufferView_pimpl.C:
2386         * BufferView.C: getParFromID related ParagraphList::iterator changes
2387
2388 2003-04-28  André Pönitz  <poenitz@gmx.net>
2389
2390         * tabular.[Ch]: part of Lars' Paragraph * -> ParagraphList::iterator
2391           Changes
2392
2393 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2394
2395         * messages.C: remove one more localedir class variable.
2396
2397 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2398
2399         * messages.C (getLocaleDir): singleton generation function
2400         (Pimpl): use it.
2401         (Messages): add a default constructor.
2402
2403         * main.C (main): do not setup localedir here, do not call
2404         gettext_init.
2405
2406         * gettext.C (_): use it.
2407         (gettext_init): delete funciton
2408
2409 2003-04-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
2410
2411         * gettext.C (getLyXMessages): new singleton generating function.
2412
2413         * buffer.C (updateDocLang): adjust
2414
2415         * Makefile.am (messages.o): add target
2416         (main.o): remove target
2417
2418 2003-04-27  John Levon  <levon@movementarian.org>
2419
2420         * bufferlist.C:
2421         * lyx_cb.C:
2422         * lyxfunc.C:
2423         * lyxvc.C: specify cancel button in Alert::prompt
2424
2425 2003-04-26  John Levon  <levon@movementarian.org>
2426
2427         * text3.C:
2428         * lyxfunc.C:
2429         * lfuns.h:
2430         * LyXAction.C: add LFUN_INSET_SETTINGS
2431
2432         * lyxfunc.C: don't enable tabular-feature when there's
2433         just any locking inset
2434
2435 2003-04-26  John Levon  <levon@movementarian.org>
2436
2437         * bufferlist.C: re-add Cancel to buffer close question
2438
2439         * lyxfunc.C: fix import UI a bit
2440
2441 2003-04-25  John Levon  <levon@movementarian.org>
2442
2443         * gettext.C: remove the broken asserts for now
2444
2445 2003-04-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
2446
2447         * messages.C: make case where setlocale cannot comply work better.
2448
2449         * buffer.C (updateDocLang): new function
2450         (changeLanguage): use it
2451         (readFile): use it
2452
2453         * text2.C (setCounter): use B_ a bit.
2454
2455         * lyxlayout.C (Read): be sure to trim the label strings.
2456
2457         * messages.C (Messages): fix typo in comment
2458
2459         * buffer.C (readFile): set message_ after file is loaded.
2460         (makeDocBookFile): remove double return
2461         (changeLanguage): reset message_ upon language change.
2462         (B_): new func, use this to get translated buffer strings.
2463
2464         * main.C: add myself and Jean Marc as authors.
2465
2466 2003-04-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
2467
2468         * messages.[hC]: pimplify Messages, and three different pimpls to be
2469         used in different circumstances.
2470
2471         * gettext.[Ch]: change for use with new message code.
2472
2473 2003-04-24 André Pönitz <poenitz@gmx.net>
2474
2475         * factory.C: support for eqref
2476
2477 2003-04-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
2478
2479         * messages.[Ch]: add missing char
2480
2481         * Makefile.am (lyx_SOURCES): add messages.[Ch]
2482
2483         * messages.[Ch]: New files
2484
2485 2003-04-18  John Levon  <levon@movementarian.org>
2486
2487         * BufferView.h:
2488         * BufferView.C:
2489         * BufferView_pimpl.C:
2490         * lfuns.h:
2491         * LyXAction.C:
2492         * lyxtext.h:
2493         * text2.C: remove layout-copy/paste (bug 778)
2494
2495 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
2496
2497         * text2.C (redoParagraphs): eliminate good_prevrit, rewrite a loop
2498
2499 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
2500
2501         * bufferlist.C (quitWriteBuffer): WriteAs and MenuWrite return true
2502         if they succeed. Act accordingly.
2503
2504 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2505
2506         * text2.C (setCharFont): adjust
2507         (setCounter): adjust
2508         (insertStringAsLines): adjust
2509
2510         * text.C (leftMargin): adjust
2511         (setHeightOfRow): adjust
2512
2513         * rowpainter.C (paintFirst): adjust
2514         (paintLast): adjust
2515
2516         * paragraph_funcs.C (depthHook): ParagraphList::iterators
2517         (outerHook): ditto
2518         (isFirstInSequence): ditto
2519         (getEndLabel): ditto
2520         (outerFont): adjust
2521
2522         * paragraph.C (getParLanguage): comment out some hard stuff.
2523
2524         * buffer.C (insertStringAsLines): take a ParagraphList as arg
2525         (sgmlError): ditto
2526         (simpleDocBookOnePar): ditto
2527         (makeDocBookFile): use ParagraphList::iterator
2528
2529         * CutAndPaste.C (pasteSelection): adjust
2530
2531 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2532
2533         * text2.C (getFont): adjust
2534         (getLayoutFont): adjust
2535         (getLabelFont): adjust
2536
2537         * paragraph_funcs.C (TeXOnePar): adjust
2538
2539         * buffer.C (simpleLinuxDocOnePar): adjust
2540         (simpleDocBookOnePar): adjust
2541
2542         * CutAndPaste.C (pasteSelection): adjust
2543
2544         * BufferView.C (getEncoding): adjust
2545
2546         * paragraph_funcs.C (outerFont): prepare for a ParagraphList arg.
2547
2548 2003-04-16  John Levon  <levon@movementarian.org>
2549
2550         * lyxfind.C: use parlist stuff for search/changes
2551
2552 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2553
2554         * undo_funcs.C (textHandleUndo): ajust (rather big adsjust this one)
2555
2556         * text2.C (deleteEmptyParagraphMechanism): adjust
2557
2558         * text2.[Ch] (ownerParagraph): delete func (both of them
2559
2560 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2561
2562         * text_funcs.C (transposeChars): use ParagraphList::iterator here.
2563
2564 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2565
2566         * ParagraphList.C: prepare for NO_NEXT
2567
2568 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2569
2570         * text2.C (getFont): adjust
2571         (getLayoutFont): adjust
2572         (getLabelFont): adjust
2573
2574         * paragraph.C (getFont): adjust
2575         (getLabelFont): adjust
2576         (getLayoutFont): adjust
2577
2578         * paragraph_funcs.[Ch] (realizeFont): remove unneeded arguments.
2579
2580 2003-04-15  John Levon  <levon@movementarian.org>
2581
2582         From Angus Leeming
2583
2584         * lyx_main.C: handle Include in .ui files
2585
2586 2003-04-15  John Levon  <levon@movementarian.org>
2587
2588         * MenuBackend.C: make the doc files length shorter
2589
2590         * ToolbarBackend.h:
2591         * ToolbarBackend.C: handle toolbar placement flags,
2592         Minibuffer
2593
2594 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2595
2596         * paragraph_pimpl.C (simpleTeXSpecialChars): take a outerfont arg,
2597         adjust
2598
2599         * paragraph_funcs.C (TeXOnePar): adjust
2600
2601         * paragraph.C (getLabelFont): add outerfont arg, adjust
2602         (getLayoutFont): ditto
2603         (simpleTeXOnePar): adjust
2604
2605         * paragraph_pimpl.C (realizeFont): delete func
2606
2607 2003-04-14  Alfredo Braunstein  <abraunst@libero.it>
2608
2609         * text2.C (beforeFullRowInset): added a bad getchar check, removed
2610         row argument, constify cur argument.
2611
2612 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2613
2614         * text2.C (getFont): adjust
2615         (getLayoutFont): adjust
2616         (getLabelFont): adjust
2617
2618         * paragraph_funcs.C (TeXOnePar): adjust
2619         (outerFont): new func...
2620         (realizeFont): ...moved out from here, changed this to facilitate
2621         transition
2622
2623         * paragraph.C (getFont): take outerfont as arg, adjust
2624         (simpleTeXOnePar): add outerfont arg, adjust
2625
2626         * buffer.C (simpleLinuxDocOnePar): adjust
2627         (simpleDocBookOnePar): adjust
2628
2629         * CutAndPaste.C (pasteSelection): adjust
2630
2631         * BufferView.C (getEncoding): adjust
2632
2633 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2634
2635         * text2.C (setCharFont): adjust
2636         (setCounter): adjust
2637
2638         * text.C (leftMargin): adjust
2639         (setHeightOfRow): adjust
2640
2641         * rowpainter.C (paintFirst): adjust
2642         (paintLast): adjust
2643
2644         * paragraph_pimpl.C (realizeFont): adjust
2645
2646         * paragraph.C (isFirstInSequence): move from here...
2647         * paragraph_funcs.C (isFirstInSequence): ...to here
2648
2649         * paragraph.C (outerHook): move from here...
2650         * paragraph_funcs.C (outerHook): ...to here
2651
2652         * paragraph.C (depthHook): move from here...
2653         * paragraph_funcs.C (depthHook): ...to here
2654
2655         * paragraph.C (getEndLabel): move from here...
2656         * paragraph_funcs.C (getEndLabel): ...to here
2657
2658         * text2.C (realizeFont): move from here...
2659         * paragraph_funcs.C (realizeFont): ...to here
2660
2661 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2662
2663         * text3.C (gotoNextInset): use separate tmp vars for par and pos.
2664
2665 2003-04-14  Angus Leeming  <leeming@lyx.org>
2666
2667         * LColor.[Ch]: scrap LColor mathcursor.
2668
2669 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2670
2671         * lyxlex.[Ch] (text): delete function
2672         * trans.C (Load): adjust
2673         * paragraph_funcs.C (readParToken): adjust
2674
2675 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2676
2677         * lyxlex_pimpl.h: get rid of LEX_MAX_BUFF, change buff to be a
2678         vector<char> instead of a char[].
2679
2680         * lyxlex_pimpl.C (getString): adjust
2681         (next): adjust
2682         (lex): use getString
2683         (eatLine): adjust
2684         (nextToken): adjust
2685
2686         * lyxlex.C (text): use pimpl_->getString()
2687         (getBool): ditto
2688         (findToken): ditto
2689
2690 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
2691
2692         * text2.C (getInset): temp vars for cursor.par() and cursor.pos()
2693         (makeFontEntriesLayoutSpecific): temp var for par.size()
2694         (setLayout): temp var for ownerParagraphs().end()
2695         (fullRebreak): temp var for rows().end()
2696         (selectionAsString): temp var for boost::next(startpit), realize
2697         that the while really is a regular for loop.
2698         (cursorEnd): temp vars for cursor.row(), lastPos ++, only call
2699         setCursor in one place.
2700         (setParagraph): temp vr for ownerParagraphs().end()
2701         (updateCounters): make the while loop a for loop
2702         (cutSelection): temp var for ownerParagraphs().end()
2703         (updateInset): make the do {} while() a regular for loop
2704         (getCursorX): use temp vars
2705         (setCurrentFont): use temp vars
2706         (getColumnNearX): use temp vars
2707
2708 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2709
2710         * text.C (transformChar): use temp var for getChar
2711         (computeBidiTables): use temp var for row->par()
2712         (fill): move temp vars for row->par() and pit->layout() earlier in
2713         the function.
2714         (labelFill): use temp var for row->par()
2715         (setHeightOfRow): do not allow rit to be RowList::end, get rid of
2716         asc and desc, realize that pit never changes and that firstpit is
2717         just a duplicate and not needed. Exchange rit->par() with pit in a
2718         lot of places.
2719         (breakAgain): use a temp var for boost::next(rit)
2720         (breakAgainOneRow): ditto
2721         (breakParagraph): use a temp var for rows().begin()
2722         (prepareToPrint): move nlh into minimal scope, use temp var for rit->par()
2723         (cursorRightOneWord): use temp var for cursor.par() and
2724         cursor.pos(), remove usage of tmpcursor.
2725         (cursorLeftOneWord): use temp var for cursor.par() and
2726         cursor.pos() only set cur at end of function.
2727
2728 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2729
2730         * text.C, text2.C: exchange all usage of Paragraph::next with
2731         boost::next(ParagraphList::iterator)
2732
2733         * CutAndPaste.C (cutSelection): change 2. arg to a Paragraph*
2734
2735         * text2.C (cursorTop): simplify implementation
2736         (cursorBottom): ditto
2737         (setParagraph): use ParagraphList::iterator
2738         (setCurrentFont): adjust
2739         (getColumnNearX): adjust
2740         (cursorRight): adjust
2741         (cursorLeft): remove usage of Paragraph::previous
2742         (cursorUpParagraph): ditto
2743         (deleteEmptyParagraphMechanism): slight cleanup
2744
2745         * text.C (isBoundary): take a Paragraph const & instead of a
2746         pointer as arg.
2747         (addressBreakPoint): ditto
2748         (leftMargin): remove usage of Paragraph::previous.
2749         (setHeightOfRow): ditto
2750         (cursorLeftOneWord): ditto
2751         (selectNextWordToSpellcheck): ditto
2752         (Delete): ditto
2753         (backspace): ditto
2754         (breakParagraph): remove one usage of Paragraph::next
2755         (redoParagraph): ditto
2756         (acceptChange): ditto
2757         (insertChar): adjust
2758         (rowBreakPoint): adjust
2759
2760         * bufferview_funcs.C (toggleAndShow): adjust
2761
2762 2003-04-11  Alfredo Braunstein  <abraunst@libero.it>
2763
2764         * lyxrow.[Ch]: add a cached y position to a Row and Row::y()
2765         methods to access it.
2766         * lyxtext.h:
2767         * text.C: Added updateRowPositions to compute all row positions.
2768         Make top_y and getRowNearY() to use the cached y position
2769
2770 2003-04-11  John Levon  <levon@movementarian.org>
2771
2772         * text.C (rowBreakPoint): reintroduce the labelEnd
2773         checks, code copied from the row fill stuff. Deep voodoo.
2774
2775         * text.C (fill): add a comment and debugging for the
2776         next poor soul.
2777
2778 2003-04-11  John Levon  <levon@movementarian.org>
2779
2780         * text.C: make sure fullrow insets get wrapped to the next line,
2781         even when they're in a manual label
2782
2783 2003-04-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
2784
2785         * text2.C (insertParagraph): make it take ParagraphList::iterator
2786         as arg.
2787         (setLayout): make it return ParagraphList::iterator
2788         (redoParagraphs): ditto
2789         (setCounter): ditto
2790         (checkParagraph): ditto
2791
2792         * text.C (getRow): make getrow take ParagraphList::iterator as arg
2793
2794         * text2.C: adjust several funcs.
2795         (realizeFont): take a ParagraphList::iterator as arg.
2796         (getLayoutFont): ditto
2797         (getLabelFont): ditto
2798         (setCharFont): ditto
2799
2800         * text.C: adjust several funcs.
2801
2802 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
2803
2804         * text.C (selectNextWordToSpellcheck): don't accidentally
2805         skip insets
2806
2807 2003-04-10  John Levon  <levon@movementarian.org>
2808
2809         * ToolbarBackend.C (getIcon): special handling for
2810         LFUN_MATH_DELIM
2811
2812 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
2813
2814         * text2.C (cursorRight): a getChar assert fixed
2815
2816 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
2817
2818         * text2.C (getFont): change to take a ParagraphList::iterator
2819         instead of Paragraph*
2820         Adjust several functions.
2821
2822         * text.C (transformChar): change to take a ParagraphList::iterator
2823         instead of Paragraph*
2824         (singleWidth): ditto
2825         Adjust several functions.
2826
2827         * rowpainter.C: adjust several functions
2828         * rowpainter.h:store a ParagraphList::iterator and not a
2829         Paragraph&.
2830
2831
2832 2003-04-09  John Levon  <levon@movementarian.org>
2833
2834         * lyxfunc.C:
2835         * lfuns.h:
2836         * LyXAction.h:
2837         * LyXAction.C: remove LFUN_APROPOS, LFUN_GETTIP,
2838         and the "help" bits as well
2839
2840 2003-04-09  John Levon  <levon@movementarian.org>
2841
2842         * ToolbarBackend.h:
2843         * ToolbarBackend.C: allow multiple toolbars
2844
2845 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
2846
2847         * undo_funcs.C (setCursorParUndo): adjust
2848
2849         * text_funcs.C (transposeChars): adjust
2850
2851         * text3.C (gotoNextInset): adjust
2852         (dispatch): adjust
2853
2854         * text2.C (setLayout): adjust
2855         (changeDepth): adjust
2856         (setFont): adjust
2857         (redoParagraphs): adjust
2858         (selectionAsString): adjust
2859         (setParagraph): adjust
2860         (insertInset): adjust
2861         (cutSelection): adjust
2862         (copySelection): adjust
2863         (pasteSelection): adjust
2864         (insertStringAsLines): adjust
2865         (updateInset): adjust
2866         (setCursor): change to take a ParagraphList::iterator parameter
2867         (setCursorIntern): change to take a ParagraphList::iterator parameter
2868         (setCurrentFont): adjust
2869         (cursorLeft): adjust
2870         (cursorRight): adjust
2871         (deleteEmptyParagraphMechanism): adjust
2872
2873         * text.C (breakParagraph): adjust
2874         (insertChar): adjust
2875         (acceptChange): adjust
2876         (rejectChange): adjust
2877         (selectNextWordToSpellcheck): adjust
2878         (changeCase): adjust
2879         (Delete): adjust
2880         (backspace): adjust
2881
2882         * lyxfind.C (SearchForward): adjust
2883         (SearchBackward): adjust
2884         (nextChange): adjust
2885
2886         * lyxcursor.C (par): adjust
2887
2888         * lyxcursor.h: store a ParagraphList::iterator instead of a
2889         Paragraph*
2890
2891         * lyx_cb.C (getPossibleLabel): adjust
2892
2893         * bufferview_funcs.C (toggleAndShow): adjust
2894
2895         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
2896         (dispatch): adjust
2897
2898         * BufferView.C (removeAutoInsets): adjust
2899         (lockedInsetStoreUndo): adjust
2900
2901 2003-04-09  John Levon  <levon@movementarian.org>
2902
2903         * ToolbarBackend.C: try icon without argument
2904         if with argument fails
2905
2906 2003-04-08  John Levon  <levon@movementarian.org>
2907
2908         * ToolbarBackend.h:
2909         * ToolbarBackend.C: add getIcon(), handle tooltip,
2910         and change from "Icon" to "Item".
2911
2912 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
2913
2914         * BufferView.C (lockInset): another bad getchar crunched
2915
2916 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
2917
2918         * text2.C (changeDepth): do not setUndo on test_only (make undo work
2919         again)
2920
2921 2003-04-05  Alfredo Braunstein  <abraunst@libero.it>
2922
2923         * lyxfind.C (searchForward, searchBackwards): bug 782
2924
2925 2003-04-07  John Levon  <levon@movementarian.org>
2926
2927         * paragraph.C: remove dead comment
2928
2929         * text.C: remove troublesome depth-fiddling code
2930         in leftMargin() and rightMargin() (bug 1017)
2931
2932         * text.C: fix breaking of rows in nested lists
2933         (bug 1004)
2934
2935         * text2.C (updateCounters): fix up depth values
2936         (bug 1013)
2937
2938 2003-04-07  John Levon  <levon@movementarian.org>
2939
2940         * BufferView_pimpl.C: clear message when doc finishes resizing,
2941         and after a mouse event
2942
2943         * lyxfunc.C: clear message after exiting inset
2944
2945 2003-04-07  John Levon  <levon@movementarian.org>
2946
2947         * bufferview_funcs.C: show math status not outside
2948         status in the statusbar
2949
2950 2003-04-07  John Levon  <levon@movementarian.org>
2951
2952         * lyxfunc.C: note status changed after a depth change
2953
2954 2003-04-04  Angus Leeming  <leeming@lyx.org>
2955
2956         * LaTeX.h: move AuxInfo operator==, != out of line.
2957         Remove LaTeX virtual destructor; nothing derives from it.
2958         Move operator()() out of public area and rename it startscript().
2959         Change protected for private.
2960
2961 2003-04-04  Angus Leeming  <leeming@lyx.org>
2962
2963         * lyxfunc.C:
2964         * text2.C: remove unneeded #includes.
2965
2966 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
2967
2968         * text2.C (dEPM): fix the heigth of the next row
2969
2970 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
2971
2972         * text.C: squashed an invalid getChar requester + some ws changes
2973
2974 2003-04-03  John Levon  <levon@movementarian.org>
2975
2976         * bufferview_funcs.h:
2977         * bufferview_funcs.C:
2978         * lyxfunc.C:
2979         * lyxtext.h:
2980         * text2.C: make getStatus work for the env depth lfuns
2981
2982 2003-04-03  John Levon  <levon@movementarian.org>
2983
2984         * bufferview_funcs.h:
2985         * bufferview_funcs.C:
2986         * lyxfunc.C:
2987         * lyxtext.h:
2988         * text2.C: parlistize decDepth(), by merging it with incDepth()
2989
2990 2003-04-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
2991
2992         * lyxrow.h: store a ParagraphList::iterator instead of a
2993         Paragraph* and adjust other class functions to suit.
2994
2995         * lyxrow_funcs.C, text.C, text2.C, text3.C: adjust because of the
2996         above.
2997
2998 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
2999
3000         * text2.C (setCursor): do not anchor to cursor row for the time being
3001
3002 2003-04-02  John Levon  <levon@movementarian.org>
3003
3004         * LyXAction.C:
3005         * lfuns.h:
3006         * lyx_main.C:
3007         * lyxtext.h:
3008         * text.C:
3009         * text3.C: rename the "tab" lfuns. Remove tab support from normal text
3010
3011 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3012
3013         * paragraph.h: make ParagraphList and ParagraphList::iterator
3014         friends of Paragraph.
3015
3016         * buffer.C (makeLinuxDocFile): move towards ParagraphList
3017
3018         * ParagraphList.C: Use the private next_ and previous_ from
3019         Paragraph.
3020
3021 2003-04-01  John Levon  <levon@movementarian.org>
3022
3023         * ToolbarBackend.h:
3024         * ToolbarBackend.C:
3025         * Makefile.am: rename, remove defaults gunk
3026
3027         * MenuBackend.h:
3028         * MenuBackend.C: remove defaults gunk
3029
3030         * Languages.h:
3031         * Languages.C: remove defaults gunk
3032
3033         * lyx_main.h:
3034         * lyx_main.C: error out if files couldn't be found.
3035
3036 2003-04-02  John Levon  <levon@movementarian.org>
3037
3038         * text2.C: make incDepth() use parlist
3039
3040 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3041
3042         * undo_funcs.C (firstUndoParagraph): adjust
3043
3044         * text3.C (gotoInset): adjust
3045         (dispatch): adjust, and rewrite loop.
3046
3047         * text2.C (init): adjust, and rewrite loop.
3048         (redoParagraphs): adjust
3049         (updateInset): adjust, and rewrite loop.
3050         (deleteEmptyParagraphMechanism): adjust
3051
3052         * tabular.C (LyXTabular): adjust
3053         (SetMultiColumn): adjust
3054         (TeXRow): adjust
3055
3056         * lyxtext.[Ch] (ownerParagraph): delete function
3057         (ownerParagraphs): new function returns a ParagraphList.
3058
3059         * BufferView.C (removeAutoInsets): adjust
3060         (insertErrors): adjust
3061         (setCursorFromRow): adjust
3062
3063 2003-04-01  Angus Leeming  <leeming@lyx.org>
3064
3065         * BufferView_pimpl.C (buffer): ensure that the Layout is correct
3066         in the frontends.
3067
3068 2003-04-02  John Levon  <levon@movementarian.org>
3069
3070         * lyxtext.h:
3071         * text.C:
3072         * Makefile.am:
3073         * text_funcs.h:
3074         * text_funcs.C: make transposeChars a free function
3075
3076         * lyxrow_funcs.C: remove wrong comment
3077
3078 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3079
3080         * lyxtext.h: adjust
3081         * rowpainter.C: adjust
3082         * text.C: adjust
3083         * text2.C: adjust
3084         * text3.C: adjust
3085
3086         * lyxrow_funcs. [Ch]: new files
3087
3088         * lyxrow.[Ch]: remove next and previous pointers
3089         (next,previous): remove accessor functions
3090         (isParEnd): move to lyxrow_funcs
3091         (lastPos): move to lyxrow_funcs
3092         (nextRowIsAllInset): move to lyxrow_funcs
3093         (lastPrintablePos): move to lyxrow_funcs
3094         (numberOfSeparators): move to lyxrow_funcs
3095         (numberOfHfills): move to lyxrow_funcs
3096         (numberOfLabelHfills): move to lyxrow_funcs
3097         (hfillExpansion): move to lyxrow_funcs
3098
3099         * lyxfunc.C: adjust
3100
3101         * bufferview_funcs.C (toggleAndShow): adjust
3102
3103         * RowList.h: Remove class RowList from file leave just a
3104         std::list<Row>.
3105
3106         * RowList.C: delete file
3107
3108         * Makefile.am (lyx_SOURCES): remove RowList.C, add lyxrow_funcs.C
3109         and lyxrow_funcs.h
3110
3111 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3112
3113         * text3.C (cursorPrevious): adjust
3114         (cursorNext): adjust
3115         (dispatch): adjust
3116
3117         * text2.C (redoHeightOfParagraph): adjust
3118         (redoDrawingOfParagraph): adjust
3119         (setCursor): adjust
3120
3121         * text.C (breakParagraph): adjust
3122         (insertChar): adjust
3123         (backspace): adjust
3124
3125         * rowpainter.C (RowPainter): adjust
3126         (leftMargin): simplify and adjust
3127         (most rowpainter functions): adjust.
3128
3129         * rowpainter.h: store the row as RowList::iterator not as Row*
3130
3131         * lyxcursor.C (row): taka RowList::iterator as arg
3132         (irow): ditto
3133
3134         * lyxcursor.h: make the LyXCursor store RowList::iterators instead
3135         of Row*.
3136
3137 2003-04-01  Angus Leeming  <leeming@lyx.org>
3138
3139         * bufferview_funcs.C (string2font): rewrite so that it no longer uses
3140         stuff like bool Bool.
3141
3142 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
3143
3144         * text2.C (redoParagraphs): fix a bug (introduced by myself) and
3145         rewrite a loop
3146
3147 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3148
3149         * text2.C (redoParagraphs): rewrite (with help from Alfredo) for
3150         RowList::iterator.
3151
3152         * lyxtext.h (rows): drop one version and leve a const variant that
3153         returns a RowList::iterator.
3154
3155 2003-03-31  Angus Leeming  <leeming@lyx.org>
3156
3157         * text.C (fill): ensure that the signature is the same as that in the
3158         header file.
3159
3160 2003-03-31  Lars Gullik Bjønnes  <larsbj@gullik.net>
3161
3162         * text2.C (redoParagraphs): adjust
3163         (updateCounters): adjust
3164         (checkParagraph): adjust
3165         (getColumnNearX): adjust and reformat a bit.
3166
3167         * text.C (top_y): adjust
3168         (workWidth): adjust
3169         (leftMargin): adjust
3170         (prepareToPrint): adjust
3171         (getRow): adjust
3172         (getRowNearY): adjust
3173
3174         * lyxtext.h: make rowlist_ mutable.
3175
3176         * RowList.h: add const_iterator
3177         * RowList.C: adjust for RowList::const_iterator.
3178
3179         * text2.C (getCursorX): make it take a RowList::iterator as arg,
3180         adjust.
3181
3182 2003-03-31  John Levon  <levon@movementarian.org>
3183
3184         * lyxrc.h:
3185         * lyxrc.C: moved pdf_mode and use_gui to elsewhere
3186
3187         * lyx_main.C: set default fonts from using lyx_gui funcs
3188
3189         * exporter.C: pdf_mode moved from lyxrc
3190
3191         * lyx_cb.C:
3192         * lyxfunc.C: changes from above
3193
3194 2003-03-31  John Levon  <levon@movementarian.org>
3195
3196         * lyx_main.C: fix to the last fix
3197
3198 2003-03-31  John Levon  <levon@movementarian.org>
3199
3200         * bufferlist.C: "Load original" -> "Load Original"
3201
3202         * converter.C:
3203         * exporter.C:
3204         * importer.C:
3205         * lyx_main.C:
3206         * format.C: more Alert cleanups
3207
3208 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
3209
3210         * text2.C (removeParagraph): make it take a RowList::iterator as
3211         arg, adjust.
3212         (getColumnNearX): make it take a RowList::iterator as arg, adjust.
3213         (postRowPaint): make it take a RowList::iterator as arg, adjust.
3214
3215         * text.C (anchor_row): make it take a RowList::iterator as arg,
3216         adjust.
3217         (computeBidiTables): make it take a const reference to Row instead
3218         of Row pointer, adjust.
3219         (leftMargin): make it take a RowList::iterator as arg, adjust.
3220         (rowBreakPoint): adjust
3221         (breakAgainOneRow): make it take a RowList::iterator as arg,
3222         adjust.
3223         (prepareToPrint): make it take a RowList::iterator as arg, adjust.
3224
3225         * bufferview_funcs.C (toggleAndShow): adjust
3226
3227 2003-03-30  John Levon  <levon@movementarian.org>
3228
3229         * Makefile.am:
3230         * BoostFormat.h:
3231         * boost-inst.C: moved to support
3232
3233         * several files: changes as a result
3234
3235 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
3236
3237         * text2.C (LyXText): adjust.
3238         (init): adjust
3239         (removeRow): make it take a RowList::iterator as arg, adjust.
3240         (fullRebreak): adjust
3241         (deleteEmptyParagraphMechanism): adjust
3242         (clearPaint): adjust
3243         (postPaint): adjust
3244
3245         * text.C (top_y): adjust
3246         (setHeightOfRow): make it take a RowList::iterator as arg, adjust.
3247         (breakAgain): make it take a RowList::iterator as arg, adjust.
3248         (breakParagraph): adjust
3249         (insertChar): adjust
3250         (backspace): adjust
3251
3252         * lyxtext.h: make anchor_row_ be a RowList::iterator, ditto
3253         need_break_row, and refresh_row.
3254
3255         * text3.C (dispatch): adjust
3256
3257         * text2.C (checkParagraph): adjust
3258         (setCursor): adjust
3259         (setCursorFromCoordinates): adjust
3260
3261         * text.C (top_y): adjust
3262         (workWidth): adjust
3263         (getRow): make it return a RowList::iterator, adjust
3264         (getRowNearY): make it return a RowList::iterator, adjust
3265
3266         * text2.C (init): adjust
3267         (insertRow): remove function
3268         (insertParagraph): adjust
3269         (redoParagraphs): adjust
3270         (fullRebreak): adjust
3271         (updateCounters): adjust
3272
3273         * text.C (top_y): rewrite to use RowList iterators.
3274         (top_y): adjust
3275         (setHeightOfRow): rewrite to sue RowList iterators.
3276         (appendParagraph): adjust
3277         (breakAgain): adjust
3278         (breakAgainOneRow): adjust
3279         (breakParagraph): adjust
3280         (getRow): adjust
3281         (getRowNearY): adjust, and remove commented code.
3282
3283         * lyxtext.h (firstRow): delete function
3284         (lastRow): delete function
3285         (rows): new function (const and non-const versions.)
3286         (insertRow): delete function
3287
3288         * lyxrow.[Ch] (Row): new constructor taking a par and a pos
3289
3290 2003-03-29  John Levon  <levon@movementarian.org>
3291
3292         * BufferView_pimpl.C: always update scrollbar top
3293         because pasting text when we're anchored could mean we
3294         miss an update altogether
3295
3296 2003-03-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
3297
3298         * text2.C (init): use rowlist_.end() and not 0.
3299         (insertRow): change to take a RowList::iterator as arg, adjust
3300         for this.
3301         (insertParagraph): change to take a RowList::iterator as arg,
3302         adjust for this.
3303         (redoParagraphs): remove some debug msgs.
3304
3305         * text.C (appendParagraph): change to take a RowList::iterator
3306         arg, adjust for this.
3307         (breakAgain): add an assert
3308         (breakAgainOneRow): ditto
3309
3310 2003-03-29  John Levon  <levon@movementarian.org>
3311
3312         * text2.C: do not clear selection after inc/decDepth
3313         (bug 550)
3314
3315 2003-03-29  John Levon  <levon@movementarian.org>
3316
3317         * BufferView.C:
3318         * buffer.C: fix broken strerrors according to Lars
3319
3320 2003-03-29  John Levon  <levon@movementarian.org>
3321
3322         * converters.C: more Alert cleanups
3323
3324 2003-03-29  John Levon  <levon@movementarian.org>
3325
3326         * bufferview_funcs.C: remove pointless Alert
3327
3328         * buffer.C: fix confusing error message when
3329         a template is chmoded 000
3330
3331 2003-03-29  John Levon  <levon@movementarian.org>
3332
3333         * BufferView.C:
3334         * BufferView.h:
3335         * BufferView_pimpl.C: Alert fixes
3336
3337         * Makefile.am:
3338         * tabular.C:
3339         * tabular-old.C: remove unused table compat reading
3340
3341 2003-03-29  John Levon  <levon@movementarian.org>
3342
3343         * BufferView.C:
3344         * buffer.C:
3345         * lyx_cb.h:
3346         * lyx_cb.C: more Alert cleanups
3347
3348         * lyxfunc.C: don't allow chktex if not latex document
3349
3350 2003-03-29  John Levon  <levon@movementarian.org>
3351
3352         * lyx_cb.C:
3353         * BufferView.C:
3354         * buffer.C: warnings pushed down from support/,
3355         kill err_alert
3356
3357 2003-03-29  John Levon  <levon@movementarian.org>
3358
3359         * lyxfunc.C: safety check for C-r (revert)
3360
3361 2003-03-29  John Levon  <levon@movementarian.org>
3362
3363         * bufferlist.h:
3364         * bufferlist.C: several UI fixes using Alert::prompt.
3365         Fix the pointless looping quit code. Fix stupid revert
3366         behaviour (bug 938)
3367
3368         * lyxvc.h:
3369         * lyxvc.C:
3370         * lyx_cb.C: use Alert::prompt
3371
3372         * lyx_main.C: remove a silly question
3373
3374         * lyxfunc.C: remove a couple of silly questions,
3375         use Alert::prompt
3376
3377 2003-03-28  John Levon  <levon@movementarian.org>
3378
3379         * text2.C: fix bug 974 (End on empty par)
3380
3381 2003-03-28  John Levon  <levon@movementarian.org>
3382
3383         * BufferView_pimpl.C:
3384         * LyXAction.C:
3385         * lfuns.h: remove do-nothing math greek lfuns
3386
3387 2003-03-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
3388
3389         * lyxgluelength.h (isValidGlueLength): add default arg on
3390         parameter 2. Remove default arg from friend in class.
3391
3392         * lyxlength.h (isValidLength): add default arg on parameter 2.
3393         Remove default arg from friend in class.
3394
3395         * text2.C (LyXText): adjust, initialize refresh_row.
3396         (init): adjust
3397         (removeRow): adjust
3398         (insertRow): adjust
3399         (insertParagraph): adjst
3400         (redoParagraphs): adjust
3401         (fullRebreak): adjust
3402         (updateCounters): adjust
3403         (deleteEmptyParagraphMechanism): first attempt at fixing a
3404         crashing bug.
3405
3406         * text.C (top_y): adjust
3407         (setHeightOfRow): adjust
3408         (getRow): adjust
3409         (getRowNearY): adjust
3410
3411         * lyxtext.h: include RowList.h
3412         (~LyXText): not needed anymore, deleted.
3413         (firstRow): modify for RowList
3414         (lastRow): new function
3415         Delete firstrow and lastrow class variables, add a Rowlist
3416         rowlist_ class variable.
3417
3418         * lyxrow.C (lastPos): use empty() and not !size() to check if a
3419         paragraph is empty.
3420
3421         * RowList.C (insert): fix case where it == begin().
3422
3423 2003-03-26  Angus Leeming  <leeming@lyx.org>
3424
3425         * BufferView_pimpl.C (dispatch): changes to the Dialogs interface for
3426         the thesaurus dialog.
3427
3428 2003-03-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
3429
3430         * Makefile.am (lyx_SOURCES): add RowList.[Ch]
3431
3432         * RowList.[Ch]: new files
3433
3434         * ParagraphList.C (erase): handle the case where it == begin
3435         correctly.
3436
3437 2003-03-25  John Levon  <levon@movementarian.org>
3438
3439         * Makefile.am:
3440         * aspell_local.h:
3441         * aspell.C: add new aspell support
3442
3443         * lyxrc.h:
3444         * lyxrc.C: Make use_pspell be use_spell_lib. Always
3445         have it accessible.
3446
3447 2003-03-25  Angus Leeming  <leeming@lyx.org>
3448
3449         * lfuns.h:
3450         * LyXAction.C (init): new LFUN_INSET_INSERT.
3451
3452         * BufferView_pimpl.C (dispatch): split out part of the
3453         LFUN_INSET_APPLY block LFUN_INSET_INSERT.
3454
3455         * factory.C (createInset): act on LFUN_INSET_INSERT rather than
3456         LFUN_INSET_APPLY.
3457
3458 2003-03-25  Angus Leeming  <leeming@lyx.org>
3459
3460         * lyxfunc.C (dispatch): changes to the Dialogs interface.
3461
3462 2003-03-25  Alfredo Braunstein  <abraunst@libero.it>
3463
3464         * text2.C:
3465         * text3.C: remove useless row->height(0)
3466
3467 2003-03-25  John Levon  <levon@movementarian.org>
3468
3469         * lyxtext.h:
3470         * text2.C:
3471         * text3.C: rename the refreshing stuff to better names
3472
3473 2003-03-24  John Levon  <levon@movementarian.org>
3474
3475         * BufferView_pimpl.h:
3476         * BufferView_pimpl.C: update layout choice on a mouse
3477         press/release
3478
3479 2003-03-23  John Levon  <levon@movementarian.org>
3480
3481         * Makefile.am: fix commandtags.h reference
3482
3483 2003-03-22  John Levon  <levon@movementarian.org>
3484
3485         * BufferView_pimpl.C:
3486         * lyxtext.h:
3487         * rowpainter.C:
3488         * rowpainter.h:
3489         * text.C:
3490         * text2.C: remove CHANGED_IN_DRAW, it cannot happen now
3491
3492 2003-03-21  Alfredo Braunstein  <abraunst@libero.it>
3493
3494         * lyxtext.h:
3495         * text.C: take the rtl methods out of line
3496
3497 2003-03-21 André Pönitz <poenitz@gmx.net>
3498
3499         * metricsinfo.[Ch]: new files containing structures to be passed around
3500         during the two-phase-drawing...
3501
3502 2003-03-21 André Pönitz <poenitz@gmx.net>
3503
3504         * lyxtextclass.C: read 'environment' tag.
3505
3506 2003-03-20  Alfredo Braunstein  <abraunst@libero.it>
3507
3508         * text2.C (removeRow): fix bug 964
3509
3510 2003-03-20  John Levon  <levon@movementarian.org>
3511
3512         * rowpainter.C:
3513         * text.C:
3514         * text2.C: paint cleanups. Inset::update() dropped font
3515         parameter
3516
3517 2003-03-19  John Levon  <levon@movementarian.org>
3518
3519         * lyxfunc.C: only fitcursor/markDirty if available()
3520
3521 2003-03-19  John Levon  <levon@movementarian.org>
3522
3523         * commandtags.h: rename to ...
3524
3525         * lfuns.h: ... this, and renumber / cleanup
3526
3527 2003-03-19  John Levon  <levon@movementarian.org>
3528
3529         * lyxfunc.C: mark buffer dirty if we executed a "dirtying" lfun.
3530         fit the cursor after an lfun
3531
3532         * BufferView.h:
3533         * BufferView.C:
3534         * BufferView_pimpl.h:
3535         * BufferView_pimpl.C: remove BufferView::FITCUR/CHANGE
3536
3537         * LyXAction.C: layout-character should have ReadOnly
3538
3539         * ParagraphParameters.C:
3540         * buffer.C:
3541         * bufferview_funcs.C:
3542         * lyx_cb.C:
3543         * lyxfind.C:
3544         * lyxtext.h:
3545         * text.C:
3546         * text2.C:
3547         * text3.C:
3548         * undo_funcs.C: changes from above
3549
3550 2003-03-18  John Levon  <levon@movementarian.org>
3551
3552         * BufferView_pimpl.C (scrollDocView): add updateLayoutChoice(),
3553         remove it from update()
3554
3555         * lyxfunc.C: update layout choice after an lfun
3556
3557         * text3.C: remove extra updateLayoutChoice()s
3558
3559 2003-03-18  John Levon  <levon@movementarian.org>
3560
3561         * text.C: top_y change means full repaint, fix
3562         a drawing bug with cursor movement
3563
3564 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
3565
3566         * lyxtext.h:
3567         * text.C:
3568         * text2.C: anchor row on setCursor
3569
3570 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
3571
3572         * lyxtext.h: remove almost all mutable keywords
3573         * text.C:
3574         * text2.C:
3575         * text3.C: remove const keywords accordingly
3576
3577 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
3578
3579         * paragraph_funcs.C (TeXDeeper): reduce number of args, move into
3580         anon namespace
3581         (TeXEnvironment): ditto
3582         (TeXOnePar): ditto
3583
3584 2003-03-17  John Levon  <levon@movementarian.org>
3585
3586         * text.C (rowBreakPoint): remove attempt to fix displayed
3587         math insets inside a manual label
3588
3589 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
3590
3591         * lyxtext.h: remove BufferView* as first arg from almost all class
3592         functions.
3593         * other files: adjust.
3594
3595 2003-03-17  John Levon  <levon@movementarian.org>
3596
3597         * lyxtext.h:
3598         * undo_funcs.C:
3599         * text2.C: more paint cleanups
3600
3601         * BufferView_pimpl.C: screen prototype changed, use postPaint etc.
3602
3603         * rowpainter.h:
3604         * rowpainter.C: remove "smart" background painting code
3605
3606 2003-03-16  John Levon  <levon@movementarian.org>
3607
3608         * lyxtext.h:
3609         * text.C:
3610         * text2.C:
3611         * text3.C: add helper functions for setting refresh_row/y
3612
3613 2003-03-14  Kayvan Sylvan  <kayvan@sylvan.com>
3614
3615         * paragraph_pimpl.C (simpleTeXSpecialChars): Added fix for the
3616         newline inset which *can* get inserted in the pass_thru layouts.
3617         This is primarily for literate documents.
3618
3619 2003-03-14  Dekel Tsur  <dekelts@tau.ac.il>
3620
3621         * buffer.C: increment LYX_FORMAT to 223
3622
3623 2003-03-14 André Pönitz <poenitz@gmx.net>
3624
3625         * textclass.h: prepare for environment handling, ws changes
3626         * lyxlayout.C: read latexheader and latexfooter tags
3627
3628 2003-03-14  John Levon  <levon@movementarian.org>
3629
3630         * text2.C: rewrite ::status() a bit
3631
3632 2003-03-13  John Levon  <levon@movementarian.org>
3633
3634         * lyxtext.h: add some docs
3635
3636 2003-03-13  John Levon  <levon@movementarian.org>
3637
3638         * lyxtext.h:
3639         * text.C:
3640         * text2.C:
3641         * text3.C: remove pointless 2nd arg to setHeightOfParagraph()
3642
3643 2003-03-13  John Levon  <levon@movementarian.org>
3644
3645         * text3.C: fix appendix redrawing
3646
3647 2003-03-13  John Levon  <levon@movementarian.org>
3648
3649         * text.C (setHeightOfRow):
3650         * rowpainter.h:
3651         * rowpainter.C: make appendix mark have the text
3652           "Appendix" so the user knows what it is
3653
3654         * LColor.h:
3655         * LColor.C: s/appendixline/appendix/ from above
3656
3657 2003-03-13  John Levon  <levon@movementarian.org>
3658
3659         * paragraph_pimpl.C: fix Andre's backing out of the strong assertion
3660
3661         * text.C: fix a getChar(pos) bug properly
3662
3663 2003-03-13  Angus Leeming  <leeming@lyx.org>
3664
3665         * commandtags.h:
3666         * LyXAction.C (init): new LFUNs PARAGRAPH_APPLY and PARAGRAPH_UPDATE.
3667         Probably only temporary. Let's see how things pan out.
3668
3669         * BufferView.C (unlockInset):
3670         * BufferView_pimpl.C (fitCursor):
3671         replace Dialogs::updateParagraph with dispatch(LFUN_PARAGRAPH_UPDATE).
3672
3673         * BufferView_pimpl.C (dispatch): code for LFUNs LAYOUT_PARAGRAPH,
3674         PARAGRAPH_UPDATE, PARAGRAPH_APPLY.
3675
3676         * ParagraphParameters.[Ch] (setParagraphParams, params2string):
3677         new functions that convert ParagraphParameters to and from a string.
3678
3679         * lyxfunc.C (dispatch): move LFUN_LAYOUT_PARAGRAPH to
3680         BufferView::Pimpl's dispatch.
3681         In LFUN_ESCAPE, dispatch LFUN_PARAGRAPH_UPDATE.
3682
3683 2003-03-13 André Pönitz <poenitz@gmx.net>
3684
3685         * lyxfunc.C:
3686         * text3.C:
3687         * factory.C: make it aware of InsetEnv
3688
3689 2003-03-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
3690
3691         * text2.C (setCursor): never ask for one past last
3692         (setCursor): add some debugging messages.
3693
3694         * text.C (singleWidth): never ask for one past last
3695         (singleWidth): ditto
3696         (leftMargin): ditto
3697         (rightMargin): ditto
3698         (rowBreakPoint): ditto
3699         (setHeightOfRow): ditto
3700         (prepareToPrint): ditto
3701
3702         * rowpainter.C (paintBackground): never ask for one past last
3703         (paintText): never ask for one past last
3704
3705         * paragraph_pimpl.C (getChar): make the assert stricter, never
3706         allow the one past last pos to be taken
3707
3708         * paragraph.C (getChar): ws changes only
3709
3710         * lyxrow.C (nextRowIsAllInset): never ask for one past last
3711         (numberOfSeparators): ditto
3712         (numberOfHfills): ditto
3713
3714 2003-03-12  John Levon  <levon@movementarian.org>
3715
3716         * author.h:
3717         * author.C:
3718         * bufferparams.h:
3719         * bufferparams.C:
3720         * paragraph_funcs.C: fix per-buffer authorlists
3721
3722 2003-03-12  John Levon  <levon@movementarian.org>
3723
3724         * text.C: fix newline in right address
3725
3726 2003-03-12  Angus Leeming  <leeming@lyx.org>
3727
3728         * BufferView_pimpl.C (dispatch): remove LFUNs from switch as they
3729         duplicate those in LyXFunc::dispatch.
3730
3731         * commandtags.h:
3732         * LyXAction.C:
3733         * ToolbarDefaults.C:
3734         rename LFUN_FREE as LFUN_FONTFREE_APPLY.
3735         Add LFUN_FONTFREE_UPDATE.
3736
3737         * lyxfunc.C (dispatch): code for LFUN_FREEFONT_APPLY,
3738         LFUN_FREEFONT_UPDATE, LFUN_LAYOUT_CHARACTER.
3739
3740         * bufferview_func.[Ch]: several new functions to facilliate
3741         transfer of data to and from the character dialog.
3742
3743 2003-03-12  John Levon  <levon@movementarian.org>
3744
3745         * buffer.C:
3746         * paragraph.h:
3747         * paragraph.C:
3748         * paragraph_funcs.C:
3749         * paragraph_pimpl.C:
3750         * sgml.C:
3751         * tabular.C:
3752         * text.C:
3753         * text3.C: remove META_NEWLINE in favour of an inset
3754
3755         * rowpainter.h:
3756         * rowpainter.C: remove paintNewline (done by inset)
3757
3758 2003-03-12  John Levon  <levon@movementarian.org>
3759
3760         * paragraph_pimpl.C: complain about bad getChar()s
3761         for a while at least
3762
3763 2003-03-12  John Levon  <levon@movementarian.org>
3764
3765         * buffer.h:
3766         * buffer.C: move paragraph read into a separate function,
3767         a little renaming to reflect that.
3768
3769         * bufferparams.h:
3770         * bufferparams.C: remove the author_ids map, not necessary now
3771
3772         * factory.h:
3773         * factory.C: moved Buffer::readInset to here
3774
3775         * paragraph_funcs.h:
3776         * paragraph_funcs.C: readParagraph free function moved from
3777         buffer.C
3778
3779         * tabular.C: name change
3780
3781 2003-03-12  John Levon  <levon@movementarian.org>
3782
3783         * buffer.C:
3784         * ParagraphParameters.C: move par params input to
3785         a read() method
3786
3787         * lyxlex_pimpl.C: make nextToken()/next() after a pushToken()
3788         behave like a normal read from the stream wrt reading
3789         a line vs. a \\token
3790
3791 2003-03-12  John Levon  <levon@movementarian.org>
3792
3793         * paragraph.C:
3794         * ParagraphParameters.h:
3795         * ParagraphParameters.C: move output code to a
3796         ::write() method
3797
3798 2003-03-12  John Levon  <levon@movementarian.org>
3799
3800         * BufferView.C (insertLyXFile):
3801         * buffer.h:
3802         * buffer.C:
3803         * tabular.C: use a parlist iterator for creating the
3804           document.
3805
3806 2003-03-12  John Levon  <levon@movementarian.org>
3807
3808         * buffer.C: make current_change static local not
3809           static file-scope
3810
3811 2003-03-12  John Levon  <levon@movementarian.org>
3812
3813         * buffer.C: fix insertStringAsLines for change tracking
3814
3815 2003-03-12  John Levon  <levon@movementarian.org>
3816
3817         * BufferView.C:
3818         * tabular.C:
3819         * buffer.h:
3820         * buffer.C:
3821         * bufferparams.h:
3822         * bufferparams.C: move author list into params. Rename some
3823           functions. Move the header reading into a separate token
3824           loop. Move the header token reading into BufferParams.
3825
3826 2003-03-12  John Levon  <levon@movementarian.org>
3827
3828         * changes.C: put debug inside lyxerr.debugging() checks
3829
3830 2003-03-11 André Pönitz <poenitz@gmx.net>
3831
3832         * factory.C: make it aware of InsetHFill
3833
3834 2003-03-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3835
3836         * buffer.C (latexParagraphs): move function from here...
3837         * paragraph_funcs.C (latexParagraphs): ...to here, and adjust
3838         args.
3839
3840 2003-03-10  Angus Leeming  <leeming@lyx.org>
3841
3842         * LyXAction.C (init): fix bug in poplating array with multiple entries
3843         with the same LFUN (spotted by JMarc).
3844
3845 2003-03-10  John Levon  <levon@movementarian.org>
3846
3847         * text.C:
3848         * text2.C: move getColumnNearX() near its
3849         only call site
3850
3851 2003-03-10  John Levon  <levon@movementarian.org>
3852
3853         * text.C: fix break before a minipage
3854
3855 2003-03-10  John Levon  <levon@movementarian.org>
3856
3857         * text.C: fix the last commit
3858
3859 2003-03-09  John Levon  <levon@movementarian.org>
3860
3861         * lyxtext.h:
3862         * text.C:
3863         * text2.C: clean up nextBreakPoint (now rowBreakPoint). Fix
3864         bug 365 (don't break before insets unless needed). Don't
3865         return a value > last under any circumstances.
3866
3867 2003-03-09  Angus Leeming  <leeming@lyx.org>
3868
3869         * BufferView_pimpl.C (trackChanges, dispatch): call
3870         Dialogs::show("changes") rather than Dialogs::showMergeChanges().
3871
3872 2003-03-09  Angus Leeming  <leeming@lyx.org>
3873
3874         * lyxfunc.C (dispatch): call Dialogs::show("about") rather
3875         than Dialogs::showAboutlyx().
3876
3877 2003-03-09  Angus Leeming  <leeming@lyx.org>
3878
3879         * factory.C (createInset): call Dialogs::show("tabularcreate") rather
3880         than Dialogs::showTabularCreate().
3881
3882 2003-03-09  John Levon  <levon@movementarian.org>
3883
3884         * lyxtext.h:
3885         * text.C:
3886         * text2.C: 3rd arg to nextBreakPoint was always the same.
3887           Use references.
3888
3889 2003-03-08  John Levon  <levon@movementarian.org>
3890
3891         * lyxrow.C:
3892         * paragraph.C:
3893         * paragraph.h:
3894         * rowpainter.C:
3895         * text.C:
3896         * text2.C: Remove the "main" bit from the "main body"
3897           notion.
3898
3899 2003-03-08  John Levon  <levon@movementarian.org>
3900
3901         * text.C (leftMargin): The left margin of an empty
3902         manual label paragraph should not include the label width
3903         string length.
3904
3905         * text.C (prepareToPrint): don't attempt to measure hfills
3906         for empty manual label paragraphs - the answer should be 0
3907
3908 2003-03-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
3909
3910         * CutAndPaste.C: remove commented code and reindent.
3911
3912 2003-03-08  John Levon  <levon@movementarian.org>
3913
3914         * lyxfunc.h:
3915         * lyxfunc.C: move reloadBuffer()
3916
3917         * BufferView.h:
3918         * BufferView.C: to here
3919
3920         * lyxvc.C: add comment
3921
3922         * vc-backend.h:
3923         * vc-backend.C: call bv->reload() to avoid
3924           getStatus() check on MENURELOAD
3925
3926 2003-03-07  Dekel Tsur  <dekelts@tau.ac.il>
3927
3928         * LaTeX.C (run): Fix a bug where the DVI file was not updated due
3929         to an old format .dep file.
3930
3931 2003-03-07  Angus Leeming  <leeming@lyx.org>
3932
3933         * text3.C (dispatch): remove the 'gross hack' of calling inset->edit
3934         when the LFUN_MOUSE_RELEASE should have been handled by
3935         inset->localDispatch.
3936
3937 2003-03-07  Angus Leeming  <leeming@lyx.org>
3938
3939         * BufferView_pimpl.C (dispatch):
3940         * LyXAction.C (init):
3941         * ToolbarDefaults.C (init):
3942         * commandtags.h:
3943         * lyxfunc.C (getStatus):
3944         remove LFUN_INSET_GRAPHICS.
3945
3946         * factory.C (createInset): add "graphics" to LFUN_INSET_APPLY.
3947
3948 2003-03-07  Angus Leeming  <leeming@lyx.org>
3949
3950         * commandtags.h:
3951         * LyXAction.C (init):
3952         * lyxfunc.C (getStatus): remove LFUN_REF_INSERT.
3953
3954         * lyxfunc.C (getStatus): add LFUN_DIALOG_SHOW_NEW_INSET to switch.
3955
3956         * commandtags.h:
3957         * LyXAction.C: add LFUN_INSET_DIALOG_UPDATE.
3958
3959         * lyxfunc (dispatch): on LFUN_DIALOG_UPDATE, pass the 'open' inset's
3960         localDispatch method LFUN_INSET_DIALOG_UPDATE.
3961
3962 2003-03-07  Angus Leeming  <leeming@lyx.org>
3963
3964         * lyxfunc.C (dispatch): add "include" to LFUN_SHOW_NEW_INSET and
3965         remove "ert".
3966
3967 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
3968
3969         * ParagraphList.C (front): new function
3970         (back): implement
3971
3972 2003-03-06  Alfredo Braunstein  <abraunst@libero.it>
3973
3974         * lyxtext.h (top_y): added these 2 methods, and private vars top_row_
3975         and top_row_offset_. removed var first_y.
3976         * text.C (top_y):
3977         * text2.C (LyXText, removeRow):
3978         * text3.C:
3979         * BufferView_pimpl.C:
3980         use these methods instead of using first_y
3981
3982 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
3983
3984         * text2.C (pasteSelection): adjust for checkPastePossible
3985
3986         * CutAndPaste.C: remove Paragraph * buf and replace with
3987         ParagraphList paragraphs.
3988         (DeleteBuffer): delete
3989         (cutSelection): change the tc type to textclass_type
3990         (copySelection): change the tc type to textclass_type
3991         (copySelection): adjust for ParagraphList
3992         (pasteSelection): change the tc type to textclass_type
3993         (pasteSelection): adjust for Paragraphlist
3994         (nrOfParagraphs): simplify for ParagraphList
3995         (checkPastePossible): simplify for ParagraphList
3996         (checkPastePossible): remove unused arg
3997
3998         * ParagraphList.C (insert): handle the case where there are no
3999         paragraphs yet.
4000
4001         * CutAndPaste.h: make CutAndPaste a namespace.
4002
4003         * text3.C (dispatch): adjust
4004
4005         * text.C (breakParagraph): add a ParagraphList as arg
4006
4007         * paragraph_funcs.C (breakParagraph): change to take a
4008         BufferParams and a ParagraphList as args.
4009         (breakParagraphConservative): ditto
4010         (mergeParagraph): ditto
4011         (TeXDeeper): add a ParagraphList arg
4012         (TeXEnvironment): ditto
4013         (TeXOnePar): ditto
4014
4015         * buffer.C (readLyXformat2): adjust
4016         (insertStringAsLines): adjust
4017         (latexParagraphs): adjust
4018
4019         * CutAndPaste.C (cutSelection): use 'true' not '1' as truth value.
4020         (cutSelection): adjust
4021         (pasteSelection): adjust
4022
4023         * BufferView_pimpl.C (insertInset): adjust
4024
4025 2003-03-05  Angus Leeming  <leeming@lyx.org>
4026
4027         * commandtags.h:
4028         * LyXAction.C (init):
4029         * BufferView_pimpl.C (dispatch):
4030         * lyxfunc.C (getStatus):
4031         remove LFUN_CHILD_INSERT.
4032
4033         * factory.C (createInset): add "include" to LFUN_INSET_APPLY.
4034
4035 2003-03-05  Angus Leeming  <leeming@lyx.org>
4036
4037         * commandtags.h:
4038         * LyXAction.C (init):
4039         * src/factory.C (createInset):
4040         * lyxfunc.C (getStatus):
4041         * text3.C (dispatch):
4042         remove LFUN_INSET_EXTERNAL and LFUN_INSERT_URL
4043
4044         * factory.C (createInset): add "external" to LFUN_INSET_APPLY.
4045
4046 2003-03-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
4047
4048         * ParagraphList.C (insert): handle insert right before end()
4049         (erase): fix cases where it can be first or last paragraph.
4050
4051 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4052
4053         * paragraph_funcs.C (TeXEnvironment): remove all usage of
4054         Paragraph::next and Paragraph::previous
4055         (TeXOnePar): ditto
4056
4057         * text.C (breakParagraph): adjust
4058
4059         * paragraph_funcs.C (breakParagraph): take a Buffer* instead of a
4060         BufferParams& as arg.
4061         (breakParagraph): use ParagraphList::insert
4062         (breakParagraphConservative): take a Buffer* instead of a
4063         BufferParams& as arg.
4064         (breakParagraphConservative): use ParagraphList::insert.
4065
4066         * buffer.C (insertStringAsLines): un-const it
4067         (insertStringAsLines): adjust
4068
4069         * ParagraphList.C (insert): new function
4070
4071         * CutAndPaste.C (pasteSelection): adjust
4072
4073         * text.C (backspace): adjust
4074
4075         * tabular.C (SetMultiColumn): adjust
4076
4077         * CutAndPaste.C (cutSelection): adjust
4078         (pasteSelection): adjust
4079
4080         * tabular.C (SetMultiColumn): make it take a Buffer* instead of a
4081         Buffer const * as arg
4082
4083         * ParagraphList.C (erase): new function
4084         * paragraph_funcs.C (mergeParagraph): use it
4085         (mergeParagraph): make it take a Buffer* instead of a
4086         BufferParams* as arg
4087
4088         * paragraph_funcs.C (breakParagraph): take ParagraphList::iterator
4089         as arg
4090         (breakParagraphConservative): ditto
4091
4092         * paragraph.h: remove the breakParagraph friend
4093
4094         * paragraph.C (eraseIntern): new function
4095         (setChange): new function
4096
4097         * paragraph_funcs.C (mergeParagraph): make it take a
4098         ParagraphList::iterator instead of a Paragraph *, adjust
4099         accordingly.
4100
4101         * paragraph.h: move an #endif so that the change tracking stuff
4102         also works in the NO_NEXT case.
4103
4104 2003-03-04  Angus Leeming  <leeming@lyx.org>
4105
4106         * commandtags.h:
4107         * LyXAction.C: new LFUN_INSET_MODIFY.
4108
4109         * BufferView_pimpl.C (dispatch): if an inset is found to be open
4110         on LFUN_INSET_APPLY, pass LFUN_INSET_MODIFY to its localDispatch.
4111
4112 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4113
4114         * several files: ws changes only
4115
4116         * paragraph_funcs.C (TeXOnePar): take ParagraphList::iterator as args
4117         (TeXEnvironment): ditto
4118         (TeXDeeper): ditto
4119
4120         * buffer.C (makeLaTeXFile): adjust
4121         (latexParagraphs): make it take ParagraphList::iterator as args
4122
4123 2003-03-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
4124
4125         * buffer.C (latexParagraphs): adjust
4126
4127         * paragraph.C (TeXOnePar): move function...
4128         (optArgInset): move function...
4129         (TeXEnvironment): move function...
4130         * paragraph_pimpl.C (TeXDeeper): move function...
4131         * paragraph_funcs.C: ...here
4132
4133         * tabular.C (UseParbox): rewrite to use ParagraphList iterators.
4134
4135 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4136
4137         * buffer.C (readInset): remove compability code for old Figure and
4138         InsetInfo insets
4139
4140 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4141
4142         * buffer.C: ws changes
4143         (readInset):
4144
4145         * BufferView_pimpl.C: ditto
4146         * author.C: ditto
4147         * buffer.h: ditto
4148         * bufferlist.h: ditto
4149         * changes.h: ditto
4150         * lyxfunc.C: ditto
4151
4152 2003-02-28  Alfredo Braunstein <abraunst@libero.it>
4153
4154         * converter.[Ch]: split into itself +
4155         * graph.[Ch]
4156         * format.[Ch]
4157         * Makefile.am: += graph.[Ch] + format.[Ch]
4158         * MenuBackend.C
4159         * buffer.C
4160         * exporter.C
4161         * importer.C
4162         * lyx_main.C
4163         * lyxfunc.C
4164         * lyxrc.C: added #include "format.h"
4165
4166 2003-02-27  Angus Leeming  <leeming@lyx.org>
4167
4168         * BufferView_pimpl.C (dispatch): call a real, LyX dialog to insert
4169           a label.
4170
4171         * factory.C (createInset): add "label" to the factory.
4172
4173         * lyx_cb.[Ch] (getPossibleLabel): rewrite MenuInsertLabel to return the
4174           string and do no more.
4175
4176 2003-02-27  Angus Leeming  <leeming@lyx.org>
4177
4178         * commandtags.h:
4179         * LyXAction.C (init):
4180         * factory.C (createInset):
4181         * BufferView_pimpl.C (dispatch):
4182           collapse LFUN_XYZ_APPLY to LFUN_INSET_APPLY.
4183
4184         * lyxfunc.C (getStatus): remove LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY.
4185
4186         * lyxfunc.C (dispatch):
4187         * text3.C (dispatch): pass name to params2string.
4188
4189 2003-02-26  Angus Leeming  <leeming@lyx.org>
4190
4191         * BufferView_pimpl.C (dispatch): collapse the various LFUN_XYZ_APPLY
4192           blocks together.
4193           Rearrange the ~includes. Strip out the unnecessary ones.
4194
4195         * factory.C (createInset): reformat.
4196           create new insets for the various LFUN_XYZ_APPLY lfuns.
4197
4198 2003-02-26  John Levon  <levon@movementarian.org>
4199
4200         * lyxrow.h:
4201         * lyxrow.C: add isParStart,isParEnd helpers
4202
4203         * paragraph.h: make isInserted/DeletedText take refs
4204
4205         * paragraph_funcs.h:
4206         * paragraph_funcs.C: remove #if 0'd code
4207
4208         * lyxtext.h:
4209         * text3.C:
4210         * text2.C:
4211         * text.C: use lyxrow helpers above.
4212           Move draw and paint routines to RowPainter.
4213           Make several methods use refs not pointers.
4214           Make backgroundColor() const.
4215           Add markChangeInDraw(), isInInset().
4216           Merge changeRegionCase into changeCase.
4217           Make workWidth() shouldn't-happen code into an Assert.
4218
4219         * rowpainter.h:
4220         * rowpainter.C: new class for painting a row.
4221
4222         * vspace.h:
4223         * vspace.C: make inPixels take a ref
4224
4225 2003-02-26  Angus Leeming  <leeming@lyx.org>
4226
4227         * BufferView_pimpl.C (dispatch): use InsetCommand::localDispatch for
4228         LFUN_REF_APPLY.
4229
4230 2003-02-25  John Levon  <levon@movementarian.org>
4231
4232         * ispell.C: give the forked command a more accurate name
4233
4234 2003-02-22  John Levon  <levon@movementarian.org>
4235
4236         * toc.h:
4237         * toc.C: make TocItem store an id not a Paragraph *
4238           (bug #913)
4239
4240 2003-02-21  Angus Leeming  <leeming@lyx.org>
4241
4242         * commandtags.h: Retire LFUN_CITATION_INSERT, LFUN_CITATION_CREATE,
4243           LFUN_INSERT_BIBTEX, LFUN_BIBTEX_STYLE, LFUN_BIBDB_ADD, LFUN_BIBDB_DEL.
4244           Bring to life LFUN_DIALOG_SHOW_NEW_INSET, LFUN_DIALOG_SHOW_NEXT_INSET,
4245           LFUN_DIALOG_UPDATE, LFUN_DIALOG_HIDE, LFUN_DIALOG_DISCONNECT_INSET,
4246           LFUN_BIBITEM_APPLY, LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY,
4247           LFUN_INDEX_APPLY, LFUN_REF_APPLY, LFUN_TOC_APPLY, LFUN_URL_APPLY,
4248
4249         * BufferView_pimpl.C (dispatch):
4250         * LyXAction.C (init):
4251         * factory.C (createInset):
4252         * lyxfunc.C (getStatus, dispatch):
4253         * text3.C (dispatch): retire old LFUNs and bring new ones to life.
4254
4255 2003-02-21  Angus Leeming  <leeming@lyx.org>
4256
4257         * BufferView_pimpl.C (MenuInsertLyXFile):
4258         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
4259         * lyxfunc.C (menuNew, open, doImport):
4260           no longer pass a LyXView & to fileDlg.
4261
4262 2003-02-21  Angus Leeming  <leeming@lyx.org>
4263
4264         * BufferView_pimpl.C: replace insetbib.h with insetbibtex.h.
4265         * LyXAction.C: change, BIBKEY to BIBITEM.
4266         * buffer.C: replace insetbib.h with insetbibitem.h and insetbibtex.h.
4267         Change InsetBibKey to InsetBibitem.
4268         Change BIBKEY_CODE to BIBITEM_CODE.
4269         * commandtags.h: change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
4270         * factory.C: replace insetbib.h with insetbibitem.h.
4271         Change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
4272         * paragraph.C: replace insetbib.h with insetbibitem.h.
4273         * paragraph.[Ch]: change InsetBibKey to InsetBibitem.
4274         Change bibkey() to bibitem().
4275         * text.C: remove insetbib.h.
4276         * text2.C: replace insetbib.h with insetbibitem.h.
4277         change bibkey() to bibitem().
4278         * text3.C: remove insetbib.h.
4279         change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
4280
4281 2003-02-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4282
4283         * lyxrc.C (output): enclose user email in quotes (in case there are
4284         several words)
4285
4286 2003-02-18  John Levon  <levon@movementarian.org>
4287
4288         * buffer.h: add std::
4289
4290 2003-02-17  John Levon  <levon@movementarian.org>
4291
4292         * SpellBase.h:
4293         * ispell.h:
4294         * ispell.C:
4295         * pspell.h:
4296         * pspell.C: reworking. Especially in ispell, a large
4297           number of clean ups and bug fixes.
4298
4299         * lyxfunc.C: fix revert to behave sensibly
4300
4301 2003-02-17 André Pönitz <poenitz@gmx.net>
4302
4303         * LyXAction.C:
4304         * commandtags.h: new LFUN_INSERT_BIBKEY
4305
4306         * layout.h:
4307         * lyxlayout.C:
4308         * buffer.C:
4309         * factory.C:
4310         * text.C:
4311         * text2.C:
4312         * text3.C:
4313         * paragraph.[Ch]:
4314         * paragraph_func.C: remove special bibkey handling
4315
4316 2003-02-17  John Levon  <levon@movementarian.org>
4317
4318         * text.C (Delete): fix case where delete at the end of
4319           the very first paragraph would not merge the pars
4320
4321 2003-02-17  John Levon  <levon@movementarian.org>
4322
4323         * lyxrow.C: fix lastPrintablePos()
4324
4325 2003-02-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4326
4327         * bufferparams.C (writeLaTeX): add a std:here
4328
4329         * buffer.C: and remove a using directive there
4330
4331 2003-02-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4332
4333         * buffer.C (makeLaTeXFile): move the code that generates the
4334           preamble...
4335
4336         * bufferparams.C (writeLaTeX): ... in this new method
4337
4338         * LaTeXFeatures.C (getEncodingSet): make const
4339           (getLanguages): make const
4340
4341         * MenuBackend.C (binding): returns the binding associated to this
4342           action
4343           (add): sets the status of each item by calling getStatus. Adds
4344           some intelligence.
4345           (read): add support for OptSubMenu
4346           (expand): remove extra separator at the end of expanded menu
4347
4348 2003-02-15  John Levon  <levon@movementarian.org>
4349
4350         * BufferView.C:
4351         * BufferView_pimpl.C:
4352         * bufferlist.h:
4353         * bufferlist.C: remove pointless BufferStorage bloat. Remove
4354           inset code that had no actual effect. Remove unneeded status
4355           code.
4356
4357 2003-02-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4358
4359         * buffer.C (makeLaTeXFile): fix counting of number of line feeds
4360           in preamble
4361
4362 2003-02-14  Michael Schmitt <michael.schmitt@teststep.org>
4363
4364         * text.C (drawLengthMarker): also draw an arrow marker for
4365           symbolic lengths (medskip...)
4366
4367 2003-02-14  John Levon  <levon@movementarian.org>
4368
4369         * tabular.h:
4370         * tabular.C: better method names
4371
4372 2003-02-14  John Levon  <levon@movementarian.org>
4373
4374         * BufferView_pimpl.C:
4375         * bufferlist.C:
4376         * buffer.C:
4377         * converter.C:
4378         * lyx_cb.C:
4379         * lyxfunc.C: change prohibit/allowInput to busy(bool), as
4380           it's a more accurate name. Remove some pointless uses.
4381
4382 2003-02-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4383
4384         * text2.C (LyXText): change order of initilizers to shut off
4385           warnings
4386
4387 2003-02-14  John Levon  <levon@movementarian.org>
4388
4389         * buffer.C: use ParIterator for getParFromID()
4390
4391         * paragraph.h:
4392         * paragraph.C:
4393         * paragraph_pimpl.h:
4394         * paragraph_pimpl.C: remove unused getParFromID()
4395
4396 2003-02-14  John Levon  <levon@movementarian.org>
4397
4398         * buffer.C: remove some very old #if 0'd parse code
4399
4400 2003-02-13  John Levon  <levon@movementarian.org>
4401
4402         * text.h:
4403         * text.C:
4404         * text2.C: move hfillExpansion(), numberOfSeparators(),
4405           rowLast(), rowLastPrintable(), numberofHfills(),
4406           numberOfLabelHfills() ...
4407
4408         * lyxrow.h:
4409         * lyxrow.C: ... to member functions here.
4410
4411         * paragraph.h:
4412         * paragraph.C:
4413         * lyxtext.h:
4414         * text.C: remove LyXText::beginningOfMainBody(), and call
4415           p->beginningOfMainBody() directly. Move the check for
4416           LABEL_MANUAL into the latter.
4417
4418         * text.h:
4419         * text.C:
4420         * text2.C:
4421         * vspace.C:
4422         * BufferView.h:
4423         * BufferView.C: make defaultHeight() be a free defaultRowHeight()
4424
4425         * text.h:
4426         * text.C:
4427         * text2.C:
4428         * text3.C:
4429         * frontends/screen.C: move bv_owner private, introduce isTopLevel()
4430           to make it clear we're testing for outmost-lyxtext vs. inset's lyxtext
4431
4432 2003-02-13  John Levon  <levon@movementarian.org>
4433
4434         * CutAndPaste.C: remove debug
4435
4436 2003-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4437
4438         * paragraph.C (asString): remove two unused variables
4439
4440         * lyxtextclass.C (readTitleType):
4441           (Read):
4442           (LyXTextClass): handle new members titletype_ and titlename_
4443
4444         * buffer.C (latexParagraphs): honor LyXTextClass::titletype
4445
4446 2003-02-09  John Levon  <levon@movementarian.org>
4447
4448         * buffer.h:
4449         * buffer.C: replace hand-coded list with a map for the dep clean
4450
4451 2003-02-08  John Levon  <levon@movementarian.org>
4452
4453         * LaTeX.C: consolidate code into showRunMessage() helper
4454
4455 2003-02-08  John Levon  <levon@movementarian.org>
4456
4457         * lyxfind.C:
4458         * lyxtext.h:
4459         * text2.C:
4460         * BufferView.C: change setSelectionOverString() to setSelectionRange()
4461           and pass the size in explicitly
4462
4463         * BufferView_pimpl.h:
4464         * BufferView_pimpl.C:
4465         * BufferView.h:
4466         * BufferView.C: add getCurrentChange()
4467
4468         * BufferView_pimpl.h:
4469         * BufferView_pimpl.C: handle change lfuns
4470
4471         * CutAndPaste.C: merge the cut and copy code. Rework the cut code
4472           for changes. Mark pasted paragraphs as new.
4473
4474         * support/lyxtime.h:
4475         * support/lyxtime.C:
4476         * DepTable.C: abstract time_t as lyx::time_type
4477
4478         * LColor.h:
4479         * LColor.C: add colours for new text, deleted text, changebars
4480
4481         * LaTeXFeatures.C: add dvipost as a simple feature. Make the color
4482           package use "usenames" option.
4483
4484         * commandtags.h:
4485         * lyxfunc.C:
4486         * LyXAction.C: add change lfuns
4487
4488         * Makefile.am:
4489         * author.h:
4490         * author.C: author handling
4491
4492         * buffer.h:
4493         * buffer.C: add a per-buffer author list, with first entry as
4494           current author. Handle new .lyx tokens for change tracking. Output
4495           author list to .lyx file. Output dvipost stuff to .tex preamble.
4496           Bump lyx format to 222.
4497
4498         * bufferlist.h:
4499         * bufferlist.C: add setCurrentAuthor() to reset current author details
4500           in all buffers.
4501
4502         * bufferparams.h:
4503         * bufferparams.C: add param for tracking
4504
4505         * bufferview_funcs.C: output change info in minibuffer
4506
4507         * Makefile.am:
4508         * changes.h:
4509         * changes.C: add change-tracking structure
4510
4511         * debug.h:
4512         * debug.C: add CHANGES debug flag
4513
4514         * lyxfind.h:
4515         * lyxfind.C: add code for finding the next change piece
4516
4517         * lyxrc.h:
4518         * lyxrc.C: add user_name and user_email
4519
4520         * lyxrow.h:
4521         * lyxrow.C: add a metric for the top of the text line
4522
4523         * lyxtext.h:
4524         * text.C: implement accept/rejectChange()
4525
4526         * lyxtext.h:
4527         * text.C: paint changebars. Paint new/deleted text in the chosen
4528         colours. Strike through deleted text.
4529
4530         * paragraph.h:
4531         * paragraph.C:
4532         * paragraph_pimpl.h:
4533         * paragraph_pimpl.C: output change markers in .lyx and .tex. Pass
4534           in the current change to the insert functions. Rework erase to
4535           mark text as deleted, adding an eraseIntern() and a range-based
4536           erase(). Implement per-paragraph change lookup and
4537           accept/reject.
4538
4539         * paragraph_funcs.C: Fixup paste for change tracking.
4540
4541         * tabular.C: mark added row/columns as new.
4542
4543         * text.C: fix rowLast() to never return -1. Don't allow
4544           spellchecking of deleted text. Track transpose changes. Don't
4545           allow paragraph break or merge where appropriate.
4546
4547         * text2.C: leave cursor at end of selection after a cut.
4548
4549 2003-02-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4550
4551         * text.C (getLengthMarkerHeight):
4552         (drawLengthMarker): make the `symbolic' lengths (small/med/big)
4553         visible on screen too.
4554
4555 2003-02-07  John Levon  <levon@movementarian.org>
4556
4557         * text.C: s/LYX_PAPER_MARGIN/PAPER_MARGIN/g
4558
4559 2003-02-05  Angus Leeming  <leeming@lyx.org>
4560
4561         * lyxserver.C (read_ready): revert my patch of 11 September last year
4562         as it sends PC cpu through the roof. Presumably this means that
4563         the lyxserver will no longer run on an Alpha...
4564
4565 2003-01-30  Angus Leeming  <leeming@lyx.org>
4566
4567         * factory.C (createInset): create an InsetCommandParam of type "index"
4568         and use it to 'do the right thing'.
4569
4570         * text2.C (getStringToIndex): ensure that cursor position is always
4571         reset to the reset_cursor position.
4572
4573 2003-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4574
4575         * lyxfunc.C (getStatus): "buffer-export custom" should never be
4576         disabled.
4577
4578 2003-01-20  Michael Schmitt <michael.schmitt@teststep.org>
4579
4580         * bufferview.C:
4581         * lyxcb.C:
4582         * lyxfunc.C: Output messages with identical spelling, punctuation,
4583         and spaces
4584
4585 2003-01-22  Michael Schmitt  <Michael.Schmitt@teststep.org>
4586
4587         * MenuBackend.C (expandFormats): List only viewable export formats
4588         in "View" menu
4589
4590         * buffer.C (parseSingleLyXformat2Token): Fix misleading error
4591         message
4592
4593         * lyxfunc.C (getStatus): Make sure that formats other than
4594         "fax" can also be disabled
4595
4596 2003-01-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4597
4598         * text3.C (dispatch): put the lfuns that insert insets in 3
4599         groups, and call doInsertInset with appropriate arguments.
4600         (doInsertInset): new function, that creates an inset and inserts
4601         it according to some boolean parameters.
4602
4603 2003-01-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
4604
4605         * buffer.C (readFile): remember to pass on 'par' when calling
4606         readFile recursively.
4607
4608 2003-01-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4609
4610         * MenuBackend.C (expandFormats): add "..." to import formats.
4611
4612 2003-01-15  Dekel Tsur  <dekelts@tau.ac.il>
4613
4614         * paragraph.C (asString): Remove XForms RTL hacks.
4615
4616 2003-01-13  Alfredo Braunstein <abraunst@libero.it>
4617         * buffer.C: fix typo
4618
4619 2003-01-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
4620
4621         * Makefile.am (LIBS): delete var
4622         (lyx_LDADD): add @LIBS@ here instead.
4623
4624 2003-01-08  Michael Schmitt <Michael.Schmitt@teststep.org>
4625
4626         * Clarify the meaning of "wheel mouse jump"
4627
4628 2003-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4629
4630         * lyxfunc.C (getStatus): fix disabling of cut/paste of cells in a
4631         tabular in a float
4632
4633 2003-01-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4634
4635         * importer.C (Loaders): do not preallocate 3 elements in the
4636         vector, since one ends up with 6 elements otherwise
4637
4638 2002-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4639
4640         * DepTable.C (write): write the file name as last element of the
4641         .dep file (because it may contain spaces)
4642         (read): read info in the right order
4643
4644 2003-01-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4645
4646         * paragraph_pimpl.C (simpleTeXBlanks):
4647         (simpleTeXSpecialChars):
4648         * paragraph.C (simpleTeXOnePar): make `column' unsigned.
4649
4650         * tabular.C (latex): add some missing case statements. Reindent.
4651
4652         * MenuBackend.C (expandToc): remove unused variable.
4653
4654 2003-01-06  Michael Schmitt <Michael.Schmitt@teststep.org>
4655
4656         * LColor.C:
4657         * LaTeX.C:
4658         * LyXAction.C:
4659         * MenuBackend.C:
4660         * buffer.C:
4661         * exporter.C:
4662         * lyxfunc.C:
4663         * lyxrc.C: fix inconsistent usage of spaces, colons, capitalization,
4664         and the like.
4665
4666 2003-01-05  John Levon  <levon@movementarian.org>
4667
4668         * BufferView.h:
4669         * BufferView.C: add getEncoding()
4670
4671         * kbsequence.h:
4672         * kbsequence.C: do not store last keypress
4673
4674         * lyxfunc.h:
4675         * lyxfunc.C: store last keypress here instead. Pass encoding
4676           to getISOEncoded()
4677
4678 2002-12-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4679
4680         * lyx_main.C (init): remove annoying error message when following
4681         symbolic links (bug #780)
4682
4683 2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4684
4685         * text.C (insertChar):
4686         * lyxrc.C (getDescription): remove extra spaces
4687
4688 2002-12-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4689
4690         * lyxrc.C (getDescription): remove extra spaces
4691
4692 2002-12-20  John Levon  <levon@movementarian.org>
4693
4694         * text3.C: hack fix for page up/down across tall rows
4695
4696 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4697
4698         * text2.C (pasteEnvironmentType): avoid crash if layout-copy has
4699         not been invoked
4700
4701 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4702
4703         * lyxfunc.C (getStatus): query lyx_gui::getStatus() to catter for
4704         unimplemented lfuns. Make LFUN_THESAURUS_ENTRY status unknown if
4705         thesaurus is not compiled in
4706
4707 2002-12-17  Alfredo Braunstein <abraunst@libero.it>
4708
4709         * lyxfunc.C: correct  inversion of WORDFINDBACK/FORWARD
4710
4711 2002-12-16  Angus Leeming  <leeming@lyx.org>
4712
4713         * lyxrc.[Ch]:
4714         * lyx_main.C (init): remove override_x_deadkeys stuff.
4715
4716 2002-12-12  John Levon  <levon@movementarian.org>
4717
4718         * lyxfunc.C: use LyXKeySym->isText() as last-ditch
4719           insert. Only remove shift modifier under strict
4720           circumstances.
4721
4722 2002-12-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
4723
4724         * MenuBackend.C (expandToc): fix crash.
4725
4726 2002-12-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
4727
4728         * MenuBackend.C (expandToc): gettext on float names.
4729
4730 2002-12-03  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
4731
4732         * lyxlength.[Ch]: set default unit to UNIT_NONE,
4733         implement bool empty() [bug 490]
4734
4735 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4736
4737         * text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
4738
4739 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4740
4741         * several files: ws changes
4742
4743 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4744
4745         * text2.C (setCounter): clean up a bit, use boost.format.
4746         (updateCounters): initialize par upon declaration.
4747
4748         * CutAndPaste.C (SwitchLayoutsBetweenClasses): set the layout also
4749         if the layout exists. We do not just store the layout any more.
4750         (SwitchLayoutsBetweenClasses): use boost.format
4751
4752 2002-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4753
4754         * converter.C (convert): if from and to files are the same, use a
4755         temporary files as intermediary
4756
4757 2002-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4758
4759         * commandtags.h:
4760         * LyXAction.C (init): remove LFUN_VECTOR (bug 662)
4761
4762 2002-11-27  Dekel Tsur  <dekelts@tau.ac.il>
4763
4764         * lyxrc.[Ch]: Add {roman,sans,typewriter}_font_foundry variables.
4765
4766 2002-11-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
4767
4768         * tabular.C (asciiPrintCell): use string(size, char) instead of
4769         explicit loop.
4770
4771         * sgml.C (openTag): fix order of arguments to string constructor
4772         (closeTag): ditto
4773
4774         * lyxfunc.C (dispatch): use boost.format
4775
4776         * lots of files: change "c" -> 'c'
4777
4778 2002-11-25  Dekel Tsur  <dekelts@tau.ac.il>
4779
4780         * encoding.C: Patch from Isam Bayazidi: Fix Arabic shaping.
4781
4782 2002-11-25  Angus Leeming  <leeming@lyx.org>
4783
4784         * BoostFormat.h: wrap code inside #ifdef __GNUG__ block.
4785
4786         * lyx_main.C (init): compile fix.
4787
4788 2002-11-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4789
4790         * lyx_cb.C (start): boost.formatify
4791         do not include <iostream>
4792
4793         * lengthcommon.C: ws only
4794
4795         * boost-inst.C,BoostFormat.h: add more explict instantations
4796
4797 2002-11-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
4798
4799         * lots of files: handle USE_BOOST_FORMAT
4800
4801 2002-11-21  John Levon  <levon@movementarian.org>
4802
4803         * pspell.C: fix compile
4804
4805 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4806
4807         * lyxfunc.C (dispatch): use boost::format
4808         (open): ditto
4809         (doImport): ditto
4810
4811         * lyxfont.C (stateText): use boost::format
4812
4813         * lyx_main.C (LyX): use boost::format
4814         (init): ditto
4815         (queryUserLyXDir): ditto
4816         (readRcFile): ditto
4817         (parse_dbg): ditto
4818         (typedef boost::function): use the recommened syntax.
4819
4820         * importer.C (Import): use boost::format
4821
4822         * debug.C (showLevel): use boost::format
4823
4824         * converter.C (view): use boost::format
4825         (convert): ditto
4826         (move): ditto
4827         (scanLog): ditto
4828
4829         * bufferview_funcs.C (currentState): use boost::format
4830
4831         * bufferlist.C (emergencyWrite): use boost::format
4832
4833         * buffer.C (readLyXformat2): use boost::format
4834         (parseSingleLyXformat2Token): ditto
4835
4836         * Makefile.am (lyx_SOURCES): add BoostFormat.h and boost-inst.C
4837
4838         * LaTeX.C (run): use boost::format
4839
4840         * Chktex.C (scanLogFile): use boost::format
4841
4842         * BufferView_pimpl.C (savePosition): use boost::format
4843         (restorePosition): ditto
4844         (MenuInsertLyXFile): ditto
4845
4846         * BoostFormat.h: help file for explicit instation.
4847
4848 2002-11-21  Dekel Tsur  <dekelts@tau.ac.il>
4849
4850         * tabular.C (latex): Support for block alignment in fixed width
4851         columns.
4852
4853 2002-11-17  John Levon  <levon@movementarian.org>
4854
4855         * BufferView_pimpl.C:
4856         * lyx_cb.C:
4857         * lyxfunc.C: split filedialog into open/save
4858
4859 2002-11-08  Juergen Vigna  <jug@sad.it>
4860
4861         * undo_funcs.C (textHandleUndo): fixed problems with undo introduced
4862         by my last patch (hopefully).
4863
4864 2002-11-08  John Levon  <levon@movementarian.org>
4865
4866         * iterators.h:
4867         * iterators.C:
4868         * buffer.h:
4869         * buffer.C:
4870         * paragraph.h:
4871         * paragraph.C:
4872         * toc.h:
4873         * toc.C: ParConstIterator, and use it (from Lars)
4874
4875 2002-11-07  Ben Stanley  <bds02@uow.edu.au>
4876
4877         * lyxtextclass.[Ch]: revise and add doxygen comments
4878
4879 2002-11-07  John Levon  <levon@movementarian.org>
4880
4881         * text.C: fix progress value for spellchecker
4882
4883         * toc.C: fix navigate menu for insetwrap inside minipage
4884
4885         * paragraph_funcs.C: added FIXME for suspect code
4886
4887 2002-11-07  John Levon  <levon@movementarian.org>
4888
4889         * BufferView_pimpl.C: fix redrawing of insets
4890           on buffer switch
4891
4892 2002-11-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4893
4894         * text2.C (updateCounters): fix bug 668
4895
4896 2002-11-04  Dekel Tsur  <dekelts@tau.ac.il>
4897
4898         * text3.C (dispatch): Do not make the buffer dirty when moving the
4899         cursor.
4900
4901 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4902
4903         * vc-backend.C: STRCONV
4904         (scanMaster): ditto
4905
4906         * text2.C (setCounter): STRCONV
4907
4908         * paragraph.C (asString): STRCONV
4909
4910         * lyxlength.C (asString): STRCONV
4911         (asLatexString): ditto
4912
4913         * lyxgluelength.C (asString): STRCONV
4914         (asLatexString): ditto
4915
4916         * lyxfunc.C (dispatch): STRCONV
4917         (open): ditto
4918
4919         * lyxfont.C (stateText): STRCONV
4920
4921         * importer.C (Import): STRCONV
4922
4923         * counters.C (labelItem): STRCONV
4924         (numberLabel): ditto
4925         (numberLabel): remove unused ostringstream o
4926
4927         * chset.C: STRCONV
4928         (loadFile): ditto
4929
4930         * bufferview_funcs.C (currentState): STRCONV
4931
4932         * buffer.C (readFile): STRCONV
4933         (asciiParagraph): ditto
4934         (makeLaTeXFile): ditto
4935
4936         * Spacing.C (writeEnvirBegin): STRCONV
4937
4938         * LaTeXFeatures.C (getLanguages): STRCONV
4939         (getPackages): ditto
4940         (getMacros): ditto
4941         (getBabelOptions): ditto
4942         (getTClassPreamble): ditto
4943         (getLyXSGMLEntities): ditto
4944         (getIncludedFiles): ditto
4945
4946         * LaTeX.C: STRCONV
4947         (run): ditto
4948         (scanAuxFile): ditto
4949         (deplog): ditto
4950
4951         * LString.h: add the STRCONV macros
4952
4953         * BufferView_pimpl.C (savePosition): STRCONV
4954         (restorePosition): ditto
4955         (MenuInsertLyXFile): ditto
4956
4957         * vc-backend.C (scanMaster): change from submatch[...] to
4958         submatch.str(...)
4959
4960         * funcrequest.C: include config.h
4961
4962         * factory.C: include config.h
4963
4964         * chset.C (loadFile): change from submatch[...] to submatch.str(...)
4965
4966         * box.C: include config.h
4967
4968         * LaTeX.C (scanAuxFile): change from submatch[...] to
4969         submatch.str(...)
4970         (deplog): ditto
4971
4972 2002-10-25  Angus Leeming  <leeming@lyx.org>
4973
4974         * BufferView_pimpl.C (cursorToggle): remove reapSpellchecker hack.
4975
4976         * ispell.[Ch] (setError): new method.
4977         * ispell.C (c-tor): move out child process into new class LaunchIspell.
4978         Use setError() insetead of goto END.
4979
4980         * lyx_cb.C (AutoSave): move out child process into new class
4981         AutoSaveBuffer.
4982
4983 2002-10-30  John Levon  <levon@movementarian.org>
4984
4985         * text3.C: make start appendix undoable
4986
4987 2002-10-24  Dekel Tsur  <dekelts@tau.ac.il>
4988
4989         * lyxlength.C (inPixels): Fix returned value.
4990
4991         * paragraph.C (TeXOnePar): Fix bug with language changes in nested
4992         environment.
4993
4994 2002-10-24  Angus Leeming  <leeming@lyx.org>
4995
4996         * lyxgluelength.h: no need to forward declare BufferParams
4997         or BufferView, so don't.
4998
4999 2002-10-21  John Levon  <levon@movementarian.org>
5000
5001         * BufferView.C: menuUndo ->undo, redo
5002
5003         * BufferView.h: document, remove dead, make some methods private
5004
5005         * paragraph_funcs.h:
5006         * paragraph_funcs.C:
5007         * CutAndPaste.C: s/pasteParagraph/mergeParagraph
5008
5009         * buffer.h:
5010         * buffer.C:
5011         * sgml.h:
5012         * sgml.C: move sgml open/close tag into sgml.C
5013
5014         * bufferview_funcs.h: unused prototype
5015
5016         * lyxfunc.h:
5017         * lyxfunc.C: remove unused
5018
5019         * lyxtext.h:
5020         * text.C: remove unused
5021
5022 2002-10-21  John Levon  <levon@movementarian.org>
5023
5024         * BufferView.h:
5025         * BufferView.C:
5026         * BufferView_pimpl.h:
5027         * BufferView_pimpl.C: fix mouse wheel handling based on
5028           patch from Darren Freeman
5029
5030 2002-10-09  Dekel Tsur  <dekelts@tau.ac.il>
5031
5032         * lyx_main.C (queryUserLyXDir): Fix automatic reconfiguration.
5033
5034 2002-10-17  Dekel Tsur  <dekelts@tau.ac.il>
5035
5036         * lyxlength.C (inPixels): Fix hanfling of negative length.
5037         Fix LyXLength::MU case.
5038
5039 2002-10-16  John Levon  <levon@movementarian.org>
5040
5041         * buffer.C: remove \\protected_separator parsing done by lyx2lyx now
5042
5043 2002-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5044
5045         * converter.C (view): add support for $$i (file name) and $$p
5046         (file path) for the viewer command. If $$i is not specified, then
5047         it is appended to the command (for compatibility with old syntax)
5048
5049 2002-10-14  Juergen Vigna  <jug@sad.it>
5050
5051         * undo_funcs.C (textHandleUndo): alter the order in which the
5052         new undopar is added to the LyXText, as we have to set first
5053         the right prev/next and then add it as otherwise the rebuild of
5054         LyXText is not correct. Also reset the cursor to the right paragraph,
5055         with this IMO we could remove the hack in "redoParagraphs()".
5056
5057 2002-10-09  Angus Leeming  <leeming@lyx.org>
5058
5059         * Bufferview_pimpl.C (dispatch): call InsetCitation::setLoadingBuffer
5060         to turn off an optimisation if a new inset is to be inserted.
5061
5062 2002-10-11 André Pönitz <poenitz@gmx.net>
5063
5064         * lyxtext.h: make some functions public to allow access
5065         from inset/lyxtext for handling LFUN_PRIOR/NEXT
5066
5067 2002-10-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5068
5069         * text3.C (dispatch): when changing layout, avoid an infinite loop
5070         [bug #652]
5071
5072 2002-10-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5073
5074         * lyxrc.C (read): treat a viewer or converter command of "none" as
5075         if it were empty.
5076
5077         * MenuBackend.C (expandFormats): for an update, also allow the
5078         formats that are not viewable
5079
5080         * lyx_main.C (queryUserLyXDir): re-run automatically the configure
5081         script if it is newer than the lyxrc.defaults in user directory
5082
5083 2002-10-07 André Pönitz <poenitz@gmx.net>
5084
5085         * text.C: Vitaly Lipatov's small i18n fix
5086
5087 2002-09-25  Angus Leeming  <leeming@lyx.org>
5088
5089         * ispell.h: doxygen fix.
5090
5091 2002-09-25  Dekel Tsur  <dekelts@tau.ac.il>
5092
5093         * buffer.h (readFile): Add a new argument to the method, to allow
5094         reading of old-format templates.
5095
5096 2002-09-24  Dekel Tsur  <dekelts@tau.ac.il>
5097
5098         * toc.C (getTocList): Get TOC from InsetWrap.
5099
5100 2002-09-16  John Levon  <levon@movementarian.org>
5101
5102         * lyxfunc.C: check tabular for cut/copy too
5103
5104 2002-09-12  John Levon  <levon@movementarian.org>
5105
5106         * LyXAction.C: tidy
5107
5108         * factory.h:
5109         * factory.C: add header
5110
5111         * paragraph_funcs.h:
5112         * paragraph_funcs.C: cleanup
5113
5114 2002-09-11  John Levon  <levon@movementarian.org>
5115
5116         * PrinterParams.h: odd/even default to true
5117
5118 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
5119
5120         * PrinterParams.h: update printer parameters for new xforms dialog
5121
5122 2002-09-11  Angus Leeming  <leeming@lyx.org>
5123
5124         * lyxserver.C (read_ready): re-write to make it more transparent
5125         and to make it work in coherent fashion under Tru64 Unix.
5126
5127 2002-09-11  André Pönitz <poenitz@gmx.net>
5128
5129         * commandtags.h:
5130         * LyXAction.C:
5131         * text3.C: implement LFUN_WORDSEL
5132
5133 2002-09-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
5134
5135         * lyxtextclass.h: don't include FloatList.h, forward declare instead.
5136         make floatlist_ a boost::shared_ptr<FloatList>
5137
5138         * lyxtextclass.C: include FloatList.h
5139         (LyXTextClass): initialize floatlist_
5140         (TextClassTags): add TC_NOFLOAT
5141         (Read): match "nofloat" to TC_NOFLOAT and use it.
5142         (readFloat): modify call to floatlist_
5143         (floats): ditto
5144         (floats): ditto
5145
5146         * FloatList.[Ch] (FloatList): remove commented out float
5147         initialization.
5148         (erase): new function
5149
5150 2002-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5151
5152         * MenuBackend.C (expandToc): fix crash when there is no document
5153         open
5154
5155 2002-09-10  Dekel Tsur  <dekelts@tau.ac.il>
5156
5157         * many files: Add insetwrap.
5158
5159 2002-09-09  John Levon  <levon@movementarian.org>
5160
5161         * text2.C: remove confusing and awkward depth wraparound
5162
5163 2002-09-09  John Levon  <levon@movementarian.org>
5164
5165         * BufferView_pimpl.C: Don't use empty arg for LFUN_CHILD_INSERT
5166
5167         * buffer.h:
5168         * buffer.C: remove getIncludeonlyList()
5169
5170         * paragraph.C:
5171         * lyxfunc.C: remove headers
5172
5173 2002-09-09  Juergen Vigna  <jug@sad.it>
5174
5175         * text.C (getColumnNearX): fix form Michael this is most
5176         probably a cut&paste bug.
5177
5178 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
5179
5180         * remove all INHERIT_LANG and INHERIT_LANGUAGE commented code
5181
5182         * LaTeXFeatures.C (useLayout): let tclass and lyt be a const
5183         references, ws changes.
5184
5185         * text2.C (init): update counters after init
5186         (insertParagraph): no need to set counter on idividual paragraphs.
5187         (setCounter): access the counters object in the textclass object
5188         on in the buffer object.
5189         (updateCounters): ditto
5190
5191         * lyxtextclass.C: include counters.h, add variable ctrs_ as
5192         shared_ptr<Counters> to avoid loading counters.h in all
5193         compilation units.
5194         (LyXTextClass): initialize ctrs_
5195         (TextClassTags): add TC_COUNTER, and ...
5196         (Read): use it here.
5197         (CounterTags): new tags
5198         (readCounter): new function
5199         (counters): new funtion
5200         (defaultLayoutName): return a const reference
5201
5202         * counters.C (Counters): remove contructor
5203         (newCounter): remove a couple of unneeded statements.
5204         (newCounter): simplify a bit.
5205         (numberLabel): some small formatting changes.
5206
5207         * buffer.[Ch]: remove all traces of counters, move the Counters
5208         object to the LyXTextClass.
5209
5210 2002-09-06  Alain Castera  <castera@in2p3.fr>
5211
5212         * tabular.C: uses \tabularnewline; uses >{...} construct from array
5213         package to set the horizontal alignment on fixed width columns.
5214
5215         * lyx_sty.C:
5216         * lyx_sty.h: added tabularnewline macro def.
5217
5218         * LaTeXFeatures.C: added NeedTabularnewline macro feature
5219
5220 2002-09-06  John Levon  <levon@movementarian.org>
5221
5222         * LyXAction.C: tooltips for sub/superscript
5223
5224         * MenuBackend.C: a bit more verbose
5225
5226         * lyxfunc.C: tiny clean
5227
5228         * undo_funcs.C: document undo_frozen
5229
5230 2002-09-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
5231
5232         * counters.C (Counters): add missing algorithm counter.
5233
5234         * text2.C (setCounter): lookup the counter with layouts latexname
5235         instead of by section number.
5236         (setCounter): use a hackish way to lookup the correct enum
5237         counter.
5238         a float name->type change
5239         reset enum couners with counter name directly instead of depth value.
5240
5241         * counters.C (Counters): remove the push_backs, change to use the
5242         float type not the float name.
5243         (labelItem): remove unused string, float name->type change
5244
5245         * counters.h: don't include vector, loose the enums and sects vectors
5246
5247 2002-09-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
5248
5249         * lyxtextclass.C (TextClassTags): add TC_FLOAT
5250         (Read): add float->TC_FLOAT to textclassTags
5251         (Read): and handle it in the switch
5252         (readFloat): new function
5253
5254         * FloatList.C (FloatList): comment out the hardcoded float
5255         definitions.
5256
5257         * lyxlayout.h: ws change.
5258
5259 2002-08-29  Dekel Tsur  <dekelts@tau.ac.il>
5260
5261         * buffer.C (readFile): Look for lyx2lyx in LYXDIR/lyx2lyx/
5262
5263 2002-09-03  Angus Leeming  <leeming@lyx.org>
5264
5265         * BufferView_pimpl.h: qualified name is not allowed in member
5266         declaration: WorkArea & Pimpl::workarea() const;
5267
5268         * factory.C: added using std::endl directive.
5269
5270         * text3.C: added using std::find and std::vector directives.
5271
5272 2002-08-29  André Pönitz <poenitz@gmx.net>
5273
5274         * lyxtext.h:
5275         * text2.C: remove unused member number_of_rows
5276
5277         * Makefile.am:
5278         * BufferView2.C: remove file, move contents to...
5279         * BufferView.C: ... here
5280
5281         * BufferView_pimpl.C:
5282         * factory.C: move more inset creation to factory
5283
5284         * vspace.C: avoid direct usage of LyXText, ws changes
5285
5286         * BufferView.[Ch]:
5287                 don't provide direct access to WorkArea, use two simple
5288                 acessors haveSelction() and workHeight() instead
5289
5290
5291 2002-08-29  John Levon  <levon@movementarian.org>
5292
5293         * BufferView_pimpl.C (dispatch): do not continue when
5294           no buffer
5295
5296 2002-08-28  André Pönitz <poenitz@gmx.net>
5297
5298         * commandtags.h: new LFUN_MOUSE_DOUBLE, LFUN_MOUSE_TRIPLE
5299
5300         * BufferView.h:
5301         * BufferView_pimpl.[Ch] move work area mouse event to LFUNs
5302
5303 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
5304
5305         * buffer.C: increment LYX_FORMAT to 221
5306
5307         * lyxrc.[Ch]: declare display_graphics as grfx::DisplayType and use
5308         grfx::displayTranslator.find(foo); include graphics/GraphicsTypes.h.
5309
5310         * lyxrc.C: use more "if (...) { } else { }" style (John's advice).
5311
5312         * lyx_main.C: call once the setDisplayTranslator(); is that okay here?
5313
5314 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5315
5316         * factory.C (createInset): use LyXTextClass::floats
5317
5318         * MenuBackend.C (expandFloatListInsert):
5319         (expandFloatInsert):
5320         (expandToc):
5321
5322         * text2.C (setCounter):
5323
5324         * LaTeXFeatures.C (useFloat):
5325         (getFloatDefinitions):
5326
5327         * BufferView_pimpl.C (dispatch): use LyXTextClass::floats()
5328
5329         * lyxtextclass.[Ch]: rename layoutlist to layoutlist_; add
5330         floatlist_, with accessor floats().
5331
5332         * FloatList.h: remove global FloatList
5333
5334 2002-08-26  André Pönitz <poenitz@gmx.net>
5335
5336         * paragraph.[Ch]: Martin's patch for the \end_deeper bug
5337
5338         * BufferView.h:
5339         * BufferView2.C:
5340         * BufferView_pimpl.C:
5341         * text3.C: mun hanfling of LFUN_CUT/COPY/PASTE to LyXText
5342
5343 2002-08-25  John Levon  <levon@movementarian.org>
5344
5345         * LyXAction.C: fix margin note description
5346
5347 2002-08-24  John Levon  <levon@movementarian.org>
5348
5349         * buffer.C:
5350         * bufferlist.C:
5351         * bufferview_funcs.C:
5352         * lyxfont.C:
5353         * undo_funcs.C: cleanups
5354
5355         * lyxfunc.C: disable CUT/COPY when no selection
5356
5357 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
5358
5359         * lyxlength.[Ch]: use better (three letters) mnemonics for percentage units
5360         in "enum UNIT"; e.g. PTW for Percent of TextWidth
5361
5362         * lyxrc.C: graphics display is now monochrome|grayscale|color|none.
5363         Add backward compatibility to "mono", "gray" and "no".
5364
5365 2002-08-24  Dekel Tsur  <dekelts@tau.ac.il>
5366
5367         * buffer.C (readFile): Always run lyx2lyx if file_format < LYX_FORMAT
5368         (and file_format >= 200).
5369
5370 2002-08-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5371
5372         * lyxlayout.C (Read): treat LT_OPTARGS as an integer, not a bool
5373
5374 2002-08-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5375
5376         * lyxfunc.C (getStatus): handle LFUN_INSET_OPTARG
5377
5378 2002-08-20  Martin Vermeer  <martin.vermeer@hut.fi>
5379
5380         * BufferView_pimpl.C:
5381         * LyXAction.C:
5382         * buffer.C:
5383         * commandtags.h:
5384         * lyxfunc.C:
5385         * paragraph.[Ch]:
5386         * text2.C:
5387         * insets/insetoptarg.[Ch]: Added "optional argument" collapsible
5388         inset and code to make it  work with the paragraph code. The inset
5389         can be anywhere in the paragraph, but will only do the expected
5390         thing in LaTeX if the layout file contains the parameter line
5391                         OptionalArgs    1
5392         (or more generally, a nonzero value) for that layout.
5393
5394 2002-08-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5395
5396         * paragraph.h: remove the declaration of undefined counters class
5397         function.
5398
5399 2002-08-22  Martin Vermeer <martin.vermeer@hut.fi>
5400
5401         * text2.C (setCounter):  fixed enumeration mis-count as reported by
5402         Dr. Richard Hawkins.
5403
5404 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5405
5406         * paragraph_funcs.h: remove some unneeded includes
5407
5408         * text.C (backspace): pasteParagraph now in global scipe
5409
5410         * CutAndPaste.C (cutSelection): pasteParagraph now in global scope
5411         (pasteSelection): ditto
5412
5413         * paragraph.[Ch] (pasteParagraph): move function to global scope ...
5414         * paragraph_funcs.C (pasteParagraph): ... here
5415
5416 2002-08-20  André Pönitz <poenitz@gmx.net>
5417
5418         * commandtags.h: new LFUNs for swapping/copying table row/colums
5419
5420         * LyXAction.C:
5421         * lyxfunc.C: support for new lfuns
5422
5423 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
5424
5425         * tabular.C:
5426         * buffer.[Ch]: remove NO_COMPABILITY stuff
5427
5428 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
5429
5430         * boost.C (throw_exception): new file, with helper function for
5431         boost compiled without exceptions.
5432
5433         * paragraph.h:
5434         * lyxlength.C:
5435         * buffer.C:
5436         * ParameterStruct.h:
5437         * ParagraphParameters.[Ch]: remove NO_PEXTRA_REALLY stuff
5438
5439         * bufferlist.C (emergencyWriteAll): use boost bind
5440
5441         * BufferView_pimpl.C (moveCursorUpdate): remove inline
5442
5443         * text.C: include paragraph_funcs.h
5444         (breakParagraph): breakParagraph is now in global scope
5445
5446         * paragraph_funcs.[Ch]: new files
5447
5448         * paragraph.C (breakParagraph,breakParagraphConservative): move to
5449         global scope
5450
5451         * buffer.C: include paragraph_funcs.h
5452         (insertStringAsLines): breakParagraph is now in global scope
5453
5454         * Makefile.am (lyx_SOURCES): add paragraph_funcs.h and
5455         paragraph_funcs.C
5456
5457         * CutAndPaste.C: include paragraph_funcs.h
5458         (cutSelection): breakParagraphConservative is now in global scope
5459         (pasteSelection): ditto
5460
5461         * buffer.h: declare oprator== and operator!= for
5462         Buffer::inset_iterator
5463
5464         * bufferlist.C (emergencyWrite): don't use fmt(...)
5465
5466         * text3.C: add using std::endl
5467
5468         * BufferView.C (moveCursorUpdate): remove default arg
5469
5470 2002-08-20  André Pönitz <poenitz@gmx.net>
5471
5472         * buffer.[Ch]: move inline functions to .C
5473
5474         * BufferView2.C:
5475         * BufferView_pimpl.C:
5476         * text.C:
5477         * buffer.[Ch]: use improved inset_iterator
5478
5479         * buffer.C:
5480         * paragraph.[Ch]: write one paragraph at a time
5481
5482 2002-08-20  Dekel Tsur  <dekelts@tau.ac.il>
5483
5484         * BufferView_pimpl.C (dispatch): Insert insetbibtex with "plain"
5485         style if style is not specified.
5486
5487 2002-08-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5488
5489         * text2.C (setCounter): when searching for right label for a
5490         caption, make sure to recurse to parent insets (so that a caption
5491         in a minipage in a figure float works) (bug #568)
5492
5493 2002-08-20  André Pönitz <poenitz@gmx.net>
5494
5495         * text3.C: new file for LyXText::dispatch() and helpers
5496
5497         * BufferView.[Ch]: move text related stuff to LyXText::dispatch()
5498
5499         * funcrequest.[Ch]: add message() do avoid direct access to LyXFunc
5500
5501 2002-08-19  André Pönitz <poenitz@gmx.net>
5502
5503         * lyxtext.h:
5504         * text.C: new LyXText::dispatch()
5505
5506         * BufferView_pimpl.C: move handling of LFUN_APPENDIX to LyXText
5507
5508 2002-08-18  Dekel Tsur  <dekelts@tau.ac.il>
5509
5510         * text.C (paintRowSelection): Fix code for rows with both RTL & LTR text.
5511
5512         * BufferView_pimpl.C (smartQuote): Insert typewriter quotes in
5513         Hebrew text.
5514
5515 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5516
5517         * Makefile.am: use $(variables) instead of @substitutions@
5518
5519 2002-08-15  André Pönitz <poenitz@gmx.net>
5520
5521         * lyxfunc.C:
5522         * BufferView_pimpl.C: streamlining mathed <-> outer world
5523         interaction
5524
5525         * commandtags.h:
5526         * LyXAction.C: remove unused LFUN_MATH
5527
5528 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5529
5530         * paragraph.[Ch]: add some NO_NEXT ifdefs.
5531
5532 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5533
5534         * paragraph.C (Paragraph): reformat a bit
5535         (cutIntoMinibuffer): use builtin InsetList function instad of
5536         doing it manually.
5537         (getInset): ditto
5538
5539         * buffer.C: include boost/bind.hpp, add using std::for_each
5540         (writeFileAscii): use ParagraphList iterators
5541         (validate): use for_each for validate traversal of paragraphs
5542         (getBibkeyList): use ParagraphList iterators
5543         (resizeInsets): use for_each to resizeInsetsLyXText for all
5544         paragraphs.
5545         (getParFromID): use ParagraphList iterators
5546
5547         * BufferView2.C (lockInset): use paragraph list and iterators
5548
5549 2002-08-14  John Levon  <levon@movementarian.org>
5550
5551         * lyxserver.C: remove spurious xforms include
5552
5553 2002-08-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5554
5555         * lyxfunc.C (getStatus): disable math-extern outside of math mode
5556
5557 2002-08-13  André Pönitz <poenitz@gmx.net>
5558
5559         * LyXAction.[Ch]:
5560         * lyxfunc.C: further cleaning
5561
5562 2002-08-13  André Pönitz <poenitz@gmx.net>
5563
5564         * funcrequest.h: new constructor
5565
5566         * funcrequest.C: move stuff here from .h
5567
5568         * Makefile.am:
5569         * BufferView_pimpl.C:
5570         * LyXAction.C:
5571         * toc.C:
5572         * lyxfunc.C: subsequent changes
5573
5574         * lyxfunc.h: new view() member function
5575
5576         * lyxfunc.C: subsequent changes
5577
5578 2002-08-13  Angus Leeming  <leeming@lyx.org>
5579
5580         * BufferView2.C:
5581         * BufferView_pimpl.C:
5582         * buffer.C:
5583         * converter.C:
5584         * importer.C:
5585         * lyxfunc.C:
5586         * lyxvc.C:
5587         * toc.C:
5588         * vc-backend.C:
5589         changes due to the changed LyXView interface that now returns references
5590         to member variables not pointers.
5591
5592 2002-08-13  Angus Leeming  <leeming@lyx.org>
5593
5594         * WordLangTuple (word, lang_code): return references to strings,
5595         not strings.
5596
5597         * BufferView.h:
5598         * SpellBase.h:
5599         * lyxtext.h: forward-declare WordLangTuple.
5600
5601         * BufferView2.C:
5602         * ispell.C:
5603         * pspell.C:
5604         * text.C: #include "WordLangTuple.h".
5605
5606         * lyxtext.h:
5607         * text.C: (selectNextWordToSpellcheck): constify return type.
5608
5609 2002-08-12  Martin Vermeer <martin.vermeer@hut.fi>
5610
5611         * buffer.C:
5612         * buffer.h:
5613         * lyxtext.h:
5614         * paragraph.C:
5615         * paragraph_pimpl.h:
5616         * text.C:
5617         * text2.C:
5618         * undo_funcs.C: replaced per-paragraph counter logic by per-buffer, as
5619         suggested by Angus.
5620         Made updateCounter always count from start of buffer, and removed
5621         second argument (par).
5622         Reverted floats number display to '#'. Perhaps I'll try again when the
5623         code base is sanitized a bit.
5624
5625 2002-08-12  Angus Leeming  <leeming@lyx.org>
5626
5627         * buffer.[Ch] (getLabelList): constify.
5628
5629 2002-08-07  André Pönitz <poenitz@gmx.net>
5630
5631         * commandtags.h: new LFUN_MOUSE_(PRESS|MOTION|RELEASE)
5632
5633         * funcrequest.h: extension to keep mouse (x,y) position
5634
5635 2002-08-12  Juergen Vigna  <jug@sad.it>
5636
5637         * BufferView2.C (insertErrors): forbid undo when inserting error
5638         insets.
5639
5640         * CutAndPaste.C (SwitchLayoutsBetweenClasses): ditto
5641
5642 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
5643
5644         * ParagraphList.[Ch]: new files
5645
5646         * Makefile.am (lyx_SOURCES): add ParagraphList.[Ch]
5647
5648         * BufferView2.C (lockInset): ParagraphList changes
5649         * toc.C: ditto
5650         * text2.C: ditto
5651         * bufferlist.C: ditto
5652         * buffer.h: ditto
5653         * buffer.C: ditto
5654
5655 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
5656
5657         * paragraph_pimpl.h: remove inclusion of boost/array.hpp, remove
5658         unused class variable counter_,
5659
5660         * paragraph.[Ch] (getFirstCounter): delete unused function
5661
5662         * counters.C: include LAssert.h
5663         (reset): add a new function with no arg, change other version to
5664         not have def. arg and to not allow empty arg.
5665
5666         * text2.C (setCounter): remove empty arg from call to Counters::reset
5667
5668 2002-08-11  John Levon  <levon@movementarian.org>
5669
5670         * Makefile.am: add WordLangTuple.h
5671
5672 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
5673
5674         * paragraph.C, ToolbarDefaults.h, kbsequence.h, lyx_main.C,
5675         lyxfunc.C lyxlex_pimpl.C: ws changes only.
5676
5677         * insets/insettext.C: InsetList changes
5678
5679         * graphics/GraphicsSupport.C (operator()): InsetList changes
5680
5681         * toc.C (getTocList): InsetList changes
5682
5683         * paragraph_pimpl.[Ch]: InsetList changes
5684
5685         * paragraph.[Ch]: InsetList changes
5686
5687         * buffer.C (inset_iterator): InsetList changes
5688         (setParagraph): ditto
5689         * buffer.h (inset_iterator): ditto
5690         * iterators.C (operator++): ditto
5691         * iterators.h: ditto
5692
5693         * Makefile.am (lyx_SOURCES): add InsetList.C and InsetList.h
5694
5695         * InsetList.[Ch]: new files, most InsetList handling moved out of
5696         paragraph.C.
5697
5698         * BufferView2.C (removeAutoInsets): InsetList changes
5699         (lockInset): ditto
5700         (ChangeInsets): ditto
5701
5702 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
5703
5704         * paragraph_pimpl.h (empty): new function
5705
5706         * paragraph.[Ch] (empty): new function
5707
5708         * other files: use the new Paragraph::empty function
5709
5710 2002-08-09  John Levon  <levon@movementarian.org>
5711
5712         * lyxtext.h: remove unused refresh_height
5713
5714 2002-08-09  John Levon  <levon@movementarian.org>
5715
5716         * Makefile.am:
5717         * sgml.h:
5718         * sgml.C:
5719         * buffer.C:
5720         * paragraph.h:
5721         * paragraph.C: move sgml char escaping out of paragraph
5722
5723         * paragraph.h:
5724         * paragraph.C: remove id setter
5725
5726         * buffer.C:
5727         * paragraph.C:
5728         * paragraph_pimpl.C: remove dead tex_code_break_column
5729
5730         * bufferview_funcs.C: small cleanup
5731
5732         * lyxfunc.C: remove dead proto
5733
5734         * lyxtext.h: make some stuff private. Remove some dead stuff.
5735
5736         * lyxgluelength.C: make as[LyX]String() readable
5737
5738 2002-08-08  John Levon  <levon@movementarian.org>
5739
5740         * LyXAction.h:
5741         * LyXAction.C:
5742         * MenuBackend.C:
5743         * ToolbarDefaults.C:
5744         * lyxfunc.C:
5745         * lyxrc.C:
5746         * toc.C: lyxaction cleanup
5747
5748 2002-08-08  John Levon  <levon@movementarian.org>
5749
5750         * BufferView2.C: small cleanup
5751
5752         * lyxfind.h:
5753         * lyxfind.C: move unnecessary header into the .C
5754
5755 2002-08-08  John Levon  <levon@movementarian.org>
5756
5757         * funcrequest.h: just tedious nonsense
5758
5759         * lyx_main.h:
5760         * lyx_main.C: cleanups
5761
5762         * buffer.C:
5763         * vspace.C: remove dead header lyx_main.h
5764
5765 2002-08-07  Angus Leeming  <leeming@lyx.org>
5766
5767         * Paragraph.[Ch]:
5768         * paragraph_pimpl.h:
5769         Forward declare class Counters in paragraph.h by moving the ctrs member
5770         variable into Paragraph::Pimpl.
5771         (counters): new method, returning a reference to pimpl_->ctrs.
5772
5773         * text2.C: ensuing changes.
5774
5775 2002-08-07  John Levon  <levon@movementarian.org>
5776
5777         * BufferView_pimpl.C (resizeCurrentBuffer): update scrollbar
5778
5779         * BufferView_pimpl.C: announce X selection on double/triple
5780           click
5781
5782         * lyx_main.C: use correct bool in batch dispatch
5783
5784         * counters.h: srcdocs (from Martin Vermeer and Angus Leeming)
5785
5786 2002-08-07  André Pönitz <poenitz@gmx.net>
5787
5788         * funcrequest.h: new class to wrap a kb_action and its argument
5789
5790         * BufferView.[Ch]:
5791         * BufferView_pimpl[Ch]:
5792         * LaTeX.C:
5793         * LyXAction.[Ch]:
5794         * lyxfunc.[Ch]:
5795         * lyxrc.C: subsequent changes
5796
5797
5798 2002-08-07  John Levon  <levon@movementarian.org>
5799
5800         * BufferView_pimpl.C (redoCurrentBuffer): fix screen update when
5801           document options change.
5802
5803 2002-08-06  Martin Vermeer  <martin.vermeer@hut.fi>
5804
5805         * counters.[Ch]
5806         * text2.C
5807         * paragraph.[Ch]
5808         * makefile.am: move counters functionality over from
5809         text2.C/paragraph.[Ch] to counters.[Ch], and make proper C++.
5810
5811 2002-08-06  John Levon  <levon@movementarian.org>
5812
5813         * WordLangTuple.h: new file for word + language code tuple
5814
5815         * SpellBase.h:
5816         * pspell.h:
5817         * pspell.C:
5818         * ispell.h:
5819         * ispell.C:
5820         * lyxtext.h:
5821         * text.C:
5822         * text2.C:
5823         * BufferView.h:
5824         * BufferView2.C: use WordLangTuple
5825
5826         * layout.h:
5827         * buffer.C: remove very dead LYX_LAYOUT_DEFAULT
5828
5829 2002-08-06  John Levon  <levon@movementarian.org>
5830
5831         * lyx_main.C: fix cmdline batch handling
5832
5833 2002-08-06  André Pönitz <poenitz@gmx.net>
5834
5835         * lyxrc.C: set default for show_banner to true
5836
5837 2002-08-06  John Levon  <levon@movementarian.org>
5838
5839         * pspell.C: fix a crash, and allow new aspell to work
5840
5841 2002-08-06  John Levon  <levon@movementarian.org>
5842
5843         * lyxfunc.C:
5844         * kbmap.C: small cleanup
5845
5846         * vspace.h:
5847         * vspace.C: add const
5848
5849 2002-08-05  John Levon  <levon@movementarian.org>
5850
5851         * LyXAction.C: back to tabular-insert
5852
5853 2002-08-04  John Levon  <levon@movementarian.org>
5854
5855         * BufferView.h:
5856         * BufferView.C: cosmetic change
5857
5858         * BufferView_pimpl.C: s/IGNORE_CODE/NOTE_CODE/
5859
5860         * bufferlist.C:
5861         * buffer.h:
5862         * buffer.C:
5863         * lyxcb.h:
5864         * lyxcb.C:
5865         * lyxserver.C:
5866         * lyxvc.C:
5867         * vc-backend.C:
5868         * BufferView2.C: purge all "Lyx" not "LyX" strings
5869
5870         * lyxcursor.h:
5871         * lyxcursor.C: attempt to add some documentation
5872
5873         * lyxfunc.C:
5874         * commandtags.h:
5875         * LyXAction.C:
5876         * ToolbarDefaults.C:
5877         * BufferView_pimpl.C: remove LFUN_DIALOG_TABULAR_INSERT and
5878           merge with LFUN_TABULAR_INSERT
5879
5880         * Makefile.am:
5881         * SpellBase.h:
5882         * ispell.h:
5883         * ispell.C:
5884         * pspell.h:
5885         * pspell.C: split up i/pspell implementations into separate
5886           files, many cleanups
5887
5888         * lyxlex.C: unrevert, with a proper fix for prefix.length() == 0
5889
5890         * text2.C: some cleanup
5891
5892         * lyxfunc.C: don't check for isp_command == "none" any more, it
5893           didn't make any sense
5894
5895 2002-08-06      Martin Vermeer <martin.vermeer@hut.fi>
5896
5897         * counters.[Ch]
5898         * text2.C
5899         * paragraph.[Ch]
5900         * makefile.am: move counters functionality over
5901         from text2.C/paragraph.[Ch] to counters.[Ch], and
5902         make proper C++.
5903 2002-08-02  John Levon  <levon@movementarian.org>
5904
5905         * buffer.C: s/lyxconvert/lyx2lyx/
5906
5907 2002-08-02  Angus Leeming  <leeming@lyx.org>
5908
5909         * lyxlex.C: revert John's change as it breaks reading of the user
5910         preamble.
5911
5912 2002-08-02  Angus Leeming  <leeming@lyx.org>
5913
5914         * importer.C (Import):
5915         * lyxfunc.C (moveCursorUpdate, dispatch, view_status_message):
5916         changes due to LyXView::view() now returning a boost::shared_ptr.
5917
5918 2002-08-02  John Levon  <levon@movementarian.org>
5919
5920         * lyxlex.C: small cleanup
5921
5922 2002-08-02  John Levon  <levon@movementarian.org>
5923
5924         * text2.C (status): small cleanup, no logic change
5925
5926 2002-08-01  John Levon  <levon@movementarian.org>
5927
5928         * buffer.h:
5929         * buffer.C (writeFile): don't output alerts, caller
5930           handles this
5931
5932         * bufferlist.C:
5933         * lyx_cb.C: from above
5934
5935         * lyxfunc.C: allow to open non-existent files
5936
5937 2002-07-31  John Levon  <levon@movementarian.org>
5938
5939         * lyxserver.C: don't let incidental errors get
5940           in the way (errno)
5941
5942 2002-07-30  John Levon  <levon@movementarian.org>
5943
5944         * lyxfunc.C: disable character dialog in ERT inset (partial fix)
5945
5946 2002-07-30  John Levon  <levon@movementarian.org>
5947
5948         * lyxserver.h:
5949         * lyxserver.C: remove I/O callback too
5950
5951 2002-07-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5952
5953         * lyxfunc.C (getStatus): disable LFUN_LATEX_LOG when there is no
5954         log.
5955
5956 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
5957
5958         * many files: strip,frontStrip -> trim,ltrim,rtrim
5959
5960 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
5961
5962         * PrinterParams.h: remove extern containsOnly, and include
5963         support/lstrings.h instead.
5964
5965         * LaTeX.C (scanAuxFile): modify because of strip changes
5966         (deplog): ditto
5967         * buffer.C (makeLaTeXFile): ditto
5968         * bufferparams.C (writeFile): ditt
5969         * lyxfont.C (stateText): ditto
5970         * lyxserver.C (read_ready): ditto
5971         * vc-backend.C (scanMaster): ditto
5972
5973         * BufferView_pimpl.h: ws changes
5974
5975         * BufferView_pimpl.C: inlude boost/signals/connection.hpp
5976
5977 2002-07-26  André Pönitz <poenitz@gmx.net>
5978
5979         * kb_sequence.C: remove unnedred usings
5980
5981 2002-07-26  Juergen Vigna  <jug@sad.it>
5982
5983         * lyxfind.C (LyXReplace): we have to check better if the returned
5984         text is not of theLockingInset()->getLockingInset().
5985
5986 2002-07-25  Juergen Vigna  <jug@sad.it>
5987
5988         * lyxfind.C (LyXReplace): don't replace if we don't get the
5989         right LyXText.
5990
5991         * undo_funcs.C (createUndo): remove debugging code.
5992
5993 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
5994
5995         * buffer.C (parseSingleLyXformat2Token): Use default placement
5996         when reading old floats.
5997
5998         * FloatList.C (FloatList): Change the default placement of figure
5999         and tables to "tbp".
6000
6001 2002-07-25  John Levon  <moz@compsoc.man.ac.uk>
6002
6003         * MenuBackend.C: using std::max
6004
6005 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6006
6007         * MenuBackend.C (expandToc):
6008         (expandToc2): code moved from xforms menu frontend. It is now
6009         generic and TOCs are transparent to menu frontends.
6010
6011 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6012
6013         * toc.C (getTocList): protect against buf=0
6014
6015         * MenuBackend.C (expand): move from Menu to MenuBackend; pass a
6016         Menu as first parameter. Now, this calls itself recursively to
6017         expand a whole tree (this will be useful for TOC handling)
6018         (expandFloatInsert): remove 'wide' version of floats
6019
6020         * MenuBackend.h (submenuname): returns the name of the submenu.
6021         (submenu): returns the submenu itself, provided it has been
6022         created by MenuBackend::expand
6023
6024 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6025
6026         * paragraph_pimpl.C (simpleTeXSpecialChars): close fonts before
6027         insets which have noFontChange == true. (bug #172)
6028
6029 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6030
6031         * BufferView_pimpl.C: add connection objects and use them...
6032         (Pimpl): here.
6033
6034 2002-07-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6035
6036         * MenuBackend.C (expandLastfiles):
6037         (expandDocuments):
6038         (expandFormats):
6039         (expandFloatListInsert):
6040         (expandFloatInsert):
6041         (expand): split expand in parts
6042
6043 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6044
6045         * lyx_gui.C: use lyx_gui::exit()
6046
6047 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6048
6049         * LyXAction.C: show the failing pseudo action
6050
6051 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
6052
6053         * buffer.C (readFile): Run the lyxconvert script in order to read
6054         old files.
6055
6056 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6057
6058         * LyXAction.C:
6059         * commandtags.h:
6060         * lyxfunc.C: remove LFUN_ADD_TO_TOOLBAR
6061
6062 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6063
6064         * LyXAction.C:
6065         * commandtags.h:
6066         * lyxfunc.C: remove LFUN_TOOLBAR_PUSH
6067
6068 2002-07-22  Herbert Voss  <voss@lyx.org>
6069
6070         * lengthcommon.C:
6071         * lyxlength.[Ch]: add support for the vertical lengths
6072
6073 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
6074
6075         * toc.[Ch]: std:: fixes
6076
6077 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6078
6079         * lyxrc.C: do not include lyx_main.h
6080
6081         * LaTeXFeatures.h: use a list<string> instead of a vector<string>
6082         for layouts
6083
6084         * lyxrc.C:
6085         * encoding.C:
6086         * bufferlist.C:
6087         * BufferView2.C: include "lyxlex.h"
6088
6089         * tabular.h:
6090         * bufferparams.h: do not #include "lyxlex.h"
6091
6092         * lyxtextclasslist.C (Add): remove method
6093         (classlist): renamed to classlist_
6094
6095         * paragraph_pimpl.C:
6096         * paragraph.C:
6097         * text2.C:
6098         * CutAndPaste.C:
6099         * bufferview_funcs.C:
6100         * bufferlist.C:
6101         * text.C:
6102         * LaTeXFeatures.C:
6103         * buffer.C:
6104         * toc.C (getTocList): use BufferParams::getLyXTextClass
6105
6106         * toc.C (getTocList): use InsetFloat::addToToc
6107
6108         * toc.[Ch]: new files, containing helper functions to handle table
6109         of contents
6110
6111         * lyxfunc.C (dispatch): no need to remove spaces around command
6112         given as a string
6113         (getStatus): handle LFUN_SEQUENCE by returning the status of the
6114         first command of the sequence; it is not very clever, but I do not
6115         have a better idea, actually
6116
6117         * LyXAction.C (LookupFunc): make sure to remove space at the
6118         beginning and end of the command
6119
6120 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6121
6122         * MenuBackend.C (getMenubar): new method: return the menubar of
6123         this menu set
6124         (read): treat differently reading of menu and menubar (in
6125         particular, the menubar has no name now)
6126         (Menu::menubar): remove
6127
6128         * lyxfunc.C (dispatch): add 'done' message to minibuffer when
6129         saving is finished
6130
6131 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
6132
6133         * BufferView_pimpl.C (workAreaButtonRelease): Fix opening of
6134         a bibitem inset in a RTL paragraph.
6135
6136 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
6137
6138         * paragraph_pimpl.C: constify
6139
6140         * BufferView_pimpl.C:
6141         * LaTeX.C:
6142         * lyxfunc.C: fix dispatch in a nicer way
6143
6144 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6145
6146         * lyxfunc.C (dispatch):
6147         * BufferView_pimpl.C:
6148         * BufferView_pimpl.h:
6149         * BufferView.C:
6150         * BufferView.h: rename Dispatch() to dispatch()
6151
6152         * LaTeXFeatures.C (useLayout): honor LyXLayout::depends_on()
6153
6154         * lyxlayout.C (Read): honor DependsOn tag
6155
6156         * lyxlayout.[Ch] (depends_on): new method
6157
6158         * version.C.in: update lyx_docversion
6159
6160         * LaTeXFeatures.C (getMacros): only define \LyX when needed
6161
6162         * paragraph.C (validate): remove from here...
6163         * paragraph_pimpl.C (validate): ... and move here
6164         (isTextAt): make it const
6165
6166         * buffer.C (getLists): ws cleanup
6167
6168 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
6169
6170         * language.C (read): Use iso8859-1 encoding in latex_lang
6171         (this prevents LyX from crashing when using iso10646-1 encoding).
6172
6173 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6174
6175         * text2.C (toggleInset): if cursor is inside an inset, close the
6176         inset and leave cursor _after_ it
6177
6178 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
6179
6180         * lyxfunc.C: move minibuffer completion handling out of here
6181
6182 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
6183
6184         * BufferView_pimpl.C:
6185         * LaTeX.C: fix dispatch calls
6186
6187 2002-07-19  Dekel Tsur  <dekelts@tau.ac.il>
6188
6189         * text.C (drawChars): Fix Arabic text rendering.
6190
6191 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
6192
6193         * LyXAction.C:
6194         * commandtags.h:
6195         * lyxfunc.C: remove message-push/pop
6196
6197         * lyxserver.C:
6198         * lyxfunc.h:
6199         * lyxfunc.C: rationalise some code by removing verboseDispatch
6200           in favour of a bool argument to dispatch()
6201
6202 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6203
6204         * lyx_main.C (init): make sure to read symlinks as absolute paths
6205
6206 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
6207
6208         * lyxfunc.h:
6209         * lyxfunc.C: no need for commandshortcut to be a member
6210
6211 2002-07-15  André Pönitz <poenitz@gmx.net>
6212
6213         * converter.C: add support for $$s (scripts from lib/scripts dir)
6214         * lyx_main.C: white space
6215
6216 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
6217
6218         * bufferlist.C:
6219         * lyxrc.h:
6220         * lyxrc.C: remove second exit confirmation
6221
6222 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
6223
6224         * BufferView.h:
6225         * BufferView.C:
6226         * BufferView2.C:
6227         * BufferView_pimpl.h:
6228         * BufferView_pimpl.C:
6229         * lyxfunc.C: s/setState/switchKeyMap/, s/showState/view_state_changed/
6230
6231 2002-07-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6232
6233         * MenuBackend.C (expand): add numeric shortcuts to document menu
6234
6235         * lyxrc.C (getDescription): remove RC_NEW_ASK_FILENAME
6236
6237 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6238
6239         * lyxfont.C (setLyXFamily):
6240         (setLyXSeries):
6241         (setLyXShape):
6242         (setLyXSize):
6243         (setLyXMisc):
6244         (lyxRead):
6245         * debug.C (value):
6246         * buffer.C (asciiParagraph): use ascii_lowercase
6247
6248 2002-07-15  Mike Fabian  <mfabian@suse.de>
6249
6250         * lyxlex_pimpl.C (search_kw):
6251         * lyxlex.C (getLongString):
6252         * converter.h (operator<):
6253         * converter.C (operator<):
6254         * buffer.C (parseSingleLyXformat2Token):
6255         (asciiParagraph):
6256         * ToolbarDefaults.C (read):
6257         * MenuBackend.C (checkShortcuts):
6258         (read):
6259         * LColor.C (getFromGUIName):
6260         (getFromLyXName): use the compare_ascii_no_case instead of
6261         compare_no_case, because in turkish, 'i' is not the lowercase
6262         version of 'I', and thus turkish locale breaks parsing of tags.
6263
6264 2002-07-16  Angus Leeming  <leeming@lyx.org>
6265
6266         * BufferView_pimpl.C (buffer): Previews::generateBufferPreviews
6267         now takes a Buffer const & argument.
6268
6269 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
6270
6271         * BufferView.C (resize): check there's a buffer to resize
6272
6273 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
6274
6275         * lyxfunc.C: remove dead code
6276
6277         * lyxserver.h:
6278         * lyxserver.C: use lyx_guii::set_read_callback
6279
6280 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
6281
6282         * lyxfunc.C (dispatch): Correct cursor behaviour when exiting
6283         an inset in a RTL paragraph.
6284
6285 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
6286
6287         * lyxfunc.C: repaint after a font size update
6288
6289 2002-07-15  André Pönitz <poenitz@gmx.net>
6290
6291         * lyxlength.C: inBP should be able to return negative values
6292
6293 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
6294
6295         * lyxfunc.C: use lyx_gui::update_fonts()
6296
6297 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
6298
6299         * lyxfunc.C: use lyx_gui::update_color()
6300
6301 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
6302
6303         * bufferlist.C:
6304         * lyxfunc.h:
6305         * lyxfunc.C:
6306         * lyxrc.h:
6307         * lyxrc.C: remove file->new asks for name option, and let
6308           buffer-new take an argument
6309
6310 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
6311
6312         * BufferView_pimpl.C: remove unneeded extra repaint()
6313
6314 2002-07-10  John Levon  <moz@compsoc.man.ac.uk>
6315
6316         * LyXAction.C: allow command-sequence with NoBuffer
6317
6318         * lyxfunc.C: don't insist on trailing ';' for command-sequence
6319
6320 2002-07-10  Angus Leeming  <leeming@lyx.org>
6321
6322         * lyxrc.[Ch]: preview_scale_factor should be a float not an int.
6323
6324 2002-07-09  Angus Leeming  <leeming@lyx.org>
6325
6326         * lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
6327
6328 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
6329
6330         * lengthcommon.h: whitespace
6331
6332         * lyxfunc.C: update scrollbar after goto paragraph
6333
6334         * lyxtext.h: factor out page break drawing, and fix it so
6335           page break/added space paints as selected nicely
6336
6337 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
6338
6339         * BufferView_pimpl.C: add FIXMEs, clean up a little
6340
6341 2002-07-09  André Pönitz <poenitz@gmx.net>
6342
6343         * lyxfont.[Ch]: support for wasy symbols
6344
6345 2002-07-08  André Pönitz <poenitz@gmx.net>
6346
6347         * BufferView_pimpl.C: apply John's patch for #93.
6348
6349 2002-07-05  Angus Leeming  <leeming@lyx.org>
6350
6351         * BufferView_pimpl.C (buffer): generate previews if desired.
6352
6353         * LColor.h: add "preview" to the color enum.
6354
6355         * LColor.C (LColor): add a corresponding entry to the items array.
6356
6357         * buffer.C (~Buffer): remove any previewed LaTeX snippets associated
6358         with this buffer.
6359
6360 2002-07-05  Angus Leeming  <leeming@lyx.org>
6361
6362         * buffer.[Ch] (makeLaTeXFile): create two methods where there was one.
6363         The body of the code is now in the method that is passed an ostream &
6364         rather than a file name.
6365         Pass an additional only_preamble parameter, useful for the forthcoming
6366         preview stuff.
6367
6368 2002-07-03  André Pönitz <poenitz@gmx.net>
6369
6370         * lyxfunc.C: simplify getStatus() a bit for math stuff
6371
6372 2002-07-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6373
6374         * BufferView_pimpl.C (workAreaResize): add an unconditional repaint.
6375
6376 2002-06-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6377
6378         * text.C (changeRegionCase): do not change case of all the
6379         document when region ends at paragraph end (bug #461)
6380
6381 2002-07-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6382
6383         * paragraph.C (startTeXParParams):
6384         (endTeXParParams): add \protect when necessary
6385
6386 2002-06-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6387
6388         * BufferView_pimpl.C (workAreaExpose): remove warning
6389
6390 2002-06-27  Angus Leeming  <leeming@lyx.org>
6391
6392         * Makefile.am: add lyxlayout_ptr_fwd.h.
6393
6394 2002-06-26  André Pönitz <poenitz@gmx.net>
6395
6396         * lyxrc.[Ch]: introduce \preview, revive half-dead \show_banner
6397
6398 2002-06-25  Angus Leeming  <leeming@lyx.org>
6399
6400         * lyxfunc.C (dispatch): Comment out the call to
6401         grfx::GCache::changeDisplay. The method no longer exists now that the
6402         pixmap generation part of the graphics loader has been moved into
6403         InsetGraphics.
6404
6405 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6406
6407         * text2.C: layout as layout
6408
6409         * text.C: layout as layout
6410
6411         * tabular.C (OldFormatRead): layout as layout
6412
6413         * paragraph_pimpl.C (TeXDeeper): layout as layout
6414         (realizeFont): layout as layout
6415
6416         * paragraph.C (writeFile): layout as layout
6417         (validate): layout as layout
6418         (getFont): layout as layout
6419         (getLabelFont): layout as layout
6420         (getLayoutFont): layout as layout
6421         (breakParagraph): layout as layout
6422         (stripLeadingSpaces): layout as layout
6423         (getEndLabel): layout as layout
6424         (getMaxDepthAfter): layout as layout
6425         (applyLayout): layout as layout
6426         (TeXOnePar): layout as layout
6427         (simpleTeXOnePar): layout as layout
6428         (TeXEnvironment): layout as layout
6429         (layout): layout as layout
6430         (layout): layout as layout
6431
6432         * lyxtextclass.C (compare_name): new functor to work with
6433         shared_ptr, layout as layout
6434         (Read): layout as layout
6435         (hasLayout): layout as layout
6436         (operator): layout as layout
6437         (delete_layout): layout as layout
6438         (defaultLayout): layout as layout
6439
6440         * lyxlayout_ptr_fwd.h: new file
6441
6442         * lyxlayout.C (Read): layout as layout
6443
6444         * lyx_cb.C (MenuInsertLabel): layout as layout
6445
6446         * bufferlist.C (newFile): layout as layout
6447
6448         * buffer.C (readLyXformat2): layout as layout
6449         (parseSingleLyXformat2Token): layout as layout
6450         (insertStringAsLines): layout as layout
6451         (asciiParagraph): layout as layout
6452         (latexParagraphs): layout as layout
6453         (makeLinuxDocFile): layout as layout
6454         (simpleLinuxDocOnePar): layout as layout
6455         (makeDocBookFile): layout as layout
6456         (simpleDocBookOnePar): layout as layout
6457         (getLists): layout as layout
6458
6459         * LaTeXFeatures.C (getTClassPreamble): layout as layout
6460
6461         * CutAndPaste.C (cutSelection): layout as layout
6462         (pasteSelection): layout as layout
6463         (SwitchLayoutsBetweenClasses): layout as layout
6464
6465         * BufferView_pimpl.C (Dispatch): layout as layout
6466         (smartQuote): layout as layout
6467
6468         * BufferView2.C (unlockInset): layout as layout
6469
6470 2002-06-24  André Pönitz <poenitz@gmx.net>
6471
6472         * lyxfunc.C: fix #487
6473
6474 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6475
6476         * lyxrc.h:
6477         * lyxrc.C:
6478         * lyxfunc.C: remove display_shortcuts, show_banner
6479
6480 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6481
6482         * Buffer_pimpl.C: oops, update on resize
6483
6484 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6485
6486         * buffer.C:
6487         * converter.C:
6488         * exporter.C:
6489         * lyxfunc.C:
6490         * BufferView.h:
6491         * BufferView.C: use repaint()
6492
6493         * BufferView_pimpl.h:
6494         * BufferView_pimpl.C: s/updateScreen()/repaint()/
6495           as it's a clearer description. Remove superfluous
6496           redraws.
6497
6498 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6499
6500         * text.C: fix bug 488. Not ideal, but getting
6501           getWord() to work properly for the insets that
6502           matter is more difficult ...
6503
6504 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
6505
6506         * BufferView_pimpl.C:
6507         * LyXAction.C:
6508         * commandtags.h:
6509         * lyxfunc.C: remove the six million index lyxfuncs to just
6510           one, and DTRT (bug 458)
6511
6512 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
6513
6514         * BufferView.h:
6515         * BufferView.C:
6516         * BufferView_pimpl.h:
6517         * BufferView_pimpl.C: clean up resize() stuff,
6518           and unnecessary updateScreen()s
6519
6520 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
6521
6522         * BufferView.h:
6523         * BufferView.C:
6524         * BufferView_pimpl.h:
6525         * BufferView_pimpl.C:
6526         * lyxfind.h:
6527         * lyxfind.C:
6528         * minibuffer.C: remove focus management of workarea,
6529           not needed. Use screen's greyOut()
6530
6531 2002-06-17  Herbert Voss  <voss@lyx.org>
6532
6533         * converter.C: (convert) do not post a message, when converting
6534         fails, let the calling function decide what to do in this case
6535
6536 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
6537
6538         * lyxfunc.C: tidy up a little
6539
6540 2002-06-16    <alstrup@diku.dk>
6541
6542         * BufferView_pimpl.C (Pimpl): Use WorkAreaFactory.
6543         Got rid of FORMS_H_LOCATION include. Now we are
6544         GUII.
6545
6546 2002-06-15  LyX Development team  <lyx@rilke>
6547
6548         * buffer.[Ch] (sgmlOpenTag):
6549         (sgmlCloseTag): Added support for avoiding pernicious mixed
6550         content. Return number of lines written.
6551
6552         (makeLinuxDocFile):
6553         (makeDocBookFile): Fixed calls to sgml*Tag.
6554         Simple white space clean.
6555
6556         (simpleDocBookOnePar): Simple white space clean.
6557
6558         * tabular.[Ch] (docBook): Renamed to docbook and got another
6559         argument to related with the pernicious mixed content.
6560
6561         (docbookRow): Fixed calls for docbook inset method.
6562
6563 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
6564
6565         * lyxfunc.[Ch]: Use LyXKeySym instead of KeySym,
6566         so it's X11 independent.
6567
6568         * kb*.[Ch]: ditto.
6569
6570         * BufferView_pimpl.[Ch] (workAreaKeyPress): ditto.
6571
6572 2002-06-15  Lyx Development team  <lyx@electronia>
6573
6574         * intl.h: Renamed getTrans to getTransManager.
6575
6576 2002-06-14  Angus Leeming  <leeming@lyx.org>
6577
6578         * Makefile.am: nuke forgotten stl_string_fwd.h.
6579
6580 2002-06-12  Angus Leeming  <leeming@lyx.org>
6581
6582         * stl_string_fwd.h: unused and non-compliant anyway. Nuked.
6583
6584 2002-06-13  Angus Leeming  <leeming@lyx.org>
6585
6586         * LaTeX.C:
6587         * vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
6588
6589 2002-06-12  Andrew Zabolotny  <zap@cobra.ru>
6590
6591         * kbmap.C (getiso): add support for cyrillic and greek
6592
6593 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6594
6595         * BufferView.h:
6596         * BufferView.C:
6597         * BufferView_pimpl.h:
6598         * BufferView_pimpl.C: move bogus scrolling logic
6599           to xforms
6600
6601 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6602
6603         * lyxfunc.C:
6604         * BufferView_pimpl.C: view->resize() change
6605
6606 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6607
6608         * BufferView_pimpl.C: topCursorVisible
6609           prototype change
6610
6611 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6612
6613         * Makefile.am:
6614         * lyx_gui.h:
6615         * lyx_gui.C: move to frontends/
6616
6617         * main.C:
6618         * lyx_main.h:
6619         * lyx_main.C: changes from above
6620
6621 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6622
6623         * intl.C:
6624         * intl.h:
6625         * kbmap.C:
6626         * kbsequence.C:
6627         * lyx_cb.C:
6628         * lyx_main.C: minor tidy
6629
6630 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6631
6632         * BufferView_pimpl.h:
6633         * BufferView_pimpl.C:
6634         * BufferView.h:
6635         * BufferView.C: make painter() const,
6636           remove dead code
6637
6638         * BufferView2.C: use screen() accessor
6639
6640         * lyx_main.h:
6641         * lyx_main.C: some minor cleanup
6642
6643 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6644
6645         * BufferView_pimpl.h:
6646         * BufferView_pimpl.C: remove enter/leaveView,
6647           use workHeight()
6648
6649 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
6650
6651         * BufferView.h:
6652         * BufferView.C:
6653         * BufferView2.C:
6654         * BufferView_pimpl.h:
6655         * BufferView_pimpl.C: only construct screen once,
6656           rename
6657
6658         * lyxrc.C: remove pointless comment
6659
6660 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
6661
6662         * BufferView.h:
6663         * BufferView.C: remove active() and belowMouse()
6664
6665         * BufferView_pimpl.h:
6666         * BufferView_pimpl.C: use workarea() not workarea_,
6667           and make it use a scoped_ptr instead
6668
6669 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
6670
6671         * lyx_gui.C: add debug message on BadWindow
6672
6673 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6674
6675         * sp_spell.C: fdopen is not part of the C++ standard.
6676
6677         * paragraph.C (InsetIterator): use >= instead of ==
6678
6679 2002-06-07  Angus Leeming  <leeming@lyx.org>
6680
6681         Fixes needed to compile with Compaq cxx 6.5.
6682         * BufferView_pimpl.C:
6683         * DepTable.C:
6684         * buffer.C:
6685         * converter.C:
6686         * encoding.C:
6687         * lyx_gui.C:
6688         * lyx_main.C:
6689         * lyxtextclasslist.C:
6690         * minibuffer.C:
6691         * sp_spell.C:
6692         * tabular_funcs.C:
6693         * vc-backend.C:
6694         all c-library variables have been moved into namespace std. Wrap
6695         using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
6696
6697         * lyxlength.C:
6698         * tabular-old.C:
6699         * tabular.C:
6700         Add a using std::abs declaration.
6701
6702         * kbmap.h (modifier_pair):
6703         * paragraph.h (InsetTable, InsetList):
6704         * lyxfont.h (FontBits):
6705         type definition made public.
6706
6707         * bufferlist.C (emergencyWriteAll): the compiler complains that
6708         there is more than one possible lyx::class_fun template to choose from.
6709         I re-named the void specialisation as lyx::void_class_fun.
6710
6711         * lyxfont.C (FontBits' operator==, operator!=): taken out of class.
6712
6713         * tabular_funcs.C: lstrings.h must come before tabular_funcs.h or
6714         the compiler is is unable to find tostr in write_attribute.
6715
6716 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6717
6718         * buffer.C (sgmlError): hide #warning
6719
6720 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6721
6722         * xtl/*: get rid of xtl, which is not in use anyway
6723
6724         * LyXAction.C (init):
6725         * commandtags.h: remove BUFFER_PRINT and BUFFER_PARAMS_GET, which
6726         were unimplemented xtl experimentation
6727
6728 2002-06-04  André Pönitz <poenitz@gmx.net>
6729
6730         * lyxfunc.C: disable array operation on simple formulae
6731
6732 2002-06-03  John Levon  <moz@compsoc.man.ac.uk>
6733
6734         * converter.C: constify a bit
6735
6736 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
6737
6738         * lyx_gui.C: check xforms version correctly
6739
6740 2002-04-30  Herbert Voss  <voss@lyx.org>
6741
6742         * buffer.C (parseSingleLyXformat2Token): fix bug with ignored
6743         "keep" option
6744
6745 2002-05-31  John Levon  <moz@compsoc.man.ac.uk>
6746
6747         * lyxvc.C: fix bug 416 (make sure buffer is saved before
6748           attempt to register it with a VCS)
6749
6750 2002-05-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6751
6752         * lyx_main.C (init): honor variables LYX_DIR_13x and
6753         LYX_USERDIR_13x
6754
6755 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
6756
6757         * buffer.h:
6758         * buffer.C:
6759         * lyx_main.C: fix a crash on bad command line,
6760           and give a useful exit status on error
6761
6762         * lyxfunc.C (doImport): allow -i lyx to work
6763
6764 2002-03-30  André Pönitz <poenitz@gmx.net>
6765
6766         * lyxfunc.C: mathed font changes
6767
6768 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
6769
6770         * LaTeX.C:
6771         * importer.h:
6772         * importer.C:
6773         * lyx_sty.h:
6774         * lyx_sty.C:
6775         * lyxlex.C:
6776         * lyxrow.h:
6777         * lyxtext.h:
6778         * paragraph.h:
6779         * paragraph.C:
6780         * texrow.h:
6781         * texrow.C:
6782         * text.C:
6783         * trans_mgr.h: srcdocs, and some minor cleanups
6784
6785 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6786
6787         * paragraph_pimpl.C (isTextAt): rewrite to be much faster (do not
6788         call getFont all the time)
6789
6790 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6791
6792         * switch from SigC signals to boost::signals
6793
6794 2002-05-29  André Pönitz <poenitz@gmx.net>
6795
6796         * paragraph_pimpl.C (getChar): don't call size() too often...
6797
6798 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6799
6800         * paragraph_pimpl.C (insertChar): do not try to update tables when
6801         appending (pos == size())
6802
6803         * buffer.C (parseSingleLyXformat2Token): reorder a bit the tests
6804         in order to reduce drastically the number of comparisons needed to
6805         parse a large document
6806
6807 2002-05-29  André Pönitz <poenitz@gmx.net>
6808
6809         * text.C:
6810         * text2.C:
6811         * lyxtextclass.C:
6812         * sp_pspell.h:
6813         * textclasslist.[Ch]:
6814         * sp_ispell.h: whitespace change
6815
6816 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6817
6818         * lyxserver.C (callback): tentative fix of lyxserver. Does not use
6819         lyxaction directly now.
6820
6821 2002-05-27  John Levon  <moz@compsoc.man.ac.uk>
6822
6823         * trans.C:
6824         * lyxfont.C:
6825         * lyxvc.C: remove unused headers
6826
6827 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
6828
6829         * Makefile.am:
6830         * buffer.h:
6831         * undostack.h:
6832         * undostack.C:
6833         * undo_funcs.h:
6834         * undo_funcs.C: some cleanups. Use shared_ptr
6835           and a template for the undo stacks.
6836
6837 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
6838
6839         * BufferView_pimpl.h:
6840         * BufferView_pimpl.C:
6841         * kbmap.h:
6842         * kbmap.C:
6843         * kbsequence.h:
6844         * kbsequence.C:
6845         * lyxfunc.h:
6846         * lyxfunc.C:
6847         * text2.C: use key_state/mouse_state
6848
6849 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6850
6851         * vc-backend.C (scanMaster): use boost regex and get rid of LRegex
6852         and LSubstring
6853
6854         * chset.C: change include order
6855         (loadFile): use boost regex and get rid of LRegex and LSubstring
6856
6857         * Makefile.am (BOOST_LIBS): new variable
6858         (lyx_LDADD): use it
6859
6860         * LaTeX.C: change include order.
6861         (scanAuxFile): use boost regex and get rid of LRegex and
6862         LSubstring
6863         (deplog): ditto
6864
6865 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
6866
6867         * ColorHandler.h:
6868         * ColorHandler.C:
6869         * FontInfo.h:
6870         * FontInfo.C: moved to frontends/xforms/
6871
6872         * FontLoader.h:
6873         * FontLoader.C: moved into frontends for GUIIzation
6874
6875         * Makefile.am:
6876         * lyx_gui.C:
6877         * lyxfont.C:
6878         * lyxfunc.C: changes from above
6879
6880 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
6881
6882         * LColor.C: remove spurious X include
6883
6884         * BufferView_pimpl.C:
6885         * Makefile.am:
6886         * font.h:
6887         * font.C:
6888         * text.C:
6889         * text2.C: move font metrics to frontends/
6890
6891 2002-05-24  Juergen Vigna  <jug@sad.it>
6892
6893         * undo_funcs.C (textHandleUndo): fix the cursor selection after
6894         setting the undo_cursor.
6895
6896         * ParagraphParameters.h: include local includes first.
6897
6898 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
6899
6900         * BufferView_pimpl.C:
6901         * BufferView_pimpl.h:
6902         * Makefile.am:
6903         * WorkArea.h:
6904         * WorkArea.C:
6905         * screen.C: move WorkArea into frontends/
6906
6907         * lyxscreen.h:
6908         * screen.C:
6909         * text.C:
6910         * BufferView.C:
6911         * BufferView2.C: move LyXScreen into frontends/
6912
6913         * lyxlookup.h:
6914         * lyxlookup.C:
6915         * lyx_gui.C: move lyxlookup into frontends/xforms/
6916
6917 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
6918
6919         * BufferView2.C:
6920         * BufferView_pimpl.C:
6921         * FontLoader.C:
6922         * LyXView.h:
6923         * LyXView.C:
6924         * Makefile.am:
6925         * WorkArea.C:
6926         * XFormsView.h:
6927         * XFormsView.C:
6928         * buffer.C:
6929         * bufferlist.C:
6930         * bufferview_funcs.C:
6931         * converter.C:
6932         * importer.C:
6933         * lyx_cb.C:
6934         * lyx_gui.C:
6935         * lyx_main.C:
6936         * lyx_find.C:
6937         * lyxfunc.C:
6938         * lyxvc.C:
6939         * minibuffer.C:
6940         * text.C:
6941         * text2.C:
6942         * trans.C:
6943         * vc-backend.C: move LyX/XFormsView into frontends/
6944
6945 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
6946
6947         * Makefile.am:
6948         * PainterBase.C:
6949         * PainterBase.h:
6950         * Painter.C:
6951         * Painter.h:
6952         * WorkArea.C:
6953         * WorkArea.h:
6954         * screen.C:
6955         * tabular.C:
6956         * text.C:
6957         * text2.C: move Painter to frontends/
6958
6959 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6960
6961         * buffer.C: comment out some some code that depend upon lyx_format
6962         < 220
6963
6964         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
6965         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
6966
6967         * buffer.h (NO_COMPABILITY): turn off compability
6968
6969         * ColorHandler.C: include scoped_array.hpp
6970
6971         * font.C: Use more specific smart_ptr header.
6972         * Painter.C: ditto
6973         * gettext.C: ditto
6974         * ShareContainer.h: ditto
6975         * lyx_main.h: ditto
6976         * kbmap.h: ditto
6977         * FontInfo.h: ditto
6978         * BufferView_pimpl.h: ditto
6979         * ColorHandler.h: ditto
6980
6981         * kbmap.C (defkey): change call to shared_ptr::reset
6982
6983 2002-05-21  Juergen Vigna  <jug@sad.it>
6984
6985         * buffer.C (insertErtContents): fix to insert ert asis if it is
6986         non empty. Skip it completely if it contains only whitespaces.
6987
6988 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
6989
6990         * BufferView_pimpl.C:
6991         * BufferView2.C: clear selection on paste (bug 393)
6992
6993 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6994
6995         * DepTable.C: include ctime
6996
6997 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
6998
6999         * buffer.C (latexParagraphs): Add new argument (moving_arg).
7000
7001 2002-05-14  Juergen Vigna  <jug@sad.it>
7002
7003         * text.C (breakParagraph): fixed function to honor the keepempty
7004         layout in the right maner and also to permit the right breaking
7005         algorithm on empty or non empyt keepempty paragraphs.
7006
7007         * paragraph.C (breakParagraph): we have to check also if the par
7008         is really empty (!size()) for isempty otherwise we do the wrong
7009         paragraph break.
7010
7011 2002-05-10  Juergen Vigna  <jug@sad.it>
7012
7013         * buffer.[Ch] : The following are only changes to the ert
7014         compatibility read reading old LaTeX layout and font stuff and
7015         convert it to ERTInsets.
7016
7017         * buffer.h: added isErtInset().
7018
7019         * buffer.C (struct ErtComp): add a fromlayout bool to check
7020         if we're inside a LaTeX layout.
7021         (isErtInset): new helper function.
7022         (insertErtContents): look for other ert insets before this one
7023         and insert the contents there, so that we don't have subsequent
7024         ERT insets with nothing between them. This way we create only one
7025         inset with multiple paragraphs. Also check if we don't insert only
7026         spaces ' ' as they are ignored anyway afterwards in the .tex file
7027         so if we have only spaces we will ignore this latex part in the
7028         new file.
7029         (parseSingleLyXformat2Token \\layout): better compatibility when
7030         reading layout-latex stuff.
7031         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
7032         language tag.
7033         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
7034         stuff after reading the inset only get the information back from
7035         the stack.
7036
7037 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
7038
7039         * buffer.C (makeLaTeXFile): Put language options after loading babel.
7040
7041         * LaTeXFeatures.C (getBabelOptions): New method.
7042
7043 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7044
7045         * BufferView_pimpl.C (Dispatch): work around missing argument for
7046         'layout'
7047
7048 2002-05-08  Juergen Vigna  <jug@sad.it>
7049
7050         * text.C (leftMargin): handle paragraph leftindent.
7051
7052         * paragraph.C (writeFile): write the new \\leftindent tag.
7053         (validate): handle leftindent code.
7054         (TeXEnvironment): handle paragraphleftindent code again.
7055
7056         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
7057
7058         * buffer.C (parseSingleLyXformat2Token): added compatibility code
7059         for paragrap_extra indent code and new token \\leftindent.
7060         (latexParagraphs): handle the leftindent as environment.
7061
7062         * ParameterStruct.h: added leftindent support.
7063
7064         * ParagraphParameters.C (leftIndent): added support functions for
7065         the paragraph left indent.
7066
7067         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
7068         more appropriate.
7069
7070 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
7071
7072         * paragraph.C (isRightToLeftPar): Return false for a paragraph
7073         inside insetERT.
7074
7075         * text.C (computeBidiTables): No bidi in insetERT.
7076
7077         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
7078         in RTL documents.
7079
7080 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7081
7082         * version.C.in: pre 5
7083
7084 2002-05-02  José Matos  <jamatos@fep.up.pt>
7085         * buffer.C (makeDocBookFile): white space changes, add newline to
7086         command styles.
7087         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
7088
7089         * tabular.C (docBook): fix typo.
7090
7091 2002-05-03  Juergen Vigna  <jug@sad.it>
7092
7093         * screen.C (drawFromTo): recalculate the rowpointer if we had a
7094         change in LyXText as we can not be sure it was not freed.
7095         (drawOneRow): remove unused code.
7096
7097         * text.C (drawInset): redo the calculation of the need_break_row as
7098         it could have a row which was already freed.
7099         (draw): look at the return value of drawInset and return false if
7100         it also returned false.
7101         (paintRowText): look at the return value of draw and return false if
7102         it also returned false.
7103
7104         * lyxtext.h: added bool return type to drawInset() and draw() so that
7105         if we have a change in the row so that the rowbreak has to be redone
7106         we abort drawing as it will be called again.
7107
7108 2002-05-02  Juergen Vigna  <jug@sad.it>
7109
7110         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
7111         a change in the maintext also if we're inside an inset.
7112         (Dispatch): set the cursor again after a break line and after the
7113         screen has been updated as it could be we're in a different row.
7114
7115         * text2.C (fixCursorAfterDelete): check to make sure we don't request
7116         to set the cursor behind the pargraph with > size().
7117         (setCursor): check also for the same paragraph when checking where
7118         to put the cursor if we have a NFR inset.
7119
7120         * buffer.C (parseSingleLyXformat2Token): move the compatibility
7121         parts of layout read further up as it still was in the wrong
7122         position.
7123
7124 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7125
7126         * screen.C (drawFromTo): change sine fullRebreak always return
7127         true.
7128
7129         * buffer.C (parseSingleLyXformat2Token): reindent some
7130
7131         * BufferView_pimpl.C (update): change since fullRebreak always
7132         return true.
7133         (Dispatch): git rid of the last hardcoded "Standard"s.
7134
7135 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7136
7137         * text2.[Ch] (fullRebreak): make it return void now that we always
7138         returned true.
7139
7140 2002-04-30  Juergen Vigna  <jug@sad.it>
7141
7142         * buffer.C (parseSingleLyXformat2Token): reset the font before the
7143         ert compatibility check for "latex" layout.
7144
7145 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
7146
7147         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
7148         minipages: use col% instead of p%, and also use the current font.
7149         (makeLaTeXFile): Fix use babel condition.
7150         (parseSingleLyXformat2Token): Correct font when reading old floats.
7151
7152 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
7153
7154         * BufferView_pimpl.C (Dispatch): Check that float type exists when
7155         inserting list of floats.
7156
7157 2002-04-25  Herbert Voss  <voss@lyx.org>
7158
7159         * MenuBackend.C (expand): don't add the graphics extensions to the
7160         export menu
7161
7162 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7163
7164         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
7165         non-existing layout, do not complain if it was the default layout
7166         of the original class (bug #342)
7167
7168 2002-04-24  Juergen Vigna  <jug@sad.it>
7169
7170         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
7171         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
7172
7173 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
7174
7175         * buffer.C (getBibkeyList): If using \bibliography, return the
7176         option field with the reference itself. Enables us to provide natbib
7177         support when using \bibliography.
7178
7179 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
7180
7181         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
7182
7183         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
7184         natbib is provided by the LaTeX class.
7185
7186 2002-04-23  Juergen Vigna  <jug@sad.it>
7187
7188         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
7189         Wakeup functions.
7190
7191         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
7192
7193 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7194
7195         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
7196
7197         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
7198         ensuremath around textordmasculine, textordfeminine and
7199         textdegree.
7200
7201 2002-04-19  Juergen Vigna  <jug@sad.it>
7202
7203         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
7204         reinitializing the buffer otherwise row-dimensions may be wrong.
7205         (update): reset also the selection cursors if they do exits otherwise
7206         their x/y positions may be wrong.
7207
7208         * text2.C (cursorDown): don't enter the inset if we came from a row
7209         above and are one row over the inset.
7210
7211         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
7212         really leaving an inset.
7213
7214 2002-04-18  Juergen Vigna  <jug@sad.it>
7215
7216         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
7217         of the selected paragraph does not have the selected layout also if
7218         the last one had!
7219
7220         * text2.C (setLayout): fixed bug which did not change last selected
7221         paragraph.
7222
7223         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
7224         changed the read and substituted \\end_float with \\end_inset!
7225
7226         * BufferView_pimpl.C (cursorPrevious):
7227         (cursorNext): fixed to make it work with rows heigher than the work
7228         area without moving the cursor only the draw of the row.
7229         (workAreaMotionNotify): fix jumping over high rows.
7230
7231 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7232
7233         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
7234         Ressler.
7235
7236 2002-04-16  Juergen Vigna  <jug@sad.it>
7237
7238         * text2.C (setCursor): set also the irow().
7239         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
7240         (cursorUp):
7241         (cursorDown): support for locking an inset if the x_fix value goes
7242         inside it. That way I can transverse insets too with cursor up/down.
7243
7244         * lyxrow.h: added irow helper function same as other (i) functions.
7245
7246         * BufferView_pimpl.C (cursorPrevious):
7247         (cursorNext): fixed for insets!
7248
7249 2002-04-15  Juergen Vigna  <jug@sad.it>
7250
7251         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
7252         position otherwise it is wrong in some cases.
7253
7254         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
7255         inside the inset before the call.
7256
7257 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
7258
7259         * buffer.[Ch] (getBibkeyList): make it const.
7260
7261 2002-04-12  Juergen Vigna  <jug@sad.it>
7262
7263         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
7264
7265         * text2.C (getCursorX): new helper function
7266         (setCursor): compute also ix_
7267         (setCursorFromCoordinates): set also ix.
7268
7269         * lyxcursor.h: added ix_ and helper functions.
7270
7271         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
7272
7273         * buffer.C (insertStringAsLines): dont break paragraph if the this
7274         paragraph is inside an inset which does not permit it!
7275
7276         * text.C (breakParagraph): honor keepempty flag and break the paragraph
7277         also with no chars on this paragraph.
7278         (paintRowText): only paint stuff if it's inside the workarea!
7279
7280         * paragraph.C (breakParagraph): honor keepempty flag and break the
7281         paragraph always below not above.
7282
7283         * BufferView2.C (unlockInset): update the paragraph layout on inset
7284         unlock as we changed paragraph in such a case.
7285
7286         * lyxfind.C (LyXFind): clear the former selection if not found!
7287
7288         * text2.C (insertInset): freeze Undo after setUndo so that it is not
7289         again called in insertChar().
7290
7291         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
7292         an inset which uses the whole row!
7293         (rightMargin): ditto.
7294         (insertChar): force a rebreak if we inserted an inset!
7295
7296 2002-03-28  Herbert Voss  <voss@lyx.org>
7297
7298         * lyxlength.[Ch]: add inBP() to get the right PS-point
7299         units (BigPoint). With inPixels we have rounding errors
7300
7301 2002-04-11  Juergen Vigna  <jug@sad.it>
7302
7303         * text2.C (setCursorFromCoordinates): set iy to the right value.
7304         (setCursor): add check if row->previous exists!
7305
7306         * buffer.C (parseSingleLyXformat2Token): reset font after read of
7307         an old float_type as this was the case in the old code!
7308
7309         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
7310
7311         * BufferView2.C (showLockedInsetCursor): use iy
7312         (fitLockedInsetCursor): ditto
7313
7314         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
7315         locked insets as there we have the right value now.
7316
7317         * lyxcursor.C: added iy_ variable and iy functions to set to the
7318         baseline of cursor-y of the locked inset.
7319
7320         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
7321         (setCursor): fixed for insets which need a full row.
7322
7323         * text.C (rowLastPrintable): don't ignore the last space when before
7324         an inset which needs a full row.
7325         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
7326         as last character of a row when before a inset which needs a full row.
7327
7328 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7329
7330         * version.C.in: update date
7331
7332         * text2.C (fullRebreak): try to always return true and see what
7333         happens...
7334
7335 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7336
7337         * MenuBackend.C (expand): use Floating::listName
7338
7339         * FloatList.C (FloatList): add listName argument to the built-in
7340         floats
7341
7342         * Floating.[Ch]: add listName member, which is the 'List of XXX'
7343         text associated with the float.
7344
7345 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7346
7347         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
7348
7349 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7350
7351         * ShareContainer.h: add a couple of missing typenames.
7352
7353 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
7354
7355         * lyxrc.C (getDescription): use _() correctly rather than N_().
7356
7357 2002-03-28  Herbert Voss  <voss@lyx.org>
7358
7359         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
7360         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
7361
7362 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7363
7364         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
7365         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
7366
7367 2002-03-29  Juergen Vigna  <jug@sad.it>
7368
7369         * lyxfunc.C (dispatch): add a missing fitCursor call.
7370
7371         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
7372         it was scrolled by a cursor move, so return the bool status.
7373
7374         * BufferView.C (fitCursor): return the bool flag also to the outside
7375         world as this is needed.
7376
7377         * screen.C (toggleToggle): don't subtract the offset if it's positive.
7378
7379         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
7380         call the edit() as it is not needed (and wrong) IMO.
7381         (workAreaButtonPress): set the screen_first variable before evt.
7382         unlock the inset as this may change screen_first and then we have
7383         a wrong y position for the click!
7384
7385 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7386
7387         * MenuBackend.C (expand): another translation that I missed
7388
7389 2002-03-28  Juergen Vigna  <jug@sad.it>
7390
7391         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
7392
7393         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
7394
7395 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7396
7397         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
7398
7399         * MenuBackend.C (expand): fix export/view/update when there is no
7400         document open.
7401
7402 2002-03-27  Herbert Voss  <voss@lyx.org>
7403
7404         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
7405         and text%
7406
7407 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7408
7409         * bufferview_funcs.C (currentState): only show paragraph number
7410         for is DEVEL_VERSION is set.
7411
7412         * lyxfunc.C (dispatch): put warning in INFO channel
7413
7414         * MenuBackend.C (expand): translate the name of floats
7415
7416         * FloatList.C (FloatList): mark the float names for translation
7417
7418         * converter.C (convert): use LibScriptSearch
7419
7420 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7421
7422         * MenuBackend.C (defaults): fix default menu (we might as well get
7423         rid of it...)
7424
7425 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7426
7427         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
7428         directory.
7429
7430 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7431
7432         * lyxvc.C: reorder includes.
7433
7434 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
7435
7436         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
7437           properly
7438
7439 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
7440
7441         * CutAndPaste.C: change layouts earlier on paste
7442           to avoid crashing when calling getFont()
7443
7444 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
7445
7446         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
7447         irritating #error.
7448
7449 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7450
7451         * WorkArea.C: remove 'Pending' debug message.
7452
7453         * most files: ws cleanup
7454
7455         * buffer.[Ch]: ws changes
7456
7457         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
7458
7459 2002-03-21  Juergen Vigna  <jug@sad.it>
7460
7461         * tabular.C (SetMultiColumn): collapse also the contents of the
7462         cells and set the last border right. Added a Buffer const * param.
7463
7464 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7465
7466         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
7467         linking or not.
7468
7469 2002-03-19  Juergen Vigna  <jug@sad.it>
7470
7471         * text2.C (clearSelection): reset also xsel_cache.
7472
7473         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
7474         where it needs to be called (John tells us to do so too :)
7475         (selectionLost): reset sel_cache.
7476
7477         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
7478
7479 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7480
7481         * text2.C (setCursorIntern): put debuging code in INSETS channel
7482
7483 2002-03-19  André Pönitz <poenitz@gmx.net>
7484
7485         * lyxfunc.C: tiny whitespace change
7486
7487 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7488
7489         * ToolbarDefaults.C (init):
7490         * LyXAction.C (init):
7491         * commandtags.h:
7492         * BufferView_pimpl.C (Dispatch):
7493         * lyxfunc.C (dispatch): remove LFUN_DEPTH
7494
7495 2002-03-19  Allan Rae  <rae@lyx.org>
7496
7497         * exporter.C (Export): removeAutoInsets before doing anything else.
7498         While I've just introduced a dependency on BufferView this really is
7499         the best place to clean the buffer otherwise you need to cleanup in
7500         a dozen places before calling export or cleanup in a dozen functions
7501         that export calls.
7502
7503         * converter.C (runLaTeX):
7504         (scanLog): Better handling of removeAutoInsets and screen updates.
7505
7506         * lyxfunc.C (dispatch): small whitespace changes
7507
7508 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7509
7510         * WorkArea.C (C_WorkAreaEvent): return a value.
7511         (event_cb): return 1 if we handled the event, 0 otherwise.
7512
7513         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
7514
7515 2002-03-18  Juergen Vigna  <jug@sad.it>
7516
7517         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
7518         (GetAdditionalWidth): ditto.
7519         (RightLine): ditto.
7520         (LeftLine): ditto.
7521
7522         * BufferView2.C (copy): use getLyXText() so that we do it inside an
7523         inset if we're there actually (probably not used right now but this
7524         is the direction to go for unifying code).
7525         (paste): disable code to clear the selection.
7526
7527         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
7528         inside an InsetText and move the check further up as it is in the
7529         wrong place.
7530
7531         * text2.C (pasteSelection): set a selection over the pasted text.
7532
7533 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
7534
7535         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
7536         and libgraphics to build on Cygwin.
7537
7538 2002-03-15  Juergen Vigna  <jug@sad.it>
7539
7540         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
7541         inserting an Inset into the paragraph. I know this is not the best
7542         fix but we already use current_view in CutAndPaste so we will remove
7543         all of it's using at the same time.
7544
7545         * buffer.C (sgmlError): deactivated function till it is rewritten in
7546         the right mode, now it can create problems.
7547
7548         * paragraph.C (isLineSeparator): check if getInset returns != 0,
7549         before accessing it.
7550
7551 2002-03-14  Juergen Vigna  <jug@sad.it>
7552
7553         * undo_funcs.C (textHandleUndo): do the right thing when updating
7554         the inset after the undo/redo.
7555
7556         * text2.C (setCursor): just some testcode for #44 not ready yet.
7557
7558         * undo_funcs.C (textHandleUndo): set the next() and previous()
7559         pointers of the paragraph to 0 before deleting otherwise we have
7560         problems with the Paragraph::[destructor].
7561
7562         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
7563         on a paragraph insertion.
7564
7565 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7566
7567         * buffer.C (asciiParagraph): use += operator for char append to
7568         string.
7569
7570         * paragraph.C (getFontSettings): compare >= not just >
7571         (highestFontInRange): ditto
7572         (setFont): ditto
7573
7574 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7575
7576         * paragraph.C: change several algorithm to be more appripriate for
7577         the problem domain. This is lookip in FontList and in the InsetList.
7578
7579 2002-03-13  André Pönitz <poenitz@gmx.net>
7580
7581         * commandtags.h:
7582         * LyXAction.C: remove unused LFUN_MATH_MACROARG
7583
7584 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
7585
7586         * commandtags.h:
7587         * LyXAction.C:
7588         * lyxfunc.C:
7589         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
7590
7591 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7592
7593         * Painter.C (display): anon helper function, adjust code for this
7594         change.
7595         (pixmap): remove function.
7596
7597         * Painter.h: remove private display variable.
7598
7599         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
7600
7601 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
7602
7603         * WorkArea.[Ch]: remove figinset_canvas cruft.
7604
7605 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7606
7607         * lyxtextclass.C (operator): add one item cache optimization.
7608
7609         * bufferlist.h: doxy changes
7610
7611         * bufferlist.C: ws changes
7612
7613         * DepTable.[Ch] (ext_exist): place const in the right spot.
7614
7615         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
7616         call resizeInsets.
7617         (workAreaExpose): call resizeInsets when the with BufferView changes.
7618         (Dispatch): adjust for protectedBlank removal
7619         (specialChar): call updateInset if the insert went ok.
7620
7621         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
7622         specialChar instead.
7623
7624         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
7625
7626         * BufferView.h: doxy change
7627
7628         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
7629
7630         * lyxtextclass.C (operator[]): remove non-const version
7631         (defaultLayout): remove non-const version
7632
7633 2002-03-12  Juergen Vigna  <jug@sad.it>
7634
7635         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
7636         did resize the LyXText too.
7637
7638         * buffer.C (readLyXformat2): set layout information on newly allocated
7639         paragraphs.
7640
7641         * tabular.C (OldFormatRead): set layout information on the paragraph.
7642
7643 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
7644
7645         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
7646
7647 2002-03-11  Juergen Vigna  <jug@sad.it>
7648
7649         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
7650         plainly wrong.
7651         (resizeCurrentBuffer): force also the insets to resize themselfes.
7652         (moveCursorUpdate): fixed up for InsetText.
7653
7654 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
7655
7656         * commandtags.h:
7657         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
7658         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
7659         value of Dialogs::tooltipsEnabled().
7660         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
7661
7662 2002-03-08  Juergen Vigna  <jug@sad.it>
7663
7664         * BufferView_pimpl.C (updateInset): update inset inside inset also
7665         if it isn't inside theLockingInset().
7666
7667 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7668
7669         * buffer.C (asciiParagraph): redo some of the word and line length
7670         handling.
7671         (getLists): look for Caption instead of caption.
7672
7673 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7674
7675         * buffer.C (Buffer): initialize niceFile to true
7676         (makeLaTeXFile):
7677         (makeLinuxDocFile):
7678         (makeDocBookFile): make sure niceFile is true on exit
7679
7680 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7681
7682         * buffer.C (makeLaTeXFile): escape ~ in \input@path
7683
7684 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
7685
7686         * LyXSendto.C: remove.
7687         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
7688         * lyx_gui.C: remove now-redundant comment.
7689         * ColorHandler.h: remove forward declaration of class WorkArea.
7690         * lyxfunc.C: remove #include "WorkArea.h".
7691
7692 2002-03-07  Juergen Vigna  <jug@sad.it>
7693
7694         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
7695         got moved away with the DEPM and also set the inset_owner always
7696         right which before could have been omitted.
7697
7698 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7699
7700         * buffer.C (parseSingleLyXformat2Token): use default layout is the
7701         wanted layout is not found.
7702
7703 2002-03-07  Juergen Vigna  <jug@sad.it>
7704
7705         * CutAndPaste.C (cutSelection): another layout settings forgotten.
7706
7707 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7708
7709         * paragraph.C (breakParagraph): use default layout not layout of
7710         prev paragraph.
7711         (Paragraph): clear ParagraphParameters.
7712
7713 2002-03-06  Juergen Vigna  <jug@sad.it>
7714
7715         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
7716         otherwise it would not be a valid lenght. Fixed a special case in
7717         the minipage compatibility read where we end the document with a
7718         minipage.
7719
7720         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
7721         was set as it could be 0 for InsetTexts first entry.
7722
7723 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7724
7725         * paragraph.C (writeFile): if layout is empty write out
7726         defaultLayoutName().
7727
7728         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
7729         file without named layout we set layout to defaultLayoutName().
7730
7731 2002-03-06  Juergen Vigna  <jug@sad.it>
7732
7733         * CutAndPaste.C (copySelection): set layout for new paragraph.
7734
7735         * text.C (prepareToPrint): leave ERT inset left aligned
7736         (leftMargin): don't indent paragraphs inside ERT insets
7737
7738 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7739
7740         * paragraph.C (breakParagraph): dont call clear do the work manually
7741
7742         * paragraph.[Ch] (clear): remove function
7743
7744 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7745
7746         * paragraph.C (Paragraph): dont call clear, the work has already
7747         been done.
7748
7749         * lyxtextclass.C (operator): assert if n is empty
7750
7751         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
7752         work manually instead.
7753
7754 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
7755
7756         * BufferView_pimpl.C: protect selectionLost against text == 0
7757
7758 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7759
7760         * text.C (breakParagraph): fix a setting layout to '0' problem.
7761
7762 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
7763
7764         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
7765         final location of file, for the included files, and graphics.
7766
7767 2002-03-05  Juergen Vigna  <jug@sad.it>
7768
7769         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
7770
7771 2002-03-04  Juergen Vigna  <jug@sad.it>
7772
7773         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
7774
7775         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
7776         last column of multicolumn cells.
7777         (SetWidthOfMulticolCell): recalculate NMC and real columns.
7778
7779 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
7780
7781         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
7782         file if it doesn't go to a temporary file.
7783
7784         * buffer.C (sgmlOpenTag):
7785         (sgmlCloseTag):  remove extra newline insertion.
7786
7787 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7788
7789         * text.C (getRowNearY): comment out debug msg
7790
7791 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7792
7793         * text2.C: first -> first_y
7794
7795         * text.C (getRowNearY): add some attemts at a possible
7796         optimization, not working.
7797
7798         * tabular.[Ch]: add BufferParams to several function so that newly
7799         created paragraph can be initialized to he default layotu for the
7800         buffers textclass.
7801
7802         * tabular-old.C (ReadOld): add buf->params to call of Init
7803
7804         * screen.C: rename text->first to text->first_y
7805
7806         * paragraph.C (breakParagraph): always set layout in the broken
7807         paragraph
7808
7809         * lyxtextclass.C (Read): remove lowercase
7810         (hasLayout): ditto
7811         (operator): ditto
7812         (delete_layout): ditto
7813
7814         * lyxtext.h: rename first -> first_y
7815
7816         * lyxlayout.C (Read): remove lowercase
7817         (name): ditto
7818         (setName): ditto
7819         (obsoleted_by): ditto
7820
7821         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
7822
7823         * buffer.C (insertErtContents): add params are to InsetERT
7824         (parseSingleLyXformat2Token): add code to check if a paragraphs
7825         layout really exist.
7826         (parseSingleLyXformat2Token): add params to several inset
7827         constructors
7828         (asciiParagraph): remove lowercase, do the layout comparisons with
7829         no_case
7830
7831         * BufferView_pimpl.C (cursorNext): first -> first_y
7832         (resizeCurrentBuffer): first -> first_y
7833         (updateScrollbar): first -> first_y
7834         (scrollCB): first -> first_y
7835         (workAreaMotionNotify): first -> first_y
7836         (workAreaButtonPress): first -> first_y
7837         (checkInsetHit): first -> first_y
7838         (cursorPrevious): first -> first_y
7839         (cursorNext): first -> first_y
7840         (Dispatch): add buffer_->params to severl inset contructors
7841
7842 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7843
7844         * lyxlayout.C (Read): remove some debug info that I forgot.
7845
7846         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
7847         clean up the code slightly.
7848         (makeLinuxDocFile): ditto
7849         (makeDocBookFile): ditto
7850
7851         * text2.C: layout as string
7852
7853         * text.C: layout as string
7854
7855         * paragraph_pimpl.C: layout as string
7856
7857         * paragraph.[Ch]: layout as string
7858
7859         * lyxtextclasslist.[Ch]: layout as string
7860
7861         * lyxtextclass.[Ch]: layout as string
7862
7863         * lyxtext.h: layout as string
7864
7865         * lyxlayout.[Ch]: layout as string
7866
7867         * lyx_cb.C: layout as string
7868
7869         * bufferview_funcs.C: layout as string
7870
7871         * bufferparams.C: layout as string
7872
7873         * buffer.C: layout as string
7874
7875         * LyXView.[Ch]: layout as string
7876
7877         * LaTeXFeatures.[Ch]: layout as string
7878
7879         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
7880
7881         * BufferView_pimpl.C: change current_layout to string, remove
7882         lyx::layout_type.
7883         (Dispatch):
7884         (smartQuote):
7885         (insertInset):
7886         (workAreaButtonRelease): layout as string
7887
7888         * BufferView2.C (unlockInset): adjust
7889
7890         * vspace.C (asLatexCommand): use an explict temp variable.
7891
7892 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
7893
7894         * Makefile.am: use FRONTEND_*
7895
7896 2002-03-01  Juergen Vigna  <jug@sad.it>
7897
7898         * tabular.C (SetWidthOfMulticolCell): changed to something better
7899         I hope but still work in progress.
7900         (recalculateMulticolumnsOfColumn): renamed function from
7901         recalculateMulticolCells as it is more appropriate now.
7902         (SetWidthOfCell): calculate multicols better.
7903
7904 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7905
7906         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
7907
7908         * lyxfunc.C (processKeySym): print sequence also if it is
7909         `deleted' (complete)
7910
7911         * kbsequence.C (print): print sequence even if it is deleted
7912         (complete would be a better word, actually).
7913
7914         * lyxfunc.C (dispatch): print complete options after a prefix key
7915
7916         * vspace.C (asLatexCommand): rewrite in a slightly different form.
7917
7918 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
7919
7920         * text2.C (setCharFont): eliminate setCharFont code duplication.
7921
7922 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7923
7924         * BufferView_pimpl.C (Dispatch): remove bogus handling of
7925         LFUN_TABULAR_FEATURE (bug #177)
7926
7927 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
7928
7929         * Makefile.am: remove figure.h
7930
7931 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
7932
7933         * Bufferview_pimpl.C:
7934         * CutAndPasteC:
7935         * LaTeX.C:
7936         * LyXSendto.C:
7937         * buffer.C:
7938         * bufferlist.C:
7939         * converter.C:
7940         * language.C:
7941         * lyxfunc.C:
7942         * lyxvc.C:
7943         * paragraph.C:
7944         * text.C:
7945         * text2.C: remove #include "lyx_gui_misc.h".
7946
7947         * LaTeX.C: added #include <cstdio>
7948
7949 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7950
7951         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
7952         that the paragraph following this one can have.
7953
7954         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
7955
7956         * vspace.C (asLatexCommand): fix bogus gcc warning
7957
7958         * Makefile.am (lyx_SOURCES): remove vms_defines.h
7959
7960 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
7961
7962         * text2.C (setLayout): get rid of redundant code
7963
7964 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
7965
7966         * text2.C (incDepth): make sure depth cannot be increased beyond
7967         reasonable values.
7968
7969 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
7970
7971         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
7972         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
7973
7974         * PainterBase.h (image):
7975         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
7976         a LyXImage const *.
7977
7978 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
7979
7980         * BufferView.C:
7981         * BufferView.h:
7982         * BufferView_pimpl.C:
7983         * BufferView_pimpl.h:
7984         * LaTeXFeatures.C:
7985         * LyXAction.C:
7986         * LyXView.C:
7987         * Makefile.am:
7988         * UpdateList.h:
7989         * UpdateList.C:
7990         * buffer.C:
7991         * figure.h:
7992         * figureForm.C:
7993         * figureForm.h:
7994         * figure_form.C:
7995         * figure_form.h:
7996         * lyx_cb.C:
7997         * lyx_gui.C:
7998         * lyx_gui_misc.C:
7999         * lyxfunc.C:
8000         * sp_base.h:
8001         * sp_ispell.h:
8002         * sp_pspell.h:
8003         * sp_spell.C: remove fig inset, and the crap house of
8004           cards that follows it
8005
8006 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
8007
8008         * Makefile.am:
8009         * lyxserver.C:
8010         * os2_defines.h:
8011         * os2_errortable.h:
8012         * nt_defines.h: move .h into support/
8013
8014         * vms_defines.h: remove
8015
8016         * WorkArea.C: add space in debug output
8017
8018         * text2.C:
8019         * paragraph.C:
8020         * buffer.C: add WITH_WARNINGS
8021
8022         * vc-backend.h:
8023         * vc-backend.C:
8024         * bufferlist.C: s/retrive/retrieve/, add docs
8025
8026         * vspace.h:
8027         * vspace.C:
8028         * kbmap.h:
8029         * lyxlength.h:
8030         * lyxgluelength.h:
8031         * length_common.h:
8032         * chset.h:
8033         * chset.C: add docs
8034
8035         * lyxgui.C: add ID to X error handler
8036
8037         * lyxtestclass.c: fix typo
8038
8039 2002-02-26  Juergen Vigna  <jug@sad.it>
8040
8041         * tabular_funcs.C (write_attribute): changed so that some default
8042         attributes are not written at all.
8043         (getTokenValue): set default values before trying to read the
8044         value so we have the return value always set as default if we don't
8045         find the token we search for.
8046
8047         * tabular.C (Write): write bools as bools not as strings!
8048
8049 2002-02-22  Juergen Vigna  <jug@sad.it>
8050
8051         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
8052         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
8053
8054         * text.C (leftMargin): don't add an indent for paragraphs inside
8055         tabular cells (fix #208).
8056
8057 2002-02-21  José Matos  <jamatos@fep.up.pt>
8058
8059         * tabular.C (docBook): fixed support for long tables.
8060
8061 2002-02-20  Juergen Vigna  <jug@sad.it>
8062
8063         * text2.C (getFont): get the drawing font of the Inset if this
8064         paragraph is inside an inset (only important for InsetERT for now).
8065
8066         * buffer.C (insertErtContents): use new lanugage params in ERT
8067         constructor.
8068
8069         * CutAndPaste.C: commenting out seemingly uneeded code.
8070
8071 2002-02-19  Allan Rae  <rae@lyx.org>
8072
8073         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
8074         Iterators might be simple to use but they also get invalidated.
8075         (removeAutoInsets): renamed saved cursor tracking variables and added
8076         some comments to clarify what everything does.
8077
8078 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
8079
8080         * Chktex.C:
8081         * LaTeX.C:
8082         * LyXSendto.C:
8083         * converter.C:
8084         * lyx_cb.C:
8085         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
8086         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
8087
8088         * lyxfunc.C:
8089         * vc-backend.h: remove #include "support/syscall.h"
8090
8091         * LaTeX.C:
8092         * LyXSendto.C:
8093         * converter.C: rearrange #includes in Lars' approved fashion.
8094
8095         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
8096         forward declare class Timeout in the header file.
8097
8098         * XFormsView.C: changes due to the above.
8099
8100         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
8101         similar to LyXView.
8102
8103         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
8104         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
8105
8106 2002-02-18  José Matos  <jamatos@fep.up.pt>
8107
8108         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
8109         insets contents.
8110
8111 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
8112
8113         * a lot of small ws changes
8114         * add a lot of using std::XXX
8115         * use std construcs some places where approp.
8116         * use some exisint stuff from lyxfunctional where approp.
8117         * Make file changes to use partial linking (lets test this now...)
8118
8119 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
8120
8121         * Chktex.C:
8122         * buffer.C:
8123         remove #include "support/syscontr.h" as it's redundant. Always has been.
8124
8125         * Chktex.C:
8126         * LaTeX.C:
8127         * LyXSendto.C:
8128         * converter.C:
8129         * lyx_cb.C:
8130         * vc-backend.C:
8131         change Systemcalls::System to Systemcalls::Wait and
8132         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
8133         No change of functionality, just reflects the stripped down Systemcalls
8134         class.
8135
8136 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
8137
8138         * debug.[Ch]: add a GRAPHICS type to the enum.
8139
8140 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8141
8142         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
8143
8144         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
8145         there is an inset.
8146
8147 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8148
8149         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
8150         match the changes below.
8151
8152         * text2.C (toggleInset): if there is not editable inset at cursor
8153         position, try to see if cursor is _inside_ a collapsable inset
8154         and close it.
8155
8156 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8157
8158         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
8159         document menu has a nice checkbox
8160
8161 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8162
8163         * lyxlength.C (asLatexString): change PW to output as percent of
8164         \textwidth.
8165
8166         * lengthcommon.C: change '%' to 't%'
8167
8168         * lyxfunc.C (dispatch): a few comments from Martin
8169
8170 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
8171
8172         * WorkArea.h:
8173         * WorkArea.C:
8174         * BufferView_pimpl.h:
8175         * BufferView_pimpl.C: clear our selection when X tells us we've lost
8176           the X selection.
8177
8178 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8179
8180         * vspace.C (inPixels): fix compiler warning
8181
8182 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8183
8184         * lyxfunc.C (getStatus): fix status message for disabled commands.
8185
8186 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
8187
8188         * BufferView_pimpl.C: fix crash on close buffer
8189         during selection (#227)
8190
8191 2002-01-27  Herbert Voss  <voss@lyx.org>
8192
8193         * buffer.C: link old Figure to new graphic inset
8194
8195 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
8196
8197         * FontLoader.C (getFontinfo): Change the latex font names in order
8198         to match the names of type1inst.
8199
8200 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8201
8202         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
8203
8204         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
8205         (extchanged): ditto
8206         (ext_exist): ditto
8207         (remove_files_with_extension): ditto
8208         (remove_file): ditto
8209         (write): ditto
8210
8211         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
8212         document is smaller than the work area height. Do not initialize
8213         static variables to 0.
8214
8215 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8216
8217         * lyx_gui.C (init): give the toolbar tooltips a normal font.
8218
8219         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
8220         LFUN_LAYOUT_PARAGRAPHS.
8221
8222         * tabular.C (GetCellFromInset): new method. Finds an inset in a
8223         tabular. It is possible to provide a possible cell, which will
8224         typically be the actcell from the corresponding insettabular
8225
8226         * lyxfunc.C (getStatus): small cleanup; disable
8227         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
8228         true
8229
8230 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8231
8232         * tabular.C (Validate): remove broken optimization (fixes bug #201)
8233
8234         * paragraph.C (startTeXParParams):
8235         (endTeXParParams): new methods. The LaTeX code to
8236         start/end paragraph formatting
8237         (simpleTeXOnePar): call startTeXParParams also when paragraph is
8238         empty (fixes bug #200)
8239
8240         * vspace.C (inPixels): adapt to the change below
8241         (inPixels): [later] more cleanups (remove unused variables)
8242
8243         * lyxlength.C (inPixels): change to use a width and a height as
8244         parameter.
8245
8246 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8247
8248         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
8249         Replaced with \paperwidth
8250
8251         * DepTable.C (insert): add std:: qualifier
8252
8253 2002-01-18  Allan Rae  <rae@lyx.org>
8254
8255         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
8256         updated also?
8257
8258         * text.C (drawInset): Turned out I didn't know enough about how
8259         rebreaking worked.  This fixes most of the redraw problems.  I see
8260         an occasional cursor trail when a line is broken now and the cursor
8261         placement can seem out by a few pixels also after a rebreak.
8262
8263 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8264
8265         * buffer.C (parseSingleLyXformat2Token): update because minipage
8266         width is now a LyXLength
8267
8268         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
8269
8270         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
8271         math insets
8272
8273 2002-01-17  Juergen Vigna  <jug@sad.it>
8274
8275         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
8276
8277         * BufferView2.C (lockInset): call edit() so that theLockingInset()
8278         is set correctly and the inset is updated correctly.
8279
8280 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8281
8282         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
8283         the beginning of the loop.
8284
8285 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
8286
8287         * lyxrc.C: improve help for use_scalable_fonts
8288
8289 2002-01-17  Allan Rae  <rae@lyx.org>
8290
8291         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
8292
8293 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8294
8295         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
8296         make sure to set their inset_owner to the right value (bug #171)
8297
8298 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
8299
8300         * DepTable.h
8301         * DepTable.C: Implement mtime checking to reduce time spent doing
8302         CRCs.
8303
8304 2002-01-16  Juergen Vigna  <jug@sad.it>
8305
8306         * tabular.C (GetAdditionalHeight): one of error fixed.
8307
8308         * lyxrc.C (output): small fix in writing use_pspell.
8309
8310 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
8311
8312         * sp_base.h: #include LString.h
8313
8314 2002-01-16  Allan Rae  <rae@lyx.org>
8315
8316         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
8317         Can someone check this please?
8318
8319         * text.C (drawInset): It was possible that p.row would be removed by
8320         breakAgainOneRow upsetting a few other settings.  There may be another
8321         small tweak possible by setting need_break_row = 0 when p.row has been
8322         removed but I don't know enough about the logic here.
8323
8324 2002-01-15  Allan Rae  <rae@lyx.org>
8325
8326         * text.C (insertChar): removed conditional truism.
8327
8328         * BufferView2.C (removeAutoInsets): More tweaks.
8329         cur_par_prev could be a stray pointer.  Check for trailing empty line
8330         in case last line was cur_par and only had an error inset on it.
8331
8332 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8333
8334         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
8335         absolute
8336
8337         * vc-backend.C (most methods):
8338         * exporter.C (Export):
8339         * converter.C (convert):
8340         (runLaTeX):
8341         * LyXSendto.C (SendtoApplyCB):
8342         * lyxfunc.C (dispatch):
8343         (menuNew):
8344         (open):
8345         (doImport):
8346         * lyx_cb.C (AutoSave):
8347         (InsertAsciiFile):
8348         * BufferView_pimpl.C (MenuInsertLyXFile):
8349         * buffer.C (runChktex): use Buffer::filePath().
8350
8351         * buffer.h: rename filename to filename_; rename filepath to
8352         filepath_ and make it private
8353         (filePath): new method
8354
8355         * buffer.C (writeFile): use fileName()
8356         (getLatexName):
8357
8358         * lyx_main.C (init): fix starting  of LyX when the binary is a
8359         link from so,ewhere else.
8360
8361         * minibuffer.C: include <cctype> for isprint
8362
8363 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
8364
8365         * buffer.C (parseSingleLyXformat2Token): changes associated with the
8366         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
8367         name clash with InsetCollapsable's width function.
8368
8369 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8370
8371         * lastfiles.C: include <iterator>
8372
8373 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
8374
8375         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
8376         std::count.
8377
8378         * buffer.C (makeLaTeXFile): ditto.
8379         Also make loop operation more transparent.
8380
8381 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
8382
8383         * ToolbarDefaults.C: remove trailing comma closing namespace.
8384
8385         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
8386
8387         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
8388         as in WorkArea.
8389
8390         * trans.C (Load): comment out unused variable, allowed.
8391
8392 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
8393
8394         * minibuffer.[Ch] (append_char): new method to recieve input from the
8395         drop-down completion browser. If a key was pressed, then recieve this
8396         char and append it to the existing string.
8397         (peek_event): modify the positioning data passed to the completion
8398         browser so that it can be placed above the minibuffer rather than below.
8399 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8400
8401         * LyXAction.C (init): alloe error-next for readonly documents.
8402
8403         * BufferView2.C (ChangeRefsIfUnique): use standard version of
8404         count.
8405
8406 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8407
8408         * bufferlist.C (readFile): create the buffer _after_ checking that
8409         the file exists.
8410
8411         * lyxfunc.C (verboseDispatch): fix handling of arguments
8412
8413         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
8414
8415         * lyxrc.C: use string::erase() instead of initializing to "".
8416
8417
8418 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
8419
8420         * BufferView_pimpl.h:
8421         * BufferView_pimpl.C:
8422         * WorkArea.h:
8423         * WorkArea.C:
8424         * text2.C: tell X when we have made a selection for copying
8425
8426 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8427
8428         * BufferView_pimpl.C (MenuInsertLyXFile):
8429         * lyxfunc.C (menuNew):
8430         (open):
8431         (doImport): add shortcuts to directory buttons
8432
8433         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
8434         open a float)
8435
8436         * lyxfunc.C (setStatusMessage):
8437         (getStatusMessage): new methods
8438         (getStatus):use setStatusMessage instead of setErrorMessage
8439         (dispatch): when function is disabled, set error message here
8440         [instead of in getStatus previously]
8441
8442         * BufferView_pimpl.C (workAreaButtonRelease): update
8443         toolbar/menubar here too.
8444
8445 2002-01-13  Allan Rae  <rae@lyx.org>
8446
8447         * BufferView2.C (removeAutoInsets): finished off earlier fix.
8448         Now seems indestructible.  Remaining task is to audit all other
8449         code affected by deleteEmptyParagraphMechanism.  One small quirk
8450         left is that an empty document with an error in the preamble can
8451         be made to report an error but no error box appears.  I don't know
8452         where it goes.
8453         (removeAutoInsets): Improved comments.
8454
8455 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
8456
8457         * Thesaurus.h:
8458         * Thesaurus.C: update for Aiksaurus 0.14
8459
8460 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8461
8462         * text2.C (firstParagraph): removed member function, all uses
8463         replaces with ownerParagraph
8464         (redoParagraphs): here
8465         (updateInset): here
8466         (toggleAppendix): here
8467         * BufferView2.C (insertErrors): here
8468         (setCursorFromRow): here
8469
8470 2002-01-13  Allan Rae  <rae@lyx.org>
8471
8472         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
8473         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
8474         There is still a way to segfault this although you may have to do this
8475         multiple times: Have an InsetERT with an unknown command in it.
8476         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
8477         <down-arrow>, <Enter> again, View->DVI, BANG!
8478
8479         * text2.C (setCursor):
8480         (deleteEmptyParagraphMechanism):
8481         * lyxtext.h (setCursor):
8482         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
8483         Making use of the return value may help fix other bugs.
8484
8485 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8486
8487         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
8488
8489         * LyXView.C (updateMenubar): call MenuBar::update here
8490         (updateToolbar): but not here
8491         (showState): do not update toolbar/menubar
8492
8493         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
8494         should need to care about that.
8495
8496         * lyxfunc.C (verboseDispatch): simplify a bit
8497         (getStatus): have a version which takes a pseudoaction, and
8498         another which requires a (kb_action,string).
8499
8500         * LyXAction.C (retrieveActionArg): make it work also when action
8501         is not a pseudo-action.
8502         (getActionName): simplify a bit
8503         (helpText):
8504
8505 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8506
8507         * lyxfunc.C (verboseDispatch): new families of methods with
8508         several ways to specify a command and a bool to indicate whether
8509         the command name and shortcut should be displayed in minibuffer
8510         (eventually, we could extend that to a finer bitmask like
8511         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
8512         (dispatch): the pristine dispatch command which just, well,
8513         dispatchs! Note it still sets its result to minibuffer; I'm not
8514         sure we want that.
8515
8516         * lyxfunc.h: remove setHintMessage
8517
8518         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
8519
8520 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8521
8522         * BufferView_pimpl.C (specialChar): delete new inset if we have
8523         not been able to insert it.
8524
8525         * kbmap.C: revert to using int instead of kb_action, since all we
8526         are dealing with is pseudo-actions.
8527
8528         * LyXAction.C (searchActionArg): change to return int instead of
8529         kb_action, since the result is a pseudoaction.
8530
8531 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
8532
8533         * buffer.C (insertErtContents): Fix (partially) the font bug.
8534
8535 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
8536
8537         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
8538         as the other one is broken on my machine!
8539
8540 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
8541
8542         * commandtags.h:
8543         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
8544
8545 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
8546
8547         * lyxrc.[Ch]: change names and descriptions of popup font variables to
8548         reflect their actual use. Provide compatibility code for older lyxrc
8549         files.
8550
8551         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
8552         FL_NORMAL_STYLE.
8553         change names of popup font variables in line with the changes to lyxrc.C
8554
8555 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8556
8557         * buffer.C (asciiParagraph): avoid outputing a word twice after
8558         an inset.
8559
8560         * lyxrc.C (getDescription): document that document_path and
8561         template_path can be empty.
8562
8563 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8564
8565         * LaTeXFeatures.C (getMacros):
8566         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
8567
8568         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
8569
8570         * LaTeXFeatures.C (useFloat): require "float" here instead of in
8571         getPackages.
8572         (getPackages): rename feature "floats" to "float". Use an array to
8573         iterate over 'simple' features (i.e. just a \usepackage). Add
8574         handling of "amsmath" (renamed from "amsstyle").
8575
8576 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
8577
8578         * LaTeXFeatures.C (require): Prevent duplicate entries in the
8579         features list.
8580
8581 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
8582
8583         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
8584         FuncStaus::FuncStatus & FuncStaus::some_method().
8585
8586 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
8587
8588         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
8589         of the func_satus stuff. Edited and massaged in various ways by
8590         JMarc.
8591
8592         * lyxfunc.C (getStatus): use FuncStatus
8593
8594 2002-01-08  Juergen Vigna  <jug@sad.it>
8595
8596         * text.C (nextBreakPoint): use function Inset::isChar().
8597
8598         * paragraph.C (TeXOnePar): use function
8599         Inset::forceDefaultParagraphs.
8600
8601         * buffer.C (latexParagraphs): use function
8602         Inset::forceDefaultParagraphs.
8603
8604 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
8605
8606         * lyx_gui.C (init): set the style of the menu popups to
8607         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
8608
8609 2002-01-07  Juergen Vigna  <jug@sad.it>
8610
8611         * text.C (setHeightOfRow): small fix
8612         (prepareToPrint): don't look at alignment if we don't have the place
8613         for doing it.
8614
8615 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
8616
8617         * box.C: New file. Move the Box methods and functions out of box.h,
8618         following Lars' suggestion.
8619
8620 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
8621
8622         * box.h: #include "support/LOstream.h", needed for inlined function.
8623
8624         * lyxtextclass.C:
8625         * lyxtextclasslist.C: added some using std declarations.
8626
8627 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
8628
8629         * box.h: make signed dimensions to allow insets wider than
8630           the screen (bug #162)
8631
8632         * BufferView_pimpl.C: add some insetHit debug
8633
8634 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
8635
8636         * vc-backend.C: add FIXME
8637
8638 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8639
8640         * lyxfunc.C (getStatus): enable code for showing math font status
8641         in toolbar/menu.
8642
8643 2002-01-07  Juergen Vigna  <jug@sad.it>
8644
8645         * text.C (nextBreakPoint): removed debug output not needed anymore.
8646
8647 2002-01-06  Juergen Vigna  <jug@sad.it>
8648
8649         * text.C (nextBreakPoint): fixed up this function we had this bug
8650         since ever but now hopefully we break row better.
8651         (insertChar): we have to check if an inset is the next char as it
8652         could now happen that a large inset is causing a break.
8653
8654 2002-01-05  Juergen Vigna  <jug@sad.it>
8655
8656         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
8657         if it doesn't like to be drawed.
8658
8659 2002-01-04  Juergen Vigna  <jug@sad.it>
8660
8661         * BufferView2.C (lockInset): forgot to set a cursor.
8662
8663         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
8664
8665 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
8666
8667         * FormMathsPanel.C:
8668         * FormMathsPanel.h
8669         * MathsSymbols.C:
8670         * form_maths_panel.C:
8671         * form_maths_panel.h:
8672         * form_maths_panel.fd: implemented sub- and super- buttons in math
8673         panel.
8674
8675         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
8676         (or ^ space) to be used as in TeX (req'd by André).
8677
8678         * lyxfunc.C: Allow ^ and _ again to be used both as
8679         super/subscript (mathed) and as themselves (in text).
8680
8681 2002-01-03  Allan Rae  <rae@lyx.org>
8682
8683         * LyXView.C (updateWindowTitle): Setup a short icon title of either
8684         "LyX" or the filename of the current buffer if it has one.  This is a
8685         modified form of John Levon's patch.
8686
8687         * XFormsView.C (setWindowTitle): also set icon title.
8688
8689         * LyXView.h (setWindowTitle): signature changed.
8690         * XFormsView.h (setWindowTitle): ditto.
8691
8692 2002-01-02  Juergen Vigna  <jug@sad.it>
8693
8694         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
8695
8696 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8697
8698         * screen.C (topCursorVisible): introduce a temp var for
8699         text->cursor.row(), handle the case where this row is null. (kindo
8700         hachish)
8701
8702         * text2.C (setCursor): add a couple of asserts.
8703
8704         * paragraph.h (inset_iterator): add -> operator
8705
8706         * paragraph.[Ch] (autoDeleteInsets): remove member function
8707
8708         * BufferView2.C (removeAutoInsets): rewrite to handle the old
8709         cursor pos correctly and handle inset deletion by itself.
8710         (insertErrors): move iterator declaration out of for expression
8711
8712         * lyxtextclass.C: add <algorithm>
8713
8714         * Makefile.am: added the new files to sources, removed layout.C
8715
8716         * layout.C: removed file
8717
8718         * layout.h: remove LYX_DUMMY_LAYOUT
8719
8720         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
8721         layout.
8722
8723         * lyxlayout.[Ch]:
8724         * lyxtextclass.[Ch]:
8725         * lyxtextclasslist.[Ch]: new files
8726
8727         * include order changes to a lot of files, also changes because of
8728         the six new files.
8729
8730 2001-12-27  Juergen Vigna  <jug@sad.it>
8731
8732         * buffer.C (asciiParagraph): more fixes.
8733
8734         * tabular.C (ascii): make ascii export support export of only the
8735         data separated by a column-delimiter.
8736         (ascii): better support for ascii export.
8737
8738         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
8739
8740 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8741
8742         * tabular_funcs.C: use a "using std::getline" instead of the
8743         previous fix from Angus (necessary for cxx + lyxstring)
8744
8745 2001-12-24  Juergen Vigna  <jug@sad.it>
8746
8747         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
8748
8749         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
8750         problems. First check a minipage also if we have some ert-contents
8751         (not only on par->size(), second set the right depth of the paragraph
8752         on the relink to the root-paragraph-list!
8753
8754         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
8755         which then did not anymore update the main paragraphs on undo/redo!
8756
8757 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8758
8759         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
8760         code. Support all font-changing funcs (even those which are not in
8761         menu currently). Support for reporting font settings in
8762         mathed (disabled until Andre provides a function on mathed's side).
8763
8764         * func_status.h (toggle): small helper function to set toggle
8765         state on a flag.
8766
8767 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
8768
8769         * tabular_funcs.C: getline -> std::getline
8770
8771 2001-12-21  Juergen Vigna  <jug@sad.it>
8772
8773         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
8774         accessed and could be 0 (I couldn't generate this but it seems
8775         Michael could!).
8776
8777 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8778
8779         * tabular_funcs.C: add LIstream.h, move write_attribute to..
8780         * tabular_funcs.h: here and include iosfwd
8781
8782 2001-12-20  Juergen Vigna  <jug@sad.it>
8783
8784         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
8785         inside inset but undo_par was.
8786
8787 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8788
8789         * Thesaurus.C: always include <config.h> in sources.
8790
8791         * Painter.h:
8792         * lyxlookup.h:
8793         * box.h: do not include <config.h> in header files
8794
8795         * text.C (paintLastRow): remove unused variable
8796
8797         * text.C (transformChar):
8798         (insertChar):
8799         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
8800
8801         * Painter.C (text):
8802         * font.C (width): rewrite to use uppercase() instead of
8803         islower/toupper.
8804
8805         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
8806
8807 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
8808
8809         * lyxfind.C: clean up of find failure position change
8810
8811 2001-12-20  Juergen Vigna  <jug@sad.it>
8812
8813         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
8814
8815         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
8816         (TeXRow): added to LaTeX a single tabular row.
8817         (TeXLongtableHeaderFooter): added to output LT-h/f data.
8818         (Latex): simplified and finally good LT-h/f support.
8819         (various_functions): just small adaptions for LT-h/f support.
8820
8821         * tabular_funcs.[hC]: added and moved here all not classfunctions
8822         of LyXTabular.
8823
8824 2001-12-19  Juergen Vigna  <jug@sad.it>
8825
8826         * tabular.[Ch]: better support for longtabular options (not finished
8827         yet!)
8828
8829 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8830
8831         * text.C (paintLastRow): use the label font instead of the font of
8832         the last character to compute the size of *_BOX. This makes more
8833         sense and avoids a crash with empty paragraphs.
8834         Use Painter::rectangle to draw EMPTY_BOX.
8835
8836 2001-12-19  Juergen Vigna  <jug@sad.it>
8837
8838         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
8839         the paragraphs if the replaced paragraph is not the first one!
8840         Tried to delete not used paragraphs but does not work yet so for
8841         now it's inside #ifdef's and by default off!
8842
8843 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8844
8845         * MenuBackend.C: include "lyx_main.h" instead of declaring
8846         lastfiles (actually was declared as LastFiles* instead of a
8847         scoped_ptr).
8848
8849 2001-12-17  Juergen Vigna  <jug@sad.it>
8850
8851         * tabular.C (AppendColumn): applied John's fix
8852
8853 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
8854
8855         * BufferView.h:
8856         * BufferView.C:
8857         * BufferView_pimpl.h:
8858         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
8859
8860         * Makefile.am:
8861         * box.h: new start of class for above
8862
8863         * lyxfunc.C: ignore space-only minibuffer dispatches.
8864           Show the command name when it doesn't exist
8865
8866         * minibuffer.C: don't add empty lines to the history
8867
8868         * minibuffer.C: add a space on dropdown completion
8869
8870 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
8871
8872         * text.C: fix line above/below drawing in insets
8873
8874 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8875
8876         * lyxlength.C (LyXLength): Initialize private variables.
8877
8878 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
8879
8880         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
8881         when inserting error insets.
8882
8883 2001-12-13  Juergen Vigna  <jug@sad.it>
8884
8885         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
8886         actually sometimes the before-paragraph.
8887         (setUndo): don't clear the redostack if we're not actually undoing!
8888
8889 2001-12-06  Juergen Vigna  <jug@sad.it>
8890
8891         * undo_funcs.C (textHandleUndo): well after John's hint I got here
8892         and fixed redoing of main paragraph, so we can use it now ;)
8893
8894         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
8895
8896 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8897
8898         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
8899         Juergen's request
8900
8901 2001-12-13  André Pönitz <poenitz@gmx.net>
8902
8903         * undostack.[Ch]:
8904         * undo_func.C: minor cleanup
8905
8906 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8907
8908         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
8909         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
8910         font in urw-fonts package which is marked as -urw-fontspecific and
8911         does not work (incidentally, changing the encoding in the
8912         fonts.dir of this package to -adobe-fontspecific fixes the
8913         problem).
8914
8915         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
8916         is a crash when undoing first paragraph (Juergen, please take a
8917         look). THis does not mean the undo fix is wrong, just that it
8918         uncovers problems.
8919
8920         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
8921         the (Paragraph*) version when needed instead of duplicating the
8922         code.
8923
8924         * text.C (workWidth): use Inset::parOwner to find out where the
8925         inset has been inserted. This is a huge performance gain for large
8926         documents with lots of insets. If Inset::parOwner is not set, fall
8927         back on the brute force method
8928
8929         * paragraph_pimpl.C (insertInset):
8930         * paragraph.C (Paragraph):
8931         (cutIntoMinibuffer): set parOwner of insets when
8932         inserting/removing them
8933
8934         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
8935
8936 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
8937
8938         * commandtags.h:
8939         * LyXAction.C:
8940         * lyx_main.C:
8941         * lyxfunc.C:
8942         * mathed/formulabase.C:
8943         * mathed/math_cursor.[Ch]:
8944         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
8945
8946
8947 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8948
8949         * lyxlength.[Ch] (operator!=): new function
8950
8951 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8952
8953         * text.C (workWidth): use Inset::parOwner to find out where the
8954         inset has been inserted. This is a huge performance gain for large
8955         documents with lots of insets. If Inset::parOwner is not set, fall
8956         back on the brute force method
8957
8958         * paragraph_pimpl.C (insertInset):
8959         * paragraph.C (Paragraph):
8960         (cutIntoMinibuffer): set parOwner of insets when
8961         inserting/removing them
8962
8963         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
8964
8965 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8966
8967         * tabular-old.C (getTokenValue):
8968         * tabular.C (getTokenValue):
8969         (write_attribute): new versions for LyXLength
8970         (everywhere): adjust the use of widths
8971
8972         * tabular.h: change the type of widths from string to LyXLength
8973
8974 2001-12-11  Ben Stanley <bds02@uow.edu.au>
8975
8976         * paragraph.C: fixed missing line number count when exporting
8977         Environments to LaTeX file
8978
8979         * buffer.C: added informational message for checking line numbers.
8980
8981 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8982
8983         * text2.C (deleteEmptyParagraphMechanism): if there is only one
8984         paragraph, do the 'double space' part, but not the 'empty
8985         paragraph' one.
8986
8987         * text.C (workWidth): small optimization
8988         (getLengthMarkerHeight): use minimal size for negative lengths.
8989
8990 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
8991
8992         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
8993
8994         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
8995
8996 2001-12-11  André Pönitz <poenitz@gmx.net>
8997
8998         * FontLoader.C:
8999         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
9000
9001 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
9002
9003         * text2.C: keep selection on a setFont()
9004
9005 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
9006
9007         * lyx_cb.C: another bv->text misuse, from insert label
9008
9009 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
9010
9011         * kbsequence.h:
9012         * kbsequence.C: re-instate nmodifier mask
9013
9014 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
9015
9016         * lyx_main.h: make lyxGUI private.
9017
9018 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
9019
9020         * lyxfind.C: place the cursor correctly on failed search
9021
9022 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9023
9024         * text.C (getLengthMarkerHeight): for small heights, the arrows
9025         are not always on top/bottom of the text
9026         (drawLengthMarker): smaller arrows; take the left margin in
9027         account; draw also vfills.
9028         (paintFirstRow):
9029         (paintLastRow): remove special code for vfill and standard spaces,
9030         since everything is handled in drawLengthMarker now.
9031
9032 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9033
9034         * buffer.C (insertErtContents): try to handle font and language
9035         interaction a bit better.g
9036
9037         * ColorHandler.C (updateColor): change the hash to cover the whole
9038         LColor enum, ws cleanup
9039         (getGCLinepars): ditto
9040         (getGCLinepars): only lookup in the linecache once.
9041
9042 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
9043
9044         * iterators.C (operator++): Make the iterator more robust
9045
9046         * BufferView2.C (removeAutoInsets): Use paragraph iterators
9047         (John's patch)
9048         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
9049
9050 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9051
9052         * lyxtext.h:
9053         * text.C: better added space drawing
9054
9055 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9056
9057         * LyXView.C:
9058         * BufferView2.C: fix layout combo update on inset unlock
9059
9060 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9061
9062         * Makefile.am: don't compile unused files
9063
9064 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9065
9066         * lyxfunc.C:
9067         * commandtags.h:
9068         * LyXAction.C: remove old LFUN_LAYOUTNO
9069
9070 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9071
9072         * paragraph_pimpl.h:
9073         * paragraph_pimpl.C: isTextAt() doesn't need font param
9074
9075 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9076
9077         * lyxlex.h:
9078         * lyxlex.C: little cleanup
9079
9080 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9081
9082         * BufferView_pimpl.C: fix insertAscii for insets
9083
9084 2001-12-05  Juergen Vigna  <jug@sad.it>
9085
9086         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
9087         set the right font on the "multi" paragraph paste!
9088
9089 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9090
9091         * trans_decl.h:
9092         * trans_mgr.[Ch]:
9093         * trans.[Ch]:
9094         * lyxgluelength.C:
9095         * lyxlength.C: remove out-commented code.
9096
9097         * BufferView_pimpl:
9098         * CutAndPaste.C:
9099         * DepTable.C:
9100         * buffer.C:
9101         * chset.C:
9102         * lastfiles.C:
9103         * lyxlex.C:
9104         * lyxlex_pimpl.C:
9105         * lyxserver.C:
9106         * screen.C:
9107         * tabular-old.C:
9108         * tabular.C:
9109         * text.C:
9110         * trans_mgr.C:
9111         * vc-backend.C: change "while(" to "while ("
9112
9113         * lyxlength.[Ch]: add zero function to check if length is zero or
9114         not
9115         * lyxgluelength.C: use it
9116
9117 2001-12-05  Allan Rae  <rae@lyx.org>
9118
9119         * lyxlength.C: Attempted a fix for the abs(int) header selection.
9120         Works for 2.95.3, from what I understand of Garst's reports this should
9121         work for other g++ versions.  We're screwed if the abs(int) definition
9122         changed between bugfix releases of gcc.
9123
9124 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
9125
9126         * text.C: fix chapter label offset !
9127
9128 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
9129
9130         * lyxtext.h:
9131         * text.C: fix hfill at end of line, clean up
9132
9133 2001-12-04  Juergen Vigna  <jug@sad.it>
9134
9135         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
9136         that we force an update of the inset and it's owners if neccessary.
9137
9138 2001-12-03  Juergen Vigna  <jug@sad.it>
9139
9140         * text.C (rowLast): simplified code
9141
9142 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
9143
9144         * lyxfunc.C: fix show options on timeout
9145
9146 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9147
9148         * screen.C (topCursorVisible): scroll half a page when the cursor
9149         reached top of bottom of screen
9150
9151 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
9152
9153         * minibuffer.C: deactivate on loss of focus
9154
9155 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9156
9157         * vspace.[Ch] (operator!=): add operator.
9158
9159 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
9160
9161         * BufferView_pimpl.C: refuse to open an inset when
9162         there's a selection.
9163
9164 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
9165
9166         * BufferView_pimpl.C: allow to click on RHS of full row insets
9167
9168 2001-11-30  Juergen Vigna  <jug@sad.it>
9169
9170         * tabular.C (LyXTabular): add a same_id to set the same id's in the
9171         insets for undo reasons.
9172
9173 2001-11-28  André Pönitz <poenitz@gmx.net>
9174
9175         * vspace.[Ch]: cosmetical changes
9176
9177 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
9178
9179         * LyXAction.h:
9180         * LyXAction.C:
9181         * lyxfunc.h:
9182         * lyxfunc.C:
9183         * kbmap.h:
9184         * kbmap.C:
9185         * lyxrc.C:
9186         * kbsequence.h:
9187         * kbsequence.C: part re-write of old kb code
9188
9189         * Painter.C:
9190         * WorkArea.C: remove Lgb_bug_find_hack
9191
9192 2001-11-30  José Matos <jamatos@fep.up.pt>
9193
9194         * buffer.C (makeDocBookFile): add a comment to point a hack.
9195         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
9196         Fixed a double write of labels.
9197
9198 2001-11-29 Ben Stanley <bds02@uow.edu.au>
9199
9200         * LaTeX.C:
9201         * LaTeX.h Fixed bug in LaTeX class where it would not
9202         re-run latex if no depfiles were changed, but the .dvi was removed.
9203
9204 2001-11-28  André Pönitz <poenitz@gmx.net>
9205
9206         * all the files from the change on 2001/11/26:
9207         use lyx::layout_type instead of LyXTextClass::size_type
9208         use lyx::textclass_type instead of LyXTextClassList::size_type
9209
9210 2001-11-29  Juergen Vigna  <jug@sad.it>
9211
9212         * text.C: added support for paragraph::isFreeSpacing()
9213
9214         * buffer.C: same as above
9215
9216         * paragraph.h: inserted isFreeSpacing() function to enable
9217         FreeSpacing inside InsetERT.
9218
9219         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
9220         of the paragraph's in the cut/copy buffer to 0!
9221
9222         * text2.C (removeRow): remove the assert as it can!
9223
9224         * lyxtext.h: added helper function firstRow returning firstrow and
9225         made firstrow private again.
9226
9227         * BufferView2.C (lockInset): don't relock if we're already locked!
9228
9229         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
9230         the only paragraph.
9231         (removeRow): added Assert::(firstrow)
9232
9233         * debug.C: forgot to add INSETTEXT here.
9234
9235 2001-11-28  Juergen Vigna  <jug@sad.it>
9236
9237         * sp_spell.C (initialize): changed error text to more general
9238         spellchecker command use (not only ispell!)
9239
9240         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
9241
9242         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
9243
9244 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
9245
9246         * vspace.C: initialise lyxgluelength on failure
9247
9248 2001-11-28  Allan Rae  <rae@lyx.org>
9249
9250         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
9251         declaration & definition that looks like a function declaration.
9252
9253 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9254
9255         * BufferView2.C (copy):
9256         (copyEnvironment): do not clear the selection when doing a copy.
9257
9258         * text.C (paintFirstRow): compilation fix
9259
9260 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
9261
9262         * tabular.C (Latex): correct line count when writing latex.
9263
9264 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
9265
9266         * paragraph_pimpl.h:
9267         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
9268           bug a bit
9269
9270 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
9271
9272         * text.C:
9273         * LColor.h:
9274         * LColor.C: change vfillline->added_space
9275
9276         * text.C: add markers and text for added space
9277
9278         * vspace.C: fix comment
9279
9280 2001-11-28  André Pönitz <poenitz@gmx.net>
9281
9282         * paragraph.C: whitespace changes
9283         * all the other files from the change on 2001/11/26:
9284         change *::pos_type into lyx::pos_type
9285
9286 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
9287
9288         * buffer.C (parseSingleLyXformat2Token): Set the language to the
9289         language of the document when inserting error insets.
9290
9291 2001-11-26  André Pönitz <poenitz@gmx.net>
9292
9293         * BufferView_pimpl.[Ch]:
9294         *       CutAndPaste.C:
9295         * buffer.[Ch]:
9296         * lyxcursor.[Ch]:
9297         * lyxfind.C:
9298         * lyxfunc.C:
9299         * lyxrow.[Ch]:
9300         * paragraph.[Ch]:
9301         * paragraph_pimpl.[Ch]:
9302         * sp_spell.C:
9303         * text.C:
9304         * text2.C: reduce header dependencies, introduce type for positions
9305
9306 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
9307
9308         * <various>: change to use Alert.h
9309
9310 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
9311
9312         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
9313         when encountering an unknown token.
9314         (readLyXformat2): Show an error message if there were unknown tokens.
9315
9316 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
9317
9318         * BufferView2.C:
9319         * BufferView_pimpl.C:
9320         * buffer.C:
9321         * paragraph.h:
9322         * text.C:
9323         * text2.C: use par->isInset()
9324
9325 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
9326
9327         * paragraph_pimpl.h:
9328         * paragraph_pimpl.C: cleanup
9329
9330 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9331
9332         * text2.C (removeRow):
9333         * text.C (setHeightOfRow): remove useless (and costly) call to
9334         getRow.
9335
9336 2001-11-20  Allan Rae  <rae@lyx.org>
9337
9338         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
9339         Now need Inset*::checkInsertChar() to return true for appropriate
9340         cases so that the characters in the minibuffer will actually be
9341         inserted.
9342
9343 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9344
9345         * text.C: change the order of the includes.
9346         (workWidth): initialize it at once.
9347         (workWidth): make maxw unsigned
9348         (setHeightOfRow): remove unused variable (inset)
9349         (selectSelectedWord): remove unused variable (inset)
9350         (paintRowText): fix drawing of hfill characters, and clean up a bit.
9351
9352 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9353
9354         * lyxserver.C (emergencyCleanup): do not try to close pipes if
9355         server is not running.
9356         (openConnection):
9357         (closeConnection): add debug info when server is disabled.
9358
9359         * ColorHandler.C (getGCForeground): send debug message to GUI
9360         channel.
9361
9362         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
9363
9364         * kbmap.C (bind): modify because return conventions of
9365         kb_sequence::parse have changed.
9366
9367         * kbsequence.C (parse): only ignore spaces and not any stupid
9368         control character. This avoids tests like s[i] <= ' ', which are
9369         guaranteed to fail with 8bit characters and signed chars.
9370         Change return code to string::npos when there have been no error
9371         (0 was a bad idea when error is at first character)
9372
9373 2001-11-14  José Matos  <jamatos@fep.up.pt>
9374
9375         * buffer.h:
9376         * buffer.C (simpleDocBookOnePar): removed unused argument.
9377
9378 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9379
9380         * text.C (selectNextWordToSpellcheck): do not test explicitely for
9381         insets which are part of a word. Paragraph::isLetter takes care of
9382         that now. Use Paragraph::isInset to identify insets.
9383         (selectSelectedWord): do not test for hyphenation break.
9384
9385         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
9386         that protected spaces are considered as spaces.
9387
9388         * paragraph.C (isLetter): cleanup the code for ispell extras; use
9389         Inset::isLetter.
9390
9391 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
9392
9393         * lyxserver.h:
9394         * lyxserver.C: fix it. and small cleanup.
9395
9396 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
9397
9398         * BufferView_pimpl.C: use inline helpers
9399
9400         * LaTeXFeatures.h:
9401         * LaTeXFeatures.C: fix typos
9402
9403         * Spacing.h:
9404         * Spacing.C: move spacing_string into class
9405
9406         * ToolbarDefaults.C: move stuff into namespace anon
9407
9408         * layout.h: update enum
9409
9410         * lyxfunc.C: use better debug
9411
9412         * minibuffer.h: fix typo
9413
9414         * debug.h:
9415         * debug.C:
9416         * WorkArea.C: add and use Debug::WORKAREA
9417
9418         * lyxtext.h:
9419         * text.C:
9420         * text2.C: code re-organisation, inline helpers
9421
9422 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
9423
9424         * Layout.C: replaced a few cases of std::vector.size() == 0 with
9425         std::vector.empty().
9426
9427 2001-11-09  Allan Rae  <rae@lyx.org>
9428
9429         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
9430         '\n's after tables.  Tabular and ERT inset work now makes this no
9431         longer necessary.
9432
9433 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
9434
9435         * minibuffer.h:
9436         * minibuffer.C: fix crash, improve drop-down completion
9437
9438 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
9439
9440         * lyxserver.h:
9441         * lyxserver.C: invalidate fd's when doing endPipe()
9442
9443 2001-11-08  José Matos  <jamatos@fep.up.pt>
9444
9445         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
9446         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
9447
9448         * paragraph.h:
9449         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
9450
9451 2001-11-07  José Matos  <jamatos@fep.up.pt>
9452
9453         * buffer.h:
9454         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
9455         const qualifier.
9456
9457         * buffer.C (sgmlOpenTag):
9458         * buffer.C (sgmlCloseTag): removed debug info.
9459
9460         * buffer.h (sgmlOpenTag):
9461         * buffer.h (sgmlCloseTag): made public.
9462
9463 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9464
9465         * buffer.C (saveParamsAsDefaults):
9466         * lyx_cb.C (MenuLayoutSave): remove
9467
9468         * LyXAction.C (init):
9469         * commandtags.h:
9470         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
9471
9472 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9473
9474         * buffer.C (setPaperStuff): removed from here...
9475
9476         * bufferparams.C (setPaperStuff): ... and moved there.
9477
9478 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
9479
9480         * minibuffer.h:
9481         * minibuffer.C:
9482         * XFormsView.C: add support for drop-down completion
9483
9484 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
9485
9486         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
9487         commands.
9488
9489 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9490
9491         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
9492         disabled.
9493
9494 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
9495
9496         * lyx_main.C: change ref to known bugs
9497
9498 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
9499
9500         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
9501         to work around older babel problems.
9502
9503 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
9504
9505         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
9506
9507 2001-10-24  Juergen Vigna  <jug@sad.it>
9508
9509         * tabular-old.C (ReadOld): below variable changes reflected.
9510
9511         * tabular.[Ch]: added ltType struct for longtable header/footer
9512         defines and changed all instances where they are used. Added
9513         future support for double top/bottom rows.
9514
9515 2001-10-24  José Matos  <jamatos@fep.up.pt>
9516
9517         * buffer.h (docbookHandleCaption):
9518         * buffer.C (docbookHandleCaption): removed unused function.
9519         (makeDocBookFile): moved docbook supported version to v4.1.
9520
9521 2001-10-24  José Matos  <jamatos@fep.up.pt>
9522
9523         * tabular.h:
9524         * tabular.C (docbookRow): new function to export docbook code of a row.
9525         (DocBook): now honors the longtable flags.
9526
9527 2001-10-23  José Matos  <jamatos@fep.up.pt>
9528
9529         * LaTeXFeatures.h:
9530         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
9531         of the lyx defined sgml entities used in a docbook/linuxdoc document.
9532
9533         * buffer.C (makeLinuxDocFile):
9534         (makeDocBookFile): reworked the preamble, more clean, and with
9535         support for lyx defined entities. Changed the document declaration
9536         to be more XML friendly.
9537
9538         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
9539         if we need to output XML that should be done with a filter.
9540
9541 2001-10-22  Juergen Vigna  <jug@sad.it>
9542
9543         * sp_pspell.h (class PSpell): add alive function needed in the
9544         controller to see if the spellchecker could be started.
9545
9546 2001-10-22  Juergen Vigna  <jug@sad.it>
9547
9548         * buffer.C (insertStringAsLines): modify the font for inserting
9549         chars in certain conditions by calling checkInsertChar(font).
9550
9551 2001-10-19  Juergen Vigna  <jug@sad.it>
9552
9553         * text.C (workWidth): use getRow instead of wrong algorithm.
9554         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
9555
9556 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
9557
9558         * lyxserver.h:
9559         * lyxserver.C:
9560         * lyx_main.h:
9561         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
9562
9563 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9564
9565         * text.C (workWidth): do not search for the exact row when
9566         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
9567         optimization for big documents.
9568
9569 2001-10-18  Juergen Vigna  <jug@sad.it>
9570
9571         * text.C (workWidth): new function with added Inset * parameter.
9572
9573 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9574
9575         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
9576
9577         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
9578         change return type of getColumnNearX.
9579
9580
9581         * text.C (changeRegionCase): use uppercase/lowercase instead of
9582         toupper/tolower.
9583         (leftMargin):
9584         (rightMargin): simplify code by factoring out the uses of
9585         textclasslist.
9586         (labelFill):
9587         (numberOfHfills):
9588         (setHeightOfRow):
9589         (appendParagraph): use Paragraph::size_type
9590
9591 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9592
9593         * vspace.C (asLatexString): add a missing break
9594
9595 2001-10-15  Herbert Voss  <voss@perce.de>
9596
9597         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
9598
9599 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9600
9601         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
9602         is not available.
9603
9604 2001-10-10  André Pönitz <poenitz@gmx.net>
9605
9606         * lyxfunc.C: removed greek_kb_flag.
9607
9608 2001-10-10  Herbert Voss  <voss@perce.de>
9609
9610         * lyx_main.C: delete global string help_lyxdir.
9611
9612 2001-10-09  Herbert Voss  <voss@perce.de>
9613
9614         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
9615
9616         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
9617
9618         * lyx_main.C: added global string help_lyxdir.
9619
9620         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
9621
9622 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
9623
9624         * lyxrc.C (set_font_norm_type): support iso8859-4
9625
9626 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
9627
9628         * LaTeX.C (deplog): add another regex for MikTeX
9629
9630 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
9631
9632         * lyxrc.C (set_font_norm_type): support iso8859-3
9633
9634 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9635
9636         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
9637
9638         * LaTeXFeatures.C: remove special case of french and index
9639
9640         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
9641         before \begin{document}). This solves several incompatibilities.
9642
9643 2001-10-03  Garst Reese  <reese@isn.net>
9644
9645         * lyx_cb.C: change CheckTex error msg.
9646
9647 2001-10-03  José Matos  <jamatos@fep.up.pt>
9648
9649         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
9650
9651 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9652
9653         * .cvsignore: update
9654
9655         * lyx_main.C (commandLineVersionInfo): use new style version info.
9656
9657         * buffer.C (writeFile):
9658         (makeLaTeXFile):
9659         (makeLinuxDocFile):
9660         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
9661
9662         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
9663
9664         * version.h: update to use stuff in version.C
9665
9666         * version.C.in: new file. Contains version information determined
9667         at compile time. This is a merging of version.h and
9668         version_info.h.in.
9669
9670 2001-10-03  Juergen Vigna  <jug@sad.it>
9671
9672         * BufferView_pimpl.C (update): don't change "dirty" status in
9673         updateInset call.
9674
9675 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
9676
9677         * WorkArea.C (c-tor): re-position version string slightly.
9678
9679 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
9680
9681         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
9682         revert to previous code.
9683
9684         WorkArea.[Ch]: (show, destroySplash): methods removed.
9685
9686         WorkArea.C: rework code so that it's an amalgam of the codes before and
9687         after the splash screen was moved to WorkArea.
9688
9689 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9690
9691         * lyxrc.C (read):
9692         * vspace.C (inPixels):
9693         (lyx_advance):
9694         * kbmap.C (bind):
9695         * buffer.C (insertStringAsLines):
9696         (asciiParagraph): fix types to be large enough
9697
9698         * lyxlex_pimpl.h: change member status from short to int
9699
9700         * layout.h: fix type of endlabeltype
9701
9702         * kbmap.C (bind):
9703         * kbsequence.C (parse): change return type to string::size_type
9704
9705         * LaTeX.C (updateBibtexDependencies): comment out unneeded
9706         variable
9707
9708         * Bullet.C (bulletSize):
9709         (bulletEntry): do not use short ints as parameters
9710
9711         * BufferView2.C (insertLyXFile): change a char to an int.
9712
9713         * WorkArea.C (WorkArea): remove unneeded floats in computation
9714
9715 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
9716
9717         * buffer.C (asciiParagraph): Treat '\\' as other chars.
9718
9719         * paragraph.C (asString): Do not ignore newline/hfill chars when
9720         copying to the clipboard.
9721
9722 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
9723
9724         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
9725         after a multi-line inset.
9726
9727 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
9728
9729         * paragraph.C (validate): Set NeedLyXFootnoteCode
9730
9731 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
9732
9733         * lyxfont.C (LyXSizeNames): changed increase-error to increase
9734         and decrease-error to decrease.
9735
9736 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9737
9738         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
9739         it more readable (should be equivalent)
9740
9741 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
9742
9743         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
9744
9745 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9746
9747         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
9748         of a cursor (row, etc.) after a character has been deleted
9749         (deleteEmptyParagraphMechanism): call the method above on _all_
9750         cursors held by the LyXText when a double space has been
9751         detected/deleted.
9752
9753 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
9754
9755         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
9756         pixmap.
9757         (resizeCurrentBuff): remove code to destroy the old splash dialog.
9758
9759         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
9760         background. Use greyOut() and the new show() methods to toggle between
9761         the foreground and background. Add code to remove the splash after
9762         its initial showing.
9763
9764         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
9765         (create_forms): no longer call Dialogs::showSplash.
9766
9767 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9768
9769         * .cvsignore: add version_info.h
9770
9771 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9772
9773         * version_info.h.in: new file
9774
9775         * Makefile.am: add version_info.h.in
9776
9777         * lyx_main.C (commandLineVersionInfo): use version_info defined in
9778         version_info.h instead of VERSION_INFO
9779
9780 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
9781
9782         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
9783         The ERT inset now returns string().
9784
9785 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
9786
9787         * lyxtext.h, text.C (selectNextWord): renamed as
9788         selectNextWordToSpellcheck.
9789
9790         * text.C (selectNextWordToSpellcheck): Modified to not select
9791         words inside an ERT inset.
9792
9793 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9794
9795         * lyx_cb.C (MenuLayoutSave): change a bit the question
9796
9797         * sp_base.h: include <sys/types.h>
9798
9799 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
9800
9801         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
9802
9803 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
9804
9805         * several files: fix typos in user-visible strings
9806
9807 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9808
9809         * text2.C (pasteSelection): do not set the selection, since it
9810         will be cleared later. Actually, the intent was to fix the way the
9811         selection was set, but I figured rmoving the code was just as good.
9812
9813 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
9814
9815         * FontLoader.C (available): Check if font is available without
9816         loading the font.
9817
9818 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
9819
9820         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
9821
9822 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
9823
9824         * lyxrc.[Ch]: added display_graphics variable and associated code.
9825
9826 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9827
9828         * bufferparams.C (hasClassDefaults): new method. Returns true if
9829         the buffer parameters correspond to known class defaults
9830
9831 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
9832
9833         * XFormsView.C (show): set minimum size to the main window.
9834
9835 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9836
9837         * text2.C (copySelection):
9838         (cutSelection):
9839         * lyxfind.C (LyXReplace):
9840         * BufferView_pimpl.C (Dispatch): pass the correct flag to
9841         LyXText::selectionAsString.
9842
9843         * paragraph.C (asString): add "label" argument to the second form
9844
9845         * text2.C (selectionAsString): add "label" argument and pass it to
9846         Paragraph::asString.
9847
9848 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9849
9850         * lyx_main.C (commandLineHelp): remove version information
9851
9852 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
9853
9854         * lyx_main.C: add -version commandline option
9855
9856 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9857
9858         * paragraph.h: make the optional constructor arg required instead.
9859         some modifications to other files because of this.
9860
9861         * minibuffer.C (C_MiniBuffer_peek_event): make it static
9862
9863         * lyxserver.C (C_LyXComm_callback): make it static
9864
9865         * lyx_main.C (error_handler): make it static
9866
9867         * lyx_gui.C (LyX_XErrHandler): make it static
9868
9869         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
9870
9871         * WorkArea.C: make the extern "C" methods static.
9872
9873         * Makefile.am (lyx_LDADD): simplify
9874
9875 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
9876
9877         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
9878         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
9879
9880         * LyXAction.C (init):
9881         * lyxfunc.C (dispatch): associated code removal.
9882
9883 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9884
9885         * lyxfont.h (isSymbolFont): shut off warning
9886
9887         * text.C (setHeightOfRow):
9888         (getVisibleRow): fix crash with empty paragraphs which have a
9889         bottom line
9890
9891 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
9892
9893         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
9894         code.
9895
9896 2001-09-04  José Matos  <jamatos@fep.up.pt>
9897         * buffer.C
9898         * buffer.h
9899         * tabular.C (docbook): rename docBook method to docbook.
9900
9901 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
9902
9903         * Makefile.am: add dependencies to main.o.
9904
9905 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
9906
9907         * FontLoader.C (available): Return false if !lyxrc.use_gui
9908
9909 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
9910
9911         * FontInfo.C (query):
9912         * converter.C (view):
9913         * importer.C (Import):
9914         * exporter.C (Export): Can not -> cannot.
9915
9916 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
9917
9918         * BufferView_pimpl.C: allow to create index inset even if
9919           string is empty
9920
9921 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
9922
9923         * buffer.C (getLists): replace boost::tie code with an explicit pair
9924         as boost::tie can break some compilers.
9925
9926         * iterators.h: Added a std:: declaration to the return type of
9927         ParIterator::size.
9928
9929 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
9930
9931         * lyxrc.C: add help for view_dvi_paper_option, default to safe
9932           case.
9933
9934 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
9935
9936         * iterators.[Ch]: New files. Provide paragraph iterators.
9937
9938         * buffer.C (changeLanguage): Use paragraph iterators.
9939         (isMultiLingual): ditto
9940
9941         * BufferView2.C (ChangeInsets): Use paragraph iterators.
9942
9943 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
9944
9945         * FontLoader.C: Support for cmr font.
9946
9947 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
9948
9949         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
9950         (available): New method.
9951
9952         * FontInfo.C (getFontname): Use scalable fonts even when
9953         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
9954         found.
9955
9956 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
9957
9958         * converter.C (Formats::view): reverted! Incorrect fix.
9959
9960 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
9961
9962         * converter.C (Formats::view): only output the -paper option
9963         if the dvi viewer is xdvi, thereby fixing bug #233429.
9964
9965 2001-08-23  Herbert Voss  <voss@perce>
9966
9967         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
9968
9969 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
9970
9971         * Spacing.h (Spacing): Set space to Default on in the default
9972         constructor.
9973
9974 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9975
9976         * vc-backend.h (RCS::versionString): add RCS to version
9977         (CVS::versionString): add CVS to version
9978
9979         * vc-backend.C (scanMaster): do not add CVS to version.
9980         (scanMaster): do not add RCS to version
9981
9982         * lyxvc.C (versionString): new method
9983
9984         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
9985
9986 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9987
9988         * Spacing.C (set): initialize fval
9989
9990 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
9991
9992         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
9993         " or \.
9994
9995 2001-08-16  Juergen Vigna  <jug@sad.it>
9996
9997         * lyxfunc.C (dispatch): implemented the new FINISHED states.
9998
9999 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
10000
10001         * BufferView_pimpl.C:
10002         * figureForm.C:
10003         * lyxtext.h:
10004         * text2.C: setParagraph takes linespacing now
10005
10006 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
10007
10008         * LyxAction.C: add internal LFUN_CITATION_INSERT
10009
10010         * LyXView.C: actually apply fix
10011
10012         * bufferlist.C: fix open non-existent file
10013
10014         * lyxfind.C: fix indentation
10015
10016         * lyxfunc.C: remove unneeded assert, fix typo
10017
10018 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
10019
10020         * MenuBackend.C: use "Floatname List"
10021
10022 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
10023
10024         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
10025         when converting LaTeX layout to insetERT.
10026         Generate a non-collapsed float when reading old float
10027
10028 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
10029
10030         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
10031         ERT insets.
10032
10033 2001-08-13  Juergen Vigna  <jug@sad.it>
10034
10035         * text.C (fill): return 0 instead of 20 as this seems to be the more
10036         correct value.
10037
10038 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
10039
10040         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
10041         lyxrc.font_norm.
10042
10043 2001-08-13  Juergen Vigna  <jug@sad.it>
10044
10045         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
10046         casesensitive off.
10047         (SearchBackward): comment out the unlocking of the inset_owner this
10048         should not be needed!
10049
10050 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
10051
10052         * Many files: Remove inherit_language, and add latex_language
10053
10054         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
10055         collapsible insets.
10056
10057 2001-08-10  Juergen Vigna  <jug@sad.it>
10058
10059         * text.C (prepareToPrint): fixed hfill-width in draw!
10060
10061         * BufferView2.C (selectLastWord): save the selection cursor as this
10062         now is cleared in the function LyXText::clearSelection!
10063
10064 2001-08-08  Juergen Vigna  <jug@sad.it>
10065
10066         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
10067         BACKSPACE type functions.
10068
10069         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
10070         is only cutted from the document but not put in the cut-buffer, where
10071         still the old stuff should be.
10072
10073         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
10074
10075         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
10076
10077         * tabular.C (SetWidthOfCell): fixed special case where the width
10078         was not updated!
10079         (LeftLine): handle '|' in align_special.
10080         (RightLine): ditto
10081         (LeftAlreadyDrawed): ditto
10082         (SetWidthOfCell): ditto
10083
10084 2001-08-07  Juergen Vigna  <jug@sad.it>
10085
10086         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
10087
10088 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10089
10090         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
10091         * lyxlex.[hC]: ditto
10092
10093 2001-08-06  Juergen Vigna  <jug@sad.it>
10094
10095         * text.C (getVisibleRow): fix up row clearing a bit.
10096
10097 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10098
10099         * minibuffer.C: make sure the X server sees the changes in the input.
10100
10101 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10102
10103         * paragraph.C (getFont): split into...
10104         (getLabelFont): this
10105         (getLayoutFont): and this
10106         * paragraph_pimpl.C (realizeFont): calling this
10107
10108         * text2.C (getFont): split into...
10109         (getLayoutFont): this
10110         (getLabelFont): and this
10111         (realizeFont): all three calling this
10112
10113         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
10114         files where used.
10115
10116 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10117
10118         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
10119
10120 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
10121
10122         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
10123         layouts from the Quote inset insertion.
10124
10125 2001-08-03  Juergen Vigna  <jug@sad.it>
10126
10127         * BufferView_pimpl.C (update): do the fitCursor only at the end!
10128
10129         * screen.C (drawFromTo): don't call fitcursor here and do the loop
10130         only if status not is already CHANGED_IN_DRAW (second level).
10131
10132         * text.C (draw): don't set the need_break_row when inside an
10133         InsetText LyXText.
10134
10135 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10136
10137         * buffer.C (parseSingleLyXformat2Token): handle more latex
10138         conversion cases.
10139
10140         * bufferview_funcs.[hC]: change function names to
10141         begin with small char, adjust other files.
10142
10143 2001-08-02  André Pönitz <poenitz@gmx.net>
10144
10145         * lyxfunc.C:
10146         BufferView_pimpl.C: remove broken special code for math-greek
10147
10148 2001-08-02  Juergen Vigna  <jug@sad.it>
10149
10150         * BufferView_pimpl.C (update): redone this function so that we
10151         update the text again if there was a CHANGE_IN_DRAW.
10152
10153         * screen.C (cursorToggle): removed LyXText parameter and recoded.
10154         (drawFromTo): added a new internal bool which is used by draw() and
10155         redraw() function.
10156         (general): some cursor drawing problems fixed.
10157
10158 2001-08-01  Juergen Vigna  <jug@sad.it>
10159
10160         * lyxfind.C (LyXFind): fixed
10161         (SearchForward): ditto
10162         (SearchBackward): ditto
10163
10164         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
10165         spurius drawing of the cursor in the main area.
10166
10167         * text2.C (status): small fix which could lead to a segfault!
10168         (clearSelection): remove unneeded BufferView param.
10169
10170 2001-08-01  André Pönitz <poenitz@gmx.net>
10171
10172         * lyxfunc.C: small change due to changed mathed interface
10173
10174 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10175
10176         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
10177
10178 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
10179
10180         * lyxfunc.c: fail gracefully if file doesn't exist
10181
10182         * LyXSendto.C:
10183         * buffer.C:
10184         * lyxfunc.C:
10185         * BufferView_pimpl.C: IsDirWriteable() proto changed
10186
10187         * LyXView.C: fix updateWindowTitle() to store the last title
10188
10189 2001-07-31  Juergen Vigna  <jug@sad.it>
10190
10191         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
10192         the font (wrong since using of Paragraph::highestFontInRange).
10193
10194         * paragraph.C (highestFontInRange): added a default_size parameter.
10195
10196         * text.C (getVisibleRow): minor clear row changes (still not perfect).
10197         (setHeightOfRow): reformat
10198
10199 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10200
10201         * converter.[hC] + affected files: move to (inital-char)lowercase
10202         function names.
10203
10204         * ParagraphParameters.C (ParagraphParameters): remove commented code
10205
10206         * PainterBase.[Ch]: remove commented code
10207
10208         * LaTeXFeatures.h: add "bool floats" for float.sty
10209
10210         * LaTeXFeatures.C (LaTeXFeatures): init floats
10211         (require): handle float
10212         (getPackages): do it with floats
10213
10214 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10215
10216         * BufferView_pimpl.C (Dispatch): improve handling of
10217         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
10218
10219         * commandtags.h: #include lyxfont.h here temporarily to avoid
10220         keybinding bug.
10221
10222         * bufferlist.h: include LString.h here.
10223
10224 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10225
10226         * text2.C (getStringToIndex): new method.
10227
10228 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
10229
10230         * *: Reduced header file dependencies all over.
10231
10232 2001-07-30  Baruch Even  <baruch@lyx.org>
10233
10234         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
10235
10236 2001-07-29  Baruch Even  <baruch@lyx.org>
10237
10238         * buffer.C (readInset): Changed GRAPHICS to Graphics.
10239
10240 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10241
10242         * ParameterStruct.h (endif): add a default constructor to make
10243         sure that all variables is initialized.
10244
10245         * ParagraphParameters.C (ParagraphParameters): adjust
10246
10247 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10248
10249         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
10250         index; also, check that there is something to index, and that it
10251         does not span over several paragraphs.
10252         (doubleClick): use WHOLE_WORD_STRICT for double click.
10253
10254         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
10255
10256         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
10257         scheme.
10258
10259 2001-07-26  Baruch Even  <baruch@lyx.org>
10260
10261         * buffer.C (readInset): Changed to call up InsetGraphics when reading
10262         an InsetFig figure, backwards compatible reading of old figure code.
10263
10264 2001-07-27  Juergen Vigna  <jug@sad.it>
10265
10266         * text2.C: font.realize function adaption.
10267
10268         * text.C (draw): add a warnings lyxerr text if needed.
10269
10270         * layout.C: font.realize function adaption.
10271
10272         * language.C: add inherit_language and implement it's handlings
10273
10274         * bufferview_funcs.C (StyleReset): remove language parameter from
10275         font creation (should be language_inherit now).
10276
10277         * bufferparams.C (writeFile): handle ignore_language.
10278
10279         * paragraph.C (getFontSettings): the language has to be resolved
10280         otherwise we have problems in LyXFont!
10281
10282         * lyxfont.C (lyxWriteChanges): added document_language parameter
10283         (update): removed unneeded language parameter
10284
10285         * paragraph.C (validate): fixed wrong output of color-package when
10286         using interface colors for certain fonts in certain environments,
10287         which should not seen as that on the final output.
10288
10289 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
10290
10291         * BufferView_pimpl.C:
10292         * Thesaurus.h:
10293         * Thesaurus.C:
10294         * Makefile.am:
10295         * commandtags.h:
10296         * LyXAction.C: add thesaurus support
10297
10298         * lyxfind.h:
10299         * lyxfind.C: add "once" parameter, for thesaurus, to not
10300           move to the next match
10301
10302 2001-07-26  Juergen Vigna  <jug@sad.it>
10303
10304         * lyxfont.C (realize): honor ignore_language too!
10305         (resolved): ditto.
10306
10307         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
10308
10309         * text.C (draw): one place more for ignore_language to not draw
10310         itself!
10311
10312 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
10313
10314         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
10315
10316 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10317
10318         * buffer.C (parseSingleLyXformat2Token): a more general fix for
10319         the minipage conversion problem.
10320
10321 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10322
10323         * buffer.C (parseSingleLyXformat2Token): check minipage if we
10324         insert an inset.
10325
10326 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10327
10328         * BufferView.h: don't forward declare WorkArea
10329
10330         * BufferView.C: don't include WorkArea.h
10331
10332 2001-07-25  André Pönitz <poenitz@gmx.net>
10333
10334         * commandtags.h:
10335         * LyXAction.C:
10336         * lyxfunc.C:  new LFUN 'math-space'
10337
10338         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
10339
10340 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10341
10342         * text2.C (toggleInset): call open/close
10343
10344 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10345
10346         * lyxfunc.C (dispatch): add debug for the disabled case
10347
10348         * font.C (buttonText): make similar to rectText
10349
10350         * buffer.C (readInset): comment out parsing of insetlist and
10351         insttheorem
10352
10353         * PainterBase.C (rectText): small correction
10354
10355         * BufferView_pimpl.C: comment out insettheorem and insetlist
10356         * LyXAction.C: ditto
10357         * commandtags.h: ditto
10358
10359 2001-07-24  Juergen Vigna  <jug@sad.it>
10360
10361         * text.C (draw): honor the ignore_language.
10362
10363         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
10364
10365 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10366
10367         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
10368         char inset.
10369
10370 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10371
10372         * lyxtext.h: remove unused (and unimplemented) methods
10373
10374 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10375
10376         * text.C (getVisibleRow): honor background color
10377
10378         * PainterBase.h:
10379         * Painter.h: remove default color argument for fillRectangle
10380
10381         * text.C (backgroundColor): new method
10382
10383 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10384
10385         * text.C (getVisibleRow): adjust
10386
10387         * font.[Ch] (rectText): new method, metrics
10388         (buttonText): new method, metrics
10389
10390         * PainterBase.[hC]: make rectText and buttonText always draw and take
10391         fewer paramteres.
10392
10393 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10394
10395         * ToolbarDefaults.C (read):
10396         * MenuBackend.C (read): allow escaping in all strings
10397
10398         * BufferView_pimpl.C (insertAndEditInset): new method.
10399         (Dispatch): use insertAndEditInset whenever appropriate.
10400
10401         * BufferView_pimpl.C (insertNote): removed
10402
10403         * BufferView_pimpl.C (smartQuote): new method, moved from
10404         BufferView; if an insetquote cannot be inserted, insert a '"'
10405         character instead.
10406
10407         * BufferView2.C: remove insertCorrectQuote();
10408
10409         * lyxfunc.C (getStatus): Add support for all remaingin
10410         inset-insert lfuns.
10411
10412         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
10413
10414         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
10415         command (necessary to pass " as parameter of self-insert.
10416
10417         * text.C (selectWordWhenUnderCursor):
10418         (selectWord): add word_location parameter
10419         (selectWordWhenUnderCursor): same + remove special code for word
10420         boundary.
10421         (selectNextWord): use kind() to guess type of insetspecialchar,
10422         not latex().
10423
10424         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
10425         (insertErtContents): create ert insets as collapsed.
10426         (readInset): better compatibility code for Info inset.
10427
10428 2001-07-20  Juergen Vigna  <jug@sad.it>
10429
10430         * lyxfunc.C (dispatch): use always LyXFind now!
10431
10432         * text2.C (init): add a reinit flag so that the LyXText can be
10433         reinited instead of deleted and reallocated (used in InsetText).
10434
10435         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
10436
10437         * text.C: ditto
10438
10439         * text2.C: ditto
10440
10441 2001-07-18  Juergen Vigna  <jug@sad.it>
10442
10443         * text.C (selectNextWord): handle insets inside inset by calling
10444         always the bv->text functions so that we can go up the_locking_inset!
10445
10446         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
10447         in strange locations when inside an inset!
10448
10449         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
10450         handling to include insets.
10451
10452         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
10453
10454 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10455
10456         * LyXAction.C (init):
10457         * commandtags.h:
10458         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
10459         LIGATURE_BREAK, since the name is so stupid.
10460
10461 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
10462
10463         * buffer.C (readInset): enable reading of new InsetNotes as well as old
10464         InsetInfos.
10465
10466         * FontLoader.C: remove FORMS_H_LOCATION cruft.
10467
10468         * sp_form.[Ch]: remove.
10469
10470         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
10471
10472         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
10473         InsetInfo.
10474
10475         * src/buffer.C (readInset): ditto.
10476
10477 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10478
10479         * BufferView_pimpl.C (specialChar): new method. Obsoletes
10480         menuSeparator(), endOfSentenceDot(), ldots() and
10481         hyphenationPoint(), which are therefore removed.
10482         (Dispatch): handle LFUN_HYPHENATION_BREAK.
10483
10484         * LyXAction.C (init):
10485         * commandtags.h: add LFUN_HYPHENATION_BREAK.
10486
10487         * paragraph.C (getWord): removed.
10488
10489         * BufferView_pimpl.C (Dispatch): use last word or selection for
10490         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
10491
10492         * lyx_main.C (queryUserLyXDir): do not ask before creating
10493         user_dir, except if it has been named explicitely.
10494
10495 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
10496
10497         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
10498         a document of zero size.
10499
10500 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
10501
10502         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
10503         approriately in the c-tor and in require().
10504         (getPackages): output the appropriate LaTeX for natbib support.
10505
10506         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
10507         variables "use_natbib" and "use_numerical_citations" when reading the
10508         LyX file.
10509         (readInset): read the various natbib cite commands.
10510         (validate): white-space change.
10511
10512         * bufferparams.[Ch]: new variables "bool use_natbib" and
10513         "bool use_numerical_citations".
10514         (writeFile): output them in the LyX file.
10515
10516 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10517
10518         * lyxfunc.C (getStatus): add support for all the inset insertion
10519         commands.
10520
10521         * text2.C (insertInset):
10522         * paragraph.C (insetAllowed):
10523         * BufferView_pimpl.C (insertInset): update to take in account the
10524         renaming of insertInsetAllowed
10525
10526         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
10527
10528         * text2.C (getInset): new method. returns inset at cursor position.
10529
10530         * BufferView_pimpl.C (Dispatch): changes because of this.
10531
10532         * LyXAction.C (init): rename open-stuff to inset-toggle.
10533
10534         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
10535
10536         * text2.C (toggleInset): renamed from openStuff; use
10537         Inset::open().
10538
10539 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
10540
10541         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
10542
10543         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
10544
10545 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
10546
10547         * buffer.C (readLyXformat2): Add filename to the error dialog
10548
10549 2001-07-18  Juergen Vigna  <jug@sad.it>
10550
10551         * tabular.C (GetCellNumber): put an assert here instead of the check!
10552
10553 2001-07-17  Juergen Vigna  <jug@sad.it>
10554
10555         * BufferView_pimpl.C (toggleSelection): adapted too.
10556
10557         * text.C (selectNextWord): adapted for use with insets.
10558         (selectSelectedWord): ditto
10559
10560 2001-07-17  Juergen Vigna  <jug@sad.it>
10561
10562         * sp_spell.C (PSpell): fix initialitation order.
10563
10564 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10565
10566         * paragraph.C: spacing
10567
10568 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
10569
10570         * sp_spell.C: repair language selection for pspell
10571
10572 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10573
10574         * lyxfunc.h: change more methods to begin with lower char.
10575
10576 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
10577
10578         * buffer.C (parseSingleLyXformat2Token): Generate error insets
10579         for unknown layouts.
10580
10581 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
10582
10583         * buffer.C (readLyXformat2): Generate an error dialog if there are
10584         unknown layouts.
10585
10586 2001-07-16  Juergen Vigna  <jug@sad.it>
10587
10588         * sp_spell.C: always compile ISpell part.
10589
10590         * lyxrc.C: added use_pspell entry and it's handling.
10591
10592 2001-07-13  Juergen Vigna  <jug@sad.it>
10593
10594         * sp_spell.C: removed double includes.
10595
10596 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
10597
10598         Consistent use of Lsstream.h:
10599         * Lsstream.h: added using std::stringstream for consistencies sake.
10600
10601         * buffer.C: removed using std::stringstream
10602
10603         * lyxfont.C (stateText):
10604         * paragraph.C (asString):
10605         * text.C (selectNextWord, selectSelectedWord):
10606         * text2.C (setCounter):
10607         * vspace.C (asString, asLatexString):
10608         std::ostringstream -> ostringstream.
10609
10610 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
10611
10612         * LyXAction.C: add LFUN_HELP_ABOUTLYX
10613         * commandtags.h: add LFUN_HELP_ABOUTLYX
10614         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
10615
10616 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
10617
10618         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
10619         cursorToggle()
10620         * lyx_gui_misc.C: remove spellchecker
10621         * lyxfunc.C: showSpellchecker
10622         * sp_base.h: added
10623         * sp_ispell.h: added
10624         * sp_pspell.h: added
10625         * sp_spell.C: added
10626         * sp_form.[Ch]: removed
10627         * spellchecker.[Ch]: removed
10628
10629 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
10630
10631         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
10632         is set.
10633         (simpleTeXSpecialChars): Simply print the input character without
10634         any special translation if pass_thru is set.
10635
10636         * layout.h: Added bool pass_thru to layout class for being able to
10637         implement pass through of a paragraph for Literate Programming.
10638
10639         * layout.C: add LT_PASS_THRU to LayoutTags enum.
10640         * layout.C (LyXLayout): set pass_thru to flase in constructor.
10641         * layout.C (Read): add "passthru" to list of layout tags and add
10642         code to set the pass_thru boolean when it is read.
10643
10644 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10645
10646         * trans_decl.h: remove allowed from KmodInfo
10647
10648         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
10649         remove allowed code
10650         (Load): adjust
10651
10652         * paragraph_pimpl.C (erase): use boost::prior
10653
10654         * Painter.C (text): use data() instead of c_str() when length is
10655         also provided.
10656         * WorkArea.C (putClipboard): ditto
10657         * font.h (width): ditto
10658
10659         * BufferView2.C: use it-> instead of (*it). for iterators
10660         * texrow.C: ditto
10661         * paragraph_pimpl.C: ditto
10662         * paragraph.C: ditto
10663         * minibuffer.C: ditto
10664         * language.C: ditto
10665         * kbmap.C: ditto
10666         * encoding.C: ditto
10667         * counters.C: ditto
10668         * converter.C: ditto
10669         * chset.C: ditto
10670         * Variables.C: ditto
10671         * TextCache.C: ditto
10672         * MenuBackend.C: ditto
10673         * LyXAction.C: ditto
10674         * LColor.C: ditto
10675         * FloatList.C: ditto
10676         * DepTable.C: ditto
10677         * ColorHandler.C (LyXColorHandler): ditto
10678
10679 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10680
10681         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
10682
10683         * text2.C (openStuff): reintroduce this method (which had been
10684         nuked in NEW_INSETS frenzy).
10685
10686         * lyxfunc.C (Dispatch): when an action has not been handled, use
10687         its name in the error message, not its number.
10688
10689         * paragraph.C (inInset): change method name to begin with lowercase.
10690
10691         * undo_funcs.C:
10692         * text2.C: updates because of this.
10693
10694 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10695
10696         * ToolbarDefaults.C (add): add spaces in error message
10697
10698 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10699
10700         * buffer.C (readLyXformat2): initialize the ert comp. variables.
10701         (readLyXformat2): rename return_par to first_par, use lyxlex's
10702         pushToken and remove the manual push handling.
10703         (parseSingleLyXformat2Token): add another ert comp. variable:
10704         in_tabular, rename return_par to first_par. handle newlines better
10705
10706 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10707
10708         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
10709
10710 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10711
10712         * text2.C (getParFromID): removed
10713
10714         * buffer.C (getParFromID): new method moved form lyxtext.
10715         * BufferView2.C (insertErrors): adjust
10716         (setCursorFromRow): adjust
10717         * BufferView_pimpl.C (restorePosition): adjust
10718         * lyxfunc.C (Dispatch): adjust
10719         * undo_funcs.C (textUndo): adjust
10720         (textRedo): adjust
10721         (textHandleUndo): adjust
10722         (textHandleUndo): adjust
10723
10724 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10725
10726         * buffer.C: up' the LYX_FORMAT
10727
10728         * lyxfont.h: turn NO_LATEX on as default
10729
10730         * buffer.C (insertErtContents): new methods of tex style compability.
10731         (parseSingleLyXformat2Token): use it several places.
10732         * tabular.C (OldFormatRead): and here
10733
10734 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10735
10736         * text2.C: remove some commented code.
10737         reindent file.
10738
10739         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
10740         * trans.C: changes because of the above.
10741
10742 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
10743
10744         * text2.C (setCounter): Fix counters bug with bibliography layout.
10745
10746 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10747
10748         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
10749         own member functions
10750         (simpleTeXSpecialChars): ditto
10751
10752 2001-07-06  Juergen Vigna  <jug@sad.it>
10753
10754         * a lot of files: changed the access to LyXText::status and the
10755         call of undo-functions.
10756
10757         * undo.[Ch]: added a inset_id to the undo informations.
10758
10759         * undo_funcs.[Ch]: added and moved here all undo functions.
10760
10761         * lyxtext.h: give the status enum a weight, made status_ a private
10762         variable and made accessor functions for it, removed the whole bunch
10763         of undo-functions as they are now in their own file, make some
10764         functions publically available. Added function ownerParagraph with
10765         int parameter.
10766
10767         * paragraph.[Ch]: added "bool same_ids" to the constructor,
10768         made InInset() a const function, added getParFromID() function.
10769
10770         * buffer.[Ch]: added const version for inset_iterator functions,
10771         added getInsetFromID() function.
10772
10773         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
10774         changed undo functions for new version.
10775
10776 2001-07-05  Juergen Vigna  <jug@sad.it>
10777
10778         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
10779         unknow mechanism does not call the proper constructor but only this
10780         one also if I request the other!?
10781
10782 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10783
10784         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
10785
10786         * text2.C (LyXText): use initialization lists.
10787
10788         * lyxtext.h (Selection): initialize set_ and mark_
10789         (init): remove method
10790
10791 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
10792
10793         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
10794
10795 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10796
10797         * screen.[Ch]: change method names to begin with lowercase
10798
10799         * BufferView_pimpl.C (updateScrollbar): simplify further and
10800         hopefully make it a bit faster.
10801
10802 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10803
10804         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
10805         calling directly xforms functions.
10806
10807         * Painter.C (Painter):
10808         * lyx_cb.C (MenuWrite):
10809         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
10810         fl_display.
10811
10812         * lyx_gui.C: remove bogus guiruntime extern declaration.
10813
10814 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10815
10816         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
10817         in NEW_INSETS
10818         (redoDrawingOfParagraph): ditto
10819         (redoParagraphs): ditto
10820         (cutSelection): don't create a object for CutAndPaste use the
10821         static method directly
10822         (pasteSelection): ditto
10823
10824         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
10825         LyXview (+ rename)
10826
10827 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10828
10829         * modifications to some other files because of this.
10830
10831         * Makefile.am (lyx_SOURCES): add XFormsView
10832
10833         * XFormsView.[Ch]: new files
10834
10835         * LyXView.[Ch]: make LyXView a base class for the gui handling for
10836         the main window. Move the gui dependent stuff to XFormsView
10837
10838 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10839
10840         * tabular.C (GetCellInset): update cur_cell also in the row/col
10841         version of this function.
10842
10843         * lyxfunc.C: no need to include figure_form.h here.
10844
10845         * FontLoader.h:
10846         * lyxfunc.h:
10847         * lyxscreen.h:
10848         * text2.C:
10849         * lyxvc.C: no need to include forms.h here.
10850
10851 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10852
10853         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
10854
10855         * lyxfunc.C (Dispatch):
10856         * Spacing.C (set):
10857         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
10858         constructor argument.
10859
10860 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10861
10862         * paragraph.C (Paragraph): dont't clear, and just set layout.
10863         (makeSameLayout): use params's copy contructor.
10864
10865         * ParagraphParameters.[Ch] (makeSame): delete method
10866
10867 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
10868
10869         * Variables.[Ch]: fix indentation, rename set to isSet
10870
10871 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10872
10873         * lyxfunc.C (Dispatch): fix typo
10874
10875 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10876
10877         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
10878         upper_bound.
10879
10880         * bufferlist.C: include assert.h for emergencyWrite().
10881
10882 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
10883
10884         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
10885           give up at last (bug #425202) !
10886
10887 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
10888
10889         * lyx_gui_misc.C:
10890         * sp_form.h:
10891         * sp_form.C:
10892         * spellchecker.h:
10893         * spellchecker.C: strip spellchecker options and bring up
10894           preferences tab instead
10895
10896 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10897
10898         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
10899         the istringstream constructor
10900
10901 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10902
10903         * paragraph.C (getLayout): fix return value
10904
10905         * paragraph.h: do not declare getLayout as inline.
10906
10907         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
10908
10909 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10910
10911         * lyxcursor.h (operator<): new func
10912         (operator>): new func
10913         (operator>=): new func
10914         (operator<=): new func
10915
10916         * text.C (changeCase): use selection.start and selection.end
10917         (changeRegionCase): require from to be <= to. Require par to be a
10918         valid paragraph.
10919
10920         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
10921
10922 2001-06-27  Juergen Vigna  <jug@sad.it>
10923
10924         * text.C (cursorLeftOneWord): changed to return the cursor and added
10925         overlay with BufferView * parameter which calls this one.
10926         (getWord): added
10927         (selectWord): use new getWord function.
10928         (changeCase): renamed from changeWordCase as and extended to work
10929         also on selections.
10930
10931         * lyxtext.h: added enum word_location
10932
10933         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
10934         changeCase as this operates now also on selections.
10935
10936 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
10937
10938         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
10939
10940         * many files: send debug output to Debug::INFO instead of
10941         Debug::ANY.
10942
10943         * converter.C (View):
10944         (Convert):
10945         (Move): send debug output to Debug::FILES instead of console.
10946
10947 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
10948
10949         * lyxfunc.C (getStatus): use func_status
10950
10951         * func_status.h: new header, describing the results of
10952         LyXFunc::getStatus;
10953
10954         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
10955         LFUN_MATH_HALIGN.
10956
10957 2001-06-25  The LyX Project  <jug@sad.it>
10958
10959         * buffer.C (sgmlOpenTag):
10960         (sgmlCloseTag):
10961         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
10962
10963 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10964
10965         * text2.C: remove some dead code
10966
10967         * tabular.C (GetCellInset): store the last cell checked (gotten)
10968
10969         * tabular.h: add the helper for the speedup
10970
10971         * lyxtext.h: remove some dead code
10972
10973 2001-06-26  The LyX Project  <Asger>
10974
10975         * paragraph.C: Change export to LaTeX of alignment to
10976         \begin{center} and family for better roundtrip work with reLyX.
10977
10978         * Tune the math drawing a bit.
10979
10980 2001-06-25  The LyX Project  <Asger>
10981
10982         * LColor.C (LColor): New color for math background. New color
10983         for buttons.
10984
10985 2001-06-25  The LyX Project  <jug@sad.it>
10986
10987         * lyxfunc.C (MenuNew): remove extra check for .lyx file
10988
10989         * lyxfunc.C (Open):
10990         * bufferlist.C (newFile): do not restrict to files ending with
10991         .lyx
10992
10993         * BufferView_pimpl.C (MenuInsertLyXFile):
10994
10995 2001-06-24  The LyX Project  <jug@sad.it>
10996
10997         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
10998         of compare_no_case
10999
11000 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11001
11002         * lyxtext.h: rename most methods to begin with a small char.
11003         Lots of changes because of this.
11004
11005         * paragraph.C (Paragraph): do not call fitToSize
11006         (erase): call Pimpl::erase
11007         (insertChar): call Pimpl::insertChar
11008         (insertInset): call Pipl::insertInset
11009         (breakParagraph): do not call fitToSize
11010         (breakParagraphConservative): do not call fitToSize
11011         (fitToSize): remove method
11012
11013         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
11014
11015 2001-06-24  The LyX Project  <Asger>
11016
11017         * Fix Qt compilation^2
11018
11019 2001-06-24  The LyX Project  <jug@sad.it>
11020
11021         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
11022         depthHook(getDepth()-1).
11023
11024         * paragraph.h:
11025         * ParagraphParameters.h:
11026         * ParameterStruct.h: change type of depth to unsigned int ==
11027         depth_type. Many adaptations to other files before of that.
11028
11029 2001-06-24  The LyX Project  <Asger>
11030
11031         * Fix Qt compilation.
11032
11033 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11034
11035         * paragraph.h: renamed several methods to begin with small letter.
11036         several changes to many parts of the code because of this.
11037
11038 2001-06-23  The LyX Project  <jug@sad.it>
11039
11040         * text2.C (InsertStringAsLines): renamed from InsertStringA;
11041         rewritten to discard all double spaces when KeepEmpty is off
11042         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
11043         to only handle newlines but not fiddle with spaces and friends.
11044
11045         * lyxfunc.C (MenuNew): when doing 'new from template', use
11046         template_path as default directory
11047
11048 2001-06-23  The LyX Project  <Asger>
11049
11050         * Clean-up of header file includes all over
11051         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
11052
11053 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11054
11055         * paragraph.h: renamed from lyxparagraph.h
11056
11057 2001-06-23  Asger  <lyx@violet.home.sad.it>
11058
11059         * Buffer.h: Removed Buffer::resize
11060         * BufferList.h: Removed BufferList::resize
11061         * LyXView.h: Added LyXView::resize. This way, we will only reflow
11062         the document lazily when we change the width, or the font settings.
11063
11064 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
11065
11066         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
11067
11068 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
11069
11070         * buffer.h: remove out of date comment
11071
11072 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
11073
11074         * lyxscreen.h:
11075         * screen.C: fix "theoretical" GC leak
11076
11077 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11078
11079         * LaTeX.C (scanAuxFile):
11080         (deplog): remove trailing \r when reading stream (useful under
11081         win32)
11082
11083 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
11084
11085         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
11086         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
11087         and BufferView::theLockingInset(Inset*), so should use them and not
11088         access bv_->text->the_locking_inset directly.
11089
11090         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
11091
11092 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
11093
11094         * Makefile.am:
11095         * tex-defs.h: remove old unused file
11096
11097 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
11098
11099         * BufferView_pimpl.C: fix typo, remove minibuffer message
11100           when buffer has loaded
11101
11102 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11103
11104         * lyxfunc.C (Dispatch): use stringstream
11105         (MenuNew): use stringstream
11106         (Open): use stringstream
11107
11108         * importer.C (Import): use stringstream
11109
11110         * bufferview_funcs.C (CurrentState): use stringstream
11111
11112         * LaTeX.C (run): use stringstream
11113
11114         * BufferView_pimpl.C (savePosition): use stringstream
11115         (restorePosition): use stringstream
11116         (MenuInsertLyXFile): use stringstream
11117
11118 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
11119
11120         * BufferView.C:
11121         * Bullet.C:
11122         * ColorHandler.C:
11123         * FontInfo.C:
11124         * FontLoader.C:
11125         * LColor.C:
11126         * LaTeXFeatures.C:
11127         * Painter.C:
11128         * gettext.C:
11129         * lyx_gui_misc.C:
11130         * lyxserver.C:
11131         * vspace.C: removed // -*- C++ -*- as first line.
11132
11133         * lyxfind.h:
11134         * version.h: added // -*- C++ -*- as first line.
11135
11136 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11137
11138         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
11139
11140         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
11141         of string
11142
11143 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11144
11145         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
11146         of floats.
11147
11148 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11149
11150         * gettext.C: include LString.h even when --disable-nls is on.
11151
11152 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
11153
11154         * converter.h (Get): changed argument type from int to
11155         FormatList::size_type to avoid unnecessary conversion.
11156
11157         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
11158         before using it.
11159
11160 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11161
11162         * gettext.h: include LString.h even when --disable-nls is on.
11163
11164 2001-06-07  Juergen Vigna  <jug@sad.it>
11165
11166         * text.C (BreakAgain): subst spaces with tabs.
11167
11168         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
11169         (resizeInsetsLyXText): set force on resizeLyXText.
11170
11171 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11172
11173         * gettext.h (gettext_init):
11174         (locale_init): use a real definition instead of a macro
11175
11176 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
11177
11178         * Bufferview_pimpl.C:
11179         * LColor.h:
11180         * LColor.C: further lcolor tidies
11181
11182 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11183
11184         * BufferView_pimpl.C (updateScrollbar): simplify.
11185
11186         * BufferView2.C: don't include insets/insetinfo.h, change
11187         prototype for insertInset and call the Pimpl version. let
11188         updateInset call Pimpl version.
11189
11190         * BufferView.h: move inset_slept to BufferView::Pimpl, move
11191         gotoInset to BufferView::Pimpl
11192
11193 2001-06-01  Juergen Vigna  <jug@sad.it>
11194
11195         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
11196         inside a LockingInset (is the update needed at all?).
11197
11198 2001-05-31  Juergen Vigna  <jug@sad.it>
11199
11200         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
11201         here not the old one otherwise how should we compare it afterwards
11202         if it's the same!
11203
11204 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11205
11206         * lyxfont.C:
11207         * tabular.C:
11208         * tabular-old.C:
11209         * FontInfo.C: bring C functions into global namespace when
11210         necessary
11211
11212 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11213
11214         * LString.h: make sure config.h has been loaded before LString.h.
11215
11216         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
11217         (one for each char read by EatLine!).
11218
11219         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
11220         variables.
11221
11222 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11223
11224         * paragraph.C (BreakParagraph): set the inset_owner in the new par
11225         to the same as the par we break from
11226
11227 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11228
11229         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
11230
11231         * MenuBackend.C (expand): also create menu entries for wide
11232         versions of the floats.
11233
11234         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
11235
11236         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
11237
11238         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
11239         frontends/Makefile.am
11240
11241         * text2.C: adjust
11242         * text.C: adjust
11243
11244
11245         * tabular.C (getTokenValue): add std::
11246
11247         * tabular-old.C (getTokenValue): add std::
11248         (getTokenValue): ditto
11249         (getTokenValue): ditto
11250
11251         * screen.C (ToggleSelection): adjust
11252
11253         * lyxtext.h: put selection cursors inside a Selection struct.
11254
11255         * lyxfunc.C (moveCursorUpdate): adjust
11256
11257         * lyxfont.C (latexWriteStartChanges): add std::
11258
11259         * lyxfind.C: adjust
11260
11261         * font.h: delete with(char const *, LyXFont const &)
11262
11263         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
11264
11265         * FontInfo.C (getFontname): add std::
11266
11267         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
11268         (workAreaButtonPress): adjust
11269         (tripleClick): adjust
11270         (update): adjust
11271         (moveCursorUpdate): adjust
11272         (Dispatch): adjust
11273
11274         * BufferView2.C (gotoInset): adjust
11275
11276 2001-05-30  Juergen Vigna  <jug@sad.it>
11277
11278         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
11279         to check pspell I add this as default as I now have new pspell
11280         libraries and they seem to use this.
11281
11282 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11283
11284         * text2.C (CutSelection): make the cursor valid before the call to
11285         ClearSelection.
11286
11287 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11288
11289         * kbsequence.C (parse): de-uglify a bit the parsing code, which
11290         relied on 0 terminated strings and other horrors. Bug found due to
11291         the new assert in lyxstring!
11292
11293         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
11294         KP_ keys.
11295
11296 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11297
11298         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
11299         to latinkeys.bind.
11300
11301         * lyxfunc.C (processKeySym): change method of getting to the
11302         self-insert char.
11303
11304         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
11305         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
11306         * BufferView_pimpl.[Ch]: here as private methods.
11307
11308 2001-05-28  Juergen Vigna  <jug@sad.it>
11309
11310         * text.C (SetHeightOfRow): added the update() call again as it is
11311         needed to initialize inset dimensions!
11312
11313 2001-05-16  Juergen Vigna  <jug@sad.it>
11314
11315         * text2.C (SetCharFont): Add new function with BufferView * and
11316         bool toggleall parameters for setting insets internal fonts.
11317         (SetFont): Freeze the undo as we may change fonts in Insets and
11318         all this change should be inside only one Undo!
11319
11320         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
11321         setting font's in insets as for them we have the SetFont function!
11322
11323 2001-05-15  Juergen Vigna  <jug@sad.it>
11324
11325         * text2.C (ClearSelection): to be sure we REALLY don't have any
11326         selection anymore!
11327
11328         * tabular.C (TeXCellPreamble): fixed the left border problem for
11329         multicolumn cells.
11330
11331 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
11332
11333         * LaTeX.C (deplog): Make sure that the main .tex file is in the
11334         dependancy file
11335
11336 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11337
11338         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
11339         LFUN_BREAKPARAGRAPH.
11340
11341         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
11342         help test to "internal only", similar for LFUN_INSERT_URL
11343
11344         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
11345         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
11346         auto_region_delete and deadkeys.
11347
11348 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
11349
11350         * LColor.h:
11351         * LColor.C: remove some dead entries, tidy a little
11352
11353 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11354
11355         * lyxfunc.C (processKeySym): comment the Escape handling, remove
11356         commented code.
11357         (Dispatch): implement LFUN_ESCAPE
11358
11359         * commandtags.h: add LFUN_ESCAPE
11360
11361         * LyXAction.C (init): add entry for LFUN_ESCAPE
11362
11363         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
11364         Remove commented code.
11365         (insertNote): moved here
11366         (open_new_inset): moved here
11367
11368         * BufferView[2].[Ch]: move insertNote and open_new_inset to
11369         BufferView_pimpl
11370
11371 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11372
11373         * kbmap.C (findbinding): clean it up and make it work correctly.
11374
11375         * lyx_main.C (init): do not pass argc and argv as parameters
11376
11377 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
11378
11379         * buffer.C: fix path for OS/2 & Win32
11380
11381         * lyx_gui.C:
11382         * lyx_main:
11383         * lyx_main.C: Added os:: class.
11384
11385         * os2_defines.h: update
11386
11387 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11388
11389         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
11390         better by trying again with reduced state.
11391
11392 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11393
11394         * lyxrc.C (read): print error about invalid key sequence only when
11395         debugging (because not all latinX keysyms are known to some X
11396         servers)
11397
11398         * kbsequence.C (getiso): add a few std:: qualifiers
11399         (getiso): comment out extra return statement.
11400
11401 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11402
11403         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
11404         handling.
11405         (Dispatch): enhance the accent inset a bit. (not perfect)
11406
11407 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11408
11409         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
11410
11411 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11412
11413         * bufferlist.C (emergencyWrite): fix assert() call
11414
11415 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
11416
11417         * text.C (InsertChar): Added trivial patch to only send the "you
11418         can not do multiple spaces this way" message once during a
11419         session.
11420
11421 2001-05-08  Baruch Even  <baruch@lyx.org>
11422
11423         * Makefile.am: Changed order of libraries to get LyX to link properly
11424         with the gnome frontend.
11425
11426 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11427
11428         * LaTeXFeatures.h: add a std:: qualifier
11429
11430 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11431
11432         * paragraph.C (String): use stringstream
11433
11434 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11435
11436         * paragraph.C (writeFile): remove footflag arg
11437
11438         * buffer.C (makeLaTeXFile): use stringstream
11439         (latexParagraphs): remove footnot gurba
11440
11441         * LaTeXFeatures.C (getPackages): use stringstream
11442         (getMacros): likewise
11443         (getTClassPreamble): likewise
11444         (getFloatDefinitions): new method
11445
11446         * paragraph.C (writeFile): reindent
11447         (Erase): reindent
11448
11449         * WorkArea.h: revert the xpos + etc changes.
11450
11451         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
11452
11453         * lyxparagraph.[Ch]: add copy constructor, remove Clone
11454
11455         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
11456         (pasteSelection): likewise
11457         * text2.C (CreateUndo): likewise
11458
11459 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11460
11461         * minibuffer.C (peek_event): temporarily reduce the functionality
11462         of the minibuffer (to allow args on lfuns)
11463
11464         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
11465         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
11466
11467         * buffer.C (readInset): add compability reading of old float
11468         lists, add reading of new style float list.
11469         (readInset): avoid reevaluation of inscmd.getCmdName()
11470         (getLists): reindent
11471
11472         * MenuBackend.C (MenuItem): implement parsing of
11473         md_floatlistinsert and md_floatinsert.
11474         (expand::LastFiles): move initalizaton of iterators out of loop,
11475         avoid reevaluation.
11476         (expand::Documents): introduce typdedef vector<string> Strings,
11477         and use it.
11478         (expand::ExportFormats): introduce typedef vector<Format const *>
11479         Formats, and use it.
11480         (expand): implement FloatListInsert and FloatInsert.
11481
11482         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
11483         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
11484         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
11485
11486         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
11487         handling.
11488         (Dispatch::LFUN_FLOAT_LIST): implement
11489
11490 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
11491
11492         * LaTeX.C (run): Fix problem with --export code.
11493
11494 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
11495
11496         * BufferView.[Ch] (workarea): removed.
11497         (getClipboard) new method; wrapper for workarea()->getClipboard()
11498
11499         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
11500         bug.
11501
11502         * WorkArea.h (width, height, xpos, ypos): These methods all
11503         returned the dimensions of the work_area sub-area of WorkArea,
11504         resulting in a position error if the WorkArea were resized. Now
11505         return the dimensions of the entire WorkArea.
11506
11507         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
11508
11509 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11510
11511         * LaTeX.C (deplog): correct the syntax of regex reg1
11512
11513 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11514
11515         * undo.C: remove !NEW_INSETS cruft
11516
11517 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11518
11519         * text2.C: remove !NEW_INSETS cruft
11520
11521         * text.C: remove !NEW_INSETS cruft
11522
11523         * tabular.C: remove !NEW_INSETS cruft
11524
11525         * spellchecker.C: remove !NEW_INSETS cruft
11526
11527         * lyxtext.h: remove !NEW_INSETS cruft
11528
11529         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
11530
11531         * lyxfunc.C: remove !NEW_INSETS cruft
11532
11533         * lyxfind.C: remove !NEW_INSETS cruft
11534
11535         * lyx_cb.C: remove !NEW_INSETS cruft
11536
11537         * figureForm.C: remove  !NEW_INSETS cruft
11538
11539         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
11540
11541         * buffer.[Ch]: remove !NEW_INSETS cruft
11542
11543         * ToolbarDefaults.C: remove !NEW_INSETS cruft
11544
11545         * CutAndPaste.C: remove !NEW_INSETS cruft
11546
11547         * BufferView_pimpl.C: remove !NEW_INSETS cruft
11548
11549         * BufferView2.C: remove !NEW_INSETS cruft
11550
11551         * BufferView.h: remove !NEW_INSETS cruft
11552
11553 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11554
11555         * Lsstream.h: include LString.h before the sstream headers to
11556         fix problem with gcc 2.95.3 and lyxstring
11557
11558 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11559
11560         * lyx_main.C: add using directives when needed for C functions
11561         declared in std:: namespace.
11562
11563 2001-04-27  Juergen Vigna  <jug@sad.it>
11564
11565         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
11566         (SetHeightOfRow): comment out the update call should not be needed!
11567
11568 2001-04-13  Juergen Vigna  <jug@sad.it>
11569
11570         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
11571         (LyXTabular): tried to minimize operator= operations (and realized
11572         hopfully Lars wish).
11573
11574 2001-04-27  Juergen Vigna  <jug@sad.it>
11575
11576         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
11577
11578 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11579
11580         * lyxfunc.C (Dispatch): hack to make listof algorithm work
11581
11582         * buffer.C (readInset): hack to make listof algorithm work
11583
11584         * BufferView_pimpl.C: hack to make listof algorithm work
11585
11586 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11587
11588         * LyXAction.C: removed all !NEW_INSETS cruft
11589         (init): moved lfun_item in method
11590
11591         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
11592
11593 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
11594
11595         * BufferView2.C (theLockingInset): white space.
11596
11597 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11598
11599         * minibuffer.C: include <iostream>
11600
11601         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
11602
11603         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
11604
11605         * commandtags.h: add LFUN_TRANSPOSE_CHARS
11606
11607         * text.[Ch] (TransposeChars): new method
11608
11609 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11610
11611         * call message directly through LyXView instead of through LyXFunc
11612         * BufferView2.C: adjust
11613         * BufferView_pimpl.C: adjust
11614         * FontLoader.C: adjust
11615         * buffer.C: adjust
11616         * bufferview_funcs.C: adjust
11617         * converter.C: adjust
11618         * figureForm.C: adjust
11619         * importer.C: adjust
11620         * lyx_cb.C: adjust
11621         * lyx_gui_misc.C: adjust
11622         * lyxfunc.C: adjust
11623         * lyxvc.C: adjust
11624         * text2.C: adjust
11625         + more files in subdirs
11626
11627         * lyxparagraph.h (size): move up int file
11628         (GetLayout): ditto
11629
11630         * adjust all uses of Assert to lyx::Assert.
11631
11632         * BufferView2.C (ChangeCitationsIfUnique): adjust for
11633         lyxfunctional in namespace lyx
11634         * layout.C (hasLayout): ditto
11635         (GetLayout): ditto
11636         (GetLayout): ditto
11637         (delete_layout): ditto
11638         (NumberOfClass): ditto
11639         * converter.C (GetFormat): ditto
11640         (GetNumber): ditto
11641         (Add): ditto
11642         (Delete): ditto
11643         (SetViewer): ditto
11644         * bufferlist.C (getFileNames): ditto
11645         (emergencyWriteAll): ditto
11646         (exists): ditto
11647         (getBuffer): ditto
11648         * MenuBackend.C (hasSubmenu): ditto
11649         (hasMenu): ditto
11650         (getMenu): ditto
11651         * BufferView_pimpl.C (getInsetByCode): ditto
11652
11653 2001-04-18  Juergen Vigna  <jug@sad.it>
11654
11655         * vspace.C (asLatexString): fixed the 100% problem.
11656
11657 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11658
11659         * lyxfunc.C (Dispatch):
11660         * minibuffer.C:
11661         * minibuffer.h: add a few std:: qualifiers
11662
11663 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11664
11665         * minibuffer.[Ch]: reimplement so that commands is initiated and
11666         run from lyxfunc, simplified som handling, and made the completion
11667         and history code for complete. wip.
11668
11669         * lyxfunc.C (processKeySym): call message
11670         (miniDispatch): new temporary method
11671         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
11672         (LFUN_MESSAGE): implement
11673         (LFUN_MESSAGE_PUSH): implement
11674         (LFUN_MESSAGE_POP): implement
11675         (initMiniBuffer): the initial/defualt minibuffer message.
11676
11677         * lyxfont.[Ch]: inline some more getters
11678
11679         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
11680
11681         * lyx_gui_misc.[Ch] (WriteStatus): remove method
11682
11683         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
11684         (AutoSave): use LFUN_MESSAGE
11685         (Reconfigure): ditto
11686
11687         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
11688
11689         * figureForm.C: use LFUN_MESSAGE
11690
11691         * converter.C (runLaTeX): use LFUN_MESSAGE
11692
11693         * bufferview_funcs.C: use LFUN_MESSAGE
11694         (Melt): ditto
11695         (changeDepth): ditto
11696
11697         * bufferparams.h: use boost::
11698
11699         * bufferlist.h: inherit privately from noncopyable
11700
11701         * bufferlist.C (loadLyXFile): remove some commented code.
11702
11703         * buffer.C (runChktex): use LFUN_MESSAGE
11704
11705         * ShareContainer.h: inherit privately from noncopyable
11706
11707         * ParagraphParameters.[hC] (depth): inline it.
11708
11709         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
11710         methods.
11711         (message): new method
11712         (messagePush): ditto
11713         (messagePop): ditto
11714         (show): init minibuffer
11715         (showState): direct call
11716
11717         * LaTeX.[Ch]: inherit privately from noncopyable
11718         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
11719         instead of WriteStatus.
11720
11721         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
11722
11723         * BufferView_pimpl.C (buffer): don't init minibuffer
11724         (workAreaButtonPress): use LFUN_MESSAGE
11725         (workAreaButtonRelease): ditto
11726         (savePosition): ditto
11727         (restorePosition): ditto
11728         (MenuInsertLyXFile): ditto
11729         (workAreaExpose): don't init minibuffer
11730         (update): remove commented code, simplify
11731
11732         * BufferView2.C (openStuff): use LFUN_MESSAGE
11733         (toggleFloat): ditto
11734         (menuUndo): ditto
11735         (menuRedo): ditto
11736         (copyEnvironment): ditto
11737         (pasteEnvironment): ditto
11738         (copy): ditto
11739         (cut): ditto
11740         (paste): ditto
11741         (gotoInset): ditto
11742         (updateInset): remove some commented code
11743
11744         * lastfiles.h: inherit privately from noncopyable
11745         * layout.h: ditto
11746         * lyx_gui.h: ditto
11747         * lyx_main.h: ditto
11748         * lyxlex.h: ditto
11749         * lyxlex_pimpl.h: ditto
11750
11751         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
11752         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
11753         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
11754
11755         * LyXAction.h: inherit privately from noncopyable, add methods
11756         func_begin, func_end, returning iterators to the func map.
11757
11758         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
11759         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
11760         (func_begin): new method
11761         (func_end): new method
11762
11763         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
11764         and not)
11765         (copySelection): ditto
11766         (pasteSelection): ditto
11767
11768         * BufferView.C: whitespace change
11769         * BufferView.h: inherit privately from noncopyable
11770
11771 2001-04-16  Allan Rae  <rae@lyx.org>
11772
11773         * tabular-old.C (l_getline):
11774         * spellchecker.C (sc_check_word):
11775         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
11776         an unrecognised preprocessor directive.  So ensure they're wrapped.
11777
11778 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
11779
11780         * src/exporter.C (Export): Give an error message when path to file
11781         contains spaces.
11782
11783 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
11784
11785         * LaTeX.C (deplog): Always check that foundfile exists.
11786
11787 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11788
11789         * lyx_main.h:
11790         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
11791
11792 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11793
11794         * tabular.[Ch] (getLabelList): implement new method
11795
11796         * minibuffer.h: comment ouf setTiimer
11797
11798         * minibuffer.C (ExecutingCB): constify res
11799         (peek_event): constify s
11800         (Set): constify ntext
11801         (Init): constify nicename
11802
11803         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
11804
11805         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
11806         (savePosition): use two params to Minibuffer::Set
11807         (restorePosition): ditto
11808
11809 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11810
11811         * lyx_main.C: include language.h
11812
11813         * Makefile.am (lyx_main.o): add language.h
11814
11815 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11816
11817         * exporter.C:
11818         * paragraph.C:
11819         * screen.C:
11820         * tabular.C:
11821         * CutAndPaste.C: include gettext.h
11822
11823         * lyxfont.h: remove old hack with ON and OFF.
11824
11825         * lyxparagraph.h:
11826         * lyxfont.h: do not include language.h...
11827
11828         * BufferView2.C:
11829         * LaTeXFeatures.C:
11830         * Painter.C:
11831         * bufferview_funcs.C:
11832         * font.C:
11833         * lyxfont.C:
11834         * text.C:
11835         * text2.C:
11836         * trans_mgr.C:
11837         * paragraph.C: ... but do it here instead
11838
11839 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11840
11841         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
11842
11843         * tabular.C: small reformat
11844
11845         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
11846         NEW_INSETS version
11847         (GetChar): ditto
11848         (BreakParagraph): ditto
11849         (SetOnlyLayout): ditto
11850         (SetLayout): ditto
11851
11852         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
11853         with one arg less.
11854
11855         * lastfiles.C: removed most using decl, add std:: where needed
11856
11857         * buffer.C: ws changes
11858
11859         * MenuBackend.C (class compare_format): put into anon namespace
11860         (expand): constify label, names, action, action2
11861         (expand):
11862
11863         * text.C (SingleWidth): constify font
11864         (IsBoundary): constify rtl2
11865         (GetVisibleRow): constify ww
11866
11867         * LaTeX.C (deplog): constify logfile
11868
11869         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
11870         start_x, end_x
11871         (workAreaExpose): constify widthChange, heightChange
11872
11873         * lyxrow.C (par): moved
11874         (height): moved
11875         (next): moved
11876         * lyxrow.h: as inlines here
11877
11878         * lyxfont.h (shape): moved from lyxfont.C
11879         (emph): moved from lyxfont.C
11880
11881         * lyxfont.C (LyXFont): use initialization list for all
11882         constructors
11883         (shape): move to lyxfont.h as inline
11884         (emph): move to lyxfont.h as inline
11885
11886
11887 2001-04-04  Juergen Vigna  <jug@sad.it>
11888
11889         * vspace.C: had to include stdio.h for use of sscanf
11890
11891 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
11892
11893         * BufferView.h:
11894         * BufferView_pimpl.h: remove xforms cruft. Both classes are
11895         independent of xforms.
11896
11897 2001-04-02  Juergen Vigna  <jug@sad.it>
11898
11899         * spellchecker.C: fixed namespace placing!
11900
11901 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
11902
11903         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
11904         the LyXParagraph * is 0.
11905
11906 2001-03-29  Juergen Vigna  <jug@sad.it>
11907
11908         * vspace.C: added support for %, c%, p%, l%.
11909         (stringFromUnit): added helper function.
11910         (asLatexString): changed to give right results for the %-values.
11911
11912         * buffer.C: convert the widthp in a width%.
11913
11914 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
11915
11916         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
11917         figureForm.[Ch].
11918
11919         * figureForm.[Ch]: stripped the FD_from_figure manipulation
11920         code out of lux_cb.[Ch], ready for its (imminent?) removal.
11921
11922         * lyx_cb.[Ch]: see above.
11923
11924         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
11925         form1.[Ch].
11926
11927         * form1.[Ch]:
11928         * lyx.[Ch]: replaced by figure_form.[Ch].
11929
11930         * lyx_gui.C:
11931         * lyx_gui_misc.C:
11932         * lyxfunc.C: changed headers associated with above changes.
11933
11934 2001-03-27  Juergen Vigna  <jug@sad.it>
11935
11936         * BufferView_pimpl.C: set the temporary cursor right!
11937
11938 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
11939
11940         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
11941
11942 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
11943
11944         * LString.h: removed "using std::getline"!
11945
11946         * BufferView_pimpl.C (Dispatch): changes due to changes in
11947         InsetInclude::Params.
11948
11949         * buffer.C (tag_name): removed redundant break statements as they were
11950         producing lots of warnings with my compiler.
11951
11952 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11953
11954         * LString.h: add "using std::getline" when using the real <string>.
11955
11956 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
11957
11958         * buffer.C: removed bitset usage.
11959         PAR_TAG moved to an anonymous name space.
11960         (tag_name): new funtion, also in the anonymous namespace.
11961         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
11962         (makeDocBookFile): clean code. Completed transition from string arrays
11963         to string vectors.
11964         (SimpleDocBookOnePar): code clean.
11965
11966 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
11967
11968         * tabular.C: add some comments.
11969
11970 2001-03-22  Juergen Vigna  <jug@sad.it>
11971
11972         * buffer.C (parseSingleLyXformat2Token): redone the minipage
11973         compatibility read a bit and fixed bug with minipage in different
11974         depth.
11975
11976 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
11977
11978         * buffer.C (pop_tag): removed.
11979         (push_tag): removed.
11980         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
11981         array replaced with vector. Added support for CDATA sections.
11982         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
11983         at any nest level.
11984         (makeDocBookFile): XML conformant declaration of CDATA section,
11985         fixed bug related to <emphasis> in the first paragraph char.
11986         (sgmlOpenTag): exclude empty tags.
11987         (sgmlCloseTag): ditto.
11988
11989         * buffer.h (pop_tag): removed.
11990         (push_tag): removed.
11991
11992 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
11993
11994         * language.h (Languages): added size_type and size().
11995
11996 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
11997
11998         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
11999         response on compability reading of minipages. One probliem is that
12000         the old usage of minipages was «flertydig»
12001
12002         * several files here and in subdirs: don't use static at file
12003         scope use anon namespaces instead.
12004
12005 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
12006
12007         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
12008         LaTeX output. This is necessary for Literate document
12009         processing.
12010
12011 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12012
12013         * buffer.C: insert hfill when needed.
12014
12015         * tabular.C (l_getline): use string::erase, small whitespace change.
12016
12017         * BufferView_pimpl.C: try the anon namespace.
12018         * WorkArea.C: ditto
12019
12020 2001-03-16  Juergen Vigna  <jug@sad.it>
12021
12022         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
12023         otherwise it won't open options-dialogs.
12024
12025         * buffer.C: honor pextraWidth(p) on converting minipages.
12026
12027         * tabular.C (l_getline): changed the functions to strip trailing \r.
12028
12029 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
12030
12031         * BufferView_pimpl.C:
12032         * minibuffer..C: added "using SigC::slot" declaration.
12033
12034 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12035
12036         * lyxlex_pimpl.h: noncopyable is in namespace boost.
12037
12038         * text2.C: ditto
12039
12040         * text.C: ditto
12041
12042         * paragraph.C: ditto
12043
12044         * lyxtext.h: NO_PEXTRA
12045
12046         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
12047
12048         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
12049         * ParameterStruct.h: ditto
12050         * ParagraphParameters.h: ditto
12051         * lyxparagraph.h: ditto
12052
12053 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12054
12055         * buffer.C: add compability for minipage alignment.
12056         (latexParagraphs): remove unwanted pextra check.
12057
12058         * several files: remove CXX_WORKING_NAMESPACES
12059
12060         * buffer.C (pop_tag): tie is in namespace boost
12061
12062         * BufferView.h: noncopyable is in namespace boost
12063         * lyxlex.h: ditto
12064         * lyx_main.h: ditto
12065         * lyx_gui.h: ditto
12066         * layout.h: ditto
12067         * lastfiles.h: ditto
12068         * bufferlist.h: ditto
12069         * ShareContainer.h: ditto
12070         * LyXView.h: ditto
12071         * LyXAction.h: ditto
12072         * LaTeX.h: ditto
12073
12074 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
12075
12076         * Merging changes from BRANCH_MVC back into HEAD.
12077
12078         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
12079
12080 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
12081
12082         * BufferView_pimpl.C: change from intl.C
12083
12084         * combox.h:
12085         * combox.C:
12086         * Makefile.am: move combox.*
12087
12088         * form1.h:
12089         * form1.C:
12090         * lyx_gui.C:
12091         * intl.h:
12092         * intl.C: remove dialog (covered by prefs)
12093
12094 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
12095
12096         * lyxfunc.C (Dispatch): removed redundant break statement.
12097
12098 2001-03-14  Juergen Vigna  <jug@sad.it>
12099
12100         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
12101
12102 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12103
12104         * buffer.C: add hack to fix compability reading of minipages.
12105
12106 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
12107
12108         * buffer.C (getLists): Cleanup.
12109
12110 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12111
12112         * lyxfont.C (update): don't honor toggleall on font size.
12113
12114 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
12115
12116         * bmtable.c:
12117         * bmtable.h:
12118         * Makefile.am: moved to frontends/xforms/
12119
12120         * lyx_gui_misc.C:
12121         * lyxfunc.C:
12122         * BufferView_pimpl.C: changes for moved mathpanel
12123
12124 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
12125
12126         * gettext.h: fix gettext_init() in --disable-nls
12127
12128 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12129
12130         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
12131
12132 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
12133
12134         * lyx.C:
12135         * lyx.h: strip external form
12136
12137 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
12138
12139         * BufferView_pimpl.C: add comment, destroySplash()
12140
12141 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
12142
12143         * BufferView_pimpl.C:
12144         * LyXAction.C:
12145         * buffer.C:
12146         * commandtags.h:
12147         * lyxfunc.C: use re-worked insetinclude
12148
12149 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12150
12151         * buffer.C: add using std::stringstream.
12152
12153         * lyx_cb.C: readd using std::ios.
12154
12155         * buffer.C: add using std::map.
12156
12157         * BufferView_pimpl.C: add using std::vector.
12158
12159         * ShareContainer.h: add std:: to swap.
12160
12161         * buffer.h: add some typedefs
12162         * buffer.C (getLists): use them
12163         (getLists): renamed from getTocList.
12164         add a counter for the different float types and use it in the
12165         generated string.
12166         (getLists): use the same counter for the NEW_INSETS and the "non"
12167         NEW_INSETS
12168
12169         * lyx_cb.h: remove unused items, includes, using etc.
12170
12171         * ShareContainer.h: remove some commented code, add more comments
12172         and "documentation".
12173
12174 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12175
12176         * buffer.C (getTocList): make the list also when NEW_INSETS is
12177         defined.
12178
12179         * buffer.h: remove TocType
12180
12181         * buffer.C (getTocList): change to return a map<string,
12182         vector<TocItem> >, implement for dynamic number of list.
12183
12184         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
12185         * text2.C (PasteSelection): adjust
12186         * CutAndPaste.C (pasteSelection): adjust
12187
12188         * FloatList.C (FloatList): update from the new_insets branch.
12189         * Floating.[Ch]: ditto
12190         * LaTeXFeatures.C: ditto
12191         * buffer.C: ditto
12192         * lyxlex_pimpl.C: ditto
12193
12194         * paragraph.C (Last): remove when NEW_INSETS is defined.
12195
12196         * other file: changes because of the above.
12197
12198 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12199
12200         * lyxparagraph.h: rename next to next_, previous to previous_,
12201         make them private for NEW_INSETS. Rename Next() to next(),
12202         Previous() to previous().
12203
12204         * other files: changes because of the above.
12205
12206 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
12207
12208         * BufferView.h:
12209         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
12210         problem.
12211
12212 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12213
12214         * main.C (main): pass lyx_localedir to gettext_init().
12215
12216         * gettext.h: remove locale_init and gettext_init macros
12217
12218         * gettext.C (locale_init): new function
12219         (gettext_init): new function
12220
12221         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
12222         setlocale().
12223
12224 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
12225
12226         * Moved credits to frontends:
12227         * credits.[Ch]: removed
12228         * credits_form.[Ch]: removed
12229         * lyx_gui_misc.C: remove credits stuff
12230         * Makefile.am:
12231
12232 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12233
12234         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
12235
12236         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
12237         unneeded destructor.
12238
12239         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
12240         a standalone pointer again.
12241
12242         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
12243
12244 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
12245
12246         * Makefile.am:
12247         * filedlg.h:
12248         * filedlg.C:
12249         * LyXAction.C:
12250         * ToolbarDefaults.C:
12251         * bufferlist.C:
12252         * commandtags.h:
12253         * form1.C:
12254         * form1.h:
12255         * lyx_cb.C:
12256         * lyx_cb.h:
12257         * lyxfunc.h:
12258         * lyxfunc.C:
12259         * BufferView_pimpl.C: use new file dialog in GUII
12260
12261         * lyx_cb.h:
12262         * lyx_cb.C: remove LayoutsCB to Toolbar
12263
12264 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12265
12266         * ShareContainer.h (get): add std:: qualifier
12267
12268 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12269
12270         * ShareContainer.h: define a proper ShareContainer::value_type
12271         type (and use typename to please compaq cxx)
12272
12273 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12274
12275         * lyxparagraph.h: move serveral local vars to
12276         ParameterStruct/ParagraphParameters., use ShareContainer in
12277         FontTable., make vars in FontTable private and add getter and
12278         setter.
12279
12280         * paragraph.C: changes because of the above.
12281
12282         * lyxfont.h: remove copy constructor and copy assignment. (the
12283         default ones is ok), move number inside FontBits. move inlines to
12284         lyxfont.C
12285
12286         * lyxfont.C: add number to initializaton of statics, move several
12287         inlines here. constify several local vars. some whitespace
12288         cleanup. Dont hide outerscope variables.
12289
12290         * Spacing.h: add two new constructors to match the set methods.
12291
12292         * ShareContainer.h: new file, will perhaps be moved to support
12293
12294         * ParameterStruct.h: new file
12295
12296         * ParagraphParameters.h: new file
12297
12298         * ParagraphParameters.C: new file
12299
12300         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
12301         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
12302
12303         * BufferView_pimpl.C: ParagraphParameter changes.
12304         * buffer.C: Likewise.
12305         * bufferview_funcs.C: Likewise.
12306         * text.C: Likewise.
12307         * text2.C: Likewise.
12308
12309 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12310
12311         * lyxfind.C (LyXReplace): do not redefine default argument in
12312         implementation.
12313         (IsStringInText): ditto
12314         (SearchForward): ditto
12315         (SearchBackward): ditto
12316
12317 2001-03-06  Juergen Vigna  <jug@sad.it>
12318
12319         * lyxfind.C (IsStringInText): put parentes around expressions.
12320
12321 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
12322
12323         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
12324
12325 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
12326
12327         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
12328
12329         * stl_string_fwd.h: add comment
12330
12331         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
12332
12333         * tabular.h:
12334         * tabular.C: remove unused DocBook methods
12335
12336         * intl.C:
12337         * language.C:
12338         * paragraph.C:
12339         * buffer.C:
12340         killed DO_USE_DEFAULT_LANGUAGE
12341
12342 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12343
12344         * lyx_gui.C: do not include language.h.
12345
12346         * bufferview_funcs.C (ToggleAndShow): do not provide optional
12347         arguments in function implementation.
12348
12349 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12350
12351         * BufferView_pimpl.C: add <ctime>
12352
12353 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12354
12355         * BufferView_pimpl.C: add using std::find_if
12356
12357 2001-02-27  José Matos  <jamatos@fep.up.pt>
12358
12359         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
12360         by OnlyPath.
12361
12362 2001-02-11  José Matos  <jamatos@fep.up.pt>
12363
12364         * buffer.C (makeDocBookFile): command styles now have a parameter as
12365         "title" by default.
12366
12367 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
12368
12369         * layout_forms.[Ch]: removed
12370         * lyx_cb.[Ch]: out character
12371         * lyx_gui.C: out character
12372         * lyx_gui_misc.C: out character
12373         * bufferview_funcs.C: : out character,
12374         added toggleall as parameter in ToggleAndShow
12375
12376 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
12377
12378         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
12379
12380         * text2.C (SetCurrentFont): Disable number property at boundary.
12381
12382 2001-02-26  Juergen Vigna  <jug@sad.it>
12383
12384         * lyxfunc.C (getStatus): added a string argument override function so
12385         that this is correctly called from LyXFunc::Dispatch if it contains a
12386         do_not_use_argument which is used!
12387         (Dispatch): added check for "custom" export and call appropriate func.
12388
12389 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
12390
12391         * lyxrc.C: Add language_command_local, language_use_babel and
12392         language_global_options.
12393
12394         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
12395
12396         * buffer.C (makeLaTeXFile): Use language_use_babel and
12397         language_global_options.
12398
12399 2001-02-23  Juergen Vigna  <jug@sad.it>
12400
12401         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
12402         which works with LyXText and putted it inside BufferView. Here now we
12403         only call for that part the BufferView::Dispatch() function.
12404
12405         * BufferView.C (Dispatch): added.
12406
12407         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
12408         functions which needs to use a LyXText over from LyXFunc.
12409         (MenuInsertLyXFile): added
12410         (getInsetByCode): added
12411         (moveCursorUpdate): added
12412         (static TEXT): added
12413
12414 2001-02-22  Juergen Vigna  <jug@sad.it>
12415
12416         * BufferView_pimpl.C (update): call a status update to see if LyXText
12417         needs it.
12418
12419 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12420
12421         * vc-backend.C (revert): implement for CVS
12422         (getLog): implement for CVS
12423
12424 2001-02-20  Juergen Vigna  <jug@sad.it>
12425
12426         * text2.C (ClearSelection): added BufferView param for inset_owner call
12427
12428         * lyxfunc.C (TEXT): added this function and use it instead of
12429         directly owner->view()-text of getLyXText().
12430
12431 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
12432
12433         * src/layout_forms.C: out preamble
12434         * src/layout_forms.h: out preamble
12435         * src/lyx_cb.C: out preamble
12436         * src/lyx_cb.h: out preamble
12437         * src/lyx_gui.C: out preamble
12438         * src/lyx_gui_misc.C: out preamble
12439         * src/lyxfunc.C: connect with guii preamble
12440
12441 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
12442
12443         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
12444
12445 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
12446
12447         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
12448         whether to run bibtex.
12449
12450 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
12451
12452         * Makefile.am (lyx_SOURCES): Remove BackStack.h
12453
12454 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
12455
12456         * Makefile.am (lyx_SOURCES): removed bibforms.h
12457
12458         * vspace.h: doxygen
12459
12460         * text.C (GetVisibleRow): make several local vars const
12461
12462         * tabular.C: small cleanup.
12463
12464         * lyxserver.C (callback): use compare instead of strncmp
12465
12466         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
12467         inlines to after class or to paragraph.C
12468
12469         * lyxfont.h: remove friend operator!=
12470
12471         * converter.h: move friend bool operator< to non friend and after
12472         class def.
12473
12474         * combox.h: small cleanup
12475
12476         * buffer.h: doxygen, remove unused constructor, move inclas inlies
12477         to inlines after class def.
12478
12479         * buffer.C (pop_tag): use string operations instead of strcmp
12480
12481         * bmtable.c: doxygen, small cleanup
12482
12483         * LaTeX.h: remove friend operator==
12484
12485 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
12486
12487         * screen.C:
12488         * lyxrc.[Ch]:
12489         * lyxfunc.C:
12490         * lyxfont.[Ch]:
12491         * lyx_cb.C:
12492         * intl.[Ch]:
12493         * commandtags.h:
12494         * buffer.C:
12495         * WorkArea.[Ch]:
12496         * LyXAction.C:
12497         * BufferView_pimpl.C:
12498         * BufferView.[Ch]: remove cruft
12499
12500 2001-02-14  Juergen Vigna  <jug@sad.it>
12501
12502         * lyxfunc.C: removed #if 0 unused code
12503
12504         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
12505
12506         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
12507
12508         * text2.C (SetSelection): added a BufferView * parameter
12509
12510 2001-02-13  Juergen Vigna  <jug@sad.it>
12511
12512         * lyxfunc.C (Dispatch): fixed protected blank problem.
12513         * BufferView2.C (protectedBlank): added LyxText * parameter.
12514
12515         * tabular.C (AppendRow): forgot to set row_info of newly added row.
12516         (AppendColumn): same as above for column_info.
12517
12518         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
12519         (moveCursorUpdate): use a LyXText param for support of InsetText.
12520
12521         * BufferView_pimpl.C (doubleClick): added support for InsetText.
12522         (tripleClick): ditto
12523
12524         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
12525
12526         * BufferView_pimpl.C (update): added LyXText param to honor insets.
12527
12528         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
12529
12530         * text2.C (SetSelection): set correct update status if inset_owner
12531         (ToggleFree): ditto
12532
12533 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
12534
12535         * tabular.C: remove some commented code.
12536
12537 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
12538
12539         * BufferView_pimpl.C: call hideSplash()
12540
12541         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
12542
12543         * include_form.h:
12544         * bibforms.h: remove
12545
12546         * lyxfunc.C:
12547         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
12548           add LFUN_CHILD_CREATE
12549
12550         * counters.h: fix tiny typo
12551
12552         * lyx_cb.C:
12553         * lyx.h:
12554         * lyx_gui.C:
12555         * lyx.C: move splash to frontends/xforms/
12556
12557         * lyx_gui_misc.C: move Include and Bibform to frontends
12558
12559         * lyxvc.h: clarify comment
12560
12561         * vspace.C: tiny housekeeping
12562
12563 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
12564
12565         * text.C (PrepareToPrint): RTL Fix.
12566
12567         * paragraph.C (GetUChar): New method.
12568         (String):  Use GetUChar.
12569
12570         * buffer.C (asciiParagraph): Use GetUChar.
12571
12572 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
12573
12574         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
12575
12576 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
12577
12578         * buffer.h:
12579         * buffer.C: rename to getLogName(), handle
12580           build log / latex log nicely
12581
12582 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12583
12584         * MenuBackend.C:
12585         * MenuBackend.h: remove support for reference menuitem type.
12586
12587 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
12588
12589         * BufferView_pimpl.C: housekeeping
12590         * BufferView_pimpl.h:
12591         * LyXView.h:
12592         * Makefile.am:
12593         * Timeout.C:
12594         * Timeout.h:
12595         * minibuffer.h: move Timeout GUI-I
12596
12597 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
12598
12599         * lyxrc.C (read): Update converters data-structures.
12600
12601 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
12602
12603         * LaTeX.h (operator!=): add operator != for Aux_Info
12604
12605 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
12606
12607         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
12608
12609         * LaTeXLog.C: deleted, useful code moved to Buffer
12610
12611         * buffer.h:
12612         * buffer.C: new function getLatexLogName()
12613
12614         * lyx_gui_misc.C:
12615         * lyx_gui.C:
12616         * lyxvc.C:
12617         * lyxvc.h:
12618         * lyxfunc.C: use frontends for LaTeX and VC logs
12619
12620 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12621
12622         * LaTeX.h: yet another std:: that Allan forgot.
12623
12624         * Variables.C (set): renamed from isset(), because this clashes
12625         with some HP-UX macros (grr).
12626
12627 2001-02-06  Allan Rae  <rae@lyx.org>
12628
12629         * LaTeX.h: Another bug fix.  Missing std:: this time.
12630
12631 2001-02-04  Allan Rae  <rae@lyx.org>
12632
12633         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
12634         floats problem. I've left it commented out because it's not quite
12635         correct.  It should also test that the current object is a table or
12636         figure inset.  But I haven't gotten around to figuring out how to do
12637         that.  I *think* it'll be something like: "table" == inset.type()
12638
12639         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
12640         bool.
12641
12642 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
12643
12644         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
12645         all the citation/databases/styles in the auxilary file.
12646         (run): Rerun latex if there was a babel language error.
12647
12648 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
12649
12650         * text.C (Backspace): Preserve the font when changing newline char
12651         with a space.
12652         (BreakParagraph): If the cursor is before a space, delete the space.
12653
12654         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
12655
12656 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
12657
12658         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
12659         new argument (code).
12660         (ChangeCitationsIfUnique): New method.
12661
12662         * paragraph.C (GetPositionOfInset): Handle bibkey.
12663
12664 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12665
12666         * BufferView_pimpl.h: change type of Position::par_pos to
12667         LyXParagraph::size_type.
12668
12669 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
12670
12671         * BufferView_pimpl.C (savePosition, restorePosition): Write
12672         messages to minibuffer.
12673
12674 2001-01-28  José Matos  <jamatos@fep.up.pt>
12675
12676         * buffer.C (makeDocBookFile): adds support for document language.
12677         A silly restriction on the name of LatexCommand types where removed.
12678         Added support for CDATA sections, allows to chars unescaped, used
12679         among others in code, to avoid escape < and >.
12680
12681 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
12682
12683         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
12684         saved positions instrad of a stack. Furthermore, a position is
12685         stored using paragraph id/paragraph position.
12686
12687         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
12688         Remove LFUN_REF_BACK.
12689
12690 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
12691
12692         * converter.C (dvipdfm_options): New method.
12693
12694 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
12695
12696         * vspace.C (isValidLength): Fix for empty input string.
12697
12698 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12699
12700         * LyXAction.C (init): change description of LFUN_FIGURE to
12701         "Insert Graphics"
12702
12703 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12704
12705         * LaTeX.C: add using directive
12706
12707 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
12708
12709         * MenuBackend.C (expand): Fix the sorting of the formats.
12710
12711 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
12712
12713         * lyx_main.C: tiny error message fix
12714
12715 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12716
12717         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
12718         calling fl_initialize(). This fixes the problem with ',' as
12719         decimal separator in text files.
12720
12721 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
12722
12723         * trans.C (process): Fix the keymap bug.
12724
12725 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
12726
12727         * LaTeX.C (scanAuxFiles): New method. Provides support for
12728         multiple bibliographies (when using the bibtopic/bibunits pacakges).
12729         (scanLogFile) Scan for "run BibTeX" messages.
12730
12731         * buffer.C (makeLaTeXFile): Do not load the ae package when using
12732         OT1 font encoding. Also, load the aecompl package if the ae
12733         package is loaded.
12734
12735         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
12736
12737 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12738
12739         * texrow.C (increasePos): turn two error messages into debug
12740         messages.
12741
12742 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
12743
12744         * LaTeX.C (scanAux): Handle the \@input macro.
12745         (runBibTeX): Use scanAux().
12746
12747         * language.C (latex_options_): New field.
12748
12749         * LaTeXFeatures.C (getMacros): Add language macros.
12750
12751         * buffer.C (makeLaTeXFile): Small fix.
12752
12753 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12754
12755         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
12756
12757         * text2.C: add a using directive.
12758
12759 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
12760
12761         * BufferView2.C:
12762         * lyx_gui_misc.h:
12763         * lyxfr1.C:
12764         * lyxfunc.C: kill LyXBell.
12765
12766 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
12767
12768         * text.C (IsBoundary): Remove the error message
12769
12770         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
12771
12772         * lyxrc.C (setDefaults): Correct initialization value for
12773         font_norm_type.
12774
12775 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
12776
12777         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
12778         gotoError().
12779
12780         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
12781         and GotoNextNote().
12782
12783         * src/LyXAction.C: Added reference-next.
12784
12785         * text.C (InsertChar): Use contains instead of strchr.
12786
12787         * lyx_cb.C (MenuInsertLabel): Enable default value code.
12788
12789 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
12790
12791         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
12792         alignment commands (when needed).
12793
12794         * text.C (InsertChar): Add ':' to number separator chars.