]> git.lyx.org Git - lyx.git/blob - src/ChangeLog
dd2164e0f89dd85639974b293ad2a55abd5b6a3f
[lyx.git] / src / ChangeLog
1 2004-01-31  Lars Gullik Bjonnes  <larsbj@gullik.net>
2
3         * lyxtextclasslist.C (less_textclass_avail_desc): inherit from
4         std::binary_function 
5
6         * lyxtextclass.C (compare_name): rename to...
7         (LayoutNamesEqual): ...this
8
9         * lyxlex_pimpl.C (compare_tags): inherit from
10         std::binary_function, put back into anon namespace
11
12         * lyxfind.C (MatchString): inherig from std::binary_function
13         (findChange): use empty() istead of !size()
14
15         * format.C (FormatNamesEqual): new functor
16         (getFormat): use it
17         (getNumber): use it
18         (add): use it
19         (erase): use it
20         (setViewer): use it
21
22         * converter.C (compare_Converter): rename to...
23         (ConverterEqual): ...this, and fixup a bit.
24         (getConverter): use it, and make function const
25         (getNumber): use it, and make function const
26         (add): use it
27         (erase): use it: 
28
29         * bufferlist.C: add using boost::bind
30
31         * MenuBackend.C (MenuNamesEqual): new functor
32         (hasMenu): use it, and make function const
33         (hasSubmenu): use nested bind to get rid of compare_memfun.
34
35 2004-01-30  André Pönitz  <poenitz@gmx.net>
36
37         * BufferView_pimpl.C:
38         * cursor.C:
39         * cursor.h:
40         * cursor_slice.[Ch]:
41         * lyxfunc.C:
42         * lyxtext.h:
43         * paragraph_funcs.C:
44         * paragraph_funcs.h:
45         * rowpainter.C:
46         * text.C:
47         * text2.C:
48         * text3.C: move some of the edit(x,y) handling to the insets
49         some coordinate changes.
50
51 2004-01-28  Lars Gullik Bjonnes  <larsbj@gullik.net>
52
53         * text.C: add using statements for std::advance and std::distance
54
55         * paragraph.C: add using statement for std::distance
56
57         * lyxfind.C: add using statement for std::advance
58
59         * cursor.C (region): remove std:: from swap
60         (openable): use nucleus in stead of operator->
61
62         * BufferView.C: add using statements for std::distance and std::swap
63
64 2004-01-27  Lars Gullik Bjonnes  <larsbj@gullik.net>
65
66         * iterators.C: Remove the pimple, move the needed structures to
67         the header file. Create accessor for the positions stack.
68         (asPosIterator): remove function
69
70         * PosIterator.C (PosIterator): move constructors to top of file
71         (PosIterator): reimplement the constructor taking a ParIterator in
72         terms of setFrom.
73         (setFrom): new function
74         (operator!=): inline it
75
76 2004-01-26  Lars Gullik Bjonnes  <larsbj@gullik.net>
77
78         * lyxfind.C (replaceAll): use std::advance
79
80         * iterators.h: inherit from std::iterator.
81
82         * PosIterator.C (advance, distance): remove
83         * PosIterator.h: interit from std::iterator.
84
85 2004-01-26  André Pönitz  <poenitz@gmx.net>
86
87         * BufferView.[Ch]:
88         * BufferView_pimpl.[Ch]:
89         * InsetList.[Ch]:
90         * PosIterator.[Ch]:
91         * buffer.h:
92         * bufferview_funcs.C:
93         * cursor.[Ch]:
94         * cursor_slice.h:
95         * factory.[Ch]:
96         * iterators.[Ch]:
97         * lyxfind.C:
98         * lyxfunc.C:
99         * lyxtext.h:
100         * output_docbook.C:
101         * output_latex.C:
102         * output_linuxdoc.C:
103         * output_plaintext.C:
104         * paragraph.[Ch]:
105         * paragraph_funcs.[Ch]:
106         * paragraph_pimpl.[Ch]:
107         * rowpainter.C:
108         * tabular.C:
109         * tabular.h:
110         * text.C:
111         * text2.C:
112         * text3.C: more IU:  dumps most of the rest of the mathcursor
113     implementation into cursor.[Ch]; "globalize" a bit of it.
114
115 2004-01-25  Angus Leeming  <leeming@lyx.org>
116
117         * lyxfunc.C (dispatch): Dialogs::showSearch is no more.
118
119 2004-01-19  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
120
121         * LaTeXFeatures.h: add nice_ and nice() const
122         * buffer.[Ch]: remove niceFile(), use LaTeXFeatures::nice() instead
123
124 2004-01-20  André Pönitz  <poenitz@gmx.net>
125
126         * BufferView.[Ch]:
127         * BufferView_pimpl.C:
128         * PosIterator.C:
129         * bufferview_funcs.C:
130         * cursor.[Ch]:
131         * cursor_slice.[Ch]:
132         * factory.C:
133         * iterators.C:
134         * lyx_cb.C:
135         * lyxfind.C:
136         * lyxfunc.C:
137         * lyxtext.h:
138         * rowpainter.C:
139         * text.C:
140         * text2.C:
141         * text3.C:
142         * undo.[Ch]: lots of IU. Shift selection stuff from the BufferView to
143           LCursor and mathcursor parts to LCursor and InsetBase.
144
145 2004-01-15  André Pönitz  <poenitz@gmx.net>
146
147         * cursor_slice.[Ch]: add a few covienience functions
148
149         * funcrequest.[Ch]: remove BufferView * member
150
151         * BufferView_pimpl.C:
152         * cursor.C:
153         * factory.[Ch]:
154         * lyxfind.[Ch]:
155         * lyxfunc.C:
156         * lyxtext.h:
157         * text3.C:
158         * undo.[Ch]: adjust to this and changed signature of Inset::priv_dispatch()
159
160 2004-01-14  Alfredo Braunstein  <abraunst@lyx.org>
161
162         * text.C (getWord): fix getWord (and thus LFUN_WORDSEL)
163         * text3.C (dispatch): fix LFUN_WORD{RIGHT,LEFT}SEL
164
165 2004-01-13  André Pönitz  <poenitz@gmx.net>
166
167         * textcursor.[Ch]:
168         * lyxtext.h: hide cursor and selection anchor behind accessor function
169
170         * BufferView.C:
171         * BufferView_pimpl.[Ch]:
172         * PosIterator.C:
173         * bufferview_funcs.C:
174         * cursor.h:
175         * lyxfind.C:
176         * lyxfunc.C:
177         * text.C:
178         * text2.C:
179         * text3.C:
180         * undo.C: adjust
181
182         * cursor.h:
183         * cursor_slice.[Ch]: some integer type changes for inset unification
184
185         * lyxcursor.[hC]: remove, it's CursorSlice now.
186
187         * Makefile.am:
188         * BufferView_pimpl.[Ch]:
189         * bufferview_funcs.C:
190         * cursor_slice.C:
191         * lyxtext.h:
192         * text.C:
193         * text2.C:
194         * text3.C:
195         * textcursor.[Ch]: adjust
196
197 2004-01-08  Alfredo Braunstein  <abraunst@lyx.org>
198
199         * text2.C (undoSpan): add and use
200         * text.C (breakParagraph): use undoSpan (fix bug 578)
201         * lyxtext.h: adjust
202
203 2004-01-08  Angus Leeming  <leeming@lyx.org>
204
205         * BufferView_pimpl.C (MenuInsertLyXFile):
206         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
207         * lyxfunc.C (menuNew, open, doImport):
208         FileFilterList change to the FileDialog open and save functions.
209
210 2004-01-07  Lars Gullik Bjonnes  <larsbj@gullik.net>
211
212         * ShareContainer.h: make isEqual and isUnique adaptable
213
214         * CutAndPaste.C: make resetOwnerAndChanges adaptable
215
216 2004-01-07  Angus Leeming  <leeming@lyx.org>
217
218         * LyXAction.C:
219         * lfuns.h: add LFUN_WORD_FIND and LFUN_WORD_REPLACE.
220
221         * BufferView_pimpl.C (dispatch): act on these LFUNs.
222
223         * lyxfind.[Ch] (find2string, replace2string, find, replace): new
224         functions replacing find, replace and replaceAll.
225
226         * lyxfunc.C (dispatch): invoke LFUN_WORD_FIND from a call to
227         LFUN_WORDFIND(FORWARD|BACKWARD).
228
229 2004-01-07  Alfredo Braunstein  <abraunst@lyx.org>
230
231         * text.C (breakParagraph): remove an outdated #warning
232
233 2004-01-07  André Pönitz  <poenitz@gmx.net>
234
235         * lyxfind.C: somewhat clearer logic
236
237         * text.C: prevent crash in cursorX on unitialized row cache
238
239 2004-01-07  Alfredo Braunstein  <abraunst@lyx.org>
240
241         * lyxcursor.[Ch] (operator>): add
242         * textcursor.C (selStart, selEnd): use std::min and std::max
243
244 2004-01-06  Lars Gullik Bjonnes  <larsbj@gullik.net>
245
246         * Chktex.C: include boost/format.hpp
247
248 2004-01-05  Lars Gullik Bjonnes  <larsbj@gullik.net>
249
250         * InsetList.C: replace functor MathcIt with adaptable functor
251         InsetTablePosLess
252         (insetIterator): modify accordingly
253
254         * BranchList.h: move the BranchNamesEqual functor here from...
255         * BranchList.C: ... to here
256
257         * BranchList.C: new BranchListEqual fuctor, use it. Remove
258         SameName and match.
259         (add): replace a finding loop with std::find_if.
260
261 2003-12-31  Martin Vermeer  <martin.vermeer@hut.fi>
262
263         * output_docbook.C: moving LatexParam functionality into
264         .layout files
265
266 2003-12-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
267
268         * buffer.C: increment format to 229.
269
270 2003-12-28  Michael Schmitt  <michael.schmitt@teststep.org>
271
272         * LaTeXFeatures.C:
273         * lyx_sty.[Ch]: remove minipageindent_def
274
275         * LyXAction.C:
276         * factory.C:
277         * lfuns.h:
278         * lyxfunc.C:
279         * text3.C: remove LFUN_INSET_MINIPAGE
280
281 2003-12-28  Angus Leeming  <leeming@lyx.org>
282
283         * text3.C (dispatch): output useful info on receipt of LFUN_GETLAYOUT.
284
285 2003-12-19  Alfredo Braunstein  <abraunst@lyx.org>
286
287         * text2.C (setParagraph): fix off-by-one crash
288
289 2003-12-18  Martin Vermeer  <martin.vermeer@hut.fi>
290
291         * output_docbook.C: header stuff for AGU
292
293 2003-12-17  Alfredo Braunstein  <abraunst@lyx.org>
294
295         * text2.C (redoCursor): remove
296         * text.C:
297         * text3.C:
298         * BufferView_pimpl.C: remove calls to redoCursor and
299         setCursor(cursor.par(), cursor.pos()) all around
300
301 2003-12-15  Angus Leeming  <leeming@lyx.org>
302
303         * buffer.C: up the format to 228.
304
305 2003-12-15  André Pönitz  <poenitz@gmx.net>
306
307         * cursor_slice.[Ch]: new class to cover texted and mathed's cursor
308         slices
309
310         * Makefile.am:
311
312         * BufferView_pimpl.C:
313         * cursor.[Ch]:
314         * lyxcursor.[Ch]:
315         * rowpainter.[Ch]:
316         * lyxtext.h:
317         * text.C:
318         * text2.C:
319         * text3.C: adjust
320
321 2003-12-15  Angus Leeming  <leeming@lyx.org>
322
323         * metricsinfo.C (ColorChanger): use LColor::getFromLyXName rather
324         than getFromGUIName to manipulate the color.
325
326 2003-12-14  Angus Leeming  <leeming@lyx.org>
327
328         * BranchList.[Ch]: minimize the API.
329         (Branch::getBranch, getColor): now return a 'const &'.
330         (Branch::setSelected) now returns a bool set to true if the
331         selection status changes.
332         (BranchList::clear, size, getColor, setColor, setSelected,
333         allBranches, allSelected, separator): removed.
334         (BranchList::find): new functions, returning the Branch with
335         the given name.
336         (BranchList::add, remove): return a bool indicating that
337         the operation was successful.
338
339         * InsetList.C (insetsOpenCloseBranch): much simplified thanks to a
340         new InsetBranch::isBranchSlected member function.
341
342         * LColor.[Ch]: mimimize the API.
343         (fill): renamed as addColor and made private.
344         (setColor, getGUIName, getX11Name, getLaTeXName): the overloaded
345         versions of these functions taking a string arg have been removed.
346
347         * bufferparams.C (readToken):
348         * lyxfunc.C (dispatch):
349         * lyxrc.C (read): changes due to the altered BranchList and
350         LColor APIs.
351
352         * factory.C (createInset, readInset): changes due to altered
353         InsetBranch c-tor.
354
355 2003-12-14  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
356
357         * factory.C:
358         * lyxfunc.C: remove insetminipage. "minipage-insert"
359         now produces a frameless minipage box inset.
360
361 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
362
363         * textcursor.[Ch] (selStart,selEnd): add new methods
364         remove selection::start, end, use LyXCursor::operator<
365         * lyxcursor.[Ch] (operator<): add
366         * BufferView_pimpl.[Ch]: add new struct xsel_cache_
367         * BufferView.[Ch] (unsetXSel): add
368         * text2.C (clearSelection): use unsetXSel,adjust
369         * text.C: adjust
370         * text3.C: adjust
371         * rowpainter.C: adjust
372         * bufferview_funcs.C (put_selection_at): adjust
373
374 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
375
376         * BufferView_pimpl.C: small coord. correction
377
378 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
379
380         * BufferView_pimpl.C (workAreaDispatch): avoid crashing when
381         dragging over the splash screen.
382
383 2003-12-11  Angus Leeming  <leeming@lyx.org>
384
385         * BufferView_pimpl.C (dispatch): remove LFUN_INSET_APPLY code
386         as it is now handled in LyXText::dispatch.
387
388         * text3.C (doInsertInset): remove a level of nesting.
389
390 2003-12-11  Angus Leeming  <leeming@lyx.org>
391
392         * factory.C (createInset): changes due to the changed interface to
393         InsetCommandMailer::string2params.
394
395 2003-12-10  Angus Leeming  <leeming@lyx.org>
396
397         * lyxfunc.C (dispatch): enable all inset dialogs to be opened with
398         'dialog-show-new-inset <inset name>'
399
400 2003-12-10  Angus Leeming  <leeming@lyx.org>
401
402         * buffer.C: up the format to 227.
403
404         * factory.C: the box inset is now identified simply by 'Box'.
405
406 2003-12-10  Angus Leeming  <leeming@lyx.org>
407
408         * buffer.C: up the format to 226.
409
410         * factory.C: the note inset is now identified simply by 'Note'.
411
412 2003-12-08  Alfredo Braunstein  <abraunst@libero.it>
413
414         * lyxtext.h, text2.C (setLayout): don't use cursor to iterate,
415         when a pit is enough. Standarize a couple of loops.
416
417 2003-12-05  Angus Leeming  <leeming@lyx.org>
418
419         * lyxfunc.C (dispatch): DIALOG_SHOW now handles "latexlog" and
420         "vclog" explicitly, passing the appropriate "<logtype> <filename>"
421         data to the re-worked "log" dialog.
422
423 2003-12-03  André Pönitz  <poenitz@gmx.net>
424
425         * PosIterator.C:
426         * iterators.C:
427         * lyxtext.h:
428         * output_latex.C:
429         * paragraph_funcs.C:
430         * text.C:
431         * text2.C: use Inset::getText instead of Inset::getParagraph
432
433 2003-12-03  André Pönitz  <poenitz@gmx.net>
434
435         * buffer.[Ch]:
436         * lyxtext.h:
437         * paragraph_funcs.[Ch]: consolidate parts of Buffer::read() and
438         InsetText::read() as LyXText::read()
439
440 2003-12-02  Angus Leeming  <leeming@lyx.org>
441
442         * lyxlex.[Ch] (operator void const *): add the 'const' to the return
443         type. Add a comment in the implementation that the function uses
444         the stream's bad() function rather than fail() as the std::streams
445         would do.
446
447 2003-12-02  André Pönitz  <poenitz@gmx.net>
448
449         * lyxlex.[Ch]: make interface more similar to std::stream
450
451         * lyxlex_pimpl.[Ch]: don't use '__' in identifiers
452
453 2003-12-01  Martin Vermeer  <martin.vermeer@hut.fi>
454
455         * lyxtextclass.[Ch]: add latexparam to CharStyle inset
456
457 2003-12-01  Michael Schmitt  <michael.schmitt@teststep.org>
458
459         * vspace.[Ch]: remove VSpace::NONE
460
461 2003-12-01  André Pönitz  <poenitz@gmx.net>
462
463         * buffer.[Ch]:
464         * lyxtext.h: move ParagraphList member to LyXText
465         rename LyXText::ownerParagraphs to LyXText::paragraph
466
467         * CutAndPaste.C:
468         * bufferview_funcs.C:
469         * iterators.[Ch]:
470         * lyx_cb.C:
471         * paragraph.C:
472         * rowpainter.C:
473         * tabular.C:
474         * text.C:
475         * text2.C:
476         * text3.C: adjust
477
478         * lyxfunc.C: move LFUN_INSET_TOGGLE handling to insets.
479
480         * undo.C: fix cursor positioning
481
482 2003-12-01  John Levon  <levon@movementarian.org>
483
484         * BufferView_pimpl.C: fix a crash on exit with
485         a buffer open
486
487 2003-11-30  Martin Vermeer  <martin.vermeer@hut.fi>
488
489         * BranchList.C: fix setSelected() method.
490
491 2003-11-28  André Pönitz  <poenitz@gmx.net>
492
493         * ParagraphParameters.[Ch]:
494         * ParameterStruct.h: remove space above/below from Paragraph to
495          InsetVSpace
496
497         * BufferView_pimpl.C:
498         * factory.C:
499         * lyxfunc.C:
500         * lyxtext.h:
501         * output_latex.C:
502         * paragraph.C:
503         * paragraph_funcs.C:
504         * rowpainter.[Ch]:
505         * text.C:
506         * text2.C:
507         * text3.C: adjust
508
509 2003-11-28  Martin Vermeer  <martin.vermeer@hut.fi>
510
511         * factory.C: Syntax change for CharStyles
512
513 2003-11-28  André Pönitz  <poenitz@gmx.net>
514
515         * BufferView.[Ch]:
516         * BufferView.[Ch]:
517         * buffer.[Ch]:
518         * buffer.[Ch]: move LyXText member
519
520 2003-11-28  André Pönitz  <poenitz@gmx.net>
521
522         * BufferView.[Ch]: make LyXText * text a private member
523
524         * BufferView_pimpl.C:
525         * cursor.C:
526         * iterators.C:
527         * lyx_cb.C:
528         * lyxfind.C:
529         * lyxtext.h:
530         * rowpainter.[Ch]:
531         * text.C:
532         * text2.C:
533         * undo.C: adjust
534
535         * output_plaintext.C: cleanup
536
537 2003-11-27  Martin Vermeer  <martin.vermeer@hut.fi>
538
539         * buffer.C:
540         * lyxtextclass.[Ch]: parametrize SGML document header
541
542 2003-11-27  Martin Vermeer  <martin.vermeer@hut.fi>
543
544         * converter.[Ch]:
545         * exporter.C: replace bool-valued Pdflatex() by FLAVOR-valued
546         getFlavor().
547
548 2003-11-27  Alfredo Braunstein  <abraunst@lyx.org>
549
550         * text2.C (setFont): rework using PosIterator (no more recursive)
551         (setCharFont): no more needed
552         (setLayout): no more selection cursors fiddling (done by redoCursor)
553         * text.C: cursorRight(bv)->cursorRight(true) (TODO: find and
554         destroy remaining ones)
555
556 2003-11-26  Alfredo Braunstein  <abraunst@lyx.org>
557
558         * bufferview_funcs.[Ch]: split changeDepthAllowed from changeDepth
559         * lyxtext.h: ditto
560         * text2.C: same thing + updateCounters fix + redoCursor also adjusts
561         selection cursors
562         * lyxfunc.C: adjust
563         * text3.C: adjust + re-allow multi par depth changes
564         * textcursor.C: simplify a bit
565
566 2003-11-25  Martin Vermeer  <martin.vermeer@hut.fi>
567
568         * src/buffer.C:
569         * src/lyxlayout.C:
570         * src/lyxlayout.h:
571         * src/lyxtext.h:
572         * src/output_docbook.C:
573         * src/output_latex.C:
574         * src/paragraph.C:
575         * src/paragraph.h:
576         * src/sgml.C:
577         * src/sgml.h:
578         * src/text2.C: Introducing a number of tags parametrizing various
579         XML formats that we may want to support
580
581 2003-11-25  André Pönitz  <poenitz@gmx.net>
582
583         * InsetList.[Ch] (begein, end): inline as suggested by profiler
584
585         * lyxtext.h (leftMargin/rightMargin): simplify interface
586
587         * rowpainter.C:
588         * text.C:
589         * text2.C:
590         * text3.C: adjust
591
592 2003-11-24  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
593
594         * lyxfunc.C (dispatch): propogate the bibtex databases from the
595         master file to any child files. Fixes bug 546.
596
597 2003-11-24  Alfredo Braunstein  <abraunst@lyx.org>
598
599         * lyxfind.C (findNextChange): remove unneeded bv->text->init call
600
601 2003-11-24  André Pönitz  <poenitz@gmx.net>
602
603         * rowpainter.C: simplification
604
605         * text2.C (updateCounters): remove call to redoParagraph on
606         changed labels as this is far too expensive.
607
608 2003-11-24  Alfredo Braunstein  <abraunst@lyx.org>
609
610         * converter.C (convert): fix a crash: this function gets
611         called with buffer == 0 from importer code.
612
613 2003-11-22  Lars Gullik Bjonnes  <larsbj@gullik.net>
614
615         * text3.C (cursorPrevious): make sure that we do not compare
616         iterators form different containers.
617         (cursorNext): ditto
618
619         * rowpainter.C (paintSelection): make sure that we do not compare
620         iterators from different containers.
621
622         * text3.C (dispatch): [PRIOR] make sure that we do not compare
623         iterators from different ParagraphList containers.
624         [NEXT] ditto
625
626         * text2.C (LyXText): change order of initialization slightly
627         (operator=): new function. copy all variables except cache_par_
628         (moveUp): make sure that we do not compare iterators from
629         different ParagraphList constainers.
630         (moveDown): ditto
631
632         * text.C (firstPar): new function
633         (lastPar): new function
634         (endPar): new function
635
636         * lyxtext.h: move things around and group public functions, public
637         variables, private functions, private variables
638
639 2003-11-21  Michael Schmitt  <michael.schmitt@teststep.org>
640
641         * factory.C: change call to InsetERT constructor to avoid
642         additional invocation of method status
643         * text2.C (toggleInset): remove redundant update() call
644         * InsetList.[Ch] (insetsOpenCloseBranch): Pass Buffer reference
645         instead of a Bufferview pointer
646
647 2003-11-21  André Pönitz  <poenitz@gmx.net>
648
649         * rowpainter.C: simplification
650
651 2003-11-21  Alfredo Braunstein  <abraunst@lyx.org>
652
653         * text3.C (dispatch): make possible to extend a word/row selection
654         with the mouse
655
656 2003-11-21  Alfredo Braunstein  <abraunst@lyx.org>
657
658         * lyxtext.h: x0_,y0_ -> xo_,yo_
659         * text2.C (cursorUp, cursorDown): adjust + some cursorRow use
660         * text3.C (checkInsetHit): fix coordinates using absolute xo_,yo_
661         * rowpainter.C (paintRows): paint full paragraphs
662
663 2003-11-20  Alfredo Braunstein  <abraunst@lyx.org>
664
665         * text2.C (cursorUp, cursorDown): small fix (insettext::edit takes
666         screen coordinates)
667
668 2003-11-20  Alfredo Braunstein  <abraunst@lyx.org>
669
670         * lyxtext.h: add x0_, y0_
671         * text3.C (cursorPrevious, cursorNext): rewrite (using x0_, y0_)
672         * text2.C (cursorDown, cursorUp): rewrite (using x0_, y0_)
673
674 2003-11-18  Alfredo Braunstein  <abraunst@lyx.org>
675
676         * text2.C (setCursorIntern): move the x_target update here *
677         * text3.C: change some bv() to true/false in calls to
678         cursorUp/Down/Right/Left
679         * cursor.C: use helper function.
680
681 2003-11-17  Alfredo Braunstein  <abraunst@lyx.org>
682
683         * BufferView_pimpl.C: send LFUN_MOUSE_MOTION to the cursor
684         * paragraph_funcs.[Ch]: correct comment
685         * rowpainter.C: do not paint selections away from bv->cursor()
686         Fix a long standing selection painting bug.
687         * text3.C: generalize mouse-selection code to LyXTexts other that
688         top one
689         * textcursor.C: do not use y coords if we can use par offsets
690
691 2003-11-17  Alfredo Braunstein  <abraunst@lyx.org>
692
693         * lyxfunc.C (dispatch): add a missing LCursor::updatePos (fix
694         cursor position after e.g. inset insert)
695
696 2003-11-16  Alfredo Braunstein  <abraunst@lyx.org>
697
698         * lyxfind.C (replace): adjust to locking removal + some
699         code simplification
700
701 2003-11-14  Alfredo Braunstein  <abraunst@lyx.org>
702
703         * cursor.C (dispatch): dispatch to BufferView::dispatch at the end
704         of the path
705
706 2003-11-14  Martin Vermeer  <martin.vermeer@hut.fi>
707
708         * lyxlayout.[Ch]:
709         * output_docbook.C: XML sanitation: new layout
710         parameters InnerTag and CommandDepth
711
712 2003-11-13  Martin Vermeer  <martin.vermeer@hut.fi>
713
714         * BufferView_pimpl.C:
715         * factory.C:
716         * text3.C: Fix the insertion and modification of button-style
717         insets
718
719 2003-11-13  André Pönitz  <poenitz@gmx.net>
720
721         * InsetList.[Ch]: remove deleteLyXText
722
723         * paragraph.[Ch]: cache beginOfBody position
724
725         * Bidi.C:
726         * text.C:
727         * text2.C:
728         * text3.C: remove superfluous update() calls
729
730         * vspace.C: cleanup
731
732 2003-11-13  Alfredo Braunstein  <abraunst@lyx.org>
733
734         * BufferView_pimpl.C (fitCursor): call screen().fitCursor()
735         * BufferView.C (fitLockedInsetCursor): remove
736         * cursor.[Ch] (getDim): add
737         * text.C (getRowNearY): add faster version
738         * text3.C: remove some update calls
739
740 2003-11-12  Martin Vermeer  <martin.vermeer@hut.fi>
741
742         * LaTeXFeatures.C:
743         * LyXAction.C:
744         * MenuBackend.C:
745         * MenuBackend.h:
746         * dispatchresult.h:
747         * factory.C:
748         * lfuns.h:
749         * lyxfunc.C:
750         * lyxtextclass.C:
751         * lyxtextclass.h:
752         * text3.C: The Character Style /XML short element patch.
753
754 2003-11-11  Martin Vermeer  <martin.vermeer@hut.fi>
755
756         * text3.C:
757         * factory.C: Small step to solving 'unable to insert some insets'
758         problem
759
760 2003-11-11  Alfredo Braunstein  <abraunst@lyx.org>
761
762         * cursor.[Ch] (updatePos): new function for updating the y
763         position of the tip inset
764         * bufferview_funcs.C (put_selection_at):
765         * BufferView_pimpl.C (workAreaDispatch): rationalise update calls
766
767 2003-11-11  André Pönitz  <poenitz@gmx.net>
768
769         * text.C: remove big comment on invalid Paragraph pointers as it is
770         not valid anymore
771
772 2003-11-11  André Pönitz  <poenitz@gmx.net>
773
774         * text_funcs.[Ch]: merge with ...
775
776         * text.C: ... this
777
778         * lyxtext.h:
779         * text2.C:
780         * text3.C: adjust
781
782         * Makefile.am: remove text_funcs.[Ch]
783
784 2003-11-11  Alfredo Braunstein  <abraunst@libero.it>
785
786         * cursor.C (getPos): return absolute cached y coord
787
788         * BufferView_pimpl.C (fitCursor): new simplistic code
789         (workAreaDispatch): add a fitCursor call
790
791 2003-11-10  André Pönitz  <poenitz@gmx.net>
792
793         * BufferView.[Ch]:
794         * BufferView_pimpl.[Ch]: merge update() and updateInset()
795
796 2003-11-10  André Pönitz  <poenitz@gmx.net>
797
798         * lfuns.h: new LFUN_FINISHED_LEFT, LFUN_FINISHED_RIGHT,
799         LFUN_FINISHED_UP, LFUN_FINISHED_DOWN used in dispatch to
800         indicate that the cursor needs to leave an inset
801
802         * lyxtext.h: remove inset locking
803
804         * cursor.[Ch]: re-implement functionality provided by inset locking
805
806         * BufferView.[Ch]:
807         * BufferView_pimpl.[Ch]:
808         * LyXAction.C:
809         * bufferview_funcs.[Ch]:
810         * factory.C:
811         * funcrequest.[Ch]:
812         * iterators.C:
813         * lyx_cb.C:
814         * lyxfind.C:
815         * lyxfunc.C:
816         * text.C:
817         * text2.C:
818         * text3.C:
819         * undo.C: adjust
820
821 2003-11-07  Alfredo Braunstein  <abraunst@libero.it>
822
823         * PosIterator.[Ch]: replace the stack with a vector, add inset
824         accesor
825         * iterators.[C]: adjust
826
827 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
828
829         * lyxfind.C (replaceAll): mark the buffer dirty if something was
830         replaced
831         * paragraph_funcs.C (readParToken): put the correct id in the
832         error item, not the id of the top paragraph
833
834 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
835
836         * iterators.[Ch] (ParIterator): new PosIterator-based ctor
837         * bufferview_funcs.C (put_selection_at): use the above
838
839 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
840
841         * text2.C (deleteEmptyParagraphMechanism): fix n-th crash
842
843 2003-11-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
844
845         * output_linuxdoc.h:
846         * output_plaintext.h:
847         * output.h:
848         * output_docbook.h: add #include statements
849
850 2003-11-05  José Matos  <jamatos@lyx.org>
851
852         * output_docbook.[Ch]:
853         * output_latex.[Ch]:
854         * output_linuxdoc.[Ch]:
855         * output_plaintext.[Ch]: New files for output formats.
856         * output.[Ch]: New file for helper functions.
857
858         * buffer.[Ch]:
859         * paragraph_funcs.[Ch]: output functions moved to new files.
860
861         * outputparams.h: rename of latexrunparams.h
862
863         * LaTeX.[Ch]:
864         * buffer.[Ch]:
865         * bufferlist.[Ch]:
866         * converter.[Ch]:
867         * exporter.C:
868         * paragraph.[Ch]:
869         * paragraph_funcs.[Ch]:
870         * paragraph_pimpl.[Ch]:
871         * tabular.[Ch]: rename ascii to plaintext
872         and LatexRunParams to OutputParams.
873
874 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
875
876         * iterators.[Ch] (text): require bv argument
877         * undo.C (recordUndo):
878         * lyxfunc.C (dispatch):
879         * bufferview_funcs.C (put_selection_at): adjust
880
881 2003-11-05  João Luis M. Assirati  <assirati@fma.if.usp.br>
882
883         * lyxsocket.C: export variables XEDITOR and LYXSOCKET
884
885 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
886
887         * lyxfunc.C (dispatch): make LFUN_GOTO_PARAGRAPH work with deep
888         nestings
889
890 2003-11-04  André Pönitz  <poenitz@gmx.net>
891
892         * cursor.[Ch]: restructure
893
894         * BufferView.[Ch]:
895         * BufferView_pimpl.[Ch]: new LCursor cursor_ member
896
897         * iterators.[Ch] (asCursor): remove
898
899         * lfuns.h: remove LFUN_INSET_EDIT
900
901         * lyxfunc.C:
902         * tabular.C:
903         * text.C:
904         * text2.C:
905         * text3.C: use Inset::edit() instead of dispatch(LFUN_INSET_EDIT)
906
907 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
908
909         * lyxfind.[Ch]: complete overhaul
910         * BufferView_pimpl.C:
911         * lyxfunc.C: adjust
912         * paragraph.[Ch] (insert): add
913
914 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
915
916         * BufferView.[Ch]:
917         * lyxtext.h:
918         * text.C: remove dead spellcheck code
919
920 2003-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
921
922         * dispatchresult.h: add a val setter
923
924         * cursor.C (dispatch): use a tempvar for data_[i]
925
926 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
927
928         * PosIterator.[Ch]: compile fix
929
930 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
931
932         * text.C (cursorPar): deactivate the cursor cache
933
934 2003-11-03  Alfredo Braunstein  <abraunst@libero.it>
935
936         * undo.C (performUndoOrRedo): fix cursor positioning with lockPath
937
938 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
939
940         * text3.C (dispatch): adjust for new DisptchResult semantics.
941
942         * lyxfunc.C (dispatch): handle update when return from
943         Cursor::dispatch, adjust for new DispatchResult semantics.
944
945         * dispatchresult.h: drop NOUPDATE from dispatch_result_t. Make
946         DispatchResult(true) mean to not update. Add class functions for
947         setting dispatched and update, as well as reading.
948
949         * cursor.C (dispatch): don't handle update here
950
951 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
952
953         * trans_mgr.h: store t1_ and t2_ in scoped_ptr
954         * trans_mgr.C: adjust
955
956         * paragraph_funcs.C (readParToken): exception safety
957
958         * lyxvc.h: store the vcs pointer in a scoped_ptr
959         * lyxvc.C: adjust
960
961         * lyxsocket.C (serverCallback): exception safety
962
963         * lyx_cb.C (AutoSaveBuffer): make it return a auto_ptr
964
965         * ispell.C (clone): make it return a auto_ptr
966
967         * factory.C (createInset): exception safety
968         (readInset): exception safety
969
970         * bufferlist.C (newBuffer): exception safety
971
972         * Thesaurus.C (Thesaurus): use initialization for aik_
973
974         * MenuBackend.C (expandToc): exception safety.
975
976 2003-11-03  André Pönitz  <poenitz@gmx.net>
977
978         * buffer.C:
979         * buffer.h:
980         * bufferview_funcs.C: remove getInsetFromId()
981
982         * lyxcursor.[Ch]:
983         * BufferView.[Ch]: move x_fix from LyXCursor to BufferView
984
985         * lyxfunc.C:
986         * text2.C:
987         * text3.C: adjust
988
989 2003-11-03  Alfredo Braunstein  <abraunst@libero.it>
990
991         * PosIterator.C (distance, advance): new
992         * bufferview_funcs.[Ch] (put_selection_at): new
993         * iterators.[Ch] (lockPath): new
994
995 2003-11-02  Alfredo Braunstein  <abraunst@libero.it>
996
997         * iterators.[Ch] (asPosIterator): added
998         * buffer.[Ch] (pos_iterator_begin, pos_iterator_end): added
999         * PosIterator.[Ch]: added
1000
1001 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1002
1003         * text3.C:
1004         * lyxfunc.C:
1005         * cursor.C (dispatch):
1006         * BufferView_pimpl.C (dispatch): adjust for DispatchResult changes
1007
1008         * dispatchresult.h: remove UNDISPATCHED, DISPATCHED and
1009         DISPATCHED_NOUPDATE from dispatch_result_t, add NONE. Add a
1010         contructor, add a class function dispatched. Remove operator>=
1011
1012 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1013
1014         * debug.C: only use the default constructor for debugstream
1015         (lyxerr) here.
1016
1017         * main.C (main): include debug.h and setup the lyxerr streambuf
1018         here.
1019
1020 2003-10-31  José Matos  <jamatos@lyx.org>
1021
1022         * paragraph_funcs.C (addDepth, asciiParagraph): move from buffer.C
1023
1024         * buffer.[Ch] (writeFileAscii, makeLinuxDocFile, makeDocBookFile):
1025         * paragraph.[Ch] (simpleLinuxDocOnePar, simpleDocBookOnePar, asString):
1026         * paragraph_funcs.[Ch] (linuxdocParagraphs, docbookParagraphs):
1027         * paragraph_pimpl.C (simpleTeXSpecialC):
1028         * tabular.[Ch] (linuxdoc, docbookRow, docbook, ascii):
1029         add LatexRunParams argument.
1030
1031         * exporter.C (Export): change call accordingly.
1032
1033         * latexrunparams.h: add new member to take care of the other backends.
1034 2003-10-30  José Matos  <jamatos@lyx.org>
1035
1036         * buffer.C (makeLinuxDocFile, makeDocBookFile):
1037         * paragraph_funcs.[Ch] (linuxdocParagraphs, docbookParagraphs):
1038         factorise code for paragraph output.
1039         * buffer.[Ch]:
1040         * paragraph.[Ch] (simpleLinuxDocOnePar, simpleDocBookOnePar):
1041         move functions.
1042
1043 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1044
1045         * text3.C (dispatch):
1046         * lyxfunc.C (dispatch):
1047         * cursor.C (dispatch):
1048         * BufferView_pimpl.C (dispatch): explict DispatchResult ctor fallout.
1049
1050         * dispatchresult.h: make the dispatch_result_t ctor explicit
1051
1052 2003-10-29  Martin Vermeer  <martin.vermeer@hut.fi>
1053
1054         * sgml.[Ch]:
1055         * buffer.C: small refactoring of docbook stuff
1056
1057 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1058
1059         * dispatchresult.h: remove FINISHED_POP as FINISHED has the same
1060         meaning.
1061
1062 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1063
1064         * dispatchresult.h: rename DISPATCHED_POP to FINISHED_POP, remove
1065         operator dispatch_result_t, and operators for == != and >=
1066
1067         * cursor.C (dispatch): adjust for operator dispatch_result_t
1068         removal. comment out call to update
1069
1070         * BufferView_pimpl.C (dispatch): dont implicit covert to bool
1071
1072 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1073
1074         * text3.C:
1075         * text2.C:
1076         * text.C:
1077         * lyxtext.h:
1078         * lyxfunc.C:
1079         * cursor.C:
1080         * BufferView_pimpl.C: dispatch_result -> DispatchResult changes.
1081         (dispatch):
1082
1083         * dispatchresult.h: new file, DispatchResult broken out of
1084         insets/insetbase.h
1085
1086         * Makefile.am (lyx_SOURCES): add dispatchresult.h
1087
1088 2003-10-28  Alfredo Braunstein  <abraunst@libero.it>
1089
1090         * text.C (rowBreakPoint): put a hack inside #if 0
1091
1092 2003-10-28  André Pönitz  <poenitz@gmx.net>
1093
1094         * lyxtext.h:
1095         * metricsinfo.C:
1096         * paragraph_funcs.C:
1097         * rowpainter.C:
1098         * text.C:
1099         * text2.C: general cleanup (lots of small stuff)
1100
1101 2003-10-28  Alfredo Braunstein  <abraunst@libero.it>
1102
1103         * text2.C (cursorEnd): simple fix to the "end key goes to one
1104         before the end on last row" bug
1105
1106 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
1107
1108         * text.C (backspace): fix the "zombie characters"
1109
1110 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
1111
1112         * lyxfunc.C (dispatch): small fix to toc navigation inside branches
1113
1114 2003-10-27  André Pönitz  <poenitz@gmx.net>
1115
1116         * lfuns.h: new LFUN_REPEAT, LFUN_INSERT_LINE, LFUN_INSERT_PAGEBREAK
1117
1118         * factory.C: handle new InsetPagebreak, InsetLine
1119
1120         * ParagraphParameters.h: remove [line|pagebreak]_[above|below]
1121         and move handling into new InsetPagebreak, InsetLine
1122
1123         * BufferView_pimpl.C:
1124         * LyXAction.C:
1125         * ParagraphParameters.C:
1126         * ParameterStruct.h:
1127         * lyxfunc.C:
1128         * lyxtext.h:
1129         * paragraph.C:
1130         * paragraph.h:
1131         * paragraph_funcs.C:
1132         * paragraph_pimpl.C:
1133         * rowpainter.C:
1134         * text.C:
1135         * text2.C:
1136         * text3.C: adjust
1137
1138 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
1139
1140         * text.C:
1141         * lyxrow_funcs.[Ch]:
1142         * Bidi.C:
1143         * paragraph.C:
1144         * lyxtext.h:
1145         * rowpainter.C:
1146         * text2.C:
1147         * text3.C: remove lastPos uses in favour of Row::endpos
1148
1149 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
1150
1151         * undo.C (performUndoOrRedo): fix two crashes by setting a
1152         cursor by hand and reordering some calls. Use bv->lockInset instead
1153         of inset->edit because the latter loses cursor information
1154
1155 2003-10-25  Alfredo Braunstein  <abraunst@libero.it>
1156
1157         * text.C (prepareToPrint): fix linebreak rowbreaking as suggested
1158         by Martin
1159         (rowBreakPoint): fix width. change point to point + 1.
1160         Add a missing check.
1161
1162 2003-10-25  Martin Vermeer  <martin.vermeer@hut.fi>
1163
1164         * MenuBackend.C:
1165         * lyxfunc.C: fix (at least partly) the problems
1166         with the Nav menu and headers inside branch insets
1167         reported by Kayvan
1168
1169 2003-10-24  Alfredo Braunstein  <abraunst@libero.it>
1170
1171         * paragraph.C (getChar): add strong asserts
1172
1173         * lyxrow_funcs.C (lastPos): remove hideous hack
1174
1175         * text.C (addressBreakPoint, rowBreakPoint): put endpos in place
1176         (fill): adjust to that (avoid an infinite loop)
1177
1178 2003-10-23  Alfredo Braunstein  <abraunst@libero.it>
1179
1180         * text3.C (cursorPrevious, cursorNext): fix 2 "dontlikes"
1181
1182 2003-10-23  André Pönitz  <poenitz@gmx.net>
1183
1184         * RowList_fwd.h: change list<> to vector<> to gain speed
1185         after suggestion from Alfredo
1186
1187 2003-10-23  Alfredo Braunstein  <abraunst@libero.it>
1188
1189         * lyxtext.h: move the bidi stuff from here...
1190         * text.C: and here
1191         * text2.C: and here
1192         * Bidi.[Ch]: ... to here
1193
1194 2003-10-23  André Pönitz  <poenitz@gmx.net>
1195
1196         * lyxtext.h:
1197         * text.C (isLastRow, isFirstRow): new functions
1198
1199         * paragraph.h: new width cache member
1200
1201         * rowpainter.C: replace RowList::iterator with Row & where possible
1202
1203         * lyxfunc.C: replace several view()->text with a single call
1204
1205         * toc.C: fix 'unused' warning
1206
1207 2003-10-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
1208
1209         * lyxlex_pimpl.C (setFile,setStream): be sure to use correct types
1210         when woring with stream::pos_type
1211         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto
1212
1213 2003-10-22  André Pönitz  <poenitz@gmx.net>
1214
1215         * lyxtext.h:
1216         * text.C: use Row & instead of RowList::iterator
1217
1218         * lyxrow.h: rename end() to endpos()
1219
1220         * rowpainter.C:
1221         * text.C:
1222         * text2.C: adjust
1223
1224 2003-10-22  Angus Leeming  <leeming@lyx.org>
1225
1226         * buffer.[Ch] (fully_loaded): new member function, returning true
1227         only when the file has been loaded fully.
1228         Used to prevent the premature generation of previews and by the
1229         citation inset to prevent computation of the natbib-style label.
1230
1231         * buffer_funcs.C (newFile): set Buffer::fully_loaded once the
1232         templates are all set up.
1233
1234         * factory.C (createInset): remove call to InsetCitation::setLoadingBuffer.
1235
1236 2003-10-22  Martin Vermeer  <martin.vermeer@hut.fi>
1237
1238         * text.C: fixed an "oops" in the "is a bit silly"
1239         bug fix
1240
1241 2003-10-21  André Pönitz  <poenitz@gmx.net>
1242
1243         * FuncStatus.[Ch]: small stuff, whitespace
1244
1245         * lyxfont.[Ch]: operator<<() for debug reasons
1246
1247         * lyxfunc.C:
1248         * lyxrow_funcs.C:
1249         * lyxtext.h: whitespace, spelling
1250
1251         * paragraph.C: naming of variables
1252
1253         * text.C:
1254         * text2.C: small stuff
1255
1256
1257 2003-10-21  Martin Vermeer  <martin.vermeer@hut.fi>
1258
1259         * text.C: (1) finish off the inset display() work;
1260         (2) fix the "is a bit silly" bug (accessing char
1261         past end of par).
1262
1263 2003-10-20  Martin Vermeer  <martin.vermeer@hut.fi>
1264
1265         * text.C: re-introduce display() for insets, fixing the
1266         various bugs (stretch of line above, math inset
1267         positioning, ...)
1268
1269 2003-10-20  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1270
1271         * text.C (rightMargin): remove spurious semicolon
1272
1273         * lengthcommon.C: add empty unit_name* entries for UNIT_NONE (bug
1274         1415)
1275
1276 2003-10-18  Martin Vermeer  <martin.vermeer@hut.fi>
1277
1278         * text3.C: fix one crash due to wrong cursor def
1279
1280 2003-10-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
1281
1282         * vc-backend.C (scanMaster): make the regex static
1283
1284         * LaTeX.C (scanAuxFile): make the regexs static
1285
1286         * text3.C (doInsertInset, dispatch, dispatch):
1287         * text2.C (cursorUp, cursorDown):
1288         * text.C (selectNextWordToSpellcheck):
1289         * BufferView_pimpl.C (dispatch):
1290         * lyxfunc.C (dispatch):  localDispatch -> dispatch
1291
1292 2003-10-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1293
1294         * lyxsocket.C: include <cerrno>
1295
1296 2003-10-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
1297
1298         * lyxfunc.C (dispatch): remove textcache stuff
1299
1300         * bufferlist.C (release): remove textcache stuff
1301         (closeAll): ditto
1302
1303         * TextCache.C: delete file
1304         * TextCache.h: delete file
1305
1306         * Makefile.am (lyx_SOURCES): delete TextCache.C and TextCache.h
1307
1308         * BufferView_pimpl.C (buffer): remove textcache stuff, add a
1309         delete of the bv_->text.
1310         (resizeCurrentBuffer): remove texcache stuff
1311         (workAreaResize): ditto
1312
1313 2003-10-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
1314
1315         * lyxfunc.C (getStatus): also set flag disabled if it is a unknown
1316         action.
1317
1318 2003-10-16  André Pönitz  <poenitz@gmx.net>
1319
1320         * lyxrow.[Ch]:
1321         * paragraph.h:
1322         * rowpainter.C:
1323         * text.C:
1324         * text2.C:
1325         * text3.C: speed up by storing y positions per paragraph plus per-row
1326         offset instead of having a 'full' y position in the row.
1327
1328 2003-10-15  André Pönitz  <poenitz@gmx.net>
1329
1330         * iterators.[Ch]:
1331         * iterators.[Ch]:
1332         * undo.[Ch]: make undo aware of inner insets
1333
1334 2003-10-14  Angus Leeming  <leeming@lyx.org>
1335
1336         * lyx_main.[Ch]: make LyX a singleton class, accessible though the new
1337         static member functions LyX::ref() and LyX::cref.
1338         (lastfiles): new accessor functions for the new lastfiles_ member var.
1339         (addLyXView, views_): add a new LyXView to the list of views_.
1340         (updateInset): loop over all LyXViews to call their own updateInset
1341         member function, returning a pointer to the Buffer owning the inset.
1342
1343         * BufferView_pimpl.C (loadLyXFile):
1344         * MenuBackend.C (expandLastfiles):
1345         * bufferlist.C (MenuWrite, QuitLyX):
1346         lastfiles is no longer a global variable.
1347         Access through LyX::ref().lastfiles(), LyX::cref().lastfiles().
1348
1349         * boost.C (emergencyCleanup): LyX::emergencyCleanup is no longer a
1350         static function. Access through LyX::cref().emergencyCleanup().
1351
1352 2003-10-14  André Pönitz  <poenitz@gmx.net>
1353
1354         * iterators.[Ch]: new direct access to innermost LyXText and Inset
1355
1356         * undo.[Ch]: restoring part of 'undo in insets'
1357
1358         * Makefile.am:
1359         * undo_funcs.[Ch]: merge with undo.[Ch]
1360
1361         * tabular.C: small cleansing stuff
1362
1363 2003-10-14  Alfredo Braunstein  <abraunst@libero.it>
1364
1365         * paragraph_funcs.C (readParToken): report unknown insets as error
1366         boxes. Use the outer paragraph as location (also for unknown
1367         tokens).
1368
1369         * factory.C (readInset): do not abort on reading an unknown inset.
1370         Eat it and return 0.
1371
1372 2003-10-13  Angus Leeming  <leeming@lyx.org>
1373
1374         * lyx_main.C (LyX): remove call to setDisplayTranslator().
1375
1376         * lyxrc.C: displayTranslator is now a function,
1377         declared in GraphicsTypes.h.
1378
1379 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
1380
1381         * format.C: new placeholder $$a to pass the socket address.
1382
1383         * bufferlist.[Ch]: new function getBufferFromTmp.
1384
1385         * lyxfunc.C: Modification of LFUN_GOTOFILEROW so that it can handle
1386           files in the temporary dir.
1387
1388 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
1389
1390         * lyxsocket.[Ch]: new files. A simple local socket interface for lyx.
1391
1392         * Makefile.am: add lyxsocket.[Ch].
1393
1394         * lyx_main.C (error_handler): handle SIGPIPE.
1395
1396 2003-10-13  André Pönitz  <poenitz@gmx.net>
1397
1398         * BufferView_pimpl.C:
1399         * lyxtext.h:
1400         * text.C:
1401         * text2.C:
1402         * text3.C:
1403         * undo_funcs.[Ch]: use paroffset_type instead of
1404           ParagraphList::iterators to prevent multiple conversion
1405           (and get a more robust interface)
1406
1407 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
1408
1409         * lyxfunc.C (dispatch): RESULT -> dispatch_result
1410         * lyxtext.h: ditto
1411         * text3.C (dispatch): ditto
1412
1413 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
1414
1415         * LaTeX.C (handleFoundFile): move the static to smaller scope,
1416         move the onlyfile, use onlyfile instead of foundfile in a couple
1417         of places.
1418
1419         * DepTable.C (update): flush the error stream a bit more
1420
1421 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
1422
1423         * lyxserver.C (callback): adjust
1424
1425         * lyxfunc.C (getStatus): add a missing brace in commented code
1426         (ensureBufferClean): reindent
1427         (dispatch): delete version taking a string
1428
1429 2003-10-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
1430
1431         * LaTeX.C (deplog): move found file handlig from here...
1432         (handleFoundFile): .. to new function here.
1433         (deplog): make sure to discover several files mentioned on the
1434         same log line.
1435
1436 2003-10-10  André Pönitz  <poenitz@gmx.net>
1437
1438         * lyxfunc.C:
1439         * lyxtext.h:
1440         * tabular.C:
1441         * text.C:
1442         * text2.C:
1443         * text3.C: fix some of the tabular crashes
1444
1445 2003-10-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
1446
1447         * MenuBackend.C (binding): put debug message into Debug::KBMAP
1448
1449         * lyxlex_pimpl.C (setFile): put debug messages into Debug::LYXLEX.
1450
1451 2003-10-09  André Pönitz  <poenitz@gmx.net>
1452
1453         * lyxcursor.h: use paroffset_type instead of ParagraphList::iterator
1454
1455         * BufferView.C:
1456         * BufferView_pimpl.C:
1457         * bufferview_funcs.C:
1458         * lyx_cb.C:
1459         * lyxcursor.C:
1460         * lyxfind.C:
1461         * lyxfunc.C:
1462         * lyxtext.h:
1463         * text.C:
1464         * text2.C:
1465         * text3.C:
1466         * text_funcs.[Ch]:
1467         * textcursor.[Ch]:
1468         * undo_funcs.C: adjust
1469
1470 2003-10-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
1471
1472         * text2.C (incrementItemDepth): new function, use a backtracking
1473         algorithm to discover the correct item depth.
1474         (resetEnumCounterIfNeeded): new function, use a backtracking
1475         algorithm to discover if counter reset is needed.
1476         (setCounter): use them. Simplify a bit. Add different labels for
1477         different item depths for itemize.
1478
1479         * paragraph.C (Paragraph): remove initialization of enumdepth
1480         (operator=): ditto
1481
1482         * paragraph.h: get rid of enumdepth, and use itemdepth both for
1483         enumerate and itemize. Change the type of itemdepth to signed char.
1484
1485 2003-10-08  André Pönitz  <poenitz@gmx.net>
1486
1487         * lyxtext.h: make the paragraphs_ a pointer instead a ref to make the
1488           thing assignable.
1489         * text.C:
1490         * text2.C: adjust
1491
1492         * tabular.[Ch]: fix crash after 'row-insert'
1493
1494 2003-10-08  Angus Leeming  <leeming@lyx.org>
1495
1496         Fix doxygen warnings.
1497
1498         * CutAndPaste.[Ch] (availableSelections). Now returns a const vector.
1499         Remove CutAndPaste:: prefix from header file declaration.
1500
1501         * LColor.h (fill): remove LColor:: prefix from declaration.
1502
1503         * buffer.C (readParagraph, simpleLinuxDocOnePar, simpleDocBookOnePar):
1504         use lyx::depth_type rather than Paragraph::depth_type so that
1505         header file and .C file match.
1506
1507         * converter.h (intToFormat): remove Converters:: prefix from declaration.
1508
1509         * Spacing.h: \file Spacing.h -> \file src/Spacing.h
1510         * aspell.C: \file aspell_local.C -> \file aspell.C
1511         * gettext.C: \file gettext.C -> \file src/gettext.C
1512         * gettext.h: \file gettext.h -> \file src/gettext.h
1513         * lyxfont.C: \file lyxfont.C -> \file src/lyxfont.C
1514         * lyxfont.h: \file lyxfont.h -> \file src/lyxfont.h
1515         * text.C: \file text.C -> \file src/text.C
1516
1517         * toc.C: move comment so that doxygen is not confused.
1518
1519 2003-10-07  Angus Leeming  <leeming@lyx.org>
1520
1521         * factory.C (createInset): InsetExternal::Params -> InsetExternalParams
1522
1523 2003-10-07  Jürgen Spitzmüller <j.spitzmueller@gmx.de>
1524
1525         * aspell.C:
1526         * aspell_local.h: add forgotten std::string's.
1527
1528 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
1529
1530         * LaTeXFeatures.C:
1531         * LyXAction.C:
1532         * factory.C:
1533         * lfuns.h:
1534         * lyxfunc.C:
1535         * text3.C: The Box patch. Fancybox support, minipage, parbox
1536
1537 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
1538
1539         * CutAndPaste.h:
1540         * DepTable.h:
1541         * FloatList.h:
1542         * LaTeXFeatures.h:
1543         * ParagraphParameters.h:
1544         * TextCache.h:
1545         * Thesaurus.h:
1546         * bufferlist.h:
1547         * exporter.h:
1548         * importer.h:
1549         * lastfiles.h:
1550         * lyxfind.h:
1551         * lyxfont.h:
1552         * lyxlex.h:
1553         * lyxtextclasslist.h:
1554         * messages.h:
1555         * paragraph.h:
1556         * paragraph_pimpl.C:
1557         * textcursor.h: add <string> and other small fixes to make Lars'
1558         std::string patch compile with STLport.
1559
1560 2003-10-06  Angus Leeming  <leeming@lyx.org>
1561
1562         * LColor.h: Add missing #include <string>.
1563
1564 2003-10-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
1565
1566         * All most all file in all subdirs: Make <string> be the prefered
1567         way of getting to std::string, add using declarations.
1568
1569 2003-10-06  André Pönitz  <poenitz@gmx.net>
1570
1571         * metricsinfo.C: initialize LyXFont before changing attribute.
1572         (fixes the 'math in \emph is upright' bug)
1573
1574 2003-10-06  André Pönitz  <poenitz@gmx.net>
1575
1576         * tabular.[Ch]: saner reinitialization, ret rid of LyXTabular::owner_
1577
1578 2003-10-06  Martin Vermeer  <martin.vermeer@hut.fi>
1579
1580         * graph.C:
1581         * paragraph_pimpl.C: Small fixes to build using STLport
1582
1583 2003-10-02  André Pönitz  <poenitz@gmx.net>
1584
1585         * lyxfunc.C:
1586         * text3.C: move handling of LFUN_DEPTH *; fix #1360
1587
1588 2003-10-01  André Pönitz  <poenitz@gmx.net>
1589
1590         * factory.C: assert early
1591
1592 2003-09-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
1593
1594         * lyx_main.C: remove the global debug object
1595
1596         * debug.h: adjust for new debugstream
1597
1598         * debug.C: adjust for new debugstream and keep the global debug
1599         object here.
1600
1601 2003-09-22  Angus Leeming  <leeming@lyx.org>
1602
1603         * paragraph_pimpl.h: add #include "lyxfont.h". Needed by earlier versions
1604         of g++ which otherwise complain that the scoped_ptr destructor can't delete
1605         an incomplete class LyXFont.
1606
1607 2003-09-22  Martin Vermeer  <martin.vermeer@hut.fi>
1608
1609         * factory.C: bug fix in branches
1610
1611 2003-09-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
1612
1613         * lyxfunc.C (processKeySym): adjust
1614         (dispatch): adjust
1615         (dispatch): change arg name from ev to func, adjust
1616         (sendDispatchMessage): ditto
1617
1618         * lyx_main.C (defaultKeyBindings): adjust keybindings
1619         (deadKeyBindings): ditto
1620
1621         * kbsequence.C (addkey): return a FuncRequest
1622
1623         * kbmap.h (kb_key): struct var FuncRequest instead of int action.
1624
1625         * kbmap.C (bind): take a FuncRequest as arg, adjust
1626         (read): adjust
1627         (lookup): adjust
1628         (defkey): change to take a FuncRequest as arg, adjust
1629         (findbinding): take a FuncRequest as arg, adjust.
1630
1631         * funcrequest.h (operator=): added
1632
1633         * funcrequest.C (FuncRequest): default kb_action changed from
1634         LFUN_UNKNOWN_ACTION to LFUN_NO_ACTION
1635
1636         * buffer.C (dispatch): simplify
1637         (dispatch): adjust to take a FuncRequest as arg, adjust
1638
1639         * boost.C (assertion_failed): change assertion message slightly
1640
1641         * ToolbarBackend.C (read): simplify
1642
1643         * MenuBackend.C (binding): adjust call to findbinding, add a
1644         message if no binding is found.
1645         (read): simplify
1646         (expandToc): correct by adding a empty FuncRequest
1647
1648         * LyXAction.C: include <boost/assert.hpp>
1649         (isPseudoAction): delete function
1650         (LookupFunc): change name to...
1651         (lookupFunc): this. change return type to FuncRequest.
1652         (getActionName): take kb_action as arg, simplify
1653         (funcHasFlag): add an assert, simplify.
1654
1655 2003-09-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
1656
1657         * toc.C (action): return a FuncRequest, simplify
1658
1659         * lyxfunc.C (processKeySym): adjust
1660         (getStatus): delete version that takes an int.
1661         (getStatus): adjust
1662         (dispatch): delete version that takes action as int
1663         (dispatch): adjust
1664         (sendDispatchMessage): simplify and adjust
1665
1666         * funcrequest.C (getArg): take unsigned int as arg
1667
1668         * ToolbarBackend.C (read): adjust
1669         (add): delete version that takes func as a string.
1670         (getIton): take a FuncRequest as arg
1671
1672         * MenuBackend.h (MenuItem): store a FuncRequest instead of an int
1673         action.
1674
1675         * MenuBackend.C (MenuItem): add a new construct that only takes a
1676         Kind, simplify the constructor use for submenus.
1677         (add): adjust
1678         (expandLastfiles): adjust
1679         (expandDocuments): adjust
1680         (expandFormats): adjust
1681         (expandFloatListInsert): adjust
1682         (expandFloatInsert): adjust
1683         (expandToc2,expandToc,expandPasteRecent,expandBranches): adjust
1684
1685         * LyXAction.h: remove typdefs pseudo_map, arg_item and arg_map.
1686         Remove class variables lyx_pseudo_map and lyx_arg_map
1687
1688         * LyXAction.C (searchActionArg): delete function
1689         (getPseudoAction): delete function
1690         (retrieveActionArg): delete function
1691         (LookupFunc): make it return kb_action, simplify.
1692         (getActionName): simplify
1693
1694         * factory.C (createInset): fix new bug
1695
1696 2003-09-19  Angus Leeming  <leeming@lyx.org>
1697
1698         * CutAndPaste.C (pasteSelection): remove fudge used to set the
1699         masterFilename_ parameter in the include inset.
1700
1701         * factory.C (createInset): changes due to the changes to InsetInclude.
1702
1703 2003-09-19  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1704
1705         * paragraph.C: use appropriate alignment tags inside floats (bug 1290)
1706
1707 2003-09-18  Angus Leeming  <leeming@lyx.org>
1708
1709         * buffer.C:
1710         * BufferView.C: pass the buffer when calling Inset::getLabelList,
1711         Inset::fillWithBibKeys.
1712         * tabular.[Ch] (getLabelList): receive, pass on a Buffer const & arg.
1713
1714 2003-09-18  Angus Leeming  <leeming@lyx.org>
1715
1716         * LaTeXFeatures.[Ch]: append a '_' to the names of all private member
1717         variables.
1718         (ctor): pass and store a 'Buffer const &'
1719         (buffer): new member function.
1720
1721         * buffer.C (makeDocBookFile, makeLinuxDocFile, makeLaTeXFile): pass
1722         '*this' to the LaTeXFeatures ctor.
1723
1724 2003-09-18  Angus Leeming  <leeming@lyx.org>
1725
1726         * LColor.h:
1727         * lyxfont.C:
1728         * lyxfont.h:
1729         * lyxtext.h:
1730         * text.C: rename EnumLColor as LColor_color.
1731
1732 2003-09-18  Angus Leeming  <leeming@lyx.org>
1733
1734         * cursor.[Ch]: use the dispatch_result wrapper class DispatchResult to
1735         remove #include "insets/insetbase.h" from cursor.h.
1736
1737 2003-09-18  Angus Leeming  <leeming@lyx.org>
1738
1739         * paragraph.[Ch] (insetAllowed): use the InsetOld::Code wrapper class
1740         InsetOld_code to remove #include "inset.h".
1741
1742         * iterators.C: add #include "insets/inset.h"
1743
1744 2003-09-16  Martin Vermeer  <martin.vermeer@hut.fi>
1745
1746         * BufferView.C: remove more locking stuff that apparently doesn't
1747         do anything sensible.
1748
1749 2003-09-16  André Pönitz  <poenitz@gmx.net>
1750
1751         * paragraph.[Ch]:
1752         * paragraph_pimpl.[Ch]: un-pimpl Paragraph::(Pimpl::)text for a >10%
1753           performance boost.
1754
1755 2003-09-16  Angus Leeming  <leeming@lyx.org>
1756
1757         * lyxfont.h (LyXFont_size): a wrapper class for LyXFont::FONT_SIZE.
1758
1759         * paragraph.[Ch] (highestFontInRange): use LyXFont_size as function
1760         arg/return type.
1761
1762         * paragraph.h: remove #include "lyxfont.h". Forward declare
1763         LyXFont_size.
1764
1765 2003-09-16  Angus Leeming  <leeming@lyx.org>
1766
1767         * paragraph.C (IsInsetChar): new function in namespace anon, moved out
1768         of support/textutils.h.
1769         (isWord): move the contents of support/textutils.h's IsWordChar here.
1770
1771         * buffer.C:
1772         * lyxfind.C:
1773         * rowpainter.C:
1774         * text.C:
1775         * text2.C: add #include "paragraph.h".
1776
1777         * rowpainter.C:
1778         * text.C: replace IsInsetChar(c) with a direct test of Paragraph::META_INSET.
1779
1780 2003-09-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
1781
1782         * main.C:
1783         * lyx_main.C:
1784         * lyx_cb.C:
1785         * buffer.C:
1786         * LaTeX.C: use namespace alias for lyx::support::os
1787
1788 2003-09-16  Angus Leeming  <leeming@lyx.org>
1789
1790         * bufferparams.C:
1791         * bufferview_funcs.C:
1792         * factory.C:
1793         * lyxfunc.C:
1794         * paragraph_pimpl.C:
1795         * rowpainter.C:
1796         * text.C: add #include "LColor.h".
1797
1798 2003-09-16  Angus Leeming  <leeming@lyx.org>
1799
1800         * lyxfont.[Ch]: (setFamily, setSeries, setShape, setSize, setEmph,
1801         setUnderbar, setNoun, setNumber, setColor, setLanguage): no longer
1802         return LyXFont &.
1803         Store the FontBits::color variable as an int rather than as an
1804         LColor::colorso that we can move LColor.h out of the lyxfont.h header
1805         file.
1806
1807         * rowpainter.C (paintAppendixStart, paintPageBreak, paintLengthMarker):
1808         LyXFont::setColor, decSize no longer return a LyXFont &, so cannot
1809         string calls together.
1810
1811         * lyxrc.C: add #include "LColor.h".
1812
1813 2003-09-15  Angus Leeming  <leeming@lyx.org>
1814
1815         * bufferparams.[Ch]: store the pimpl_ as a copied_ptr, rather than as
1816         a cow_ptr.
1817
1818 2003-09-15  Angus Leeming  <leeming@lyx.org>
1819
1820         * LColor.h: add an EnumLColor wrapper for LColor::color.
1821
1822         * lyxfont.[Ch] (color, setColor, realColor):
1823         * lyxtext.h, text.C (backgroundColor):
1824         pass EnumLColor args to/from the functions, rather than LColor::color
1825         ones.
1826
1827         * lyxfont.h:
1828         * lyxtext.h: forward declare EnumLColor.
1829
1830         * lyx_main.C: add #include "LColor.h".
1831
1832 2003-09-15  Angus Leeming  <leeming@lyx.org>
1833
1834         * .cvsignore: add lyx-gtk.
1835
1836 2003-09-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
1837
1838         * Chktex.C
1839         * LaTeX.C
1840         * LaTeXFeatures.C
1841         * ParagraphParameters.C
1842         * Spacing.C
1843         * buffer.C
1844         * bufferparams.C
1845         * bufferview_funcs.C
1846         * chset.C
1847         * counters.C
1848         * funcrequest.C
1849         * lyxfont.C
1850         * lyxgluelength.C
1851         * lyxlength.C
1852         * paragraph.C
1853         * paragraph_funcs.C
1854         * text3.C
1855         * vc-backend.C: remove usage of STRCONV
1856
1857 2003-09-15  Angus Leeming  <leeming@lyx.org>
1858
1859         * rowpainter.C (paintLengthMarker, paintPageBreak, paintAppendixStart):
1860         explicitly define the color passed to the painter.
1861
1862 2003-09-15  Angus Leeming  <leeming@lyx.org>
1863
1864         * bufferparams.C (BufferParams): reorder member initializers to avoid
1865         compiler warning.
1866
1867 2003-09-15  Alfredo Braunstein  <abraunst@libero.it>
1868
1869         * CutAndPaste.C (pasteSelection): remove an outdated #warning
1870         * text.C (updateRowPositions): remove an unusual nop
1871
1872 2003-09-12  André Pönitz  <poenitz@gmx.net>
1873
1874         * BufferView_pimpl.C:
1875         * Bullet.C:
1876         * layout.h:
1877         * lyxfunc.C:
1878         * lyxlayout.[Ch]:
1879         * lyxtextclass.C:
1880         * rowpainter.C:
1881         * text.C:
1882         * text2.C:
1883         * Counters.[Ch]: finish the 'automatic counters' job
1884
1885 2003-09-12  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1886
1887         * aspell.C: include <boost/assert.cpp> (compile fix)
1888
1889 2003-09-10  Rob Lahaye  <lahaye@snu.ac.kr>
1890
1891         * boost.C (assertion_failed): use lyx::support::abort instead of
1892         assert.
1893
1894 2003-09-10  Angus Leeming  <leeming@lyx.org>
1895
1896         * Makefile.am (lyx_SOURCES): replace ParagraphList.h and RowList.h
1897         with their _fwd progeny.
1898
1899 2003-09-09  Angus Leeming  <leeming@lyx.org>
1900
1901         134 files throughtout the source tree: replace 'using namespace abc;'
1902         directives with the appropriate 'using abc::xyz;' declarations.
1903
1904 2003-09-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
1905
1906         * boost.C (emergencyCleanup): moved here from LAssert.c
1907         (assertion_failed): new function, called by BOOST_ASSERT
1908
1909         * several files: change Assert to BOOST_ASSERT
1910
1911 2003-09-09  Angus Leeming  <leeming@lyx.org>
1912
1913         * buffer.[Ch]: Add an Impl class and move Buffer's member
1914         variables into it. As a result move several header files out of
1915         buffer.h.
1916
1917         Add header files to lots of .C files all over the tree as a result.
1918
1919 2003-09-09  Angus Leeming  <leeming@lyx.org>
1920
1921         * buffer.[Ch]: make Buffer's member variables private. Add
1922         accessor functions.
1923
1924         Lots of changes all over the tree as a result.
1925
1926 2003-09-08  Angus Leeming  <leeming@lyx.org>
1927
1928         * graph.C: #include <config.h>.
1929
1930 2003-09-08  Angus Leeming  <leeming@lyx.org>
1931
1932         * BranchList.C:
1933         * BufferView.C:
1934         * BufferView_pimpl.C:
1935         * CutAndPaste.C:
1936         * DepTable.C:
1937         * LaTeX.C:
1938         * LaTeXFeatures.C:
1939         * LyXAction.C:
1940         * MenuBackend.C:
1941         * TextCache.C:
1942         * aspell.C:
1943         * buffer.C:
1944         * bufferlist.C:
1945         * changes.C:
1946         * chset.C:
1947         * converter.C:
1948         * counters.C:
1949         * debug.C:
1950         * graph.C:
1951         * ispell.C:
1952         * lyx_cb.C:
1953         * lyxfind.C:
1954         * lyxfunc.C:
1955         * lyxlex_pimpl.C:
1956         * lyxrc.C:
1957         * lyxrow.C:
1958         * paragraph.C:
1959         * rowpainter.C:
1960         * texrow.C:
1961         * text.C:
1962         * text2.C:
1963         * toc.C: remove redundant using directives.
1964
1965 2003-09-07  Angus Leeming  <leeming@lyx.org>
1966
1967         * LaTeXFeatures.h: remove #include "support/types.h".
1968         * ToolbarBackend.h: remove #include <algorithm>.
1969         * changes.h: remove #include <ctime>.
1970         * debug.h: remove #include <iosfwd>.
1971         * graph.h: remove #include "support/std_string.h".
1972         * lyx_main.h: remove #include <csignal>.
1973         * lyxlex_pimpl.h: remove #include <fstream>.
1974         * sgml.h: remove #include <algorithm>, <utility>.
1975         * toc.h: remove #include "support/std_ostream.h".
1976         Add #include <iosfwd>.
1977
1978 2003-09-07  Angus Leeming  <leeming@lyx.org>
1979
1980         * vspace.[Ch] (length): returns a const & to a LyXGlueLength.
1981
1982         * converter.h: forward declare LatexRunParams.
1983         * encoding.h: remove #include "lyxrc.h".
1984         * lyxtext.h: remove #include "LColor.h".
1985         * lyxtextclass.h: remove #include "support/types.h".
1986         * trans.h: remove #include "tex-accent.h".
1987         * trans_mgr.h: remove #include "tex-accent.h".
1988         * insets/inset.h: remove #include "support/types.h", <vector>.
1989         * insets/insetcollapsable.h: remove #include "LColor.h".
1990         * insets/insetinclude.h: remove #include "dimension.h".
1991         * insets/insetlatexaccent.h: remove #include "dimension.h".
1992         * insets/insetoptarg.h:: remove #include "insettext.h".
1993         * insets/insettext.h: remove #include "dimension.h",
1994         <boost/shared_ptr.hpp>
1995
1996         * insets/renderers.h: add #include "dimension.h".
1997         * insets/updatableinset.h: add #include "support/types.h".
1998
1999         * many .C files: Associated changes.
2000
2001 2003-09-06  Angus Leeming  <leeming@lyx.org>
2002
2003         * Bullet.[Ch]: factorize all those #ifdef ENABLE_ASSERTIONS to just
2004         one, inside testInvariant.
2005
2006         * PrinterParams.C: new file.
2007         * PrinterParams.[Ch]: move the function bodies out of line.
2008
2009 2003-09-06  Angus Leeming  <leeming@lyx.org>
2010
2011         * ParagraphParameters.h: forward declare ParameterStruct rather than
2012         including its header file.
2013         (depth): moved out-of-line.
2014
2015 2003-09-06  Angus Leeming  <leeming@lyx.org>
2016
2017         * BufferView_pimpl.h:
2018         * kbmap.h:
2019         * kbsequence.h:
2020         * lyxfunc.h: forward declare LyXKeySym rather than
2021         #include "frontends/LyXKeySym.h".
2022
2023         * BufferView_pimpl.C:
2024         * kbmap.C:
2025         * kbsequence.C:
2026         * lyxfunc.C: associated changes.
2027
2028 2003-09-06  Angus Leeming  <leeming@lyx.org>
2029
2030         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
2031         As a result, can remove the #include "insets/inset.h" from BufferView.h
2032
2033 2003-09-06  Angus Leeming  <leeming@lyx.org>
2034
2035         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
2036         As a result, can remove the #include "insets/inset.h" from BufferView.h
2037
2038 2003-09-06  Angus Leeming  <leeming@lyx.org>
2039
2040         * buffer_funcs.C:
2041         * buffer.h:
2042         * bufferlist.C:
2043         * BufferView.C:
2044         * bufferview_funcs.C:
2045         * BufferView_pimpl.C:
2046         * CutAndPaste.C:
2047         * lyx_cb.C:
2048         * lyxfunc.C:
2049         * paragraph.h:
2050         * ParagraphParameters.C:
2051         * tabular.C:
2052         * text3.C:
2053         * toc.C:
2054         * undo_funcs.C:
2055         * frontends/controllers/ControlDocument.C:
2056         * insets/insetcaption.C: rearrange the #includes into some sort of
2057         coherent order.
2058
2059         * buffer.h: remove #includes ErrorList.h, undo.h
2060
2061 2003-09-06  Angus Leeming  <leeming@lyx.org>
2062
2063         * support/types.h: add a 'depth_type' typedef, used to store the
2064         nesting depth of a paragraph.
2065
2066         * paragraph.h:
2067         * ParameterStruct.h: use this lyx::depth_type typedef rather than
2068         defining explicitly.
2069
2070         * buffer.h:
2071         * paragraph_funcs.h:
2072         * ParagraphParameters.h:
2073         * sgml.h: use lyx::depth_type rather than Paragraph or
2074         ParameterStruct's depth_type.
2075
2076         * buffer.h
2077         * paragraph_funcs.h: no need to #include paragraph.h anymore.
2078
2079         * BufferView.C:
2080         * BufferView_pimpl.C:
2081         * CutAndPaste.C:
2082         * ParagraphParameters.C:
2083         * buffer_funcs.C:
2084         * bufferlist.C:
2085         * bufferview_funcs.C:
2086         * lyx_cb.C:
2087         * lyxfunc.C:
2088         * tabular.C:
2089         * text3.C:
2090         * toc.C:
2091         * undo_funcs.C:
2092         * frontends/LyXView.C:
2093         * frontends/controllers/ControlDocument.C:
2094         * frontends/controllers/ControlErrorList.C:
2095         * insets/insetbibitem.C:
2096         * insets/insetbranch.C:
2097         * insets/insetcaption.C:
2098         * insets/insetcollapsable.C:
2099         * insets/insetenv.C:
2100         * insets/insetert.C:
2101         * insets/insetfloat.C:
2102         * insets/insetfoot.C:
2103         * insets/insetfootlike.C:
2104         * insets/insetnewline.C:
2105         * insets/insetquotes.C:
2106         * insets/insettabular.C:
2107         * insets/insettext.C:
2108         * insets/insetwrap.C: must now explicitly #include "paragraph.h".
2109
2110         * frontends/controllers/ControlChanges.C: #include "changes.h".
2111
2112 2003-09-06  Angus Leeming  <leeming@lyx.org>
2113
2114         * ParagraphList_fwd.h: new file, forward-declaring Paragraph rather
2115         than #including paragraph.h.
2116
2117         * ParagraphList.h:
2118         * RowList.h: deleted. Superfluous.
2119
2120         * CutAndPaste.h:
2121         * iterators.h:
2122         * lyxcursor.h:
2123         * lyxtext.h:
2124         * text_funcs.h:
2125         * undo.h:
2126         * undo_funcs.h:
2127         * insets/inset.h:
2128         * insets/insettext.h: use ParagraphList_fwd.h rather than
2129         ParagraphList.h.
2130
2131         * paragraph.h: don't forward declare ParagraphList.
2132
2133         * buffer.h:
2134         * paragraph_funcs.h: #include ParagraphList_fwd.h and paragraph.h
2135         rather than ParagraphList.h. paragraph.h is still needed for the
2136         Paragraph::depth_type parameters.
2137
2138         * textcursor.h: enable it to compile stand-alone in light of the
2139         above changes.
2140
2141         * bufferview_funcs.C:
2142         * iterators.C:
2143         * lyxfunc.C:
2144         * lyxrow_funcs.C:
2145         * paragraph.C:
2146         * rowpainter.C:
2147         * text.C:
2148         * text2.C:
2149         * text3.C:
2150         * text_funcs.C:
2151         * textcursor.C:
2152         * undo.C:
2153         * frontends/controllers/ControlParagraph.C:
2154         * frontends/controllers/ControlTabular.C:
2155         * insets/insetmarginal.C:
2156         * insets/insetminipage.C:
2157         * insets/insetnote.C:
2158         * insets/insetoptarg.C: add header files needed to compile again.
2159
2160 2003-09-06  Angus Leeming  <leeming@lyx.org>
2161
2162         * RowList_fwd.h: new file, forward-declaring Row rather than
2163         #including lyxrow.h.
2164
2165         * lyxrow_funcs.h:
2166         * lyxtext.h:
2167         * paragraph.h:
2168         * insets/insettext.h: use it instead of RowList.h
2169
2170         * bufferview_funcs.C:
2171         * lyxfunc.C:
2172         * lyxrow_funcs.C:
2173         * paragraph.C:
2174         * rowpainter.C:
2175         * text.C:
2176         * text2.C:
2177         * text3.C: #include "RowList.h".
2178
2179 2003-09-05  Angus Leeming  <leeming@lyx.org>
2180
2181         * factory.C (createInset):
2182         * vspace.C (c-tor): replace sscanf call with an istringstream.
2183         * ispell.C: re-add missing HP/UX headers.
2184         * lyxserver.C: re-add missing  os2 headers.
2185
2186 2003-09-05  Martin Vermeer  <martin.vermeer@hut.fi>
2187
2188         * BranchList.C:
2189         * graph.C:
2190         * ispell.C:
2191         * lastfiles.C:
2192         * lyx_cb.C:
2193         * lyxserver.C:
2194         * texrow.C:
2195         * text3.C: re-add missing system headers, needed for 2.95.2.
2196
2197 2003-09-05  Angus Leeming  <leeming@lyx.org>
2198
2199         Changes most place everywhere due to the removal of using directives
2200         from support/std_sstream.h.
2201
2202 2003-09-05  Angus Leeming  <leeming@lyx.org>
2203
2204         Replace LString.h with support/std_string.h,
2205         Lsstream.h with support/std_sstream.h,
2206         support/LIstream.h with support/std_istream.h,
2207         support/LOstream.h with support/std_ostream.h.
2208
2209         Changes resulting throughout the tree.
2210
2211 2003-09-05  Angus Leeming  <leeming@lyx.org>
2212
2213         * sgml.h: ensure that the header file can be compiled stand-alone.
2214         * *.C: strip out redundant #includes. (320 in total.)
2215
2216 2003-09-04  Angus Leeming  <leeming@lyx.org>
2217
2218         * LaTeXFeatures.C (getMacros): move the output of the preamble_snippets
2219         here (from getPackages).
2220
2221         * debug.[Ch]: add a new EXTERNAL tag.
2222
2223 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
2224
2225         * text2.C (cursorEnd): simplify
2226         (setCursor): adjust
2227         (getColumnNearX): adjust
2228
2229         * text.C (computeBidiTables): adjust
2230         (fill): adjust
2231
2232         * rowpainter.C (paintChars): adjust
2233         (paintSelection): adjust
2234         (paintChangeBar): adjust
2235         (paintText): adjust
2236
2237         * lyxrow_funcs.C (lastPrintablePos): remove, all users now call
2238         lastPos instead.
2239         (numberOfSeparators): adjust
2240
2241 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
2242
2243         * LyXAction.C:
2244         * box.[Ch]:
2245         * lfuns.h:
2246         * lyxfunc.C:
2247         * text3.C: Restricts the mouse click functionality
2248         of insets like bibtex, include, toc and floatlist to the visible
2249         button, and allows the use of LFUN_INSET_SHOW_DIALOG to bring
2250         up the dialogs. Cursor has to be in front of the inset (i.e.
2251         start of row) for this to function.
2252
2253 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
2254
2255         * bufferview_funcs.C (currentState): output row information
2256
2257 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
2258
2259         * bufferview_funcs.C (currentState): output paragraph position
2260
2261 2003-09-04  Angus Leeming  <leeming@lyx.org>
2262
2263         * FloatList.h: move out #include "Floating.h".
2264         * LaTeX.h: move out #include "DepTable.h".
2265         * LyXAction.h: move out #include "funcrequest.h".
2266         * buffer.h: move out #include "author.h", "iterators.h".
2267         * bufferparams.h: move out #include "LaTeXFeatures.h", "texrow.h".
2268         * lyx_main.h: move out #include "errorlist.h".
2269         * lyxfunc.h: move out #include "FuncStatus.h".
2270         * lyxtext: move out #include "lyxcursor.h".
2271         * paragraph_pimpl.h: move out #include "counters.h".
2272
2273 2003-09-03  Angus Leeming  <leeming@lyx.org>
2274
2275         * LaTeXFeatures.[Ch]: replace the externalPreambles string with a
2276         preamble_snippets list, enabling us to add snippets to the preamble
2277         only if the snippet was not there already.
2278
2279 2003-09-04  Angus Leeming  <leeming@lyx.org>
2280
2281         * Chktex.C, converter.C, lyx_cb.C: add #include "support/lyxlib.h".
2282
2283 2003-09-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
2284
2285         * lyxfunc.C (dispatch): if fitCursor did something be sure to
2286         update
2287
2288 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
2289
2290         * BranchList.C: point fix, earlier forgotten
2291
2292 2003-09-02  Angus Leeming  <leeming@lyx.org>
2293
2294         * box.C (contains): renamed from 'contained' after a fantastic
2295         amount of hot air.
2296
2297 2003-09-02  John Levon  <levon@movementarian.org>
2298
2299         * BufferView.C:
2300         * lyxcursor.h:
2301         * lyxcursor.C:
2302         * lyxfunc.C:
2303         * lyxfunc.h: remove cursor.i[x]y(), it no longer differs
2304
2305 2003-09-02  John Levon  <levon@movementarian.org>
2306
2307         * text2.C: simplification of cursorEnd(), including partial
2308         fix for bug 1376
2309
2310 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2311
2312         * buffer.C (readFile): add a space
2313
2314 2003-09-02  Alfredo Braunstein  <abraunst@libero.it>
2315
2316         * BufferView_pimpl.C (update): remove bogus fitCursor() call
2317
2318 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2319
2320         * buffer.C (readFile): new function, take a filename and a
2321         ParagraphList::iterator
2322         (readFile): adjust
2323         (readFile): adjust, make it private. don't use setStream, make
2324         lyx2lyx use a temporary file. Some simplificaton. Make the Alerts
2325         always contain the filename.
2326
2327         * BufferView.C (insertLyXFile): simplify and make it work for
2328         gzipped files.
2329
2330 2003-08-30  John Levon  <levon@movementarian.org>
2331
2332         * Makefile.am: fix dist (from Kayvan)
2333
2334 2003-08-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2335
2336         * most files: change to use const Buffer refs
2337
2338 2003-08-27  André Pönitz  <poenitz@gmx.net>
2339
2340         * BufferView.[Ch]: remove getParentText, implement getParentLanguage
2341         on top of ownerPar().
2342
2343 2003-08-27  John Levon  <levon@movementarian.org>
2344
2345         * funcrequest.C: properly initialise POD members
2346
2347 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
2348
2349         * lyxtext.h (top_y): move top_y from here
2350         * text.C:
2351         * text2.C:
2352         * text3.C:
2353         * BufferView.[Ch]:
2354         * BufferView_pimpl.[Ch]: to here
2355         * frontends/screen.C:
2356         * insets/insettabular.C:
2357         * insets/insettext.C: adjust
2358         * rowpainter.[Ch] (paintRows): remove LyXText & argument
2359
2360 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
2361
2362         * BufferView.[Ch]:
2363         * BufferView_pimpl.[Ch] (updateInset): add an InsetOld * argument
2364
2365 2003-08-26  André Pönitz  <poenitz@gmx.net>
2366
2367         * paragraph_func.[Ch] (outerPar): new function
2368
2369         * paragraph.C:
2370         * paragraph_funcs.C:
2371         * paragraph_funcs.h:
2372         * paragraph_pimpl.C:
2373         * text2.C: remove Inset::par_owner
2374
2375 2003-08-25  Martin Vermeer  <martin.vermeer@hut.fi>
2376
2377         * lyxrow_funcs.C:
2378         * lyxtext.h:
2379         * text.C:
2380         * text2.C: eliminates the needFullRow/display() stuff
2381         altogether, putting the logic in metrics/draw in the insets.
2382
2383 2003-08-25  Alfredo Braunstein  <abraunst@libero.it>
2384
2385         * text2.C (redoParagraphInternal, redoParagraphs):
2386         * text.C (redoParagraph): add a call to updateRowPositions at the
2387         end of each 'metrics-like' call. Remove all others.
2388         (getRow): remove the 'y-computing' version.
2389         (getRowNearY): do not compute nor return the real y. Solve the
2390         'y < 0' problem and simplify.
2391
2392 2003-08-22  Angus Leeming  <leeming@lyx.org>
2393
2394         * *.[Ch]: clean-up of licence and author blurbs.
2395         Also move config.h out of a few .h files and into a few .C files.
2396
2397 2003-08-22  André Pönitz  <poenitz@gmx.net>
2398
2399         * lyxrow.[Ch]: add x_ and *fill_ members
2400
2401         * lyxtext.h:
2402         * text.C:
2403         * rowpainter.C:
2404         * text2.C: adjust/remove prepareToPrint() calls
2405
2406 2003-08-22  André Pönitz  <poenitz@gmx.net>
2407
2408         * lyxrow.[Ch]: add  end_ member
2409
2410         * lyxrow_funcs.C: use LyXRow::end_
2411
2412         * lyxtext.h (singleWidth): add LyXFont parameter
2413
2414         * rowpainter.C:
2415         * text2.C: adjust LyXText::singleWidth() calls
2416
2417         * text.C (redoParagraph): simplify row breaking logic
2418
2419
2420 2003-08-19  André Pönitz  <poenitz@gmx.net>
2421
2422         * funcrequest.C: initialize button_ member
2423
2424         * text3.C:
2425         * rowpainter.[Ch]: interface consolidation
2426
2427 2003-08-18  André Pönitz  <poenitz@gmx.net>
2428
2429         * BufferView.C:
2430         * BufferView_pimpl.C:
2431         * lyxfind.C:
2432         * paragraph_funcs.C:
2433         * rowpainter.C:
2434         * text3.C: remove LyXScreen::draw() and fitCursor calls
2435
2436         * BranchList.h: remove spurious semicolons
2437
2438         * MenuBackend.C: fix branchlist related crash
2439
2440 2003-08-17  Martin Vermeer  <martin.vermeer@hut.fi>
2441
2442         * BranchList.[Ch]:
2443         * InsetList.[Ch]:
2444         * LColor.[Ch]:
2445         * LyXAction.C:
2446         * Makefile.am:
2447         * MenuBackend.[Ch]:
2448         * bufferparams.[Ch]:
2449         * factory.C:
2450         * lfuns.h:
2451         * lyxfunc.C:
2452         * text3.C: implements the 'branch inset'
2453         idea. This allows the output of various versions of a document
2454         from a single source version, selectively outputing or suppressing
2455         output of parts of the text.
2456         This implementation contains a 'branch list editor' in a separate
2457         tab of the document settings dialog. Branches are user definable
2458         and have a "display colour" to distinguish them on-screen.
2459
2460         ColorHandler was somewhat cleaned up.
2461         (1) make possible a dynamically growing LColor list by allowing
2462         the graphic context cache to grow along (vector);
2463         (2) eliminate an IMHO unnecessary step in colour allocation.
2464
2465 2003-08-15  Kayvan A. Sylvan <kayvan@sylvan.com>
2466
2467         * BufferView_pimpl.C: compile fix
2468
2469 2003-08-15  André Pönitz  <poenitz@gmx.net>
2470
2471         * rowpainter.C: remove extra metrics calls
2472
2473         * lyxtext.h: merge the two constructors into a single one,
2474           pass reference to owner's par list
2475
2476         * BufferView_pimpl.C:
2477         * text.C:
2478         * text2.C: adjust
2479
2480 2003-08-15  André Pönitz  <poenitz@gmx.net>
2481
2482         * lyxrow_funcs.[Ch]:
2483         * lyxtext.h:
2484         * paragraph.h:
2485         * paragraph_funcs.C:
2486         * rowpainter.C:
2487         * text.C:
2488         * text2.C:
2489         * text3.C:
2490         * text_funcs.C: split LyXText::rowlist_ into individual
2491         Paragraph::rows_ chunks
2492
2493         * BufferView.[Ch]:
2494         * BufferView_pimpl.[Ch]:
2495         * lyxfind.C:
2496         * lyxtext.h:
2497         * text3.C: remove toggleSelection()
2498
2499 2003-08-12  Michael Schmitt  <michael.schmitt@teststep.org>
2500
2501         * bufferlist.C: beautify two alerts (shorter text of buttons)
2502         * buffer.C: Remove redundant ' ' from message
2503         * tabular.h:
2504         * tabular.C: rename LYX_VALIGN_CENTER" to LYX_VALIGN_MIDDLE";
2505         rename M_VALIGN_CENTER to M_VALIGN_MIDDLE;
2506         rename VALIGN_CENTER to VALIGN_MIDDLE
2507
2508 2003-08-11  André Pönitz  <poenitz@gmx.net>
2509
2510         * lyxtext.h (getPar):
2511         * text.C: new function
2512
2513 2003-08-11  André Pönitz  <poenitz@gmx.net>
2514
2515         * Makefile.am:
2516         * tracer.[Ch]: remove unneeded files
2517
2518         * InsetList.[Ch]: remove resizeInsetsLyXText()
2519
2520         * lyxtext.h:
2521         * text.C:
2522         * text2.C:
2523         * text3.C: merge insertParagraphs() and appendParagraph()
2524         remove breakAgain(), update()
2525
2526         * BufferView_pimpl.[Ch]:
2527         * bufferview_funcs.[Ch]:
2528         * lyxfunc.C:
2529         * paragraph.[Ch]:
2530         * rowpainter.C:
2531         * tabular.C: adjust after text & InsetList changes.
2532
2533 2003-08-08  André Pönitz  <poenitz@gmx.net>
2534
2535         * text.C (insertChar, backspace): replace rowlist fiddling
2536         with rebreak of full par
2537
2538         * lyxtext.h:
2539         * text.C (breakAgainOneRow, redoHeightOfParagraph,
2540         checkParagraph, updateInset): removed
2541
2542 2003-08-07  André Pönitz  <poenitz@gmx.net>
2543
2544         * paragraph.C:
2545         * text3.C: merge some LFUN handlers, remove dead code
2546
2547 2003-08-06  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2548
2549         * .cvsignore: add lyx-xforms, lyx-qt, version.C-tmp and stamp-version
2550
2551 2003-08-05  Alfredo Braunstein  <abraunst@libero.it>
2552
2553         * text2.C (DEPM): fix part of bug 1255 and 1256
2554
2555 2003-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2556
2557         * BufferView_pimpl.C (workAreaDispatch): change to use
2558         LyXView::dispatch instead of BufferView::Pimpl::dispatch for lfuns
2559         that are no mouse related.
2560
2561 2003-08-05  André Pönitz  <poenitz@gmx.net>
2562
2563         * BufferView.[Ch]:
2564         * BufferView_pimpl.[Ch]:
2565         * bufferview_funcs.C:
2566         * text2.C:
2567         * text3.C: rip out "deep update"
2568
2569         * textcursor.[Ch] (last_sel_cursor): remove unused member
2570
2571 2003-08-04  André Pönitz  <poenitz@gmx.net>
2572
2573         * BufferView.[Ch]:
2574         * BufferView_pimpl.[Ch]:
2575         * ParagraphParameters.C:
2576         * bufferview_funcs.C:
2577         * lyx_cb.C:
2578         * lyxfind.C:
2579         * lyxfunc.C:
2580         * text.C:
2581         * text2.C:
2582         * text3.C: replace "complicated" BufferView::update(...) calls with
2583         simpler ones.
2584
2585         * BufferView.[Ch]: remove now unneeded BufferView::UpdateCodes
2586
2587 2003-08-02  Kayvan Sylvan  <kayvan@sylvan.com>
2588
2589         * Makefile.am (lyx_SOURCES): add paper.h
2590
2591 2003-08-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2592
2593         * Makefile.am: move things around so that both lyx-qt and
2594         lyx-xforms can be built (according to --with-frontend). Then lyx
2595         is a symbolic link to lyx-[firstfrontend]
2596
2597 2003-08-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
2598
2599         * Always use std::endl with lyxerr
2600
2601 2003-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
2602
2603         * BufferView_pimpl.C: _Always_ use std::endl with lyxerr
2604
2605 2003-08-01  André Pönitz  <poenitz@gmx.net>
2606
2607         * BufferView.[Ch]:
2608         * BufferView_pimpl.[Ch]:
2609         * lyxfunc.C:
2610         * text3.C: merge BufferView::repaint() and BufferView::update()
2611
2612 2003-08-01  José Matos  <jamatos@lyx.org>
2613
2614         * buffer.[Ch]: file_format is no longer a buffer data element.
2615
2616 2003-08-01  André Pönitz  <poenitz@gmx.net>
2617
2618         * BufferView.C:
2619         * lyxtext.h:
2620         * text.C:
2621         * text2.C: make redoParagraph more independent of current cursor
2622
2623         * lyxtext.h (need_update, needUpdate, postPaint, clearPaint):
2624         * text.C:
2625         * text2.C: remove unneeded members
2626
2627 2003-07-30  André Pönitz  <poenitz@gmx.net>
2628
2629         * paragraph.[Ch] (copyIntoMinibuffer): removed unused function
2630
2631         * paragraph.[Ch] (cutIntoMinibuffer, insertFromMinibuffer):
2632           create a single function...
2633
2634         * paragraph_funcs.C (moveItem): ... here.
2635
2636         * text.C:
2637           lyxtext.h (LyXText::workWidth(InsetOld*)) remove. unused.
2638
2639 2003-07-30  Martin Vermeer  <martin.vermeer@hut.fi>
2640
2641         * LColor.[Ch]: Add comment and greyedout logical colors.
2642
2643 2003-07-30  André Pönitz  <poenitz@gmx.net>
2644
2645         * tabular.C: don't use Assert too heavily. This crashes where it
2646           shouldn't
2647
2648 2003-07-30  Alfredo Braunstein  <abraunst@libero.it>
2649
2650         * lyxfunc.C (dispatch): do not mark the buffer dirty if the action
2651         is disabled (bug 1232)
2652
2653 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
2654
2655         * factory.C: limited 'arg' scope
2656
2657 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
2658
2659         * factory.C: fixed Note submenu issues
2660
2661 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
2662
2663         * factory.C: submenu for Note/Comment/Greyedout
2664
2665 2003-07-29  Alfredo Braunstein  <abraunst@libero.it>
2666
2667         * lyx_main.C (LyX):
2668         * BufferView_pimpl.C (loadLyXFile): fix to bugs 1287 and 1297 + ws
2669
2670 2003-07-29  Martin Vermeer  <martin.vermeer@hut.fi>
2671
2672         * LaTeXFeatures.C:
2673         * lyx_sty.[Ch]:h: Implement a newenvironment in preamble for
2674         greyedout. Patch provided by Jürgen Spitzmüller.
2675
2676 2003-07-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2677
2678         * kbmap.C (read): fix error message when reading bind files
2679
2680 2003-07-29  Angus Leeming  <leeming@lyx.org>
2681
2682         * BufferView.[Ch] (ChangeCitationsIfUnique): This function most
2683         certainly does not do what it purports to do. I am doing it, and
2684         us, a favour by killing it.
2685
2686 2003-07-28  José Matos  <jamatos@lyx.org>
2687
2688         * buffer.C (readBody, do_writeFile):
2689         * paragraph.C(readParagraph): \end_document replaces \the_end.
2690
2691 2003-07-29  André Pönitz  <poenitz@gmx.net>
2692
2693         * BufferView.[Ch]:
2694         * BufferView_pimpl.[Ch]:
2695         * lyxfunc.C:
2696         * text2.C:
2697         * text3.C:
2698         * textcursor.[Ch]: remove toggleToggle & Co
2699
2700 2003-07-28  José Matos  <jamatos@fep.up.pt>
2701
2702         * buffer.C (readParagraph):
2703         * params_func (readParToken, readParagraph):
2704         * paragraph.C (write): \layout -> \begin_layout.
2705
2706 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2707
2708         * lyxlex_pimpl.C (setFile): clean up slightly.
2709
2710         * bufferparams.h: add compressed var
2711
2712         * buffer_funcs.C (readFile): adjust for LyXLex change
2713         (newFile): ditto + simplify
2714
2715         * buffer.C (writeFile): handle writing of compressed files
2716
2717         * buffer.[Ch] (readFile): begin LyXLex here, remove one argument.
2718         Check if the file is compressed and set a bufferparm if so.
2719
2720         * Makefile.am (lyx_LDADD): remove explicit -lz
2721
2722 2003-07-28  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2723
2724         * buffer.C (do_writeFile, makeLaTeXFile, makeLinuxDocFile,
2725         makeDocBookFile): put the real LyX version in the first line of
2726         the file
2727
2728         * version.h:
2729         * version.C.in: remove lyx_docversion
2730
2731         * tabular.C (write_attribute): add a template-based version to
2732         write enums properly
2733
2734 2003-07-28  André Pönitz  <poenitz@gmx.net>
2735
2736         * lyxtext.h:
2737         * text.C:
2738         * text2.C:
2739         * text3.C: use doubles again for x-coordinates. They are needed.
2740
2741 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2742
2743         * messages.C (getLocaleDir): use lyx_localedir()
2744
2745         * lyxlex_pimpl.C (setFile): compress stuff
2746
2747         * buffer.C (writeFile): add some compression stuff
2748         (do_writeFile): new func, dont call expliti close... will this
2749         breake anything?
2750
2751         * Makefile.am (lyx_LDADD): add -lz
2752
2753 2003-07-28  José Matos  <jamatos@fep.up.pt>
2754
2755         * buffer.C: increment file format.
2756         * paragraph_funcs (readParagraph, readParToken):
2757         * paragraph.C (readParagraph): add \end_layout.
2758
2759 2003-07-27  Angus Leeming  <leeming@lyx.org>
2760
2761         * Makefile.am: remove special casing for configure-time setting of
2762         LYX_DIR, TOP_SRCDIR and LOCALEDIR.
2763
2764         * lyx_main.C (init): remove all Jean-Marc's magic setting of
2765         system_lyxdir, build_lyxdir and user_lyxdir into the support lib.
2766
2767 2003-07-26  André Pönitz  <poenitz@gmx.net>
2768
2769         * paragraph_func.[Ch]:
2770         * paragraph.C (realizeFont): inline it whereever it is used
2771
2772         * rowpainter.C:
2773         * text.C:
2774         * text2.C:
2775         * text3.C: remove Buffer * parameter from a bunch of get*Font functions
2776
2777
2778 2003-07-26  André Pönitz  <poenitz@gmx.net>
2779
2780         *       lyxtext.h:
2781         * text.C:
2782         * text2.C: get rid of LyXText::need_break_row
2783
2784 2003-07-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
2785
2786         * toc.[Ch]: put namespace toc inside namespace lyx
2787
2788         * MenuBackend.C (expandToc2): adjust for lyx::toc
2789         (expandToc): ditto
2790
2791         * lyxfunc.C (dispatch): adjust for lyx::find
2792
2793         * lyxfind.[hC]: get rid of namespace lyxfind introduce namespace
2794         lyx::find instead. Reorganize a bit.
2795         (LyXReplace): rename to replace
2796         (LyXFind): rename to find
2797
2798         * BufferView_pimpl.C (trackChanges): adjust for lyx::find
2799         (dispatch): ditto
2800
2801 2003-07-26  André Pönitz  <poenitz@gmx.net>
2802
2803         * text.C (setHeightOfRow): restrict scope of temporary variable
2804
2805         * paragraph_funcs.C (readParToken): remove USE_CAPTION  compatibility
2806           code (never has been used?)
2807
2808 2003-07-27  Asger Alstrup  <alstrup@local>
2809
2810         * text.C (fill): Optimise algorithm to exploit that we can reuse
2811         the LyXFont for many characters.
2812         (setHeightOfRow): Same thing.
2813         (rowBreakPoint): Same thing.
2814
2815 2003-07-26  Asger Alstrup  <alstrup@local>
2816
2817         * text2.C (metrics): change a brain-dead algorithm to a smarter one.
2818
2819         * text.C (singleWidth): Spurious font copying in hot-spot
2820         singleWidth avoided. Reorder tests for arabic for efficiency.
2821
2822         * text.C (fill): handle empty paragraphs better.
2823
2824 2003-07-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2825
2826         * ispell.C:
2827         * encoding.h: add includes
2828
2829         * lyxrc.C: remove reading of bind files
2830
2831         * lyx_main.C (init): setup bindings and menus only if we have a
2832         gui.
2833
2834         * kbmap.C (read): new method. Do the actual reading of bind
2835         files.
2836
2837         * converter.C (dvipdfm_options):
2838         * bufferparams.C:
2839         * lyxrc.C (read):
2840         (output): adapt PAPER_* enums.
2841
2842         * lyxrc.h: include paper.h instead of bufferparams.h (mucho lighter)
2843
2844         * bufferparams.h: remove paper-related enums from there
2845
2846         * paper.h: New file. A trivial header file to hold paper-related
2847         enums. It should later expand to contain many paper-related
2848         horrors access.
2849
2850         * lyxrc.C: declare extern displayTranslator
2851
2852 2003-07-27  José Matos  <jamatos@fep.up.pt>
2853
2854         * tabular.[Ch] (linuxdoc): add support for tables and figures
2855         (linuxdoc).
2856
2857 2003-07-27  José Matos  <jamatos@fep.up.pt>
2858
2859         * buffer.[Ch] (makeLaTeXFile): changed name of arguments for
2860         consistency in both functions.
2861         * bufferlist.C (updateIncludedTeXfiles): change client to comply.
2862
2863 2003-07-26  Asger Alstrup  <alstrup@local>
2864
2865         * rowpainter.C (paintRows): Change algorithm to work directly on
2866         the insets rather than asking every character in the document
2867         whether its an inset.
2868
2869 2003-07.26  Alfredo Braunstein  <abraunst@libero.it>
2870
2871         * buffer.C (openFileWrite): factorize some code
2872
2873 2003-07-26  Angus Leeming  <leeming@lyx.org>
2874
2875         * lyx_cb.C:
2876         * lyx_main.[Ch]: replace occurances of system_tempdir with
2877         os::getTmpDir().
2878
2879 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
2880
2881         * rename Inset to InsetOld
2882
2883 2003-07-25  Asger Alstrup  <alstrup@diku.dk>
2884
2885         * undo_funcs.h: Removed setCursorParUndo to simplify things a bit.
2886         Renamed setUndo family to recordUndo. Renamed FINISH to ATOMIC
2887         which I think is a bit clearer. EDIT is gone, since it was
2888         premature optimisation, and broken for mathed anyway.
2889         * undo_funcs.C (performUndoOrRedo): Cleaned up and made it work
2890         with cursor positioning in insets as well (math insets still do not
2891         work, but that's a different story anyway.) It mysteriously
2892         crashes sometimes with undo in the first paragraph, but I'm fairly
2893         confident that this is a compiler bug.
2894
2895 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
2896
2897         * paragraph.C (Paragraph): adjust for new clone return type
2898         (operator==): ditto
2899         (copyIntoMinibuffer): ditto
2900
2901 2003-07-25  Asger Alstrup  <alstrup@lyx.org>
2902
2903         * undo_funcs.C (textHandleUndo): Fix undo crash in first paragraph
2904         by not having a special case, and always doing a full rebreak of
2905         the document after undo.
2906
2907 2003-07-23  Angus Leeming  <leeming@lyx.org>
2908
2909         * factory.C (createInset): InsetExternal::setParams now takes a
2910         Buffer const * arg.
2911
2912 2003-07-23  Angus Leeming  <leeming@lyx.org>
2913
2914         * factory.C (createInset): changed interface to the external and
2915         graphics mailers' string2params functions.
2916
2917 2003-07-23  Angus Leeming  <leeming@lyx.org>
2918
2919         * factory.C (createInset): pass a
2920         Buffer const * parameter to InsetExternalMailer's string2params.
2921
2922 2003-07-22  John Levon  <levon@movementarian.org>
2923
2924         * Thesaurus.h: include the right aiksaurus header
2925
2926 2003-07-21  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2927
2928         * MenuBackend.C (expand): check menu shortcuts unconditionally
2929
2930 2003-07-21  Angus Leeming  <leeming@lyx.org>
2931
2932         * factory.C (createInset): pass a
2933         buffer_path parameter to InsetGraphicsMailer's string2params.
2934
2935 2003-07-21  Angus Leeming  <leeming@lyx.org>
2936
2937         * BufferView_pimpl.C (buffer):
2938         * buffer.C (d-tor):
2939         * lyx_main.C (LyX):
2940         * lyxfunc.C (dispatch):
2941         * lyxrc.C (setDefaults, read, output): use namespace lyx::graphics
2942         rather than the grfx shortcut.
2943
2944 2003-07-21  André Pönitz  <poenitz@gmx.net>
2945
2946         * rowpainter.C: remove unused variables
2947
2948         * tabular_funcs.C:
2949         * tabular_funcs.h: move to tabular.C
2950         * Makefile.am: adjust
2951
2952         * tabular.[Ch]: basic optical cleaning
2953
2954         * author.h: pass references, not values
2955
2956 2003-07-18  André Pönitz  <poenitz@gmx.net>
2957
2958         * lyxtext.h:
2959         * metricsinfo.C:
2960         * metricsinfo.h:
2961         * rowpainter.C:
2962         * text.C:
2963         * text2.C:
2964         * text3.C: two-phase drawing for InsetText and InsetTabular
2965         some float -> int changes.
2966
2967 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
2968
2969         * lyx_main.C: fix the fix
2970
2971 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
2972
2973         * lyx_main.C: fix a crash in batch mode if no files specified
2974         * converter.C: ws
2975
2976 2003-07-17  Alfredo Braunstein  <abraunst@libero.it>
2977
2978         * format.[Ch] (papersize): moved to BufferParams
2979         * converter.[Ch] (dvips_options): moved to BufferParams
2980         (dvipdfm_options): moved to anon namespace
2981         * bufferparams.[Ch]: added above functions.
2982
2983 2003-07-17  André Pönitz  <poenitz@gmx.net>
2984
2985         * lyxtext.h:
2986         * rowpainter.C:
2987         * text2.C: don't call inset->update() anymore
2988
2989         * metricsinfo.[Ch]: add convenience constructor
2990
2991 2003-07-16  André Pönitz  <poenitz@gmx.net>
2992
2993         * lyxcursor.[Ch]:
2994         * lyxfunc.[Ch]:
2995         * text.C:
2996         * text2.C: replace the LyXCursor::irow_ member with
2997          on-demand computation of the value
2998
2999 2003-07-16  John Levon  <levon@movementarian.org>
3000
3001         * lyxfunc.C: support LFUN_INSET_SETTINGS for Note
3002
3003 2003-07-15  André Pönitz  <poenitz@gmx.net>
3004
3005         * text.C:
3006         * text2.C: remove no more needed refresh_row
3007
3008 2003-07-15  André Pönitz  <poenitz@gmx.net>
3009
3010         * lyxtext.h:
3011         * rowpainter.C:
3012         * text2.C:
3013         * text3.C: refresh_status tristate -> need_update bool
3014
3015 2003-07-15  Alfredo Braunstein  <abraunst@libero.it>
3016
3017         * lyxtext.h (init): remove reinit argument (act as if always true)
3018         * text2.C: adjust to that
3019
3020 2003-07-14  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
3021
3022         * bufferview_funcs.[Ch]: introduce function replaceSelection()
3023         * text3.C: use it to delete selections in some cases
3024         (bugs 441, 673, 702, 954).
3025
3026 2003-07-14  André Pönitz  <poenitz@gmx.net>
3027
3028         * rowpainter.[Ch]: reduce interface
3029
3030 2003-07-14  André Pönitz  <poenitz@gmx.net>
3031
3032         * BufferView_pimpl.C:
3033         * text2.C: adjust after removing unused BufferView * argument
3034
3035 2003-07-14  Alfredo Braunstein  <abraunst@libero.it>
3036
3037         * text2.C (init): fix a crash fired on resize
3038
3039 2003-07-11  Alfredo Braunstein  <abraunst@libero.it>
3040
3041         * buffer.[Ch]: added new closing signal
3042         * BufferView_pimpl.[Ch]: connect/disconnect to new signal
3043         * lyxfunc.C: removed BufferView::buffer(0) call now handled in
3044         BufferView::Pimpl via the closing the signal
3045
3046 2003-07-10  Alfredo Braunstein  <abraunst@libero.it>
3047
3048         * buffer.[Ch]: take out all bv-related from buffer
3049         * BufferView.C:
3050         * BufferView_pimpl.[Ch]: connect to new signals
3051         * CutAndPaste.C: removed useless asserts
3052         * bufferview_funcs.[Ch] (resizeInsets): moved from buffer
3053         * lyxvc.[Ch]:
3054         * vc-backend.[Ch]:
3055         * lyxfunc.C: moved view-related funciontality from vc here
3056         * paragraph.C: removed outdated comments
3057         * text.C: ws
3058
3059 2003-07-10  André Pönitz  <poenitz@gmx.net>
3060
3061         * BufferView_pimpl.C:
3062         * tabular.h:
3063         * tabular_funcs.C:
3064         * text.C:
3065         * text2.C: remove InsetText::InnerCache, clean up consequences
3066
3067 2003-07-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
3068
3069         * ispell.C: fix two typos in error messages
3070
3071 2003-07-08  Martin Vermeer  <martin.vermeer@hut.fi>
3072
3073         * Extend Note inset to other forms of annotation like Comment
3074         and Greyedout. Right button click gives dialog.
3075
3076         Files modified or added (+):
3077
3078         * insetnote.[Ch]
3079         * FormNote.[Ch]      +
3080         * ControlNote.[Ch]   +
3081         * form_note.fd       +
3082         * Makefile.am in frontends/xforms, frontends/xforms/forms,
3083         frontends/controllers
3084         * xforms/Dialogs.C
3085         * factory.C
3086
3087 2003-07-01  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
3088
3089         * aspell.C: add missing namespace lyx::support
3090
3091 2003-07-07  Alfredo Braunstein  <abraunst@libero.it>
3092
3093         * BufferView.[Ch] (newFile): Add
3094         * BufferView_pimpl.[Ch] (newFile, connectBuffer, disconnectBuffer): Add
3095         * LaTeX.[Ch] (message): added this signal and use it
3096         * buffer.[Ch] (busy, message): added these signals and use them
3097         * buffer_funcs.[Ch]: rename parseErrors to bufferErrors
3098         * converter.C:
3099         * exporter.C:
3100         * format.C:
3101         * importer.C: use buffer signals instead of direct bv calling
3102         * lyx_cb.[Ch] (ShowMessage): removed
3103         * lyx_main.C:
3104         * lyxfunc.C:
3105         * paragraph_funcs.C:
3106         * text2.C: use buffer signals
3107
3108 2003-07-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
3109
3110         * introduce namespace lyx::graphics
3111
3112 2003-07-02  André Pönitz  <poenitz@gmx.net>
3113
3114         * BufferView_pimpl.C (workAreaDispatch): tell the FuncRequest who we are
3115
3116 2003-07-01  André Pönitz  <poenitz@gmx.net>
3117
3118         * text.C:
3119         * text2.C:
3120         * text3.C:
3121         * text_funcs.[Ch]:
3122         * textcursor.h:
3123         * lyxtext.h: shuffle pure paragraph/cursor related cursor movement from
3124           text*.C to text_func.C
3125
3126 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3127
3128         * introduce namespace lyx::support
3129
3130 2003-06-30  André Pönitz  <poenitz@gmx.net>
3131
3132         * Chktex.C:
3133         * funcrequest.C:
3134         * lyxtext.h:
3135         * text.C: re-enable --with-included-string
3136
3137 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
3138
3139         * textcursor.C: add <config.h>
3140
3141         * text.C (getWord): remove const from word_location arg
3142
3143         * lyxvc.C (getLogFile): fix const type order
3144
3145         * lyxtext.h: remove const from word_location arg, add arg name
3146
3147         * lyxlayout.h: currect type on labeltype.
3148
3149         * importer.C: correct \file
3150
3151         * converter.C (intToFormat): use std:: on ret val, ws changes
3152
3153         * bufferlist.h: correct \file
3154
3155         * buffer.C (makeLinuxDocFile): fix const type order
3156         (makeDocBookFile): ditto
3157         (fillWithBibKeys): use std:: on stdlib args.
3158
3159         * CutAndPaste.C: fix authors.
3160         (availableSelections): use std:: on return vector
3161
3162 2003-06-27  André Pönitz  <poenitz@gmx.net>
3163
3164         * BufferView_pimpl.C:
3165         * bufferview_funcs.C:
3166         * lyxcursor.C:
3167         * lyxcursor.h:
3168         * lyxfunc.C:
3169         * lyxtext.h:
3170         * rowpainter.C:
3171         * text.C:
3172         * text2.C:
3173         * text3.C: remove LyXCursor::row_ member
3174
3175         * lyxtext.h:
3176         * text.C: rename fullRebreak() to partialRebreak() and implement
3177           a fullRebreak() that really bereks fully
3178
3179         * textcursor.h: new struct for cursor-related data
3180
3181 2003-06-26  Alfredo Braunstein  <abraunst@lyx.org>
3182
3183         * lyx_main.C (LyX): get full path of document loaded on the
3184         command line
3185
3186 2003-06-26  André Pönitz  <poenitz@gmx.net>
3187
3188         * lyxcursor.[Ch]: move rarely used operator==,!= out of line
3189           remove unused/broken operator>,<,>=.
3190
3191         *       text.C: remove only use of broken operator<= in an Assert().
3192
3193 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
3194
3195         * BufferView.[Ch] (getErrorList): removed unneeded forward declare,
3196         moved errorlist_.clear to showErrorList
3197
3198 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
3199
3200         * converter.C (scanLog, runLaTeX):
3201         * buffer.C (makeLinuxDocFile, makeDocBookFile, runChkTeX):
3202         move the bv->showErrorList call to the callers
3203         * lyxfunc.C: i.e. here...
3204         * text2.C: and here
3205         * BufferView.[Ch] (setErrorList, resetErrorList): both removed
3206         * exporter.[Ch] (Backends, BufferFormat): the first was moved to anon
3207         namespace, the second to...
3208         * buffer_funcs (BufferFormat, parseErrors): added
3209         * errorlist.C (ErrorList(TeXErrors const &)): removed
3210
3211 2003-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3212
3213         * ToolbarBackend.C (getIcon): complain when icon cannot be found
3214
3215 2003-06-24  "Garst R. Reese" <reese@isn.net>
3216
3217         * debug.C: fix typo
3218
3219 2003-06-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3220
3221         * lyx_main.C (init): honor LYX_DIR_14x and LYX_USERDIR_14x
3222
3223         * version.C.in: change docversion to 1.4
3224
3225 2003-06-22  Alfredo Braunstein  <abraunst@libero.it>
3226
3227         * buffer.C: fix a bug just introduced
3228
3229 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
3230
3231         * buffer.[Ch]: added the parseError signal and use it, removed
3232         sgmlError
3233         * BufferView.[Ch] (addError): moved to ...
3234         * BufferView_pimpl.[Ch] (addError, loadLyXFile): ... here. Attach
3235         to the Buffer::parseError signal to catch (guess what) parse errors
3236         * lyx_main.[Ch] (printError,LyX): added gui-less parsing error feedback
3237
3238 2003-06-19  Alfredo Braunstein  <abraunst@libero.it>
3239
3240         * bufferlist.[Ch] (loadLyXFile, readFile, newFile): removed the
3241         ability to create a buffer and to return an existing one from
3242         the list. Moved these functions to...
3243         * buffer_funcs.[Ch]: added
3244         * BufferView.[Ch] (loadLyXFile): added
3245         * BufferView_pimpl.[Ch] (loadLyXFile): Added. Does the guessing
3246         job removed from bufferlist::loadLyXFile.
3247         * buffer.C (setReadOnly): make it work without view
3248         (i.e added an if (users))
3249
3250 2003-06-19  Angus Leeming  <leeming@lyx.org>
3251
3252         * lfuns.h:
3253         * LyXAction.C (init):
3254         * lyxfunc.C (getStatus, dispatch): remove 14 LFUNs, replacing them
3255         with LFUN_DIALOG_SHOW <name> <data>.
3256
3257 2003-06-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3258
3259         * CutAndPaste.C (availableSelections): small compilation fix for
3260         ancient (gcc 2.9x) compilers
3261
3262 2003-06-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
3263
3264         * text3.C (cursorNext): add tmp var
3265
3266         * text2.C (updateCounters): for function calling out of for clause
3267         (replaceSelectionWithString): ditto
3268         (insertStringAsParagraphs): ditto
3269         (getColumnNearX): add tmp var
3270         (setCursorFromCoordinates): add tmp var
3271         (cursorDownParagraph): add tmp var
3272         (deleteEmptyParagraphMechanism): add tmp var
3273
3274         * text.C (insertChar): add tmp var
3275
3276         * rowpainter.C (paintDepthBar): add tmp var
3277
3278         * CutAndPaste.C (availableSelections): potentially check all
3279         paragraphs in a cut to fill the shown strings.
3280
3281 2003-06-18  André Pönitz  <poenitz@gmx.net>
3282
3283         * kbmap.[Ch]: use vector<> instead of list<>
3284
3285 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
3286
3287         * text3.C (dispatch): handle arg to LFUN_PASTE, call
3288         pasteSelection with index
3289
3290         * text2.C (pasteSelection): modify, call pasteSelection with index
3291
3292         * paragraph.C (asString): reimplement version with no interval to
3293         call the one with interval.
3294
3295         * lyxtext.h: add index arg to pasteSelection
3296
3297         * MenuBackend.C (MenuItem): handle PasteRecent
3298         (Menu::read::Menutags): add md_pasterecent
3299         (read): handle it
3300         (expandPasteRecent): new function
3301         (expand): use it
3302
3303         * MenuBackend.h: add PasteRecent to MenuItem::Kind
3304
3305         * CutAndPaste.C: get rid of some stale comments. Add typdefe for
3306         the limited stack
3307         (availableSelections): new function
3308
3309 2003-06-17  Angus Leeming  <leeming@lyx.org>
3310
3311         * lyxfunc.C (dispatch): s/showMathPanel/show("mathpanel")/
3312
3313 2003-06-17  Angus Leeming  <leeming@lyx.org>
3314
3315         * lfuns.h:
3316         * LyXAction.C (init): new LFUN_DIALOG_SHOW.
3317
3318         * lyxfunc.C (dispatch): invoke it.
3319
3320 2003-06-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3321
3322         * iterators.C (operator++, ParPosition): reintroduce some
3323         const_cast for the benefit of older compilers.
3324
3325 2003-06-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3326
3327         * text3.C (dispatch): do not modify clipboard when doing
3328         LFUN_BACKSPACE, LFUN_BACKSPACE_SKIP, LFUN_DELETE or
3329         LFUN_DELETE_SKIP on a selection selection
3330
3331 2003-06-16  André Pönitz  <poenitz@gmx.net>
3332
3333         * BufferView.C:
3334         * buffer.C:
3335         * buffer.h:
3336         * paragraph.C:
3337         * tabular.[Ch]: IU of clone() and getLabelList();
3338
3339 2003-06-13  André Pönitz  <poenitz@gmx.net>
3340
3341         * tabular.h: compactification
3342
3343 2003-06-12  André Pönitz  <poenitz@gmx.net>
3344
3345         * tabular.C:
3346         * tabular.h:
3347         * tabular_funcs.h: some renaming plus whitespace
3348
3349 2003-06-12  André Pönitz  <poenitz@gmx.net>
3350
3351         * BufferView.C:
3352         * BufferView_pimpl.C:
3353         * CutAndPaste.C:
3354         * buffer.C:
3355         * iterators.[Ch]:
3356         * lyxfunc.C:
3357         * text.C:
3358         * toc.C: Return a Paragraph & for ParIterator::operator*()
3359
3360 2003-06-11  John Levon  <levon@movementarian.org>
3361
3362         * lyx_main.C:
3363         * ToolbarBackend.h:
3364         * ToolbarBackend.C: add "Toolbars" section and
3365         put the flags there
3366
3367 2003-06-10  Angus Leeming  <leeming@lyx.org>
3368
3369         * lfuns.h:
3370         * LyXAction.C (init): new LFUN_EXTERNAL_EDIT.
3371
3372         * lyxfunc.C (dispatch): invoke it.
3373
3374 2003-06-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
3375
3376         * main.C: protect <ios> with HAVE_IOS
3377         (main): protect sync_with_stdio with HAVE_IOS
3378
3379 2003-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
3380
3381         * text2.C (cutSelection): adjust
3382         (pasteSelection): adjust
3383
3384         * messages.C: handle get of empty string
3385
3386         * main.C (main): use sync_with_stdio(false)
3387
3388         * lyxfunc.C (dispatch): adjust
3389
3390         * lyx_cb.[Ch] (MenuWrite): remove unneeded BufferView arg
3391         (WriteAs): remove unneeded BufferView arg.
3392
3393         * bufferparams.h: use correct types on papersize, papersize2 and
3394         paperpackage.
3395
3396         * bufferparams.C (readToken): adjust for type
3397         (writeLaTeX): add missing cases to switch.
3398
3399         * bufferlist.C (quitWriteBuffer): adjust
3400         (close): adjust
3401
3402         * buffer.C (asciiParagraph): remove some commented code.
3403
3404         * CutAndPaste.C: remove current_view extern variable.
3405         (cutSelection): add BufferParams arg.
3406         (eraseSelection): add BufferParams arg.
3407         (pasteSelection): add Buffer const & arg
3408
3409 2003-06-07  John Levon  <levon@movementarian.org>
3410
3411         * buffer.C:
3412         * paragraph_funcs.C:
3413         * paragraph_pimpl.C:
3414         * text.C:
3415         * text2.C:
3416         * paragraph.h:
3417         * paragraph.C: allow InsetERT to freely space lines,
3418         and some consolidation of code
3419
3420 2003-06-06  José Matos  <jamatos@fep.up.pt>
3421
3422         * buffer.C (makeDocBookFile): fix bug #821
3423
3424 2003-06-06  Alfredo Braunstein  <abraunst@libero.it>
3425
3426         * BufferView_pimpl.C (dispatch): use Dialogs::visible
3427
3428 2003-06-04  Angus Leeming  <leeming@lyx.org>
3429
3430         * buffer.C: bump format to 224.
3431
3432 2003-06-05  André Pönitz  <poenitz@gmx.net>
3433
3434         * text2.C (redoParagraphs): remove two const_cast<>
3435
3436 2003-06-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3437
3438         * ParagraphList.h: remove last remnants of NO_STD_LIST
3439
3440 2003-06-03  Angus Leeming  <leeming@lyx.org>
3441
3442         * factory.C (createInset): small change to the way InsetExternal's params
3443         are set.
3444
3445 2003-06-04  André Pönitz  <poenitz@gmx.net>
3446
3447         * buffer.h: use Undo directly instead of shared_ptr<Undo>
3448
3449         * paragraph_pimpl.h:
3450         * paragraph.[Ch]: some Inset -> UpdatableInset changes
3451
3452         * undo.[Ch]: use ParagraphList instead of vector<Paragraph>
3453
3454         * undo_funcs.C: make some simple cases of undo work again
3455
3456 2003-06-03  John Levon  <levon@movementarian.org>
3457
3458         * ispell.C: HPUX doesn't have sys/select.h
3459         (from Albert Chin)
3460
3461 2003-06-03  John Levon  <levon@movementarian.org>
3462
3463         * CutAndPaste.C: update tabular and include inset
3464         buffer references
3465
3466         * buffer.h:
3467         * paragraph.h:
3468         * paragraph.C: remove owningBuffer(), don't pass Buffer
3469         to clone()
3470
3471         * factory.C: insetGraphicsParams changed
3472
3473 2003-06-02  John Levon  <levon@movementarian.org>
3474
3475         * LyXAction.C:
3476         * factory.C:
3477         * lfuns.h:
3478         * lyxfunc.C:
3479         * text3.C: remove insetparent
3480
3481 2003-06-02  John Levon  <levon@movementarian.org>
3482
3483         * buffer.h:
3484         * buffer.C: fix inset_iterator.end(), move out of line
3485         (bug 1149)
3486
3487 2003-06-01  John Levon  <levon@movementarian.org>
3488
3489         * text3.C: use a proper cut/paste when doing inset
3490         insert (from Jürgen Spitzmüller)
3491
3492 2003-06-01  John Levon  <levon@movementarian.org>
3493
3494         * factory.C: accept "\bibtex" not "\BibTeX" (bug 1018)
3495
3496 2003-05-30  André Pönitz  <poenitz@gmx.net>
3497
3498         * rowpainter.C: unify second drawing phase
3499
3500 2003-05-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
3501
3502         * trans_mgr.C: remove one case of current_view
3503
3504         * text2.C (cursorBottom): delete NO_STD_LIST stuff
3505
3506         * paragraph_funcs.h: remove paragraph.h include
3507
3508         * paragraph.h: delete NO_STD_LIST stuff
3509
3510         * paragraph.C (Paragraph): delete NO_STD_LIST stuff
3511
3512         * buffer.h: remove paragraph.h include
3513
3514         * ParagraphList.C: delete file
3515
3516         * Makefile.am (lyx_SOURCES): remove ParagraphList.C
3517
3518         * toc.C (getTocList): adjust
3519
3520         * paragraph_pimpl.C (validate): adjust
3521
3522         * paragraph_funcs.C (optArgInset): use const_iterator, adjust
3523
3524         * paragraph.C (Paragraph): adjust
3525         (getPositionOfInset): use const_iterator, adjust
3526         (bibitem): use const_iterator, adjust
3527         (setInsetOwner): adjust
3528
3529         * iterators.C (operator++): adjust
3530
3531         * InsetList.[Ch]: Replace selfmade iterator with standard
3532         vector::iterator also introduce const_iterator. Remove getPos,
3533         getInset and setInset from InsetTable. Adjust accordingly.
3534
3535         * BufferView.C (lockInset): adjust
3536         (ChangeInsets): adjust
3537
3538         * tabular.[Ch]: delete commented same_id functions
3539
3540 2003-05-28  John Levon  <levon@movementarian.org>
3541
3542         * lyxfunc.C: fix LFUN_ESCAPE (bug 1055)
3543
3544 2003-05-28  André Pönitz  <poenitz@gmx.net>
3545
3546         * metricsinfo.[Ch]: remove 'fullredraw' member
3547
3548 2003-05-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
3549
3550         * lyxtextclass.C (operator): remove caching.
3551
3552 2003-05-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
3553
3554         * text3.C: adjust
3555
3556         * text2.C (cursorBottom): adjust
3557         (setCounter): use ParagraphList::find, adjust
3558
3559         * text.C (workWidth): use ParagraphList::find, adjust
3560
3561         * lyxcursor.C (LyXCursor): adjust
3562
3563         * buffer.C (inset_iterator): adjust
3564
3565         * ParagraphList.h: make iterator(value_type) private, make
3566         ParagraphList a friend of iterator.
3567
3568         * ParagraphList.C (find): new function
3569
3570         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
3571
3572 2003-05-27  André Pönitz  <poenitz@gmx.net>
3573
3574         * dimension.[Ch]: a -> asc, d -> des, w -> wid
3575
3576 2003-05-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3577
3578         * lyxfont.C (latexWriteStartChanges): fix character count for \noun
3579
3580 2003-05-26  John Levon  <levon@movementarian.org>
3581
3582         * LyXAction.C: LFUN_ESCAPE should be ReadOnly
3583
3584 2003-05-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
3585
3586         * remove same_id from function signatures, adjust.
3587
3588 2003-05-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
3589
3590         * undo_funcs.C (createUndo): use the id functions directly, adjust.
3591
3592         * paragraph_pimpl.C (Pimpl): get rid of same_ids parameter
3593
3594         * paragraph.C (Paragraph): get rid of same_ids parameter
3595
3596         * ParagraphList.C (insert): adjust
3597         (push_back): adjust
3598
3599 2003-05-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
3600
3601         * paragraph_funcs.C (breakParagraph): adjust
3602         (breakParagraphConservative): adjust
3603
3604         * buffer.C (readParagraph): adjust
3605
3606         * ParagraphList.C (insert): take a reference instead of a pointer
3607         (insert): adjust
3608
3609         * paragraph.[Ch] (id): new function
3610
3611         * bufferlist.C (newFile): adjust
3612
3613         * ParagraphList.C (ParagraphList): adjust
3614         (assign): adjust
3615         (push_back): take a reference instead of a pointer.
3616
3617         * paragraph.h: add NO_STD_LIST define, remove NO_NEXT define.
3618
3619         * paragraph.C: remove all NO_NEXT node add some NO_STD_LIST parts
3620         instead.
3621
3622         * ParagraphList.h: degenerate to std::list if NO_STD_LIST is not
3623         set else use old code.
3624
3625         * ParagraphList.C: remove all NO_NEXT code and only compile this
3626         code of NO_STD_LIST is set.
3627
3628 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
3629
3630         * BufferView_pimpl.C:
3631         * TextCache.C:
3632         * TextCache.h:
3633         * bufferlist.C:
3634         * errorlist.h:
3635         * format.C:
3636         * format.h:
3637         * graph.C:
3638         * lyxfunc.C:
3639         * lyxrc.C:
3640         * graphics/GraphicsConverter.C:
3641         * graphics/PreviewLoader.C: header adjustment
3642
3643 2003-05-23  Angus Leeming  <leeming@lyx.org>
3644
3645         * LaTeXFeatures.[Ch] (useBabel): new method.
3646         * bufferparams.C (writeLaTeX): use it.
3647
3648 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
3649
3650         * ParagraphList.h (set): remove unused function.
3651
3652 2003-05-23  André Pönitz  <poenitz@gmx.net>
3653
3654         * BufferView.C:
3655         * BufferView_pimpl.C:
3656         * buffer.C:
3657         * buffer.h:
3658         * lyxfunc.C:
3659         * undo_funcs.C: setUndo reworked
3660
3661         * iterators.[Ch]: add access to topmost ParagraphList
3662
3663         * lyxtext.[Ch] (workWidth): add a const
3664
3665 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
3666
3667         * texrow.[Ch] (increasePos): remove function
3668         * exporter.C (export): removed unused var and outdated comment
3669
3670 2003-05-23  Angus Leeming  <leeming@lyx.org>
3671
3672         * latexrunparams.h: rename fragile as moving_arg.
3673         * paragraph.C (simpleTeXOnePar): ditto.
3674         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto.
3675
3676 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
3677
3678         * undo_funcs.C (textHandleUndo): comment out next/previous stuff
3679         (createUndo): ditto
3680         (textUndoOrRedo): comment out a currently unused var.
3681
3682         * paragraph.h (NO_NEXT): enable NO_NEXT
3683
3684         * lyxfunc.C (dispatch): remove LFUN_REMOVEERRORS
3685
3686         * lfuns.h: remove LFUN_REMOVEERRORS and adjust lfun numbers.
3687
3688         * exporter.C (Export): adjust for removeAutoInsets removal.
3689
3690         * buffer.C (runChktex): adjust for removeAutoInsets removal.
3691
3692         * LyXAction.C (init): remove LFUN_REMOVEERRORS
3693
3694         * BufferView.[Ch] (removeAutoInsets): delete function
3695
3696 2003-05-22  Angus Leeming  <leeming@lyx.org>
3697
3698         * latexrunparams.h: add a free_spacing variable.
3699
3700         * paragraph.[Ch] (simpleTeXOnePar): further fragile clean-up; no need
3701         to pass moving_arg, as the data is stored in runparams.fragile.
3702
3703         * paragraph_funcs.C (TeXOnePar): no longer pass free_spacing arg
3704         to Inset::latexOptional or to simpleTeXOnePar.
3705
3706         * paragraph_pimpl.C (simpleTeXSpecialChars): no longer pass
3707         free_spacing arg to Inset::latexOptional.
3708
3709         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
3710         free_spacing arg.
3711
3712 2003-05-22  Angus Leeming  <leeming@lyx.org>
3713
3714         * latexrunparams.h: add fragile and use_babel variables.
3715
3716         * bufferparams.[Ch] (writeLaTeX): return use_babel.
3717         * buffer.C (makeLaTeXFile): store this returned value in
3718         runparams.use_babel, thus passing it to the inset::latex methods.
3719
3720         * paragraph.C (simpleTeXOnePar): no need to pass 'moving_arg' to
3721         simpleTeXSpecialChars as it is now stored in runparams.fragile.
3722
3723         * paragraph_funcs.[Ch] (TeXOnePar, latexParagraphs): TeXOnePar no
3724         longer has a fragile arg, as it is stored in runparams.fragile.
3725
3726         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars): no longer has a
3727         moving_arg parameter as the data is stored in runparams.fragile.
3728
3729         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
3730         a fragile parameter as the data is stored in runparams.fragile.
3731
3732 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
3733
3734         * paragraph.C (Paragraph): initialize next_par_ and prev_par_
3735
3736 2003-05-22  Angus Leeming  <leeming@lyx.org>
3737
3738         * latexrunparams.h: add a 'bool nice' which defaults to false.
3739
3740         * buffer.[Ch] (makeLaTeXFile): remove the nice parameter as it is
3741         now encapsulated within runparams.
3742
3743         * bufferlist.C (updateIncludedTeXfiles):
3744         * exporter.C (Export): ensuing change to the calls to makeLaTeXFile.
3745
3746 2003-05-22  Angus Leeming  <leeming@lyx.org>
3747
3748         * latexrunparams.h: new file containing struct LatexRunParams.
3749         * Makefile.am: add new file.
3750
3751         * LaTeX.[Ch] (c-tor, run):
3752         * buffer.[Ch] (makeLaTeXFile):
3753         * bufferlist.[Ch] (updateIncludedTeXfiles):
3754         * converter.C (convert, scanLog):
3755         * converter.[Ch] (runLaTeX):
3756         * exporter.C (Export):
3757         * paragraph.[Ch] (simpleTeXOnePar):
3758         * paragraph_funcs.C (TeXEnvironment, TeXOnePar, TeXDeeper):
3759         * paragraph_funcs.[Ch] (latexParagraphs):
3760         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars):
3761         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow, latex):
3762         pass around a LatexRunParams parameter.
3763
3764 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
3765
3766         * paragraph.[Ch]: remove unused constructor
3767
3768         * ParagraphList.C (erase): new function, taking two iterators
3769
3770 2003-05-22  André Pönitz  <poenitz@gmx.net>
3771
3772         * undo_funcs.C: remove duplicated code
3773
3774         * iterator.[Ch]: operator=
3775
3776 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
3777
3778         * tabular.C (SetMultiColumn): ws changes
3779
3780         * rowpainter.C (paintFirst): get rid of a ->previous
3781
3782         * lyx_cb.C (getPossibleLabel): parlist simplification
3783
3784         * BufferView.C (ChangeInsets): simplify slightly.
3785
3786 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3787
3788         * LyXAction.C: new lfun space-insert, kill protected-space-insert
3789         * lfuns.h: new LFUN_SPACE
3790         * lyxfunc.C: protected space has a new lfun
3791         * paragraph_funcs.C: read new space insets
3792         * text3.C:
3793         * factory.C: handle new space insets
3794
3795 2003-05-22  André Pönitz  <poenitz@gmx.net>
3796
3797         * BufferView.C:
3798         * BufferView_pimpl.C:
3799         * buffer.[Ch]:
3800         * lyxfunc.C:
3801         * undo_funcs.C: return a ParIterator from getParFromID.
3802
3803         * iterators.[Ch]: add two const's
3804
3805 2003-05-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
3806
3807         * toc.C (getTocList): adjust
3808
3809         * iterators.[Ch]: rework for parlist
3810
3811         * buffer.C (par_iterator_begin): adjust
3812         (par_iterator_end): adjust
3813
3814         * CutAndPaste.C (SwitchLayoutsBetweenClasses): adjust
3815
3816         * BufferView.C (removeAutoInsets): adjust
3817         (ChangeInsets): adjust
3818
3819 2003-05-21  Alfredo Braunstein  <abraunst@libero.it>
3820
3821         * text.C (top_y): fix bug 1110
3822
3823 2003-05-08  Alfredo Braunstein  <abraunst@libero.it>
3824
3825         * errorlist.[Ch]: added
3826         * buffer.C:
3827         * BufferView.[Ch]:
3828         * BufferView_pimpl.C:
3829         * CutAndPaste.[Ch]: get rid of InsetError users, use ErrorList
3830         instead
3831
3832 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
3833
3834         * Makefile.am: ensure that lyx is relinked upon changes to the
3835         various "convenience" libs.
3836
3837 2003-05-20  Angus Leeming  <leeming@lyx.org>
3838
3839         * Makefile.am (lyx_SOURCES): move format.[Ch] and graph.[Ch] so that
3840         files are compiled in alphabetical order again.
3841
3842         * gettext.h: #ifndef _GETTEXT_H_ -> #ifndef GETTEXT_H.
3843
3844 2003-05-19  Angus Leeming  <leeming@lyx.org>
3845
3846         * gettext.[Ch]: remove "char const * _(char const *)".
3847
3848 2003-05-19  André Pönitz  <poenitz@gmx.net>
3849
3850         * dimension.[Ch]: promote from mathed/dimension.[Ch]
3851
3852         * Makefile.am:
3853         * BufferView.C:
3854         * DepTable.h:
3855         * LaTeXFeatures.C:
3856         * buffer.C:
3857         * lyxfont.C:
3858         * lyxlex.h:
3859         * paragraph_funcs.C: dimensions() instead of ascend/descend/width
3860
3861 2003-05-19  André Pönitz  <poenitz@gmx.net>
3862
3863         * buffer.C:
3864         * lyxlayout.[Ch]:
3865         * lyxtextclass.[Ch]:
3866         * paragraph.C:
3867         * paragraph_funcs.[Ch]:
3868         * text2.C:
3869         * text3.C: more insetenv work
3870
3871 2003-05-16  Alfredo Braunstein  <abraunst@libero.it>
3872
3873         * ParagraphParameters.C (params2string): small bug fixed
3874
3875 2003-05-16  André Pönitz  <poenitz@gmx.net>
3876
3877         * debug.C:
3878         * bufferview_funcs.C: patch from Kornel Benko to prevent
3879           crash when _(...) is called twice in a statement
3880
3881 2003-05-16  André Pönitz  <poenitz@gmx.net>
3882
3883         * BufferView.C:
3884         * lyxfunc.C:
3885         * text.C:
3886         * text2.C:
3887         * text3.C:
3888         * undo_funcs.C: edit() -> LFUN_INSET_EDIT
3889
3890 2003-05-14  Alfredo Braunstein  <abraunst@libero.it>
3891
3892         * lyx_main.C (init): remove spurious static_cast
3893
3894 2003-05-14  André Pönitz  <poenitz@gmx.net>
3895
3896         * BufferView.C: fix format string
3897
3898 2003-05-12  Alfredo Braunstein  <abraunst@libero.it>
3899
3900         * BufferView.[Ch] (insertErrors): removed
3901         * BufferView.[Ch] (showErrorList): added
3902         * buffer.C (runChkTeX):
3903         * converter.C (scanLog): call showErrorList instead of inserterrors
3904
3905 2003-05-13  André Pönitz  <poenitz@gmx.net>
3906
3907         * BufferView_pimpl.C:
3908         * buffer.C:
3909         * bufferview_func.C:
3910         * MenuBackend.C:
3911         * lyxfunc.C:
3912         * lyxrc.C:
3913         * tex-accent.C:
3914         * text3.C:
3915         * toc.C:
3916         * tabular_funcs.h: tostr() from its own header
3917
3918         * ParagraphParameters.C:
3919         * ToolbarBackend.C:
3920         * bufferparams.C:
3921         * format.C:
3922         * lyxlex_pimpl.C:
3923         * text3.C: STRCONV()
3924
3925 2003-05-12  André Pönitz  <poenitz@gmx.net>
3926
3927         * BufferView.C:
3928         * BufferView_pimpl.C:
3929         * CutAndPaste.C:
3930         * LaTeX.C:
3931         * LaTeXFeatures.C:
3932         * ParagraphParameters.C:
3933         * buffer.C:
3934         * bufferlist.C:
3935         * bufferparams.C:
3936         * bufferview_funcs.C:
3937         * converter.C:
3938         * counters.C:
3939         * debug.C:
3940         * exporter.C:
3941         * format.C:
3942         * importer.C:
3943         * lyx_cb.C:
3944         * lyx_main.C:
3945         * lyxfont.C:
3946         * lyxfunc.C:
3947         * lyxvc.C:
3948         * paragraph.C:
3949         * paragraph_funcs.C:
3950         * tabular.C:
3951         * tabular_funcs.C:
3952         * text2.C:
3953         * text3.C:  boost::format -> bformat  all over the place
3954
3955
3956 2003-05-09  André Pönitz  <poenitz@gmx.net>
3957
3958         * LColor.[Ch]: Pimpl the #include <map> away
3959
3960 2003-05-09  John Levon  <levon@movementarian.org>
3961
3962         * bufferlist.C: never remove emergency saves
3963
3964 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
3965
3966         * Makefile.am: better lib building
3967
3968 2003-05-07  Lars Gullik Bjønnes  <larsbj@gullik.net>
3969
3970         * texrow.[Ch]: remove dependency on Paragraph and just store a id
3971         instead.
3972         * paragraph_pimpl.C (simpleTeXBlanks): adjust
3973         (simpleTeXSpecialChars): adjust
3974         (simpleTeXSpecialChars): adjust
3975         * paragraph.C (simpleTeXOnePar): adjust
3976         * buffer.C (makeLaTeXFile): adjust
3977
3978         * Makefile.am (BOOST_LIBS): allow boost as system lib.
3979
3980         * text2.C (changeDepth): parlist cleanup
3981         (getColumnNearX): ditto
3982
3983         * rowpainter.C (getLabelFont): parlist cleanup
3984
3985         * bufferlist.C (newFile): parlist cleanup
3986
3987         * CutAndPaste.C (eraseSelection): parlist cleanup
3988
3989         * BufferView_pimpl.C (trackChanges): parlist cleanup
3990         (dispatch): ditto
3991
3992         * BufferView.C (lockInset): parlist cleanup.
3993         (ChangeInsets): ditto
3994
3995 2003-05-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
3996
3997         * CutAndPaste.h: Update file header.
3998
3999         * CutAndPaste.C: Update file header.
4000         Store the parts cut out of the Document in a limited_stack.
4001         (copySelection): adjust
4002         (pasteSelection): new function, takes the index in the limited stack.
4003         (nrOfParagraphs): adjust
4004         (SwitchLayoutsBetweenClasses): Change to take a ParagraphList&,
4005         simplify error inset insertion.
4006         (checkPastePossible): adjust
4007
4008 2003-05-06  John Levon  <levon@movementarian.org>
4009
4010         * text2.C: don't cast wrap inset to float
4011
4012 2003-05-05  André Pönitz  <poenitz@gmx.net>
4013
4014         * iterator.C:
4015         * undo_funcs.C: use getParagraphs() instead of getFirstParagraph()
4016
4017         * buffer.[Ch]: new function hasParWithId() to help to get rid of a
4018           few naked Paragraph *.
4019
4020 2003-05-02  Michael Schmitt  <michael.schmitt@teststep.org>
4021
4022         * bufferparams.C: Output warning if a document with missing
4023         TeX document class is loaded
4024         * exporter.C: Disable TeX exports if the document class is missing
4025         * lyxtextclass.C:
4026         * lyxtextclass.h:
4027         * lyxtextclasslist.C: Handle new textclass.lst format; new method
4028         isTeXClassAvailable()
4029
4030 2003-05-03  John Levon  <levon@movementarian.org>
4031
4032         * BufferView.h:
4033         * BufferView.C: remove showLockedInsetCursor(), showCursor(),
4034         explicit cursor show/hide
4035
4036         * BufferView_pimpl.h:
4037         * BufferView_pimpl.C: hide cursor before dispatching. Show cursor
4038         after a cursor move lfun. Simplify cursorToggle(). Remove show/hideCursor().
4039
4040         * lyxfunc.C: hide cursor before dispatching.
4041
4042         * lyx_cb.C:
4043         * lyxfind.C:
4044         * text.C:
4045         * text3.C: remove explicit cursor hides
4046
4047 2003-05-02  André Pönitz  <poenitz@gmx.net>
4048
4049         * buffer.[Ch]: two instances of Paragraph * -> ParagraphList::iterator
4050
4051         * undo_funcs.C:
4052         * undo.[Ch]: rely on std::vector<Paragraph *> instead of manually
4053           linked lists
4054
4055         * text2.C: tiny whitespace
4056
4057 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4058
4059         * undo_funcs.C: almost only ws changes.
4060
4061         * ParagraphList.C (splice): just return if pl is empty.
4062
4063 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4064
4065         * ParagraphList.C (splice): new function.
4066
4067         * CutAndPaste.C (pasteSelection): use it
4068
4069 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4070
4071         * CutAndPaste.C (pasteSelection): remove the last next and
4072         previous from this file.
4073
4074 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4075
4076         * CutAndPaste.C (pasteSelection): more clean up, user proper
4077         ParagraphList functions for pasteing.
4078
4079         * ParagraphList.C (insert): new function, three arg insert
4080
4081 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4082
4083         * ParagraphList.C (insert): new function, three arg insert
4084
4085         * CutAndPaste.C (pasteSelection): work on the simple_cut_clone,
4086         not on paragraphs.
4087
4088 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4089
4090         * CutAndPaste.C (pasteSelection): copy paragraphlist the nice way.
4091
4092 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4093
4094         * CutAndPaste.C (pasteSelection): remove some unneeded code.
4095
4096 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4097
4098         * CutAndPaste.C (resetOwnerAndChanges): new helper functor
4099         (copySelection): clean up a bit.
4100         (pasteSelection): use make_pair
4101
4102         * ParagraphList.C (ParagraphList): implement copy constructor
4103         (operator=): implement, base on copy constructor.
4104         (assign): new func
4105
4106         * paragraph.C (erase): return a bool
4107
4108         * paragraph_pimpl.C (erasePos): remove function, move contents...
4109         (erase): ... here. Return a bool.
4110         (erase): call erase instead of erasePos.
4111
4112 2003-04-30  Alfredo Braunstein  <abraunst@libero.it>
4113
4114         * ParagraphList.h: define PitPosPair
4115         * CutAndPaste.C (copySelection, pasteSelection): big rework, use
4116         ParagraphList, fix a bug on pasting multiple pars
4117         * text2.C: change interface to C&P
4118
4119 2003-04-30  André Pönitz  <poenitz@gmx.net>
4120
4121         * undo_func.C: revert part of yesterday's patch 2
4122
4123 2003-04-30  John Levon  <levon@movementarian.org>
4124
4125         * LColor.C: s/tabular/table/
4126
4127 2003-04-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
4128
4129         * text3.C (dispatch): do not convert iterator -> pointer
4130         * undo_funcs.C (setCursorParUndo): ditto
4131         * text_funcs.C (transposeChars): ditto
4132
4133         * text2.C (setLayout): ws changes only
4134
4135         * text.C (breakParagraph): do not convert iterator -> pointer
4136         (insertChar): ditto
4137         (acceptChange): ditto
4138         (rejectChange): ditto
4139         (changeCase): ditto
4140         (Delete): ditto
4141         (backspace): ditto
4142
4143         * BufferView.C (lockedInsetStoreUndo): do not convert iterator ->
4144         pointer
4145
4146 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
4147
4148         * text3.C (gotoInset): YABG (yet another bad getChar)
4149
4150 2003-04-29  André Pönitz  <poenitz@gmx.net>
4151
4152         * paragraph.h: make operator= private unimplemented as long as
4153           it is unusable
4154
4155         * ParagraphList.C: whitespace
4156
4157         * paragraph.[Ch]:
4158         * paragraph_pimpl.[Ch]:
4159         * paragraph_funcs.C:
4160         * CutAndPaste.C:
4161         * undo_funcs.C: whitespace + Paragraph *  -> Paragraph (const) &
4162
4163         * text2.C:
4164           undo_funcs.[Ch]: Paragraph * -> ParagraphList::iterator
4165
4166 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
4167
4168         * CutAndPaste.[Ch] (cutSelection): big rework, some bugs fixed
4169         * paragraph.[Ch] (erase):
4170         * paragraph_pimpl.[Ch] (erase): change return type and value
4171         * text2.C (cutSelection): some rework
4172
4173 2003-04-28  John Levon  <levon@movementarian.org>
4174
4175         * bufferlist.C: changes for unsaved changes dialog
4176
4177 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4178
4179         * bufferlist.C (newFile): set language (messages_) for new
4180         documents also.
4181
4182         * buffer.C (readFile): ws changes only.
4183
4184 2003-04-28  André Pönitz  <poenitz@gmx.net>
4185
4186         * undo_funcs.C:
4187         * lyxfunc.C:
4188         * buffer.[Ch]:
4189         * BufferView_pimpl.C:
4190         * BufferView.C: getParFromID related ParagraphList::iterator changes
4191
4192 2003-04-28  André Pönitz  <poenitz@gmx.net>
4193
4194         * tabular.[Ch]: part of Lars' Paragraph * -> ParagraphList::iterator
4195           Changes
4196
4197 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4198
4199         * messages.C: remove one more localedir class variable.
4200
4201 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4202
4203         * messages.C (getLocaleDir): singleton generation function
4204         (Pimpl): use it.
4205         (Messages): add a default constructor.
4206
4207         * main.C (main): do not setup localedir here, do not call
4208         gettext_init.
4209
4210         * gettext.C (_): use it.
4211         (gettext_init): delete funciton
4212
4213 2003-04-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
4214
4215         * gettext.C (getLyXMessages): new singleton generating function.
4216
4217         * buffer.C (updateDocLang): adjust
4218
4219         * Makefile.am (messages.o): add target
4220         (main.o): remove target
4221
4222 2003-04-27  John Levon  <levon@movementarian.org>
4223
4224         * bufferlist.C:
4225         * lyx_cb.C:
4226         * lyxfunc.C:
4227         * lyxvc.C: specify cancel button in Alert::prompt
4228
4229 2003-04-26  John Levon  <levon@movementarian.org>
4230
4231         * text3.C:
4232         * lyxfunc.C:
4233         * lfuns.h:
4234         * LyXAction.C: add LFUN_INSET_SETTINGS
4235
4236         * lyxfunc.C: don't enable tabular-feature when there's
4237         just any locking inset
4238
4239 2003-04-26  John Levon  <levon@movementarian.org>
4240
4241         * bufferlist.C: re-add Cancel to buffer close question
4242
4243         * lyxfunc.C: fix import UI a bit
4244
4245 2003-04-25  John Levon  <levon@movementarian.org>
4246
4247         * gettext.C: remove the broken asserts for now
4248
4249 2003-04-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4250
4251         * messages.C: make case where setlocale cannot comply work better.
4252
4253         * buffer.C (updateDocLang): new function
4254         (changeLanguage): use it
4255         (readFile): use it
4256
4257         * text2.C (setCounter): use B_ a bit.
4258
4259         * lyxlayout.C (Read): be sure to trim the label strings.
4260
4261         * messages.C (Messages): fix typo in comment
4262
4263         * buffer.C (readFile): set message_ after file is loaded.
4264         (makeDocBookFile): remove double return
4265         (changeLanguage): reset message_ upon language change.
4266         (B_): new func, use this to get translated buffer strings.
4267
4268         * main.C: add myself and Jean Marc as authors.
4269
4270 2003-04-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
4271
4272         * messages.[hC]: pimplify Messages, and three different pimpls to be
4273         used in different circumstances.
4274
4275         * gettext.[Ch]: change for use with new message code.
4276
4277 2003-04-24 André Pönitz <poenitz@gmx.net>
4278
4279         * factory.C: support for eqref
4280
4281 2003-04-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
4282
4283         * messages.[Ch]: add missing char
4284
4285         * Makefile.am (lyx_SOURCES): add messages.[Ch]
4286
4287         * messages.[Ch]: New files
4288
4289 2003-04-18  John Levon  <levon@movementarian.org>
4290
4291         * BufferView.h:
4292         * BufferView.C:
4293         * BufferView_pimpl.C:
4294         * lfuns.h:
4295         * LyXAction.C:
4296         * lyxtext.h:
4297         * text2.C: remove layout-copy/paste (bug 778)
4298
4299 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
4300
4301         * text2.C (redoParagraphs): eliminate good_prevrit, rewrite a loop
4302
4303 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
4304
4305         * bufferlist.C (quitWriteBuffer): WriteAs and MenuWrite return true
4306         if they succeed. Act accordingly.
4307
4308 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
4309
4310         * text2.C (setCharFont): adjust
4311         (setCounter): adjust
4312         (insertStringAsLines): adjust
4313
4314         * text.C (leftMargin): adjust
4315         (setHeightOfRow): adjust
4316
4317         * rowpainter.C (paintFirst): adjust
4318         (paintLast): adjust
4319
4320         * paragraph_funcs.C (depthHook): ParagraphList::iterators
4321         (outerHook): ditto
4322         (isFirstInSequence): ditto
4323         (getEndLabel): ditto
4324         (outerFont): adjust
4325
4326         * paragraph.C (getParLanguage): comment out some hard stuff.
4327
4328         * buffer.C (insertStringAsLines): take a ParagraphList as arg
4329         (sgmlError): ditto
4330         (simpleDocBookOnePar): ditto
4331         (makeDocBookFile): use ParagraphList::iterator
4332
4333         * CutAndPaste.C (pasteSelection): adjust
4334
4335 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
4336
4337         * text2.C (getFont): adjust
4338         (getLayoutFont): adjust
4339         (getLabelFont): adjust
4340
4341         * paragraph_funcs.C (TeXOnePar): adjust
4342
4343         * buffer.C (simpleLinuxDocOnePar): adjust
4344         (simpleDocBookOnePar): adjust
4345
4346         * CutAndPaste.C (pasteSelection): adjust
4347
4348         * BufferView.C (getEncoding): adjust
4349
4350         * paragraph_funcs.C (outerFont): prepare for a ParagraphList arg.
4351
4352 2003-04-16  John Levon  <levon@movementarian.org>
4353
4354         * lyxfind.C: use parlist stuff for search/changes
4355
4356 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
4357
4358         * undo_funcs.C (textHandleUndo): ajust (rather big adsjust this one)
4359
4360         * text2.C (deleteEmptyParagraphMechanism): adjust
4361
4362         * text2.[Ch] (ownerParagraph): delete func (both of them
4363
4364 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
4365
4366         * text_funcs.C (transposeChars): use ParagraphList::iterator here.
4367
4368 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
4369
4370         * ParagraphList.C: prepare for NO_NEXT
4371
4372 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
4373
4374         * text2.C (getFont): adjust
4375         (getLayoutFont): adjust
4376         (getLabelFont): adjust
4377
4378         * paragraph.C (getFont): adjust
4379         (getLabelFont): adjust
4380         (getLayoutFont): adjust
4381
4382         * paragraph_funcs.[Ch] (realizeFont): remove unneeded arguments.
4383
4384 2003-04-15  John Levon  <levon@movementarian.org>
4385
4386         From Angus Leeming
4387
4388         * lyx_main.C: handle Include in .ui files
4389
4390 2003-04-15  John Levon  <levon@movementarian.org>
4391
4392         * MenuBackend.C: make the doc files length shorter
4393
4394         * ToolbarBackend.h:
4395         * ToolbarBackend.C: handle toolbar placement flags,
4396         Minibuffer
4397
4398 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
4399
4400         * paragraph_pimpl.C (simpleTeXSpecialChars): take a outerfont arg,
4401         adjust
4402
4403         * paragraph_funcs.C (TeXOnePar): adjust
4404
4405         * paragraph.C (getLabelFont): add outerfont arg, adjust
4406         (getLayoutFont): ditto
4407         (simpleTeXOnePar): adjust
4408
4409         * paragraph_pimpl.C (realizeFont): delete func
4410
4411 2003-04-14  Alfredo Braunstein  <abraunst@libero.it>
4412
4413         * text2.C (beforeFullRowInset): added a bad getchar check, removed
4414         row argument, constify cur argument.
4415
4416 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
4417
4418         * text2.C (getFont): adjust
4419         (getLayoutFont): adjust
4420         (getLabelFont): adjust
4421
4422         * paragraph_funcs.C (TeXOnePar): adjust
4423         (outerFont): new func...
4424         (realizeFont): ...moved out from here, changed this to facilitate
4425         transition
4426
4427         * paragraph.C (getFont): take outerfont as arg, adjust
4428         (simpleTeXOnePar): add outerfont arg, adjust
4429
4430         * buffer.C (simpleLinuxDocOnePar): adjust
4431         (simpleDocBookOnePar): adjust
4432
4433         * CutAndPaste.C (pasteSelection): adjust
4434
4435         * BufferView.C (getEncoding): adjust
4436
4437 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
4438
4439         * text2.C (setCharFont): adjust
4440         (setCounter): adjust
4441
4442         * text.C (leftMargin): adjust
4443         (setHeightOfRow): adjust
4444
4445         * rowpainter.C (paintFirst): adjust
4446         (paintLast): adjust
4447
4448         * paragraph_pimpl.C (realizeFont): adjust
4449
4450         * paragraph.C (isFirstInSequence): move from here...
4451         * paragraph_funcs.C (isFirstInSequence): ...to here
4452
4453         * paragraph.C (outerHook): move from here...
4454         * paragraph_funcs.C (outerHook): ...to here
4455
4456         * paragraph.C (depthHook): move from here...
4457         * paragraph_funcs.C (depthHook): ...to here
4458
4459         * paragraph.C (getEndLabel): move from here...
4460         * paragraph_funcs.C (getEndLabel): ...to here
4461
4462         * text2.C (realizeFont): move from here...
4463         * paragraph_funcs.C (realizeFont): ...to here
4464
4465 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
4466
4467         * text3.C (gotoNextInset): use separate tmp vars for par and pos.
4468
4469 2003-04-14  Angus Leeming  <leeming@lyx.org>
4470
4471         * LColor.[Ch]: scrap LColor mathcursor.
4472
4473 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
4474
4475         * lyxlex.[Ch] (text): delete function
4476         * trans.C (Load): adjust
4477         * paragraph_funcs.C (readParToken): adjust
4478
4479 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
4480
4481         * lyxlex_pimpl.h: get rid of LEX_MAX_BUFF, change buff to be a
4482         vector<char> instead of a char[].
4483
4484         * lyxlex_pimpl.C (getString): adjust
4485         (next): adjust
4486         (lex): use getString
4487         (eatLine): adjust
4488         (nextToken): adjust
4489
4490         * lyxlex.C (text): use pimpl_->getString()
4491         (getBool): ditto
4492         (findToken): ditto
4493
4494 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
4495
4496         * text2.C (getInset): temp vars for cursor.par() and cursor.pos()
4497         (makeFontEntriesLayoutSpecific): temp var for par.size()
4498         (setLayout): temp var for ownerParagraphs().end()
4499         (fullRebreak): temp var for rows().end()
4500         (selectionAsString): temp var for boost::next(startpit), realize
4501         that the while really is a regular for loop.
4502         (cursorEnd): temp vars for cursor.row(), lastPos ++, only call
4503         setCursor in one place.
4504         (setParagraph): temp vr for ownerParagraphs().end()
4505         (updateCounters): make the while loop a for loop
4506         (cutSelection): temp var for ownerParagraphs().end()
4507         (updateInset): make the do {} while() a regular for loop
4508         (getCursorX): use temp vars
4509         (setCurrentFont): use temp vars
4510         (getColumnNearX): use temp vars
4511
4512 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
4513
4514         * text.C (transformChar): use temp var for getChar
4515         (computeBidiTables): use temp var for row->par()
4516         (fill): move temp vars for row->par() and pit->layout() earlier in
4517         the function.
4518         (labelFill): use temp var for row->par()
4519         (setHeightOfRow): do not allow rit to be RowList::end, get rid of
4520         asc and desc, realize that pit never changes and that firstpit is
4521         just a duplicate and not needed. Exchange rit->par() with pit in a
4522         lot of places.
4523         (breakAgain): use a temp var for boost::next(rit)
4524         (breakAgainOneRow): ditto
4525         (breakParagraph): use a temp var for rows().begin()
4526         (prepareToPrint): move nlh into minimal scope, use temp var for rit->par()
4527         (cursorRightOneWord): use temp var for cursor.par() and
4528         cursor.pos(), remove usage of tmpcursor.
4529         (cursorLeftOneWord): use temp var for cursor.par() and
4530         cursor.pos() only set cur at end of function.
4531
4532 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
4533
4534         * text.C, text2.C: exchange all usage of Paragraph::next with
4535         boost::next(ParagraphList::iterator)
4536
4537         * CutAndPaste.C (cutSelection): change 2. arg to a Paragraph*
4538
4539         * text2.C (cursorTop): simplify implementation
4540         (cursorBottom): ditto
4541         (setParagraph): use ParagraphList::iterator
4542         (setCurrentFont): adjust
4543         (getColumnNearX): adjust
4544         (cursorRight): adjust
4545         (cursorLeft): remove usage of Paragraph::previous
4546         (cursorUpParagraph): ditto
4547         (deleteEmptyParagraphMechanism): slight cleanup
4548
4549         * text.C (isBoundary): take a Paragraph const & instead of a
4550         pointer as arg.
4551         (addressBreakPoint): ditto
4552         (leftMargin): remove usage of Paragraph::previous.
4553         (setHeightOfRow): ditto
4554         (cursorLeftOneWord): ditto
4555         (selectNextWordToSpellcheck): ditto
4556         (Delete): ditto
4557         (backspace): ditto
4558         (breakParagraph): remove one usage of Paragraph::next
4559         (redoParagraph): ditto
4560         (acceptChange): ditto
4561         (insertChar): adjust
4562         (rowBreakPoint): adjust
4563
4564         * bufferview_funcs.C (toggleAndShow): adjust
4565
4566 2003-04-11  Alfredo Braunstein  <abraunst@libero.it>
4567
4568         * lyxrow.[Ch]: add a cached y position to a Row and Row::y()
4569         methods to access it.
4570         * lyxtext.h:
4571         * text.C: Added updateRowPositions to compute all row positions.
4572         Make top_y and getRowNearY() to use the cached y position
4573
4574 2003-04-11  John Levon  <levon@movementarian.org>
4575
4576         * text.C (rowBreakPoint): reintroduce the labelEnd
4577         checks, code copied from the row fill stuff. Deep voodoo.
4578
4579         * text.C (fill): add a comment and debugging for the
4580         next poor soul.
4581
4582 2003-04-11  John Levon  <levon@movementarian.org>
4583
4584         * text.C: make sure fullrow insets get wrapped to the next line,
4585         even when they're in a manual label
4586
4587 2003-04-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
4588
4589         * text2.C (insertParagraph): make it take ParagraphList::iterator
4590         as arg.
4591         (setLayout): make it return ParagraphList::iterator
4592         (redoParagraphs): ditto
4593         (setCounter): ditto
4594         (checkParagraph): ditto
4595
4596         * text.C (getRow): make getrow take ParagraphList::iterator as arg
4597
4598         * text2.C: adjust several funcs.
4599         (realizeFont): take a ParagraphList::iterator as arg.
4600         (getLayoutFont): ditto
4601         (getLabelFont): ditto
4602         (setCharFont): ditto
4603
4604         * text.C: adjust several funcs.
4605
4606 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
4607
4608         * text.C (selectNextWordToSpellcheck): don't accidentally
4609         skip insets
4610
4611 2003-04-10  John Levon  <levon@movementarian.org>
4612
4613         * ToolbarBackend.C (getIcon): special handling for
4614         LFUN_MATH_DELIM
4615
4616 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
4617
4618         * text2.C (cursorRight): a getChar assert fixed
4619
4620 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
4621
4622         * text2.C (getFont): change to take a ParagraphList::iterator
4623         instead of Paragraph*
4624         Adjust several functions.
4625
4626         * text.C (transformChar): change to take a ParagraphList::iterator
4627         instead of Paragraph*
4628         (singleWidth): ditto
4629         Adjust several functions.
4630
4631         * rowpainter.C: adjust several functions
4632         * rowpainter.h:store a ParagraphList::iterator and not a
4633         Paragraph&.
4634
4635
4636 2003-04-09  John Levon  <levon@movementarian.org>
4637
4638         * lyxfunc.C:
4639         * lfuns.h:
4640         * LyXAction.h:
4641         * LyXAction.C: remove LFUN_APROPOS, LFUN_GETTIP,
4642         and the "help" bits as well
4643
4644 2003-04-09  John Levon  <levon@movementarian.org>
4645
4646         * ToolbarBackend.h:
4647         * ToolbarBackend.C: allow multiple toolbars
4648
4649 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
4650
4651         * undo_funcs.C (setCursorParUndo): adjust
4652
4653         * text_funcs.C (transposeChars): adjust
4654
4655         * text3.C (gotoNextInset): adjust
4656         (dispatch): adjust
4657
4658         * text2.C (setLayout): adjust
4659         (changeDepth): adjust
4660         (setFont): adjust
4661         (redoParagraphs): adjust
4662         (selectionAsString): adjust
4663         (setParagraph): adjust
4664         (insertInset): adjust
4665         (cutSelection): adjust
4666         (copySelection): adjust
4667         (pasteSelection): adjust
4668         (insertStringAsLines): adjust
4669         (updateInset): adjust
4670         (setCursor): change to take a ParagraphList::iterator parameter
4671         (setCursorIntern): change to take a ParagraphList::iterator parameter
4672         (setCurrentFont): adjust
4673         (cursorLeft): adjust
4674         (cursorRight): adjust
4675         (deleteEmptyParagraphMechanism): adjust
4676
4677         * text.C (breakParagraph): adjust
4678         (insertChar): adjust
4679         (acceptChange): adjust
4680         (rejectChange): adjust
4681         (selectNextWordToSpellcheck): adjust
4682         (changeCase): adjust
4683         (Delete): adjust
4684         (backspace): adjust
4685
4686         * lyxfind.C (SearchForward): adjust
4687         (SearchBackward): adjust
4688         (nextChange): adjust
4689
4690         * lyxcursor.C (par): adjust
4691
4692         * lyxcursor.h: store a ParagraphList::iterator instead of a
4693         Paragraph*
4694
4695         * lyx_cb.C (getPossibleLabel): adjust
4696
4697         * bufferview_funcs.C (toggleAndShow): adjust
4698
4699         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
4700         (dispatch): adjust
4701
4702         * BufferView.C (removeAutoInsets): adjust
4703         (lockedInsetStoreUndo): adjust
4704
4705 2003-04-09  John Levon  <levon@movementarian.org>
4706
4707         * ToolbarBackend.C: try icon without argument
4708         if with argument fails
4709
4710 2003-04-08  John Levon  <levon@movementarian.org>
4711
4712         * ToolbarBackend.h:
4713         * ToolbarBackend.C: add getIcon(), handle tooltip,
4714         and change from "Icon" to "Item".
4715
4716 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
4717
4718         * BufferView.C (lockInset): another bad getchar crunched
4719
4720 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
4721
4722         * text2.C (changeDepth): do not setUndo on test_only (make undo work
4723         again)
4724
4725 2003-04-05  Alfredo Braunstein  <abraunst@libero.it>
4726
4727         * lyxfind.C (searchForward, searchBackwards): bug 782
4728
4729 2003-04-07  John Levon  <levon@movementarian.org>
4730
4731         * paragraph.C: remove dead comment
4732
4733         * text.C: remove troublesome depth-fiddling code
4734         in leftMargin() and rightMargin() (bug 1017)
4735
4736         * text.C: fix breaking of rows in nested lists
4737         (bug 1004)
4738
4739         * text2.C (updateCounters): fix up depth values
4740         (bug 1013)
4741
4742 2003-04-07  John Levon  <levon@movementarian.org>
4743
4744         * BufferView_pimpl.C: clear message when doc finishes resizing,
4745         and after a mouse event
4746
4747         * lyxfunc.C: clear message after exiting inset
4748
4749 2003-04-07  John Levon  <levon@movementarian.org>
4750
4751         * bufferview_funcs.C: show math status not outside
4752         status in the statusbar
4753
4754 2003-04-07  John Levon  <levon@movementarian.org>
4755
4756         * lyxfunc.C: note status changed after a depth change
4757
4758 2003-04-04  Angus Leeming  <leeming@lyx.org>
4759
4760         * LaTeX.h: move AuxInfo operator==, != out of line.
4761         Remove LaTeX virtual destructor; nothing derives from it.
4762         Move operator()() out of public area and rename it startscript().
4763         Change protected for private.
4764
4765 2003-04-04  Angus Leeming  <leeming@lyx.org>
4766
4767         * lyxfunc.C:
4768         * text2.C: remove unneeded #includes.
4769
4770 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
4771
4772         * text2.C (dEPM): fix the heigth of the next row
4773
4774 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
4775
4776         * text.C: squashed an invalid getChar requester + some ws changes
4777
4778 2003-04-03  John Levon  <levon@movementarian.org>
4779
4780         * bufferview_funcs.h:
4781         * bufferview_funcs.C:
4782         * lyxfunc.C:
4783         * lyxtext.h:
4784         * text2.C: make getStatus work for the env depth lfuns
4785
4786 2003-04-03  John Levon  <levon@movementarian.org>
4787
4788         * bufferview_funcs.h:
4789         * bufferview_funcs.C:
4790         * lyxfunc.C:
4791         * lyxtext.h:
4792         * text2.C: parlistize decDepth(), by merging it with incDepth()
4793
4794 2003-04-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
4795
4796         * lyxrow.h: store a ParagraphList::iterator instead of a
4797         Paragraph* and adjust other class functions to suit.
4798
4799         * lyxrow_funcs.C, text.C, text2.C, text3.C: adjust because of the
4800         above.
4801
4802 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
4803
4804         * text2.C (setCursor): do not anchor to cursor row for the time being
4805
4806 2003-04-02  John Levon  <levon@movementarian.org>
4807
4808         * LyXAction.C:
4809         * lfuns.h:
4810         * lyx_main.C:
4811         * lyxtext.h:
4812         * text.C:
4813         * text3.C: rename the "tab" lfuns. Remove tab support from normal text
4814
4815 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4816
4817         * paragraph.h: make ParagraphList and ParagraphList::iterator
4818         friends of Paragraph.
4819
4820         * buffer.C (makeLinuxDocFile): move towards ParagraphList
4821
4822         * ParagraphList.C: Use the private next_ and previous_ from
4823         Paragraph.
4824
4825 2003-04-01  John Levon  <levon@movementarian.org>
4826
4827         * ToolbarBackend.h:
4828         * ToolbarBackend.C:
4829         * Makefile.am: rename, remove defaults gunk
4830
4831         * MenuBackend.h:
4832         * MenuBackend.C: remove defaults gunk
4833
4834         * Languages.h:
4835         * Languages.C: remove defaults gunk
4836
4837         * lyx_main.h:
4838         * lyx_main.C: error out if files couldn't be found.
4839
4840 2003-04-02  John Levon  <levon@movementarian.org>
4841
4842         * text2.C: make incDepth() use parlist
4843
4844 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4845
4846         * undo_funcs.C (firstUndoParagraph): adjust
4847
4848         * text3.C (gotoInset): adjust
4849         (dispatch): adjust, and rewrite loop.
4850
4851         * text2.C (init): adjust, and rewrite loop.
4852         (redoParagraphs): adjust
4853         (updateInset): adjust, and rewrite loop.
4854         (deleteEmptyParagraphMechanism): adjust
4855
4856         * tabular.C (LyXTabular): adjust
4857         (SetMultiColumn): adjust
4858         (TeXRow): adjust
4859
4860         * lyxtext.[Ch] (ownerParagraph): delete function
4861         (ownerParagraphs): new function returns a ParagraphList.
4862
4863         * BufferView.C (removeAutoInsets): adjust
4864         (insertErrors): adjust
4865         (setCursorFromRow): adjust
4866
4867 2003-04-01  Angus Leeming  <leeming@lyx.org>
4868
4869         * BufferView_pimpl.C (buffer): ensure that the Layout is correct
4870         in the frontends.
4871
4872 2003-04-02  John Levon  <levon@movementarian.org>
4873
4874         * lyxtext.h:
4875         * text.C:
4876         * Makefile.am:
4877         * text_funcs.h:
4878         * text_funcs.C: make transposeChars a free function
4879
4880         * lyxrow_funcs.C: remove wrong comment
4881
4882 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4883
4884         * lyxtext.h: adjust
4885         * rowpainter.C: adjust
4886         * text.C: adjust
4887         * text2.C: adjust
4888         * text3.C: adjust
4889
4890         * lyxrow_funcs. [Ch]: new files
4891
4892         * lyxrow.[Ch]: remove next and previous pointers
4893         (next,previous): remove accessor functions
4894         (isParEnd): move to lyxrow_funcs
4895         (lastPos): move to lyxrow_funcs
4896         (nextRowIsAllInset): move to lyxrow_funcs
4897         (lastPrintablePos): move to lyxrow_funcs
4898         (numberOfSeparators): move to lyxrow_funcs
4899         (numberOfHfills): move to lyxrow_funcs
4900         (numberOfLabelHfills): move to lyxrow_funcs
4901         (hfillExpansion): move to lyxrow_funcs
4902
4903         * lyxfunc.C: adjust
4904
4905         * bufferview_funcs.C (toggleAndShow): adjust
4906
4907         * RowList.h: Remove class RowList from file leave just a
4908         std::list<Row>.
4909
4910         * RowList.C: delete file
4911
4912         * Makefile.am (lyx_SOURCES): remove RowList.C, add lyxrow_funcs.C
4913         and lyxrow_funcs.h
4914
4915 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4916
4917         * text3.C (cursorPrevious): adjust
4918         (cursorNext): adjust
4919         (dispatch): adjust
4920
4921         * text2.C (redoHeightOfParagraph): adjust
4922         (redoDrawingOfParagraph): adjust
4923         (setCursor): adjust
4924
4925         * text.C (breakParagraph): adjust
4926         (insertChar): adjust
4927         (backspace): adjust
4928
4929         * rowpainter.C (RowPainter): adjust
4930         (leftMargin): simplify and adjust
4931         (most rowpainter functions): adjust.
4932
4933         * rowpainter.h: store the row as RowList::iterator not as Row*
4934
4935         * lyxcursor.C (row): taka RowList::iterator as arg
4936         (irow): ditto
4937
4938         * lyxcursor.h: make the LyXCursor store RowList::iterators instead
4939         of Row*.
4940
4941 2003-04-01  Angus Leeming  <leeming@lyx.org>
4942
4943         * bufferview_funcs.C (string2font): rewrite so that it no longer uses
4944         stuff like bool Bool.
4945
4946 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
4947
4948         * text2.C (redoParagraphs): fix a bug (introduced by myself) and
4949         rewrite a loop
4950
4951 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4952
4953         * text2.C (redoParagraphs): rewrite (with help from Alfredo) for
4954         RowList::iterator.
4955
4956         * lyxtext.h (rows): drop one version and leve a const variant that
4957         returns a RowList::iterator.
4958
4959 2003-03-31  Angus Leeming  <leeming@lyx.org>
4960
4961         * text.C (fill): ensure that the signature is the same as that in the
4962         header file.
4963
4964 2003-03-31  Lars Gullik Bjønnes  <larsbj@gullik.net>
4965
4966         * text2.C (redoParagraphs): adjust
4967         (updateCounters): adjust
4968         (checkParagraph): adjust
4969         (getColumnNearX): adjust and reformat a bit.
4970
4971         * text.C (top_y): adjust
4972         (workWidth): adjust
4973         (leftMargin): adjust
4974         (prepareToPrint): adjust
4975         (getRow): adjust
4976         (getRowNearY): adjust
4977
4978         * lyxtext.h: make rowlist_ mutable.
4979
4980         * RowList.h: add const_iterator
4981         * RowList.C: adjust for RowList::const_iterator.
4982
4983         * text2.C (getCursorX): make it take a RowList::iterator as arg,
4984         adjust.
4985
4986 2003-03-31  John Levon  <levon@movementarian.org>
4987
4988         * lyxrc.h:
4989         * lyxrc.C: moved pdf_mode and use_gui to elsewhere
4990
4991         * lyx_main.C: set default fonts from using lyx_gui funcs
4992
4993         * exporter.C: pdf_mode moved from lyxrc
4994
4995         * lyx_cb.C:
4996         * lyxfunc.C: changes from above
4997
4998 2003-03-31  John Levon  <levon@movementarian.org>
4999
5000         * lyx_main.C: fix to the last fix
5001
5002 2003-03-31  John Levon  <levon@movementarian.org>
5003
5004         * bufferlist.C: "Load original" -> "Load Original"
5005
5006         * converter.C:
5007         * exporter.C:
5008         * importer.C:
5009         * lyx_main.C:
5010         * format.C: more Alert cleanups
5011
5012 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
5013
5014         * text2.C (removeParagraph): make it take a RowList::iterator as
5015         arg, adjust.
5016         (getColumnNearX): make it take a RowList::iterator as arg, adjust.
5017         (postRowPaint): make it take a RowList::iterator as arg, adjust.
5018
5019         * text.C (anchor_row): make it take a RowList::iterator as arg,
5020         adjust.
5021         (computeBidiTables): make it take a const reference to Row instead
5022         of Row pointer, adjust.
5023         (leftMargin): make it take a RowList::iterator as arg, adjust.
5024         (rowBreakPoint): adjust
5025         (breakAgainOneRow): make it take a RowList::iterator as arg,
5026         adjust.
5027         (prepareToPrint): make it take a RowList::iterator as arg, adjust.
5028
5029         * bufferview_funcs.C (toggleAndShow): adjust
5030
5031 2003-03-30  John Levon  <levon@movementarian.org>
5032
5033         * Makefile.am:
5034         * BoostFormat.h:
5035         * boost-inst.C: moved to support
5036
5037         * several files: changes as a result
5038
5039 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
5040
5041         * text2.C (LyXText): adjust.
5042         (init): adjust
5043         (removeRow): make it take a RowList::iterator as arg, adjust.
5044         (fullRebreak): adjust
5045         (deleteEmptyParagraphMechanism): adjust
5046         (clearPaint): adjust
5047         (postPaint): adjust
5048
5049         * text.C (top_y): adjust
5050         (setHeightOfRow): make it take a RowList::iterator as arg, adjust.
5051         (breakAgain): make it take a RowList::iterator as arg, adjust.
5052         (breakParagraph): adjust
5053         (insertChar): adjust
5054         (backspace): adjust
5055
5056         * lyxtext.h: make anchor_row_ be a RowList::iterator, ditto
5057         need_break_row, and refresh_row.
5058
5059         * text3.C (dispatch): adjust
5060
5061         * text2.C (checkParagraph): adjust
5062         (setCursor): adjust
5063         (setCursorFromCoordinates): adjust
5064
5065         * text.C (top_y): adjust
5066         (workWidth): adjust
5067         (getRow): make it return a RowList::iterator, adjust
5068         (getRowNearY): make it return a RowList::iterator, adjust
5069
5070         * text2.C (init): adjust
5071         (insertRow): remove function
5072         (insertParagraph): adjust
5073         (redoParagraphs): adjust
5074         (fullRebreak): adjust
5075         (updateCounters): adjust
5076
5077         * text.C (top_y): rewrite to use RowList iterators.
5078         (top_y): adjust
5079         (setHeightOfRow): rewrite to sue RowList iterators.
5080         (appendParagraph): adjust
5081         (breakAgain): adjust
5082         (breakAgainOneRow): adjust
5083         (breakParagraph): adjust
5084         (getRow): adjust
5085         (getRowNearY): adjust, and remove commented code.
5086
5087         * lyxtext.h (firstRow): delete function
5088         (lastRow): delete function
5089         (rows): new function (const and non-const versions.)
5090         (insertRow): delete function
5091
5092         * lyxrow.[Ch] (Row): new constructor taking a par and a pos
5093
5094 2003-03-29  John Levon  <levon@movementarian.org>
5095
5096         * BufferView_pimpl.C: always update scrollbar top
5097         because pasting text when we're anchored could mean we
5098         miss an update altogether
5099
5100 2003-03-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
5101
5102         * text2.C (init): use rowlist_.end() and not 0.
5103         (insertRow): change to take a RowList::iterator as arg, adjust
5104         for this.
5105         (insertParagraph): change to take a RowList::iterator as arg,
5106         adjust for this.
5107         (redoParagraphs): remove some debug msgs.
5108
5109         * text.C (appendParagraph): change to take a RowList::iterator
5110         arg, adjust for this.
5111         (breakAgain): add an assert
5112         (breakAgainOneRow): ditto
5113
5114 2003-03-29  John Levon  <levon@movementarian.org>
5115
5116         * text2.C: do not clear selection after inc/decDepth
5117         (bug 550)
5118
5119 2003-03-29  John Levon  <levon@movementarian.org>
5120
5121         * BufferView.C:
5122         * buffer.C: fix broken strerrors according to Lars
5123
5124 2003-03-29  John Levon  <levon@movementarian.org>
5125
5126         * converters.C: more Alert cleanups
5127
5128 2003-03-29  John Levon  <levon@movementarian.org>
5129
5130         * bufferview_funcs.C: remove pointless Alert
5131
5132         * buffer.C: fix confusing error message when
5133         a template is chmoded 000
5134
5135 2003-03-29  John Levon  <levon@movementarian.org>
5136
5137         * BufferView.C:
5138         * BufferView.h:
5139         * BufferView_pimpl.C: Alert fixes
5140
5141         * Makefile.am:
5142         * tabular.C:
5143         * tabular-old.C: remove unused table compat reading
5144
5145 2003-03-29  John Levon  <levon@movementarian.org>
5146
5147         * BufferView.C:
5148         * buffer.C:
5149         * lyx_cb.h:
5150         * lyx_cb.C: more Alert cleanups
5151
5152         * lyxfunc.C: don't allow chktex if not latex document
5153
5154 2003-03-29  John Levon  <levon@movementarian.org>
5155
5156         * lyx_cb.C:
5157         * BufferView.C:
5158         * buffer.C: warnings pushed down from support/,
5159         kill err_alert
5160
5161 2003-03-29  John Levon  <levon@movementarian.org>
5162
5163         * lyxfunc.C: safety check for C-r (revert)
5164
5165 2003-03-29  John Levon  <levon@movementarian.org>
5166
5167         * bufferlist.h:
5168         * bufferlist.C: several UI fixes using Alert::prompt.
5169         Fix the pointless looping quit code. Fix stupid revert
5170         behaviour (bug 938)
5171
5172         * lyxvc.h:
5173         * lyxvc.C:
5174         * lyx_cb.C: use Alert::prompt
5175
5176         * lyx_main.C: remove a silly question
5177
5178         * lyxfunc.C: remove a couple of silly questions,
5179         use Alert::prompt
5180
5181 2003-03-28  John Levon  <levon@movementarian.org>
5182
5183         * text2.C: fix bug 974 (End on empty par)
5184
5185 2003-03-28  John Levon  <levon@movementarian.org>
5186
5187         * BufferView_pimpl.C:
5188         * LyXAction.C:
5189         * lfuns.h: remove do-nothing math greek lfuns
5190
5191 2003-03-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
5192
5193         * lyxgluelength.h (isValidGlueLength): add default arg on
5194         parameter 2. Remove default arg from friend in class.
5195
5196         * lyxlength.h (isValidLength): add default arg on parameter 2.
5197         Remove default arg from friend in class.
5198
5199         * text2.C (LyXText): adjust, initialize refresh_row.
5200         (init): adjust
5201         (removeRow): adjust
5202         (insertRow): adjust
5203         (insertParagraph): adjst
5204         (redoParagraphs): adjust
5205         (fullRebreak): adjust
5206         (updateCounters): adjust
5207         (deleteEmptyParagraphMechanism): first attempt at fixing a
5208         crashing bug.
5209
5210         * text.C (top_y): adjust
5211         (setHeightOfRow): adjust
5212         (getRow): adjust
5213         (getRowNearY): adjust
5214
5215         * lyxtext.h: include RowList.h
5216         (~LyXText): not needed anymore, deleted.
5217         (firstRow): modify for RowList
5218         (lastRow): new function
5219         Delete firstrow and lastrow class variables, add a Rowlist
5220         rowlist_ class variable.
5221
5222         * lyxrow.C (lastPos): use empty() and not !size() to check if a
5223         paragraph is empty.
5224
5225         * RowList.C (insert): fix case where it == begin().
5226
5227 2003-03-26  Angus Leeming  <leeming@lyx.org>
5228
5229         * BufferView_pimpl.C (dispatch): changes to the Dialogs interface for
5230         the thesaurus dialog.
5231
5232 2003-03-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
5233
5234         * Makefile.am (lyx_SOURCES): add RowList.[Ch]
5235
5236         * RowList.[Ch]: new files
5237
5238         * ParagraphList.C (erase): handle the case where it == begin
5239         correctly.
5240
5241 2003-03-25  John Levon  <levon@movementarian.org>
5242
5243         * Makefile.am:
5244         * aspell_local.h:
5245         * aspell.C: add new aspell support
5246
5247         * lyxrc.h:
5248         * lyxrc.C: Make use_pspell be use_spell_lib. Always
5249         have it accessible.
5250
5251 2003-03-25  Angus Leeming  <leeming@lyx.org>
5252
5253         * lfuns.h:
5254         * LyXAction.C (init): new LFUN_INSET_INSERT.
5255
5256         * BufferView_pimpl.C (dispatch): split out part of the
5257         LFUN_INSET_APPLY block LFUN_INSET_INSERT.
5258
5259         * factory.C (createInset): act on LFUN_INSET_INSERT rather than
5260         LFUN_INSET_APPLY.
5261
5262 2003-03-25  Angus Leeming  <leeming@lyx.org>
5263
5264         * lyxfunc.C (dispatch): changes to the Dialogs interface.
5265
5266 2003-03-25  Alfredo Braunstein  <abraunst@libero.it>
5267
5268         * text2.C:
5269         * text3.C: remove useless row->height(0)
5270
5271 2003-03-25  John Levon  <levon@movementarian.org>
5272
5273         * lyxtext.h:
5274         * text2.C:
5275         * text3.C: rename the refreshing stuff to better names
5276
5277 2003-03-24  John Levon  <levon@movementarian.org>
5278
5279         * BufferView_pimpl.h:
5280         * BufferView_pimpl.C: update layout choice on a mouse
5281         press/release
5282
5283 2003-03-23  John Levon  <levon@movementarian.org>
5284
5285         * Makefile.am: fix commandtags.h reference
5286
5287 2003-03-22  John Levon  <levon@movementarian.org>
5288
5289         * BufferView_pimpl.C:
5290         * lyxtext.h:
5291         * rowpainter.C:
5292         * rowpainter.h:
5293         * text.C:
5294         * text2.C: remove CHANGED_IN_DRAW, it cannot happen now
5295
5296 2003-03-21  Alfredo Braunstein  <abraunst@libero.it>
5297
5298         * lyxtext.h:
5299         * text.C: take the rtl methods out of line
5300
5301 2003-03-21 André Pönitz <poenitz@gmx.net>
5302
5303         * metricsinfo.[Ch]: new files containing structures to be passed around
5304         during the two-phase-drawing...
5305
5306 2003-03-21 André Pönitz <poenitz@gmx.net>
5307
5308         * lyxtextclass.C: read 'environment' tag.
5309
5310 2003-03-20  Alfredo Braunstein  <abraunst@libero.it>
5311
5312         * text2.C (removeRow): fix bug 964
5313
5314 2003-03-20  John Levon  <levon@movementarian.org>
5315
5316         * rowpainter.C:
5317         * text.C:
5318         * text2.C: paint cleanups. Inset::update() dropped font
5319         parameter
5320
5321 2003-03-19  John Levon  <levon@movementarian.org>
5322
5323         * lyxfunc.C: only fitcursor/markDirty if available()
5324
5325 2003-03-19  John Levon  <levon@movementarian.org>
5326
5327         * commandtags.h: rename to ...
5328
5329         * lfuns.h: ... this, and renumber / cleanup
5330
5331 2003-03-19  John Levon  <levon@movementarian.org>
5332
5333         * lyxfunc.C: mark buffer dirty if we executed a "dirtying" lfun.
5334         fit the cursor after an lfun
5335
5336         * BufferView.h:
5337         * BufferView.C:
5338         * BufferView_pimpl.h:
5339         * BufferView_pimpl.C: remove BufferView::FITCUR/CHANGE
5340
5341         * LyXAction.C: layout-character should have ReadOnly
5342
5343         * ParagraphParameters.C:
5344         * buffer.C:
5345         * bufferview_funcs.C:
5346         * lyx_cb.C:
5347         * lyxfind.C:
5348         * lyxtext.h:
5349         * text.C:
5350         * text2.C:
5351         * text3.C:
5352         * undo_funcs.C: changes from above
5353
5354 2003-03-18  John Levon  <levon@movementarian.org>
5355
5356         * BufferView_pimpl.C (scrollDocView): add updateLayoutChoice(),
5357         remove it from update()
5358
5359         * lyxfunc.C: update layout choice after an lfun
5360
5361         * text3.C: remove extra updateLayoutChoice()s
5362
5363 2003-03-18  John Levon  <levon@movementarian.org>
5364
5365         * text.C: top_y change means full repaint, fix
5366         a drawing bug with cursor movement
5367
5368 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
5369
5370         * lyxtext.h:
5371         * text.C:
5372         * text2.C: anchor row on setCursor
5373
5374 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
5375
5376         * lyxtext.h: remove almost all mutable keywords
5377         * text.C:
5378         * text2.C:
5379         * text3.C: remove const keywords accordingly
5380
5381 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
5382
5383         * paragraph_funcs.C (TeXDeeper): reduce number of args, move into
5384         anon namespace
5385         (TeXEnvironment): ditto
5386         (TeXOnePar): ditto
5387
5388 2003-03-17  John Levon  <levon@movementarian.org>
5389
5390         * text.C (rowBreakPoint): remove attempt to fix displayed
5391         math insets inside a manual label
5392
5393 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
5394
5395         * lyxtext.h: remove BufferView* as first arg from almost all class
5396         functions.
5397         * other files: adjust.
5398
5399 2003-03-17  John Levon  <levon@movementarian.org>
5400
5401         * lyxtext.h:
5402         * undo_funcs.C:
5403         * text2.C: more paint cleanups
5404
5405         * BufferView_pimpl.C: screen prototype changed, use postPaint etc.
5406
5407         * rowpainter.h:
5408         * rowpainter.C: remove "smart" background painting code
5409
5410 2003-03-16  John Levon  <levon@movementarian.org>
5411
5412         * lyxtext.h:
5413         * text.C:
5414         * text2.C:
5415         * text3.C: add helper functions for setting refresh_row/y
5416
5417 2003-03-14  Kayvan Sylvan  <kayvan@sylvan.com>
5418
5419         * paragraph_pimpl.C (simpleTeXSpecialChars): Added fix for the
5420         newline inset which *can* get inserted in the pass_thru layouts.
5421         This is primarily for literate documents.
5422
5423 2003-03-14  Dekel Tsur  <dekelts@tau.ac.il>
5424
5425         * buffer.C: increment LYX_FORMAT to 223
5426
5427 2003-03-14 André Pönitz <poenitz@gmx.net>
5428
5429         * textclass.h: prepare for environment handling, ws changes
5430         * lyxlayout.C: read latexheader and latexfooter tags
5431
5432 2003-03-14  John Levon  <levon@movementarian.org>
5433
5434         * text2.C: rewrite ::status() a bit
5435
5436 2003-03-13  John Levon  <levon@movementarian.org>
5437
5438         * lyxtext.h: add some docs
5439
5440 2003-03-13  John Levon  <levon@movementarian.org>
5441
5442         * lyxtext.h:
5443         * text.C:
5444         * text2.C:
5445         * text3.C: remove pointless 2nd arg to setHeightOfParagraph()
5446
5447 2003-03-13  John Levon  <levon@movementarian.org>
5448
5449         * text3.C: fix appendix redrawing
5450
5451 2003-03-13  John Levon  <levon@movementarian.org>
5452
5453         * text.C (setHeightOfRow):
5454         * rowpainter.h:
5455         * rowpainter.C: make appendix mark have the text
5456           "Appendix" so the user knows what it is
5457
5458         * LColor.h:
5459         * LColor.C: s/appendixline/appendix/ from above
5460
5461 2003-03-13  John Levon  <levon@movementarian.org>
5462
5463         * paragraph_pimpl.C: fix Andre's backing out of the strong assertion
5464
5465         * text.C: fix a getChar(pos) bug properly
5466
5467 2003-03-13  Angus Leeming  <leeming@lyx.org>
5468
5469         * commandtags.h:
5470         * LyXAction.C (init): new LFUNs PARAGRAPH_APPLY and PARAGRAPH_UPDATE.
5471         Probably only temporary. Let's see how things pan out.
5472
5473         * BufferView.C (unlockInset):
5474         * BufferView_pimpl.C (fitCursor):
5475         replace Dialogs::updateParagraph with dispatch(LFUN_PARAGRAPH_UPDATE).
5476
5477         * BufferView_pimpl.C (dispatch): code for LFUNs LAYOUT_PARAGRAPH,
5478         PARAGRAPH_UPDATE, PARAGRAPH_APPLY.
5479
5480         * ParagraphParameters.[Ch] (setParagraphParams, params2string):
5481         new functions that convert ParagraphParameters to and from a string.
5482
5483         * lyxfunc.C (dispatch): move LFUN_LAYOUT_PARAGRAPH to
5484         BufferView::Pimpl's dispatch.
5485         In LFUN_ESCAPE, dispatch LFUN_PARAGRAPH_UPDATE.
5486
5487 2003-03-13 André Pönitz <poenitz@gmx.net>
5488
5489         * lyxfunc.C:
5490         * text3.C:
5491         * factory.C: make it aware of InsetEnv
5492
5493 2003-03-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
5494
5495         * text2.C (setCursor): never ask for one past last
5496         (setCursor): add some debugging messages.
5497
5498         * text.C (singleWidth): never ask for one past last
5499         (singleWidth): ditto
5500         (leftMargin): ditto
5501         (rightMargin): ditto
5502         (rowBreakPoint): ditto
5503         (setHeightOfRow): ditto
5504         (prepareToPrint): ditto
5505
5506         * rowpainter.C (paintBackground): never ask for one past last
5507         (paintText): never ask for one past last
5508
5509         * paragraph_pimpl.C (getChar): make the assert stricter, never
5510         allow the one past last pos to be taken
5511
5512         * paragraph.C (getChar): ws changes only
5513
5514         * lyxrow.C (nextRowIsAllInset): never ask for one past last
5515         (numberOfSeparators): ditto
5516         (numberOfHfills): ditto
5517
5518 2003-03-12  John Levon  <levon@movementarian.org>
5519
5520         * author.h:
5521         * author.C:
5522         * bufferparams.h:
5523         * bufferparams.C:
5524         * paragraph_funcs.C: fix per-buffer authorlists
5525
5526 2003-03-12  John Levon  <levon@movementarian.org>
5527
5528         * text.C: fix newline in right address
5529
5530 2003-03-12  Angus Leeming  <leeming@lyx.org>
5531
5532         * BufferView_pimpl.C (dispatch): remove LFUNs from switch as they
5533         duplicate those in LyXFunc::dispatch.
5534
5535         * commandtags.h:
5536         * LyXAction.C:
5537         * ToolbarDefaults.C:
5538         rename LFUN_FREE as LFUN_FONTFREE_APPLY.
5539         Add LFUN_FONTFREE_UPDATE.
5540
5541         * lyxfunc.C (dispatch): code for LFUN_FREEFONT_APPLY,
5542         LFUN_FREEFONT_UPDATE, LFUN_LAYOUT_CHARACTER.
5543
5544         * bufferview_func.[Ch]: several new functions to facilliate
5545         transfer of data to and from the character dialog.
5546
5547 2003-03-12  John Levon  <levon@movementarian.org>
5548
5549         * buffer.C:
5550         * paragraph.h:
5551         * paragraph.C:
5552         * paragraph_funcs.C:
5553         * paragraph_pimpl.C:
5554         * sgml.C:
5555         * tabular.C:
5556         * text.C:
5557         * text3.C: remove META_NEWLINE in favour of an inset
5558
5559         * rowpainter.h:
5560         * rowpainter.C: remove paintNewline (done by inset)
5561
5562 2003-03-12  John Levon  <levon@movementarian.org>
5563
5564         * paragraph_pimpl.C: complain about bad getChar()s
5565         for a while at least
5566
5567 2003-03-12  John Levon  <levon@movementarian.org>
5568
5569         * buffer.h:
5570         * buffer.C: move paragraph read into a separate function,
5571         a little renaming to reflect that.
5572
5573         * bufferparams.h:
5574         * bufferparams.C: remove the author_ids map, not necessary now
5575
5576         * factory.h:
5577         * factory.C: moved Buffer::readInset to here
5578
5579         * paragraph_funcs.h:
5580         * paragraph_funcs.C: readParagraph free function moved from
5581         buffer.C
5582
5583         * tabular.C: name change
5584
5585 2003-03-12  John Levon  <levon@movementarian.org>
5586
5587         * buffer.C:
5588         * ParagraphParameters.C: move par params input to
5589         a read() method
5590
5591         * lyxlex_pimpl.C: make nextToken()/next() after a pushToken()
5592         behave like a normal read from the stream wrt reading
5593         a line vs. a \\token
5594
5595 2003-03-12  John Levon  <levon@movementarian.org>
5596
5597         * paragraph.C:
5598         * ParagraphParameters.h:
5599         * ParagraphParameters.C: move output code to a
5600         ::write() method
5601
5602 2003-03-12  John Levon  <levon@movementarian.org>
5603
5604         * BufferView.C (insertLyXFile):
5605         * buffer.h:
5606         * buffer.C:
5607         * tabular.C: use a parlist iterator for creating the
5608           document.
5609
5610 2003-03-12  John Levon  <levon@movementarian.org>
5611
5612         * buffer.C: make current_change static local not
5613           static file-scope
5614
5615 2003-03-12  John Levon  <levon@movementarian.org>
5616
5617         * buffer.C: fix insertStringAsLines for change tracking
5618
5619 2003-03-12  John Levon  <levon@movementarian.org>
5620
5621         * BufferView.C:
5622         * tabular.C:
5623         * buffer.h:
5624         * buffer.C:
5625         * bufferparams.h:
5626         * bufferparams.C: move author list into params. Rename some
5627           functions. Move the header reading into a separate token
5628           loop. Move the header token reading into BufferParams.
5629
5630 2003-03-12  John Levon  <levon@movementarian.org>
5631
5632         * changes.C: put debug inside lyxerr.debugging() checks
5633
5634 2003-03-11 André Pönitz <poenitz@gmx.net>
5635
5636         * factory.C: make it aware of InsetHFill
5637
5638 2003-03-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5639
5640         * buffer.C (latexParagraphs): move function from here...
5641         * paragraph_funcs.C (latexParagraphs): ...to here, and adjust
5642         args.
5643
5644 2003-03-10  Angus Leeming  <leeming@lyx.org>
5645
5646         * LyXAction.C (init): fix bug in poplating array with multiple entries
5647         with the same LFUN (spotted by JMarc).
5648
5649 2003-03-10  John Levon  <levon@movementarian.org>
5650
5651         * text.C:
5652         * text2.C: move getColumnNearX() near its
5653         only call site
5654
5655 2003-03-10  John Levon  <levon@movementarian.org>
5656
5657         * text.C: fix break before a minipage
5658
5659 2003-03-10  John Levon  <levon@movementarian.org>
5660
5661         * text.C: fix the last commit
5662
5663 2003-03-09  John Levon  <levon@movementarian.org>
5664
5665         * lyxtext.h:
5666         * text.C:
5667         * text2.C: clean up nextBreakPoint (now rowBreakPoint). Fix
5668         bug 365 (don't break before insets unless needed). Don't
5669         return a value > last under any circumstances.
5670
5671 2003-03-09  Angus Leeming  <leeming@lyx.org>
5672
5673         * BufferView_pimpl.C (trackChanges, dispatch): call
5674         Dialogs::show("changes") rather than Dialogs::showMergeChanges().
5675
5676 2003-03-09  Angus Leeming  <leeming@lyx.org>
5677
5678         * lyxfunc.C (dispatch): call Dialogs::show("about") rather
5679         than Dialogs::showAboutlyx().
5680
5681 2003-03-09  Angus Leeming  <leeming@lyx.org>
5682
5683         * factory.C (createInset): call Dialogs::show("tabularcreate") rather
5684         than Dialogs::showTabularCreate().
5685
5686 2003-03-09  John Levon  <levon@movementarian.org>
5687
5688         * lyxtext.h:
5689         * text.C:
5690         * text2.C: 3rd arg to nextBreakPoint was always the same.
5691           Use references.
5692
5693 2003-03-08  John Levon  <levon@movementarian.org>
5694
5695         * lyxrow.C:
5696         * paragraph.C:
5697         * paragraph.h:
5698         * rowpainter.C:
5699         * text.C:
5700         * text2.C: Remove the "main" bit from the "main body"
5701           notion.
5702
5703 2003-03-08  John Levon  <levon@movementarian.org>
5704
5705         * text.C (leftMargin): The left margin of an empty
5706         manual label paragraph should not include the label width
5707         string length.
5708
5709         * text.C (prepareToPrint): don't attempt to measure hfills
5710         for empty manual label paragraphs - the answer should be 0
5711
5712 2003-03-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
5713
5714         * CutAndPaste.C: remove commented code and reindent.
5715
5716 2003-03-08  John Levon  <levon@movementarian.org>
5717
5718         * lyxfunc.h:
5719         * lyxfunc.C: move reloadBuffer()
5720
5721         * BufferView.h:
5722         * BufferView.C: to here
5723
5724         * lyxvc.C: add comment
5725
5726         * vc-backend.h:
5727         * vc-backend.C: call bv->reload() to avoid
5728           getStatus() check on MENURELOAD
5729
5730 2003-03-07  Dekel Tsur  <dekelts@tau.ac.il>
5731
5732         * LaTeX.C (run): Fix a bug where the DVI file was not updated due
5733         to an old format .dep file.
5734
5735 2003-03-07  Angus Leeming  <leeming@lyx.org>
5736
5737         * text3.C (dispatch): remove the 'gross hack' of calling inset->edit
5738         when the LFUN_MOUSE_RELEASE should have been handled by
5739         inset->localDispatch.
5740
5741 2003-03-07  Angus Leeming  <leeming@lyx.org>
5742
5743         * BufferView_pimpl.C (dispatch):
5744         * LyXAction.C (init):
5745         * ToolbarDefaults.C (init):
5746         * commandtags.h:
5747         * lyxfunc.C (getStatus):
5748         remove LFUN_INSET_GRAPHICS.
5749
5750         * factory.C (createInset): add "graphics" to LFUN_INSET_APPLY.
5751
5752 2003-03-07  Angus Leeming  <leeming@lyx.org>
5753
5754         * commandtags.h:
5755         * LyXAction.C (init):
5756         * lyxfunc.C (getStatus): remove LFUN_REF_INSERT.
5757
5758         * lyxfunc.C (getStatus): add LFUN_DIALOG_SHOW_NEW_INSET to switch.
5759
5760         * commandtags.h:
5761         * LyXAction.C: add LFUN_INSET_DIALOG_UPDATE.
5762
5763         * lyxfunc (dispatch): on LFUN_DIALOG_UPDATE, pass the 'open' inset's
5764         localDispatch method LFUN_INSET_DIALOG_UPDATE.
5765
5766 2003-03-07  Angus Leeming  <leeming@lyx.org>
5767
5768         * lyxfunc.C (dispatch): add "include" to LFUN_SHOW_NEW_INSET and
5769         remove "ert".
5770
5771 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
5772
5773         * ParagraphList.C (front): new function
5774         (back): implement
5775
5776 2003-03-06  Alfredo Braunstein  <abraunst@libero.it>
5777
5778         * lyxtext.h (top_y): added these 2 methods, and private vars top_row_
5779         and top_row_offset_. removed var first_y.
5780         * text.C (top_y):
5781         * text2.C (LyXText, removeRow):
5782         * text3.C:
5783         * BufferView_pimpl.C:
5784         use these methods instead of using first_y
5785
5786 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
5787
5788         * text2.C (pasteSelection): adjust for checkPastePossible
5789
5790         * CutAndPaste.C: remove Paragraph * buf and replace with
5791         ParagraphList paragraphs.
5792         (DeleteBuffer): delete
5793         (cutSelection): change the tc type to textclass_type
5794         (copySelection): change the tc type to textclass_type
5795         (copySelection): adjust for ParagraphList
5796         (pasteSelection): change the tc type to textclass_type
5797         (pasteSelection): adjust for Paragraphlist
5798         (nrOfParagraphs): simplify for ParagraphList
5799         (checkPastePossible): simplify for ParagraphList
5800         (checkPastePossible): remove unused arg
5801
5802         * ParagraphList.C (insert): handle the case where there are no
5803         paragraphs yet.
5804
5805         * CutAndPaste.h: make CutAndPaste a namespace.
5806
5807         * text3.C (dispatch): adjust
5808
5809         * text.C (breakParagraph): add a ParagraphList as arg
5810
5811         * paragraph_funcs.C (breakParagraph): change to take a
5812         BufferParams and a ParagraphList as args.
5813         (breakParagraphConservative): ditto
5814         (mergeParagraph): ditto
5815         (TeXDeeper): add a ParagraphList arg
5816         (TeXEnvironment): ditto
5817         (TeXOnePar): ditto
5818
5819         * buffer.C (readLyXformat2): adjust
5820         (insertStringAsLines): adjust
5821         (latexParagraphs): adjust
5822
5823         * CutAndPaste.C (cutSelection): use 'true' not '1' as truth value.
5824         (cutSelection): adjust
5825         (pasteSelection): adjust
5826
5827         * BufferView_pimpl.C (insertInset): adjust
5828
5829 2003-03-05  Angus Leeming  <leeming@lyx.org>
5830
5831         * commandtags.h:
5832         * LyXAction.C (init):
5833         * BufferView_pimpl.C (dispatch):
5834         * lyxfunc.C (getStatus):
5835         remove LFUN_CHILD_INSERT.
5836
5837         * factory.C (createInset): add "include" to LFUN_INSET_APPLY.
5838
5839 2003-03-05  Angus Leeming  <leeming@lyx.org>
5840
5841         * commandtags.h:
5842         * LyXAction.C (init):
5843         * src/factory.C (createInset):
5844         * lyxfunc.C (getStatus):
5845         * text3.C (dispatch):
5846         remove LFUN_INSET_EXTERNAL and LFUN_INSERT_URL
5847
5848         * factory.C (createInset): add "external" to LFUN_INSET_APPLY.
5849
5850 2003-03-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
5851
5852         * ParagraphList.C (insert): handle insert right before end()
5853         (erase): fix cases where it can be first or last paragraph.
5854
5855 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
5856
5857         * paragraph_funcs.C (TeXEnvironment): remove all usage of
5858         Paragraph::next and Paragraph::previous
5859         (TeXOnePar): ditto
5860
5861         * text.C (breakParagraph): adjust
5862
5863         * paragraph_funcs.C (breakParagraph): take a Buffer* instead of a
5864         BufferParams& as arg.
5865         (breakParagraph): use ParagraphList::insert
5866         (breakParagraphConservative): take a Buffer* instead of a
5867         BufferParams& as arg.
5868         (breakParagraphConservative): use ParagraphList::insert.
5869
5870         * buffer.C (insertStringAsLines): un-const it
5871         (insertStringAsLines): adjust
5872
5873         * ParagraphList.C (insert): new function
5874
5875         * CutAndPaste.C (pasteSelection): adjust
5876
5877         * text.C (backspace): adjust
5878
5879         * tabular.C (SetMultiColumn): adjust
5880
5881         * CutAndPaste.C (cutSelection): adjust
5882         (pasteSelection): adjust
5883
5884         * tabular.C (SetMultiColumn): make it take a Buffer* instead of a
5885         Buffer const * as arg
5886
5887         * ParagraphList.C (erase): new function
5888         * paragraph_funcs.C (mergeParagraph): use it
5889         (mergeParagraph): make it take a Buffer* instead of a
5890         BufferParams* as arg
5891
5892         * paragraph_funcs.C (breakParagraph): take ParagraphList::iterator
5893         as arg
5894         (breakParagraphConservative): ditto
5895
5896         * paragraph.h: remove the breakParagraph friend
5897
5898         * paragraph.C (eraseIntern): new function
5899         (setChange): new function
5900
5901         * paragraph_funcs.C (mergeParagraph): make it take a
5902         ParagraphList::iterator instead of a Paragraph *, adjust
5903         accordingly.
5904
5905         * paragraph.h: move an #endif so that the change tracking stuff
5906         also works in the NO_NEXT case.
5907
5908 2003-03-04  Angus Leeming  <leeming@lyx.org>
5909
5910         * commandtags.h:
5911         * LyXAction.C: new LFUN_INSET_MODIFY.
5912
5913         * BufferView_pimpl.C (dispatch): if an inset is found to be open
5914         on LFUN_INSET_APPLY, pass LFUN_INSET_MODIFY to its localDispatch.
5915
5916 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
5917
5918         * several files: ws changes only
5919
5920         * paragraph_funcs.C (TeXOnePar): take ParagraphList::iterator as args
5921         (TeXEnvironment): ditto
5922         (TeXDeeper): ditto
5923
5924         * buffer.C (makeLaTeXFile): adjust
5925         (latexParagraphs): make it take ParagraphList::iterator as args
5926
5927 2003-03-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
5928
5929         * buffer.C (latexParagraphs): adjust
5930
5931         * paragraph.C (TeXOnePar): move function...
5932         (optArgInset): move function...
5933         (TeXEnvironment): move function...
5934         * paragraph_pimpl.C (TeXDeeper): move function...
5935         * paragraph_funcs.C: ...here
5936
5937         * tabular.C (UseParbox): rewrite to use ParagraphList iterators.
5938
5939 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5940
5941         * buffer.C (readInset): remove compability code for old Figure and
5942         InsetInfo insets
5943
5944 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5945
5946         * buffer.C: ws changes
5947         (readInset):
5948
5949         * BufferView_pimpl.C: ditto
5950         * author.C: ditto
5951         * buffer.h: ditto
5952         * bufferlist.h: ditto
5953         * changes.h: ditto
5954         * lyxfunc.C: ditto
5955
5956 2003-02-28  Alfredo Braunstein <abraunst@libero.it>
5957
5958         * converter.[Ch]: split into itself +
5959         * graph.[Ch]
5960         * format.[Ch]
5961         * Makefile.am: += graph.[Ch] + format.[Ch]
5962         * MenuBackend.C
5963         * buffer.C
5964         * exporter.C
5965         * importer.C
5966         * lyx_main.C
5967         * lyxfunc.C
5968         * lyxrc.C: added #include "format.h"
5969
5970 2003-02-27  Angus Leeming  <leeming@lyx.org>
5971
5972         * BufferView_pimpl.C (dispatch): call a real, LyX dialog to insert
5973           a label.
5974
5975         * factory.C (createInset): add "label" to the factory.
5976
5977         * lyx_cb.[Ch] (getPossibleLabel): rewrite MenuInsertLabel to return the
5978           string and do no more.
5979
5980 2003-02-27  Angus Leeming  <leeming@lyx.org>
5981
5982         * commandtags.h:
5983         * LyXAction.C (init):
5984         * factory.C (createInset):
5985         * BufferView_pimpl.C (dispatch):
5986           collapse LFUN_XYZ_APPLY to LFUN_INSET_APPLY.
5987
5988         * lyxfunc.C (getStatus): remove LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY.
5989
5990         * lyxfunc.C (dispatch):
5991         * text3.C (dispatch): pass name to params2string.
5992
5993 2003-02-26  Angus Leeming  <leeming@lyx.org>
5994
5995         * BufferView_pimpl.C (dispatch): collapse the various LFUN_XYZ_APPLY
5996           blocks together.
5997           Rearrange the ~includes. Strip out the unnecessary ones.
5998
5999         * factory.C (createInset): reformat.
6000           create new insets for the various LFUN_XYZ_APPLY lfuns.
6001
6002 2003-02-26  John Levon  <levon@movementarian.org>
6003
6004         * lyxrow.h:
6005         * lyxrow.C: add isParStart,isParEnd helpers
6006
6007         * paragraph.h: make isInserted/DeletedText take refs
6008
6009         * paragraph_funcs.h:
6010         * paragraph_funcs.C: remove #if 0'd code
6011
6012         * lyxtext.h:
6013         * text3.C:
6014         * text2.C:
6015         * text.C: use lyxrow helpers above.
6016           Move draw and paint routines to RowPainter.
6017           Make several methods use refs not pointers.
6018           Make backgroundColor() const.
6019           Add markChangeInDraw(), isInInset().
6020           Merge changeRegionCase into changeCase.
6021           Make workWidth() shouldn't-happen code into an Assert.
6022
6023         * rowpainter.h:
6024         * rowpainter.C: new class for painting a row.
6025
6026         * vspace.h:
6027         * vspace.C: make inPixels take a ref
6028
6029 2003-02-26  Angus Leeming  <leeming@lyx.org>
6030
6031         * BufferView_pimpl.C (dispatch): use InsetCommand::localDispatch for
6032         LFUN_REF_APPLY.
6033
6034 2003-02-25  John Levon  <levon@movementarian.org>
6035
6036         * ispell.C: give the forked command a more accurate name
6037
6038 2003-02-22  John Levon  <levon@movementarian.org>
6039
6040         * toc.h:
6041         * toc.C: make TocItem store an id not a Paragraph *
6042           (bug #913)
6043
6044 2003-02-21  Angus Leeming  <leeming@lyx.org>
6045
6046         * commandtags.h: Retire LFUN_CITATION_INSERT, LFUN_CITATION_CREATE,
6047           LFUN_INSERT_BIBTEX, LFUN_BIBTEX_STYLE, LFUN_BIBDB_ADD, LFUN_BIBDB_DEL.
6048           Bring to life LFUN_DIALOG_SHOW_NEW_INSET, LFUN_DIALOG_SHOW_NEXT_INSET,
6049           LFUN_DIALOG_UPDATE, LFUN_DIALOG_HIDE, LFUN_DIALOG_DISCONNECT_INSET,
6050           LFUN_BIBITEM_APPLY, LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY,
6051           LFUN_INDEX_APPLY, LFUN_REF_APPLY, LFUN_TOC_APPLY, LFUN_URL_APPLY,
6052
6053         * BufferView_pimpl.C (dispatch):
6054         * LyXAction.C (init):
6055         * factory.C (createInset):
6056         * lyxfunc.C (getStatus, dispatch):
6057         * text3.C (dispatch): retire old LFUNs and bring new ones to life.
6058
6059 2003-02-21  Angus Leeming  <leeming@lyx.org>
6060
6061         * BufferView_pimpl.C (MenuInsertLyXFile):
6062         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
6063         * lyxfunc.C (menuNew, open, doImport):
6064           no longer pass a LyXView & to fileDlg.
6065
6066 2003-02-21  Angus Leeming  <leeming@lyx.org>
6067
6068         * BufferView_pimpl.C: replace insetbib.h with insetbibtex.h.
6069         * LyXAction.C: change, BIBKEY to BIBITEM.
6070         * buffer.C: replace insetbib.h with insetbibitem.h and insetbibtex.h.
6071         Change InsetBibKey to InsetBibitem.
6072         Change BIBKEY_CODE to BIBITEM_CODE.
6073         * commandtags.h: change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
6074         * factory.C: replace insetbib.h with insetbibitem.h.
6075         Change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
6076         * paragraph.C: replace insetbib.h with insetbibitem.h.
6077         * paragraph.[Ch]: change InsetBibKey to InsetBibitem.
6078         Change bibkey() to bibitem().
6079         * text.C: remove insetbib.h.
6080         * text2.C: replace insetbib.h with insetbibitem.h.
6081         change bibkey() to bibitem().
6082         * text3.C: remove insetbib.h.
6083         change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
6084
6085 2003-02-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6086
6087         * lyxrc.C (output): enclose user email in quotes (in case there are
6088         several words)
6089
6090 2003-02-18  John Levon  <levon@movementarian.org>
6091
6092         * buffer.h: add std::
6093
6094 2003-02-17  John Levon  <levon@movementarian.org>
6095
6096         * SpellBase.h:
6097         * ispell.h:
6098         * ispell.C:
6099         * pspell.h:
6100         * pspell.C: reworking. Especially in ispell, a large
6101           number of clean ups and bug fixes.
6102
6103         * lyxfunc.C: fix revert to behave sensibly
6104
6105 2003-02-17 André Pönitz <poenitz@gmx.net>
6106
6107         * LyXAction.C:
6108         * commandtags.h: new LFUN_INSERT_BIBKEY
6109
6110         * layout.h:
6111         * lyxlayout.C:
6112         * buffer.C:
6113         * factory.C:
6114         * text.C:
6115         * text2.C:
6116         * text3.C:
6117         * paragraph.[Ch]:
6118         * paragraph_func.C: remove special bibkey handling
6119
6120 2003-02-17  John Levon  <levon@movementarian.org>
6121
6122         * text.C (Delete): fix case where delete at the end of
6123           the very first paragraph would not merge the pars
6124
6125 2003-02-17  John Levon  <levon@movementarian.org>
6126
6127         * lyxrow.C: fix lastPrintablePos()
6128
6129 2003-02-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6130
6131         * bufferparams.C (writeLaTeX): add a std:here
6132
6133         * buffer.C: and remove a using directive there
6134
6135 2003-02-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6136
6137         * buffer.C (makeLaTeXFile): move the code that generates the
6138           preamble...
6139
6140         * bufferparams.C (writeLaTeX): ... in this new method
6141
6142         * LaTeXFeatures.C (getEncodingSet): make const
6143           (getLanguages): make const
6144
6145         * MenuBackend.C (binding): returns the binding associated to this
6146           action
6147           (add): sets the status of each item by calling getStatus. Adds
6148           some intelligence.
6149           (read): add support for OptSubMenu
6150           (expand): remove extra separator at the end of expanded menu
6151
6152 2003-02-15  John Levon  <levon@movementarian.org>
6153
6154         * BufferView.C:
6155         * BufferView_pimpl.C:
6156         * bufferlist.h:
6157         * bufferlist.C: remove pointless BufferStorage bloat. Remove
6158           inset code that had no actual effect. Remove unneeded status
6159           code.
6160
6161 2003-02-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6162
6163         * buffer.C (makeLaTeXFile): fix counting of number of line feeds
6164           in preamble
6165
6166 2003-02-14  Michael Schmitt <michael.schmitt@teststep.org>
6167
6168         * text.C (drawLengthMarker): also draw an arrow marker for
6169           symbolic lengths (medskip...)
6170
6171 2003-02-14  John Levon  <levon@movementarian.org>
6172
6173         * tabular.h:
6174         * tabular.C: better method names
6175
6176 2003-02-14  John Levon  <levon@movementarian.org>
6177
6178         * BufferView_pimpl.C:
6179         * bufferlist.C:
6180         * buffer.C:
6181         * converter.C:
6182         * lyx_cb.C:
6183         * lyxfunc.C: change prohibit/allowInput to busy(bool), as
6184           it's a more accurate name. Remove some pointless uses.
6185
6186 2003-02-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6187
6188         * text2.C (LyXText): change order of initilizers to shut off
6189           warnings
6190
6191 2003-02-14  John Levon  <levon@movementarian.org>
6192
6193         * buffer.C: use ParIterator for getParFromID()
6194
6195         * paragraph.h:
6196         * paragraph.C:
6197         * paragraph_pimpl.h:
6198         * paragraph_pimpl.C: remove unused getParFromID()
6199
6200 2003-02-14  John Levon  <levon@movementarian.org>
6201
6202         * buffer.C: remove some very old #if 0'd parse code
6203
6204 2003-02-13  John Levon  <levon@movementarian.org>
6205
6206         * text.h:
6207         * text.C:
6208         * text2.C: move hfillExpansion(), numberOfSeparators(),
6209           rowLast(), rowLastPrintable(), numberofHfills(),
6210           numberOfLabelHfills() ...
6211
6212         * lyxrow.h:
6213         * lyxrow.C: ... to member functions here.
6214
6215         * paragraph.h:
6216         * paragraph.C:
6217         * lyxtext.h:
6218         * text.C: remove LyXText::beginningOfMainBody(), and call
6219           p->beginningOfMainBody() directly. Move the check for
6220           LABEL_MANUAL into the latter.
6221
6222         * text.h:
6223         * text.C:
6224         * text2.C:
6225         * vspace.C:
6226         * BufferView.h:
6227         * BufferView.C: make defaultHeight() be a free defaultRowHeight()
6228
6229         * text.h:
6230         * text.C:
6231         * text2.C:
6232         * text3.C:
6233         * frontends/screen.C: move bv_owner private, introduce isTopLevel()
6234           to make it clear we're testing for outmost-lyxtext vs. inset's lyxtext
6235
6236 2003-02-13  John Levon  <levon@movementarian.org>
6237
6238         * CutAndPaste.C: remove debug
6239
6240 2003-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6241
6242         * paragraph.C (asString): remove two unused variables
6243
6244         * lyxtextclass.C (readTitleType):
6245           (Read):
6246           (LyXTextClass): handle new members titletype_ and titlename_
6247
6248         * buffer.C (latexParagraphs): honor LyXTextClass::titletype
6249
6250 2003-02-09  John Levon  <levon@movementarian.org>
6251
6252         * buffer.h:
6253         * buffer.C: replace hand-coded list with a map for the dep clean
6254
6255 2003-02-08  John Levon  <levon@movementarian.org>
6256
6257         * LaTeX.C: consolidate code into showRunMessage() helper
6258
6259 2003-02-08  John Levon  <levon@movementarian.org>
6260
6261         * lyxfind.C:
6262         * lyxtext.h:
6263         * text2.C:
6264         * BufferView.C: change setSelectionOverString() to setSelectionRange()
6265           and pass the size in explicitly
6266
6267         * BufferView_pimpl.h:
6268         * BufferView_pimpl.C:
6269         * BufferView.h:
6270         * BufferView.C: add getCurrentChange()
6271
6272         * BufferView_pimpl.h:
6273         * BufferView_pimpl.C: handle change lfuns
6274
6275         * CutAndPaste.C: merge the cut and copy code. Rework the cut code
6276           for changes. Mark pasted paragraphs as new.
6277
6278         * support/lyxtime.h:
6279         * support/lyxtime.C:
6280         * DepTable.C: abstract time_t as lyx::time_type
6281
6282         * LColor.h:
6283         * LColor.C: add colours for new text, deleted text, changebars
6284
6285         * LaTeXFeatures.C: add dvipost as a simple feature. Make the color
6286           package use "usenames" option.
6287
6288         * commandtags.h:
6289         * lyxfunc.C:
6290         * LyXAction.C: add change lfuns
6291
6292         * Makefile.am:
6293         * author.h:
6294         * author.C: author handling
6295
6296         * buffer.h:
6297         * buffer.C: add a per-buffer author list, with first entry as
6298           current author. Handle new .lyx tokens for change tracking. Output
6299           author list to .lyx file. Output dvipost stuff to .tex preamble.
6300           Bump lyx format to 222.
6301
6302         * bufferlist.h:
6303         * bufferlist.C: add setCurrentAuthor() to reset current author details
6304           in all buffers.
6305
6306         * bufferparams.h:
6307         * bufferparams.C: add param for tracking
6308
6309         * bufferview_funcs.C: output change info in minibuffer
6310
6311         * Makefile.am:
6312         * changes.h:
6313         * changes.C: add change-tracking structure
6314
6315         * debug.h:
6316         * debug.C: add CHANGES debug flag
6317
6318         * lyxfind.h:
6319         * lyxfind.C: add code for finding the next change piece
6320
6321         * lyxrc.h:
6322         * lyxrc.C: add user_name and user_email
6323
6324         * lyxrow.h:
6325         * lyxrow.C: add a metric for the top of the text line
6326
6327         * lyxtext.h:
6328         * text.C: implement accept/rejectChange()
6329
6330         * lyxtext.h:
6331         * text.C: paint changebars. Paint new/deleted text in the chosen
6332         colours. Strike through deleted text.
6333
6334         * paragraph.h:
6335         * paragraph.C:
6336         * paragraph_pimpl.h:
6337         * paragraph_pimpl.C: output change markers in .lyx and .tex. Pass
6338           in the current change to the insert functions. Rework erase to
6339           mark text as deleted, adding an eraseIntern() and a range-based
6340           erase(). Implement per-paragraph change lookup and
6341           accept/reject.
6342
6343         * paragraph_funcs.C: Fixup paste for change tracking.
6344
6345         * tabular.C: mark added row/columns as new.
6346
6347         * text.C: fix rowLast() to never return -1. Don't allow
6348           spellchecking of deleted text. Track transpose changes. Don't
6349           allow paragraph break or merge where appropriate.
6350
6351         * text2.C: leave cursor at end of selection after a cut.
6352
6353 2003-02-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6354
6355         * text.C (getLengthMarkerHeight):
6356         (drawLengthMarker): make the `symbolic' lengths (small/med/big)
6357         visible on screen too.
6358
6359 2003-02-07  John Levon  <levon@movementarian.org>
6360
6361         * text.C: s/LYX_PAPER_MARGIN/PAPER_MARGIN/g
6362
6363 2003-02-05  Angus Leeming  <leeming@lyx.org>
6364
6365         * lyxserver.C (read_ready): revert my patch of 11 September last year
6366         as it sends PC cpu through the roof. Presumably this means that
6367         the lyxserver will no longer run on an Alpha...
6368
6369 2003-01-30  Angus Leeming  <leeming@lyx.org>
6370
6371         * factory.C (createInset): create an InsetCommandParam of type "index"
6372         and use it to 'do the right thing'.
6373
6374         * text2.C (getStringToIndex): ensure that cursor position is always
6375         reset to the reset_cursor position.
6376
6377 2003-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6378
6379         * lyxfunc.C (getStatus): "buffer-export custom" should never be
6380         disabled.
6381
6382 2003-01-20  Michael Schmitt <michael.schmitt@teststep.org>
6383
6384         * bufferview.C:
6385         * lyxcb.C:
6386         * lyxfunc.C: Output messages with identical spelling, punctuation,
6387         and spaces
6388
6389 2003-01-22  Michael Schmitt  <Michael.Schmitt@teststep.org>
6390
6391         * MenuBackend.C (expandFormats): List only viewable export formats
6392         in "View" menu
6393
6394         * buffer.C (parseSingleLyXformat2Token): Fix misleading error
6395         message
6396
6397         * lyxfunc.C (getStatus): Make sure that formats other than
6398         "fax" can also be disabled
6399
6400 2003-01-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6401
6402         * text3.C (dispatch): put the lfuns that insert insets in 3
6403         groups, and call doInsertInset with appropriate arguments.
6404         (doInsertInset): new function, that creates an inset and inserts
6405         it according to some boolean parameters.
6406
6407 2003-01-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
6408
6409         * buffer.C (readFile): remember to pass on 'par' when calling
6410         readFile recursively.
6411
6412 2003-01-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6413
6414         * MenuBackend.C (expandFormats): add "..." to import formats.
6415
6416 2003-01-15  Dekel Tsur  <dekelts@tau.ac.il>
6417
6418         * paragraph.C (asString): Remove XForms RTL hacks.
6419
6420 2003-01-13  Alfredo Braunstein <abraunst@libero.it>
6421         * buffer.C: fix typo
6422
6423 2003-01-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
6424
6425         * Makefile.am (LIBS): delete var
6426         (lyx_LDADD): add @LIBS@ here instead.
6427
6428 2003-01-08  Michael Schmitt <Michael.Schmitt@teststep.org>
6429
6430         * Clarify the meaning of "wheel mouse jump"
6431
6432 2003-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6433
6434         * lyxfunc.C (getStatus): fix disabling of cut/paste of cells in a
6435         tabular in a float
6436
6437 2003-01-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6438
6439         * importer.C (Loaders): do not preallocate 3 elements in the
6440         vector, since one ends up with 6 elements otherwise
6441
6442 2002-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6443
6444         * DepTable.C (write): write the file name as last element of the
6445         .dep file (because it may contain spaces)
6446         (read): read info in the right order
6447
6448 2003-01-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6449
6450         * paragraph_pimpl.C (simpleTeXBlanks):
6451         (simpleTeXSpecialChars):
6452         * paragraph.C (simpleTeXOnePar): make `column' unsigned.
6453
6454         * tabular.C (latex): add some missing case statements. Reindent.
6455
6456         * MenuBackend.C (expandToc): remove unused variable.
6457
6458 2003-01-06  Michael Schmitt <Michael.Schmitt@teststep.org>
6459
6460         * LColor.C:
6461         * LaTeX.C:
6462         * LyXAction.C:
6463         * MenuBackend.C:
6464         * buffer.C:
6465         * exporter.C:
6466         * lyxfunc.C:
6467         * lyxrc.C: fix inconsistent usage of spaces, colons, capitalization,
6468         and the like.
6469
6470 2003-01-05  John Levon  <levon@movementarian.org>
6471
6472         * BufferView.h:
6473         * BufferView.C: add getEncoding()
6474
6475         * kbsequence.h:
6476         * kbsequence.C: do not store last keypress
6477
6478         * lyxfunc.h:
6479         * lyxfunc.C: store last keypress here instead. Pass encoding
6480           to getISOEncoded()
6481
6482 2002-12-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6483
6484         * lyx_main.C (init): remove annoying error message when following
6485         symbolic links (bug #780)
6486
6487 2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6488
6489         * text.C (insertChar):
6490         * lyxrc.C (getDescription): remove extra spaces
6491
6492 2002-12-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6493
6494         * lyxrc.C (getDescription): remove extra spaces
6495
6496 2002-12-20  John Levon  <levon@movementarian.org>
6497
6498         * text3.C: hack fix for page up/down across tall rows
6499
6500 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6501
6502         * text2.C (pasteEnvironmentType): avoid crash if layout-copy has
6503         not been invoked
6504
6505 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6506
6507         * lyxfunc.C (getStatus): query lyx_gui::getStatus() to catter for
6508         unimplemented lfuns. Make LFUN_THESAURUS_ENTRY status unknown if
6509         thesaurus is not compiled in
6510
6511 2002-12-17  Alfredo Braunstein <abraunst@libero.it>
6512
6513         * lyxfunc.C: correct  inversion of WORDFINDBACK/FORWARD
6514
6515 2002-12-16  Angus Leeming  <leeming@lyx.org>
6516
6517         * lyxrc.[Ch]:
6518         * lyx_main.C (init): remove override_x_deadkeys stuff.
6519
6520 2002-12-12  John Levon  <levon@movementarian.org>
6521
6522         * lyxfunc.C: use LyXKeySym->isText() as last-ditch
6523           insert. Only remove shift modifier under strict
6524           circumstances.
6525
6526 2002-12-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
6527
6528         * MenuBackend.C (expandToc): fix crash.
6529
6530 2002-12-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
6531
6532         * MenuBackend.C (expandToc): gettext on float names.
6533
6534 2002-12-03  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
6535
6536         * lyxlength.[Ch]: set default unit to UNIT_NONE,
6537         implement bool empty() [bug 490]
6538
6539 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
6540
6541         * text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
6542
6543 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6544
6545         * several files: ws changes
6546
6547 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6548
6549         * text2.C (setCounter): clean up a bit, use boost.format.
6550         (updateCounters): initialize par upon declaration.
6551
6552         * CutAndPaste.C (SwitchLayoutsBetweenClasses): set the layout also
6553         if the layout exists. We do not just store the layout any more.
6554         (SwitchLayoutsBetweenClasses): use boost.format
6555
6556 2002-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6557
6558         * converter.C (convert): if from and to files are the same, use a
6559         temporary files as intermediary
6560
6561 2002-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6562
6563         * commandtags.h:
6564         * LyXAction.C (init): remove LFUN_VECTOR (bug 662)
6565
6566 2002-11-27  Dekel Tsur  <dekelts@tau.ac.il>
6567
6568         * lyxrc.[Ch]: Add {roman,sans,typewriter}_font_foundry variables.
6569
6570 2002-11-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
6571
6572         * tabular.C (asciiPrintCell): use string(size, char) instead of
6573         explicit loop.
6574
6575         * sgml.C (openTag): fix order of arguments to string constructor
6576         (closeTag): ditto
6577
6578         * lyxfunc.C (dispatch): use boost.format
6579
6580         * lots of files: change "c" -> 'c'
6581
6582 2002-11-25  Dekel Tsur  <dekelts@tau.ac.il>
6583
6584         * encoding.C: Patch from Isam Bayazidi: Fix Arabic shaping.
6585
6586 2002-11-25  Angus Leeming  <leeming@lyx.org>
6587
6588         * BoostFormat.h: wrap code inside #ifdef __GNUG__ block.
6589
6590         * lyx_main.C (init): compile fix.
6591
6592 2002-11-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
6593
6594         * lyx_cb.C (start): boost.formatify
6595         do not include <iostream>
6596
6597         * lengthcommon.C: ws only
6598
6599         * boost-inst.C,BoostFormat.h: add more explict instantations
6600
6601 2002-11-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
6602
6603         * lots of files: handle USE_BOOST_FORMAT
6604
6605 2002-11-21  John Levon  <levon@movementarian.org>
6606
6607         * pspell.C: fix compile
6608
6609 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6610
6611         * lyxfunc.C (dispatch): use boost::format
6612         (open): ditto
6613         (doImport): ditto
6614
6615         * lyxfont.C (stateText): use boost::format
6616
6617         * lyx_main.C (LyX): use boost::format
6618         (init): ditto
6619         (queryUserLyXDir): ditto
6620         (readRcFile): ditto
6621         (parse_dbg): ditto
6622         (typedef boost::function): use the recommened syntax.
6623
6624         * importer.C (Import): use boost::format
6625
6626         * debug.C (showLevel): use boost::format
6627
6628         * converter.C (view): use boost::format
6629         (convert): ditto
6630         (move): ditto
6631         (scanLog): ditto
6632
6633         * bufferview_funcs.C (currentState): use boost::format
6634
6635         * bufferlist.C (emergencyWrite): use boost::format
6636
6637         * buffer.C (readLyXformat2): use boost::format
6638         (parseSingleLyXformat2Token): ditto
6639
6640         * Makefile.am (lyx_SOURCES): add BoostFormat.h and boost-inst.C
6641
6642         * LaTeX.C (run): use boost::format
6643
6644         * Chktex.C (scanLogFile): use boost::format
6645
6646         * BufferView_pimpl.C (savePosition): use boost::format
6647         (restorePosition): ditto
6648         (MenuInsertLyXFile): ditto
6649
6650         * BoostFormat.h: help file for explicit instation.
6651
6652 2002-11-21  Dekel Tsur  <dekelts@tau.ac.il>
6653
6654         * tabular.C (latex): Support for block alignment in fixed width
6655         columns.
6656
6657 2002-11-17  John Levon  <levon@movementarian.org>
6658
6659         * BufferView_pimpl.C:
6660         * lyx_cb.C:
6661         * lyxfunc.C: split filedialog into open/save
6662
6663 2002-11-08  Juergen Vigna  <jug@sad.it>
6664
6665         * undo_funcs.C (textHandleUndo): fixed problems with undo introduced
6666         by my last patch (hopefully).
6667
6668 2002-11-08  John Levon  <levon@movementarian.org>
6669
6670         * iterators.h:
6671         * iterators.C:
6672         * buffer.h:
6673         * buffer.C:
6674         * paragraph.h:
6675         * paragraph.C:
6676         * toc.h:
6677         * toc.C: ParConstIterator, and use it (from Lars)
6678
6679 2002-11-07  Ben Stanley  <bds02@uow.edu.au>
6680
6681         * lyxtextclass.[Ch]: revise and add doxygen comments
6682
6683 2002-11-07  John Levon  <levon@movementarian.org>
6684
6685         * text.C: fix progress value for spellchecker
6686
6687         * toc.C: fix navigate menu for insetwrap inside minipage
6688
6689         * paragraph_funcs.C: added FIXME for suspect code
6690
6691 2002-11-07  John Levon  <levon@movementarian.org>
6692
6693         * BufferView_pimpl.C: fix redrawing of insets
6694           on buffer switch
6695
6696 2002-11-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6697
6698         * text2.C (updateCounters): fix bug 668
6699
6700 2002-11-04  Dekel Tsur  <dekelts@tau.ac.il>
6701
6702         * text3.C (dispatch): Do not make the buffer dirty when moving the
6703         cursor.
6704
6705 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
6706
6707         * vc-backend.C: STRCONV
6708         (scanMaster): ditto
6709
6710         * text2.C (setCounter): STRCONV
6711
6712         * paragraph.C (asString): STRCONV
6713
6714         * lyxlength.C (asString): STRCONV
6715         (asLatexString): ditto
6716
6717         * lyxgluelength.C (asString): STRCONV
6718         (asLatexString): ditto
6719
6720         * lyxfunc.C (dispatch): STRCONV
6721         (open): ditto
6722
6723         * lyxfont.C (stateText): STRCONV
6724
6725         * importer.C (Import): STRCONV
6726
6727         * counters.C (labelItem): STRCONV
6728         (numberLabel): ditto
6729         (numberLabel): remove unused ostringstream o
6730
6731         * chset.C: STRCONV
6732         (loadFile): ditto
6733
6734         * bufferview_funcs.C (currentState): STRCONV
6735
6736         * buffer.C (readFile): STRCONV
6737         (asciiParagraph): ditto
6738         (makeLaTeXFile): ditto
6739
6740         * Spacing.C (writeEnvirBegin): STRCONV
6741
6742         * LaTeXFeatures.C (getLanguages): STRCONV
6743         (getPackages): ditto
6744         (getMacros): ditto
6745         (getBabelOptions): ditto
6746         (getTClassPreamble): ditto
6747         (getLyXSGMLEntities): ditto
6748         (getIncludedFiles): ditto
6749
6750         * LaTeX.C: STRCONV
6751         (run): ditto
6752         (scanAuxFile): ditto
6753         (deplog): ditto
6754
6755         * LString.h: add the STRCONV macros
6756
6757         * BufferView_pimpl.C (savePosition): STRCONV
6758         (restorePosition): ditto
6759         (MenuInsertLyXFile): ditto
6760
6761         * vc-backend.C (scanMaster): change from submatch[...] to
6762         submatch.str(...)
6763
6764         * funcrequest.C: include config.h
6765
6766         * factory.C: include config.h
6767
6768         * chset.C (loadFile): change from submatch[...] to submatch.str(...)
6769
6770         * box.C: include config.h
6771
6772         * LaTeX.C (scanAuxFile): change from submatch[...] to
6773         submatch.str(...)
6774         (deplog): ditto
6775
6776 2002-10-25  Angus Leeming  <leeming@lyx.org>
6777
6778         * BufferView_pimpl.C (cursorToggle): remove reapSpellchecker hack.
6779
6780         * ispell.[Ch] (setError): new method.
6781         * ispell.C (c-tor): move out child process into new class LaunchIspell.
6782         Use setError() insetead of goto END.
6783
6784         * lyx_cb.C (AutoSave): move out child process into new class
6785         AutoSaveBuffer.
6786
6787 2002-10-30  John Levon  <levon@movementarian.org>
6788
6789         * text3.C: make start appendix undoable
6790
6791 2002-10-24  Dekel Tsur  <dekelts@tau.ac.il>
6792
6793         * lyxlength.C (inPixels): Fix returned value.
6794
6795         * paragraph.C (TeXOnePar): Fix bug with language changes in nested
6796         environment.
6797
6798 2002-10-24  Angus Leeming  <leeming@lyx.org>
6799
6800         * lyxgluelength.h: no need to forward declare BufferParams
6801         or BufferView, so don't.
6802
6803 2002-10-21  John Levon  <levon@movementarian.org>
6804
6805         * BufferView.C: menuUndo ->undo, redo
6806
6807         * BufferView.h: document, remove dead, make some methods private
6808
6809         * paragraph_funcs.h:
6810         * paragraph_funcs.C:
6811         * CutAndPaste.C: s/pasteParagraph/mergeParagraph
6812
6813         * buffer.h:
6814         * buffer.C:
6815         * sgml.h:
6816         * sgml.C: move sgml open/close tag into sgml.C
6817
6818         * bufferview_funcs.h: unused prototype
6819
6820         * lyxfunc.h:
6821         * lyxfunc.C: remove unused
6822
6823         * lyxtext.h:
6824         * text.C: remove unused
6825
6826 2002-10-21  John Levon  <levon@movementarian.org>
6827
6828         * BufferView.h:
6829         * BufferView.C:
6830         * BufferView_pimpl.h:
6831         * BufferView_pimpl.C: fix mouse wheel handling based on
6832           patch from Darren Freeman
6833
6834 2002-10-09  Dekel Tsur  <dekelts@tau.ac.il>
6835
6836         * lyx_main.C (queryUserLyXDir): Fix automatic reconfiguration.
6837
6838 2002-10-17  Dekel Tsur  <dekelts@tau.ac.il>
6839
6840         * lyxlength.C (inPixels): Fix hanfling of negative length.
6841         Fix LyXLength::MU case.
6842
6843 2002-10-16  John Levon  <levon@movementarian.org>
6844
6845         * buffer.C: remove \\protected_separator parsing done by lyx2lyx now
6846
6847 2002-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6848
6849         * converter.C (view): add support for $$i (file name) and $$p
6850         (file path) for the viewer command. If $$i is not specified, then
6851         it is appended to the command (for compatibility with old syntax)
6852
6853 2002-10-14  Juergen Vigna  <jug@sad.it>
6854
6855         * undo_funcs.C (textHandleUndo): alter the order in which the
6856         new undopar is added to the LyXText, as we have to set first
6857         the right prev/next and then add it as otherwise the rebuild of
6858         LyXText is not correct. Also reset the cursor to the right paragraph,
6859         with this IMO we could remove the hack in "redoParagraphs()".
6860
6861 2002-10-09  Angus Leeming  <leeming@lyx.org>
6862
6863         * Bufferview_pimpl.C (dispatch): call InsetCitation::setLoadingBuffer
6864         to turn off an optimisation if a new inset is to be inserted.
6865
6866 2002-10-11 André Pönitz <poenitz@gmx.net>
6867
6868         * lyxtext.h: make some functions public to allow access
6869         from inset/lyxtext for handling LFUN_PRIOR/NEXT
6870
6871 2002-10-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6872
6873         * text3.C (dispatch): when changing layout, avoid an infinite loop
6874         [bug #652]
6875
6876 2002-10-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6877
6878         * lyxrc.C (read): treat a viewer or converter command of "none" as
6879         if it were empty.
6880
6881         * MenuBackend.C (expandFormats): for an update, also allow the
6882         formats that are not viewable
6883
6884         * lyx_main.C (queryUserLyXDir): re-run automatically the configure
6885         script if it is newer than the lyxrc.defaults in user directory
6886
6887 2002-10-07 André Pönitz <poenitz@gmx.net>
6888
6889         * text.C: Vitaly Lipatov's small i18n fix
6890
6891 2002-09-25  Angus Leeming  <leeming@lyx.org>
6892
6893         * ispell.h: doxygen fix.
6894
6895 2002-09-25  Dekel Tsur  <dekelts@tau.ac.il>
6896
6897         * buffer.h (readFile): Add a new argument to the method, to allow
6898         reading of old-format templates.
6899
6900 2002-09-24  Dekel Tsur  <dekelts@tau.ac.il>
6901
6902         * toc.C (getTocList): Get TOC from InsetWrap.
6903
6904 2002-09-16  John Levon  <levon@movementarian.org>
6905
6906         * lyxfunc.C: check tabular for cut/copy too
6907
6908 2002-09-12  John Levon  <levon@movementarian.org>
6909
6910         * LyXAction.C: tidy
6911
6912         * factory.h:
6913         * factory.C: add header
6914
6915         * paragraph_funcs.h:
6916         * paragraph_funcs.C: cleanup
6917
6918 2002-09-11  John Levon  <levon@movementarian.org>
6919
6920         * PrinterParams.h: odd/even default to true
6921
6922 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
6923
6924         * PrinterParams.h: update printer parameters for new xforms dialog
6925
6926 2002-09-11  Angus Leeming  <leeming@lyx.org>
6927
6928         * lyxserver.C (read_ready): re-write to make it more transparent
6929         and to make it work in coherent fashion under Tru64 Unix.
6930
6931 2002-09-11  André Pönitz <poenitz@gmx.net>
6932
6933         * commandtags.h:
6934         * LyXAction.C:
6935         * text3.C: implement LFUN_WORDSEL
6936
6937 2002-09-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
6938
6939         * lyxtextclass.h: don't include FloatList.h, forward declare instead.
6940         make floatlist_ a boost::shared_ptr<FloatList>
6941
6942         * lyxtextclass.C: include FloatList.h
6943         (LyXTextClass): initialize floatlist_
6944         (TextClassTags): add TC_NOFLOAT
6945         (Read): match "nofloat" to TC_NOFLOAT and use it.
6946         (readFloat): modify call to floatlist_
6947         (floats): ditto
6948         (floats): ditto
6949
6950         * FloatList.[Ch] (FloatList): remove commented out float
6951         initialization.
6952         (erase): new function
6953
6954 2002-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6955
6956         * MenuBackend.C (expandToc): fix crash when there is no document
6957         open
6958
6959 2002-09-10  Dekel Tsur  <dekelts@tau.ac.il>
6960
6961         * many files: Add insetwrap.
6962
6963 2002-09-09  John Levon  <levon@movementarian.org>
6964
6965         * text2.C: remove confusing and awkward depth wraparound
6966
6967 2002-09-09  John Levon  <levon@movementarian.org>
6968
6969         * BufferView_pimpl.C: Don't use empty arg for LFUN_CHILD_INSERT
6970
6971         * buffer.h:
6972         * buffer.C: remove getIncludeonlyList()
6973
6974         * paragraph.C:
6975         * lyxfunc.C: remove headers
6976
6977 2002-09-09  Juergen Vigna  <jug@sad.it>
6978
6979         * text.C (getColumnNearX): fix form Michael this is most
6980         probably a cut&paste bug.
6981
6982 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
6983
6984         * remove all INHERIT_LANG and INHERIT_LANGUAGE commented code
6985
6986         * LaTeXFeatures.C (useLayout): let tclass and lyt be a const
6987         references, ws changes.
6988
6989         * text2.C (init): update counters after init
6990         (insertParagraph): no need to set counter on idividual paragraphs.
6991         (setCounter): access the counters object in the textclass object
6992         on in the buffer object.
6993         (updateCounters): ditto
6994
6995         * lyxtextclass.C: include counters.h, add variable ctrs_ as
6996         shared_ptr<Counters> to avoid loading counters.h in all
6997         compilation units.
6998         (LyXTextClass): initialize ctrs_
6999         (TextClassTags): add TC_COUNTER, and ...
7000         (Read): use it here.
7001         (CounterTags): new tags
7002         (readCounter): new function
7003         (counters): new funtion
7004         (defaultLayoutName): return a const reference
7005
7006         * counters.C (Counters): remove contructor
7007         (newCounter): remove a couple of unneeded statements.
7008         (newCounter): simplify a bit.
7009         (numberLabel): some small formatting changes.
7010
7011         * buffer.[Ch]: remove all traces of counters, move the Counters
7012         object to the LyXTextClass.
7013
7014 2002-09-06  Alain Castera  <castera@in2p3.fr>
7015
7016         * tabular.C: uses \tabularnewline; uses >{...} construct from array
7017         package to set the horizontal alignment on fixed width columns.
7018
7019         * lyx_sty.C:
7020         * lyx_sty.h: added tabularnewline macro def.
7021
7022         * LaTeXFeatures.C: added NeedTabularnewline macro feature
7023
7024 2002-09-06  John Levon  <levon@movementarian.org>
7025
7026         * LyXAction.C: tooltips for sub/superscript
7027
7028         * MenuBackend.C: a bit more verbose
7029
7030         * lyxfunc.C: tiny clean
7031
7032         * undo_funcs.C: document undo_frozen
7033
7034 2002-09-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
7035
7036         * counters.C (Counters): add missing algorithm counter.
7037
7038         * text2.C (setCounter): lookup the counter with layouts latexname
7039         instead of by section number.
7040         (setCounter): use a hackish way to lookup the correct enum
7041         counter.
7042         a float name->type change
7043         reset enum couners with counter name directly instead of depth value.
7044
7045         * counters.C (Counters): remove the push_backs, change to use the
7046         float type not the float name.
7047         (labelItem): remove unused string, float name->type change
7048
7049         * counters.h: don't include vector, loose the enums and sects vectors
7050
7051 2002-09-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
7052
7053         * lyxtextclass.C (TextClassTags): add TC_FLOAT
7054         (Read): add float->TC_FLOAT to textclassTags
7055         (Read): and handle it in the switch
7056         (readFloat): new function
7057
7058         * FloatList.C (FloatList): comment out the hardcoded float
7059         definitions.
7060
7061         * lyxlayout.h: ws change.
7062
7063 2002-08-29  Dekel Tsur  <dekelts@tau.ac.il>
7064
7065         * buffer.C (readFile): Look for lyx2lyx in LYXDIR/lyx2lyx/
7066
7067 2002-09-03  Angus Leeming  <leeming@lyx.org>
7068
7069         * BufferView_pimpl.h: qualified name is not allowed in member
7070         declaration: WorkArea & Pimpl::workarea() const;
7071
7072         * factory.C: added using std::endl directive.
7073
7074         * text3.C: added using std::find and std::vector directives.
7075
7076 2002-08-29  André Pönitz <poenitz@gmx.net>
7077
7078         * lyxtext.h:
7079         * text2.C: remove unused member number_of_rows
7080
7081         * Makefile.am:
7082         * BufferView2.C: remove file, move contents to...
7083         * BufferView.C: ... here
7084
7085         * BufferView_pimpl.C:
7086         * factory.C: move more inset creation to factory
7087
7088         * vspace.C: avoid direct usage of LyXText, ws changes
7089
7090         * BufferView.[Ch]:
7091                 don't provide direct access to WorkArea, use two simple
7092                 acessors haveSelction() and workHeight() instead
7093
7094
7095 2002-08-29  John Levon  <levon@movementarian.org>
7096
7097         * BufferView_pimpl.C (dispatch): do not continue when
7098           no buffer
7099
7100 2002-08-28  André Pönitz <poenitz@gmx.net>
7101
7102         * commandtags.h: new LFUN_MOUSE_DOUBLE, LFUN_MOUSE_TRIPLE
7103
7104         * BufferView.h:
7105         * BufferView_pimpl.[Ch] move work area mouse event to LFUNs
7106
7107 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
7108
7109         * buffer.C: increment LYX_FORMAT to 221
7110
7111         * lyxrc.[Ch]: declare display_graphics as grfx::DisplayType and use
7112         grfx::displayTranslator.find(foo); include graphics/GraphicsTypes.h.
7113
7114         * lyxrc.C: use more "if (...) { } else { }" style (John's advice).
7115
7116         * lyx_main.C: call once the setDisplayTranslator(); is that okay here?
7117
7118 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7119
7120         * factory.C (createInset): use LyXTextClass::floats
7121
7122         * MenuBackend.C (expandFloatListInsert):
7123         (expandFloatInsert):
7124         (expandToc):
7125
7126         * text2.C (setCounter):
7127
7128         * LaTeXFeatures.C (useFloat):
7129         (getFloatDefinitions):
7130
7131         * BufferView_pimpl.C (dispatch): use LyXTextClass::floats()
7132
7133         * lyxtextclass.[Ch]: rename layoutlist to layoutlist_; add
7134         floatlist_, with accessor floats().
7135
7136         * FloatList.h: remove global FloatList
7137
7138 2002-08-26  André Pönitz <poenitz@gmx.net>
7139
7140         * paragraph.[Ch]: Martin's patch for the \end_deeper bug
7141
7142         * BufferView.h:
7143         * BufferView2.C:
7144         * BufferView_pimpl.C:
7145         * text3.C: mun hanfling of LFUN_CUT/COPY/PASTE to LyXText
7146
7147 2002-08-25  John Levon  <levon@movementarian.org>
7148
7149         * LyXAction.C: fix margin note description
7150
7151 2002-08-24  John Levon  <levon@movementarian.org>
7152
7153         * buffer.C:
7154         * bufferlist.C:
7155         * bufferview_funcs.C:
7156         * lyxfont.C:
7157         * undo_funcs.C: cleanups
7158
7159         * lyxfunc.C: disable CUT/COPY when no selection
7160
7161 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
7162
7163         * lyxlength.[Ch]: use better (three letters) mnemonics for percentage units
7164         in "enum UNIT"; e.g. PTW for Percent of TextWidth
7165
7166         * lyxrc.C: graphics display is now monochrome|grayscale|color|none.
7167         Add backward compatibility to "mono", "gray" and "no".
7168
7169 2002-08-24  Dekel Tsur  <dekelts@tau.ac.il>
7170
7171         * buffer.C (readFile): Always run lyx2lyx if file_format < LYX_FORMAT
7172         (and file_format >= 200).
7173
7174 2002-08-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7175
7176         * lyxlayout.C (Read): treat LT_OPTARGS as an integer, not a bool
7177
7178 2002-08-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7179
7180         * lyxfunc.C (getStatus): handle LFUN_INSET_OPTARG
7181
7182 2002-08-20  Martin Vermeer  <martin.vermeer@hut.fi>
7183
7184         * BufferView_pimpl.C:
7185         * LyXAction.C:
7186         * buffer.C:
7187         * commandtags.h:
7188         * lyxfunc.C:
7189         * paragraph.[Ch]:
7190         * text2.C:
7191         * insets/insetoptarg.[Ch]: Added "optional argument" collapsible
7192         inset and code to make it  work with the paragraph code. The inset
7193         can be anywhere in the paragraph, but will only do the expected
7194         thing in LaTeX if the layout file contains the parameter line
7195                         OptionalArgs    1
7196         (or more generally, a nonzero value) for that layout.
7197
7198 2002-08-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
7199
7200         * paragraph.h: remove the declaration of undefined counters class
7201         function.
7202
7203 2002-08-22  Martin Vermeer <martin.vermeer@hut.fi>
7204
7205         * text2.C (setCounter):  fixed enumeration mis-count as reported by
7206         Dr. Richard Hawkins.
7207
7208 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7209
7210         * paragraph_funcs.h: remove some unneeded includes
7211
7212         * text.C (backspace): pasteParagraph now in global scipe
7213
7214         * CutAndPaste.C (cutSelection): pasteParagraph now in global scope
7215         (pasteSelection): ditto
7216
7217         * paragraph.[Ch] (pasteParagraph): move function to global scope ...
7218         * paragraph_funcs.C (pasteParagraph): ... here
7219
7220 2002-08-20  André Pönitz <poenitz@gmx.net>
7221
7222         * commandtags.h: new LFUNs for swapping/copying table row/colums
7223
7224         * LyXAction.C:
7225         * lyxfunc.C: support for new lfuns
7226
7227 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
7228
7229         * tabular.C:
7230         * buffer.[Ch]: remove NO_COMPABILITY stuff
7231
7232 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
7233
7234         * boost.C (throw_exception): new file, with helper function for
7235         boost compiled without exceptions.
7236
7237         * paragraph.h:
7238         * lyxlength.C:
7239         * buffer.C:
7240         * ParameterStruct.h:
7241         * ParagraphParameters.[Ch]: remove NO_PEXTRA_REALLY stuff
7242
7243         * bufferlist.C (emergencyWriteAll): use boost bind
7244
7245         * BufferView_pimpl.C (moveCursorUpdate): remove inline
7246
7247         * text.C: include paragraph_funcs.h
7248         (breakParagraph): breakParagraph is now in global scope
7249
7250         * paragraph_funcs.[Ch]: new files
7251
7252         * paragraph.C (breakParagraph,breakParagraphConservative): move to
7253         global scope
7254
7255         * buffer.C: include paragraph_funcs.h
7256         (insertStringAsLines): breakParagraph is now in global scope
7257
7258         * Makefile.am (lyx_SOURCES): add paragraph_funcs.h and
7259         paragraph_funcs.C
7260
7261         * CutAndPaste.C: include paragraph_funcs.h
7262         (cutSelection): breakParagraphConservative is now in global scope
7263         (pasteSelection): ditto
7264
7265         * buffer.h: declare oprator== and operator!= for
7266         Buffer::inset_iterator
7267
7268         * bufferlist.C (emergencyWrite): don't use fmt(...)
7269
7270         * text3.C: add using std::endl
7271
7272         * BufferView.C (moveCursorUpdate): remove default arg
7273
7274 2002-08-20  André Pönitz <poenitz@gmx.net>
7275
7276         * buffer.[Ch]: move inline functions to .C
7277
7278         * BufferView2.C:
7279         * BufferView_pimpl.C:
7280         * text.C:
7281         * buffer.[Ch]: use improved inset_iterator
7282
7283         * buffer.C:
7284         * paragraph.[Ch]: write one paragraph at a time
7285
7286 2002-08-20  Dekel Tsur  <dekelts@tau.ac.il>
7287
7288         * BufferView_pimpl.C (dispatch): Insert insetbibtex with "plain"
7289         style if style is not specified.
7290
7291 2002-08-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7292
7293         * text2.C (setCounter): when searching for right label for a
7294         caption, make sure to recurse to parent insets (so that a caption
7295         in a minipage in a figure float works) (bug #568)
7296
7297 2002-08-20  André Pönitz <poenitz@gmx.net>
7298
7299         * text3.C: new file for LyXText::dispatch() and helpers
7300
7301         * BufferView.[Ch]: move text related stuff to LyXText::dispatch()
7302
7303         * funcrequest.[Ch]: add message() do avoid direct access to LyXFunc
7304
7305 2002-08-19  André Pönitz <poenitz@gmx.net>
7306
7307         * lyxtext.h:
7308         * text.C: new LyXText::dispatch()
7309
7310         * BufferView_pimpl.C: move handling of LFUN_APPENDIX to LyXText
7311
7312 2002-08-18  Dekel Tsur  <dekelts@tau.ac.il>
7313
7314         * text.C (paintRowSelection): Fix code for rows with both RTL & LTR text.
7315
7316         * BufferView_pimpl.C (smartQuote): Insert typewriter quotes in
7317         Hebrew text.
7318
7319 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7320
7321         * Makefile.am: use $(variables) instead of @substitutions@
7322
7323 2002-08-15  André Pönitz <poenitz@gmx.net>
7324
7325         * lyxfunc.C:
7326         * BufferView_pimpl.C: streamlining mathed <-> outer world
7327         interaction
7328
7329         * commandtags.h:
7330         * LyXAction.C: remove unused LFUN_MATH
7331
7332 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
7333
7334         * paragraph.[Ch]: add some NO_NEXT ifdefs.
7335
7336 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
7337
7338         * paragraph.C (Paragraph): reformat a bit
7339         (cutIntoMinibuffer): use builtin InsetList function instad of
7340         doing it manually.
7341         (getInset): ditto
7342
7343         * buffer.C: include boost/bind.hpp, add using std::for_each
7344         (writeFileAscii): use ParagraphList iterators
7345         (validate): use for_each for validate traversal of paragraphs
7346         (getBibkeyList): use ParagraphList iterators
7347         (resizeInsets): use for_each to resizeInsetsLyXText for all
7348         paragraphs.
7349         (getParFromID): use ParagraphList iterators
7350
7351         * BufferView2.C (lockInset): use paragraph list and iterators
7352
7353 2002-08-14  John Levon  <levon@movementarian.org>
7354
7355         * lyxserver.C: remove spurious xforms include
7356
7357 2002-08-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7358
7359         * lyxfunc.C (getStatus): disable math-extern outside of math mode
7360
7361 2002-08-13  André Pönitz <poenitz@gmx.net>
7362
7363         * LyXAction.[Ch]:
7364         * lyxfunc.C: further cleaning
7365
7366 2002-08-13  André Pönitz <poenitz@gmx.net>
7367
7368         * funcrequest.h: new constructor
7369
7370         * funcrequest.C: move stuff here from .h
7371
7372         * Makefile.am:
7373         * BufferView_pimpl.C:
7374         * LyXAction.C:
7375         * toc.C:
7376         * lyxfunc.C: subsequent changes
7377
7378         * lyxfunc.h: new view() member function
7379
7380         * lyxfunc.C: subsequent changes
7381
7382 2002-08-13  Angus Leeming  <leeming@lyx.org>
7383
7384         * BufferView2.C:
7385         * BufferView_pimpl.C:
7386         * buffer.C:
7387         * converter.C:
7388         * importer.C:
7389         * lyxfunc.C:
7390         * lyxvc.C:
7391         * toc.C:
7392         * vc-backend.C:
7393         changes due to the changed LyXView interface that now returns references
7394         to member variables not pointers.
7395
7396 2002-08-13  Angus Leeming  <leeming@lyx.org>
7397
7398         * WordLangTuple (word, lang_code): return references to strings,
7399         not strings.
7400
7401         * BufferView.h:
7402         * SpellBase.h:
7403         * lyxtext.h: forward-declare WordLangTuple.
7404
7405         * BufferView2.C:
7406         * ispell.C:
7407         * pspell.C:
7408         * text.C: #include "WordLangTuple.h".
7409
7410         * lyxtext.h:
7411         * text.C: (selectNextWordToSpellcheck): constify return type.
7412
7413 2002-08-12  Martin Vermeer <martin.vermeer@hut.fi>
7414
7415         * buffer.C:
7416         * buffer.h:
7417         * lyxtext.h:
7418         * paragraph.C:
7419         * paragraph_pimpl.h:
7420         * text.C:
7421         * text2.C:
7422         * undo_funcs.C: replaced per-paragraph counter logic by per-buffer, as
7423         suggested by Angus.
7424         Made updateCounter always count from start of buffer, and removed
7425         second argument (par).
7426         Reverted floats number display to '#'. Perhaps I'll try again when the
7427         code base is sanitized a bit.
7428
7429 2002-08-12  Angus Leeming  <leeming@lyx.org>
7430
7431         * buffer.[Ch] (getLabelList): constify.
7432
7433 2002-08-07  André Pönitz <poenitz@gmx.net>
7434
7435         * commandtags.h: new LFUN_MOUSE_(PRESS|MOTION|RELEASE)
7436
7437         * funcrequest.h: extension to keep mouse (x,y) position
7438
7439 2002-08-12  Juergen Vigna  <jug@sad.it>
7440
7441         * BufferView2.C (insertErrors): forbid undo when inserting error
7442         insets.
7443
7444         * CutAndPaste.C (SwitchLayoutsBetweenClasses): ditto
7445
7446 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
7447
7448         * ParagraphList.[Ch]: new files
7449
7450         * Makefile.am (lyx_SOURCES): add ParagraphList.[Ch]
7451
7452         * BufferView2.C (lockInset): ParagraphList changes
7453         * toc.C: ditto
7454         * text2.C: ditto
7455         * bufferlist.C: ditto
7456         * buffer.h: ditto
7457         * buffer.C: ditto
7458
7459 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
7460
7461         * paragraph_pimpl.h: remove inclusion of boost/array.hpp, remove
7462         unused class variable counter_,
7463
7464         * paragraph.[Ch] (getFirstCounter): delete unused function
7465
7466         * counters.C: include LAssert.h
7467         (reset): add a new function with no arg, change other version to
7468         not have def. arg and to not allow empty arg.
7469
7470         * text2.C (setCounter): remove empty arg from call to Counters::reset
7471
7472 2002-08-11  John Levon  <levon@movementarian.org>
7473
7474         * Makefile.am: add WordLangTuple.h
7475
7476 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
7477
7478         * paragraph.C, ToolbarDefaults.h, kbsequence.h, lyx_main.C,
7479         lyxfunc.C lyxlex_pimpl.C: ws changes only.
7480
7481         * insets/insettext.C: InsetList changes
7482
7483         * graphics/GraphicsSupport.C (operator()): InsetList changes
7484
7485         * toc.C (getTocList): InsetList changes
7486
7487         * paragraph_pimpl.[Ch]: InsetList changes
7488
7489         * paragraph.[Ch]: InsetList changes
7490
7491         * buffer.C (inset_iterator): InsetList changes
7492         (setParagraph): ditto
7493         * buffer.h (inset_iterator): ditto
7494         * iterators.C (operator++): ditto
7495         * iterators.h: ditto
7496
7497         * Makefile.am (lyx_SOURCES): add InsetList.C and InsetList.h
7498
7499         * InsetList.[Ch]: new files, most InsetList handling moved out of
7500         paragraph.C.
7501
7502         * BufferView2.C (removeAutoInsets): InsetList changes
7503         (lockInset): ditto
7504         (ChangeInsets): ditto
7505
7506 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
7507
7508         * paragraph_pimpl.h (empty): new function
7509
7510         * paragraph.[Ch] (empty): new function
7511
7512         * other files: use the new Paragraph::empty function
7513
7514 2002-08-09  John Levon  <levon@movementarian.org>
7515
7516         * lyxtext.h: remove unused refresh_height
7517
7518 2002-08-09  John Levon  <levon@movementarian.org>
7519
7520         * Makefile.am:
7521         * sgml.h:
7522         * sgml.C:
7523         * buffer.C:
7524         * paragraph.h:
7525         * paragraph.C: move sgml char escaping out of paragraph
7526
7527         * paragraph.h:
7528         * paragraph.C: remove id setter
7529
7530         * buffer.C:
7531         * paragraph.C:
7532         * paragraph_pimpl.C: remove dead tex_code_break_column
7533
7534         * bufferview_funcs.C: small cleanup
7535
7536         * lyxfunc.C: remove dead proto
7537
7538         * lyxtext.h: make some stuff private. Remove some dead stuff.
7539
7540         * lyxgluelength.C: make as[LyX]String() readable
7541
7542 2002-08-08  John Levon  <levon@movementarian.org>
7543
7544         * LyXAction.h:
7545         * LyXAction.C:
7546         * MenuBackend.C:
7547         * ToolbarDefaults.C:
7548         * lyxfunc.C:
7549         * lyxrc.C:
7550         * toc.C: lyxaction cleanup
7551
7552 2002-08-08  John Levon  <levon@movementarian.org>
7553
7554         * BufferView2.C: small cleanup
7555
7556         * lyxfind.h:
7557         * lyxfind.C: move unnecessary header into the .C
7558
7559 2002-08-08  John Levon  <levon@movementarian.org>
7560
7561         * funcrequest.h: just tedious nonsense
7562
7563         * lyx_main.h:
7564         * lyx_main.C: cleanups
7565
7566         * buffer.C:
7567         * vspace.C: remove dead header lyx_main.h
7568
7569 2002-08-07  Angus Leeming  <leeming@lyx.org>
7570
7571         * Paragraph.[Ch]:
7572         * paragraph_pimpl.h:
7573         Forward declare class Counters in paragraph.h by moving the ctrs member
7574         variable into Paragraph::Pimpl.
7575         (counters): new method, returning a reference to pimpl_->ctrs.
7576
7577         * text2.C: ensuing changes.
7578
7579 2002-08-07  John Levon  <levon@movementarian.org>
7580
7581         * BufferView_pimpl.C (resizeCurrentBuffer): update scrollbar
7582
7583         * BufferView_pimpl.C: announce X selection on double/triple
7584           click
7585
7586         * lyx_main.C: use correct bool in batch dispatch
7587
7588         * counters.h: srcdocs (from Martin Vermeer and Angus Leeming)
7589
7590 2002-08-07  André Pönitz <poenitz@gmx.net>
7591
7592         * funcrequest.h: new class to wrap a kb_action and its argument
7593
7594         * BufferView.[Ch]:
7595         * BufferView_pimpl[Ch]:
7596         * LaTeX.C:
7597         * LyXAction.[Ch]:
7598         * lyxfunc.[Ch]:
7599         * lyxrc.C: subsequent changes
7600
7601
7602 2002-08-07  John Levon  <levon@movementarian.org>
7603
7604         * BufferView_pimpl.C (redoCurrentBuffer): fix screen update when
7605           document options change.
7606
7607 2002-08-06  Martin Vermeer  <martin.vermeer@hut.fi>
7608
7609         * counters.[Ch]
7610         * text2.C
7611         * paragraph.[Ch]
7612         * makefile.am: move counters functionality over from
7613         text2.C/paragraph.[Ch] to counters.[Ch], and make proper C++.
7614
7615 2002-08-06  John Levon  <levon@movementarian.org>
7616
7617         * WordLangTuple.h: new file for word + language code tuple
7618
7619         * SpellBase.h:
7620         * pspell.h:
7621         * pspell.C:
7622         * ispell.h:
7623         * ispell.C:
7624         * lyxtext.h:
7625         * text.C:
7626         * text2.C:
7627         * BufferView.h:
7628         * BufferView2.C: use WordLangTuple
7629
7630         * layout.h:
7631         * buffer.C: remove very dead LYX_LAYOUT_DEFAULT
7632
7633 2002-08-06  John Levon  <levon@movementarian.org>
7634
7635         * lyx_main.C: fix cmdline batch handling
7636
7637 2002-08-06  André Pönitz <poenitz@gmx.net>
7638
7639         * lyxrc.C: set default for show_banner to true
7640
7641 2002-08-06  John Levon  <levon@movementarian.org>
7642
7643         * pspell.C: fix a crash, and allow new aspell to work
7644
7645 2002-08-06  John Levon  <levon@movementarian.org>
7646
7647         * lyxfunc.C:
7648         * kbmap.C: small cleanup
7649
7650         * vspace.h:
7651         * vspace.C: add const
7652
7653 2002-08-05  John Levon  <levon@movementarian.org>
7654
7655         * LyXAction.C: back to tabular-insert
7656
7657 2002-08-04  John Levon  <levon@movementarian.org>
7658
7659         * BufferView.h:
7660         * BufferView.C: cosmetic change
7661
7662         * BufferView_pimpl.C: s/IGNORE_CODE/NOTE_CODE/
7663
7664         * bufferlist.C:
7665         * buffer.h:
7666         * buffer.C:
7667         * lyxcb.h:
7668         * lyxcb.C:
7669         * lyxserver.C:
7670         * lyxvc.C:
7671         * vc-backend.C:
7672         * BufferView2.C: purge all "Lyx" not "LyX" strings
7673
7674         * lyxcursor.h:
7675         * lyxcursor.C: attempt to add some documentation
7676
7677         * lyxfunc.C:
7678         * commandtags.h:
7679         * LyXAction.C:
7680         * ToolbarDefaults.C:
7681         * BufferView_pimpl.C: remove LFUN_DIALOG_TABULAR_INSERT and
7682           merge with LFUN_TABULAR_INSERT
7683
7684         * Makefile.am:
7685         * SpellBase.h:
7686         * ispell.h:
7687         * ispell.C:
7688         * pspell.h:
7689         * pspell.C: split up i/pspell implementations into separate
7690           files, many cleanups
7691
7692         * lyxlex.C: unrevert, with a proper fix for prefix.length() == 0
7693
7694         * text2.C: some cleanup
7695
7696         * lyxfunc.C: don't check for isp_command == "none" any more, it
7697           didn't make any sense
7698
7699 2002-08-06      Martin Vermeer <martin.vermeer@hut.fi>
7700
7701         * counters.[Ch]
7702         * text2.C
7703         * paragraph.[Ch]
7704         * makefile.am: move counters functionality over
7705         from text2.C/paragraph.[Ch] to counters.[Ch], and
7706         make proper C++.
7707 2002-08-02  John Levon  <levon@movementarian.org>
7708
7709         * buffer.C: s/lyxconvert/lyx2lyx/
7710
7711 2002-08-02  Angus Leeming  <leeming@lyx.org>
7712
7713         * lyxlex.C: revert John's change as it breaks reading of the user
7714         preamble.
7715
7716 2002-08-02  Angus Leeming  <leeming@lyx.org>
7717
7718         * importer.C (Import):
7719         * lyxfunc.C (moveCursorUpdate, dispatch, view_status_message):
7720         changes due to LyXView::view() now returning a boost::shared_ptr.
7721
7722 2002-08-02  John Levon  <levon@movementarian.org>
7723
7724         * lyxlex.C: small cleanup
7725
7726 2002-08-02  John Levon  <levon@movementarian.org>
7727
7728         * text2.C (status): small cleanup, no logic change
7729
7730 2002-08-01  John Levon  <levon@movementarian.org>
7731
7732         * buffer.h:
7733         * buffer.C (writeFile): don't output alerts, caller
7734           handles this
7735
7736         * bufferlist.C:
7737         * lyx_cb.C: from above
7738
7739         * lyxfunc.C: allow to open non-existent files
7740
7741 2002-07-31  John Levon  <levon@movementarian.org>
7742
7743         * lyxserver.C: don't let incidental errors get
7744           in the way (errno)
7745
7746 2002-07-30  John Levon  <levon@movementarian.org>
7747
7748         * lyxfunc.C: disable character dialog in ERT inset (partial fix)
7749
7750 2002-07-30  John Levon  <levon@movementarian.org>
7751
7752         * lyxserver.h:
7753         * lyxserver.C: remove I/O callback too
7754
7755 2002-07-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7756
7757         * lyxfunc.C (getStatus): disable LFUN_LATEX_LOG when there is no
7758         log.
7759
7760 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
7761
7762         * many files: strip,frontStrip -> trim,ltrim,rtrim
7763
7764 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
7765
7766         * PrinterParams.h: remove extern containsOnly, and include
7767         support/lstrings.h instead.
7768
7769         * LaTeX.C (scanAuxFile): modify because of strip changes
7770         (deplog): ditto
7771         * buffer.C (makeLaTeXFile): ditto
7772         * bufferparams.C (writeFile): ditt
7773         * lyxfont.C (stateText): ditto
7774         * lyxserver.C (read_ready): ditto
7775         * vc-backend.C (scanMaster): ditto
7776
7777         * BufferView_pimpl.h: ws changes
7778
7779         * BufferView_pimpl.C: inlude boost/signals/connection.hpp
7780
7781 2002-07-26  André Pönitz <poenitz@gmx.net>
7782
7783         * kb_sequence.C: remove unnedred usings
7784
7785 2002-07-26  Juergen Vigna  <jug@sad.it>
7786
7787         * lyxfind.C (LyXReplace): we have to check better if the returned
7788         text is not of theLockingInset()->getLockingInset().
7789
7790 2002-07-25  Juergen Vigna  <jug@sad.it>
7791
7792         * lyxfind.C (LyXReplace): don't replace if we don't get the
7793         right LyXText.
7794
7795         * undo_funcs.C (createUndo): remove debugging code.
7796
7797 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
7798
7799         * buffer.C (parseSingleLyXformat2Token): Use default placement
7800         when reading old floats.
7801
7802         * FloatList.C (FloatList): Change the default placement of figure
7803         and tables to "tbp".
7804
7805 2002-07-25  John Levon  <moz@compsoc.man.ac.uk>
7806
7807         * MenuBackend.C: using std::max
7808
7809 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7810
7811         * MenuBackend.C (expandToc):
7812         (expandToc2): code moved from xforms menu frontend. It is now
7813         generic and TOCs are transparent to menu frontends.
7814
7815 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7816
7817         * toc.C (getTocList): protect against buf=0
7818
7819         * MenuBackend.C (expand): move from Menu to MenuBackend; pass a
7820         Menu as first parameter. Now, this calls itself recursively to
7821         expand a whole tree (this will be useful for TOC handling)
7822         (expandFloatInsert): remove 'wide' version of floats
7823
7824         * MenuBackend.h (submenuname): returns the name of the submenu.
7825         (submenu): returns the submenu itself, provided it has been
7826         created by MenuBackend::expand
7827
7828 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7829
7830         * paragraph_pimpl.C (simpleTeXSpecialChars): close fonts before
7831         insets which have noFontChange == true. (bug #172)
7832
7833 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7834
7835         * BufferView_pimpl.C: add connection objects and use them...
7836         (Pimpl): here.
7837
7838 2002-07-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7839
7840         * MenuBackend.C (expandLastfiles):
7841         (expandDocuments):
7842         (expandFormats):
7843         (expandFloatListInsert):
7844         (expandFloatInsert):
7845         (expand): split expand in parts
7846
7847 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
7848
7849         * lyx_gui.C: use lyx_gui::exit()
7850
7851 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
7852
7853         * LyXAction.C: show the failing pseudo action
7854
7855 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
7856
7857         * buffer.C (readFile): Run the lyxconvert script in order to read
7858         old files.
7859
7860 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
7861
7862         * LyXAction.C:
7863         * commandtags.h:
7864         * lyxfunc.C: remove LFUN_ADD_TO_TOOLBAR
7865
7866 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
7867
7868         * LyXAction.C:
7869         * commandtags.h:
7870         * lyxfunc.C: remove LFUN_TOOLBAR_PUSH
7871
7872 2002-07-22  Herbert Voss  <voss@lyx.org>
7873
7874         * lengthcommon.C:
7875         * lyxlength.[Ch]: add support for the vertical lengths
7876
7877 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
7878
7879         * toc.[Ch]: std:: fixes
7880
7881 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7882
7883         * lyxrc.C: do not include lyx_main.h
7884
7885         * LaTeXFeatures.h: use a list<string> instead of a vector<string>
7886         for layouts
7887
7888         * lyxrc.C:
7889         * encoding.C:
7890         * bufferlist.C:
7891         * BufferView2.C: include "lyxlex.h"
7892
7893         * tabular.h:
7894         * bufferparams.h: do not #include "lyxlex.h"
7895
7896         * lyxtextclasslist.C (Add): remove method
7897         (classlist): renamed to classlist_
7898
7899         * paragraph_pimpl.C:
7900         * paragraph.C:
7901         * text2.C:
7902         * CutAndPaste.C:
7903         * bufferview_funcs.C:
7904         * bufferlist.C:
7905         * text.C:
7906         * LaTeXFeatures.C:
7907         * buffer.C:
7908         * toc.C (getTocList): use BufferParams::getLyXTextClass
7909
7910         * toc.C (getTocList): use InsetFloat::addToToc
7911
7912         * toc.[Ch]: new files, containing helper functions to handle table
7913         of contents
7914
7915         * lyxfunc.C (dispatch): no need to remove spaces around command
7916         given as a string
7917         (getStatus): handle LFUN_SEQUENCE by returning the status of the
7918         first command of the sequence; it is not very clever, but I do not
7919         have a better idea, actually
7920
7921         * LyXAction.C (LookupFunc): make sure to remove space at the
7922         beginning and end of the command
7923
7924 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7925
7926         * MenuBackend.C (getMenubar): new method: return the menubar of
7927         this menu set
7928         (read): treat differently reading of menu and menubar (in
7929         particular, the menubar has no name now)
7930         (Menu::menubar): remove
7931
7932         * lyxfunc.C (dispatch): add 'done' message to minibuffer when
7933         saving is finished
7934
7935 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
7936
7937         * BufferView_pimpl.C (workAreaButtonRelease): Fix opening of
7938         a bibitem inset in a RTL paragraph.
7939
7940 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
7941
7942         * paragraph_pimpl.C: constify
7943
7944         * BufferView_pimpl.C:
7945         * LaTeX.C:
7946         * lyxfunc.C: fix dispatch in a nicer way
7947
7948 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7949
7950         * lyxfunc.C (dispatch):
7951         * BufferView_pimpl.C:
7952         * BufferView_pimpl.h:
7953         * BufferView.C:
7954         * BufferView.h: rename Dispatch() to dispatch()
7955
7956         * LaTeXFeatures.C (useLayout): honor LyXLayout::depends_on()
7957
7958         * lyxlayout.C (Read): honor DependsOn tag
7959
7960         * lyxlayout.[Ch] (depends_on): new method
7961
7962         * version.C.in: update lyx_docversion
7963
7964         * LaTeXFeatures.C (getMacros): only define \LyX when needed
7965
7966         * paragraph.C (validate): remove from here...
7967         * paragraph_pimpl.C (validate): ... and move here
7968         (isTextAt): make it const
7969
7970         * buffer.C (getLists): ws cleanup
7971
7972 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
7973
7974         * language.C (read): Use iso8859-1 encoding in latex_lang
7975         (this prevents LyX from crashing when using iso10646-1 encoding).
7976
7977 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7978
7979         * text2.C (toggleInset): if cursor is inside an inset, close the
7980         inset and leave cursor _after_ it
7981
7982 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
7983
7984         * lyxfunc.C: move minibuffer completion handling out of here
7985
7986 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
7987
7988         * BufferView_pimpl.C:
7989         * LaTeX.C: fix dispatch calls
7990
7991 2002-07-19  Dekel Tsur  <dekelts@tau.ac.il>
7992
7993         * text.C (drawChars): Fix Arabic text rendering.
7994
7995 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
7996
7997         * LyXAction.C:
7998         * commandtags.h:
7999         * lyxfunc.C: remove message-push/pop
8000
8001         * lyxserver.C:
8002         * lyxfunc.h:
8003         * lyxfunc.C: rationalise some code by removing verboseDispatch
8004           in favour of a bool argument to dispatch()
8005
8006 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8007
8008         * lyx_main.C (init): make sure to read symlinks as absolute paths
8009
8010 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
8011
8012         * lyxfunc.h:
8013         * lyxfunc.C: no need for commandshortcut to be a member
8014
8015 2002-07-15  André Pönitz <poenitz@gmx.net>
8016
8017         * converter.C: add support for $$s (scripts from lib/scripts dir)
8018         * lyx_main.C: white space
8019
8020 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
8021
8022         * bufferlist.C:
8023         * lyxrc.h:
8024         * lyxrc.C: remove second exit confirmation
8025
8026 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
8027
8028         * BufferView.h:
8029         * BufferView.C:
8030         * BufferView2.C:
8031         * BufferView_pimpl.h:
8032         * BufferView_pimpl.C:
8033         * lyxfunc.C: s/setState/switchKeyMap/, s/showState/view_state_changed/
8034
8035 2002-07-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8036
8037         * MenuBackend.C (expand): add numeric shortcuts to document menu
8038
8039         * lyxrc.C (getDescription): remove RC_NEW_ASK_FILENAME
8040
8041 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8042
8043         * lyxfont.C (setLyXFamily):
8044         (setLyXSeries):
8045         (setLyXShape):
8046         (setLyXSize):
8047         (setLyXMisc):
8048         (lyxRead):
8049         * debug.C (value):
8050         * buffer.C (asciiParagraph): use ascii_lowercase
8051
8052 2002-07-15  Mike Fabian  <mfabian@suse.de>
8053
8054         * lyxlex_pimpl.C (search_kw):
8055         * lyxlex.C (getLongString):
8056         * converter.h (operator<):
8057         * converter.C (operator<):
8058         * buffer.C (parseSingleLyXformat2Token):
8059         (asciiParagraph):
8060         * ToolbarDefaults.C (read):
8061         * MenuBackend.C (checkShortcuts):
8062         (read):
8063         * LColor.C (getFromGUIName):
8064         (getFromLyXName): use the compare_ascii_no_case instead of
8065         compare_no_case, because in turkish, 'i' is not the lowercase
8066         version of 'I', and thus turkish locale breaks parsing of tags.
8067
8068 2002-07-16  Angus Leeming  <leeming@lyx.org>
8069
8070         * BufferView_pimpl.C (buffer): Previews::generateBufferPreviews
8071         now takes a Buffer const & argument.
8072
8073 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
8074
8075         * BufferView.C (resize): check there's a buffer to resize
8076
8077 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
8078
8079         * lyxfunc.C: remove dead code
8080
8081         * lyxserver.h:
8082         * lyxserver.C: use lyx_guii::set_read_callback
8083
8084 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
8085
8086         * lyxfunc.C (dispatch): Correct cursor behaviour when exiting
8087         an inset in a RTL paragraph.
8088
8089 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
8090
8091         * lyxfunc.C: repaint after a font size update
8092
8093 2002-07-15  André Pönitz <poenitz@gmx.net>
8094
8095         * lyxlength.C: inBP should be able to return negative values
8096
8097 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
8098
8099         * lyxfunc.C: use lyx_gui::update_fonts()
8100
8101 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
8102
8103         * lyxfunc.C: use lyx_gui::update_color()
8104
8105 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
8106
8107         * bufferlist.C:
8108         * lyxfunc.h:
8109         * lyxfunc.C:
8110         * lyxrc.h:
8111         * lyxrc.C: remove file->new asks for name option, and let
8112           buffer-new take an argument
8113
8114 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
8115
8116         * BufferView_pimpl.C: remove unneeded extra repaint()
8117
8118 2002-07-10  John Levon  <moz@compsoc.man.ac.uk>
8119
8120         * LyXAction.C: allow command-sequence with NoBuffer
8121
8122         * lyxfunc.C: don't insist on trailing ';' for command-sequence
8123
8124 2002-07-10  Angus Leeming  <leeming@lyx.org>
8125
8126         * lyxrc.[Ch]: preview_scale_factor should be a float not an int.
8127
8128 2002-07-09  Angus Leeming  <leeming@lyx.org>
8129
8130         * lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
8131
8132 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
8133
8134         * lengthcommon.h: whitespace
8135
8136         * lyxfunc.C: update scrollbar after goto paragraph
8137
8138         * lyxtext.h: factor out page break drawing, and fix it so
8139           page break/added space paints as selected nicely
8140
8141 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
8142
8143         * BufferView_pimpl.C: add FIXMEs, clean up a little
8144
8145 2002-07-09  André Pönitz <poenitz@gmx.net>
8146
8147         * lyxfont.[Ch]: support for wasy symbols
8148
8149 2002-07-08  André Pönitz <poenitz@gmx.net>
8150
8151         * BufferView_pimpl.C: apply John's patch for #93.
8152
8153 2002-07-05  Angus Leeming  <leeming@lyx.org>
8154
8155         * BufferView_pimpl.C (buffer): generate previews if desired.
8156
8157         * LColor.h: add "preview" to the color enum.
8158
8159         * LColor.C (LColor): add a corresponding entry to the items array.
8160
8161         * buffer.C (~Buffer): remove any previewed LaTeX snippets associated
8162         with this buffer.
8163
8164 2002-07-05  Angus Leeming  <leeming@lyx.org>
8165
8166         * buffer.[Ch] (makeLaTeXFile): create two methods where there was one.
8167         The body of the code is now in the method that is passed an ostream &
8168         rather than a file name.
8169         Pass an additional only_preamble parameter, useful for the forthcoming
8170         preview stuff.
8171
8172 2002-07-03  André Pönitz <poenitz@gmx.net>
8173
8174         * lyxfunc.C: simplify getStatus() a bit for math stuff
8175
8176 2002-07-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8177
8178         * BufferView_pimpl.C (workAreaResize): add an unconditional repaint.
8179
8180 2002-06-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8181
8182         * text.C (changeRegionCase): do not change case of all the
8183         document when region ends at paragraph end (bug #461)
8184
8185 2002-07-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8186
8187         * paragraph.C (startTeXParParams):
8188         (endTeXParParams): add \protect when necessary
8189
8190 2002-06-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8191
8192         * BufferView_pimpl.C (workAreaExpose): remove warning
8193
8194 2002-06-27  Angus Leeming  <leeming@lyx.org>
8195
8196         * Makefile.am: add lyxlayout_ptr_fwd.h.
8197
8198 2002-06-26  André Pönitz <poenitz@gmx.net>
8199
8200         * lyxrc.[Ch]: introduce \preview, revive half-dead \show_banner
8201
8202 2002-06-25  Angus Leeming  <leeming@lyx.org>
8203
8204         * lyxfunc.C (dispatch): Comment out the call to
8205         grfx::GCache::changeDisplay. The method no longer exists now that the
8206         pixmap generation part of the graphics loader has been moved into
8207         InsetGraphics.
8208
8209 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8210
8211         * text2.C: layout as layout
8212
8213         * text.C: layout as layout
8214
8215         * tabular.C (OldFormatRead): layout as layout
8216
8217         * paragraph_pimpl.C (TeXDeeper): layout as layout
8218         (realizeFont): layout as layout
8219
8220         * paragraph.C (writeFile): layout as layout
8221         (validate): layout as layout
8222         (getFont): layout as layout
8223         (getLabelFont): layout as layout
8224         (getLayoutFont): layout as layout
8225         (breakParagraph): layout as layout
8226         (stripLeadingSpaces): layout as layout
8227         (getEndLabel): layout as layout
8228         (getMaxDepthAfter): layout as layout
8229         (applyLayout): layout as layout
8230         (TeXOnePar): layout as layout
8231         (simpleTeXOnePar): layout as layout
8232         (TeXEnvironment): layout as layout
8233         (layout): layout as layout
8234         (layout): layout as layout
8235
8236         * lyxtextclass.C (compare_name): new functor to work with
8237         shared_ptr, layout as layout
8238         (Read): layout as layout
8239         (hasLayout): layout as layout
8240         (operator): layout as layout
8241         (delete_layout): layout as layout
8242         (defaultLayout): layout as layout
8243
8244         * lyxlayout_ptr_fwd.h: new file
8245
8246         * lyxlayout.C (Read): layout as layout
8247
8248         * lyx_cb.C (MenuInsertLabel): layout as layout
8249
8250         * bufferlist.C (newFile): layout as layout
8251
8252         * buffer.C (readLyXformat2): layout as layout
8253         (parseSingleLyXformat2Token): layout as layout
8254         (insertStringAsLines): layout as layout
8255         (asciiParagraph): layout as layout
8256         (latexParagraphs): layout as layout
8257         (makeLinuxDocFile): layout as layout
8258         (simpleLinuxDocOnePar): layout as layout
8259         (makeDocBookFile): layout as layout
8260         (simpleDocBookOnePar): layout as layout
8261         (getLists): layout as layout
8262
8263         * LaTeXFeatures.C (getTClassPreamble): layout as layout
8264
8265         * CutAndPaste.C (cutSelection): layout as layout
8266         (pasteSelection): layout as layout
8267         (SwitchLayoutsBetweenClasses): layout as layout
8268
8269         * BufferView_pimpl.C (Dispatch): layout as layout
8270         (smartQuote): layout as layout
8271
8272         * BufferView2.C (unlockInset): layout as layout
8273
8274 2002-06-24  André Pönitz <poenitz@gmx.net>
8275
8276         * lyxfunc.C: fix #487
8277
8278 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
8279
8280         * lyxrc.h:
8281         * lyxrc.C:
8282         * lyxfunc.C: remove display_shortcuts, show_banner
8283
8284 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
8285
8286         * Buffer_pimpl.C: oops, update on resize
8287
8288 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
8289
8290         * buffer.C:
8291         * converter.C:
8292         * exporter.C:
8293         * lyxfunc.C:
8294         * BufferView.h:
8295         * BufferView.C: use repaint()
8296
8297         * BufferView_pimpl.h:
8298         * BufferView_pimpl.C: s/updateScreen()/repaint()/
8299           as it's a clearer description. Remove superfluous
8300           redraws.
8301
8302 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
8303
8304         * text.C: fix bug 488. Not ideal, but getting
8305           getWord() to work properly for the insets that
8306           matter is more difficult ...
8307
8308 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
8309
8310         * BufferView_pimpl.C:
8311         * LyXAction.C:
8312         * commandtags.h:
8313         * lyxfunc.C: remove the six million index lyxfuncs to just
8314           one, and DTRT (bug 458)
8315
8316 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
8317
8318         * BufferView.h:
8319         * BufferView.C:
8320         * BufferView_pimpl.h:
8321         * BufferView_pimpl.C: clean up resize() stuff,
8322           and unnecessary updateScreen()s
8323
8324 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
8325
8326         * BufferView.h:
8327         * BufferView.C:
8328         * BufferView_pimpl.h:
8329         * BufferView_pimpl.C:
8330         * lyxfind.h:
8331         * lyxfind.C:
8332         * minibuffer.C: remove focus management of workarea,
8333           not needed. Use screen's greyOut()
8334
8335 2002-06-17  Herbert Voss  <voss@lyx.org>
8336
8337         * converter.C: (convert) do not post a message, when converting
8338         fails, let the calling function decide what to do in this case
8339
8340 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
8341
8342         * lyxfunc.C: tidy up a little
8343
8344 2002-06-16    <alstrup@diku.dk>
8345
8346         * BufferView_pimpl.C (Pimpl): Use WorkAreaFactory.
8347         Got rid of FORMS_H_LOCATION include. Now we are
8348         GUII.
8349
8350 2002-06-15  LyX Development team  <lyx@rilke>
8351
8352         * buffer.[Ch] (sgmlOpenTag):
8353         (sgmlCloseTag): Added support for avoiding pernicious mixed
8354         content. Return number of lines written.
8355
8356         (makeLinuxDocFile):
8357         (makeDocBookFile): Fixed calls to sgml*Tag.
8358         Simple white space clean.
8359
8360         (simpleDocBookOnePar): Simple white space clean.
8361
8362         * tabular.[Ch] (docBook): Renamed to docbook and got another
8363         argument to related with the pernicious mixed content.
8364
8365         (docbookRow): Fixed calls for docbook inset method.
8366
8367 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
8368
8369         * lyxfunc.[Ch]: Use LyXKeySym instead of KeySym,
8370         so it's X11 independent.
8371
8372         * kb*.[Ch]: ditto.
8373
8374         * BufferView_pimpl.[Ch] (workAreaKeyPress): ditto.
8375
8376 2002-06-15  Lyx Development team  <lyx@electronia>
8377
8378         * intl.h: Renamed getTrans to getTransManager.
8379
8380 2002-06-14  Angus Leeming  <leeming@lyx.org>
8381
8382         * Makefile.am: nuke forgotten stl_string_fwd.h.
8383
8384 2002-06-12  Angus Leeming  <leeming@lyx.org>
8385
8386         * stl_string_fwd.h: unused and non-compliant anyway. Nuked.
8387
8388 2002-06-13  Angus Leeming  <leeming@lyx.org>
8389
8390         * LaTeX.C:
8391         * vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
8392
8393 2002-06-12  Andrew Zabolotny  <zap@cobra.ru>
8394
8395         * kbmap.C (getiso): add support for cyrillic and greek
8396
8397 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8398
8399         * BufferView.h:
8400         * BufferView.C:
8401         * BufferView_pimpl.h:
8402         * BufferView_pimpl.C: move bogus scrolling logic
8403           to xforms
8404
8405 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8406
8407         * lyxfunc.C:
8408         * BufferView_pimpl.C: view->resize() change
8409
8410 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8411
8412         * BufferView_pimpl.C: topCursorVisible
8413           prototype change
8414
8415 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8416
8417         * Makefile.am:
8418         * lyx_gui.h:
8419         * lyx_gui.C: move to frontends/
8420
8421         * main.C:
8422         * lyx_main.h:
8423         * lyx_main.C: changes from above
8424
8425 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8426
8427         * intl.C:
8428         * intl.h:
8429         * kbmap.C:
8430         * kbsequence.C:
8431         * lyx_cb.C:
8432         * lyx_main.C: minor tidy
8433
8434 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8435
8436         * BufferView_pimpl.h:
8437         * BufferView_pimpl.C:
8438         * BufferView.h:
8439         * BufferView.C: make painter() const,
8440           remove dead code
8441
8442         * BufferView2.C: use screen() accessor
8443
8444         * lyx_main.h:
8445         * lyx_main.C: some minor cleanup
8446
8447 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8448
8449         * BufferView_pimpl.h:
8450         * BufferView_pimpl.C: remove enter/leaveView,
8451           use workHeight()
8452
8453 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8454
8455         * BufferView.h:
8456         * BufferView.C:
8457         * BufferView2.C:
8458         * BufferView_pimpl.h:
8459         * BufferView_pimpl.C: only construct screen once,
8460           rename
8461
8462         * lyxrc.C: remove pointless comment
8463
8464 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
8465
8466         * BufferView.h:
8467         * BufferView.C: remove active() and belowMouse()
8468
8469         * BufferView_pimpl.h:
8470         * BufferView_pimpl.C: use workarea() not workarea_,
8471           and make it use a scoped_ptr instead
8472
8473 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
8474
8475         * lyx_gui.C: add debug message on BadWindow
8476
8477 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8478
8479         * sp_spell.C: fdopen is not part of the C++ standard.
8480
8481         * paragraph.C (InsetIterator): use >= instead of ==
8482
8483 2002-06-07  Angus Leeming  <leeming@lyx.org>
8484
8485         Fixes needed to compile with Compaq cxx 6.5.
8486         * BufferView_pimpl.C:
8487         * DepTable.C:
8488         * buffer.C:
8489         * converter.C:
8490         * encoding.C:
8491         * lyx_gui.C:
8492         * lyx_main.C:
8493         * lyxtextclasslist.C:
8494         * minibuffer.C:
8495         * sp_spell.C:
8496         * tabular_funcs.C:
8497         * vc-backend.C:
8498         all c-library variables have been moved into namespace std. Wrap
8499         using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
8500
8501         * lyxlength.C:
8502         * tabular-old.C:
8503         * tabular.C:
8504         Add a using std::abs declaration.
8505
8506         * kbmap.h (modifier_pair):
8507         * paragraph.h (InsetTable, InsetList):
8508         * lyxfont.h (FontBits):
8509         type definition made public.
8510
8511         * bufferlist.C (emergencyWriteAll): the compiler complains that
8512         there is more than one possible lyx::class_fun template to choose from.
8513         I re-named the void specialisation as lyx::void_class_fun.
8514
8515         * lyxfont.C (FontBits' operator==, operator!=): taken out of class.
8516
8517         * tabular_funcs.C: lstrings.h must come before tabular_funcs.h or
8518         the compiler is is unable to find tostr in write_attribute.
8519
8520 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8521
8522         * buffer.C (sgmlError): hide #warning
8523
8524 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8525
8526         * xtl/*: get rid of xtl, which is not in use anyway
8527
8528         * LyXAction.C (init):
8529         * commandtags.h: remove BUFFER_PRINT and BUFFER_PARAMS_GET, which
8530         were unimplemented xtl experimentation
8531
8532 2002-06-04  André Pönitz <poenitz@gmx.net>
8533
8534         * lyxfunc.C: disable array operation on simple formulae
8535
8536 2002-06-03  John Levon  <moz@compsoc.man.ac.uk>
8537
8538         * converter.C: constify a bit
8539
8540 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
8541
8542         * lyx_gui.C: check xforms version correctly
8543
8544 2002-04-30  Herbert Voss  <voss@lyx.org>
8545
8546         * buffer.C (parseSingleLyXformat2Token): fix bug with ignored
8547         "keep" option
8548
8549 2002-05-31  John Levon  <moz@compsoc.man.ac.uk>
8550
8551         * lyxvc.C: fix bug 416 (make sure buffer is saved before
8552           attempt to register it with a VCS)
8553
8554 2002-05-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8555
8556         * lyx_main.C (init): honor variables LYX_DIR_13x and
8557         LYX_USERDIR_13x
8558
8559 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
8560
8561         * buffer.h:
8562         * buffer.C:
8563         * lyx_main.C: fix a crash on bad command line,
8564           and give a useful exit status on error
8565
8566         * lyxfunc.C (doImport): allow -i lyx to work
8567
8568 2002-03-30  André Pönitz <poenitz@gmx.net>
8569
8570         * lyxfunc.C: mathed font changes
8571
8572 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
8573
8574         * LaTeX.C:
8575         * importer.h:
8576         * importer.C:
8577         * lyx_sty.h:
8578         * lyx_sty.C:
8579         * lyxlex.C:
8580         * lyxrow.h:
8581         * lyxtext.h:
8582         * paragraph.h:
8583         * paragraph.C:
8584         * texrow.h:
8585         * texrow.C:
8586         * text.C:
8587         * trans_mgr.h: srcdocs, and some minor cleanups
8588
8589 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8590
8591         * paragraph_pimpl.C (isTextAt): rewrite to be much faster (do not
8592         call getFont all the time)
8593
8594 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8595
8596         * switch from SigC signals to boost::signals
8597
8598 2002-05-29  André Pönitz <poenitz@gmx.net>
8599
8600         * paragraph_pimpl.C (getChar): don't call size() too often...
8601
8602 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8603
8604         * paragraph_pimpl.C (insertChar): do not try to update tables when
8605         appending (pos == size())
8606
8607         * buffer.C (parseSingleLyXformat2Token): reorder a bit the tests
8608         in order to reduce drastically the number of comparisons needed to
8609         parse a large document
8610
8611 2002-05-29  André Pönitz <poenitz@gmx.net>
8612
8613         * text.C:
8614         * text2.C:
8615         * lyxtextclass.C:
8616         * sp_pspell.h:
8617         * textclasslist.[Ch]:
8618         * sp_ispell.h: whitespace change
8619
8620 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8621
8622         * lyxserver.C (callback): tentative fix of lyxserver. Does not use
8623         lyxaction directly now.
8624
8625 2002-05-27  John Levon  <moz@compsoc.man.ac.uk>
8626
8627         * trans.C:
8628         * lyxfont.C:
8629         * lyxvc.C: remove unused headers
8630
8631 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
8632
8633         * Makefile.am:
8634         * buffer.h:
8635         * undostack.h:
8636         * undostack.C:
8637         * undo_funcs.h:
8638         * undo_funcs.C: some cleanups. Use shared_ptr
8639           and a template for the undo stacks.
8640
8641 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
8642
8643         * BufferView_pimpl.h:
8644         * BufferView_pimpl.C:
8645         * kbmap.h:
8646         * kbmap.C:
8647         * kbsequence.h:
8648         * kbsequence.C:
8649         * lyxfunc.h:
8650         * lyxfunc.C:
8651         * text2.C: use key_state/mouse_state
8652
8653 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8654
8655         * vc-backend.C (scanMaster): use boost regex and get rid of LRegex
8656         and LSubstring
8657
8658         * chset.C: change include order
8659         (loadFile): use boost regex and get rid of LRegex and LSubstring
8660
8661         * Makefile.am (BOOST_LIBS): new variable
8662         (lyx_LDADD): use it
8663
8664         * LaTeX.C: change include order.
8665         (scanAuxFile): use boost regex and get rid of LRegex and
8666         LSubstring
8667         (deplog): ditto
8668
8669 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
8670
8671         * ColorHandler.h:
8672         * ColorHandler.C:
8673         * FontInfo.h:
8674         * FontInfo.C: moved to frontends/xforms/
8675
8676         * FontLoader.h:
8677         * FontLoader.C: moved into frontends for GUIIzation
8678
8679         * Makefile.am:
8680         * lyx_gui.C:
8681         * lyxfont.C:
8682         * lyxfunc.C: changes from above
8683
8684 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
8685
8686         * LColor.C: remove spurious X include
8687
8688         * BufferView_pimpl.C:
8689         * Makefile.am:
8690         * font.h:
8691         * font.C:
8692         * text.C:
8693         * text2.C: move font metrics to frontends/
8694
8695 2002-05-24  Juergen Vigna  <jug@sad.it>
8696
8697         * undo_funcs.C (textHandleUndo): fix the cursor selection after
8698         setting the undo_cursor.
8699
8700         * ParagraphParameters.h: include local includes first.
8701
8702 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
8703
8704         * BufferView_pimpl.C:
8705         * BufferView_pimpl.h:
8706         * Makefile.am:
8707         * WorkArea.h:
8708         * WorkArea.C:
8709         * screen.C: move WorkArea into frontends/
8710
8711         * lyxscreen.h:
8712         * screen.C:
8713         * text.C:
8714         * BufferView.C:
8715         * BufferView2.C: move LyXScreen into frontends/
8716
8717         * lyxlookup.h:
8718         * lyxlookup.C:
8719         * lyx_gui.C: move lyxlookup into frontends/xforms/
8720
8721 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
8722
8723         * BufferView2.C:
8724         * BufferView_pimpl.C:
8725         * FontLoader.C:
8726         * LyXView.h:
8727         * LyXView.C:
8728         * Makefile.am:
8729         * WorkArea.C:
8730         * XFormsView.h:
8731         * XFormsView.C:
8732         * buffer.C:
8733         * bufferlist.C:
8734         * bufferview_funcs.C:
8735         * converter.C:
8736         * importer.C:
8737         * lyx_cb.C:
8738         * lyx_gui.C:
8739         * lyx_main.C:
8740         * lyx_find.C:
8741         * lyxfunc.C:
8742         * lyxvc.C:
8743         * minibuffer.C:
8744         * text.C:
8745         * text2.C:
8746         * trans.C:
8747         * vc-backend.C: move LyX/XFormsView into frontends/
8748
8749 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
8750
8751         * Makefile.am:
8752         * PainterBase.C:
8753         * PainterBase.h:
8754         * Painter.C:
8755         * Painter.h:
8756         * WorkArea.C:
8757         * WorkArea.h:
8758         * screen.C:
8759         * tabular.C:
8760         * text.C:
8761         * text2.C: move Painter to frontends/
8762
8763 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8764
8765         * buffer.C: comment out some some code that depend upon lyx_format
8766         < 220
8767
8768         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
8769         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
8770
8771         * buffer.h (NO_COMPABILITY): turn off compability
8772
8773         * ColorHandler.C: include scoped_array.hpp
8774
8775         * font.C: Use more specific smart_ptr header.
8776         * Painter.C: ditto
8777         * gettext.C: ditto
8778         * ShareContainer.h: ditto
8779         * lyx_main.h: ditto
8780         * kbmap.h: ditto
8781         * FontInfo.h: ditto
8782         * BufferView_pimpl.h: ditto
8783         * ColorHandler.h: ditto
8784
8785         * kbmap.C (defkey): change call to shared_ptr::reset
8786
8787 2002-05-21  Juergen Vigna  <jug@sad.it>
8788
8789         * buffer.C (insertErtContents): fix to insert ert asis if it is
8790         non empty. Skip it completely if it contains only whitespaces.
8791
8792 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
8793
8794         * BufferView_pimpl.C:
8795         * BufferView2.C: clear selection on paste (bug 393)
8796
8797 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8798
8799         * DepTable.C: include ctime
8800
8801 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
8802
8803         * buffer.C (latexParagraphs): Add new argument (moving_arg).
8804
8805 2002-05-14  Juergen Vigna  <jug@sad.it>
8806
8807         * text.C (breakParagraph): fixed function to honor the keepempty
8808         layout in the right maner and also to permit the right breaking
8809         algorithm on empty or non empyt keepempty paragraphs.
8810
8811         * paragraph.C (breakParagraph): we have to check also if the par
8812         is really empty (!size()) for isempty otherwise we do the wrong
8813         paragraph break.
8814
8815 2002-05-10  Juergen Vigna  <jug@sad.it>
8816
8817         * buffer.[Ch] : The following are only changes to the ert
8818         compatibility read reading old LaTeX layout and font stuff and
8819         convert it to ERTInsets.
8820
8821         * buffer.h: added isErtInset().
8822
8823         * buffer.C (struct ErtComp): add a fromlayout bool to check
8824         if we're inside a LaTeX layout.
8825         (isErtInset): new helper function.
8826         (insertErtContents): look for other ert insets before this one
8827         and insert the contents there, so that we don't have subsequent
8828         ERT insets with nothing between them. This way we create only one
8829         inset with multiple paragraphs. Also check if we don't insert only
8830         spaces ' ' as they are ignored anyway afterwards in the .tex file
8831         so if we have only spaces we will ignore this latex part in the
8832         new file.
8833         (parseSingleLyXformat2Token \\layout): better compatibility when
8834         reading layout-latex stuff.
8835         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
8836         language tag.
8837         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
8838         stuff after reading the inset only get the information back from
8839         the stack.
8840
8841 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
8842
8843         * buffer.C (makeLaTeXFile): Put language options after loading babel.
8844
8845         * LaTeXFeatures.C (getBabelOptions): New method.
8846
8847 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8848
8849         * BufferView_pimpl.C (Dispatch): work around missing argument for
8850         'layout'
8851
8852 2002-05-08  Juergen Vigna  <jug@sad.it>
8853
8854         * text.C (leftMargin): handle paragraph leftindent.
8855
8856         * paragraph.C (writeFile): write the new \\leftindent tag.
8857         (validate): handle leftindent code.
8858         (TeXEnvironment): handle paragraphleftindent code again.
8859
8860         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
8861
8862         * buffer.C (parseSingleLyXformat2Token): added compatibility code
8863         for paragrap_extra indent code and new token \\leftindent.
8864         (latexParagraphs): handle the leftindent as environment.
8865
8866         * ParameterStruct.h: added leftindent support.
8867
8868         * ParagraphParameters.C (leftIndent): added support functions for
8869         the paragraph left indent.
8870
8871         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
8872         more appropriate.
8873
8874 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
8875
8876         * paragraph.C (isRightToLeftPar): Return false for a paragraph
8877         inside insetERT.
8878
8879         * text.C (computeBidiTables): No bidi in insetERT.
8880
8881         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
8882         in RTL documents.
8883
8884 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8885
8886         * version.C.in: pre 5
8887
8888 2002-05-02  José Matos  <jamatos@fep.up.pt>
8889         * buffer.C (makeDocBookFile): white space changes, add newline to
8890         command styles.
8891         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
8892
8893         * tabular.C (docBook): fix typo.
8894
8895 2002-05-03  Juergen Vigna  <jug@sad.it>
8896
8897         * screen.C (drawFromTo): recalculate the rowpointer if we had a
8898         change in LyXText as we can not be sure it was not freed.
8899         (drawOneRow): remove unused code.
8900
8901         * text.C (drawInset): redo the calculation of the need_break_row as
8902         it could have a row which was already freed.
8903         (draw): look at the return value of drawInset and return false if
8904         it also returned false.
8905         (paintRowText): look at the return value of draw and return false if
8906         it also returned false.
8907
8908         * lyxtext.h: added bool return type to drawInset() and draw() so that
8909         if we have a change in the row so that the rowbreak has to be redone
8910         we abort drawing as it will be called again.
8911
8912 2002-05-02  Juergen Vigna  <jug@sad.it>
8913
8914         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
8915         a change in the maintext also if we're inside an inset.
8916         (Dispatch): set the cursor again after a break line and after the
8917         screen has been updated as it could be we're in a different row.
8918
8919         * text2.C (fixCursorAfterDelete): check to make sure we don't request
8920         to set the cursor behind the pargraph with > size().
8921         (setCursor): check also for the same paragraph when checking where
8922         to put the cursor if we have a NFR inset.
8923
8924         * buffer.C (parseSingleLyXformat2Token): move the compatibility
8925         parts of layout read further up as it still was in the wrong
8926         position.
8927
8928 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8929
8930         * screen.C (drawFromTo): change sine fullRebreak always return
8931         true.
8932
8933         * buffer.C (parseSingleLyXformat2Token): reindent some
8934
8935         * BufferView_pimpl.C (update): change since fullRebreak always
8936         return true.
8937         (Dispatch): git rid of the last hardcoded "Standard"s.
8938
8939 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8940
8941         * text2.[Ch] (fullRebreak): make it return void now that we always
8942         returned true.
8943
8944 2002-04-30  Juergen Vigna  <jug@sad.it>
8945
8946         * buffer.C (parseSingleLyXformat2Token): reset the font before the
8947         ert compatibility check for "latex" layout.
8948
8949 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
8950
8951         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
8952         minipages: use col% instead of p%, and also use the current font.
8953         (makeLaTeXFile): Fix use babel condition.
8954         (parseSingleLyXformat2Token): Correct font when reading old floats.
8955
8956 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
8957
8958         * BufferView_pimpl.C (Dispatch): Check that float type exists when
8959         inserting list of floats.
8960
8961 2002-04-25  Herbert Voss  <voss@lyx.org>
8962
8963         * MenuBackend.C (expand): don't add the graphics extensions to the
8964         export menu
8965
8966 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8967
8968         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
8969         non-existing layout, do not complain if it was the default layout
8970         of the original class (bug #342)
8971
8972 2002-04-24  Juergen Vigna  <jug@sad.it>
8973
8974         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
8975         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
8976
8977 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
8978
8979         * buffer.C (getBibkeyList): If using \bibliography, return the
8980         option field with the reference itself. Enables us to provide natbib
8981         support when using \bibliography.
8982
8983 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
8984
8985         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
8986
8987         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
8988         natbib is provided by the LaTeX class.
8989
8990 2002-04-23  Juergen Vigna  <jug@sad.it>
8991
8992         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
8993         Wakeup functions.
8994
8995         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
8996
8997 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8998
8999         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
9000
9001         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
9002         ensuremath around textordmasculine, textordfeminine and
9003         textdegree.
9004
9005 2002-04-19  Juergen Vigna  <jug@sad.it>
9006
9007         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
9008         reinitializing the buffer otherwise row-dimensions may be wrong.
9009         (update): reset also the selection cursors if they do exits otherwise
9010         their x/y positions may be wrong.
9011
9012         * text2.C (cursorDown): don't enter the inset if we came from a row
9013         above and are one row over the inset.
9014
9015         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
9016         really leaving an inset.
9017
9018 2002-04-18  Juergen Vigna  <jug@sad.it>
9019
9020         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
9021         of the selected paragraph does not have the selected layout also if
9022         the last one had!
9023
9024         * text2.C (setLayout): fixed bug which did not change last selected
9025         paragraph.
9026
9027         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
9028         changed the read and substituted \\end_float with \\end_inset!
9029
9030         * BufferView_pimpl.C (cursorPrevious):
9031         (cursorNext): fixed to make it work with rows heigher than the work
9032         area without moving the cursor only the draw of the row.
9033         (workAreaMotionNotify): fix jumping over high rows.
9034
9035 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9036
9037         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
9038         Ressler.
9039
9040 2002-04-16  Juergen Vigna  <jug@sad.it>
9041
9042         * text2.C (setCursor): set also the irow().
9043         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
9044         (cursorUp):
9045         (cursorDown): support for locking an inset if the x_fix value goes
9046         inside it. That way I can transverse insets too with cursor up/down.
9047
9048         * lyxrow.h: added irow helper function same as other (i) functions.
9049
9050         * BufferView_pimpl.C (cursorPrevious):
9051         (cursorNext): fixed for insets!
9052
9053 2002-04-15  Juergen Vigna  <jug@sad.it>
9054
9055         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
9056         position otherwise it is wrong in some cases.
9057
9058         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
9059         inside the inset before the call.
9060
9061 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
9062
9063         * buffer.[Ch] (getBibkeyList): make it const.
9064
9065 2002-04-12  Juergen Vigna  <jug@sad.it>
9066
9067         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
9068
9069         * text2.C (getCursorX): new helper function
9070         (setCursor): compute also ix_
9071         (setCursorFromCoordinates): set also ix.
9072
9073         * lyxcursor.h: added ix_ and helper functions.
9074
9075         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
9076
9077         * buffer.C (insertStringAsLines): dont break paragraph if the this
9078         paragraph is inside an inset which does not permit it!
9079
9080         * text.C (breakParagraph): honor keepempty flag and break the paragraph
9081         also with no chars on this paragraph.
9082         (paintRowText): only paint stuff if it's inside the workarea!
9083
9084         * paragraph.C (breakParagraph): honor keepempty flag and break the
9085         paragraph always below not above.
9086
9087         * BufferView2.C (unlockInset): update the paragraph layout on inset
9088         unlock as we changed paragraph in such a case.
9089
9090         * lyxfind.C (LyXFind): clear the former selection if not found!
9091
9092         * text2.C (insertInset): freeze Undo after setUndo so that it is not
9093         again called in insertChar().
9094
9095         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
9096         an inset which uses the whole row!
9097         (rightMargin): ditto.
9098         (insertChar): force a rebreak if we inserted an inset!
9099
9100 2002-03-28  Herbert Voss  <voss@lyx.org>
9101
9102         * lyxlength.[Ch]: add inBP() to get the right PS-point
9103         units (BigPoint). With inPixels we have rounding errors
9104
9105 2002-04-11  Juergen Vigna  <jug@sad.it>
9106
9107         * text2.C (setCursorFromCoordinates): set iy to the right value.
9108         (setCursor): add check if row->previous exists!
9109
9110         * buffer.C (parseSingleLyXformat2Token): reset font after read of
9111         an old float_type as this was the case in the old code!
9112
9113         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
9114
9115         * BufferView2.C (showLockedInsetCursor): use iy
9116         (fitLockedInsetCursor): ditto
9117
9118         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
9119         locked insets as there we have the right value now.
9120
9121         * lyxcursor.C: added iy_ variable and iy functions to set to the
9122         baseline of cursor-y of the locked inset.
9123
9124         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
9125         (setCursor): fixed for insets which need a full row.
9126
9127         * text.C (rowLastPrintable): don't ignore the last space when before
9128         an inset which needs a full row.
9129         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
9130         as last character of a row when before a inset which needs a full row.
9131
9132 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9133
9134         * version.C.in: update date
9135
9136         * text2.C (fullRebreak): try to always return true and see what
9137         happens...
9138
9139 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9140
9141         * MenuBackend.C (expand): use Floating::listName
9142
9143         * FloatList.C (FloatList): add listName argument to the built-in
9144         floats
9145
9146         * Floating.[Ch]: add listName member, which is the 'List of XXX'
9147         text associated with the float.
9148
9149 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9150
9151         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
9152
9153 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9154
9155         * ShareContainer.h: add a couple of missing typenames.
9156
9157 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
9158
9159         * lyxrc.C (getDescription): use _() correctly rather than N_().
9160
9161 2002-03-28  Herbert Voss  <voss@lyx.org>
9162
9163         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
9164         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
9165
9166 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9167
9168         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
9169         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
9170
9171 2002-03-29  Juergen Vigna  <jug@sad.it>
9172
9173         * lyxfunc.C (dispatch): add a missing fitCursor call.
9174
9175         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
9176         it was scrolled by a cursor move, so return the bool status.
9177
9178         * BufferView.C (fitCursor): return the bool flag also to the outside
9179         world as this is needed.
9180
9181         * screen.C (toggleToggle): don't subtract the offset if it's positive.
9182
9183         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
9184         call the edit() as it is not needed (and wrong) IMO.
9185         (workAreaButtonPress): set the screen_first variable before evt.
9186         unlock the inset as this may change screen_first and then we have
9187         a wrong y position for the click!
9188
9189 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9190
9191         * MenuBackend.C (expand): another translation that I missed
9192
9193 2002-03-28  Juergen Vigna  <jug@sad.it>
9194
9195         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
9196
9197         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
9198
9199 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9200
9201         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
9202
9203         * MenuBackend.C (expand): fix export/view/update when there is no
9204         document open.
9205
9206 2002-03-27  Herbert Voss  <voss@lyx.org>
9207
9208         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
9209         and text%
9210
9211 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9212
9213         * bufferview_funcs.C (currentState): only show paragraph number
9214         for is DEVEL_VERSION is set.
9215
9216         * lyxfunc.C (dispatch): put warning in INFO channel
9217
9218         * MenuBackend.C (expand): translate the name of floats
9219
9220         * FloatList.C (FloatList): mark the float names for translation
9221
9222         * converter.C (convert): use LibScriptSearch
9223
9224 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9225
9226         * MenuBackend.C (defaults): fix default menu (we might as well get
9227         rid of it...)
9228
9229 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9230
9231         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
9232         directory.
9233
9234 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9235
9236         * lyxvc.C: reorder includes.
9237
9238 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
9239
9240         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
9241           properly
9242
9243 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
9244
9245         * CutAndPaste.C: change layouts earlier on paste
9246           to avoid crashing when calling getFont()
9247
9248 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
9249
9250         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
9251         irritating #error.
9252
9253 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9254
9255         * WorkArea.C: remove 'Pending' debug message.
9256
9257         * most files: ws cleanup
9258
9259         * buffer.[Ch]: ws changes
9260
9261         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
9262
9263 2002-03-21  Juergen Vigna  <jug@sad.it>
9264
9265         * tabular.C (SetMultiColumn): collapse also the contents of the
9266         cells and set the last border right. Added a Buffer const * param.
9267
9268 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9269
9270         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
9271         linking or not.
9272
9273 2002-03-19  Juergen Vigna  <jug@sad.it>
9274
9275         * text2.C (clearSelection): reset also xsel_cache.
9276
9277         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
9278         where it needs to be called (John tells us to do so too :)
9279         (selectionLost): reset sel_cache.
9280
9281         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
9282
9283 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9284
9285         * text2.C (setCursorIntern): put debuging code in INSETS channel
9286
9287 2002-03-19  André Pönitz <poenitz@gmx.net>
9288
9289         * lyxfunc.C: tiny whitespace change
9290
9291 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9292
9293         * ToolbarDefaults.C (init):
9294         * LyXAction.C (init):
9295         * commandtags.h:
9296         * BufferView_pimpl.C (Dispatch):
9297         * lyxfunc.C (dispatch): remove LFUN_DEPTH
9298
9299 2002-03-19  Allan Rae  <rae@lyx.org>
9300
9301         * exporter.C (Export): removeAutoInsets before doing anything else.
9302         While I've just introduced a dependency on BufferView this really is
9303         the best place to clean the buffer otherwise you need to cleanup in
9304         a dozen places before calling export or cleanup in a dozen functions
9305         that export calls.
9306
9307         * converter.C (runLaTeX):
9308         (scanLog): Better handling of removeAutoInsets and screen updates.
9309
9310         * lyxfunc.C (dispatch): small whitespace changes
9311
9312 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9313
9314         * WorkArea.C (C_WorkAreaEvent): return a value.
9315         (event_cb): return 1 if we handled the event, 0 otherwise.
9316
9317         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
9318
9319 2002-03-18  Juergen Vigna  <jug@sad.it>
9320
9321         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
9322         (GetAdditionalWidth): ditto.
9323         (RightLine): ditto.
9324         (LeftLine): ditto.
9325
9326         * BufferView2.C (copy): use getLyXText() so that we do it inside an
9327         inset if we're there actually (probably not used right now but this
9328         is the direction to go for unifying code).
9329         (paste): disable code to clear the selection.
9330
9331         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
9332         inside an InsetText and move the check further up as it is in the
9333         wrong place.
9334
9335         * text2.C (pasteSelection): set a selection over the pasted text.
9336
9337 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
9338
9339         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
9340         and libgraphics to build on Cygwin.
9341
9342 2002-03-15  Juergen Vigna  <jug@sad.it>
9343
9344         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
9345         inserting an Inset into the paragraph. I know this is not the best
9346         fix but we already use current_view in CutAndPaste so we will remove
9347         all of it's using at the same time.
9348
9349         * buffer.C (sgmlError): deactivated function till it is rewritten in
9350         the right mode, now it can create problems.
9351
9352         * paragraph.C (isLineSeparator): check if getInset returns != 0,
9353         before accessing it.
9354
9355 2002-03-14  Juergen Vigna  <jug@sad.it>
9356
9357         * undo_funcs.C (textHandleUndo): do the right thing when updating
9358         the inset after the undo/redo.
9359
9360         * text2.C (setCursor): just some testcode for #44 not ready yet.
9361
9362         * undo_funcs.C (textHandleUndo): set the next() and previous()
9363         pointers of the paragraph to 0 before deleting otherwise we have
9364         problems with the Paragraph::[destructor].
9365
9366         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
9367         on a paragraph insertion.
9368
9369 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9370
9371         * buffer.C (asciiParagraph): use += operator for char append to
9372         string.
9373
9374         * paragraph.C (getFontSettings): compare >= not just >
9375         (highestFontInRange): ditto
9376         (setFont): ditto
9377
9378 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9379
9380         * paragraph.C: change several algorithm to be more appripriate for
9381         the problem domain. This is lookip in FontList and in the InsetList.
9382
9383 2002-03-13  André Pönitz <poenitz@gmx.net>
9384
9385         * commandtags.h:
9386         * LyXAction.C: remove unused LFUN_MATH_MACROARG
9387
9388 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
9389
9390         * commandtags.h:
9391         * LyXAction.C:
9392         * lyxfunc.C:
9393         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
9394
9395 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9396
9397         * Painter.C (display): anon helper function, adjust code for this
9398         change.
9399         (pixmap): remove function.
9400
9401         * Painter.h: remove private display variable.
9402
9403         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
9404
9405 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
9406
9407         * WorkArea.[Ch]: remove figinset_canvas cruft.
9408
9409 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9410
9411         * lyxtextclass.C (operator): add one item cache optimization.
9412
9413         * bufferlist.h: doxy changes
9414
9415         * bufferlist.C: ws changes
9416
9417         * DepTable.[Ch] (ext_exist): place const in the right spot.
9418
9419         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
9420         call resizeInsets.
9421         (workAreaExpose): call resizeInsets when the with BufferView changes.
9422         (Dispatch): adjust for protectedBlank removal
9423         (specialChar): call updateInset if the insert went ok.
9424
9425         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
9426         specialChar instead.
9427
9428         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
9429
9430         * BufferView.h: doxy change
9431
9432         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
9433
9434         * lyxtextclass.C (operator[]): remove non-const version
9435         (defaultLayout): remove non-const version
9436
9437 2002-03-12  Juergen Vigna  <jug@sad.it>
9438
9439         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
9440         did resize the LyXText too.
9441
9442         * buffer.C (readLyXformat2): set layout information on newly allocated
9443         paragraphs.
9444
9445         * tabular.C (OldFormatRead): set layout information on the paragraph.
9446
9447 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
9448
9449         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
9450
9451 2002-03-11  Juergen Vigna  <jug@sad.it>
9452
9453         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
9454         plainly wrong.
9455         (resizeCurrentBuffer): force also the insets to resize themselfes.
9456         (moveCursorUpdate): fixed up for InsetText.
9457
9458 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
9459
9460         * commandtags.h:
9461         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
9462         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
9463         value of Dialogs::tooltipsEnabled().
9464         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
9465
9466 2002-03-08  Juergen Vigna  <jug@sad.it>
9467
9468         * BufferView_pimpl.C (updateInset): update inset inside inset also
9469         if it isn't inside theLockingInset().
9470
9471 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9472
9473         * buffer.C (asciiParagraph): redo some of the word and line length
9474         handling.
9475         (getLists): look for Caption instead of caption.
9476
9477 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9478
9479         * buffer.C (Buffer): initialize niceFile to true
9480         (makeLaTeXFile):
9481         (makeLinuxDocFile):
9482         (makeDocBookFile): make sure niceFile is true on exit
9483
9484 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9485
9486         * buffer.C (makeLaTeXFile): escape ~ in \input@path
9487
9488 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
9489
9490         * LyXSendto.C: remove.
9491         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
9492         * lyx_gui.C: remove now-redundant comment.
9493         * ColorHandler.h: remove forward declaration of class WorkArea.
9494         * lyxfunc.C: remove #include "WorkArea.h".
9495
9496 2002-03-07  Juergen Vigna  <jug@sad.it>
9497
9498         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
9499         got moved away with the DEPM and also set the inset_owner always
9500         right which before could have been omitted.
9501
9502 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9503
9504         * buffer.C (parseSingleLyXformat2Token): use default layout is the
9505         wanted layout is not found.
9506
9507 2002-03-07  Juergen Vigna  <jug@sad.it>
9508
9509         * CutAndPaste.C (cutSelection): another layout settings forgotten.
9510
9511 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9512
9513         * paragraph.C (breakParagraph): use default layout not layout of
9514         prev paragraph.
9515         (Paragraph): clear ParagraphParameters.
9516
9517 2002-03-06  Juergen Vigna  <jug@sad.it>
9518
9519         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
9520         otherwise it would not be a valid lenght. Fixed a special case in
9521         the minipage compatibility read where we end the document with a
9522         minipage.
9523
9524         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
9525         was set as it could be 0 for InsetTexts first entry.
9526
9527 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9528
9529         * paragraph.C (writeFile): if layout is empty write out
9530         defaultLayoutName().
9531
9532         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
9533         file without named layout we set layout to defaultLayoutName().
9534
9535 2002-03-06  Juergen Vigna  <jug@sad.it>
9536
9537         * CutAndPaste.C (copySelection): set layout for new paragraph.
9538
9539         * text.C (prepareToPrint): leave ERT inset left aligned
9540         (leftMargin): don't indent paragraphs inside ERT insets
9541
9542 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9543
9544         * paragraph.C (breakParagraph): dont call clear do the work manually
9545
9546         * paragraph.[Ch] (clear): remove function
9547
9548 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9549
9550         * paragraph.C (Paragraph): dont call clear, the work has already
9551         been done.
9552
9553         * lyxtextclass.C (operator): assert if n is empty
9554
9555         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
9556         work manually instead.
9557
9558 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
9559
9560         * BufferView_pimpl.C: protect selectionLost against text == 0
9561
9562 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9563
9564         * text.C (breakParagraph): fix a setting layout to '0' problem.
9565
9566 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
9567
9568         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
9569         final location of file, for the included files, and graphics.
9570
9571 2002-03-05  Juergen Vigna  <jug@sad.it>
9572
9573         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
9574
9575 2002-03-04  Juergen Vigna  <jug@sad.it>
9576
9577         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
9578
9579         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
9580         last column of multicolumn cells.
9581         (SetWidthOfMulticolCell): recalculate NMC and real columns.
9582
9583 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
9584
9585         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
9586         file if it doesn't go to a temporary file.
9587
9588         * buffer.C (sgmlOpenTag):
9589         (sgmlCloseTag):  remove extra newline insertion.
9590
9591 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9592
9593         * text.C (getRowNearY): comment out debug msg
9594
9595 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9596
9597         * text2.C: first -> first_y
9598
9599         * text.C (getRowNearY): add some attemts at a possible
9600         optimization, not working.
9601
9602         * tabular.[Ch]: add BufferParams to several function so that newly
9603         created paragraph can be initialized to he default layotu for the
9604         buffers textclass.
9605
9606         * tabular-old.C (ReadOld): add buf->params to call of Init
9607
9608         * screen.C: rename text->first to text->first_y
9609
9610         * paragraph.C (breakParagraph): always set layout in the broken
9611         paragraph
9612
9613         * lyxtextclass.C (Read): remove lowercase
9614         (hasLayout): ditto
9615         (operator): ditto
9616         (delete_layout): ditto
9617
9618         * lyxtext.h: rename first -> first_y
9619
9620         * lyxlayout.C (Read): remove lowercase
9621         (name): ditto
9622         (setName): ditto
9623         (obsoleted_by): ditto
9624
9625         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
9626
9627         * buffer.C (insertErtContents): add params are to InsetERT
9628         (parseSingleLyXformat2Token): add code to check if a paragraphs
9629         layout really exist.
9630         (parseSingleLyXformat2Token): add params to several inset
9631         constructors
9632         (asciiParagraph): remove lowercase, do the layout comparisons with
9633         no_case
9634
9635         * BufferView_pimpl.C (cursorNext): first -> first_y
9636         (resizeCurrentBuffer): first -> first_y
9637         (updateScrollbar): first -> first_y
9638         (scrollCB): first -> first_y
9639         (workAreaMotionNotify): first -> first_y
9640         (workAreaButtonPress): first -> first_y
9641         (checkInsetHit): first -> first_y
9642         (cursorPrevious): first -> first_y
9643         (cursorNext): first -> first_y
9644         (Dispatch): add buffer_->params to severl inset contructors
9645
9646 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9647
9648         * lyxlayout.C (Read): remove some debug info that I forgot.
9649
9650         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
9651         clean up the code slightly.
9652         (makeLinuxDocFile): ditto
9653         (makeDocBookFile): ditto
9654
9655         * text2.C: layout as string
9656
9657         * text.C: layout as string
9658
9659         * paragraph_pimpl.C: layout as string
9660
9661         * paragraph.[Ch]: layout as string
9662
9663         * lyxtextclasslist.[Ch]: layout as string
9664
9665         * lyxtextclass.[Ch]: layout as string
9666
9667         * lyxtext.h: layout as string
9668
9669         * lyxlayout.[Ch]: layout as string
9670
9671         * lyx_cb.C: layout as string
9672
9673         * bufferview_funcs.C: layout as string
9674
9675         * bufferparams.C: layout as string
9676
9677         * buffer.C: layout as string
9678
9679         * LyXView.[Ch]: layout as string
9680
9681         * LaTeXFeatures.[Ch]: layout as string
9682
9683         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
9684
9685         * BufferView_pimpl.C: change current_layout to string, remove
9686         lyx::layout_type.
9687         (Dispatch):
9688         (smartQuote):
9689         (insertInset):
9690         (workAreaButtonRelease): layout as string
9691
9692         * BufferView2.C (unlockInset): adjust
9693
9694         * vspace.C (asLatexCommand): use an explict temp variable.
9695
9696 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
9697
9698         * Makefile.am: use FRONTEND_*
9699
9700 2002-03-01  Juergen Vigna  <jug@sad.it>
9701
9702         * tabular.C (SetWidthOfMulticolCell): changed to something better
9703         I hope but still work in progress.
9704         (recalculateMulticolumnsOfColumn): renamed function from
9705         recalculateMulticolCells as it is more appropriate now.
9706         (SetWidthOfCell): calculate multicols better.
9707
9708 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9709
9710         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
9711
9712         * lyxfunc.C (processKeySym): print sequence also if it is
9713         `deleted' (complete)
9714
9715         * kbsequence.C (print): print sequence even if it is deleted
9716         (complete would be a better word, actually).
9717
9718         * lyxfunc.C (dispatch): print complete options after a prefix key
9719
9720         * vspace.C (asLatexCommand): rewrite in a slightly different form.
9721
9722 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
9723
9724         * text2.C (setCharFont): eliminate setCharFont code duplication.
9725
9726 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9727
9728         * BufferView_pimpl.C (Dispatch): remove bogus handling of
9729         LFUN_TABULAR_FEATURE (bug #177)
9730
9731 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
9732
9733         * Makefile.am: remove figure.h
9734
9735 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
9736
9737         * Bufferview_pimpl.C:
9738         * CutAndPasteC:
9739         * LaTeX.C:
9740         * LyXSendto.C:
9741         * buffer.C:
9742         * bufferlist.C:
9743         * converter.C:
9744         * language.C:
9745         * lyxfunc.C:
9746         * lyxvc.C:
9747         * paragraph.C:
9748         * text.C:
9749         * text2.C: remove #include "lyx_gui_misc.h".
9750
9751         * LaTeX.C: added #include <cstdio>
9752
9753 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9754
9755         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
9756         that the paragraph following this one can have.
9757
9758         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
9759
9760         * vspace.C (asLatexCommand): fix bogus gcc warning
9761
9762         * Makefile.am (lyx_SOURCES): remove vms_defines.h
9763
9764 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
9765
9766         * text2.C (setLayout): get rid of redundant code
9767
9768 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
9769
9770         * text2.C (incDepth): make sure depth cannot be increased beyond
9771         reasonable values.
9772
9773 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
9774
9775         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
9776         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
9777
9778         * PainterBase.h (image):
9779         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
9780         a LyXImage const *.
9781
9782 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
9783
9784         * BufferView.C:
9785         * BufferView.h:
9786         * BufferView_pimpl.C:
9787         * BufferView_pimpl.h:
9788         * LaTeXFeatures.C:
9789         * LyXAction.C:
9790         * LyXView.C:
9791         * Makefile.am:
9792         * UpdateList.h:
9793         * UpdateList.C:
9794         * buffer.C:
9795         * figure.h:
9796         * figureForm.C:
9797         * figureForm.h:
9798         * figure_form.C:
9799         * figure_form.h:
9800         * lyx_cb.C:
9801         * lyx_gui.C:
9802         * lyx_gui_misc.C:
9803         * lyxfunc.C:
9804         * sp_base.h:
9805         * sp_ispell.h:
9806         * sp_pspell.h:
9807         * sp_spell.C: remove fig inset, and the crap house of
9808           cards that follows it
9809
9810 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
9811
9812         * Makefile.am:
9813         * lyxserver.C:
9814         * os2_defines.h:
9815         * os2_errortable.h:
9816         * nt_defines.h: move .h into support/
9817
9818         * vms_defines.h: remove
9819
9820         * WorkArea.C: add space in debug output
9821
9822         * text2.C:
9823         * paragraph.C:
9824         * buffer.C: add WITH_WARNINGS
9825
9826         * vc-backend.h:
9827         * vc-backend.C:
9828         * bufferlist.C: s/retrive/retrieve/, add docs
9829
9830         * vspace.h:
9831         * vspace.C:
9832         * kbmap.h:
9833         * lyxlength.h:
9834         * lyxgluelength.h:
9835         * length_common.h:
9836         * chset.h:
9837         * chset.C: add docs
9838
9839         * lyxgui.C: add ID to X error handler
9840
9841         * lyxtestclass.c: fix typo
9842
9843 2002-02-26  Juergen Vigna  <jug@sad.it>
9844
9845         * tabular_funcs.C (write_attribute): changed so that some default
9846         attributes are not written at all.
9847         (getTokenValue): set default values before trying to read the
9848         value so we have the return value always set as default if we don't
9849         find the token we search for.
9850
9851         * tabular.C (Write): write bools as bools not as strings!
9852
9853 2002-02-22  Juergen Vigna  <jug@sad.it>
9854
9855         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
9856         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
9857
9858         * text.C (leftMargin): don't add an indent for paragraphs inside
9859         tabular cells (fix #208).
9860
9861 2002-02-21  José Matos  <jamatos@fep.up.pt>
9862
9863         * tabular.C (docBook): fixed support for long tables.
9864
9865 2002-02-20  Juergen Vigna  <jug@sad.it>
9866
9867         * text2.C (getFont): get the drawing font of the Inset if this
9868         paragraph is inside an inset (only important for InsetERT for now).
9869
9870         * buffer.C (insertErtContents): use new lanugage params in ERT
9871         constructor.
9872
9873         * CutAndPaste.C: commenting out seemingly uneeded code.
9874
9875 2002-02-19  Allan Rae  <rae@lyx.org>
9876
9877         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
9878         Iterators might be simple to use but they also get invalidated.
9879         (removeAutoInsets): renamed saved cursor tracking variables and added
9880         some comments to clarify what everything does.
9881
9882 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
9883
9884         * Chktex.C:
9885         * LaTeX.C:
9886         * LyXSendto.C:
9887         * converter.C:
9888         * lyx_cb.C:
9889         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
9890         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
9891
9892         * lyxfunc.C:
9893         * vc-backend.h: remove #include "support/syscall.h"
9894
9895         * LaTeX.C:
9896         * LyXSendto.C:
9897         * converter.C: rearrange #includes in Lars' approved fashion.
9898
9899         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
9900         forward declare class Timeout in the header file.
9901
9902         * XFormsView.C: changes due to the above.
9903
9904         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
9905         similar to LyXView.
9906
9907         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
9908         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
9909
9910 2002-02-18  José Matos  <jamatos@fep.up.pt>
9911
9912         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
9913         insets contents.
9914
9915 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
9916
9917         * a lot of small ws changes
9918         * add a lot of using std::XXX
9919         * use std construcs some places where approp.
9920         * use some exisint stuff from lyxfunctional where approp.
9921         * Make file changes to use partial linking (lets test this now...)
9922
9923 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
9924
9925         * Chktex.C:
9926         * buffer.C:
9927         remove #include "support/syscontr.h" as it's redundant. Always has been.
9928
9929         * Chktex.C:
9930         * LaTeX.C:
9931         * LyXSendto.C:
9932         * converter.C:
9933         * lyx_cb.C:
9934         * vc-backend.C:
9935         change Systemcalls::System to Systemcalls::Wait and
9936         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
9937         No change of functionality, just reflects the stripped down Systemcalls
9938         class.
9939
9940 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
9941
9942         * debug.[Ch]: add a GRAPHICS type to the enum.
9943
9944 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9945
9946         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
9947
9948         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
9949         there is an inset.
9950
9951 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9952
9953         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
9954         match the changes below.
9955
9956         * text2.C (toggleInset): if there is not editable inset at cursor
9957         position, try to see if cursor is _inside_ a collapsable inset
9958         and close it.
9959
9960 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9961
9962         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
9963         document menu has a nice checkbox
9964
9965 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9966
9967         * lyxlength.C (asLatexString): change PW to output as percent of
9968         \textwidth.
9969
9970         * lengthcommon.C: change '%' to 't%'
9971
9972         * lyxfunc.C (dispatch): a few comments from Martin
9973
9974 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
9975
9976         * WorkArea.h:
9977         * WorkArea.C:
9978         * BufferView_pimpl.h:
9979         * BufferView_pimpl.C: clear our selection when X tells us we've lost
9980           the X selection.
9981
9982 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9983
9984         * vspace.C (inPixels): fix compiler warning
9985
9986 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9987
9988         * lyxfunc.C (getStatus): fix status message for disabled commands.
9989
9990 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
9991
9992         * BufferView_pimpl.C: fix crash on close buffer
9993         during selection (#227)
9994
9995 2002-01-27  Herbert Voss  <voss@lyx.org>
9996
9997         * buffer.C: link old Figure to new graphic inset
9998
9999 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
10000
10001         * FontLoader.C (getFontinfo): Change the latex font names in order
10002         to match the names of type1inst.
10003
10004 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10005
10006         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
10007
10008         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
10009         (extchanged): ditto
10010         (ext_exist): ditto
10011         (remove_files_with_extension): ditto
10012         (remove_file): ditto
10013         (write): ditto
10014
10015         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
10016         document is smaller than the work area height. Do not initialize
10017         static variables to 0.
10018
10019 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10020
10021         * lyx_gui.C (init): give the toolbar tooltips a normal font.
10022
10023         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
10024         LFUN_LAYOUT_PARAGRAPHS.
10025
10026         * tabular.C (GetCellFromInset): new method. Finds an inset in a
10027         tabular. It is possible to provide a possible cell, which will
10028         typically be the actcell from the corresponding insettabular
10029
10030         * lyxfunc.C (getStatus): small cleanup; disable
10031         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
10032         true
10033
10034 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10035
10036         * tabular.C (Validate): remove broken optimization (fixes bug #201)
10037
10038         * paragraph.C (startTeXParParams):
10039         (endTeXParParams): new methods. The LaTeX code to
10040         start/end paragraph formatting
10041         (simpleTeXOnePar): call startTeXParParams also when paragraph is
10042         empty (fixes bug #200)
10043
10044         * vspace.C (inPixels): adapt to the change below
10045         (inPixels): [later] more cleanups (remove unused variables)
10046
10047         * lyxlength.C (inPixels): change to use a width and a height as
10048         parameter.
10049
10050 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10051
10052         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
10053         Replaced with \paperwidth
10054
10055         * DepTable.C (insert): add std:: qualifier
10056
10057 2002-01-18  Allan Rae  <rae@lyx.org>
10058
10059         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
10060         updated also?
10061
10062         * text.C (drawInset): Turned out I didn't know enough about how
10063         rebreaking worked.  This fixes most of the redraw problems.  I see
10064         an occasional cursor trail when a line is broken now and the cursor
10065         placement can seem out by a few pixels also after a rebreak.
10066
10067 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10068
10069         * buffer.C (parseSingleLyXformat2Token): update because minipage
10070         width is now a LyXLength
10071
10072         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
10073
10074         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
10075         math insets
10076
10077 2002-01-17  Juergen Vigna  <jug@sad.it>
10078
10079         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
10080
10081         * BufferView2.C (lockInset): call edit() so that theLockingInset()
10082         is set correctly and the inset is updated correctly.
10083
10084 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10085
10086         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
10087         the beginning of the loop.
10088
10089 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
10090
10091         * lyxrc.C: improve help for use_scalable_fonts
10092
10093 2002-01-17  Allan Rae  <rae@lyx.org>
10094
10095         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
10096
10097 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10098
10099         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
10100         make sure to set their inset_owner to the right value (bug #171)
10101
10102 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
10103
10104         * DepTable.h
10105         * DepTable.C: Implement mtime checking to reduce time spent doing
10106         CRCs.
10107
10108 2002-01-16  Juergen Vigna  <jug@sad.it>
10109
10110         * tabular.C (GetAdditionalHeight): one of error fixed.
10111
10112         * lyxrc.C (output): small fix in writing use_pspell.
10113
10114 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
10115
10116         * sp_base.h: #include LString.h
10117
10118 2002-01-16  Allan Rae  <rae@lyx.org>
10119
10120         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
10121         Can someone check this please?
10122
10123         * text.C (drawInset): It was possible that p.row would be removed by
10124         breakAgainOneRow upsetting a few other settings.  There may be another
10125         small tweak possible by setting need_break_row = 0 when p.row has been
10126         removed but I don't know enough about the logic here.
10127
10128 2002-01-15  Allan Rae  <rae@lyx.org>
10129
10130         * text.C (insertChar): removed conditional truism.
10131
10132         * BufferView2.C (removeAutoInsets): More tweaks.
10133         cur_par_prev could be a stray pointer.  Check for trailing empty line
10134         in case last line was cur_par and only had an error inset on it.
10135
10136 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10137
10138         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
10139         absolute
10140
10141         * vc-backend.C (most methods):
10142         * exporter.C (Export):
10143         * converter.C (convert):
10144         (runLaTeX):
10145         * LyXSendto.C (SendtoApplyCB):
10146         * lyxfunc.C (dispatch):
10147         (menuNew):
10148         (open):
10149         (doImport):
10150         * lyx_cb.C (AutoSave):
10151         (InsertAsciiFile):
10152         * BufferView_pimpl.C (MenuInsertLyXFile):
10153         * buffer.C (runChktex): use Buffer::filePath().
10154
10155         * buffer.h: rename filename to filename_; rename filepath to
10156         filepath_ and make it private
10157         (filePath): new method
10158
10159         * buffer.C (writeFile): use fileName()
10160         (getLatexName):
10161
10162         * lyx_main.C (init): fix starting  of LyX when the binary is a
10163         link from so,ewhere else.
10164
10165         * minibuffer.C: include <cctype> for isprint
10166
10167 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
10168
10169         * buffer.C (parseSingleLyXformat2Token): changes associated with the
10170         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
10171         name clash with InsetCollapsable's width function.
10172
10173 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10174
10175         * lastfiles.C: include <iterator>
10176
10177 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
10178
10179         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
10180         std::count.
10181
10182         * buffer.C (makeLaTeXFile): ditto.
10183         Also make loop operation more transparent.
10184
10185 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
10186
10187         * ToolbarDefaults.C: remove trailing comma closing namespace.
10188
10189         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
10190
10191         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
10192         as in WorkArea.
10193
10194         * trans.C (Load): comment out unused variable, allowed.
10195
10196 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
10197
10198         * minibuffer.[Ch] (append_char): new method to recieve input from the
10199         drop-down completion browser. If a key was pressed, then recieve this
10200         char and append it to the existing string.
10201         (peek_event): modify the positioning data passed to the completion
10202         browser so that it can be placed above the minibuffer rather than below.
10203 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10204
10205         * LyXAction.C (init): alloe error-next for readonly documents.
10206
10207         * BufferView2.C (ChangeRefsIfUnique): use standard version of
10208         count.
10209
10210 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10211
10212         * bufferlist.C (readFile): create the buffer _after_ checking that
10213         the file exists.
10214
10215         * lyxfunc.C (verboseDispatch): fix handling of arguments
10216
10217         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
10218
10219         * lyxrc.C: use string::erase() instead of initializing to "".
10220
10221
10222 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
10223
10224         * BufferView_pimpl.h:
10225         * BufferView_pimpl.C:
10226         * WorkArea.h:
10227         * WorkArea.C:
10228         * text2.C: tell X when we have made a selection for copying
10229
10230 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10231
10232         * BufferView_pimpl.C (MenuInsertLyXFile):
10233         * lyxfunc.C (menuNew):
10234         (open):
10235         (doImport): add shortcuts to directory buttons
10236
10237         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
10238         open a float)
10239
10240         * lyxfunc.C (setStatusMessage):
10241         (getStatusMessage): new methods
10242         (getStatus):use setStatusMessage instead of setErrorMessage
10243         (dispatch): when function is disabled, set error message here
10244         [instead of in getStatus previously]
10245
10246         * BufferView_pimpl.C (workAreaButtonRelease): update
10247         toolbar/menubar here too.
10248
10249 2002-01-13  Allan Rae  <rae@lyx.org>
10250
10251         * BufferView2.C (removeAutoInsets): finished off earlier fix.
10252         Now seems indestructible.  Remaining task is to audit all other
10253         code affected by deleteEmptyParagraphMechanism.  One small quirk
10254         left is that an empty document with an error in the preamble can
10255         be made to report an error but no error box appears.  I don't know
10256         where it goes.
10257         (removeAutoInsets): Improved comments.
10258
10259 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
10260
10261         * Thesaurus.h:
10262         * Thesaurus.C: update for Aiksaurus 0.14
10263
10264 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10265
10266         * text2.C (firstParagraph): removed member function, all uses
10267         replaces with ownerParagraph
10268         (redoParagraphs): here
10269         (updateInset): here
10270         (toggleAppendix): here
10271         * BufferView2.C (insertErrors): here
10272         (setCursorFromRow): here
10273
10274 2002-01-13  Allan Rae  <rae@lyx.org>
10275
10276         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
10277         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
10278         There is still a way to segfault this although you may have to do this
10279         multiple times: Have an InsetERT with an unknown command in it.
10280         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
10281         <down-arrow>, <Enter> again, View->DVI, BANG!
10282
10283         * text2.C (setCursor):
10284         (deleteEmptyParagraphMechanism):
10285         * lyxtext.h (setCursor):
10286         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
10287         Making use of the return value may help fix other bugs.
10288
10289 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10290
10291         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
10292
10293         * LyXView.C (updateMenubar): call MenuBar::update here
10294         (updateToolbar): but not here
10295         (showState): do not update toolbar/menubar
10296
10297         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
10298         should need to care about that.
10299
10300         * lyxfunc.C (verboseDispatch): simplify a bit
10301         (getStatus): have a version which takes a pseudoaction, and
10302         another which requires a (kb_action,string).
10303
10304         * LyXAction.C (retrieveActionArg): make it work also when action
10305         is not a pseudo-action.
10306         (getActionName): simplify a bit
10307         (helpText):
10308
10309 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10310
10311         * lyxfunc.C (verboseDispatch): new families of methods with
10312         several ways to specify a command and a bool to indicate whether
10313         the command name and shortcut should be displayed in minibuffer
10314         (eventually, we could extend that to a finer bitmask like
10315         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
10316         (dispatch): the pristine dispatch command which just, well,
10317         dispatchs! Note it still sets its result to minibuffer; I'm not
10318         sure we want that.
10319
10320         * lyxfunc.h: remove setHintMessage
10321
10322         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
10323
10324 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10325
10326         * BufferView_pimpl.C (specialChar): delete new inset if we have
10327         not been able to insert it.
10328
10329         * kbmap.C: revert to using int instead of kb_action, since all we
10330         are dealing with is pseudo-actions.
10331
10332         * LyXAction.C (searchActionArg): change to return int instead of
10333         kb_action, since the result is a pseudoaction.
10334
10335 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
10336
10337         * buffer.C (insertErtContents): Fix (partially) the font bug.
10338
10339 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
10340
10341         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
10342         as the other one is broken on my machine!
10343
10344 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
10345
10346         * commandtags.h:
10347         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
10348
10349 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
10350
10351         * lyxrc.[Ch]: change names and descriptions of popup font variables to
10352         reflect their actual use. Provide compatibility code for older lyxrc
10353         files.
10354
10355         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
10356         FL_NORMAL_STYLE.
10357         change names of popup font variables in line with the changes to lyxrc.C
10358
10359 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10360
10361         * buffer.C (asciiParagraph): avoid outputing a word twice after
10362         an inset.
10363
10364         * lyxrc.C (getDescription): document that document_path and
10365         template_path can be empty.
10366
10367 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10368
10369         * LaTeXFeatures.C (getMacros):
10370         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
10371
10372         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
10373
10374         * LaTeXFeatures.C (useFloat): require "float" here instead of in
10375         getPackages.
10376         (getPackages): rename feature "floats" to "float". Use an array to
10377         iterate over 'simple' features (i.e. just a \usepackage). Add
10378         handling of "amsmath" (renamed from "amsstyle").
10379
10380 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
10381
10382         * LaTeXFeatures.C (require): Prevent duplicate entries in the
10383         features list.
10384
10385 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
10386
10387         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
10388         FuncStaus::FuncStatus & FuncStaus::some_method().
10389
10390 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
10391
10392         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
10393         of the func_satus stuff. Edited and massaged in various ways by
10394         JMarc.
10395
10396         * lyxfunc.C (getStatus): use FuncStatus
10397
10398 2002-01-08  Juergen Vigna  <jug@sad.it>
10399
10400         * text.C (nextBreakPoint): use function Inset::isChar().
10401
10402         * paragraph.C (TeXOnePar): use function
10403         Inset::forceDefaultParagraphs.
10404
10405         * buffer.C (latexParagraphs): use function
10406         Inset::forceDefaultParagraphs.
10407
10408 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
10409
10410         * lyx_gui.C (init): set the style of the menu popups to
10411         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
10412
10413 2002-01-07  Juergen Vigna  <jug@sad.it>
10414
10415         * text.C (setHeightOfRow): small fix
10416         (prepareToPrint): don't look at alignment if we don't have the place
10417         for doing it.
10418
10419 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
10420
10421         * box.C: New file. Move the Box methods and functions out of box.h,
10422         following Lars' suggestion.
10423
10424 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
10425
10426         * box.h: #include "support/LOstream.h", needed for inlined function.
10427
10428         * lyxtextclass.C:
10429         * lyxtextclasslist.C: added some using std declarations.
10430
10431 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
10432
10433         * box.h: make signed dimensions to allow insets wider than
10434           the screen (bug #162)
10435
10436         * BufferView_pimpl.C: add some insetHit debug
10437
10438 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
10439
10440         * vc-backend.C: add FIXME
10441
10442 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10443
10444         * lyxfunc.C (getStatus): enable code for showing math font status
10445         in toolbar/menu.
10446
10447 2002-01-07  Juergen Vigna  <jug@sad.it>
10448
10449         * text.C (nextBreakPoint): removed debug output not needed anymore.
10450
10451 2002-01-06  Juergen Vigna  <jug@sad.it>
10452
10453         * text.C (nextBreakPoint): fixed up this function we had this bug
10454         since ever but now hopefully we break row better.
10455         (insertChar): we have to check if an inset is the next char as it
10456         could now happen that a large inset is causing a break.
10457
10458 2002-01-05  Juergen Vigna  <jug@sad.it>
10459
10460         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
10461         if it doesn't like to be drawed.
10462
10463 2002-01-04  Juergen Vigna  <jug@sad.it>
10464
10465         * BufferView2.C (lockInset): forgot to set a cursor.
10466
10467         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
10468
10469 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
10470
10471         * FormMathsPanel.C:
10472         * FormMathsPanel.h
10473         * MathsSymbols.C:
10474         * form_maths_panel.C:
10475         * form_maths_panel.h:
10476         * form_maths_panel.fd: implemented sub- and super- buttons in math
10477         panel.
10478
10479         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
10480         (or ^ space) to be used as in TeX (req'd by André).
10481
10482         * lyxfunc.C: Allow ^ and _ again to be used both as
10483         super/subscript (mathed) and as themselves (in text).
10484
10485 2002-01-03  Allan Rae  <rae@lyx.org>
10486
10487         * LyXView.C (updateWindowTitle): Setup a short icon title of either
10488         "LyX" or the filename of the current buffer if it has one.  This is a
10489         modified form of John Levon's patch.
10490
10491         * XFormsView.C (setWindowTitle): also set icon title.
10492
10493         * LyXView.h (setWindowTitle): signature changed.
10494         * XFormsView.h (setWindowTitle): ditto.
10495
10496 2002-01-02  Juergen Vigna  <jug@sad.it>
10497
10498         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
10499
10500 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10501
10502         * screen.C (topCursorVisible): introduce a temp var for
10503         text->cursor.row(), handle the case where this row is null. (kindo
10504         hachish)
10505
10506         * text2.C (setCursor): add a couple of asserts.
10507
10508         * paragraph.h (inset_iterator): add -> operator
10509
10510         * paragraph.[Ch] (autoDeleteInsets): remove member function
10511
10512         * BufferView2.C (removeAutoInsets): rewrite to handle the old
10513         cursor pos correctly and handle inset deletion by itself.
10514         (insertErrors): move iterator declaration out of for expression
10515
10516         * lyxtextclass.C: add <algorithm>
10517
10518         * Makefile.am: added the new files to sources, removed layout.C
10519
10520         * layout.C: removed file
10521
10522         * layout.h: remove LYX_DUMMY_LAYOUT
10523
10524         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
10525         layout.
10526
10527         * lyxlayout.[Ch]:
10528         * lyxtextclass.[Ch]:
10529         * lyxtextclasslist.[Ch]: new files
10530
10531         * include order changes to a lot of files, also changes because of
10532         the six new files.
10533
10534 2001-12-27  Juergen Vigna  <jug@sad.it>
10535
10536         * buffer.C (asciiParagraph): more fixes.
10537
10538         * tabular.C (ascii): make ascii export support export of only the
10539         data separated by a column-delimiter.
10540         (ascii): better support for ascii export.
10541
10542         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
10543
10544 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10545
10546         * tabular_funcs.C: use a "using std::getline" instead of the
10547         previous fix from Angus (necessary for cxx + lyxstring)
10548
10549 2001-12-24  Juergen Vigna  <jug@sad.it>
10550
10551         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
10552
10553         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
10554         problems. First check a minipage also if we have some ert-contents
10555         (not only on par->size(), second set the right depth of the paragraph
10556         on the relink to the root-paragraph-list!
10557
10558         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
10559         which then did not anymore update the main paragraphs on undo/redo!
10560
10561 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10562
10563         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
10564         code. Support all font-changing funcs (even those which are not in
10565         menu currently). Support for reporting font settings in
10566         mathed (disabled until Andre provides a function on mathed's side).
10567
10568         * func_status.h (toggle): small helper function to set toggle
10569         state on a flag.
10570
10571 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
10572
10573         * tabular_funcs.C: getline -> std::getline
10574
10575 2001-12-21  Juergen Vigna  <jug@sad.it>
10576
10577         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
10578         accessed and could be 0 (I couldn't generate this but it seems
10579         Michael could!).
10580
10581 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10582
10583         * tabular_funcs.C: add LIstream.h, move write_attribute to..
10584         * tabular_funcs.h: here and include iosfwd
10585
10586 2001-12-20  Juergen Vigna  <jug@sad.it>
10587
10588         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
10589         inside inset but undo_par was.
10590
10591 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10592
10593         * Thesaurus.C: always include <config.h> in sources.
10594
10595         * Painter.h:
10596         * lyxlookup.h:
10597         * box.h: do not include <config.h> in header files
10598
10599         * text.C (paintLastRow): remove unused variable
10600
10601         * text.C (transformChar):
10602         (insertChar):
10603         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
10604
10605         * Painter.C (text):
10606         * font.C (width): rewrite to use uppercase() instead of
10607         islower/toupper.
10608
10609         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
10610
10611 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
10612
10613         * lyxfind.C: clean up of find failure position change
10614
10615 2001-12-20  Juergen Vigna  <jug@sad.it>
10616
10617         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
10618
10619         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
10620         (TeXRow): added to LaTeX a single tabular row.
10621         (TeXLongtableHeaderFooter): added to output LT-h/f data.
10622         (Latex): simplified and finally good LT-h/f support.
10623         (various_functions): just small adaptions for LT-h/f support.
10624
10625         * tabular_funcs.[hC]: added and moved here all not classfunctions
10626         of LyXTabular.
10627
10628 2001-12-19  Juergen Vigna  <jug@sad.it>
10629
10630         * tabular.[Ch]: better support for longtabular options (not finished
10631         yet!)
10632
10633 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10634
10635         * text.C (paintLastRow): use the label font instead of the font of
10636         the last character to compute the size of *_BOX. This makes more
10637         sense and avoids a crash with empty paragraphs.
10638         Use Painter::rectangle to draw EMPTY_BOX.
10639
10640 2001-12-19  Juergen Vigna  <jug@sad.it>
10641
10642         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
10643         the paragraphs if the replaced paragraph is not the first one!
10644         Tried to delete not used paragraphs but does not work yet so for
10645         now it's inside #ifdef's and by default off!
10646
10647 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10648
10649         * MenuBackend.C: include "lyx_main.h" instead of declaring
10650         lastfiles (actually was declared as LastFiles* instead of a
10651         scoped_ptr).
10652
10653 2001-12-17  Juergen Vigna  <jug@sad.it>
10654
10655         * tabular.C (AppendColumn): applied John's fix
10656
10657 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
10658
10659         * BufferView.h:
10660         * BufferView.C:
10661         * BufferView_pimpl.h:
10662         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
10663
10664         * Makefile.am:
10665         * box.h: new start of class for above
10666
10667         * lyxfunc.C: ignore space-only minibuffer dispatches.
10668           Show the command name when it doesn't exist
10669
10670         * minibuffer.C: don't add empty lines to the history
10671
10672         * minibuffer.C: add a space on dropdown completion
10673
10674 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
10675
10676         * text.C: fix line above/below drawing in insets
10677
10678 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10679
10680         * lyxlength.C (LyXLength): Initialize private variables.
10681
10682 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
10683
10684         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
10685         when inserting error insets.
10686
10687 2001-12-13  Juergen Vigna  <jug@sad.it>
10688
10689         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
10690         actually sometimes the before-paragraph.
10691         (setUndo): don't clear the redostack if we're not actually undoing!
10692
10693 2001-12-06  Juergen Vigna  <jug@sad.it>
10694
10695         * undo_funcs.C (textHandleUndo): well after John's hint I got here
10696         and fixed redoing of main paragraph, so we can use it now ;)
10697
10698         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
10699
10700 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10701
10702         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
10703         Juergen's request
10704
10705 2001-12-13  André Pönitz <poenitz@gmx.net>
10706
10707         * undostack.[Ch]:
10708         * undo_func.C: minor cleanup
10709
10710 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10711
10712         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
10713         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
10714         font in urw-fonts package which is marked as -urw-fontspecific and
10715         does not work (incidentally, changing the encoding in the
10716         fonts.dir of this package to -adobe-fontspecific fixes the
10717         problem).
10718
10719         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
10720         is a crash when undoing first paragraph (Juergen, please take a
10721         look). THis does not mean the undo fix is wrong, just that it
10722         uncovers problems.
10723
10724         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
10725         the (Paragraph*) version when needed instead of duplicating the
10726         code.
10727
10728         * text.C (workWidth): use Inset::parOwner to find out where the
10729         inset has been inserted. This is a huge performance gain for large
10730         documents with lots of insets. If Inset::parOwner is not set, fall
10731         back on the brute force method
10732
10733         * paragraph_pimpl.C (insertInset):
10734         * paragraph.C (Paragraph):
10735         (cutIntoMinibuffer): set parOwner of insets when
10736         inserting/removing them
10737
10738         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
10739
10740 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
10741
10742         * commandtags.h:
10743         * LyXAction.C:
10744         * lyx_main.C:
10745         * lyxfunc.C:
10746         * mathed/formulabase.C:
10747         * mathed/math_cursor.[Ch]:
10748         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
10749
10750
10751 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10752
10753         * lyxlength.[Ch] (operator!=): new function
10754
10755 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10756
10757         * text.C (workWidth): use Inset::parOwner to find out where the
10758         inset has been inserted. This is a huge performance gain for large
10759         documents with lots of insets. If Inset::parOwner is not set, fall
10760         back on the brute force method
10761
10762         * paragraph_pimpl.C (insertInset):
10763         * paragraph.C (Paragraph):
10764         (cutIntoMinibuffer): set parOwner of insets when
10765         inserting/removing them
10766
10767         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
10768
10769 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10770
10771         * tabular-old.C (getTokenValue):
10772         * tabular.C (getTokenValue):
10773         (write_attribute): new versions for LyXLength
10774         (everywhere): adjust the use of widths
10775
10776         * tabular.h: change the type of widths from string to LyXLength
10777
10778 2001-12-11  Ben Stanley <bds02@uow.edu.au>
10779
10780         * paragraph.C: fixed missing line number count when exporting
10781         Environments to LaTeX file
10782
10783         * buffer.C: added informational message for checking line numbers.
10784
10785 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10786
10787         * text2.C (deleteEmptyParagraphMechanism): if there is only one
10788         paragraph, do the 'double space' part, but not the 'empty
10789         paragraph' one.
10790
10791         * text.C (workWidth): small optimization
10792         (getLengthMarkerHeight): use minimal size for negative lengths.
10793
10794 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
10795
10796         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
10797
10798         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
10799
10800 2001-12-11  André Pönitz <poenitz@gmx.net>
10801
10802         * FontLoader.C:
10803         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
10804
10805 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
10806
10807         * text2.C: keep selection on a setFont()
10808
10809 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
10810
10811         * lyx_cb.C: another bv->text misuse, from insert label
10812
10813 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
10814
10815         * kbsequence.h:
10816         * kbsequence.C: re-instate nmodifier mask
10817
10818 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
10819
10820         * lyx_main.h: make lyxGUI private.
10821
10822 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
10823
10824         * lyxfind.C: place the cursor correctly on failed search
10825
10826 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10827
10828         * text.C (getLengthMarkerHeight): for small heights, the arrows
10829         are not always on top/bottom of the text
10830         (drawLengthMarker): smaller arrows; take the left margin in
10831         account; draw also vfills.
10832         (paintFirstRow):
10833         (paintLastRow): remove special code for vfill and standard spaces,
10834         since everything is handled in drawLengthMarker now.
10835
10836 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10837
10838         * buffer.C (insertErtContents): try to handle font and language
10839         interaction a bit better.g
10840
10841         * ColorHandler.C (updateColor): change the hash to cover the whole
10842         LColor enum, ws cleanup
10843         (getGCLinepars): ditto
10844         (getGCLinepars): only lookup in the linecache once.
10845
10846 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
10847
10848         * iterators.C (operator++): Make the iterator more robust
10849
10850         * BufferView2.C (removeAutoInsets): Use paragraph iterators
10851         (John's patch)
10852         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
10853
10854 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
10855
10856         * lyxtext.h:
10857         * text.C: better added space drawing
10858
10859 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
10860
10861         * LyXView.C:
10862         * BufferView2.C: fix layout combo update on inset unlock
10863
10864 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
10865
10866         * Makefile.am: don't compile unused files
10867
10868 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
10869
10870         * lyxfunc.C:
10871         * commandtags.h:
10872         * LyXAction.C: remove old LFUN_LAYOUTNO
10873
10874 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
10875
10876         * paragraph_pimpl.h:
10877         * paragraph_pimpl.C: isTextAt() doesn't need font param
10878
10879 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
10880
10881         * lyxlex.h:
10882         * lyxlex.C: little cleanup
10883
10884 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
10885
10886         * BufferView_pimpl.C: fix insertAscii for insets
10887
10888 2001-12-05  Juergen Vigna  <jug@sad.it>
10889
10890         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
10891         set the right font on the "multi" paragraph paste!
10892
10893 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10894
10895         * trans_decl.h:
10896         * trans_mgr.[Ch]:
10897         * trans.[Ch]:
10898         * lyxgluelength.C:
10899         * lyxlength.C: remove out-commented code.
10900
10901         * BufferView_pimpl:
10902         * CutAndPaste.C:
10903         * DepTable.C:
10904         * buffer.C:
10905         * chset.C:
10906         * lastfiles.C:
10907         * lyxlex.C:
10908         * lyxlex_pimpl.C:
10909         * lyxserver.C:
10910         * screen.C:
10911         * tabular-old.C:
10912         * tabular.C:
10913         * text.C:
10914         * trans_mgr.C:
10915         * vc-backend.C: change "while(" to "while ("
10916
10917         * lyxlength.[Ch]: add zero function to check if length is zero or
10918         not
10919         * lyxgluelength.C: use it
10920
10921 2001-12-05  Allan Rae  <rae@lyx.org>
10922
10923         * lyxlength.C: Attempted a fix for the abs(int) header selection.
10924         Works for 2.95.3, from what I understand of Garst's reports this should
10925         work for other g++ versions.  We're screwed if the abs(int) definition
10926         changed between bugfix releases of gcc.
10927
10928 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
10929
10930         * text.C: fix chapter label offset !
10931
10932 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
10933
10934         * lyxtext.h:
10935         * text.C: fix hfill at end of line, clean up
10936
10937 2001-12-04  Juergen Vigna  <jug@sad.it>
10938
10939         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
10940         that we force an update of the inset and it's owners if neccessary.
10941
10942 2001-12-03  Juergen Vigna  <jug@sad.it>
10943
10944         * text.C (rowLast): simplified code
10945
10946 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
10947
10948         * lyxfunc.C: fix show options on timeout
10949
10950 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10951
10952         * screen.C (topCursorVisible): scroll half a page when the cursor
10953         reached top of bottom of screen
10954
10955 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
10956
10957         * minibuffer.C: deactivate on loss of focus
10958
10959 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10960
10961         * vspace.[Ch] (operator!=): add operator.
10962
10963 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
10964
10965         * BufferView_pimpl.C: refuse to open an inset when
10966         there's a selection.
10967
10968 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
10969
10970         * BufferView_pimpl.C: allow to click on RHS of full row insets
10971
10972 2001-11-30  Juergen Vigna  <jug@sad.it>
10973
10974         * tabular.C (LyXTabular): add a same_id to set the same id's in the
10975         insets for undo reasons.
10976
10977 2001-11-28  André Pönitz <poenitz@gmx.net>
10978
10979         * vspace.[Ch]: cosmetical changes
10980
10981 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
10982
10983         * LyXAction.h:
10984         * LyXAction.C:
10985         * lyxfunc.h:
10986         * lyxfunc.C:
10987         * kbmap.h:
10988         * kbmap.C:
10989         * lyxrc.C:
10990         * kbsequence.h:
10991         * kbsequence.C: part re-write of old kb code
10992
10993         * Painter.C:
10994         * WorkArea.C: remove Lgb_bug_find_hack
10995
10996 2001-11-30  José Matos <jamatos@fep.up.pt>
10997
10998         * buffer.C (makeDocBookFile): add a comment to point a hack.
10999         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
11000         Fixed a double write of labels.
11001
11002 2001-11-29 Ben Stanley <bds02@uow.edu.au>
11003
11004         * LaTeX.C:
11005         * LaTeX.h Fixed bug in LaTeX class where it would not
11006         re-run latex if no depfiles were changed, but the .dvi was removed.
11007
11008 2001-11-28  André Pönitz <poenitz@gmx.net>
11009
11010         * all the files from the change on 2001/11/26:
11011         use lyx::layout_type instead of LyXTextClass::size_type
11012         use lyx::textclass_type instead of LyXTextClassList::size_type
11013
11014 2001-11-29  Juergen Vigna  <jug@sad.it>
11015
11016         * text.C: added support for paragraph::isFreeSpacing()
11017
11018         * buffer.C: same as above
11019
11020         * paragraph.h: inserted isFreeSpacing() function to enable
11021         FreeSpacing inside InsetERT.
11022
11023         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
11024         of the paragraph's in the cut/copy buffer to 0!
11025
11026         * text2.C (removeRow): remove the assert as it can!
11027
11028         * lyxtext.h: added helper function firstRow returning firstrow and
11029         made firstrow private again.
11030
11031         * BufferView2.C (lockInset): don't relock if we're already locked!
11032
11033         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
11034         the only paragraph.
11035         (removeRow): added Assert::(firstrow)
11036
11037         * debug.C: forgot to add INSETTEXT here.
11038
11039 2001-11-28  Juergen Vigna  <jug@sad.it>
11040
11041         * sp_spell.C (initialize): changed error text to more general
11042         spellchecker command use (not only ispell!)
11043
11044         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
11045
11046         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
11047
11048 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
11049
11050         * vspace.C: initialise lyxgluelength on failure
11051
11052 2001-11-28  Allan Rae  <rae@lyx.org>
11053
11054         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
11055         declaration & definition that looks like a function declaration.
11056
11057 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11058
11059         * BufferView2.C (copy):
11060         (copyEnvironment): do not clear the selection when doing a copy.
11061
11062         * text.C (paintFirstRow): compilation fix
11063
11064 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
11065
11066         * tabular.C (Latex): correct line count when writing latex.
11067
11068 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
11069
11070         * paragraph_pimpl.h:
11071         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
11072           bug a bit
11073
11074 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
11075
11076         * text.C:
11077         * LColor.h:
11078         * LColor.C: change vfillline->added_space
11079
11080         * text.C: add markers and text for added space
11081
11082         * vspace.C: fix comment
11083
11084 2001-11-28  André Pönitz <poenitz@gmx.net>
11085
11086         * paragraph.C: whitespace changes
11087         * all the other files from the change on 2001/11/26:
11088         change *::pos_type into lyx::pos_type
11089
11090 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
11091
11092         * buffer.C (parseSingleLyXformat2Token): Set the language to the
11093         language of the document when inserting error insets.
11094
11095 2001-11-26  André Pönitz <poenitz@gmx.net>
11096
11097         * BufferView_pimpl.[Ch]:
11098         *       CutAndPaste.C:
11099         * buffer.[Ch]:
11100         * lyxcursor.[Ch]:
11101         * lyxfind.C:
11102         * lyxfunc.C:
11103         * lyxrow.[Ch]:
11104         * paragraph.[Ch]:
11105         * paragraph_pimpl.[Ch]:
11106         * sp_spell.C:
11107         * text.C:
11108         * text2.C: reduce header dependencies, introduce type for positions
11109
11110 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
11111
11112         * <various>: change to use Alert.h
11113
11114 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
11115
11116         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
11117         when encountering an unknown token.
11118         (readLyXformat2): Show an error message if there were unknown tokens.
11119
11120 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
11121
11122         * BufferView2.C:
11123         * BufferView_pimpl.C:
11124         * buffer.C:
11125         * paragraph.h:
11126         * text.C:
11127         * text2.C: use par->isInset()
11128
11129 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
11130
11131         * paragraph_pimpl.h:
11132         * paragraph_pimpl.C: cleanup
11133
11134 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11135
11136         * text2.C (removeRow):
11137         * text.C (setHeightOfRow): remove useless (and costly) call to
11138         getRow.
11139
11140 2001-11-20  Allan Rae  <rae@lyx.org>
11141
11142         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
11143         Now need Inset*::checkInsertChar() to return true for appropriate
11144         cases so that the characters in the minibuffer will actually be
11145         inserted.
11146
11147 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11148
11149         * text.C: change the order of the includes.
11150         (workWidth): initialize it at once.
11151         (workWidth): make maxw unsigned
11152         (setHeightOfRow): remove unused variable (inset)
11153         (selectSelectedWord): remove unused variable (inset)
11154         (paintRowText): fix drawing of hfill characters, and clean up a bit.
11155
11156 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11157
11158         * lyxserver.C (emergencyCleanup): do not try to close pipes if
11159         server is not running.
11160         (openConnection):
11161         (closeConnection): add debug info when server is disabled.
11162
11163         * ColorHandler.C (getGCForeground): send debug message to GUI
11164         channel.
11165
11166         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
11167
11168         * kbmap.C (bind): modify because return conventions of
11169         kb_sequence::parse have changed.
11170
11171         * kbsequence.C (parse): only ignore spaces and not any stupid
11172         control character. This avoids tests like s[i] <= ' ', which are
11173         guaranteed to fail with 8bit characters and signed chars.
11174         Change return code to string::npos when there have been no error
11175         (0 was a bad idea when error is at first character)
11176
11177 2001-11-14  José Matos  <jamatos@fep.up.pt>
11178
11179         * buffer.h:
11180         * buffer.C (simpleDocBookOnePar): removed unused argument.
11181
11182 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11183
11184         * text.C (selectNextWordToSpellcheck): do not test explicitely for
11185         insets which are part of a word. Paragraph::isLetter takes care of
11186         that now. Use Paragraph::isInset to identify insets.
11187         (selectSelectedWord): do not test for hyphenation break.
11188
11189         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
11190         that protected spaces are considered as spaces.
11191
11192         * paragraph.C (isLetter): cleanup the code for ispell extras; use
11193         Inset::isLetter.
11194
11195 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
11196
11197         * lyxserver.h:
11198         * lyxserver.C: fix it. and small cleanup.
11199
11200 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
11201
11202         * BufferView_pimpl.C: use inline helpers
11203
11204         * LaTeXFeatures.h:
11205         * LaTeXFeatures.C: fix typos
11206
11207         * Spacing.h:
11208         * Spacing.C: move spacing_string into class
11209
11210         * ToolbarDefaults.C: move stuff into namespace anon
11211
11212         * layout.h: update enum
11213
11214         * lyxfunc.C: use better debug
11215
11216         * minibuffer.h: fix typo
11217
11218         * debug.h:
11219         * debug.C:
11220         * WorkArea.C: add and use Debug::WORKAREA
11221
11222         * lyxtext.h:
11223         * text.C:
11224         * text2.C: code re-organisation, inline helpers
11225
11226 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
11227
11228         * Layout.C: replaced a few cases of std::vector.size() == 0 with
11229         std::vector.empty().
11230
11231 2001-11-09  Allan Rae  <rae@lyx.org>
11232
11233         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
11234         '\n's after tables.  Tabular and ERT inset work now makes this no
11235         longer necessary.
11236
11237 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
11238
11239         * minibuffer.h:
11240         * minibuffer.C: fix crash, improve drop-down completion
11241
11242 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
11243
11244         * lyxserver.h:
11245         * lyxserver.C: invalidate fd's when doing endPipe()
11246
11247 2001-11-08  José Matos  <jamatos@fep.up.pt>
11248
11249         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
11250         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
11251
11252         * paragraph.h:
11253         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
11254
11255 2001-11-07  José Matos  <jamatos@fep.up.pt>
11256
11257         * buffer.h:
11258         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
11259         const qualifier.
11260
11261         * buffer.C (sgmlOpenTag):
11262         * buffer.C (sgmlCloseTag): removed debug info.
11263
11264         * buffer.h (sgmlOpenTag):
11265         * buffer.h (sgmlCloseTag): made public.
11266
11267 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11268
11269         * buffer.C (saveParamsAsDefaults):
11270         * lyx_cb.C (MenuLayoutSave): remove
11271
11272         * LyXAction.C (init):
11273         * commandtags.h:
11274         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
11275
11276 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11277
11278         * buffer.C (setPaperStuff): removed from here...
11279
11280         * bufferparams.C (setPaperStuff): ... and moved there.
11281
11282 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
11283
11284         * minibuffer.h:
11285         * minibuffer.C:
11286         * XFormsView.C: add support for drop-down completion
11287
11288 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
11289
11290         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
11291         commands.
11292
11293 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11294
11295         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
11296         disabled.
11297
11298 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
11299
11300         * lyx_main.C: change ref to known bugs
11301
11302 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
11303
11304         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
11305         to work around older babel problems.
11306
11307 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
11308
11309         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
11310
11311 2001-10-24  Juergen Vigna  <jug@sad.it>
11312
11313         * tabular-old.C (ReadOld): below variable changes reflected.
11314
11315         * tabular.[Ch]: added ltType struct for longtable header/footer
11316         defines and changed all instances where they are used. Added
11317         future support for double top/bottom rows.
11318
11319 2001-10-24  José Matos  <jamatos@fep.up.pt>
11320
11321         * buffer.h (docbookHandleCaption):
11322         * buffer.C (docbookHandleCaption): removed unused function.
11323         (makeDocBookFile): moved docbook supported version to v4.1.
11324
11325 2001-10-24  José Matos  <jamatos@fep.up.pt>
11326
11327         * tabular.h:
11328         * tabular.C (docbookRow): new function to export docbook code of a row.
11329         (DocBook): now honors the longtable flags.
11330
11331 2001-10-23  José Matos  <jamatos@fep.up.pt>
11332
11333         * LaTeXFeatures.h:
11334         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
11335         of the lyx defined sgml entities used in a docbook/linuxdoc document.
11336
11337         * buffer.C (makeLinuxDocFile):
11338         (makeDocBookFile): reworked the preamble, more clean, and with
11339         support for lyx defined entities. Changed the document declaration
11340         to be more XML friendly.
11341
11342         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
11343         if we need to output XML that should be done with a filter.
11344
11345 2001-10-22  Juergen Vigna  <jug@sad.it>
11346
11347         * sp_pspell.h (class PSpell): add alive function needed in the
11348         controller to see if the spellchecker could be started.
11349
11350 2001-10-22  Juergen Vigna  <jug@sad.it>
11351
11352         * buffer.C (insertStringAsLines): modify the font for inserting
11353         chars in certain conditions by calling checkInsertChar(font).
11354
11355 2001-10-19  Juergen Vigna  <jug@sad.it>
11356
11357         * text.C (workWidth): use getRow instead of wrong algorithm.
11358         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
11359
11360 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
11361
11362         * lyxserver.h:
11363         * lyxserver.C:
11364         * lyx_main.h:
11365         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
11366
11367 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11368
11369         * text.C (workWidth): do not search for the exact row when
11370         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
11371         optimization for big documents.
11372
11373 2001-10-18  Juergen Vigna  <jug@sad.it>
11374
11375         * text.C (workWidth): new function with added Inset * parameter.
11376
11377 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11378
11379         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
11380
11381         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
11382         change return type of getColumnNearX.
11383
11384
11385         * text.C (changeRegionCase): use uppercase/lowercase instead of
11386         toupper/tolower.
11387         (leftMargin):
11388         (rightMargin): simplify code by factoring out the uses of
11389         textclasslist.
11390         (labelFill):
11391         (numberOfHfills):
11392         (setHeightOfRow):
11393         (appendParagraph): use Paragraph::size_type
11394
11395 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11396
11397         * vspace.C (asLatexString): add a missing break
11398
11399 2001-10-15  Herbert Voss  <voss@perce.de>
11400
11401         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
11402
11403 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11404
11405         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
11406         is not available.
11407
11408 2001-10-10  André Pönitz <poenitz@gmx.net>
11409
11410         * lyxfunc.C: removed greek_kb_flag.
11411
11412 2001-10-10  Herbert Voss  <voss@perce.de>
11413
11414         * lyx_main.C: delete global string help_lyxdir.
11415
11416 2001-10-09  Herbert Voss  <voss@perce.de>
11417
11418         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
11419
11420         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
11421
11422         * lyx_main.C: added global string help_lyxdir.
11423
11424         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
11425
11426 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
11427
11428         * lyxrc.C (set_font_norm_type): support iso8859-4
11429
11430 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
11431
11432         * LaTeX.C (deplog): add another regex for MikTeX
11433
11434 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
11435
11436         * lyxrc.C (set_font_norm_type): support iso8859-3
11437
11438 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11439
11440         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
11441
11442         * LaTeXFeatures.C: remove special case of french and index
11443
11444         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
11445         before \begin{document}). This solves several incompatibilities.
11446
11447 2001-10-03  Garst Reese  <reese@isn.net>
11448
11449         * lyx_cb.C: change CheckTex error msg.
11450
11451 2001-10-03  José Matos  <jamatos@fep.up.pt>
11452
11453         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
11454
11455 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11456
11457         * .cvsignore: update
11458
11459         * lyx_main.C (commandLineVersionInfo): use new style version info.
11460
11461         * buffer.C (writeFile):
11462         (makeLaTeXFile):
11463         (makeLinuxDocFile):
11464         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
11465
11466         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
11467
11468         * version.h: update to use stuff in version.C
11469
11470         * version.C.in: new file. Contains version information determined
11471         at compile time. This is a merging of version.h and
11472         version_info.h.in.
11473
11474 2001-10-03  Juergen Vigna  <jug@sad.it>
11475
11476         * BufferView_pimpl.C (update): don't change "dirty" status in
11477         updateInset call.
11478
11479 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
11480
11481         * WorkArea.C (c-tor): re-position version string slightly.
11482
11483 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
11484
11485         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
11486         revert to previous code.
11487
11488         WorkArea.[Ch]: (show, destroySplash): methods removed.
11489
11490         WorkArea.C: rework code so that it's an amalgam of the codes before and
11491         after the splash screen was moved to WorkArea.
11492
11493 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11494
11495         * lyxrc.C (read):
11496         * vspace.C (inPixels):
11497         (lyx_advance):
11498         * kbmap.C (bind):
11499         * buffer.C (insertStringAsLines):
11500         (asciiParagraph): fix types to be large enough
11501
11502         * lyxlex_pimpl.h: change member status from short to int
11503
11504         * layout.h: fix type of endlabeltype
11505
11506         * kbmap.C (bind):
11507         * kbsequence.C (parse): change return type to string::size_type
11508
11509         * LaTeX.C (updateBibtexDependencies): comment out unneeded
11510         variable
11511
11512         * Bullet.C (bulletSize):
11513         (bulletEntry): do not use short ints as parameters
11514
11515         * BufferView2.C (insertLyXFile): change a char to an int.
11516
11517         * WorkArea.C (WorkArea): remove unneeded floats in computation
11518
11519 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
11520
11521         * buffer.C (asciiParagraph): Treat '\\' as other chars.
11522
11523         * paragraph.C (asString): Do not ignore newline/hfill chars when
11524         copying to the clipboard.
11525
11526 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
11527
11528         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
11529         after a multi-line inset.
11530
11531 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
11532
11533         * paragraph.C (validate): Set NeedLyXFootnoteCode
11534
11535 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
11536
11537         * lyxfont.C (LyXSizeNames): changed increase-error to increase
11538         and decrease-error to decrease.
11539
11540 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11541
11542         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
11543         it more readable (should be equivalent)
11544
11545 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
11546
11547         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
11548
11549 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11550
11551         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
11552         of a cursor (row, etc.) after a character has been deleted
11553         (deleteEmptyParagraphMechanism): call the method above on _all_
11554         cursors held by the LyXText when a double space has been
11555         detected/deleted.
11556
11557 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
11558
11559         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
11560         pixmap.
11561         (resizeCurrentBuff): remove code to destroy the old splash dialog.
11562
11563         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
11564         background. Use greyOut() and the new show() methods to toggle between
11565         the foreground and background. Add code to remove the splash after
11566         its initial showing.
11567
11568         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
11569         (create_forms): no longer call Dialogs::showSplash.
11570
11571 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11572
11573         * .cvsignore: add version_info.h
11574
11575 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11576
11577         * version_info.h.in: new file
11578
11579         * Makefile.am: add version_info.h.in
11580
11581         * lyx_main.C (commandLineVersionInfo): use version_info defined in
11582         version_info.h instead of VERSION_INFO
11583
11584 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
11585
11586         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
11587         The ERT inset now returns string().
11588
11589 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
11590
11591         * lyxtext.h, text.C (selectNextWord): renamed as
11592         selectNextWordToSpellcheck.
11593
11594         * text.C (selectNextWordToSpellcheck): Modified to not select
11595         words inside an ERT inset.
11596
11597 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11598
11599         * lyx_cb.C (MenuLayoutSave): change a bit the question
11600
11601         * sp_base.h: include <sys/types.h>
11602
11603 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
11604
11605         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
11606
11607 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
11608
11609         * several files: fix typos in user-visible strings
11610
11611 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11612
11613         * text2.C (pasteSelection): do not set the selection, since it
11614         will be cleared later. Actually, the intent was to fix the way the
11615         selection was set, but I figured rmoving the code was just as good.
11616
11617 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
11618
11619         * FontLoader.C (available): Check if font is available without
11620         loading the font.
11621
11622 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
11623
11624         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
11625
11626 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
11627
11628         * lyxrc.[Ch]: added display_graphics variable and associated code.
11629
11630 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11631
11632         * bufferparams.C (hasClassDefaults): new method. Returns true if
11633         the buffer parameters correspond to known class defaults
11634
11635 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
11636
11637         * XFormsView.C (show): set minimum size to the main window.
11638
11639 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11640
11641         * text2.C (copySelection):
11642         (cutSelection):
11643         * lyxfind.C (LyXReplace):
11644         * BufferView_pimpl.C (Dispatch): pass the correct flag to
11645         LyXText::selectionAsString.
11646
11647         * paragraph.C (asString): add "label" argument to the second form
11648
11649         * text2.C (selectionAsString): add "label" argument and pass it to
11650         Paragraph::asString.
11651
11652 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11653
11654         * lyx_main.C (commandLineHelp): remove version information
11655
11656 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
11657
11658         * lyx_main.C: add -version commandline option
11659
11660 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11661
11662         * paragraph.h: make the optional constructor arg required instead.
11663         some modifications to other files because of this.
11664
11665         * minibuffer.C (C_MiniBuffer_peek_event): make it static
11666
11667         * lyxserver.C (C_LyXComm_callback): make it static
11668
11669         * lyx_main.C (error_handler): make it static
11670
11671         * lyx_gui.C (LyX_XErrHandler): make it static
11672
11673         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
11674
11675         * WorkArea.C: make the extern "C" methods static.
11676
11677         * Makefile.am (lyx_LDADD): simplify
11678
11679 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
11680
11681         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
11682         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
11683
11684         * LyXAction.C (init):
11685         * lyxfunc.C (dispatch): associated code removal.
11686
11687 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11688
11689         * lyxfont.h (isSymbolFont): shut off warning
11690
11691         * text.C (setHeightOfRow):
11692         (getVisibleRow): fix crash with empty paragraphs which have a
11693         bottom line
11694
11695 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
11696
11697         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
11698         code.
11699
11700 2001-09-04  José Matos  <jamatos@fep.up.pt>
11701         * buffer.C
11702         * buffer.h
11703         * tabular.C (docbook): rename docBook method to docbook.
11704
11705 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
11706
11707         * Makefile.am: add dependencies to main.o.
11708
11709 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
11710
11711         * FontLoader.C (available): Return false if !lyxrc.use_gui
11712
11713 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
11714
11715         * FontInfo.C (query):
11716         * converter.C (view):
11717         * importer.C (Import):
11718         * exporter.C (Export): Can not -> cannot.
11719
11720 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
11721
11722         * BufferView_pimpl.C: allow to create index inset even if
11723           string is empty
11724
11725 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
11726
11727         * buffer.C (getLists): replace boost::tie code with an explicit pair
11728         as boost::tie can break some compilers.
11729
11730         * iterators.h: Added a std:: declaration to the return type of
11731         ParIterator::size.
11732
11733 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
11734
11735         * lyxrc.C: add help for view_dvi_paper_option, default to safe
11736           case.
11737
11738 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
11739
11740         * iterators.[Ch]: New files. Provide paragraph iterators.
11741
11742         * buffer.C (changeLanguage): Use paragraph iterators.
11743         (isMultiLingual): ditto
11744
11745         * BufferView2.C (ChangeInsets): Use paragraph iterators.
11746
11747 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
11748
11749         * FontLoader.C: Support for cmr font.
11750
11751 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
11752
11753         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
11754         (available): New method.
11755
11756         * FontInfo.C (getFontname): Use scalable fonts even when
11757         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
11758         found.
11759
11760 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
11761
11762         * converter.C (Formats::view): reverted! Incorrect fix.
11763
11764 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
11765
11766         * converter.C (Formats::view): only output the -paper option
11767         if the dvi viewer is xdvi, thereby fixing bug #233429.
11768
11769 2001-08-23  Herbert Voss  <voss@perce>
11770
11771         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
11772
11773 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
11774
11775         * Spacing.h (Spacing): Set space to Default on in the default
11776         constructor.
11777
11778 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11779
11780         * vc-backend.h (RCS::versionString): add RCS to version
11781         (CVS::versionString): add CVS to version
11782
11783         * vc-backend.C (scanMaster): do not add CVS to version.
11784         (scanMaster): do not add RCS to version
11785
11786         * lyxvc.C (versionString): new method
11787
11788         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
11789
11790 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11791
11792         * Spacing.C (set): initialize fval
11793
11794 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
11795
11796         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
11797         " or \.
11798
11799 2001-08-16  Juergen Vigna  <jug@sad.it>
11800
11801         * lyxfunc.C (dispatch): implemented the new FINISHED states.
11802
11803 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
11804
11805         * BufferView_pimpl.C:
11806         * figureForm.C:
11807         * lyxtext.h:
11808         * text2.C: setParagraph takes linespacing now
11809
11810 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
11811
11812         * LyxAction.C: add internal LFUN_CITATION_INSERT
11813
11814         * LyXView.C: actually apply fix
11815
11816         * bufferlist.C: fix open non-existent file
11817
11818         * lyxfind.C: fix indentation
11819
11820         * lyxfunc.C: remove unneeded assert, fix typo
11821
11822 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
11823
11824         * MenuBackend.C: use "Floatname List"
11825
11826 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
11827
11828         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
11829         when converting LaTeX layout to insetERT.
11830         Generate a non-collapsed float when reading old float
11831
11832 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
11833
11834         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
11835         ERT insets.
11836
11837 2001-08-13  Juergen Vigna  <jug@sad.it>
11838
11839         * text.C (fill): return 0 instead of 20 as this seems to be the more
11840         correct value.
11841
11842 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
11843
11844         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
11845         lyxrc.font_norm.
11846
11847 2001-08-13  Juergen Vigna  <jug@sad.it>
11848
11849         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
11850         casesensitive off.
11851         (SearchBackward): comment out the unlocking of the inset_owner this
11852         should not be needed!
11853
11854 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
11855
11856         * Many files: Remove inherit_language, and add latex_language
11857
11858         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
11859         collapsible insets.
11860
11861 2001-08-10  Juergen Vigna  <jug@sad.it>
11862
11863         * text.C (prepareToPrint): fixed hfill-width in draw!
11864
11865         * BufferView2.C (selectLastWord): save the selection cursor as this
11866         now is cleared in the function LyXText::clearSelection!
11867
11868 2001-08-08  Juergen Vigna  <jug@sad.it>
11869
11870         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
11871         BACKSPACE type functions.
11872
11873         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
11874         is only cutted from the document but not put in the cut-buffer, where
11875         still the old stuff should be.
11876
11877         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
11878
11879         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
11880
11881         * tabular.C (SetWidthOfCell): fixed special case where the width
11882         was not updated!
11883         (LeftLine): handle '|' in align_special.
11884         (RightLine): ditto
11885         (LeftAlreadyDrawed): ditto
11886         (SetWidthOfCell): ditto
11887
11888 2001-08-07  Juergen Vigna  <jug@sad.it>
11889
11890         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
11891
11892 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11893
11894         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
11895         * lyxlex.[hC]: ditto
11896
11897 2001-08-06  Juergen Vigna  <jug@sad.it>
11898
11899         * text.C (getVisibleRow): fix up row clearing a bit.
11900
11901 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11902
11903         * minibuffer.C: make sure the X server sees the changes in the input.
11904
11905 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11906
11907         * paragraph.C (getFont): split into...
11908         (getLabelFont): this
11909         (getLayoutFont): and this
11910         * paragraph_pimpl.C (realizeFont): calling this
11911
11912         * text2.C (getFont): split into...
11913         (getLayoutFont): this
11914         (getLabelFont): and this
11915         (realizeFont): all three calling this
11916
11917         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
11918         files where used.
11919
11920 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11921
11922         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
11923
11924 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
11925
11926         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
11927         layouts from the Quote inset insertion.
11928
11929 2001-08-03  Juergen Vigna  <jug@sad.it>
11930
11931         * BufferView_pimpl.C (update): do the fitCursor only at the end!
11932
11933         * screen.C (drawFromTo): don't call fitcursor here and do the loop
11934         only if status not is already CHANGED_IN_DRAW (second level).
11935
11936         * text.C (draw): don't set the need_break_row when inside an
11937         InsetText LyXText.
11938
11939 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11940
11941         * buffer.C (parseSingleLyXformat2Token): handle more latex
11942         conversion cases.
11943
11944         * bufferview_funcs.[hC]: change function names to
11945         begin with small char, adjust other files.
11946
11947 2001-08-02  André Pönitz <poenitz@gmx.net>
11948
11949         * lyxfunc.C:
11950         BufferView_pimpl.C: remove broken special code for math-greek
11951
11952 2001-08-02  Juergen Vigna  <jug@sad.it>
11953
11954         * BufferView_pimpl.C (update): redone this function so that we
11955         update the text again if there was a CHANGE_IN_DRAW.
11956
11957         * screen.C (cursorToggle): removed LyXText parameter and recoded.
11958         (drawFromTo): added a new internal bool which is used by draw() and
11959         redraw() function.
11960         (general): some cursor drawing problems fixed.
11961
11962 2001-08-01  Juergen Vigna  <jug@sad.it>
11963
11964         * lyxfind.C (LyXFind): fixed
11965         (SearchForward): ditto
11966         (SearchBackward): ditto
11967
11968         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
11969         spurius drawing of the cursor in the main area.
11970
11971         * text2.C (status): small fix which could lead to a segfault!
11972         (clearSelection): remove unneeded BufferView param.
11973
11974 2001-08-01  André Pönitz <poenitz@gmx.net>
11975
11976         * lyxfunc.C: small change due to changed mathed interface
11977
11978 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11979
11980         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
11981
11982 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
11983
11984         * lyxfunc.c: fail gracefully if file doesn't exist
11985
11986         * LyXSendto.C:
11987         * buffer.C:
11988         * lyxfunc.C:
11989         * BufferView_pimpl.C: IsDirWriteable() proto changed
11990
11991         * LyXView.C: fix updateWindowTitle() to store the last title
11992
11993 2001-07-31  Juergen Vigna  <jug@sad.it>
11994
11995         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
11996         the font (wrong since using of Paragraph::highestFontInRange).
11997
11998         * paragraph.C (highestFontInRange): added a default_size parameter.
11999
12000         * text.C (getVisibleRow): minor clear row changes (still not perfect).
12001         (setHeightOfRow): reformat
12002
12003 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12004
12005         * converter.[hC] + affected files: move to (inital-char)lowercase
12006         function names.
12007
12008         * ParagraphParameters.C (ParagraphParameters): remove commented code
12009
12010         * PainterBase.[Ch]: remove commented code
12011
12012         * LaTeXFeatures.h: add "bool floats" for float.sty
12013
12014         * LaTeXFeatures.C (LaTeXFeatures): init floats
12015         (require): handle float
12016         (getPackages): do it with floats
12017
12018 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12019
12020         * BufferView_pimpl.C (Dispatch): improve handling of
12021         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
12022
12023         * commandtags.h: #include lyxfont.h here temporarily to avoid
12024         keybinding bug.
12025
12026         * bufferlist.h: include LString.h here.
12027
12028 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12029
12030         * text2.C (getStringToIndex): new method.
12031
12032 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
12033
12034         * *: Reduced header file dependencies all over.
12035
12036 2001-07-30  Baruch Even  <baruch@lyx.org>
12037
12038         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
12039
12040 2001-07-29  Baruch Even  <baruch@lyx.org>
12041
12042         * buffer.C (readInset): Changed GRAPHICS to Graphics.
12043
12044 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12045
12046         * ParameterStruct.h (endif): add a default constructor to make
12047         sure that all variables is initialized.
12048
12049         * ParagraphParameters.C (ParagraphParameters): adjust
12050
12051 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12052
12053         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
12054         index; also, check that there is something to index, and that it
12055         does not span over several paragraphs.
12056         (doubleClick): use WHOLE_WORD_STRICT for double click.
12057
12058         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
12059
12060         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
12061         scheme.
12062
12063 2001-07-26  Baruch Even  <baruch@lyx.org>
12064
12065         * buffer.C (readInset): Changed to call up InsetGraphics when reading
12066         an InsetFig figure, backwards compatible reading of old figure code.
12067
12068 2001-07-27  Juergen Vigna  <jug@sad.it>
12069
12070         * text2.C: font.realize function adaption.
12071
12072         * text.C (draw): add a warnings lyxerr text if needed.
12073
12074         * layout.C: font.realize function adaption.
12075
12076         * language.C: add inherit_language and implement it's handlings
12077
12078         * bufferview_funcs.C (StyleReset): remove language parameter from
12079         font creation (should be language_inherit now).
12080
12081         * bufferparams.C (writeFile): handle ignore_language.
12082
12083         * paragraph.C (getFontSettings): the language has to be resolved
12084         otherwise we have problems in LyXFont!
12085
12086         * lyxfont.C (lyxWriteChanges): added document_language parameter
12087         (update): removed unneeded language parameter
12088
12089         * paragraph.C (validate): fixed wrong output of color-package when
12090         using interface colors for certain fonts in certain environments,
12091         which should not seen as that on the final output.
12092
12093 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
12094
12095         * BufferView_pimpl.C:
12096         * Thesaurus.h:
12097         * Thesaurus.C:
12098         * Makefile.am:
12099         * commandtags.h:
12100         * LyXAction.C: add thesaurus support
12101
12102         * lyxfind.h:
12103         * lyxfind.C: add "once" parameter, for thesaurus, to not
12104           move to the next match
12105
12106 2001-07-26  Juergen Vigna  <jug@sad.it>
12107
12108         * lyxfont.C (realize): honor ignore_language too!
12109         (resolved): ditto.
12110
12111         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
12112
12113         * text.C (draw): one place more for ignore_language to not draw
12114         itself!
12115
12116 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
12117
12118         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
12119
12120 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12121
12122         * buffer.C (parseSingleLyXformat2Token): a more general fix for
12123         the minipage conversion problem.
12124
12125 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12126
12127         * buffer.C (parseSingleLyXformat2Token): check minipage if we
12128         insert an inset.
12129
12130 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12131
12132         * BufferView.h: don't forward declare WorkArea
12133
12134         * BufferView.C: don't include WorkArea.h
12135
12136 2001-07-25  André Pönitz <poenitz@gmx.net>
12137
12138         * commandtags.h:
12139         * LyXAction.C:
12140         * lyxfunc.C:  new LFUN 'math-space'
12141
12142         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
12143
12144 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12145
12146         * text2.C (toggleInset): call open/close
12147
12148 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12149
12150         * lyxfunc.C (dispatch): add debug for the disabled case
12151
12152         * font.C (buttonText): make similar to rectText
12153
12154         * buffer.C (readInset): comment out parsing of insetlist and
12155         insttheorem
12156
12157         * PainterBase.C (rectText): small correction
12158
12159         * BufferView_pimpl.C: comment out insettheorem and insetlist
12160         * LyXAction.C: ditto
12161         * commandtags.h: ditto
12162
12163 2001-07-24  Juergen Vigna  <jug@sad.it>
12164
12165         * text.C (draw): honor the ignore_language.
12166
12167         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
12168
12169 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12170
12171         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
12172         char inset.
12173
12174 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
12175
12176         * lyxtext.h: remove unused (and unimplemented) methods
12177
12178 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
12179
12180         * text.C (getVisibleRow): honor background color
12181
12182         * PainterBase.h:
12183         * Painter.h: remove default color argument for fillRectangle
12184
12185         * text.C (backgroundColor): new method
12186
12187 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12188
12189         * text.C (getVisibleRow): adjust
12190
12191         * font.[Ch] (rectText): new method, metrics
12192         (buttonText): new method, metrics
12193
12194         * PainterBase.[hC]: make rectText and buttonText always draw and take
12195         fewer paramteres.
12196
12197 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
12198
12199         * ToolbarDefaults.C (read):
12200         * MenuBackend.C (read): allow escaping in all strings
12201
12202         * BufferView_pimpl.C (insertAndEditInset): new method.
12203         (Dispatch): use insertAndEditInset whenever appropriate.
12204
12205         * BufferView_pimpl.C (insertNote): removed
12206
12207         * BufferView_pimpl.C (smartQuote): new method, moved from
12208         BufferView; if an insetquote cannot be inserted, insert a '"'
12209         character instead.
12210
12211         * BufferView2.C: remove insertCorrectQuote();
12212
12213         * lyxfunc.C (getStatus): Add support for all remaingin
12214         inset-insert lfuns.
12215
12216         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
12217
12218         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
12219         command (necessary to pass " as parameter of self-insert.
12220
12221         * text.C (selectWordWhenUnderCursor):
12222         (selectWord): add word_location parameter
12223         (selectWordWhenUnderCursor): same + remove special code for word
12224         boundary.
12225         (selectNextWord): use kind() to guess type of insetspecialchar,
12226         not latex().
12227
12228         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
12229         (insertErtContents): create ert insets as collapsed.
12230         (readInset): better compatibility code for Info inset.
12231
12232 2001-07-20  Juergen Vigna  <jug@sad.it>
12233
12234         * lyxfunc.C (dispatch): use always LyXFind now!
12235
12236         * text2.C (init): add a reinit flag so that the LyXText can be
12237         reinited instead of deleted and reallocated (used in InsetText).
12238
12239         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
12240
12241         * text.C: ditto
12242
12243         * text2.C: ditto
12244
12245 2001-07-18  Juergen Vigna  <jug@sad.it>
12246
12247         * text.C (selectNextWord): handle insets inside inset by calling
12248         always the bv->text functions so that we can go up the_locking_inset!
12249
12250         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
12251         in strange locations when inside an inset!
12252
12253         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
12254         handling to include insets.
12255
12256         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
12257
12258 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12259
12260         * LyXAction.C (init):
12261         * commandtags.h:
12262         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
12263         LIGATURE_BREAK, since the name is so stupid.
12264
12265 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
12266
12267         * buffer.C (readInset): enable reading of new InsetNotes as well as old
12268         InsetInfos.
12269
12270         * FontLoader.C: remove FORMS_H_LOCATION cruft.
12271
12272         * sp_form.[Ch]: remove.
12273
12274         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
12275
12276         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
12277         InsetInfo.
12278
12279         * src/buffer.C (readInset): ditto.
12280
12281 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
12282
12283         * BufferView_pimpl.C (specialChar): new method. Obsoletes
12284         menuSeparator(), endOfSentenceDot(), ldots() and
12285         hyphenationPoint(), which are therefore removed.
12286         (Dispatch): handle LFUN_HYPHENATION_BREAK.
12287
12288         * LyXAction.C (init):
12289         * commandtags.h: add LFUN_HYPHENATION_BREAK.
12290
12291         * paragraph.C (getWord): removed.
12292
12293         * BufferView_pimpl.C (Dispatch): use last word or selection for
12294         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
12295
12296         * lyx_main.C (queryUserLyXDir): do not ask before creating
12297         user_dir, except if it has been named explicitely.
12298
12299 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
12300
12301         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
12302         a document of zero size.
12303
12304 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
12305
12306         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
12307         approriately in the c-tor and in require().
12308         (getPackages): output the appropriate LaTeX for natbib support.
12309
12310         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
12311         variables "use_natbib" and "use_numerical_citations" when reading the
12312         LyX file.
12313         (readInset): read the various natbib cite commands.
12314         (validate): white-space change.
12315
12316         * bufferparams.[Ch]: new variables "bool use_natbib" and
12317         "bool use_numerical_citations".
12318         (writeFile): output them in the LyX file.
12319
12320 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
12321
12322         * lyxfunc.C (getStatus): add support for all the inset insertion
12323         commands.
12324
12325         * text2.C (insertInset):
12326         * paragraph.C (insetAllowed):
12327         * BufferView_pimpl.C (insertInset): update to take in account the
12328         renaming of insertInsetAllowed
12329
12330         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
12331
12332         * text2.C (getInset): new method. returns inset at cursor position.
12333
12334         * BufferView_pimpl.C (Dispatch): changes because of this.
12335
12336         * LyXAction.C (init): rename open-stuff to inset-toggle.
12337
12338         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
12339
12340         * text2.C (toggleInset): renamed from openStuff; use
12341         Inset::open().
12342
12343 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
12344
12345         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
12346
12347         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
12348
12349 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
12350
12351         * buffer.C (readLyXformat2): Add filename to the error dialog
12352
12353 2001-07-18  Juergen Vigna  <jug@sad.it>
12354
12355         * tabular.C (GetCellNumber): put an assert here instead of the check!
12356
12357 2001-07-17  Juergen Vigna  <jug@sad.it>
12358
12359         * BufferView_pimpl.C (toggleSelection): adapted too.
12360
12361         * text.C (selectNextWord): adapted for use with insets.
12362         (selectSelectedWord): ditto
12363
12364 2001-07-17  Juergen Vigna  <jug@sad.it>
12365
12366         * sp_spell.C (PSpell): fix initialitation order.
12367
12368 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12369
12370         * paragraph.C: spacing
12371
12372 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
12373
12374         * sp_spell.C: repair language selection for pspell
12375
12376 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12377
12378         * lyxfunc.h: change more methods to begin with lower char.
12379
12380 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
12381
12382         * buffer.C (parseSingleLyXformat2Token): Generate error insets
12383         for unknown layouts.
12384
12385 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
12386
12387         * buffer.C (readLyXformat2): Generate an error dialog if there are
12388         unknown layouts.
12389
12390 2001-07-16  Juergen Vigna  <jug@sad.it>
12391
12392         * sp_spell.C: always compile ISpell part.
12393
12394         * lyxrc.C: added use_pspell entry and it's handling.
12395
12396 2001-07-13  Juergen Vigna  <jug@sad.it>
12397
12398         * sp_spell.C: removed double includes.
12399
12400 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
12401
12402         Consistent use of Lsstream.h:
12403         * Lsstream.h: added using std::stringstream for consistencies sake.
12404
12405         * buffer.C: removed using std::stringstream
12406
12407         * lyxfont.C (stateText):
12408         * paragraph.C (asString):
12409         * text.C (selectNextWord, selectSelectedWord):
12410         * text2.C (setCounter):
12411         * vspace.C (asString, asLatexString):
12412         std::ostringstream -> ostringstream.
12413
12414 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
12415
12416         * LyXAction.C: add LFUN_HELP_ABOUTLYX
12417         * commandtags.h: add LFUN_HELP_ABOUTLYX
12418         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
12419
12420 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
12421
12422         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
12423         cursorToggle()
12424         * lyx_gui_misc.C: remove spellchecker
12425         * lyxfunc.C: showSpellchecker
12426         * sp_base.h: added
12427         * sp_ispell.h: added
12428         * sp_pspell.h: added
12429         * sp_spell.C: added
12430         * sp_form.[Ch]: removed
12431         * spellchecker.[Ch]: removed
12432
12433 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
12434
12435         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
12436         is set.
12437         (simpleTeXSpecialChars): Simply print the input character without
12438         any special translation if pass_thru is set.
12439
12440         * layout.h: Added bool pass_thru to layout class for being able to
12441         implement pass through of a paragraph for Literate Programming.
12442
12443         * layout.C: add LT_PASS_THRU to LayoutTags enum.
12444         * layout.C (LyXLayout): set pass_thru to flase in constructor.
12445         * layout.C (Read): add "passthru" to list of layout tags and add
12446         code to set the pass_thru boolean when it is read.
12447
12448 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12449
12450         * trans_decl.h: remove allowed from KmodInfo
12451
12452         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
12453         remove allowed code
12454         (Load): adjust
12455
12456         * paragraph_pimpl.C (erase): use boost::prior
12457
12458         * Painter.C (text): use data() instead of c_str() when length is
12459         also provided.
12460         * WorkArea.C (putClipboard): ditto
12461         * font.h (width): ditto
12462
12463         * BufferView2.C: use it-> instead of (*it). for iterators
12464         * texrow.C: ditto
12465         * paragraph_pimpl.C: ditto
12466         * paragraph.C: ditto
12467         * minibuffer.C: ditto
12468         * language.C: ditto
12469         * kbmap.C: ditto
12470         * encoding.C: ditto
12471         * counters.C: ditto
12472         * converter.C: ditto
12473         * chset.C: ditto
12474         * Variables.C: ditto
12475         * TextCache.C: ditto
12476         * MenuBackend.C: ditto
12477         * LyXAction.C: ditto
12478         * LColor.C: ditto
12479         * FloatList.C: ditto
12480         * DepTable.C: ditto
12481         * ColorHandler.C (LyXColorHandler): ditto
12482
12483 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12484
12485         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
12486
12487         * text2.C (openStuff): reintroduce this method (which had been
12488         nuked in NEW_INSETS frenzy).
12489
12490         * lyxfunc.C (Dispatch): when an action has not been handled, use
12491         its name in the error message, not its number.
12492
12493         * paragraph.C (inInset): change method name to begin with lowercase.
12494
12495         * undo_funcs.C:
12496         * text2.C: updates because of this.
12497
12498 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12499
12500         * ToolbarDefaults.C (add): add spaces in error message
12501
12502 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12503
12504         * buffer.C (readLyXformat2): initialize the ert comp. variables.
12505         (readLyXformat2): rename return_par to first_par, use lyxlex's
12506         pushToken and remove the manual push handling.
12507         (parseSingleLyXformat2Token): add another ert comp. variable:
12508         in_tabular, rename return_par to first_par. handle newlines better
12509
12510 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12511
12512         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
12513
12514 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12515
12516         * text2.C (getParFromID): removed
12517
12518         * buffer.C (getParFromID): new method moved form lyxtext.
12519         * BufferView2.C (insertErrors): adjust
12520         (setCursorFromRow): adjust
12521         * BufferView_pimpl.C (restorePosition): adjust
12522         * lyxfunc.C (Dispatch): adjust
12523         * undo_funcs.C (textUndo): adjust
12524         (textRedo): adjust
12525         (textHandleUndo): adjust
12526         (textHandleUndo): adjust
12527
12528 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12529
12530         * buffer.C: up' the LYX_FORMAT
12531
12532         * lyxfont.h: turn NO_LATEX on as default
12533
12534         * buffer.C (insertErtContents): new methods of tex style compability.
12535         (parseSingleLyXformat2Token): use it several places.
12536         * tabular.C (OldFormatRead): and here
12537
12538 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12539
12540         * text2.C: remove some commented code.
12541         reindent file.
12542
12543         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
12544         * trans.C: changes because of the above.
12545
12546 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
12547
12548         * text2.C (setCounter): Fix counters bug with bibliography layout.
12549
12550 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12551
12552         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
12553         own member functions
12554         (simpleTeXSpecialChars): ditto
12555
12556 2001-07-06  Juergen Vigna  <jug@sad.it>
12557
12558         * a lot of files: changed the access to LyXText::status and the
12559         call of undo-functions.
12560
12561         * undo.[Ch]: added a inset_id to the undo informations.
12562
12563         * undo_funcs.[Ch]: added and moved here all undo functions.
12564
12565         * lyxtext.h: give the status enum a weight, made status_ a private
12566         variable and made accessor functions for it, removed the whole bunch
12567         of undo-functions as they are now in their own file, make some
12568         functions publically available. Added function ownerParagraph with
12569         int parameter.
12570
12571         * paragraph.[Ch]: added "bool same_ids" to the constructor,
12572         made InInset() a const function, added getParFromID() function.
12573
12574         * buffer.[Ch]: added const version for inset_iterator functions,
12575         added getInsetFromID() function.
12576
12577         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
12578         changed undo functions for new version.
12579
12580 2001-07-05  Juergen Vigna  <jug@sad.it>
12581
12582         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
12583         unknow mechanism does not call the proper constructor but only this
12584         one also if I request the other!?
12585
12586 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12587
12588         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
12589
12590         * text2.C (LyXText): use initialization lists.
12591
12592         * lyxtext.h (Selection): initialize set_ and mark_
12593         (init): remove method
12594
12595 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
12596
12597         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
12598
12599 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12600
12601         * screen.[Ch]: change method names to begin with lowercase
12602
12603         * BufferView_pimpl.C (updateScrollbar): simplify further and
12604         hopefully make it a bit faster.
12605
12606 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12607
12608         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
12609         calling directly xforms functions.
12610
12611         * Painter.C (Painter):
12612         * lyx_cb.C (MenuWrite):
12613         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
12614         fl_display.
12615
12616         * lyx_gui.C: remove bogus guiruntime extern declaration.
12617
12618 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12619
12620         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
12621         in NEW_INSETS
12622         (redoDrawingOfParagraph): ditto
12623         (redoParagraphs): ditto
12624         (cutSelection): don't create a object for CutAndPaste use the
12625         static method directly
12626         (pasteSelection): ditto
12627
12628         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
12629         LyXview (+ rename)
12630
12631 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12632
12633         * modifications to some other files because of this.
12634
12635         * Makefile.am (lyx_SOURCES): add XFormsView
12636
12637         * XFormsView.[Ch]: new files
12638
12639         * LyXView.[Ch]: make LyXView a base class for the gui handling for
12640         the main window. Move the gui dependent stuff to XFormsView
12641
12642 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12643
12644         * tabular.C (GetCellInset): update cur_cell also in the row/col
12645         version of this function.
12646
12647         * lyxfunc.C: no need to include figure_form.h here.
12648
12649         * FontLoader.h:
12650         * lyxfunc.h:
12651         * lyxscreen.h:
12652         * text2.C:
12653         * lyxvc.C: no need to include forms.h here.
12654
12655 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12656
12657         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
12658
12659         * lyxfunc.C (Dispatch):
12660         * Spacing.C (set):
12661         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
12662         constructor argument.
12663
12664 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12665
12666         * paragraph.C (Paragraph): dont't clear, and just set layout.
12667         (makeSameLayout): use params's copy contructor.
12668
12669         * ParagraphParameters.[Ch] (makeSame): delete method
12670
12671 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
12672
12673         * Variables.[Ch]: fix indentation, rename set to isSet
12674
12675 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12676
12677         * lyxfunc.C (Dispatch): fix typo
12678
12679 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12680
12681         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
12682         upper_bound.
12683
12684         * bufferlist.C: include assert.h for emergencyWrite().
12685
12686 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
12687
12688         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
12689           give up at last (bug #425202) !
12690
12691 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
12692
12693         * lyx_gui_misc.C:
12694         * sp_form.h:
12695         * sp_form.C:
12696         * spellchecker.h:
12697         * spellchecker.C: strip spellchecker options and bring up
12698           preferences tab instead
12699
12700 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12701
12702         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
12703         the istringstream constructor
12704
12705 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12706
12707         * paragraph.C (getLayout): fix return value
12708
12709         * paragraph.h: do not declare getLayout as inline.
12710
12711         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
12712
12713 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12714
12715         * lyxcursor.h (operator<): new func
12716         (operator>): new func
12717         (operator>=): new func
12718         (operator<=): new func
12719
12720         * text.C (changeCase): use selection.start and selection.end
12721         (changeRegionCase): require from to be <= to. Require par to be a
12722         valid paragraph.
12723
12724         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
12725
12726 2001-06-27  Juergen Vigna  <jug@sad.it>
12727
12728         * text.C (cursorLeftOneWord): changed to return the cursor and added
12729         overlay with BufferView * parameter which calls this one.
12730         (getWord): added
12731         (selectWord): use new getWord function.
12732         (changeCase): renamed from changeWordCase as and extended to work
12733         also on selections.
12734
12735         * lyxtext.h: added enum word_location
12736
12737         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
12738         changeCase as this operates now also on selections.
12739
12740 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
12741
12742         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
12743
12744         * many files: send debug output to Debug::INFO instead of
12745         Debug::ANY.
12746
12747         * converter.C (View):
12748         (Convert):
12749         (Move): send debug output to Debug::FILES instead of console.
12750
12751 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
12752
12753         * lyxfunc.C (getStatus): use func_status
12754
12755         * func_status.h: new header, describing the results of
12756         LyXFunc::getStatus;
12757
12758         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
12759         LFUN_MATH_HALIGN.
12760
12761 2001-06-25  The LyX Project  <jug@sad.it>
12762
12763         * buffer.C (sgmlOpenTag):
12764         (sgmlCloseTag):
12765         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
12766
12767 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12768
12769         * text2.C: remove some dead code
12770
12771         * tabular.C (GetCellInset): store the last cell checked (gotten)
12772
12773         * tabular.h: add the helper for the speedup
12774
12775         * lyxtext.h: remove some dead code
12776
12777 2001-06-26  The LyX Project  <Asger>
12778
12779         * paragraph.C: Change export to LaTeX of alignment to
12780         \begin{center} and family for better roundtrip work with reLyX.
12781
12782         * Tune the math drawing a bit.
12783
12784 2001-06-25  The LyX Project  <Asger>
12785
12786         * LColor.C (LColor): New color for math background. New color
12787         for buttons.
12788
12789 2001-06-25  The LyX Project  <jug@sad.it>
12790
12791         * lyxfunc.C (MenuNew): remove extra check for .lyx file
12792
12793         * lyxfunc.C (Open):
12794         * bufferlist.C (newFile): do not restrict to files ending with
12795         .lyx
12796
12797         * BufferView_pimpl.C (MenuInsertLyXFile):
12798
12799 2001-06-24  The LyX Project  <jug@sad.it>
12800
12801         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
12802         of compare_no_case
12803
12804 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12805
12806         * lyxtext.h: rename most methods to begin with a small char.
12807         Lots of changes because of this.
12808
12809         * paragraph.C (Paragraph): do not call fitToSize
12810         (erase): call Pimpl::erase
12811         (insertChar): call Pimpl::insertChar
12812         (insertInset): call Pipl::insertInset
12813         (breakParagraph): do not call fitToSize
12814         (breakParagraphConservative): do not call fitToSize
12815         (fitToSize): remove method
12816
12817         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
12818
12819 2001-06-24  The LyX Project  <Asger>
12820
12821         * Fix Qt compilation^2
12822
12823 2001-06-24  The LyX Project  <jug@sad.it>
12824
12825         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
12826         depthHook(getDepth()-1).
12827
12828         * paragraph.h:
12829         * ParagraphParameters.h:
12830         * ParameterStruct.h: change type of depth to unsigned int ==
12831         depth_type. Many adaptations to other files before of that.
12832
12833 2001-06-24  The LyX Project  <Asger>
12834
12835         * Fix Qt compilation.
12836
12837 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12838
12839         * paragraph.h: renamed several methods to begin with small letter.
12840         several changes to many parts of the code because of this.
12841
12842 2001-06-23  The LyX Project  <jug@sad.it>
12843
12844         * text2.C (InsertStringAsLines): renamed from InsertStringA;
12845         rewritten to discard all double spaces when KeepEmpty is off
12846         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
12847         to only handle newlines but not fiddle with spaces and friends.
12848
12849         * lyxfunc.C (MenuNew): when doing 'new from template', use
12850         template_path as default directory
12851
12852 2001-06-23  The LyX Project  <Asger>
12853
12854         * Clean-up of header file includes all over
12855         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
12856
12857 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12858
12859         * paragraph.h: renamed from lyxparagraph.h
12860
12861 2001-06-23  Asger  <lyx@violet.home.sad.it>
12862
12863         * Buffer.h: Removed Buffer::resize
12864         * BufferList.h: Removed BufferList::resize
12865         * LyXView.h: Added LyXView::resize. This way, we will only reflow
12866         the document lazily when we change the width, or the font settings.
12867
12868 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
12869
12870         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
12871
12872 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
12873
12874         * buffer.h: remove out of date comment
12875
12876 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
12877
12878         * lyxscreen.h:
12879         * screen.C: fix "theoretical" GC leak
12880
12881 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12882
12883         * LaTeX.C (scanAuxFile):
12884         (deplog): remove trailing \r when reading stream (useful under
12885         win32)
12886
12887 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
12888
12889         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
12890         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
12891         and BufferView::theLockingInset(Inset*), so should use them and not
12892         access bv_->text->the_locking_inset directly.
12893
12894         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
12895
12896 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
12897
12898         * Makefile.am:
12899         * tex-defs.h: remove old unused file
12900
12901 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
12902
12903         * BufferView_pimpl.C: fix typo, remove minibuffer message
12904           when buffer has loaded
12905
12906 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12907
12908         * lyxfunc.C (Dispatch): use stringstream
12909         (MenuNew): use stringstream
12910         (Open): use stringstream
12911
12912         * importer.C (Import): use stringstream
12913
12914         * bufferview_funcs.C (CurrentState): use stringstream
12915
12916         * LaTeX.C (run): use stringstream
12917
12918         * BufferView_pimpl.C (savePosition): use stringstream
12919         (restorePosition): use stringstream
12920         (MenuInsertLyXFile): use stringstream
12921
12922 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
12923
12924         * BufferView.C:
12925         * Bullet.C:
12926         * ColorHandler.C:
12927         * FontInfo.C:
12928         * FontLoader.C:
12929         * LColor.C:
12930         * LaTeXFeatures.C:
12931         * Painter.C:
12932         * gettext.C:
12933         * lyx_gui_misc.C:
12934         * lyxserver.C:
12935         * vspace.C: removed // -*- C++ -*- as first line.
12936
12937         * lyxfind.h:
12938         * version.h: added // -*- C++ -*- as first line.
12939
12940 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12941
12942         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
12943
12944         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
12945         of string
12946
12947 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12948
12949         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
12950         of floats.
12951
12952 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12953
12954         * gettext.C: include LString.h even when --disable-nls is on.
12955
12956 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
12957
12958         * converter.h (Get): changed argument type from int to
12959         FormatList::size_type to avoid unnecessary conversion.
12960
12961         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
12962         before using it.
12963
12964 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12965
12966         * gettext.h: include LString.h even when --disable-nls is on.
12967
12968 2001-06-07  Juergen Vigna  <jug@sad.it>
12969
12970         * text.C (BreakAgain): subst spaces with tabs.
12971
12972         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
12973         (resizeInsetsLyXText): set force on resizeLyXText.
12974
12975 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12976
12977         * gettext.h (gettext_init):
12978         (locale_init): use a real definition instead of a macro
12979
12980 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
12981
12982         * Bufferview_pimpl.C:
12983         * LColor.h:
12984         * LColor.C: further lcolor tidies
12985
12986 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12987
12988         * BufferView_pimpl.C (updateScrollbar): simplify.
12989
12990         * BufferView2.C: don't include insets/insetinfo.h, change
12991         prototype for insertInset and call the Pimpl version. let
12992         updateInset call Pimpl version.
12993
12994         * BufferView.h: move inset_slept to BufferView::Pimpl, move
12995         gotoInset to BufferView::Pimpl
12996
12997 2001-06-01  Juergen Vigna  <jug@sad.it>
12998
12999         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
13000         inside a LockingInset (is the update needed at all?).
13001
13002 2001-05-31  Juergen Vigna  <jug@sad.it>
13003
13004         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
13005         here not the old one otherwise how should we compare it afterwards
13006         if it's the same!
13007
13008 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13009
13010         * lyxfont.C:
13011         * tabular.C:
13012         * tabular-old.C:
13013         * FontInfo.C: bring C functions into global namespace when
13014         necessary
13015
13016 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13017
13018         * LString.h: make sure config.h has been loaded before LString.h.
13019
13020         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
13021         (one for each char read by EatLine!).
13022
13023         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
13024         variables.
13025
13026 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13027
13028         * paragraph.C (BreakParagraph): set the inset_owner in the new par
13029         to the same as the par we break from
13030
13031 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13032
13033         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
13034
13035         * MenuBackend.C (expand): also create menu entries for wide
13036         versions of the floats.
13037
13038         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
13039
13040         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
13041
13042         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
13043         frontends/Makefile.am
13044
13045         * text2.C: adjust
13046         * text.C: adjust
13047
13048
13049         * tabular.C (getTokenValue): add std::
13050
13051         * tabular-old.C (getTokenValue): add std::
13052         (getTokenValue): ditto
13053         (getTokenValue): ditto
13054
13055         * screen.C (ToggleSelection): adjust
13056
13057         * lyxtext.h: put selection cursors inside a Selection struct.
13058
13059         * lyxfunc.C (moveCursorUpdate): adjust
13060
13061         * lyxfont.C (latexWriteStartChanges): add std::
13062
13063         * lyxfind.C: adjust
13064
13065         * font.h: delete with(char const *, LyXFont const &)
13066
13067         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
13068
13069         * FontInfo.C (getFontname): add std::
13070
13071         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
13072         (workAreaButtonPress): adjust
13073         (tripleClick): adjust
13074         (update): adjust
13075         (moveCursorUpdate): adjust
13076         (Dispatch): adjust
13077
13078         * BufferView2.C (gotoInset): adjust
13079
13080 2001-05-30  Juergen Vigna  <jug@sad.it>
13081
13082         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
13083         to check pspell I add this as default as I now have new pspell
13084         libraries and they seem to use this.
13085
13086 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13087
13088         * text2.C (CutSelection): make the cursor valid before the call to
13089         ClearSelection.
13090
13091 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13092
13093         * kbsequence.C (parse): de-uglify a bit the parsing code, which
13094         relied on 0 terminated strings and other horrors. Bug found due to
13095         the new assert in lyxstring!
13096
13097         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
13098         KP_ keys.
13099
13100 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13101
13102         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
13103         to latinkeys.bind.
13104
13105         * lyxfunc.C (processKeySym): change method of getting to the
13106         self-insert char.
13107
13108         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
13109         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
13110         * BufferView_pimpl.[Ch]: here as private methods.
13111
13112 2001-05-28  Juergen Vigna  <jug@sad.it>
13113
13114         * text.C (SetHeightOfRow): added the update() call again as it is
13115         needed to initialize inset dimensions!
13116
13117 2001-05-16  Juergen Vigna  <jug@sad.it>
13118
13119         * text2.C (SetCharFont): Add new function with BufferView * and
13120         bool toggleall parameters for setting insets internal fonts.
13121         (SetFont): Freeze the undo as we may change fonts in Insets and
13122         all this change should be inside only one Undo!
13123
13124         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
13125         setting font's in insets as for them we have the SetFont function!
13126
13127 2001-05-15  Juergen Vigna  <jug@sad.it>
13128
13129         * text2.C (ClearSelection): to be sure we REALLY don't have any
13130         selection anymore!
13131
13132         * tabular.C (TeXCellPreamble): fixed the left border problem for
13133         multicolumn cells.
13134
13135 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
13136
13137         * LaTeX.C (deplog): Make sure that the main .tex file is in the
13138         dependancy file
13139
13140 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13141
13142         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
13143         LFUN_BREAKPARAGRAPH.
13144
13145         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
13146         help test to "internal only", similar for LFUN_INSERT_URL
13147
13148         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
13149         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
13150         auto_region_delete and deadkeys.
13151
13152 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
13153
13154         * LColor.h:
13155         * LColor.C: remove some dead entries, tidy a little
13156
13157 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13158
13159         * lyxfunc.C (processKeySym): comment the Escape handling, remove
13160         commented code.
13161         (Dispatch): implement LFUN_ESCAPE
13162
13163         * commandtags.h: add LFUN_ESCAPE
13164
13165         * LyXAction.C (init): add entry for LFUN_ESCAPE
13166
13167         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
13168         Remove commented code.
13169         (insertNote): moved here
13170         (open_new_inset): moved here
13171
13172         * BufferView[2].[Ch]: move insertNote and open_new_inset to
13173         BufferView_pimpl
13174
13175 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13176
13177         * kbmap.C (findbinding): clean it up and make it work correctly.
13178
13179         * lyx_main.C (init): do not pass argc and argv as parameters
13180
13181 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
13182
13183         * buffer.C: fix path for OS/2 & Win32
13184
13185         * lyx_gui.C:
13186         * lyx_main:
13187         * lyx_main.C: Added os:: class.
13188
13189         * os2_defines.h: update
13190
13191 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13192
13193         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
13194         better by trying again with reduced state.
13195
13196 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13197
13198         * lyxrc.C (read): print error about invalid key sequence only when
13199         debugging (because not all latinX keysyms are known to some X
13200         servers)
13201
13202         * kbsequence.C (getiso): add a few std:: qualifiers
13203         (getiso): comment out extra return statement.
13204
13205 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13206
13207         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
13208         handling.
13209         (Dispatch): enhance the accent inset a bit. (not perfect)
13210
13211 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13212
13213         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
13214
13215 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13216
13217         * bufferlist.C (emergencyWrite): fix assert() call
13218
13219 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
13220
13221         * text.C (InsertChar): Added trivial patch to only send the "you
13222         can not do multiple spaces this way" message once during a
13223         session.
13224
13225 2001-05-08  Baruch Even  <baruch@lyx.org>
13226
13227         * Makefile.am: Changed order of libraries to get LyX to link properly
13228         with the gnome frontend.
13229
13230 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13231
13232         * LaTeXFeatures.h: add a std:: qualifier
13233
13234 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13235
13236         * paragraph.C (String): use stringstream
13237
13238 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13239
13240         * paragraph.C (writeFile): remove footflag arg
13241
13242         * buffer.C (makeLaTeXFile): use stringstream
13243         (latexParagraphs): remove footnot gurba
13244
13245         * LaTeXFeatures.C (getPackages): use stringstream
13246         (getMacros): likewise
13247         (getTClassPreamble): likewise
13248         (getFloatDefinitions): new method
13249
13250         * paragraph.C (writeFile): reindent
13251         (Erase): reindent
13252
13253         * WorkArea.h: revert the xpos + etc changes.
13254
13255         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
13256
13257         * lyxparagraph.[Ch]: add copy constructor, remove Clone
13258
13259         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
13260         (pasteSelection): likewise
13261         * text2.C (CreateUndo): likewise
13262
13263 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13264
13265         * minibuffer.C (peek_event): temporarily reduce the functionality
13266         of the minibuffer (to allow args on lfuns)
13267
13268         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
13269         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
13270
13271         * buffer.C (readInset): add compability reading of old float
13272         lists, add reading of new style float list.
13273         (readInset): avoid reevaluation of inscmd.getCmdName()
13274         (getLists): reindent
13275
13276         * MenuBackend.C (MenuItem): implement parsing of
13277         md_floatlistinsert and md_floatinsert.
13278         (expand::LastFiles): move initalizaton of iterators out of loop,
13279         avoid reevaluation.
13280         (expand::Documents): introduce typdedef vector<string> Strings,
13281         and use it.
13282         (expand::ExportFormats): introduce typedef vector<Format const *>
13283         Formats, and use it.
13284         (expand): implement FloatListInsert and FloatInsert.
13285
13286         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
13287         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
13288         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
13289
13290         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
13291         handling.
13292         (Dispatch::LFUN_FLOAT_LIST): implement
13293
13294 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
13295
13296         * LaTeX.C (run): Fix problem with --export code.
13297
13298 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
13299
13300         * BufferView.[Ch] (workarea): removed.
13301         (getClipboard) new method; wrapper for workarea()->getClipboard()
13302
13303         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
13304         bug.
13305
13306         * WorkArea.h (width, height, xpos, ypos): These methods all
13307         returned the dimensions of the work_area sub-area of WorkArea,
13308         resulting in a position error if the WorkArea were resized. Now
13309         return the dimensions of the entire WorkArea.
13310
13311         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
13312
13313 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13314
13315         * LaTeX.C (deplog): correct the syntax of regex reg1
13316
13317 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13318
13319         * undo.C: remove !NEW_INSETS cruft
13320
13321 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13322
13323         * text2.C: remove !NEW_INSETS cruft
13324
13325         * text.C: remove !NEW_INSETS cruft
13326
13327         * tabular.C: remove !NEW_INSETS cruft
13328
13329         * spellchecker.C: remove !NEW_INSETS cruft
13330
13331         * lyxtext.h: remove !NEW_INSETS cruft
13332
13333         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
13334
13335         * lyxfunc.C: remove !NEW_INSETS cruft
13336
13337         * lyxfind.C: remove !NEW_INSETS cruft
13338
13339         * lyx_cb.C: remove !NEW_INSETS cruft
13340
13341         * figureForm.C: remove  !NEW_INSETS cruft
13342
13343         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
13344
13345         * buffer.[Ch]: remove !NEW_INSETS cruft
13346
13347         * ToolbarDefaults.C: remove !NEW_INSETS cruft
13348
13349         * CutAndPaste.C: remove !NEW_INSETS cruft
13350
13351         * BufferView_pimpl.C: remove !NEW_INSETS cruft
13352
13353         * BufferView2.C: remove !NEW_INSETS cruft
13354
13355         * BufferView.h: remove !NEW_INSETS cruft
13356
13357 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13358
13359         * Lsstream.h: include LString.h before the sstream headers to
13360         fix problem with gcc 2.95.3 and lyxstring
13361
13362 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13363
13364         * lyx_main.C: add using directives when needed for C functions
13365         declared in std:: namespace.
13366
13367 2001-04-27  Juergen Vigna  <jug@sad.it>
13368
13369         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
13370         (SetHeightOfRow): comment out the update call should not be needed!
13371
13372 2001-04-13  Juergen Vigna  <jug@sad.it>
13373
13374         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
13375         (LyXTabular): tried to minimize operator= operations (and realized
13376         hopfully Lars wish).
13377
13378 2001-04-27  Juergen Vigna  <jug@sad.it>
13379
13380         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
13381
13382 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13383
13384         * lyxfunc.C (Dispatch): hack to make listof algorithm work
13385
13386         * buffer.C (readInset): hack to make listof algorithm work
13387
13388         * BufferView_pimpl.C: hack to make listof algorithm work
13389
13390 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13391
13392         * LyXAction.C: removed all !NEW_INSETS cruft
13393         (init): moved lfun_item in method
13394
13395         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
13396
13397 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
13398
13399         * BufferView2.C (theLockingInset): white space.
13400
13401 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13402
13403         * minibuffer.C: include <iostream>
13404
13405         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
13406
13407         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
13408
13409         * commandtags.h: add LFUN_TRANSPOSE_CHARS
13410
13411         * text.[Ch] (TransposeChars): new method
13412
13413 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13414
13415         * call message directly through LyXView instead of through LyXFunc
13416         * BufferView2.C: adjust
13417         * BufferView_pimpl.C: adjust
13418         * FontLoader.C: adjust
13419         * buffer.C: adjust
13420         * bufferview_funcs.C: adjust
13421         * converter.C: adjust
13422         * figureForm.C: adjust
13423         * importer.C: adjust
13424         * lyx_cb.C: adjust
13425         * lyx_gui_misc.C: adjust
13426         * lyxfunc.C: adjust
13427         * lyxvc.C: adjust
13428         * text2.C: adjust
13429         + more files in subdirs
13430
13431         * lyxparagraph.h (size): move up int file
13432         (GetLayout): ditto
13433
13434         * adjust all uses of Assert to lyx::Assert.
13435
13436         * BufferView2.C (ChangeCitationsIfUnique): adjust for
13437         lyxfunctional in namespace lyx
13438         * layout.C (hasLayout): ditto
13439         (GetLayout): ditto
13440         (GetLayout): ditto
13441         (delete_layout): ditto
13442         (NumberOfClass): ditto
13443         * converter.C (GetFormat): ditto
13444         (GetNumber): ditto
13445         (Add): ditto
13446         (Delete): ditto
13447         (SetViewer): ditto
13448         * bufferlist.C (getFileNames): ditto
13449         (emergencyWriteAll): ditto
13450         (exists): ditto
13451         (getBuffer): ditto
13452         * MenuBackend.C (hasSubmenu): ditto
13453         (hasMenu): ditto
13454         (getMenu): ditto
13455         * BufferView_pimpl.C (getInsetByCode): ditto
13456
13457 2001-04-18  Juergen Vigna  <jug@sad.it>
13458
13459         * vspace.C (asLatexString): fixed the 100% problem.
13460
13461 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13462
13463         * lyxfunc.C (Dispatch):
13464         * minibuffer.C:
13465         * minibuffer.h: add a few std:: qualifiers
13466
13467 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13468
13469         * minibuffer.[Ch]: reimplement so that commands is initiated and
13470         run from lyxfunc, simplified som handling, and made the completion
13471         and history code for complete. wip.
13472
13473         * lyxfunc.C (processKeySym): call message
13474         (miniDispatch): new temporary method
13475         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
13476         (LFUN_MESSAGE): implement
13477         (LFUN_MESSAGE_PUSH): implement
13478         (LFUN_MESSAGE_POP): implement
13479         (initMiniBuffer): the initial/defualt minibuffer message.
13480
13481         * lyxfont.[Ch]: inline some more getters
13482
13483         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
13484
13485         * lyx_gui_misc.[Ch] (WriteStatus): remove method
13486
13487         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
13488         (AutoSave): use LFUN_MESSAGE
13489         (Reconfigure): ditto
13490
13491         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
13492
13493         * figureForm.C: use LFUN_MESSAGE
13494
13495         * converter.C (runLaTeX): use LFUN_MESSAGE
13496
13497         * bufferview_funcs.C: use LFUN_MESSAGE
13498         (Melt): ditto
13499         (changeDepth): ditto
13500
13501         * bufferparams.h: use boost::
13502
13503         * bufferlist.h: inherit privately from noncopyable
13504
13505         * bufferlist.C (loadLyXFile): remove some commented code.
13506
13507         * buffer.C (runChktex): use LFUN_MESSAGE
13508
13509         * ShareContainer.h: inherit privately from noncopyable
13510
13511         * ParagraphParameters.[hC] (depth): inline it.
13512
13513         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
13514         methods.
13515         (message): new method
13516         (messagePush): ditto
13517         (messagePop): ditto
13518         (show): init minibuffer
13519         (showState): direct call
13520
13521         * LaTeX.[Ch]: inherit privately from noncopyable
13522         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
13523         instead of WriteStatus.
13524
13525         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
13526
13527         * BufferView_pimpl.C (buffer): don't init minibuffer
13528         (workAreaButtonPress): use LFUN_MESSAGE
13529         (workAreaButtonRelease): ditto
13530         (savePosition): ditto
13531         (restorePosition): ditto
13532         (MenuInsertLyXFile): ditto
13533         (workAreaExpose): don't init minibuffer
13534         (update): remove commented code, simplify
13535
13536         * BufferView2.C (openStuff): use LFUN_MESSAGE
13537         (toggleFloat): ditto
13538         (menuUndo): ditto
13539         (menuRedo): ditto
13540         (copyEnvironment): ditto
13541         (pasteEnvironment): ditto
13542         (copy): ditto
13543         (cut): ditto
13544         (paste): ditto
13545         (gotoInset): ditto
13546         (updateInset): remove some commented code
13547
13548         * lastfiles.h: inherit privately from noncopyable
13549         * layout.h: ditto
13550         * lyx_gui.h: ditto
13551         * lyx_main.h: ditto
13552         * lyxlex.h: ditto
13553         * lyxlex_pimpl.h: ditto
13554
13555         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
13556         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
13557         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
13558
13559         * LyXAction.h: inherit privately from noncopyable, add methods
13560         func_begin, func_end, returning iterators to the func map.
13561
13562         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
13563         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
13564         (func_begin): new method
13565         (func_end): new method
13566
13567         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
13568         and not)
13569         (copySelection): ditto
13570         (pasteSelection): ditto
13571
13572         * BufferView.C: whitespace change
13573         * BufferView.h: inherit privately from noncopyable
13574
13575 2001-04-16  Allan Rae  <rae@lyx.org>
13576
13577         * tabular-old.C (l_getline):
13578         * spellchecker.C (sc_check_word):
13579         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
13580         an unrecognised preprocessor directive.  So ensure they're wrapped.
13581
13582 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
13583
13584         * src/exporter.C (Export): Give an error message when path to file
13585         contains spaces.
13586
13587 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
13588
13589         * LaTeX.C (deplog): Always check that foundfile exists.
13590
13591 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13592
13593         * lyx_main.h:
13594         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
13595
13596 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13597
13598         * tabular.[Ch] (getLabelList): implement new method
13599
13600         * minibuffer.h: comment ouf setTiimer
13601
13602         * minibuffer.C (ExecutingCB): constify res
13603         (peek_event): constify s
13604         (Set): constify ntext
13605         (Init): constify nicename
13606
13607         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
13608
13609         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
13610         (savePosition): use two params to Minibuffer::Set
13611         (restorePosition): ditto
13612
13613 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13614
13615         * lyx_main.C: include language.h
13616
13617         * Makefile.am (lyx_main.o): add language.h
13618
13619 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13620
13621         * exporter.C:
13622         * paragraph.C:
13623         * screen.C:
13624         * tabular.C:
13625         * CutAndPaste.C: include gettext.h
13626
13627         * lyxfont.h: remove old hack with ON and OFF.
13628
13629         * lyxparagraph.h:
13630         * lyxfont.h: do not include language.h...
13631
13632         * BufferView2.C:
13633         * LaTeXFeatures.C:
13634         * Painter.C:
13635         * bufferview_funcs.C:
13636         * font.C:
13637         * lyxfont.C:
13638         * text.C:
13639         * text2.C:
13640         * trans_mgr.C:
13641         * paragraph.C: ... but do it here instead
13642
13643 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13644
13645         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
13646
13647         * tabular.C: small reformat
13648
13649         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
13650         NEW_INSETS version
13651         (GetChar): ditto
13652         (BreakParagraph): ditto
13653         (SetOnlyLayout): ditto
13654         (SetLayout): ditto
13655
13656         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
13657         with one arg less.
13658
13659         * lastfiles.C: removed most using decl, add std:: where needed
13660
13661         * buffer.C: ws changes
13662
13663         * MenuBackend.C (class compare_format): put into anon namespace
13664         (expand): constify label, names, action, action2
13665         (expand):
13666
13667         * text.C (SingleWidth): constify font
13668         (IsBoundary): constify rtl2
13669         (GetVisibleRow): constify ww
13670
13671         * LaTeX.C (deplog): constify logfile
13672
13673         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
13674         start_x, end_x
13675         (workAreaExpose): constify widthChange, heightChange
13676
13677         * lyxrow.C (par): moved
13678         (height): moved
13679         (next): moved
13680         * lyxrow.h: as inlines here
13681
13682         * lyxfont.h (shape): moved from lyxfont.C
13683         (emph): moved from lyxfont.C
13684
13685         * lyxfont.C (LyXFont): use initialization list for all
13686         constructors
13687         (shape): move to lyxfont.h as inline
13688         (emph): move to lyxfont.h as inline
13689
13690
13691 2001-04-04  Juergen Vigna  <jug@sad.it>
13692
13693         * vspace.C: had to include stdio.h for use of sscanf
13694
13695 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
13696
13697         * BufferView.h:
13698         * BufferView_pimpl.h: remove xforms cruft. Both classes are
13699         independent of xforms.
13700
13701 2001-04-02  Juergen Vigna  <jug@sad.it>
13702
13703         * spellchecker.C: fixed namespace placing!
13704
13705 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
13706
13707         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
13708         the LyXParagraph * is 0.
13709
13710 2001-03-29  Juergen Vigna  <jug@sad.it>
13711
13712         * vspace.C: added support for %, c%, p%, l%.
13713         (stringFromUnit): added helper function.
13714         (asLatexString): changed to give right results for the %-values.
13715
13716         * buffer.C: convert the widthp in a width%.
13717
13718 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
13719
13720         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
13721         figureForm.[Ch].
13722
13723         * figureForm.[Ch]: stripped the FD_from_figure manipulation
13724         code out of lux_cb.[Ch], ready for its (imminent?) removal.
13725
13726         * lyx_cb.[Ch]: see above.
13727
13728         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
13729         form1.[Ch].
13730
13731         * form1.[Ch]:
13732         * lyx.[Ch]: replaced by figure_form.[Ch].
13733
13734         * lyx_gui.C:
13735         * lyx_gui_misc.C:
13736         * lyxfunc.C: changed headers associated with above changes.
13737
13738 2001-03-27  Juergen Vigna  <jug@sad.it>
13739
13740         * BufferView_pimpl.C: set the temporary cursor right!
13741
13742 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
13743
13744         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
13745
13746 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
13747
13748         * LString.h: removed "using std::getline"!
13749
13750         * BufferView_pimpl.C (Dispatch): changes due to changes in
13751         InsetInclude::Params.
13752
13753         * buffer.C (tag_name): removed redundant break statements as they were
13754         producing lots of warnings with my compiler.
13755
13756 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13757
13758         * LString.h: add "using std::getline" when using the real <string>.
13759
13760 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
13761
13762         * buffer.C: removed bitset usage.
13763         PAR_TAG moved to an anonymous name space.
13764         (tag_name): new funtion, also in the anonymous namespace.
13765         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
13766         (makeDocBookFile): clean code. Completed transition from string arrays
13767         to string vectors.
13768         (SimpleDocBookOnePar): code clean.
13769
13770 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13771
13772         * tabular.C: add some comments.
13773
13774 2001-03-22  Juergen Vigna  <jug@sad.it>
13775
13776         * buffer.C (parseSingleLyXformat2Token): redone the minipage
13777         compatibility read a bit and fixed bug with minipage in different
13778         depth.
13779
13780 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
13781
13782         * buffer.C (pop_tag): removed.
13783         (push_tag): removed.
13784         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
13785         array replaced with vector. Added support for CDATA sections.
13786         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
13787         at any nest level.
13788         (makeDocBookFile): XML conformant declaration of CDATA section,
13789         fixed bug related to <emphasis> in the first paragraph char.
13790         (sgmlOpenTag): exclude empty tags.
13791         (sgmlCloseTag): ditto.
13792
13793         * buffer.h (pop_tag): removed.
13794         (push_tag): removed.
13795
13796 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
13797
13798         * language.h (Languages): added size_type and size().
13799
13800 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13801
13802         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
13803         response on compability reading of minipages. One probliem is that
13804         the old usage of minipages was «flertydig»
13805
13806         * several files here and in subdirs: don't use static at file
13807         scope use anon namespaces instead.
13808
13809 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
13810
13811         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
13812         LaTeX output. This is necessary for Literate document
13813         processing.
13814
13815 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13816
13817         * buffer.C: insert hfill when needed.
13818
13819         * tabular.C (l_getline): use string::erase, small whitespace change.
13820
13821         * BufferView_pimpl.C: try the anon namespace.
13822         * WorkArea.C: ditto
13823
13824 2001-03-16  Juergen Vigna  <jug@sad.it>
13825
13826         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
13827         otherwise it won't open options-dialogs.
13828
13829         * buffer.C: honor pextraWidth(p) on converting minipages.
13830
13831         * tabular.C (l_getline): changed the functions to strip trailing \r.
13832
13833 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
13834
13835         * BufferView_pimpl.C:
13836         * minibuffer..C: added "using SigC::slot" declaration.
13837
13838 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13839
13840         * lyxlex_pimpl.h: noncopyable is in namespace boost.
13841
13842         * text2.C: ditto
13843
13844         * text.C: ditto
13845
13846         * paragraph.C: ditto
13847
13848         * lyxtext.h: NO_PEXTRA
13849
13850         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
13851
13852         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
13853         * ParameterStruct.h: ditto
13854         * ParagraphParameters.h: ditto
13855         * lyxparagraph.h: ditto
13856
13857 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13858
13859         * buffer.C: add compability for minipage alignment.
13860         (latexParagraphs): remove unwanted pextra check.
13861
13862         * several files: remove CXX_WORKING_NAMESPACES
13863
13864         * buffer.C (pop_tag): tie is in namespace boost
13865
13866         * BufferView.h: noncopyable is in namespace boost
13867         * lyxlex.h: ditto
13868         * lyx_main.h: ditto
13869         * lyx_gui.h: ditto
13870         * layout.h: ditto
13871         * lastfiles.h: ditto
13872         * bufferlist.h: ditto
13873         * ShareContainer.h: ditto
13874         * LyXView.h: ditto
13875         * LyXAction.h: ditto
13876         * LaTeX.h: ditto
13877
13878 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
13879
13880         * Merging changes from BRANCH_MVC back into HEAD.
13881
13882         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
13883
13884 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
13885
13886         * BufferView_pimpl.C: change from intl.C
13887
13888         * combox.h:
13889         * combox.C:
13890         * Makefile.am: move combox.*
13891
13892         * form1.h:
13893         * form1.C:
13894         * lyx_gui.C:
13895         * intl.h:
13896         * intl.C: remove dialog (covered by prefs)
13897
13898 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
13899
13900         * lyxfunc.C (Dispatch): removed redundant break statement.
13901
13902 2001-03-14  Juergen Vigna  <jug@sad.it>
13903
13904         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
13905
13906 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13907
13908         * buffer.C: add hack to fix compability reading of minipages.
13909
13910 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
13911
13912         * buffer.C (getLists): Cleanup.
13913
13914 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13915
13916         * lyxfont.C (update): don't honor toggleall on font size.
13917
13918 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
13919
13920         * bmtable.c:
13921         * bmtable.h:
13922         * Makefile.am: moved to frontends/xforms/
13923
13924         * lyx_gui_misc.C:
13925         * lyxfunc.C:
13926         * BufferView_pimpl.C: changes for moved mathpanel
13927
13928 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
13929
13930         * gettext.h: fix gettext_init() in --disable-nls
13931
13932 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13933
13934         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
13935
13936 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
13937
13938         * lyx.C:
13939         * lyx.h: strip external form
13940
13941 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
13942
13943         * BufferView_pimpl.C: add comment, destroySplash()
13944
13945 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
13946
13947         * BufferView_pimpl.C:
13948         * LyXAction.C:
13949         * buffer.C:
13950         * commandtags.h:
13951         * lyxfunc.C: use re-worked insetinclude
13952
13953 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13954
13955         * buffer.C: add using std::stringstream.
13956
13957         * lyx_cb.C: readd using std::ios.
13958
13959         * buffer.C: add using std::map.
13960
13961         * BufferView_pimpl.C: add using std::vector.
13962
13963         * ShareContainer.h: add std:: to swap.
13964
13965         * buffer.h: add some typedefs
13966         * buffer.C (getLists): use them
13967         (getLists): renamed from getTocList.
13968         add a counter for the different float types and use it in the
13969         generated string.
13970         (getLists): use the same counter for the NEW_INSETS and the "non"
13971         NEW_INSETS
13972
13973         * lyx_cb.h: remove unused items, includes, using etc.
13974
13975         * ShareContainer.h: remove some commented code, add more comments
13976         and "documentation".
13977
13978 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13979
13980         * buffer.C (getTocList): make the list also when NEW_INSETS is
13981         defined.
13982
13983         * buffer.h: remove TocType
13984
13985         * buffer.C (getTocList): change to return a map<string,
13986         vector<TocItem> >, implement for dynamic number of list.
13987
13988         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
13989         * text2.C (PasteSelection): adjust
13990         * CutAndPaste.C (pasteSelection): adjust
13991
13992         * FloatList.C (FloatList): update from the new_insets branch.
13993         * Floating.[Ch]: ditto
13994         * LaTeXFeatures.C: ditto
13995         * buffer.C: ditto
13996         * lyxlex_pimpl.C: ditto
13997
13998         * paragraph.C (Last): remove when NEW_INSETS is defined.
13999
14000         * other file: changes because of the above.
14001
14002 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14003
14004         * lyxparagraph.h: rename next to next_, previous to previous_,
14005         make them private for NEW_INSETS. Rename Next() to next(),
14006         Previous() to previous().
14007
14008         * other files: changes because of the above.
14009
14010 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
14011
14012         * BufferView.h:
14013         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
14014         problem.
14015
14016 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14017
14018         * main.C (main): pass lyx_localedir to gettext_init().
14019
14020         * gettext.h: remove locale_init and gettext_init macros
14021
14022         * gettext.C (locale_init): new function
14023         (gettext_init): new function
14024
14025         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
14026         setlocale().
14027
14028 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
14029
14030         * Moved credits to frontends:
14031         * credits.[Ch]: removed
14032         * credits_form.[Ch]: removed
14033         * lyx_gui_misc.C: remove credits stuff
14034         * Makefile.am:
14035
14036 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14037
14038         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
14039
14040         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
14041         unneeded destructor.
14042
14043         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
14044         a standalone pointer again.
14045
14046         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
14047
14048 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
14049
14050         * Makefile.am:
14051         * filedlg.h:
14052         * filedlg.C:
14053         * LyXAction.C:
14054         * ToolbarDefaults.C:
14055         * bufferlist.C:
14056         * commandtags.h:
14057         * form1.C:
14058         * form1.h:
14059         * lyx_cb.C:
14060         * lyx_cb.h:
14061         * lyxfunc.h:
14062         * lyxfunc.C:
14063         * BufferView_pimpl.C: use new file dialog in GUII
14064
14065         * lyx_cb.h:
14066         * lyx_cb.C: remove LayoutsCB to Toolbar
14067
14068 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14069
14070         * ShareContainer.h (get): add std:: qualifier
14071
14072 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14073
14074         * ShareContainer.h: define a proper ShareContainer::value_type
14075         type (and use typename to please compaq cxx)
14076
14077 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14078
14079         * lyxparagraph.h: move serveral local vars to
14080         ParameterStruct/ParagraphParameters., use ShareContainer in
14081         FontTable., make vars in FontTable private and add getter and
14082         setter.
14083
14084         * paragraph.C: changes because of the above.
14085
14086         * lyxfont.h: remove copy constructor and copy assignment. (the
14087         default ones is ok), move number inside FontBits. move inlines to
14088         lyxfont.C
14089
14090         * lyxfont.C: add number to initializaton of statics, move several
14091         inlines here. constify several local vars. some whitespace
14092         cleanup. Dont hide outerscope variables.
14093
14094         * Spacing.h: add two new constructors to match the set methods.
14095
14096         * ShareContainer.h: new file, will perhaps be moved to support
14097
14098         * ParameterStruct.h: new file
14099
14100         * ParagraphParameters.h: new file
14101
14102         * ParagraphParameters.C: new file
14103
14104         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
14105         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
14106
14107         * BufferView_pimpl.C: ParagraphParameter changes.
14108         * buffer.C: Likewise.
14109         * bufferview_funcs.C: Likewise.
14110         * text.C: Likewise.
14111         * text2.C: Likewise.
14112
14113 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14114
14115         * lyxfind.C (LyXReplace): do not redefine default argument in
14116         implementation.
14117         (IsStringInText): ditto
14118         (SearchForward): ditto
14119         (SearchBackward): ditto
14120
14121 2001-03-06  Juergen Vigna  <jug@sad.it>
14122
14123         * lyxfind.C (IsStringInText): put parentes around expressions.
14124
14125 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
14126
14127         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
14128
14129 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
14130
14131         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
14132
14133         * stl_string_fwd.h: add comment
14134
14135         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
14136
14137         * tabular.h:
14138         * tabular.C: remove unused DocBook methods
14139
14140         * intl.C:
14141         * language.C:
14142         * paragraph.C:
14143         * buffer.C:
14144         killed DO_USE_DEFAULT_LANGUAGE
14145
14146 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14147
14148         * lyx_gui.C: do not include language.h.
14149
14150         * bufferview_funcs.C (ToggleAndShow): do not provide optional
14151         arguments in function implementation.
14152
14153 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14154
14155         * BufferView_pimpl.C: add <ctime>
14156
14157 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14158
14159         * BufferView_pimpl.C: add using std::find_if
14160
14161 2001-02-27  José Matos  <jamatos@fep.up.pt>
14162
14163         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
14164         by OnlyPath.
14165
14166 2001-02-11  José Matos  <jamatos@fep.up.pt>
14167
14168         * buffer.C (makeDocBookFile): command styles now have a parameter as
14169         "title" by default.
14170
14171 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
14172
14173         * layout_forms.[Ch]: removed
14174         * lyx_cb.[Ch]: out character
14175         * lyx_gui.C: out character
14176         * lyx_gui_misc.C: out character
14177         * bufferview_funcs.C: : out character,
14178         added toggleall as parameter in ToggleAndShow
14179
14180 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
14181
14182         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
14183
14184         * text2.C (SetCurrentFont): Disable number property at boundary.
14185
14186 2001-02-26  Juergen Vigna  <jug@sad.it>
14187
14188         * lyxfunc.C (getStatus): added a string argument override function so
14189         that this is correctly called from LyXFunc::Dispatch if it contains a
14190         do_not_use_argument which is used!
14191         (Dispatch): added check for "custom" export and call appropriate func.
14192
14193 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
14194
14195         * lyxrc.C: Add language_command_local, language_use_babel and
14196         language_global_options.
14197
14198         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
14199
14200         * buffer.C (makeLaTeXFile): Use language_use_babel and
14201         language_global_options.
14202
14203 2001-02-23  Juergen Vigna  <jug@sad.it>
14204
14205         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
14206         which works with LyXText and putted it inside BufferView. Here now we
14207         only call for that part the BufferView::Dispatch() function.
14208
14209         * BufferView.C (Dispatch): added.
14210
14211         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
14212         functions which needs to use a LyXText over from LyXFunc.
14213         (MenuInsertLyXFile): added
14214         (getInsetByCode): added
14215         (moveCursorUpdate): added
14216         (static TEXT): added
14217
14218 2001-02-22  Juergen Vigna  <jug@sad.it>
14219
14220         * BufferView_pimpl.C (update): call a status update to see if LyXText
14221         needs it.
14222
14223 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14224
14225         * vc-backend.C (revert): implement for CVS
14226         (getLog): implement for CVS
14227
14228 2001-02-20  Juergen Vigna  <jug@sad.it>
14229
14230         * text2.C (ClearSelection): added BufferView param for inset_owner call
14231
14232         * lyxfunc.C (TEXT): added this function and use it instead of
14233         directly owner->view()-text of getLyXText().
14234
14235 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
14236
14237         * src/layout_forms.C: out preamble
14238         * src/layout_forms.h: out preamble
14239         * src/lyx_cb.C: out preamble
14240         * src/lyx_cb.h: out preamble
14241         * src/lyx_gui.C: out preamble
14242         * src/lyx_gui_misc.C: out preamble
14243         * src/lyxfunc.C: connect with guii preamble
14244
14245 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
14246
14247         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
14248
14249 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
14250
14251         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
14252         whether to run bibtex.
14253
14254 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
14255
14256         * Makefile.am (lyx_SOURCES): Remove BackStack.h
14257
14258 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
14259
14260         * Makefile.am (lyx_SOURCES): removed bibforms.h
14261
14262         * vspace.h: doxygen
14263
14264         * text.C (GetVisibleRow): make several local vars const
14265
14266         * tabular.C: small cleanup.
14267
14268         * lyxserver.C (callback): use compare instead of strncmp
14269
14270         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
14271         inlines to after class or to paragraph.C
14272
14273         * lyxfont.h: remove friend operator!=
14274
14275         * converter.h: move friend bool operator< to non friend and after
14276         class def.
14277
14278         * combox.h: small cleanup
14279
14280         * buffer.h: doxygen, remove unused constructor, move inclas inlies
14281         to inlines after class def.
14282
14283         * buffer.C (pop_tag): use string operations instead of strcmp
14284
14285         * bmtable.c: doxygen, small cleanup
14286
14287         * LaTeX.h: remove friend operator==
14288
14289 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
14290
14291         * screen.C:
14292         * lyxrc.[Ch]:
14293         * lyxfunc.C:
14294         * lyxfont.[Ch]:
14295         * lyx_cb.C:
14296         * intl.[Ch]:
14297         * commandtags.h:
14298         * buffer.C:
14299         * WorkArea.[Ch]:
14300         * LyXAction.C:
14301         * BufferView_pimpl.C:
14302         * BufferView.[Ch]: remove cruft
14303
14304 2001-02-14  Juergen Vigna  <jug@sad.it>
14305
14306         * lyxfunc.C: removed #if 0 unused code
14307
14308         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
14309
14310         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
14311
14312         * text2.C (SetSelection): added a BufferView * parameter
14313
14314 2001-02-13  Juergen Vigna  <jug@sad.it>
14315
14316         * lyxfunc.C (Dispatch): fixed protected blank problem.
14317         * BufferView2.C (protectedBlank): added LyxText * parameter.
14318
14319         * tabular.C (AppendRow): forgot to set row_info of newly added row.
14320         (AppendColumn): same as above for column_info.
14321
14322         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
14323         (moveCursorUpdate): use a LyXText param for support of InsetText.
14324
14325         * BufferView_pimpl.C (doubleClick): added support for InsetText.
14326         (tripleClick): ditto
14327
14328         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
14329
14330         * BufferView_pimpl.C (update): added LyXText param to honor insets.
14331
14332         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
14333
14334         * text2.C (SetSelection): set correct update status if inset_owner
14335         (ToggleFree): ditto
14336
14337 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
14338
14339         * tabular.C: remove some commented code.
14340
14341 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
14342
14343         * BufferView_pimpl.C: call hideSplash()
14344
14345         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
14346
14347         * include_form.h:
14348         * bibforms.h: remove
14349
14350         * lyxfunc.C:
14351         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
14352           add LFUN_CHILD_CREATE
14353
14354         * counters.h: fix tiny typo
14355
14356         * lyx_cb.C:
14357         * lyx.h:
14358         * lyx_gui.C:
14359         * lyx.C: move splash to frontends/xforms/
14360
14361         * lyx_gui_misc.C: move Include and Bibform to frontends
14362
14363         * lyxvc.h: clarify comment
14364
14365         * vspace.C: tiny housekeeping
14366
14367 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
14368
14369         * text.C (PrepareToPrint): RTL Fix.
14370
14371         * paragraph.C (GetUChar): New method.
14372         (String):  Use GetUChar.
14373
14374         * buffer.C (asciiParagraph): Use GetUChar.
14375
14376 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
14377
14378         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
14379
14380 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
14381
14382         * buffer.h:
14383         * buffer.C: rename to getLogName(), handle
14384           build log / latex log nicely
14385
14386 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14387
14388         * MenuBackend.C:
14389         * MenuBackend.h: remove support for reference menuitem type.
14390
14391 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
14392
14393         * BufferView_pimpl.C: housekeeping
14394         * BufferView_pimpl.h:
14395         * LyXView.h:
14396         * Makefile.am:
14397         * Timeout.C:
14398         * Timeout.h:
14399         * minibuffer.h: move Timeout GUI-I
14400
14401 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
14402
14403         * lyxrc.C (read): Update converters data-structures.
14404
14405 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
14406
14407         * LaTeX.h (operator!=): add operator != for Aux_Info
14408
14409 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
14410
14411         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
14412
14413         * LaTeXLog.C: deleted, useful code moved to Buffer
14414
14415         * buffer.h:
14416         * buffer.C: new function getLatexLogName()
14417
14418         * lyx_gui_misc.C:
14419         * lyx_gui.C:
14420         * lyxvc.C:
14421         * lyxvc.h:
14422         * lyxfunc.C: use frontends for LaTeX and VC logs
14423
14424 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14425
14426         * LaTeX.h: yet another std:: that Allan forgot.
14427
14428         * Variables.C (set): renamed from isset(), because this clashes
14429         with some HP-UX macros (grr).
14430
14431 2001-02-06  Allan Rae  <rae@lyx.org>
14432
14433         * LaTeX.h: Another bug fix.  Missing std:: this time.
14434
14435 2001-02-04  Allan Rae  <rae@lyx.org>
14436
14437         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
14438         floats problem. I've left it commented out because it's not quite
14439         correct.  It should also test that the current object is a table or
14440         figure inset.  But I haven't gotten around to figuring out how to do
14441         that.  I *think* it'll be something like: "table" == inset.type()
14442
14443         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
14444         bool.
14445
14446 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
14447
14448         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
14449         all the citation/databases/styles in the auxilary file.
14450         (run): Rerun latex if there was a babel language error.
14451
14452 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
14453
14454         * text.C (Backspace): Preserve the font when changing newline char
14455         with a space.
14456         (BreakParagraph): If the cursor is before a space, delete the space.
14457
14458         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
14459
14460 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
14461
14462         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
14463         new argument (code).
14464         (ChangeCitationsIfUnique): New method.
14465
14466         * paragraph.C (GetPositionOfInset): Handle bibkey.
14467
14468 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14469
14470         * BufferView_pimpl.h: change type of Position::par_pos to
14471         LyXParagraph::size_type.
14472
14473 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
14474
14475         * BufferView_pimpl.C (savePosition, restorePosition): Write
14476         messages to minibuffer.
14477
14478 2001-01-28  José Matos  <jamatos@fep.up.pt>
14479
14480         * buffer.C (makeDocBookFile): adds support for document language.
14481         A silly restriction on the name of LatexCommand types where removed.
14482         Added support for CDATA sections, allows to chars unescaped, used
14483         among others in code, to avoid escape < and >.
14484
14485 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
14486
14487         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
14488         saved positions instrad of a stack. Furthermore, a position is
14489         stored using paragraph id/paragraph position.
14490
14491         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
14492         Remove LFUN_REF_BACK.
14493
14494 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
14495
14496         * converter.C (dvipdfm_options): New method.
14497
14498 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
14499
14500         * vspace.C (isValidLength): Fix for empty input string.
14501
14502 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14503
14504         * LyXAction.C (init): change description of LFUN_FIGURE to
14505         "Insert Graphics"
14506
14507 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14508
14509         * LaTeX.C: add using directive
14510
14511 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
14512
14513         * MenuBackend.C (expand): Fix the sorting of the formats.
14514
14515 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
14516
14517         * lyx_main.C: tiny error message fix
14518
14519 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14520
14521         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
14522         calling fl_initialize(). This fixes the problem with ',' as
14523         decimal separator in text files.
14524
14525 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
14526
14527         * trans.C (process): Fix the keymap bug.
14528
14529 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
14530
14531         * LaTeX.C (scanAuxFiles): New method. Provides support for
14532         multiple bibliographies (when using the bibtopic/bibunits pacakges).
14533         (scanLogFile) Scan for "run BibTeX" messages.
14534
14535         * buffer.C (makeLaTeXFile): Do not load the ae package when using
14536         OT1 font encoding. Also, load the aecompl package if the ae
14537         package is loaded.
14538
14539         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
14540
14541 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14542
14543         * texrow.C (increasePos): turn two error messages into debug
14544         messages.
14545
14546 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
14547
14548         * LaTeX.C (scanAux): Handle the \@input macro.
14549         (runBibTeX): Use scanAux().
14550
14551         * language.C (latex_options_): New field.
14552
14553         * LaTeXFeatures.C (getMacros): Add language macros.
14554
14555         * buffer.C (makeLaTeXFile): Small fix.
14556
14557 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14558
14559         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
14560
14561         * text2.C: add a using directive.
14562
14563 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
14564
14565         * BufferView2.C:
14566         * lyx_gui_misc.h:
14567         * lyxfr1.C:
14568         * lyxfunc.C: kill LyXBell.
14569
14570 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
14571
14572         * text.C (IsBoundary): Remove the error message
14573
14574         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
14575
14576         * lyxrc.C (setDefaults): Correct initialization value for
14577         font_norm_type.
14578
14579 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
14580
14581         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
14582         gotoError().
14583
14584         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
14585         and GotoNextNote().
14586
14587         * src/LyXAction.C: Added reference-next.
14588
14589         * text.C (InsertChar): Use contains instead of strchr.
14590
14591         * lyx_cb.C (MenuInsertLabel): Enable default value code.
14592
14593 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
14594
14595         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
14596         alignment commands (when needed).
14597
14598         * text.C (InsertChar): Add ':' to number separator chars.