]> git.lyx.org Git - features.git/blob - src/ChangeLog
setFont rework + some code simplification
[features.git] / src / ChangeLog
1
2 2003-11-27  Alfredo Braunstein  <abraunst@lyx.org>
3
4         * text2.C (setFont): rework using PosIterator (no more recursive)
5         (setCharFont): no more needed 
6         (setLayout): no more selection cursors fiddling (done by redoCursor)
7         * text.C: cursorRight(bv)->cursorRight(true) (TODO: find and
8         destroy remaining ones)
9
10 2003-11-26  Alfredo Braunstein  <abraunst@lyx.org>
11
12         * bufferview_funcs.[Ch]: split changeDepthAllowed from changeDepth
13         * lyxtext.h: ditto
14         * text2.C: same thing + updateCounters fix + redoCursor also adjusts
15         selection cursors
16         * lyxfunc.C: adjust
17         * text3.C: adjust + re-allow multi par depth changes
18         * textcursor.C: simplify a bit
19
20 2003-11-25  Martin Vermeer  <martin.vermeer@hut.fi>
21
22         * src/buffer.C:
23         * src/lyxlayout.C:
24         * src/lyxlayout.h:
25         * src/lyxtext.h:
26         * src/output_docbook.C:
27         * src/output_latex.C:
28         * src/paragraph.C:
29         * src/paragraph.h:
30         * src/sgml.C:
31         * src/sgml.h:
32         * src/text2.C: Introducing a number of tags parametrizing various
33         XML formats that we may want to support
34
35 2003-11-25  André Pönitz  <poenitz@gmx.net>
36
37         * InsetList.[Ch] (begein, end): inline as suggested by profiler
38
39         * lyxtext.h (leftMargin/rightMargin): simplify interface
40
41         * rowpainter.C:
42         * text.C:
43         * text2.C:
44         * text3.C: adjust
45
46 2003-11-24  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
47
48         * lyxfunc.C (dispatch): propogate the bibtex databases from the
49         master file to any child files. Fixes bug 546.
50
51 2003-11-24  Alfredo Braunstein  <abraunst@lyx.org>
52
53         * lyxfind.C (findNextChange): remove unneeded bv->text->init call
54
55 2003-11-24  André Pönitz  <poenitz@gmx.net>
56
57         * rowpainter.C: simplification
58
59         * text2.C (updateCounters): remove call to redoParagraph on 
60         changed labels as this is far too expensive.
61
62 2003-11-24  Alfredo Braunstein  <abraunst@lyx.org>
63
64         * converter.C (convert): fix a crash: this function gets
65         called with buffer == 0 from importer code.
66
67 2003-11-22  Lars Gullik Bjonnes  <larsbj@gullik.net>
68
69         * text3.C (cursorPrevious): make sure that we do not compare
70         iterators form different containers.
71         (cursorNext): ditto
72
73         * rowpainter.C (paintSelection): make sure that we do not compare
74         iterators from different containers.
75
76         * text3.C (dispatch): [PRIOR] make sure that we do not compare
77         iterators from different ParagraphList containers.
78         [NEXT] ditto
79
80         * text2.C (LyXText): change order of initialization slightly
81         (operator=): new function. copy all variables except cache_par_
82         (moveUp): make sure that we do not compare iterators from
83         different ParagraphList constainers.
84         (moveDown): ditto
85
86         * text.C (firstPar): new function
87         (lastPar): new function
88         (endPar): new function
89
90         * lyxtext.h: move things around and group public functions, public
91         variables, private functions, private variables
92
93 2003-11-21  Michael Schmitt  <michael.schmitt@teststep.org>
94
95         * factory.C: change call to InsetERT constructor to avoid
96         additional invocation of method status
97         * text2.C (toggleInset): remove redundant update() call
98         * InsetList.[Ch] (insetsOpenCloseBranch): Pass Buffer reference
99         instead of a Bufferview pointer
100
101 2003-11-21  André Pönitz  <poenitz@gmx.net>
102
103         * rowpainter.C: simplification
104
105 2003-11-21  Alfredo Braunstein  <abraunst@lyx.org>
106
107         * text3.C (dispatch): make possible to extend a word/row selection
108         with the mouse
109
110 2003-11-21  Alfredo Braunstein  <abraunst@lyx.org>
111
112         * lyxtext.h: x0_,y0_ -> xo_,yo_
113         * text2.C (cursorUp, cursorDown): adjust + some cursorRow use
114         * text3.C (checkInsetHit): fix coordinates using absolute xo_,yo_
115         * rowpainter.C (paintRows): paint full paragraphs
116
117 2003-11-20  Alfredo Braunstein  <abraunst@lyx.org>
118
119         * text2.C (cursorUp, cursorDown): small fix (insettext::edit takes
120         screen coordinates)
121
122 2003-11-20  Alfredo Braunstein  <abraunst@lyx.org>
123
124         * lyxtext.h: add x0_, y0_
125         * text3.C (cursorPrevious, cursorNext): rewrite (using x0_, y0_)
126         * text2.C (cursorDown, cursorUp): rewrite (using x0_, y0_)
127
128 2003-11-18  Alfredo Braunstein  <abraunst@lyx.org>
129
130         * text2.C (setCursorIntern): move the x_target update here *
131         * text3.C: change some bv() to true/false in calls to
132         cursorUp/Down/Right/Left
133         * cursor.C: use helper function.
134
135 2003-11-17  Alfredo Braunstein  <abraunst@lyx.org>
136
137         * BufferView_pimpl.C: send LFUN_MOUSE_MOTION to the cursor
138         * paragraph_funcs.[Ch]: correct comment
139         * rowpainter.C: do not paint selections away from bv->cursor()
140         Fix a long standing selection painting bug.
141         * text3.C: generalize mouse-selection code to LyXTexts other that
142         top one
143         * textcursor.C: do not use y coords if we can use par offsets
144
145 2003-11-17  Alfredo Braunstein  <abraunst@lyx.org>
146
147         * lyxfunc.C (dispatch): add a missing LCursor::updatePos (fix
148         cursor position after e.g. inset insert)
149
150 2003-11-16  Alfredo Braunstein  <abraunst@lyx.org>
151
152         * lyxfind.C (replace): adjust to locking removal + some
153         code simplification
154
155 2003-11-14  Alfredo Braunstein  <abraunst@lyx.org>
156
157         * cursor.C (dispatch): dispatch to BufferView::dispatch at the end
158         of the path
159
160 2003-11-14  Martin Vermeer  <martin.vermeer@hut.fi>
161
162         * lyxlayout.[Ch]:
163         * output_docbook.C: XML sanitation: new layout
164         parameters InnerTag and CommandDepth
165
166 2003-11-13  Martin Vermeer  <martin.vermeer@hut.fi>
167
168         * BufferView_pimpl.C:
169         * factory.C:
170         * text3.C: Fix the insertion and modification of button-style
171         insets
172
173 2003-11-13  André Pönitz  <poenitz@gmx.net>
174
175         * InsetList.[Ch]: remove deleteLyXText
176
177         * paragraph.[Ch]: cache beginOfBody position
178
179         * Bidi.C:
180         * text.C:
181         * text2.C:
182         * text3.C: remove superfluous update() calls
183
184         * vspace.C: cleanup
185
186 2003-11-13  Alfredo Braunstein  <abraunst@lyx.org>
187
188         * BufferView_pimpl.C (fitCursor): call screen().fitCursor()
189         * BufferView.C (fitLockedInsetCursor): remove
190         * cursor.[Ch] (getDim): add
191         * text.C (getRowNearY): add faster version
192         * text3.C: remove some update calls
193
194 2003-11-12  Martin Vermeer  <martin.vermeer@hut.fi>
195
196         * LaTeXFeatures.C:
197         * LyXAction.C:
198         * MenuBackend.C:
199         * MenuBackend.h:
200         * dispatchresult.h:
201         * factory.C:
202         * lfuns.h:
203         * lyxfunc.C:
204         * lyxtextclass.C:
205         * lyxtextclass.h:
206         * text3.C: The Character Style /XML short element patch.
207
208 2003-11-11  Martin Vermeer  <martin.vermeer@hut.fi>
209
210         * text3.C:
211         * factory.C: Small step to solving 'unable to insert some insets'
212         problem
213
214 2003-11-11  Alfredo Braunstein  <abraunst@lyx.org>
215
216         * cursor.[Ch] (updatePos): new function for updating the y
217         position of the tip inset
218         * bufferview_funcs.C (put_selection_at):
219         * BufferView_pimpl.C (workAreaDispatch): rationalise update calls
220
221 2003-11-11  André Pönitz  <poenitz@gmx.net>
222
223         * text.C: remove big comment on invalid Paragraph pointers as it is
224         not valid anymore
225
226 2003-11-11  André Pönitz  <poenitz@gmx.net>
227
228         * text_funcs.[Ch]: merge with ...
229
230         * text.C: ... this
231
232         * lyxtext.h:
233         * text2.C:
234         * text3.C: adjust
235
236         * Makefile.am: remove text_funcs.[Ch]
237
238 2003-11-11  Alfredo Braunstein  <abraunst@libero.it>
239
240         * cursor.C (getPos): return absolute cached y coord
241
242         * BufferView_pimpl.C (fitCursor): new simplistic code
243         (workAreaDispatch): add a fitCursor call
244
245 2003-11-10  André Pönitz  <poenitz@gmx.net>
246
247         * BufferView.[Ch]:
248         * BufferView_pimpl.[Ch]: merge update() and updateInset()
249
250 2003-11-10  André Pönitz  <poenitz@gmx.net>
251
252         * lfuns.h: new LFUN_FINISHED_LEFT, LFUN_FINISHED_RIGHT,
253         LFUN_FINISHED_UP, LFUN_FINISHED_DOWN used in dispatch to
254         indicate that the cursor needs to leave an inset
255
256         * lyxtext.h: remove inset locking
257
258         * cursor.[Ch]: re-implement functionality provided by inset locking
259
260         * BufferView.[Ch]:
261         * BufferView_pimpl.[Ch]:
262         * LyXAction.C:
263         * bufferview_funcs.[Ch]:
264         * factory.C:
265         * funcrequest.[Ch]:
266         * iterators.C:
267         * lyx_cb.C:
268         * lyxfind.C:
269         * lyxfunc.C:
270         * text.C:
271         * text2.C:
272         * text3.C:
273         * undo.C: adjust
274
275 2003-11-07  Alfredo Braunstein  <abraunst@libero.it>
276
277         * PosIterator.[Ch]: replace the stack with a vector, add inset
278         accesor
279         * iterators.[C]: adjust
280
281 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
282
283         * lyxfind.C (replaceAll): mark the buffer dirty if something was
284         replaced
285         * paragraph_funcs.C (readParToken): put the correct id in the
286         error item, not the id of the top paragraph
287
288 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
289
290         * iterators.[Ch] (ParIterator): new PosIterator-based ctor
291         * bufferview_funcs.C (put_selection_at): use the above
292
293 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
294
295         * text2.C (deleteEmptyParagraphMechanism): fix n-th crash
296
297 2003-11-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
298
299         * output_linuxdoc.h:
300         * output_plaintext.h:
301         * output.h:
302         * output_docbook.h: add #include statements
303
304 2003-11-05  José Matos  <jamatos@lyx.org>
305
306         * output_docbook.[Ch]:
307         * output_latex.[Ch]:
308         * output_linuxdoc.[Ch]:
309         * output_plaintext.[Ch]: New files for output formats.
310         * output.[Ch]: New file for helper functions.
311
312         * buffer.[Ch]:
313         * paragraph_funcs.[Ch]: output functions moved to new files.
314
315         * outputparams.h: rename of latexrunparams.h
316
317         * LaTeX.[Ch]:
318         * buffer.[Ch]:
319         * bufferlist.[Ch]:
320         * converter.[Ch]:
321         * exporter.C:
322         * paragraph.[Ch]:
323         * paragraph_funcs.[Ch]:
324         * paragraph_pimpl.[Ch]:
325         * tabular.[Ch]: rename ascii to plaintext
326         and LatexRunParams to OutputParams.
327
328 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
329
330         * iterators.[Ch] (text): require bv argument
331         * undo.C (recordUndo):
332         * lyxfunc.C (dispatch):
333         * bufferview_funcs.C (put_selection_at): adjust
334
335 2003-11-05  João Luis M. Assirati  <assirati@fma.if.usp.br>
336
337         * lyxsocket.C: export variables XEDITOR and LYXSOCKET
338
339 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
340
341         * lyxfunc.C (dispatch): make LFUN_GOTO_PARAGRAPH work with deep
342         nestings
343
344 2003-11-04  André Pönitz  <poenitz@gmx.net>
345
346         * cursor.[Ch]: restructure
347
348         * BufferView.[Ch]:
349         * BufferView_pimpl.[Ch]: new LCursor cursor_ member
350
351         * iterators.[Ch] (asCursor): remove
352
353         * lfuns.h: remove LFUN_INSET_EDIT
354
355         * lyxfunc.C:
356         * tabular.C:
357         * text.C:
358         * text2.C:
359         * text3.C: use Inset::edit() instead of dispatch(LFUN_INSET_EDIT)
360
361 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
362
363         * lyxfind.[Ch]: complete overhaul
364         * BufferView_pimpl.C:
365         * lyxfunc.C: adjust
366         * paragraph.[Ch] (insert): add
367
368 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
369
370         * BufferView.[Ch]:
371         * lyxtext.h:
372         * text.C: remove dead spellcheck code
373
374 2003-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
375
376         * dispatchresult.h: add a val setter
377
378         * cursor.C (dispatch): use a tempvar for data_[i]
379
380 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
381
382         * PosIterator.[Ch]: compile fix
383
384 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
385
386         * text.C (cursorPar): deactivate the cursor cache
387
388 2003-11-03  Alfredo Braunstein  <abraunst@libero.it>
389
390         * undo.C (performUndoOrRedo): fix cursor positioning with lockPath
391
392 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
393
394         * text3.C (dispatch): adjust for new DisptchResult semantics.
395
396         * lyxfunc.C (dispatch): handle update when return from
397         Cursor::dispatch, adjust for new DispatchResult semantics.
398
399         * dispatchresult.h: drop NOUPDATE from dispatch_result_t. Make
400         DispatchResult(true) mean to not update. Add class functions for
401         setting dispatched and update, as well as reading.
402
403         * cursor.C (dispatch): don't handle update here
404
405 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
406
407         * trans_mgr.h: store t1_ and t2_ in scoped_ptr
408         * trans_mgr.C: adjust
409
410         * paragraph_funcs.C (readParToken): exception safety
411
412         * lyxvc.h: store the vcs pointer in a scoped_ptr
413         * lyxvc.C: adjust
414
415         * lyxsocket.C (serverCallback): exception safety
416
417         * lyx_cb.C (AutoSaveBuffer): make it return a auto_ptr
418
419         * ispell.C (clone): make it return a auto_ptr
420
421         * factory.C (createInset): exception safety
422         (readInset): exception safety
423
424         * bufferlist.C (newBuffer): exception safety
425
426         * Thesaurus.C (Thesaurus): use initialization for aik_
427
428         * MenuBackend.C (expandToc): exception safety.
429
430 2003-11-03  André Pönitz  <poenitz@gmx.net>
431
432         * buffer.C:
433         * buffer.h:
434         * bufferview_funcs.C: remove getInsetFromId()
435
436         * lyxcursor.[Ch]:
437         * BufferView.[Ch]: move x_fix from LyXCursor to BufferView
438
439         * lyxfunc.C:
440         * text2.C:
441         * text3.C: adjust
442
443 2003-11-03  Alfredo Braunstein  <abraunst@libero.it>
444
445         * PosIterator.C (distance, advance): new
446         * bufferview_funcs.[Ch] (put_selection_at): new
447         * iterators.[Ch] (lockPath): new
448
449 2003-11-02  Alfredo Braunstein  <abraunst@libero.it>
450
451         * iterators.[Ch] (asPosIterator): added
452         * buffer.[Ch] (pos_iterator_begin, pos_iterator_end): added
453         * PosIterator.[Ch]: added
454
455 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
456
457         * text3.C:
458         * lyxfunc.C:
459         * cursor.C (dispatch):
460         * BufferView_pimpl.C (dispatch): adjust for DispatchResult changes
461
462         * dispatchresult.h: remove UNDISPATCHED, DISPATCHED and
463         DISPATCHED_NOUPDATE from dispatch_result_t, add NONE. Add a
464         contructor, add a class function dispatched. Remove operator>=
465
466 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
467
468         * debug.C: only use the default constructor for debugstream
469         (lyxerr) here.
470
471         * main.C (main): include debug.h and setup the lyxerr streambuf
472         here.
473
474 2003-10-31  José Matos  <jamatos@lyx.org>
475
476         * paragraph_funcs.C (addDepth, asciiParagraph): move from buffer.C
477
478         * buffer.[Ch] (writeFileAscii, makeLinuxDocFile, makeDocBookFile):
479         * paragraph.[Ch] (simpleLinuxDocOnePar, simpleDocBookOnePar, asString):
480         * paragraph_funcs.[Ch] (linuxdocParagraphs, docbookParagraphs):
481         * paragraph_pimpl.C (simpleTeXSpecialC):
482         * tabular.[Ch] (linuxdoc, docbookRow, docbook, ascii):
483         add LatexRunParams argument.
484
485         * exporter.C (Export): change call accordingly.
486
487         * latexrunparams.h: add new member to take care of the other backends.
488 2003-10-30  José Matos  <jamatos@lyx.org>
489
490         * buffer.C (makeLinuxDocFile, makeDocBookFile):
491         * paragraph_funcs.[Ch] (linuxdocParagraphs, docbookParagraphs):
492         factorise code for paragraph output.
493         * buffer.[Ch]:
494         * paragraph.[Ch] (simpleLinuxDocOnePar, simpleDocBookOnePar):
495         move functions.
496
497 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
498
499         * text3.C (dispatch):
500         * lyxfunc.C (dispatch):
501         * cursor.C (dispatch):
502         * BufferView_pimpl.C (dispatch): explict DispatchResult ctor fallout.
503
504         * dispatchresult.h: make the dispatch_result_t ctor explicit
505
506 2003-10-29  Martin Vermeer  <martin.vermeer@hut.fi>
507
508         * sgml.[Ch]:
509         * buffer.C: small refactoring of docbook stuff
510
511 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
512
513         * dispatchresult.h: remove FINISHED_POP as FINISHED has the same
514         meaning.
515
516 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
517
518         * dispatchresult.h: rename DISPATCHED_POP to FINISHED_POP, remove
519         operator dispatch_result_t, and operators for == != and >=
520
521         * cursor.C (dispatch): adjust for operator dispatch_result_t
522         removal. comment out call to update
523
524         * BufferView_pimpl.C (dispatch): dont implicit covert to bool
525
526 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
527
528         * text3.C:
529         * text2.C:
530         * text.C:
531         * lyxtext.h:
532         * lyxfunc.C:
533         * cursor.C:
534         * BufferView_pimpl.C: dispatch_result -> DispatchResult changes.
535         (dispatch):
536
537         * dispatchresult.h: new file, DispatchResult broken out of
538         insets/insetbase.h
539
540         * Makefile.am (lyx_SOURCES): add dispatchresult.h
541
542 2003-10-28  Alfredo Braunstein  <abraunst@libero.it>
543
544         * text.C (rowBreakPoint): put a hack inside #if 0
545
546 2003-10-28  André Pönitz  <poenitz@gmx.net>
547
548         * lyxtext.h:
549         * metricsinfo.C:
550         * paragraph_funcs.C:
551         * rowpainter.C:
552         * text.C:
553         * text2.C: general cleanup (lots of small stuff)
554
555 2003-10-28  Alfredo Braunstein  <abraunst@libero.it>
556
557         * text2.C (cursorEnd): simple fix to the "end key goes to one
558         before the end on last row" bug
559
560 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
561
562         * text.C (backspace): fix the "zombie characters"
563
564 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
565
566         * lyxfunc.C (dispatch): small fix to toc navigation inside branches
567
568 2003-10-27  André Pönitz  <poenitz@gmx.net>
569
570         * lfuns.h: new LFUN_REPEAT, LFUN_INSERT_LINE, LFUN_INSERT_PAGEBREAK
571
572         * factory.C: handle new InsetPagebreak, InsetLine
573
574         * ParagraphParameters.h: remove [line|pagebreak]_[above|below]
575         and move handling into new InsetPagebreak, InsetLine
576
577         * BufferView_pimpl.C:
578         * LyXAction.C:
579         * ParagraphParameters.C:
580         * ParameterStruct.h:
581         * lyxfunc.C:
582         * lyxtext.h:
583         * paragraph.C:
584         * paragraph.h:
585         * paragraph_funcs.C:
586         * paragraph_pimpl.C:
587         * rowpainter.C:
588         * text.C:
589         * text2.C:
590         * text3.C: adjust
591
592 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
593
594         * text.C:
595         * lyxrow_funcs.[Ch]:
596         * Bidi.C:
597         * paragraph.C:
598         * lyxtext.h:
599         * rowpainter.C:
600         * text2.C:
601         * text3.C: remove lastPos uses in favour of Row::endpos
602
603 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
604
605         * undo.C (performUndoOrRedo): fix two crashes by setting a
606         cursor by hand and reordering some calls. Use bv->lockInset instead
607         of inset->edit because the latter loses cursor information
608
609 2003-10-25  Alfredo Braunstein  <abraunst@libero.it>
610
611         * text.C (prepareToPrint): fix linebreak rowbreaking as suggested
612         by Martin
613         (rowBreakPoint): fix width. change point to point + 1.
614         Add a missing check.
615
616 2003-10-25  Martin Vermeer  <martin.vermeer@hut.fi>
617
618         * MenuBackend.C:
619         * lyxfunc.C: fix (at least partly) the problems
620         with the Nav menu and headers inside branch insets
621         reported by Kayvan
622
623 2003-10-24  Alfredo Braunstein  <abraunst@libero.it>
624
625         * paragraph.C (getChar): add strong asserts
626
627         * lyxrow_funcs.C (lastPos): remove hideous hack
628
629         * text.C (addressBreakPoint, rowBreakPoint): put endpos in place
630         (fill): adjust to that (avoid an infinite loop)
631
632 2003-10-23  Alfredo Braunstein  <abraunst@libero.it>
633
634         * text3.C (cursorPrevious, cursorNext): fix 2 "dontlikes"
635
636 2003-10-23  André Pönitz  <poenitz@gmx.net>
637
638         * RowList_fwd.h: change list<> to vector<> to gain speed
639         after suggestion from Alfredo
640
641 2003-10-23  Alfredo Braunstein  <abraunst@libero.it>
642
643         * lyxtext.h: move the bidi stuff from here...
644         * text.C: and here
645         * text2.C: and here
646         * Bidi.[Ch]: ... to here
647
648 2003-10-23  André Pönitz  <poenitz@gmx.net>
649
650         * lyxtext.h:
651         * text.C (isLastRow, isFirstRow): new functions
652
653         * paragraph.h: new width cache member
654
655         * rowpainter.C: replace RowList::iterator with Row & where possible
656
657         * lyxfunc.C: replace several view()->text with a single call
658
659         * toc.C: fix 'unused' warning
660
661 2003-10-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
662
663         * lyxlex_pimpl.C (setFile,setStream): be sure to use correct types
664         when woring with stream::pos_type
665         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto
666
667 2003-10-22  André Pönitz  <poenitz@gmx.net>
668
669         * lyxtext.h:
670         * text.C: use Row & instead of RowList::iterator
671
672         * lyxrow.h: rename end() to endpos()
673
674         * rowpainter.C:
675         * text.C:
676         * text2.C: adjust
677
678 2003-10-22  Angus Leeming  <leeming@lyx.org>
679
680         * buffer.[Ch] (fully_loaded): new member function, returning true
681         only when the file has been loaded fully.
682         Used to prevent the premature generation of previews and by the
683         citation inset to prevent computation of the natbib-style label.
684
685         * buffer_funcs.C (newFile): set Buffer::fully_loaded once the
686         templates are all set up.
687
688         * factory.C (createInset): remove call to InsetCitation::setLoadingBuffer.
689
690 2003-10-22  Martin Vermeer  <martin.vermeer@hut.fi>
691
692         * text.C: fixed an "oops" in the "is a bit silly"
693         bug fix
694
695 2003-10-21  André Pönitz  <poenitz@gmx.net>
696
697         * FuncStatus.[Ch]: small stuff, whitespace
698
699         * lyxfont.[Ch]: operator<<() for debug reasons
700
701         * lyxfunc.C:
702         * lyxrow_funcs.C:
703         * lyxtext.h: whitespace, spelling
704
705         * paragraph.C: naming of variables
706
707         * text.C:
708         * text2.C: small stuff
709
710
711 2003-10-21  Martin Vermeer  <martin.vermeer@hut.fi>
712
713         * text.C: (1) finish off the inset display() work;
714         (2) fix the "is a bit silly" bug (accessing char
715         past end of par).
716
717 2003-10-20  Martin Vermeer  <martin.vermeer@hut.fi>
718
719         * text.C: re-introduce display() for insets, fixing the
720         various bugs (stretch of line above, math inset
721         positioning, ...)
722
723 2003-10-20  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
724
725         * text.C (rightMargin): remove spurious semicolon
726
727         * lengthcommon.C: add empty unit_name* entries for UNIT_NONE (bug
728         1415)
729
730 2003-10-18  Martin Vermeer  <martin.vermeer@hut.fi>
731
732         * text3.C: fix one crash due to wrong cursor def
733
734 2003-10-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
735
736         * vc-backend.C (scanMaster): make the regex static
737
738         * LaTeX.C (scanAuxFile): make the regexs static
739
740         * text3.C (doInsertInset, dispatch, dispatch):
741         * text2.C (cursorUp, cursorDown):
742         * text.C (selectNextWordToSpellcheck):
743         * BufferView_pimpl.C (dispatch):
744         * lyxfunc.C (dispatch):  localDispatch -> dispatch
745
746 2003-10-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
747
748         * lyxsocket.C: include <cerrno>
749
750 2003-10-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
751
752         * lyxfunc.C (dispatch): remove textcache stuff
753
754         * bufferlist.C (release): remove textcache stuff
755         (closeAll): ditto
756
757         * TextCache.C: delete file
758         * TextCache.h: delete file
759
760         * Makefile.am (lyx_SOURCES): delete TextCache.C and TextCache.h
761
762         * BufferView_pimpl.C (buffer): remove textcache stuff, add a
763         delete of the bv_->text.
764         (resizeCurrentBuffer): remove texcache stuff
765         (workAreaResize): ditto
766
767 2003-10-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
768
769         * lyxfunc.C (getStatus): also set flag disabled if it is a unknown
770         action.
771
772 2003-10-16  André Pönitz  <poenitz@gmx.net>
773
774         * lyxrow.[Ch]:
775         * paragraph.h:
776         * rowpainter.C:
777         * text.C:
778         * text2.C:
779         * text3.C: speed up by storing y positions per paragraph plus per-row
780         offset instead of having a 'full' y position in the row.
781
782 2003-10-15  André Pönitz  <poenitz@gmx.net>
783
784         * iterators.[Ch]:
785         * iterators.[Ch]:
786         * undo.[Ch]: make undo aware of inner insets
787
788 2003-10-14  Angus Leeming  <leeming@lyx.org>
789
790         * lyx_main.[Ch]: make LyX a singleton class, accessible though the new
791         static member functions LyX::ref() and LyX::cref.
792         (lastfiles): new accessor functions for the new lastfiles_ member var.
793         (addLyXView, views_): add a new LyXView to the list of views_.
794         (updateInset): loop over all LyXViews to call their own updateInset
795         member function, returning a pointer to the Buffer owning the inset.
796
797         * BufferView_pimpl.C (loadLyXFile):
798         * MenuBackend.C (expandLastfiles):
799         * bufferlist.C (MenuWrite, QuitLyX):
800         lastfiles is no longer a global variable.
801         Access through LyX::ref().lastfiles(), LyX::cref().lastfiles().
802
803         * boost.C (emergencyCleanup): LyX::emergencyCleanup is no longer a
804         static function. Access through LyX::cref().emergencyCleanup().
805
806 2003-10-14  André Pönitz  <poenitz@gmx.net>
807
808         * iterators.[Ch]: new direct access to innermost LyXText and Inset
809
810         * undo.[Ch]: restoring part of 'undo in insets'
811
812         * Makefile.am:
813         * undo_funcs.[Ch]: merge with undo.[Ch]
814
815         * tabular.C: small cleansing stuff
816
817 2003-10-14  Alfredo Braunstein  <abraunst@libero.it>
818
819         * paragraph_funcs.C (readParToken): report unknown insets as error
820         boxes. Use the outer paragraph as location (also for unknown
821         tokens).
822
823         * factory.C (readInset): do not abort on reading an unknown inset.
824         Eat it and return 0.
825
826 2003-10-13  Angus Leeming  <leeming@lyx.org>
827
828         * lyx_main.C (LyX): remove call to setDisplayTranslator().
829
830         * lyxrc.C: displayTranslator is now a function,
831         declared in GraphicsTypes.h.
832
833 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
834
835         * format.C: new placeholder $$a to pass the socket address.
836
837         * bufferlist.[Ch]: new function getBufferFromTmp.
838
839         * lyxfunc.C: Modification of LFUN_GOTOFILEROW so that it can handle
840           files in the temporary dir.
841
842 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
843
844         * lyxsocket.[Ch]: new files. A simple local socket interface for lyx.
845
846         * Makefile.am: add lyxsocket.[Ch].
847
848         * lyx_main.C (error_handler): handle SIGPIPE.
849
850 2003-10-13  André Pönitz  <poenitz@gmx.net>
851
852         * BufferView_pimpl.C:
853         * lyxtext.h:
854         * text.C:
855         * text2.C:
856         * text3.C:
857         * undo_funcs.[Ch]: use paroffset_type instead of
858           ParagraphList::iterators to prevent multiple conversion
859           (and get a more robust interface)
860
861 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
862
863         * lyxfunc.C (dispatch): RESULT -> dispatch_result
864         * lyxtext.h: ditto
865         * text3.C (dispatch): ditto
866
867 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
868
869         * LaTeX.C (handleFoundFile): move the static to smaller scope,
870         move the onlyfile, use onlyfile instead of foundfile in a couple
871         of places.
872
873         * DepTable.C (update): flush the error stream a bit more
874
875 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
876
877         * lyxserver.C (callback): adjust
878
879         * lyxfunc.C (getStatus): add a missing brace in commented code
880         (ensureBufferClean): reindent
881         (dispatch): delete version taking a string
882
883 2003-10-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
884
885         * LaTeX.C (deplog): move found file handlig from here...
886         (handleFoundFile): .. to new function here.
887         (deplog): make sure to discover several files mentioned on the
888         same log line.
889
890 2003-10-10  André Pönitz  <poenitz@gmx.net>
891
892         * lyxfunc.C:
893         * lyxtext.h:
894         * tabular.C:
895         * text.C:
896         * text2.C:
897         * text3.C: fix some of the tabular crashes
898
899 2003-10-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
900
901         * MenuBackend.C (binding): put debug message into Debug::KBMAP
902
903         * lyxlex_pimpl.C (setFile): put debug messages into Debug::LYXLEX.
904
905 2003-10-09  André Pönitz  <poenitz@gmx.net>
906
907         * lyxcursor.h: use paroffset_type instead of ParagraphList::iterator
908
909         * BufferView.C:
910         * BufferView_pimpl.C:
911         * bufferview_funcs.C:
912         * lyx_cb.C:
913         * lyxcursor.C:
914         * lyxfind.C:
915         * lyxfunc.C:
916         * lyxtext.h:
917         * text.C:
918         * text2.C:
919         * text3.C:
920         * text_funcs.[Ch]:
921         * textcursor.[Ch]:
922         * undo_funcs.C: adjust
923
924 2003-10-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
925
926         * text2.C (incrementItemDepth): new function, use a backtracking
927         algorithm to discover the correct item depth.
928         (resetEnumCounterIfNeeded): new function, use a backtracking
929         algorithm to discover if counter reset is needed.
930         (setCounter): use them. Simplify a bit. Add different labels for
931         different item depths for itemize.
932
933         * paragraph.C (Paragraph): remove initialization of enumdepth
934         (operator=): ditto
935
936         * paragraph.h: get rid of enumdepth, and use itemdepth both for
937         enumerate and itemize. Change the type of itemdepth to signed char.
938
939 2003-10-08  André Pönitz  <poenitz@gmx.net>
940
941         * lyxtext.h: make the paragraphs_ a pointer instead a ref to make the
942           thing assignable.
943         * text.C:
944         * text2.C: adjust
945
946         * tabular.[Ch]: fix crash after 'row-insert'
947
948 2003-10-08  Angus Leeming  <leeming@lyx.org>
949
950         Fix doxygen warnings.
951
952         * CutAndPaste.[Ch] (availableSelections). Now returns a const vector.
953         Remove CutAndPaste:: prefix from header file declaration.
954
955         * LColor.h (fill): remove LColor:: prefix from declaration.
956
957         * buffer.C (readParagraph, simpleLinuxDocOnePar, simpleDocBookOnePar):
958         use lyx::depth_type rather than Paragraph::depth_type so that
959         header file and .C file match.
960
961         * converter.h (intToFormat): remove Converters:: prefix from declaration.
962
963         * Spacing.h: \file Spacing.h -> \file src/Spacing.h
964         * aspell.C: \file aspell_local.C -> \file aspell.C
965         * gettext.C: \file gettext.C -> \file src/gettext.C
966         * gettext.h: \file gettext.h -> \file src/gettext.h
967         * lyxfont.C: \file lyxfont.C -> \file src/lyxfont.C
968         * lyxfont.h: \file lyxfont.h -> \file src/lyxfont.h
969         * text.C: \file text.C -> \file src/text.C
970
971         * toc.C: move comment so that doxygen is not confused.
972
973 2003-10-07  Angus Leeming  <leeming@lyx.org>
974
975         * factory.C (createInset): InsetExternal::Params -> InsetExternalParams
976
977 2003-10-07  Jürgen Spitzmüller <j.spitzmueller@gmx.de>
978
979         * aspell.C:
980         * aspell_local.h: add forgotten std::string's.
981
982 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
983
984         * LaTeXFeatures.C:
985         * LyXAction.C:
986         * factory.C:
987         * lfuns.h:
988         * lyxfunc.C:
989         * text3.C: The Box patch. Fancybox support, minipage, parbox
990
991 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
992
993         * CutAndPaste.h:
994         * DepTable.h:
995         * FloatList.h:
996         * LaTeXFeatures.h:
997         * ParagraphParameters.h:
998         * TextCache.h:
999         * Thesaurus.h:
1000         * bufferlist.h:
1001         * exporter.h:
1002         * importer.h:
1003         * lastfiles.h:
1004         * lyxfind.h:
1005         * lyxfont.h:
1006         * lyxlex.h:
1007         * lyxtextclasslist.h:
1008         * messages.h:
1009         * paragraph.h:
1010         * paragraph_pimpl.C:
1011         * textcursor.h: add <string> and other small fixes to make Lars'
1012         std::string patch compile with STLport.
1013
1014 2003-10-06  Angus Leeming  <leeming@lyx.org>
1015
1016         * LColor.h: Add missing #include <string>.
1017
1018 2003-10-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
1019
1020         * All most all file in all subdirs: Make <string> be the prefered
1021         way of getting to std::string, add using declarations.
1022
1023 2003-10-06  André Pönitz  <poenitz@gmx.net>
1024
1025         * metricsinfo.C: initialize LyXFont before changing attribute.
1026         (fixes the 'math in \emph is upright' bug)
1027
1028 2003-10-06  André Pönitz  <poenitz@gmx.net>
1029
1030         * tabular.[Ch]: saner reinitialization, ret rid of LyXTabular::owner_
1031
1032 2003-10-06  Martin Vermeer  <martin.vermeer@hut.fi>
1033
1034         * graph.C:
1035         * paragraph_pimpl.C: Small fixes to build using STLport
1036
1037 2003-10-02  André Pönitz  <poenitz@gmx.net>
1038
1039         * lyxfunc.C:
1040         * text3.C: move handling of LFUN_DEPTH *; fix #1360
1041
1042 2003-10-01  André Pönitz  <poenitz@gmx.net>
1043
1044         * factory.C: assert early
1045
1046 2003-09-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
1047
1048         * lyx_main.C: remove the global debug object
1049
1050         * debug.h: adjust for new debugstream
1051
1052         * debug.C: adjust for new debugstream and keep the global debug
1053         object here.
1054
1055 2003-09-22  Angus Leeming  <leeming@lyx.org>
1056
1057         * paragraph_pimpl.h: add #include "lyxfont.h". Needed by earlier versions
1058         of g++ which otherwise complain that the scoped_ptr destructor can't delete
1059         an incomplete class LyXFont.
1060
1061 2003-09-22  Martin Vermeer  <martin.vermeer@hut.fi>
1062
1063         * factory.C: bug fix in branches
1064
1065 2003-09-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
1066
1067         * lyxfunc.C (processKeySym): adjust
1068         (dispatch): adjust
1069         (dispatch): change arg name from ev to func, adjust
1070         (sendDispatchMessage): ditto
1071
1072         * lyx_main.C (defaultKeyBindings): adjust keybindings
1073         (deadKeyBindings): ditto
1074
1075         * kbsequence.C (addkey): return a FuncRequest
1076
1077         * kbmap.h (kb_key): struct var FuncRequest instead of int action.
1078
1079         * kbmap.C (bind): take a FuncRequest as arg, adjust
1080         (read): adjust
1081         (lookup): adjust
1082         (defkey): change to take a FuncRequest as arg, adjust
1083         (findbinding): take a FuncRequest as arg, adjust.
1084
1085         * funcrequest.h (operator=): added
1086
1087         * funcrequest.C (FuncRequest): default kb_action changed from
1088         LFUN_UNKNOWN_ACTION to LFUN_NO_ACTION
1089
1090         * buffer.C (dispatch): simplify
1091         (dispatch): adjust to take a FuncRequest as arg, adjust
1092
1093         * boost.C (assertion_failed): change assertion message slightly
1094
1095         * ToolbarBackend.C (read): simplify
1096
1097         * MenuBackend.C (binding): adjust call to findbinding, add a
1098         message if no binding is found.
1099         (read): simplify
1100         (expandToc): correct by adding a empty FuncRequest
1101
1102         * LyXAction.C: include <boost/assert.hpp>
1103         (isPseudoAction): delete function
1104         (LookupFunc): change name to...
1105         (lookupFunc): this. change return type to FuncRequest.
1106         (getActionName): take kb_action as arg, simplify
1107         (funcHasFlag): add an assert, simplify.
1108
1109 2003-09-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
1110
1111         * toc.C (action): return a FuncRequest, simplify
1112
1113         * lyxfunc.C (processKeySym): adjust
1114         (getStatus): delete version that takes an int.
1115         (getStatus): adjust
1116         (dispatch): delete version that takes action as int
1117         (dispatch): adjust
1118         (sendDispatchMessage): simplify and adjust
1119
1120         * funcrequest.C (getArg): take unsigned int as arg
1121
1122         * ToolbarBackend.C (read): adjust
1123         (add): delete version that takes func as a string.
1124         (getIton): take a FuncRequest as arg
1125
1126         * MenuBackend.h (MenuItem): store a FuncRequest instead of an int
1127         action.
1128
1129         * MenuBackend.C (MenuItem): add a new construct that only takes a
1130         Kind, simplify the constructor use for submenus.
1131         (add): adjust
1132         (expandLastfiles): adjust
1133         (expandDocuments): adjust
1134         (expandFormats): adjust
1135         (expandFloatListInsert): adjust
1136         (expandFloatInsert): adjust
1137         (expandToc2,expandToc,expandPasteRecent,expandBranches): adjust
1138
1139         * LyXAction.h: remove typdefs pseudo_map, arg_item and arg_map.
1140         Remove class variables lyx_pseudo_map and lyx_arg_map
1141
1142         * LyXAction.C (searchActionArg): delete function
1143         (getPseudoAction): delete function
1144         (retrieveActionArg): delete function
1145         (LookupFunc): make it return kb_action, simplify.
1146         (getActionName): simplify
1147
1148         * factory.C (createInset): fix new bug
1149
1150 2003-09-19  Angus Leeming  <leeming@lyx.org>
1151
1152         * CutAndPaste.C (pasteSelection): remove fudge used to set the
1153         masterFilename_ parameter in the include inset.
1154
1155         * factory.C (createInset): changes due to the changes to InsetInclude.
1156
1157 2003-09-19  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1158
1159         * paragraph.C: use appropriate alignment tags inside floats (bug 1290)
1160
1161 2003-09-18  Angus Leeming  <leeming@lyx.org>
1162
1163         * buffer.C:
1164         * BufferView.C: pass the buffer when calling Inset::getLabelList,
1165         Inset::fillWithBibKeys.
1166         * tabular.[Ch] (getLabelList): receive, pass on a Buffer const & arg.
1167
1168 2003-09-18  Angus Leeming  <leeming@lyx.org>
1169
1170         * LaTeXFeatures.[Ch]: append a '_' to the names of all private member
1171         variables.
1172         (ctor): pass and store a 'Buffer const &'
1173         (buffer): new member function.
1174
1175         * buffer.C (makeDocBookFile, makeLinuxDocFile, makeLaTeXFile): pass
1176         '*this' to the LaTeXFeatures ctor.
1177
1178 2003-09-18  Angus Leeming  <leeming@lyx.org>
1179
1180         * LColor.h:
1181         * lyxfont.C:
1182         * lyxfont.h:
1183         * lyxtext.h:
1184         * text.C: rename EnumLColor as LColor_color.
1185
1186 2003-09-18  Angus Leeming  <leeming@lyx.org>
1187
1188         * cursor.[Ch]: use the dispatch_result wrapper class DispatchResult to
1189         remove #include "insets/insetbase.h" from cursor.h.
1190
1191 2003-09-18  Angus Leeming  <leeming@lyx.org>
1192
1193         * paragraph.[Ch] (insetAllowed): use the InsetOld::Code wrapper class
1194         InsetOld_code to remove #include "inset.h".
1195
1196         * iterators.C: add #include "insets/inset.h"
1197
1198 2003-09-16  Martin Vermeer  <martin.vermeer@hut.fi>
1199
1200         * BufferView.C: remove more locking stuff that apparently doesn't
1201         do anything sensible.
1202
1203 2003-09-16  André Pönitz  <poenitz@gmx.net>
1204
1205         * paragraph.[Ch]:
1206         * paragraph_pimpl.[Ch]: un-pimpl Paragraph::(Pimpl::)text for a >10%
1207           performance boost.
1208
1209 2003-09-16  Angus Leeming  <leeming@lyx.org>
1210
1211         * lyxfont.h (LyXFont_size): a wrapper class for LyXFont::FONT_SIZE.
1212
1213         * paragraph.[Ch] (highestFontInRange): use LyXFont_size as function
1214         arg/return type.
1215
1216         * paragraph.h: remove #include "lyxfont.h". Forward declare
1217         LyXFont_size.
1218
1219 2003-09-16  Angus Leeming  <leeming@lyx.org>
1220
1221         * paragraph.C (IsInsetChar): new function in namespace anon, moved out
1222         of support/textutils.h.
1223         (isWord): move the contents of support/textutils.h's IsWordChar here.
1224
1225         * buffer.C:
1226         * lyxfind.C:
1227         * rowpainter.C:
1228         * text.C:
1229         * text2.C: add #include "paragraph.h".
1230
1231         * rowpainter.C:
1232         * text.C: replace IsInsetChar(c) with a direct test of Paragraph::META_INSET.
1233
1234 2003-09-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
1235
1236         * main.C:
1237         * lyx_main.C:
1238         * lyx_cb.C:
1239         * buffer.C:
1240         * LaTeX.C: use namespace alias for lyx::support::os
1241
1242 2003-09-16  Angus Leeming  <leeming@lyx.org>
1243
1244         * bufferparams.C:
1245         * bufferview_funcs.C:
1246         * factory.C:
1247         * lyxfunc.C:
1248         * paragraph_pimpl.C:
1249         * rowpainter.C:
1250         * text.C: add #include "LColor.h".
1251
1252 2003-09-16  Angus Leeming  <leeming@lyx.org>
1253
1254         * lyxfont.[Ch]: (setFamily, setSeries, setShape, setSize, setEmph,
1255         setUnderbar, setNoun, setNumber, setColor, setLanguage): no longer
1256         return LyXFont &.
1257         Store the FontBits::color variable as an int rather than as an
1258         LColor::colorso that we can move LColor.h out of the lyxfont.h header
1259         file.
1260
1261         * rowpainter.C (paintAppendixStart, paintPageBreak, paintLengthMarker):
1262         LyXFont::setColor, decSize no longer return a LyXFont &, so cannot
1263         string calls together.
1264
1265         * lyxrc.C: add #include "LColor.h".
1266
1267 2003-09-15  Angus Leeming  <leeming@lyx.org>
1268
1269         * bufferparams.[Ch]: store the pimpl_ as a copied_ptr, rather than as
1270         a cow_ptr.
1271
1272 2003-09-15  Angus Leeming  <leeming@lyx.org>
1273
1274         * LColor.h: add an EnumLColor wrapper for LColor::color.
1275
1276         * lyxfont.[Ch] (color, setColor, realColor):
1277         * lyxtext.h, text.C (backgroundColor):
1278         pass EnumLColor args to/from the functions, rather than LColor::color
1279         ones.
1280
1281         * lyxfont.h:
1282         * lyxtext.h: forward declare EnumLColor.
1283
1284         * lyx_main.C: add #include "LColor.h".
1285
1286 2003-09-15  Angus Leeming  <leeming@lyx.org>
1287
1288         * .cvsignore: add lyx-gtk.
1289
1290 2003-09-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
1291
1292         * Chktex.C
1293         * LaTeX.C
1294         * LaTeXFeatures.C
1295         * ParagraphParameters.C
1296         * Spacing.C
1297         * buffer.C
1298         * bufferparams.C
1299         * bufferview_funcs.C
1300         * chset.C
1301         * counters.C
1302         * funcrequest.C
1303         * lyxfont.C
1304         * lyxgluelength.C
1305         * lyxlength.C
1306         * paragraph.C
1307         * paragraph_funcs.C
1308         * text3.C
1309         * vc-backend.C: remove usage of STRCONV
1310
1311 2003-09-15  Angus Leeming  <leeming@lyx.org>
1312
1313         * rowpainter.C (paintLengthMarker, paintPageBreak, paintAppendixStart):
1314         explicitly define the color passed to the painter.
1315
1316 2003-09-15  Angus Leeming  <leeming@lyx.org>
1317
1318         * bufferparams.C (BufferParams): reorder member initializers to avoid
1319         compiler warning.
1320
1321 2003-09-15  Alfredo Braunstein  <abraunst@libero.it>
1322
1323         * CutAndPaste.C (pasteSelection): remove an outdated #warning
1324         * text.C (updateRowPositions): remove an unusual nop
1325
1326 2003-09-12  André Pönitz  <poenitz@gmx.net>
1327
1328         * BufferView_pimpl.C:
1329         * Bullet.C:
1330         * layout.h:
1331         * lyxfunc.C:
1332         * lyxlayout.[Ch]:
1333         * lyxtextclass.C:
1334         * rowpainter.C:
1335         * text.C:
1336         * text2.C:
1337         * Counters.[Ch]: finish the 'automatic counters' job
1338
1339 2003-09-12  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1340
1341         * aspell.C: include <boost/assert.cpp> (compile fix)
1342
1343 2003-09-10  Rob Lahaye  <lahaye@snu.ac.kr>
1344
1345         * boost.C (assertion_failed): use lyx::support::abort instead of
1346         assert.
1347
1348 2003-09-10  Angus Leeming  <leeming@lyx.org>
1349
1350         * Makefile.am (lyx_SOURCES): replace ParagraphList.h and RowList.h
1351         with their _fwd progeny.
1352
1353 2003-09-09  Angus Leeming  <leeming@lyx.org>
1354
1355         134 files throughtout the source tree: replace 'using namespace abc;'
1356         directives with the appropriate 'using abc::xyz;' declarations.
1357
1358 2003-09-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
1359
1360         * boost.C (emergencyCleanup): moved here from LAssert.c
1361         (assertion_failed): new function, called by BOOST_ASSERT
1362
1363         * several files: change Assert to BOOST_ASSERT
1364
1365 2003-09-09  Angus Leeming  <leeming@lyx.org>
1366
1367         * buffer.[Ch]: Add an Impl class and move Buffer's member
1368         variables into it. As a result move several header files out of
1369         buffer.h.
1370
1371         Add header files to lots of .C files all over the tree as a result.
1372
1373 2003-09-09  Angus Leeming  <leeming@lyx.org>
1374
1375         * buffer.[Ch]: make Buffer's member variables private. Add
1376         accessor functions.
1377
1378         Lots of changes all over the tree as a result.
1379
1380 2003-09-08  Angus Leeming  <leeming@lyx.org>
1381
1382         * graph.C: #include <config.h>.
1383
1384 2003-09-08  Angus Leeming  <leeming@lyx.org>
1385
1386         * BranchList.C:
1387         * BufferView.C:
1388         * BufferView_pimpl.C:
1389         * CutAndPaste.C:
1390         * DepTable.C:
1391         * LaTeX.C:
1392         * LaTeXFeatures.C:
1393         * LyXAction.C:
1394         * MenuBackend.C:
1395         * TextCache.C:
1396         * aspell.C:
1397         * buffer.C:
1398         * bufferlist.C:
1399         * changes.C:
1400         * chset.C:
1401         * converter.C:
1402         * counters.C:
1403         * debug.C:
1404         * graph.C:
1405         * ispell.C:
1406         * lyx_cb.C:
1407         * lyxfind.C:
1408         * lyxfunc.C:
1409         * lyxlex_pimpl.C:
1410         * lyxrc.C:
1411         * lyxrow.C:
1412         * paragraph.C:
1413         * rowpainter.C:
1414         * texrow.C:
1415         * text.C:
1416         * text2.C:
1417         * toc.C: remove redundant using directives.
1418
1419 2003-09-07  Angus Leeming  <leeming@lyx.org>
1420
1421         * LaTeXFeatures.h: remove #include "support/types.h".
1422         * ToolbarBackend.h: remove #include <algorithm>.
1423         * changes.h: remove #include <ctime>.
1424         * debug.h: remove #include <iosfwd>.
1425         * graph.h: remove #include "support/std_string.h".
1426         * lyx_main.h: remove #include <csignal>.
1427         * lyxlex_pimpl.h: remove #include <fstream>.
1428         * sgml.h: remove #include <algorithm>, <utility>.
1429         * toc.h: remove #include "support/std_ostream.h".
1430         Add #include <iosfwd>.
1431
1432 2003-09-07  Angus Leeming  <leeming@lyx.org>
1433
1434         * vspace.[Ch] (length): returns a const & to a LyXGlueLength.
1435
1436         * converter.h: forward declare LatexRunParams.
1437         * encoding.h: remove #include "lyxrc.h".
1438         * lyxtext.h: remove #include "LColor.h".
1439         * lyxtextclass.h: remove #include "support/types.h".
1440         * trans.h: remove #include "tex-accent.h".
1441         * trans_mgr.h: remove #include "tex-accent.h".
1442         * insets/inset.h: remove #include "support/types.h", <vector>.
1443         * insets/insetcollapsable.h: remove #include "LColor.h".
1444         * insets/insetinclude.h: remove #include "dimension.h".
1445         * insets/insetlatexaccent.h: remove #include "dimension.h".
1446         * insets/insetoptarg.h:: remove #include "insettext.h".
1447         * insets/insettext.h: remove #include "dimension.h",
1448         <boost/shared_ptr.hpp>
1449
1450         * insets/renderers.h: add #include "dimension.h".
1451         * insets/updatableinset.h: add #include "support/types.h".
1452
1453         * many .C files: Associated changes.
1454
1455 2003-09-06  Angus Leeming  <leeming@lyx.org>
1456
1457         * Bullet.[Ch]: factorize all those #ifdef ENABLE_ASSERTIONS to just
1458         one, inside testInvariant.
1459
1460         * PrinterParams.C: new file.
1461         * PrinterParams.[Ch]: move the function bodies out of line.
1462
1463 2003-09-06  Angus Leeming  <leeming@lyx.org>
1464
1465         * ParagraphParameters.h: forward declare ParameterStruct rather than
1466         including its header file.
1467         (depth): moved out-of-line.
1468
1469 2003-09-06  Angus Leeming  <leeming@lyx.org>
1470
1471         * BufferView_pimpl.h:
1472         * kbmap.h:
1473         * kbsequence.h:
1474         * lyxfunc.h: forward declare LyXKeySym rather than
1475         #include "frontends/LyXKeySym.h".
1476
1477         * BufferView_pimpl.C:
1478         * kbmap.C:
1479         * kbsequence.C:
1480         * lyxfunc.C: associated changes.
1481
1482 2003-09-06  Angus Leeming  <leeming@lyx.org>
1483
1484         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
1485         As a result, can remove the #include "insets/inset.h" from BufferView.h
1486
1487 2003-09-06  Angus Leeming  <leeming@lyx.org>
1488
1489         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
1490         As a result, can remove the #include "insets/inset.h" from BufferView.h
1491
1492 2003-09-06  Angus Leeming  <leeming@lyx.org>
1493
1494         * buffer_funcs.C:
1495         * buffer.h:
1496         * bufferlist.C:
1497         * BufferView.C:
1498         * bufferview_funcs.C:
1499         * BufferView_pimpl.C:
1500         * CutAndPaste.C:
1501         * lyx_cb.C:
1502         * lyxfunc.C:
1503         * paragraph.h:
1504         * ParagraphParameters.C:
1505         * tabular.C:
1506         * text3.C:
1507         * toc.C:
1508         * undo_funcs.C:
1509         * frontends/controllers/ControlDocument.C:
1510         * insets/insetcaption.C: rearrange the #includes into some sort of
1511         coherent order.
1512
1513         * buffer.h: remove #includes ErrorList.h, undo.h
1514
1515 2003-09-06  Angus Leeming  <leeming@lyx.org>
1516
1517         * support/types.h: add a 'depth_type' typedef, used to store the
1518         nesting depth of a paragraph.
1519
1520         * paragraph.h:
1521         * ParameterStruct.h: use this lyx::depth_type typedef rather than
1522         defining explicitly.
1523
1524         * buffer.h:
1525         * paragraph_funcs.h:
1526         * ParagraphParameters.h:
1527         * sgml.h: use lyx::depth_type rather than Paragraph or
1528         ParameterStruct's depth_type.
1529
1530         * buffer.h
1531         * paragraph_funcs.h: no need to #include paragraph.h anymore.
1532
1533         * BufferView.C:
1534         * BufferView_pimpl.C:
1535         * CutAndPaste.C:
1536         * ParagraphParameters.C:
1537         * buffer_funcs.C:
1538         * bufferlist.C:
1539         * bufferview_funcs.C:
1540         * lyx_cb.C:
1541         * lyxfunc.C:
1542         * tabular.C:
1543         * text3.C:
1544         * toc.C:
1545         * undo_funcs.C:
1546         * frontends/LyXView.C:
1547         * frontends/controllers/ControlDocument.C:
1548         * frontends/controllers/ControlErrorList.C:
1549         * insets/insetbibitem.C:
1550         * insets/insetbranch.C:
1551         * insets/insetcaption.C:
1552         * insets/insetcollapsable.C:
1553         * insets/insetenv.C:
1554         * insets/insetert.C:
1555         * insets/insetfloat.C:
1556         * insets/insetfoot.C:
1557         * insets/insetfootlike.C:
1558         * insets/insetnewline.C:
1559         * insets/insetquotes.C:
1560         * insets/insettabular.C:
1561         * insets/insettext.C:
1562         * insets/insetwrap.C: must now explicitly #include "paragraph.h".
1563
1564         * frontends/controllers/ControlChanges.C: #include "changes.h".
1565
1566 2003-09-06  Angus Leeming  <leeming@lyx.org>
1567
1568         * ParagraphList_fwd.h: new file, forward-declaring Paragraph rather
1569         than #including paragraph.h.
1570
1571         * ParagraphList.h:
1572         * RowList.h: deleted. Superfluous.
1573
1574         * CutAndPaste.h:
1575         * iterators.h:
1576         * lyxcursor.h:
1577         * lyxtext.h:
1578         * text_funcs.h:
1579         * undo.h:
1580         * undo_funcs.h:
1581         * insets/inset.h:
1582         * insets/insettext.h: use ParagraphList_fwd.h rather than
1583         ParagraphList.h.
1584
1585         * paragraph.h: don't forward declare ParagraphList.
1586
1587         * buffer.h:
1588         * paragraph_funcs.h: #include ParagraphList_fwd.h and paragraph.h
1589         rather than ParagraphList.h. paragraph.h is still needed for the
1590         Paragraph::depth_type parameters.
1591
1592         * textcursor.h: enable it to compile stand-alone in light of the
1593         above changes.
1594
1595         * bufferview_funcs.C:
1596         * iterators.C:
1597         * lyxfunc.C:
1598         * lyxrow_funcs.C:
1599         * paragraph.C:
1600         * rowpainter.C:
1601         * text.C:
1602         * text2.C:
1603         * text3.C:
1604         * text_funcs.C:
1605         * textcursor.C:
1606         * undo.C:
1607         * frontends/controllers/ControlParagraph.C:
1608         * frontends/controllers/ControlTabular.C:
1609         * insets/insetmarginal.C:
1610         * insets/insetminipage.C:
1611         * insets/insetnote.C:
1612         * insets/insetoptarg.C: add header files needed to compile again.
1613
1614 2003-09-06  Angus Leeming  <leeming@lyx.org>
1615
1616         * RowList_fwd.h: new file, forward-declaring Row rather than
1617         #including lyxrow.h.
1618
1619         * lyxrow_funcs.h:
1620         * lyxtext.h:
1621         * paragraph.h:
1622         * insets/insettext.h: use it instead of RowList.h
1623
1624         * bufferview_funcs.C:
1625         * lyxfunc.C:
1626         * lyxrow_funcs.C:
1627         * paragraph.C:
1628         * rowpainter.C:
1629         * text.C:
1630         * text2.C:
1631         * text3.C: #include "RowList.h".
1632
1633 2003-09-05  Angus Leeming  <leeming@lyx.org>
1634
1635         * factory.C (createInset):
1636         * vspace.C (c-tor): replace sscanf call with an istringstream.
1637         * ispell.C: re-add missing HP/UX headers.
1638         * lyxserver.C: re-add missing  os2 headers.
1639
1640 2003-09-05  Martin Vermeer  <martin.vermeer@hut.fi>
1641
1642         * BranchList.C:
1643         * graph.C:
1644         * ispell.C:
1645         * lastfiles.C:
1646         * lyx_cb.C:
1647         * lyxserver.C:
1648         * texrow.C:
1649         * text3.C: re-add missing system headers, needed for 2.95.2.
1650
1651 2003-09-05  Angus Leeming  <leeming@lyx.org>
1652
1653         Changes most place everywhere due to the removal of using directives
1654         from support/std_sstream.h.
1655
1656 2003-09-05  Angus Leeming  <leeming@lyx.org>
1657
1658         Replace LString.h with support/std_string.h,
1659         Lsstream.h with support/std_sstream.h,
1660         support/LIstream.h with support/std_istream.h,
1661         support/LOstream.h with support/std_ostream.h.
1662
1663         Changes resulting throughout the tree.
1664
1665 2003-09-05  Angus Leeming  <leeming@lyx.org>
1666
1667         * sgml.h: ensure that the header file can be compiled stand-alone.
1668         * *.C: strip out redundant #includes. (320 in total.)
1669
1670 2003-09-04  Angus Leeming  <leeming@lyx.org>
1671
1672         * LaTeXFeatures.C (getMacros): move the output of the preamble_snippets
1673         here (from getPackages).
1674
1675         * debug.[Ch]: add a new EXTERNAL tag.
1676
1677 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1678
1679         * text2.C (cursorEnd): simplify
1680         (setCursor): adjust
1681         (getColumnNearX): adjust
1682
1683         * text.C (computeBidiTables): adjust
1684         (fill): adjust
1685
1686         * rowpainter.C (paintChars): adjust
1687         (paintSelection): adjust
1688         (paintChangeBar): adjust
1689         (paintText): adjust
1690
1691         * lyxrow_funcs.C (lastPrintablePos): remove, all users now call
1692         lastPos instead.
1693         (numberOfSeparators): adjust
1694
1695 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
1696
1697         * LyXAction.C:
1698         * box.[Ch]:
1699         * lfuns.h:
1700         * lyxfunc.C:
1701         * text3.C: Restricts the mouse click functionality
1702         of insets like bibtex, include, toc and floatlist to the visible
1703         button, and allows the use of LFUN_INSET_SHOW_DIALOG to bring
1704         up the dialogs. Cursor has to be in front of the inset (i.e.
1705         start of row) for this to function.
1706
1707 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1708
1709         * bufferview_funcs.C (currentState): output row information
1710
1711 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1712
1713         * bufferview_funcs.C (currentState): output paragraph position
1714
1715 2003-09-04  Angus Leeming  <leeming@lyx.org>
1716
1717         * FloatList.h: move out #include "Floating.h".
1718         * LaTeX.h: move out #include "DepTable.h".
1719         * LyXAction.h: move out #include "funcrequest.h".
1720         * buffer.h: move out #include "author.h", "iterators.h".
1721         * bufferparams.h: move out #include "LaTeXFeatures.h", "texrow.h".
1722         * lyx_main.h: move out #include "errorlist.h".
1723         * lyxfunc.h: move out #include "FuncStatus.h".
1724         * lyxtext: move out #include "lyxcursor.h".
1725         * paragraph_pimpl.h: move out #include "counters.h".
1726
1727 2003-09-03  Angus Leeming  <leeming@lyx.org>
1728
1729         * LaTeXFeatures.[Ch]: replace the externalPreambles string with a
1730         preamble_snippets list, enabling us to add snippets to the preamble
1731         only if the snippet was not there already.
1732
1733 2003-09-04  Angus Leeming  <leeming@lyx.org>
1734
1735         * Chktex.C, converter.C, lyx_cb.C: add #include "support/lyxlib.h".
1736
1737 2003-09-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
1738
1739         * lyxfunc.C (dispatch): if fitCursor did something be sure to
1740         update
1741
1742 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
1743
1744         * BranchList.C: point fix, earlier forgotten
1745
1746 2003-09-02  Angus Leeming  <leeming@lyx.org>
1747
1748         * box.C (contains): renamed from 'contained' after a fantastic
1749         amount of hot air.
1750
1751 2003-09-02  John Levon  <levon@movementarian.org>
1752
1753         * BufferView.C:
1754         * lyxcursor.h:
1755         * lyxcursor.C:
1756         * lyxfunc.C:
1757         * lyxfunc.h: remove cursor.i[x]y(), it no longer differs
1758
1759 2003-09-02  John Levon  <levon@movementarian.org>
1760
1761         * text2.C: simplification of cursorEnd(), including partial
1762         fix for bug 1376
1763
1764 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
1765
1766         * buffer.C (readFile): add a space
1767
1768 2003-09-02  Alfredo Braunstein  <abraunst@libero.it>
1769
1770         * BufferView_pimpl.C (update): remove bogus fitCursor() call
1771
1772 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
1773
1774         * buffer.C (readFile): new function, take a filename and a
1775         ParagraphList::iterator
1776         (readFile): adjust
1777         (readFile): adjust, make it private. don't use setStream, make
1778         lyx2lyx use a temporary file. Some simplificaton. Make the Alerts
1779         always contain the filename.
1780
1781         * BufferView.C (insertLyXFile): simplify and make it work for
1782         gzipped files.
1783
1784 2003-08-30  John Levon  <levon@movementarian.org>
1785
1786         * Makefile.am: fix dist (from Kayvan)
1787
1788 2003-08-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1789
1790         * most files: change to use const Buffer refs
1791
1792 2003-08-27  André Pönitz  <poenitz@gmx.net>
1793
1794         * BufferView.[Ch]: remove getParentText, implement getParentLanguage
1795         on top of ownerPar().
1796
1797 2003-08-27  John Levon  <levon@movementarian.org>
1798
1799         * funcrequest.C: properly initialise POD members
1800
1801 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
1802
1803         * lyxtext.h (top_y): move top_y from here
1804         * text.C:
1805         * text2.C:
1806         * text3.C:
1807         * BufferView.[Ch]:
1808         * BufferView_pimpl.[Ch]: to here
1809         * frontends/screen.C:
1810         * insets/insettabular.C:
1811         * insets/insettext.C: adjust
1812         * rowpainter.[Ch] (paintRows): remove LyXText & argument
1813
1814 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
1815
1816         * BufferView.[Ch]:
1817         * BufferView_pimpl.[Ch] (updateInset): add an InsetOld * argument
1818
1819 2003-08-26  André Pönitz  <poenitz@gmx.net>
1820
1821         * paragraph_func.[Ch] (outerPar): new function
1822
1823         * paragraph.C:
1824         * paragraph_funcs.C:
1825         * paragraph_funcs.h:
1826         * paragraph_pimpl.C:
1827         * text2.C: remove Inset::par_owner
1828
1829 2003-08-25  Martin Vermeer  <martin.vermeer@hut.fi>
1830
1831         * lyxrow_funcs.C:
1832         * lyxtext.h:
1833         * text.C:
1834         * text2.C: eliminates the needFullRow/display() stuff
1835         altogether, putting the logic in metrics/draw in the insets.
1836
1837 2003-08-25  Alfredo Braunstein  <abraunst@libero.it>
1838
1839         * text2.C (redoParagraphInternal, redoParagraphs):
1840         * text.C (redoParagraph): add a call to updateRowPositions at the
1841         end of each 'metrics-like' call. Remove all others.
1842         (getRow): remove the 'y-computing' version.
1843         (getRowNearY): do not compute nor return the real y. Solve the
1844         'y < 0' problem and simplify.
1845
1846 2003-08-22  Angus Leeming  <leeming@lyx.org>
1847
1848         * *.[Ch]: clean-up of licence and author blurbs.
1849         Also move config.h out of a few .h files and into a few .C files.
1850
1851 2003-08-22  André Pönitz  <poenitz@gmx.net>
1852
1853         * lyxrow.[Ch]: add x_ and *fill_ members
1854
1855         * lyxtext.h:
1856         * text.C:
1857         * rowpainter.C:
1858         * text2.C: adjust/remove prepareToPrint() calls
1859
1860 2003-08-22  André Pönitz  <poenitz@gmx.net>
1861
1862         * lyxrow.[Ch]: add  end_ member
1863
1864         * lyxrow_funcs.C: use LyXRow::end_
1865
1866         * lyxtext.h (singleWidth): add LyXFont parameter
1867
1868         * rowpainter.C:
1869         * text2.C: adjust LyXText::singleWidth() calls
1870
1871         * text.C (redoParagraph): simplify row breaking logic
1872
1873
1874 2003-08-19  André Pönitz  <poenitz@gmx.net>
1875
1876         * funcrequest.C: initialize button_ member
1877
1878         * text3.C:
1879         * rowpainter.[Ch]: interface consolidation
1880
1881 2003-08-18  André Pönitz  <poenitz@gmx.net>
1882
1883         * BufferView.C:
1884         * BufferView_pimpl.C:
1885         * lyxfind.C:
1886         * paragraph_funcs.C:
1887         * rowpainter.C:
1888         * text3.C: remove LyXScreen::draw() and fitCursor calls
1889
1890         * BranchList.h: remove spurious semicolons
1891
1892         * MenuBackend.C: fix branchlist related crash
1893
1894 2003-08-17  Martin Vermeer  <martin.vermeer@hut.fi>
1895
1896         * BranchList.[Ch]:
1897         * InsetList.[Ch]:
1898         * LColor.[Ch]:
1899         * LyXAction.C:
1900         * Makefile.am:
1901         * MenuBackend.[Ch]:
1902         * bufferparams.[Ch]:
1903         * factory.C:
1904         * lfuns.h:
1905         * lyxfunc.C:
1906         * text3.C: implements the 'branch inset'
1907         idea. This allows the output of various versions of a document
1908         from a single source version, selectively outputing or suppressing
1909         output of parts of the text.
1910         This implementation contains a 'branch list editor' in a separate
1911         tab of the document settings dialog. Branches are user definable
1912         and have a "display colour" to distinguish them on-screen.
1913
1914         ColorHandler was somewhat cleaned up.
1915         (1) make possible a dynamically growing LColor list by allowing
1916         the graphic context cache to grow along (vector);
1917         (2) eliminate an IMHO unnecessary step in colour allocation.
1918
1919 2003-08-15  Kayvan A. Sylvan <kayvan@sylvan.com>
1920
1921         * BufferView_pimpl.C: compile fix
1922
1923 2003-08-15  André Pönitz  <poenitz@gmx.net>
1924
1925         * rowpainter.C: remove extra metrics calls
1926
1927         * lyxtext.h: merge the two constructors into a single one,
1928           pass reference to owner's par list
1929
1930         * BufferView_pimpl.C:
1931         * text.C:
1932         * text2.C: adjust
1933
1934 2003-08-15  André Pönitz  <poenitz@gmx.net>
1935
1936         * lyxrow_funcs.[Ch]:
1937         * lyxtext.h:
1938         * paragraph.h:
1939         * paragraph_funcs.C:
1940         * rowpainter.C:
1941         * text.C:
1942         * text2.C:
1943         * text3.C:
1944         * text_funcs.C: split LyXText::rowlist_ into individual
1945         Paragraph::rows_ chunks
1946
1947         * BufferView.[Ch]:
1948         * BufferView_pimpl.[Ch]:
1949         * lyxfind.C:
1950         * lyxtext.h:
1951         * text3.C: remove toggleSelection()
1952
1953 2003-08-12  Michael Schmitt  <michael.schmitt@teststep.org>
1954
1955         * bufferlist.C: beautify two alerts (shorter text of buttons)
1956         * buffer.C: Remove redundant ' ' from message
1957         * tabular.h:
1958         * tabular.C: rename LYX_VALIGN_CENTER" to LYX_VALIGN_MIDDLE";
1959         rename M_VALIGN_CENTER to M_VALIGN_MIDDLE;
1960         rename VALIGN_CENTER to VALIGN_MIDDLE
1961
1962 2003-08-11  André Pönitz  <poenitz@gmx.net>
1963
1964         * lyxtext.h (getPar):
1965         * text.C: new function
1966
1967 2003-08-11  André Pönitz  <poenitz@gmx.net>
1968
1969         * Makefile.am:
1970         * tracer.[Ch]: remove unneeded files
1971
1972         * InsetList.[Ch]: remove resizeInsetsLyXText()
1973
1974         * lyxtext.h:
1975         * text.C:
1976         * text2.C:
1977         * text3.C: merge insertParagraphs() and appendParagraph()
1978         remove breakAgain(), update()
1979
1980         * BufferView_pimpl.[Ch]:
1981         * bufferview_funcs.[Ch]:
1982         * lyxfunc.C:
1983         * paragraph.[Ch]:
1984         * rowpainter.C:
1985         * tabular.C: adjust after text & InsetList changes.
1986
1987 2003-08-08  André Pönitz  <poenitz@gmx.net>
1988
1989         * text.C (insertChar, backspace): replace rowlist fiddling
1990         with rebreak of full par
1991
1992         * lyxtext.h:
1993         * text.C (breakAgainOneRow, redoHeightOfParagraph,
1994         checkParagraph, updateInset): removed
1995
1996 2003-08-07  André Pönitz  <poenitz@gmx.net>
1997
1998         * paragraph.C:
1999         * text3.C: merge some LFUN handlers, remove dead code
2000
2001 2003-08-06  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2002
2003         * .cvsignore: add lyx-xforms, lyx-qt, version.C-tmp and stamp-version
2004
2005 2003-08-05  Alfredo Braunstein  <abraunst@libero.it>
2006
2007         * text2.C (DEPM): fix part of bug 1255 and 1256
2008
2009 2003-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2010
2011         * BufferView_pimpl.C (workAreaDispatch): change to use
2012         LyXView::dispatch instead of BufferView::Pimpl::dispatch for lfuns
2013         that are no mouse related.
2014
2015 2003-08-05  André Pönitz  <poenitz@gmx.net>
2016
2017         * BufferView.[Ch]:
2018         * BufferView_pimpl.[Ch]:
2019         * bufferview_funcs.C:
2020         * text2.C:
2021         * text3.C: rip out "deep update"
2022
2023         * textcursor.[Ch] (last_sel_cursor): remove unused member
2024
2025 2003-08-04  André Pönitz  <poenitz@gmx.net>
2026
2027         * BufferView.[Ch]:
2028         * BufferView_pimpl.[Ch]:
2029         * ParagraphParameters.C:
2030         * bufferview_funcs.C:
2031         * lyx_cb.C:
2032         * lyxfind.C:
2033         * lyxfunc.C:
2034         * text.C:
2035         * text2.C:
2036         * text3.C: replace "complicated" BufferView::update(...) calls with
2037         simpler ones.
2038
2039         * BufferView.[Ch]: remove now unneeded BufferView::UpdateCodes
2040
2041 2003-08-02  Kayvan Sylvan  <kayvan@sylvan.com>
2042
2043         * Makefile.am (lyx_SOURCES): add paper.h
2044
2045 2003-08-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2046
2047         * Makefile.am: move things around so that both lyx-qt and
2048         lyx-xforms can be built (according to --with-frontend). Then lyx
2049         is a symbolic link to lyx-[firstfrontend]
2050
2051 2003-08-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
2052
2053         * Always use std::endl with lyxerr
2054
2055 2003-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
2056
2057         * BufferView_pimpl.C: _Always_ use std::endl with lyxerr
2058
2059 2003-08-01  André Pönitz  <poenitz@gmx.net>
2060
2061         * BufferView.[Ch]:
2062         * BufferView_pimpl.[Ch]:
2063         * lyxfunc.C:
2064         * text3.C: merge BufferView::repaint() and BufferView::update()
2065
2066 2003-08-01  José Matos  <jamatos@lyx.org>
2067
2068         * buffer.[Ch]: file_format is no longer a buffer data element.
2069
2070 2003-08-01  André Pönitz  <poenitz@gmx.net>
2071
2072         * BufferView.C:
2073         * lyxtext.h:
2074         * text.C:
2075         * text2.C: make redoParagraph more independent of current cursor
2076
2077         * lyxtext.h (need_update, needUpdate, postPaint, clearPaint):
2078         * text.C:
2079         * text2.C: remove unneeded members
2080
2081 2003-07-30  André Pönitz  <poenitz@gmx.net>
2082
2083         * paragraph.[Ch] (copyIntoMinibuffer): removed unused function
2084
2085         * paragraph.[Ch] (cutIntoMinibuffer, insertFromMinibuffer):
2086           create a single function...
2087
2088         * paragraph_funcs.C (moveItem): ... here.
2089
2090         * text.C:
2091           lyxtext.h (LyXText::workWidth(InsetOld*)) remove. unused.
2092
2093 2003-07-30  Martin Vermeer  <martin.vermeer@hut.fi>
2094
2095         * LColor.[Ch]: Add comment and greyedout logical colors.
2096
2097 2003-07-30  André Pönitz  <poenitz@gmx.net>
2098
2099         * tabular.C: don't use Assert too heavily. This crashes where it
2100           shouldn't
2101
2102 2003-07-30  Alfredo Braunstein  <abraunst@libero.it>
2103
2104         * lyxfunc.C (dispatch): do not mark the buffer dirty if the action
2105         is disabled (bug 1232)
2106
2107 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
2108
2109         * factory.C: limited 'arg' scope
2110
2111 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
2112
2113         * factory.C: fixed Note submenu issues
2114
2115 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
2116
2117         * factory.C: submenu for Note/Comment/Greyedout
2118
2119 2003-07-29  Alfredo Braunstein  <abraunst@libero.it>
2120
2121         * lyx_main.C (LyX):
2122         * BufferView_pimpl.C (loadLyXFile): fix to bugs 1287 and 1297 + ws
2123
2124 2003-07-29  Martin Vermeer  <martin.vermeer@hut.fi>
2125
2126         * LaTeXFeatures.C:
2127         * lyx_sty.[Ch]:h: Implement a newenvironment in preamble for
2128         greyedout. Patch provided by Jürgen Spitzmüller.
2129
2130 2003-07-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2131
2132         * kbmap.C (read): fix error message when reading bind files
2133
2134 2003-07-29  Angus Leeming  <leeming@lyx.org>
2135
2136         * BufferView.[Ch] (ChangeCitationsIfUnique): This function most
2137         certainly does not do what it purports to do. I am doing it, and
2138         us, a favour by killing it.
2139
2140 2003-07-28  José Matos  <jamatos@lyx.org>
2141
2142         * buffer.C (readBody, do_writeFile):
2143         * paragraph.C(readParagraph): \end_document replaces \the_end.
2144
2145 2003-07-29  André Pönitz  <poenitz@gmx.net>
2146
2147         * BufferView.[Ch]:
2148         * BufferView_pimpl.[Ch]:
2149         * lyxfunc.C:
2150         * text2.C:
2151         * text3.C:
2152         * textcursor.[Ch]: remove toggleToggle & Co
2153
2154 2003-07-28  José Matos  <jamatos@fep.up.pt>
2155
2156         * buffer.C (readParagraph):
2157         * params_func (readParToken, readParagraph):
2158         * paragraph.C (write): \layout -> \begin_layout.
2159
2160 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2161
2162         * lyxlex_pimpl.C (setFile): clean up slightly.
2163
2164         * bufferparams.h: add compressed var
2165
2166         * buffer_funcs.C (readFile): adjust for LyXLex change
2167         (newFile): ditto + simplify
2168
2169         * buffer.C (writeFile): handle writing of compressed files
2170
2171         * buffer.[Ch] (readFile): begin LyXLex here, remove one argument.
2172         Check if the file is compressed and set a bufferparm if so.
2173
2174         * Makefile.am (lyx_LDADD): remove explicit -lz
2175
2176 2003-07-28  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2177
2178         * buffer.C (do_writeFile, makeLaTeXFile, makeLinuxDocFile,
2179         makeDocBookFile): put the real LyX version in the first line of
2180         the file
2181
2182         * version.h:
2183         * version.C.in: remove lyx_docversion
2184
2185         * tabular.C (write_attribute): add a template-based version to
2186         write enums properly
2187
2188 2003-07-28  André Pönitz  <poenitz@gmx.net>
2189
2190         * lyxtext.h:
2191         * text.C:
2192         * text2.C:
2193         * text3.C: use doubles again for x-coordinates. They are needed.
2194
2195 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2196
2197         * messages.C (getLocaleDir): use lyx_localedir()
2198
2199         * lyxlex_pimpl.C (setFile): compress stuff
2200
2201         * buffer.C (writeFile): add some compression stuff
2202         (do_writeFile): new func, dont call expliti close... will this
2203         breake anything?
2204
2205         * Makefile.am (lyx_LDADD): add -lz
2206
2207 2003-07-28  José Matos  <jamatos@fep.up.pt>
2208
2209         * buffer.C: increment file format.
2210         * paragraph_funcs (readParagraph, readParToken):
2211         * paragraph.C (readParagraph): add \end_layout.
2212
2213 2003-07-27  Angus Leeming  <leeming@lyx.org>
2214
2215         * Makefile.am: remove special casing for configure-time setting of
2216         LYX_DIR, TOP_SRCDIR and LOCALEDIR.
2217
2218         * lyx_main.C (init): remove all Jean-Marc's magic setting of
2219         system_lyxdir, build_lyxdir and user_lyxdir into the support lib.
2220
2221 2003-07-26  André Pönitz  <poenitz@gmx.net>
2222
2223         * paragraph_func.[Ch]:
2224         * paragraph.C (realizeFont): inline it whereever it is used
2225
2226         * rowpainter.C:
2227         * text.C:
2228         * text2.C:
2229         * text3.C: remove Buffer * parameter from a bunch of get*Font functions
2230
2231
2232 2003-07-26  André Pönitz  <poenitz@gmx.net>
2233
2234         *       lyxtext.h:
2235         * text.C:
2236         * text2.C: get rid of LyXText::need_break_row
2237
2238 2003-07-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
2239
2240         * toc.[Ch]: put namespace toc inside namespace lyx
2241
2242         * MenuBackend.C (expandToc2): adjust for lyx::toc
2243         (expandToc): ditto
2244
2245         * lyxfunc.C (dispatch): adjust for lyx::find
2246
2247         * lyxfind.[hC]: get rid of namespace lyxfind introduce namespace
2248         lyx::find instead. Reorganize a bit.
2249         (LyXReplace): rename to replace
2250         (LyXFind): rename to find
2251
2252         * BufferView_pimpl.C (trackChanges): adjust for lyx::find
2253         (dispatch): ditto
2254
2255 2003-07-26  André Pönitz  <poenitz@gmx.net>
2256
2257         * text.C (setHeightOfRow): restrict scope of temporary variable
2258
2259         * paragraph_funcs.C (readParToken): remove USE_CAPTION  compatibility
2260           code (never has been used?)
2261
2262 2003-07-27  Asger Alstrup  <alstrup@local>
2263
2264         * text.C (fill): Optimise algorithm to exploit that we can reuse
2265         the LyXFont for many characters.
2266         (setHeightOfRow): Same thing.
2267         (rowBreakPoint): Same thing.
2268
2269 2003-07-26  Asger Alstrup  <alstrup@local>
2270
2271         * text2.C (metrics): change a brain-dead algorithm to a smarter one.
2272
2273         * text.C (singleWidth): Spurious font copying in hot-spot
2274         singleWidth avoided. Reorder tests for arabic for efficiency.
2275
2276         * text.C (fill): handle empty paragraphs better.
2277
2278 2003-07-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2279
2280         * ispell.C:
2281         * encoding.h: add includes
2282
2283         * lyxrc.C: remove reading of bind files
2284
2285         * lyx_main.C (init): setup bindings and menus only if we have a
2286         gui.
2287
2288         * kbmap.C (read): new method. Do the actual reading of bind
2289         files.
2290
2291         * converter.C (dvipdfm_options):
2292         * bufferparams.C:
2293         * lyxrc.C (read):
2294         (output): adapt PAPER_* enums.
2295
2296         * lyxrc.h: include paper.h instead of bufferparams.h (mucho lighter)
2297
2298         * bufferparams.h: remove paper-related enums from there
2299
2300         * paper.h: New file. A trivial header file to hold paper-related
2301         enums. It should later expand to contain many paper-related
2302         horrors access.
2303
2304         * lyxrc.C: declare extern displayTranslator
2305
2306 2003-07-27  José Matos  <jamatos@fep.up.pt>
2307
2308         * tabular.[Ch] (linuxdoc): add support for tables and figures
2309         (linuxdoc).
2310
2311 2003-07-27  José Matos  <jamatos@fep.up.pt>
2312
2313         * buffer.[Ch] (makeLaTeXFile): changed name of arguments for
2314         consistency in both functions.
2315         * bufferlist.C (updateIncludedTeXfiles): change client to comply.
2316
2317 2003-07-26  Asger Alstrup  <alstrup@local>
2318
2319         * rowpainter.C (paintRows): Change algorithm to work directly on
2320         the insets rather than asking every character in the document
2321         whether its an inset.
2322
2323 2003-07.26  Alfredo Braunstein  <abraunst@libero.it>
2324
2325         * buffer.C (openFileWrite): factorize some code
2326
2327 2003-07-26  Angus Leeming  <leeming@lyx.org>
2328
2329         * lyx_cb.C:
2330         * lyx_main.[Ch]: replace occurances of system_tempdir with
2331         os::getTmpDir().
2332
2333 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
2334
2335         * rename Inset to InsetOld
2336
2337 2003-07-25  Asger Alstrup  <alstrup@diku.dk>
2338
2339         * undo_funcs.h: Removed setCursorParUndo to simplify things a bit.
2340         Renamed setUndo family to recordUndo. Renamed FINISH to ATOMIC
2341         which I think is a bit clearer. EDIT is gone, since it was
2342         premature optimisation, and broken for mathed anyway.
2343         * undo_funcs.C (performUndoOrRedo): Cleaned up and made it work
2344         with cursor positioning in insets as well (math insets still do not
2345         work, but that's a different story anyway.) It mysteriously
2346         crashes sometimes with undo in the first paragraph, but I'm fairly
2347         confident that this is a compiler bug.
2348
2349 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
2350
2351         * paragraph.C (Paragraph): adjust for new clone return type
2352         (operator==): ditto
2353         (copyIntoMinibuffer): ditto
2354
2355 2003-07-25  Asger Alstrup  <alstrup@lyx.org>
2356
2357         * undo_funcs.C (textHandleUndo): Fix undo crash in first paragraph
2358         by not having a special case, and always doing a full rebreak of
2359         the document after undo.
2360
2361 2003-07-23  Angus Leeming  <leeming@lyx.org>
2362
2363         * factory.C (createInset): InsetExternal::setParams now takes a
2364         Buffer const * arg.
2365
2366 2003-07-23  Angus Leeming  <leeming@lyx.org>
2367
2368         * factory.C (createInset): changed interface to the external and
2369         graphics mailers' string2params functions.
2370
2371 2003-07-23  Angus Leeming  <leeming@lyx.org>
2372
2373         * factory.C (createInset): pass a
2374         Buffer const * parameter to InsetExternalMailer's string2params.
2375
2376 2003-07-22  John Levon  <levon@movementarian.org>
2377
2378         * Thesaurus.h: include the right aiksaurus header
2379
2380 2003-07-21  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2381
2382         * MenuBackend.C (expand): check menu shortcuts unconditionally
2383
2384 2003-07-21  Angus Leeming  <leeming@lyx.org>
2385
2386         * factory.C (createInset): pass a
2387         buffer_path parameter to InsetGraphicsMailer's string2params.
2388
2389 2003-07-21  Angus Leeming  <leeming@lyx.org>
2390
2391         * BufferView_pimpl.C (buffer):
2392         * buffer.C (d-tor):
2393         * lyx_main.C (LyX):
2394         * lyxfunc.C (dispatch):
2395         * lyxrc.C (setDefaults, read, output): use namespace lyx::graphics
2396         rather than the grfx shortcut.
2397
2398 2003-07-21  André Pönitz  <poenitz@gmx.net>
2399
2400         * rowpainter.C: remove unused variables
2401
2402         * tabular_funcs.C:
2403         * tabular_funcs.h: move to tabular.C
2404         * Makefile.am: adjust
2405
2406         * tabular.[Ch]: basic optical cleaning
2407
2408         * author.h: pass references, not values
2409
2410 2003-07-18  André Pönitz  <poenitz@gmx.net>
2411
2412         * lyxtext.h:
2413         * metricsinfo.C:
2414         * metricsinfo.h:
2415         * rowpainter.C:
2416         * text.C:
2417         * text2.C:
2418         * text3.C: two-phase drawing for InsetText and InsetTabular
2419         some float -> int changes.
2420
2421 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
2422
2423         * lyx_main.C: fix the fix
2424
2425 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
2426
2427         * lyx_main.C: fix a crash in batch mode if no files specified
2428         * converter.C: ws
2429
2430 2003-07-17  Alfredo Braunstein  <abraunst@libero.it>
2431
2432         * format.[Ch] (papersize): moved to BufferParams
2433         * converter.[Ch] (dvips_options): moved to BufferParams
2434         (dvipdfm_options): moved to anon namespace
2435         * bufferparams.[Ch]: added above functions.
2436
2437 2003-07-17  André Pönitz  <poenitz@gmx.net>
2438
2439         * lyxtext.h:
2440         * rowpainter.C:
2441         * text2.C: don't call inset->update() anymore
2442
2443         * metricsinfo.[Ch]: add convenience constructor
2444
2445 2003-07-16  André Pönitz  <poenitz@gmx.net>
2446
2447         * lyxcursor.[Ch]:
2448         * lyxfunc.[Ch]:
2449         * text.C:
2450         * text2.C: replace the LyXCursor::irow_ member with
2451          on-demand computation of the value
2452
2453 2003-07-16  John Levon  <levon@movementarian.org>
2454
2455         * lyxfunc.C: support LFUN_INSET_SETTINGS for Note
2456
2457 2003-07-15  André Pönitz  <poenitz@gmx.net>
2458
2459         * text.C:
2460         * text2.C: remove no more needed refresh_row
2461
2462 2003-07-15  André Pönitz  <poenitz@gmx.net>
2463
2464         * lyxtext.h:
2465         * rowpainter.C:
2466         * text2.C:
2467         * text3.C: refresh_status tristate -> need_update bool
2468
2469 2003-07-15  Alfredo Braunstein  <abraunst@libero.it>
2470
2471         * lyxtext.h (init): remove reinit argument (act as if always true)
2472         * text2.C: adjust to that
2473
2474 2003-07-14  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
2475
2476         * bufferview_funcs.[Ch]: introduce function replaceSelection()
2477         * text3.C: use it to delete selections in some cases
2478         (bugs 441, 673, 702, 954).
2479
2480 2003-07-14  André Pönitz  <poenitz@gmx.net>
2481
2482         * rowpainter.[Ch]: reduce interface
2483
2484 2003-07-14  André Pönitz  <poenitz@gmx.net>
2485
2486         * BufferView_pimpl.C:
2487         * text2.C: adjust after removing unused BufferView * argument
2488
2489 2003-07-14  Alfredo Braunstein  <abraunst@libero.it>
2490
2491         * text2.C (init): fix a crash fired on resize
2492
2493 2003-07-11  Alfredo Braunstein  <abraunst@libero.it>
2494
2495         * buffer.[Ch]: added new closing signal
2496         * BufferView_pimpl.[Ch]: connect/disconnect to new signal
2497         * lyxfunc.C: removed BufferView::buffer(0) call now handled in
2498         BufferView::Pimpl via the closing the signal
2499
2500 2003-07-10  Alfredo Braunstein  <abraunst@libero.it>
2501
2502         * buffer.[Ch]: take out all bv-related from buffer
2503         * BufferView.C:
2504         * BufferView_pimpl.[Ch]: connect to new signals
2505         * CutAndPaste.C: removed useless asserts
2506         * bufferview_funcs.[Ch] (resizeInsets): moved from buffer
2507         * lyxvc.[Ch]:
2508         * vc-backend.[Ch]:
2509         * lyxfunc.C: moved view-related funciontality from vc here
2510         * paragraph.C: removed outdated comments
2511         * text.C: ws
2512
2513 2003-07-10  André Pönitz  <poenitz@gmx.net>
2514
2515         * BufferView_pimpl.C:
2516         * tabular.h:
2517         * tabular_funcs.C:
2518         * text.C:
2519         * text2.C: remove InsetText::InnerCache, clean up consequences
2520
2521 2003-07-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
2522
2523         * ispell.C: fix two typos in error messages
2524
2525 2003-07-08  Martin Vermeer  <martin.vermeer@hut.fi>
2526
2527         * Extend Note inset to other forms of annotation like Comment
2528         and Greyedout. Right button click gives dialog.
2529
2530         Files modified or added (+):
2531
2532         * insetnote.[Ch]
2533         * FormNote.[Ch]      +
2534         * ControlNote.[Ch]   +
2535         * form_note.fd       +
2536         * Makefile.am in frontends/xforms, frontends/xforms/forms,
2537         frontends/controllers
2538         * xforms/Dialogs.C
2539         * factory.C
2540
2541 2003-07-01  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
2542
2543         * aspell.C: add missing namespace lyx::support
2544
2545 2003-07-07  Alfredo Braunstein  <abraunst@libero.it>
2546
2547         * BufferView.[Ch] (newFile): Add
2548         * BufferView_pimpl.[Ch] (newFile, connectBuffer, disconnectBuffer): Add
2549         * LaTeX.[Ch] (message): added this signal and use it
2550         * buffer.[Ch] (busy, message): added these signals and use them
2551         * buffer_funcs.[Ch]: rename parseErrors to bufferErrors
2552         * converter.C:
2553         * exporter.C:
2554         * format.C:
2555         * importer.C: use buffer signals instead of direct bv calling
2556         * lyx_cb.[Ch] (ShowMessage): removed
2557         * lyx_main.C:
2558         * lyxfunc.C:
2559         * paragraph_funcs.C:
2560         * text2.C: use buffer signals
2561
2562 2003-07-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
2563
2564         * introduce namespace lyx::graphics
2565
2566 2003-07-02  André Pönitz  <poenitz@gmx.net>
2567
2568         * BufferView_pimpl.C (workAreaDispatch): tell the FuncRequest who we are
2569
2570 2003-07-01  André Pönitz  <poenitz@gmx.net>
2571
2572         * text.C:
2573         * text2.C:
2574         * text3.C:
2575         * text_funcs.[Ch]:
2576         * textcursor.h:
2577         * lyxtext.h: shuffle pure paragraph/cursor related cursor movement from
2578           text*.C to text_func.C
2579
2580 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2581
2582         * introduce namespace lyx::support
2583
2584 2003-06-30  André Pönitz  <poenitz@gmx.net>
2585
2586         * Chktex.C:
2587         * funcrequest.C:
2588         * lyxtext.h:
2589         * text.C: re-enable --with-included-string
2590
2591 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2592
2593         * textcursor.C: add <config.h>
2594
2595         * text.C (getWord): remove const from word_location arg
2596
2597         * lyxvc.C (getLogFile): fix const type order
2598
2599         * lyxtext.h: remove const from word_location arg, add arg name
2600
2601         * lyxlayout.h: currect type on labeltype.
2602
2603         * importer.C: correct \file
2604
2605         * converter.C (intToFormat): use std:: on ret val, ws changes
2606
2607         * bufferlist.h: correct \file
2608
2609         * buffer.C (makeLinuxDocFile): fix const type order
2610         (makeDocBookFile): ditto
2611         (fillWithBibKeys): use std:: on stdlib args.
2612
2613         * CutAndPaste.C: fix authors.
2614         (availableSelections): use std:: on return vector
2615
2616 2003-06-27  André Pönitz  <poenitz@gmx.net>
2617
2618         * BufferView_pimpl.C:
2619         * bufferview_funcs.C:
2620         * lyxcursor.C:
2621         * lyxcursor.h:
2622         * lyxfunc.C:
2623         * lyxtext.h:
2624         * rowpainter.C:
2625         * text.C:
2626         * text2.C:
2627         * text3.C: remove LyXCursor::row_ member
2628
2629         * lyxtext.h:
2630         * text.C: rename fullRebreak() to partialRebreak() and implement
2631           a fullRebreak() that really bereks fully
2632
2633         * textcursor.h: new struct for cursor-related data
2634
2635 2003-06-26  Alfredo Braunstein  <abraunst@lyx.org>
2636
2637         * lyx_main.C (LyX): get full path of document loaded on the
2638         command line
2639
2640 2003-06-26  André Pönitz  <poenitz@gmx.net>
2641
2642         * lyxcursor.[Ch]: move rarely used operator==,!= out of line
2643           remove unused/broken operator>,<,>=.
2644
2645         *       text.C: remove only use of broken operator<= in an Assert().
2646
2647 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
2648
2649         * BufferView.[Ch] (getErrorList): removed unneeded forward declare,
2650         moved errorlist_.clear to showErrorList
2651
2652 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
2653
2654         * converter.C (scanLog, runLaTeX):
2655         * buffer.C (makeLinuxDocFile, makeDocBookFile, runChkTeX):
2656         move the bv->showErrorList call to the callers
2657         * lyxfunc.C: i.e. here...
2658         * text2.C: and here
2659         * BufferView.[Ch] (setErrorList, resetErrorList): both removed
2660         * exporter.[Ch] (Backends, BufferFormat): the first was moved to anon
2661         namespace, the second to...
2662         * buffer_funcs (BufferFormat, parseErrors): added
2663         * errorlist.C (ErrorList(TeXErrors const &)): removed
2664
2665 2003-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2666
2667         * ToolbarBackend.C (getIcon): complain when icon cannot be found
2668
2669 2003-06-24  "Garst R. Reese" <reese@isn.net>
2670
2671         * debug.C: fix typo
2672
2673 2003-06-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2674
2675         * lyx_main.C (init): honor LYX_DIR_14x and LYX_USERDIR_14x
2676
2677         * version.C.in: change docversion to 1.4
2678
2679 2003-06-22  Alfredo Braunstein  <abraunst@libero.it>
2680
2681         * buffer.C: fix a bug just introduced
2682
2683 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
2684
2685         * buffer.[Ch]: added the parseError signal and use it, removed
2686         sgmlError
2687         * BufferView.[Ch] (addError): moved to ...
2688         * BufferView_pimpl.[Ch] (addError, loadLyXFile): ... here. Attach
2689         to the Buffer::parseError signal to catch (guess what) parse errors
2690         * lyx_main.[Ch] (printError,LyX): added gui-less parsing error feedback
2691
2692 2003-06-19  Alfredo Braunstein  <abraunst@libero.it>
2693
2694         * bufferlist.[Ch] (loadLyXFile, readFile, newFile): removed the
2695         ability to create a buffer and to return an existing one from
2696         the list. Moved these functions to...
2697         * buffer_funcs.[Ch]: added
2698         * BufferView.[Ch] (loadLyXFile): added
2699         * BufferView_pimpl.[Ch] (loadLyXFile): Added. Does the guessing
2700         job removed from bufferlist::loadLyXFile.
2701         * buffer.C (setReadOnly): make it work without view
2702         (i.e added an if (users))
2703
2704 2003-06-19  Angus Leeming  <leeming@lyx.org>
2705
2706         * lfuns.h:
2707         * LyXAction.C (init):
2708         * lyxfunc.C (getStatus, dispatch): remove 14 LFUNs, replacing them
2709         with LFUN_DIALOG_SHOW <name> <data>.
2710
2711 2003-06-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2712
2713         * CutAndPaste.C (availableSelections): small compilation fix for
2714         ancient (gcc 2.9x) compilers
2715
2716 2003-06-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
2717
2718         * text3.C (cursorNext): add tmp var
2719
2720         * text2.C (updateCounters): for function calling out of for clause
2721         (replaceSelectionWithString): ditto
2722         (insertStringAsParagraphs): ditto
2723         (getColumnNearX): add tmp var
2724         (setCursorFromCoordinates): add tmp var
2725         (cursorDownParagraph): add tmp var
2726         (deleteEmptyParagraphMechanism): add tmp var
2727
2728         * text.C (insertChar): add tmp var
2729
2730         * rowpainter.C (paintDepthBar): add tmp var
2731
2732         * CutAndPaste.C (availableSelections): potentially check all
2733         paragraphs in a cut to fill the shown strings.
2734
2735 2003-06-18  André Pönitz  <poenitz@gmx.net>
2736
2737         * kbmap.[Ch]: use vector<> instead of list<>
2738
2739 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
2740
2741         * text3.C (dispatch): handle arg to LFUN_PASTE, call
2742         pasteSelection with index
2743
2744         * text2.C (pasteSelection): modify, call pasteSelection with index
2745
2746         * paragraph.C (asString): reimplement version with no interval to
2747         call the one with interval.
2748
2749         * lyxtext.h: add index arg to pasteSelection
2750
2751         * MenuBackend.C (MenuItem): handle PasteRecent
2752         (Menu::read::Menutags): add md_pasterecent
2753         (read): handle it
2754         (expandPasteRecent): new function
2755         (expand): use it
2756
2757         * MenuBackend.h: add PasteRecent to MenuItem::Kind
2758
2759         * CutAndPaste.C: get rid of some stale comments. Add typdefe for
2760         the limited stack
2761         (availableSelections): new function
2762
2763 2003-06-17  Angus Leeming  <leeming@lyx.org>
2764
2765         * lyxfunc.C (dispatch): s/showMathPanel/show("mathpanel")/
2766
2767 2003-06-17  Angus Leeming  <leeming@lyx.org>
2768
2769         * lfuns.h:
2770         * LyXAction.C (init): new LFUN_DIALOG_SHOW.
2771
2772         * lyxfunc.C (dispatch): invoke it.
2773
2774 2003-06-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2775
2776         * iterators.C (operator++, ParPosition): reintroduce some
2777         const_cast for the benefit of older compilers.
2778
2779 2003-06-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2780
2781         * text3.C (dispatch): do not modify clipboard when doing
2782         LFUN_BACKSPACE, LFUN_BACKSPACE_SKIP, LFUN_DELETE or
2783         LFUN_DELETE_SKIP on a selection selection
2784
2785 2003-06-16  André Pönitz  <poenitz@gmx.net>
2786
2787         * BufferView.C:
2788         * buffer.C:
2789         * buffer.h:
2790         * paragraph.C:
2791         * tabular.[Ch]: IU of clone() and getLabelList();
2792
2793 2003-06-13  André Pönitz  <poenitz@gmx.net>
2794
2795         * tabular.h: compactification
2796
2797 2003-06-12  André Pönitz  <poenitz@gmx.net>
2798
2799         * tabular.C:
2800         * tabular.h:
2801         * tabular_funcs.h: some renaming plus whitespace
2802
2803 2003-06-12  André Pönitz  <poenitz@gmx.net>
2804
2805         * BufferView.C:
2806         * BufferView_pimpl.C:
2807         * CutAndPaste.C:
2808         * buffer.C:
2809         * iterators.[Ch]:
2810         * lyxfunc.C:
2811         * text.C:
2812         * toc.C: Return a Paragraph & for ParIterator::operator*()
2813
2814 2003-06-11  John Levon  <levon@movementarian.org>
2815
2816         * lyx_main.C:
2817         * ToolbarBackend.h:
2818         * ToolbarBackend.C: add "Toolbars" section and
2819         put the flags there
2820
2821 2003-06-10  Angus Leeming  <leeming@lyx.org>
2822
2823         * lfuns.h:
2824         * LyXAction.C (init): new LFUN_EXTERNAL_EDIT.
2825
2826         * lyxfunc.C (dispatch): invoke it.
2827
2828 2003-06-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
2829
2830         * main.C: protect <ios> with HAVE_IOS
2831         (main): protect sync_with_stdio with HAVE_IOS
2832
2833 2003-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
2834
2835         * text2.C (cutSelection): adjust
2836         (pasteSelection): adjust
2837
2838         * messages.C: handle get of empty string
2839
2840         * main.C (main): use sync_with_stdio(false)
2841
2842         * lyxfunc.C (dispatch): adjust
2843
2844         * lyx_cb.[Ch] (MenuWrite): remove unneeded BufferView arg
2845         (WriteAs): remove unneeded BufferView arg.
2846
2847         * bufferparams.h: use correct types on papersize, papersize2 and
2848         paperpackage.
2849
2850         * bufferparams.C (readToken): adjust for type
2851         (writeLaTeX): add missing cases to switch.
2852
2853         * bufferlist.C (quitWriteBuffer): adjust
2854         (close): adjust
2855
2856         * buffer.C (asciiParagraph): remove some commented code.
2857
2858         * CutAndPaste.C: remove current_view extern variable.
2859         (cutSelection): add BufferParams arg.
2860         (eraseSelection): add BufferParams arg.
2861         (pasteSelection): add Buffer const & arg
2862
2863 2003-06-07  John Levon  <levon@movementarian.org>
2864
2865         * buffer.C:
2866         * paragraph_funcs.C:
2867         * paragraph_pimpl.C:
2868         * text.C:
2869         * text2.C:
2870         * paragraph.h:
2871         * paragraph.C: allow InsetERT to freely space lines,
2872         and some consolidation of code
2873
2874 2003-06-06  José Matos  <jamatos@fep.up.pt>
2875
2876         * buffer.C (makeDocBookFile): fix bug #821
2877
2878 2003-06-06  Alfredo Braunstein  <abraunst@libero.it>
2879
2880         * BufferView_pimpl.C (dispatch): use Dialogs::visible
2881
2882 2003-06-04  Angus Leeming  <leeming@lyx.org>
2883
2884         * buffer.C: bump format to 224.
2885
2886 2003-06-05  André Pönitz  <poenitz@gmx.net>
2887
2888         * text2.C (redoParagraphs): remove two const_cast<>
2889
2890 2003-06-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
2891
2892         * ParagraphList.h: remove last remnants of NO_STD_LIST
2893
2894 2003-06-03  Angus Leeming  <leeming@lyx.org>
2895
2896         * factory.C (createInset): small change to the way InsetExternal's params
2897         are set.
2898
2899 2003-06-04  André Pönitz  <poenitz@gmx.net>
2900
2901         * buffer.h: use Undo directly instead of shared_ptr<Undo>
2902
2903         * paragraph_pimpl.h:
2904         * paragraph.[Ch]: some Inset -> UpdatableInset changes
2905
2906         * undo.[Ch]: use ParagraphList instead of vector<Paragraph>
2907
2908         * undo_funcs.C: make some simple cases of undo work again
2909
2910 2003-06-03  John Levon  <levon@movementarian.org>
2911
2912         * ispell.C: HPUX doesn't have sys/select.h
2913         (from Albert Chin)
2914
2915 2003-06-03  John Levon  <levon@movementarian.org>
2916
2917         * CutAndPaste.C: update tabular and include inset
2918         buffer references
2919
2920         * buffer.h:
2921         * paragraph.h:
2922         * paragraph.C: remove owningBuffer(), don't pass Buffer
2923         to clone()
2924
2925         * factory.C: insetGraphicsParams changed
2926
2927 2003-06-02  John Levon  <levon@movementarian.org>
2928
2929         * LyXAction.C:
2930         * factory.C:
2931         * lfuns.h:
2932         * lyxfunc.C:
2933         * text3.C: remove insetparent
2934
2935 2003-06-02  John Levon  <levon@movementarian.org>
2936
2937         * buffer.h:
2938         * buffer.C: fix inset_iterator.end(), move out of line
2939         (bug 1149)
2940
2941 2003-06-01  John Levon  <levon@movementarian.org>
2942
2943         * text3.C: use a proper cut/paste when doing inset
2944         insert (from Jürgen Spitzmüller)
2945
2946 2003-06-01  John Levon  <levon@movementarian.org>
2947
2948         * factory.C: accept "\bibtex" not "\BibTeX" (bug 1018)
2949
2950 2003-05-30  André Pönitz  <poenitz@gmx.net>
2951
2952         * rowpainter.C: unify second drawing phase
2953
2954 2003-05-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2955
2956         * trans_mgr.C: remove one case of current_view
2957
2958         * text2.C (cursorBottom): delete NO_STD_LIST stuff
2959
2960         * paragraph_funcs.h: remove paragraph.h include
2961
2962         * paragraph.h: delete NO_STD_LIST stuff
2963
2964         * paragraph.C (Paragraph): delete NO_STD_LIST stuff
2965
2966         * buffer.h: remove paragraph.h include
2967
2968         * ParagraphList.C: delete file
2969
2970         * Makefile.am (lyx_SOURCES): remove ParagraphList.C
2971
2972         * toc.C (getTocList): adjust
2973
2974         * paragraph_pimpl.C (validate): adjust
2975
2976         * paragraph_funcs.C (optArgInset): use const_iterator, adjust
2977
2978         * paragraph.C (Paragraph): adjust
2979         (getPositionOfInset): use const_iterator, adjust
2980         (bibitem): use const_iterator, adjust
2981         (setInsetOwner): adjust
2982
2983         * iterators.C (operator++): adjust
2984
2985         * InsetList.[Ch]: Replace selfmade iterator with standard
2986         vector::iterator also introduce const_iterator. Remove getPos,
2987         getInset and setInset from InsetTable. Adjust accordingly.
2988
2989         * BufferView.C (lockInset): adjust
2990         (ChangeInsets): adjust
2991
2992         * tabular.[Ch]: delete commented same_id functions
2993
2994 2003-05-28  John Levon  <levon@movementarian.org>
2995
2996         * lyxfunc.C: fix LFUN_ESCAPE (bug 1055)
2997
2998 2003-05-28  André Pönitz  <poenitz@gmx.net>
2999
3000         * metricsinfo.[Ch]: remove 'fullredraw' member
3001
3002 2003-05-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
3003
3004         * lyxtextclass.C (operator): remove caching.
3005
3006 2003-05-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
3007
3008         * text3.C: adjust
3009
3010         * text2.C (cursorBottom): adjust
3011         (setCounter): use ParagraphList::find, adjust
3012
3013         * text.C (workWidth): use ParagraphList::find, adjust
3014
3015         * lyxcursor.C (LyXCursor): adjust
3016
3017         * buffer.C (inset_iterator): adjust
3018
3019         * ParagraphList.h: make iterator(value_type) private, make
3020         ParagraphList a friend of iterator.
3021
3022         * ParagraphList.C (find): new function
3023
3024         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
3025
3026 2003-05-27  André Pönitz  <poenitz@gmx.net>
3027
3028         * dimension.[Ch]: a -> asc, d -> des, w -> wid
3029
3030 2003-05-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3031
3032         * lyxfont.C (latexWriteStartChanges): fix character count for \noun
3033
3034 2003-05-26  John Levon  <levon@movementarian.org>
3035
3036         * LyXAction.C: LFUN_ESCAPE should be ReadOnly
3037
3038 2003-05-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
3039
3040         * remove same_id from function signatures, adjust.
3041
3042 2003-05-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
3043
3044         * undo_funcs.C (createUndo): use the id functions directly, adjust.
3045
3046         * paragraph_pimpl.C (Pimpl): get rid of same_ids parameter
3047
3048         * paragraph.C (Paragraph): get rid of same_ids parameter
3049
3050         * ParagraphList.C (insert): adjust
3051         (push_back): adjust
3052
3053 2003-05-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
3054
3055         * paragraph_funcs.C (breakParagraph): adjust
3056         (breakParagraphConservative): adjust
3057
3058         * buffer.C (readParagraph): adjust
3059
3060         * ParagraphList.C (insert): take a reference instead of a pointer
3061         (insert): adjust
3062
3063         * paragraph.[Ch] (id): new function
3064
3065         * bufferlist.C (newFile): adjust
3066
3067         * ParagraphList.C (ParagraphList): adjust
3068         (assign): adjust
3069         (push_back): take a reference instead of a pointer.
3070
3071         * paragraph.h: add NO_STD_LIST define, remove NO_NEXT define.
3072
3073         * paragraph.C: remove all NO_NEXT node add some NO_STD_LIST parts
3074         instead.
3075
3076         * ParagraphList.h: degenerate to std::list if NO_STD_LIST is not
3077         set else use old code.
3078
3079         * ParagraphList.C: remove all NO_NEXT code and only compile this
3080         code of NO_STD_LIST is set.
3081
3082 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
3083
3084         * BufferView_pimpl.C:
3085         * TextCache.C:
3086         * TextCache.h:
3087         * bufferlist.C:
3088         * errorlist.h:
3089         * format.C:
3090         * format.h:
3091         * graph.C:
3092         * lyxfunc.C:
3093         * lyxrc.C:
3094         * graphics/GraphicsConverter.C:
3095         * graphics/PreviewLoader.C: header adjustment
3096
3097 2003-05-23  Angus Leeming  <leeming@lyx.org>
3098
3099         * LaTeXFeatures.[Ch] (useBabel): new method.
3100         * bufferparams.C (writeLaTeX): use it.
3101
3102 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
3103
3104         * ParagraphList.h (set): remove unused function.
3105
3106 2003-05-23  André Pönitz  <poenitz@gmx.net>
3107
3108         * BufferView.C:
3109         * BufferView_pimpl.C:
3110         * buffer.C:
3111         * buffer.h:
3112         * lyxfunc.C:
3113         * undo_funcs.C: setUndo reworked
3114
3115         * iterators.[Ch]: add access to topmost ParagraphList
3116
3117         * lyxtext.[Ch] (workWidth): add a const
3118
3119 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
3120
3121         * texrow.[Ch] (increasePos): remove function
3122         * exporter.C (export): removed unused var and outdated comment
3123
3124 2003-05-23  Angus Leeming  <leeming@lyx.org>
3125
3126         * latexrunparams.h: rename fragile as moving_arg.
3127         * paragraph.C (simpleTeXOnePar): ditto.
3128         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto.
3129
3130 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
3131
3132         * undo_funcs.C (textHandleUndo): comment out next/previous stuff
3133         (createUndo): ditto
3134         (textUndoOrRedo): comment out a currently unused var.
3135
3136         * paragraph.h (NO_NEXT): enable NO_NEXT
3137
3138         * lyxfunc.C (dispatch): remove LFUN_REMOVEERRORS
3139
3140         * lfuns.h: remove LFUN_REMOVEERRORS and adjust lfun numbers.
3141
3142         * exporter.C (Export): adjust for removeAutoInsets removal.
3143
3144         * buffer.C (runChktex): adjust for removeAutoInsets removal.
3145
3146         * LyXAction.C (init): remove LFUN_REMOVEERRORS
3147
3148         * BufferView.[Ch] (removeAutoInsets): delete function
3149
3150 2003-05-22  Angus Leeming  <leeming@lyx.org>
3151
3152         * latexrunparams.h: add a free_spacing variable.
3153
3154         * paragraph.[Ch] (simpleTeXOnePar): further fragile clean-up; no need
3155         to pass moving_arg, as the data is stored in runparams.fragile.
3156
3157         * paragraph_funcs.C (TeXOnePar): no longer pass free_spacing arg
3158         to Inset::latexOptional or to simpleTeXOnePar.
3159
3160         * paragraph_pimpl.C (simpleTeXSpecialChars): no longer pass
3161         free_spacing arg to Inset::latexOptional.
3162
3163         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
3164         free_spacing arg.
3165
3166 2003-05-22  Angus Leeming  <leeming@lyx.org>
3167
3168         * latexrunparams.h: add fragile and use_babel variables.
3169
3170         * bufferparams.[Ch] (writeLaTeX): return use_babel.
3171         * buffer.C (makeLaTeXFile): store this returned value in
3172         runparams.use_babel, thus passing it to the inset::latex methods.
3173
3174         * paragraph.C (simpleTeXOnePar): no need to pass 'moving_arg' to
3175         simpleTeXSpecialChars as it is now stored in runparams.fragile.
3176
3177         * paragraph_funcs.[Ch] (TeXOnePar, latexParagraphs): TeXOnePar no
3178         longer has a fragile arg, as it is stored in runparams.fragile.
3179
3180         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars): no longer has a
3181         moving_arg parameter as the data is stored in runparams.fragile.
3182
3183         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
3184         a fragile parameter as the data is stored in runparams.fragile.
3185
3186 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
3187
3188         * paragraph.C (Paragraph): initialize next_par_ and prev_par_
3189
3190 2003-05-22  Angus Leeming  <leeming@lyx.org>
3191
3192         * latexrunparams.h: add a 'bool nice' which defaults to false.
3193
3194         * buffer.[Ch] (makeLaTeXFile): remove the nice parameter as it is
3195         now encapsulated within runparams.
3196
3197         * bufferlist.C (updateIncludedTeXfiles):
3198         * exporter.C (Export): ensuing change to the calls to makeLaTeXFile.
3199
3200 2003-05-22  Angus Leeming  <leeming@lyx.org>
3201
3202         * latexrunparams.h: new file containing struct LatexRunParams.
3203         * Makefile.am: add new file.
3204
3205         * LaTeX.[Ch] (c-tor, run):
3206         * buffer.[Ch] (makeLaTeXFile):
3207         * bufferlist.[Ch] (updateIncludedTeXfiles):
3208         * converter.C (convert, scanLog):
3209         * converter.[Ch] (runLaTeX):
3210         * exporter.C (Export):
3211         * paragraph.[Ch] (simpleTeXOnePar):
3212         * paragraph_funcs.C (TeXEnvironment, TeXOnePar, TeXDeeper):
3213         * paragraph_funcs.[Ch] (latexParagraphs):
3214         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars):
3215         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow, latex):
3216         pass around a LatexRunParams parameter.
3217
3218 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
3219
3220         * paragraph.[Ch]: remove unused constructor
3221
3222         * ParagraphList.C (erase): new function, taking two iterators
3223
3224 2003-05-22  André Pönitz  <poenitz@gmx.net>
3225
3226         * undo_funcs.C: remove duplicated code
3227
3228         * iterator.[Ch]: operator=
3229
3230 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
3231
3232         * tabular.C (SetMultiColumn): ws changes
3233
3234         * rowpainter.C (paintFirst): get rid of a ->previous
3235
3236         * lyx_cb.C (getPossibleLabel): parlist simplification
3237
3238         * BufferView.C (ChangeInsets): simplify slightly.
3239
3240 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3241
3242         * LyXAction.C: new lfun space-insert, kill protected-space-insert
3243         * lfuns.h: new LFUN_SPACE
3244         * lyxfunc.C: protected space has a new lfun
3245         * paragraph_funcs.C: read new space insets
3246         * text3.C:
3247         * factory.C: handle new space insets
3248
3249 2003-05-22  André Pönitz  <poenitz@gmx.net>
3250
3251         * BufferView.C:
3252         * BufferView_pimpl.C:
3253         * buffer.[Ch]:
3254         * lyxfunc.C:
3255         * undo_funcs.C: return a ParIterator from getParFromID.
3256
3257         * iterators.[Ch]: add two const's
3258
3259 2003-05-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
3260
3261         * toc.C (getTocList): adjust
3262
3263         * iterators.[Ch]: rework for parlist
3264
3265         * buffer.C (par_iterator_begin): adjust
3266         (par_iterator_end): adjust
3267
3268         * CutAndPaste.C (SwitchLayoutsBetweenClasses): adjust
3269
3270         * BufferView.C (removeAutoInsets): adjust
3271         (ChangeInsets): adjust
3272
3273 2003-05-21  Alfredo Braunstein  <abraunst@libero.it>
3274
3275         * text.C (top_y): fix bug 1110
3276
3277 2003-05-08  Alfredo Braunstein  <abraunst@libero.it>
3278
3279         * errorlist.[Ch]: added
3280         * buffer.C:
3281         * BufferView.[Ch]:
3282         * BufferView_pimpl.C:
3283         * CutAndPaste.[Ch]: get rid of InsetError users, use ErrorList
3284         instead
3285
3286 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
3287
3288         * Makefile.am: ensure that lyx is relinked upon changes to the
3289         various "convenience" libs.
3290
3291 2003-05-20  Angus Leeming  <leeming@lyx.org>
3292
3293         * Makefile.am (lyx_SOURCES): move format.[Ch] and graph.[Ch] so that
3294         files are compiled in alphabetical order again.
3295
3296         * gettext.h: #ifndef _GETTEXT_H_ -> #ifndef GETTEXT_H.
3297
3298 2003-05-19  Angus Leeming  <leeming@lyx.org>
3299
3300         * gettext.[Ch]: remove "char const * _(char const *)".
3301
3302 2003-05-19  André Pönitz  <poenitz@gmx.net>
3303
3304         * dimension.[Ch]: promote from mathed/dimension.[Ch]
3305
3306         * Makefile.am:
3307         * BufferView.C:
3308         * DepTable.h:
3309         * LaTeXFeatures.C:
3310         * buffer.C:
3311         * lyxfont.C:
3312         * lyxlex.h:
3313         * paragraph_funcs.C: dimensions() instead of ascend/descend/width
3314
3315 2003-05-19  André Pönitz  <poenitz@gmx.net>
3316
3317         * buffer.C:
3318         * lyxlayout.[Ch]:
3319         * lyxtextclass.[Ch]:
3320         * paragraph.C:
3321         * paragraph_funcs.[Ch]:
3322         * text2.C:
3323         * text3.C: more insetenv work
3324
3325 2003-05-16  Alfredo Braunstein  <abraunst@libero.it>
3326
3327         * ParagraphParameters.C (params2string): small bug fixed
3328
3329 2003-05-16  André Pönitz  <poenitz@gmx.net>
3330
3331         * debug.C:
3332         * bufferview_funcs.C: patch from Kornel Benko to prevent
3333           crash when _(...) is called twice in a statement
3334
3335 2003-05-16  André Pönitz  <poenitz@gmx.net>
3336
3337         * BufferView.C:
3338         * lyxfunc.C:
3339         * text.C:
3340         * text2.C:
3341         * text3.C:
3342         * undo_funcs.C: edit() -> LFUN_INSET_EDIT
3343
3344 2003-05-14  Alfredo Braunstein  <abraunst@libero.it>
3345
3346         * lyx_main.C (init): remove spurious static_cast
3347
3348 2003-05-14  André Pönitz  <poenitz@gmx.net>
3349
3350         * BufferView.C: fix format string
3351
3352 2003-05-12  Alfredo Braunstein  <abraunst@libero.it>
3353
3354         * BufferView.[Ch] (insertErrors): removed
3355         * BufferView.[Ch] (showErrorList): added
3356         * buffer.C (runChkTeX):
3357         * converter.C (scanLog): call showErrorList instead of inserterrors
3358
3359 2003-05-13  André Pönitz  <poenitz@gmx.net>
3360
3361         * BufferView_pimpl.C:
3362         * buffer.C:
3363         * bufferview_func.C:
3364         * MenuBackend.C:
3365         * lyxfunc.C:
3366         * lyxrc.C:
3367         * tex-accent.C:
3368         * text3.C:
3369         * toc.C:
3370         * tabular_funcs.h: tostr() from its own header
3371
3372         * ParagraphParameters.C:
3373         * ToolbarBackend.C:
3374         * bufferparams.C:
3375         * format.C:
3376         * lyxlex_pimpl.C:
3377         * text3.C: STRCONV()
3378
3379 2003-05-12  André Pönitz  <poenitz@gmx.net>
3380
3381         * BufferView.C:
3382         * BufferView_pimpl.C:
3383         * CutAndPaste.C:
3384         * LaTeX.C:
3385         * LaTeXFeatures.C:
3386         * ParagraphParameters.C:
3387         * buffer.C:
3388         * bufferlist.C:
3389         * bufferparams.C:
3390         * bufferview_funcs.C:
3391         * converter.C:
3392         * counters.C:
3393         * debug.C:
3394         * exporter.C:
3395         * format.C:
3396         * importer.C:
3397         * lyx_cb.C:
3398         * lyx_main.C:
3399         * lyxfont.C:
3400         * lyxfunc.C:
3401         * lyxvc.C:
3402         * paragraph.C:
3403         * paragraph_funcs.C:
3404         * tabular.C:
3405         * tabular_funcs.C:
3406         * text2.C:
3407         * text3.C:  boost::format -> bformat  all over the place
3408
3409
3410 2003-05-09  André Pönitz  <poenitz@gmx.net>
3411
3412         * LColor.[Ch]: Pimpl the #include <map> away
3413
3414 2003-05-09  John Levon  <levon@movementarian.org>
3415
3416         * bufferlist.C: never remove emergency saves
3417
3418 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
3419
3420         * Makefile.am: better lib building
3421
3422 2003-05-07  Lars Gullik Bjønnes  <larsbj@gullik.net>
3423
3424         * texrow.[Ch]: remove dependency on Paragraph and just store a id
3425         instead.
3426         * paragraph_pimpl.C (simpleTeXBlanks): adjust
3427         (simpleTeXSpecialChars): adjust
3428         (simpleTeXSpecialChars): adjust
3429         * paragraph.C (simpleTeXOnePar): adjust
3430         * buffer.C (makeLaTeXFile): adjust
3431
3432         * Makefile.am (BOOST_LIBS): allow boost as system lib.
3433
3434         * text2.C (changeDepth): parlist cleanup
3435         (getColumnNearX): ditto
3436
3437         * rowpainter.C (getLabelFont): parlist cleanup
3438
3439         * bufferlist.C (newFile): parlist cleanup
3440
3441         * CutAndPaste.C (eraseSelection): parlist cleanup
3442
3443         * BufferView_pimpl.C (trackChanges): parlist cleanup
3444         (dispatch): ditto
3445
3446         * BufferView.C (lockInset): parlist cleanup.
3447         (ChangeInsets): ditto
3448
3449 2003-05-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
3450
3451         * CutAndPaste.h: Update file header.
3452
3453         * CutAndPaste.C: Update file header.
3454         Store the parts cut out of the Document in a limited_stack.
3455         (copySelection): adjust
3456         (pasteSelection): new function, takes the index in the limited stack.
3457         (nrOfParagraphs): adjust
3458         (SwitchLayoutsBetweenClasses): Change to take a ParagraphList&,
3459         simplify error inset insertion.
3460         (checkPastePossible): adjust
3461
3462 2003-05-06  John Levon  <levon@movementarian.org>
3463
3464         * text2.C: don't cast wrap inset to float
3465
3466 2003-05-05  André Pönitz  <poenitz@gmx.net>
3467
3468         * iterator.C:
3469         * undo_funcs.C: use getParagraphs() instead of getFirstParagraph()
3470
3471         * buffer.[Ch]: new function hasParWithId() to help to get rid of a
3472           few naked Paragraph *.
3473
3474 2003-05-02  Michael Schmitt  <michael.schmitt@teststep.org>
3475
3476         * bufferparams.C: Output warning if a document with missing
3477         TeX document class is loaded
3478         * exporter.C: Disable TeX exports if the document class is missing
3479         * lyxtextclass.C:
3480         * lyxtextclass.h:
3481         * lyxtextclasslist.C: Handle new textclass.lst format; new method
3482         isTeXClassAvailable()
3483
3484 2003-05-03  John Levon  <levon@movementarian.org>
3485
3486         * BufferView.h:
3487         * BufferView.C: remove showLockedInsetCursor(), showCursor(),
3488         explicit cursor show/hide
3489
3490         * BufferView_pimpl.h:
3491         * BufferView_pimpl.C: hide cursor before dispatching. Show cursor
3492         after a cursor move lfun. Simplify cursorToggle(). Remove show/hideCursor().
3493
3494         * lyxfunc.C: hide cursor before dispatching.
3495
3496         * lyx_cb.C:
3497         * lyxfind.C:
3498         * text.C:
3499         * text3.C: remove explicit cursor hides
3500
3501 2003-05-02  André Pönitz  <poenitz@gmx.net>
3502
3503         * buffer.[Ch]: two instances of Paragraph * -> ParagraphList::iterator
3504
3505         * undo_funcs.C:
3506         * undo.[Ch]: rely on std::vector<Paragraph *> instead of manually
3507           linked lists
3508
3509         * text2.C: tiny whitespace
3510
3511 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3512
3513         * undo_funcs.C: almost only ws changes.
3514
3515         * ParagraphList.C (splice): just return if pl is empty.
3516
3517 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3518
3519         * ParagraphList.C (splice): new function.
3520
3521         * CutAndPaste.C (pasteSelection): use it
3522
3523 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3524
3525         * CutAndPaste.C (pasteSelection): remove the last next and
3526         previous from this file.
3527
3528 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3529
3530         * CutAndPaste.C (pasteSelection): more clean up, user proper
3531         ParagraphList functions for pasteing.
3532
3533         * ParagraphList.C (insert): new function, three arg insert
3534
3535 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3536
3537         * ParagraphList.C (insert): new function, three arg insert
3538
3539         * CutAndPaste.C (pasteSelection): work on the simple_cut_clone,
3540         not on paragraphs.
3541
3542 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3543
3544         * CutAndPaste.C (pasteSelection): copy paragraphlist the nice way.
3545
3546 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3547
3548         * CutAndPaste.C (pasteSelection): remove some unneeded code.
3549
3550 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3551
3552         * CutAndPaste.C (resetOwnerAndChanges): new helper functor
3553         (copySelection): clean up a bit.
3554         (pasteSelection): use make_pair
3555
3556         * ParagraphList.C (ParagraphList): implement copy constructor
3557         (operator=): implement, base on copy constructor.
3558         (assign): new func
3559
3560         * paragraph.C (erase): return a bool
3561
3562         * paragraph_pimpl.C (erasePos): remove function, move contents...
3563         (erase): ... here. Return a bool.
3564         (erase): call erase instead of erasePos.
3565
3566 2003-04-30  Alfredo Braunstein  <abraunst@libero.it>
3567
3568         * ParagraphList.h: define PitPosPair
3569         * CutAndPaste.C (copySelection, pasteSelection): big rework, use
3570         ParagraphList, fix a bug on pasting multiple pars
3571         * text2.C: change interface to C&P
3572
3573 2003-04-30  André Pönitz  <poenitz@gmx.net>
3574
3575         * undo_func.C: revert part of yesterday's patch 2
3576
3577 2003-04-30  John Levon  <levon@movementarian.org>
3578
3579         * LColor.C: s/tabular/table/
3580
3581 2003-04-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
3582
3583         * text3.C (dispatch): do not convert iterator -> pointer
3584         * undo_funcs.C (setCursorParUndo): ditto
3585         * text_funcs.C (transposeChars): ditto
3586
3587         * text2.C (setLayout): ws changes only
3588
3589         * text.C (breakParagraph): do not convert iterator -> pointer
3590         (insertChar): ditto
3591         (acceptChange): ditto
3592         (rejectChange): ditto
3593         (changeCase): ditto
3594         (Delete): ditto
3595         (backspace): ditto
3596
3597         * BufferView.C (lockedInsetStoreUndo): do not convert iterator ->
3598         pointer
3599
3600 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
3601
3602         * text3.C (gotoInset): YABG (yet another bad getChar)
3603
3604 2003-04-29  André Pönitz  <poenitz@gmx.net>
3605
3606         * paragraph.h: make operator= private unimplemented as long as
3607           it is unusable
3608
3609         * ParagraphList.C: whitespace
3610
3611         * paragraph.[Ch]:
3612         * paragraph_pimpl.[Ch]:
3613         * paragraph_funcs.C:
3614         * CutAndPaste.C:
3615         * undo_funcs.C: whitespace + Paragraph *  -> Paragraph (const) &
3616
3617         * text2.C:
3618           undo_funcs.[Ch]: Paragraph * -> ParagraphList::iterator
3619
3620 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
3621
3622         * CutAndPaste.[Ch] (cutSelection): big rework, some bugs fixed
3623         * paragraph.[Ch] (erase):
3624         * paragraph_pimpl.[Ch] (erase): change return type and value
3625         * text2.C (cutSelection): some rework
3626
3627 2003-04-28  John Levon  <levon@movementarian.org>
3628
3629         * bufferlist.C: changes for unsaved changes dialog
3630
3631 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
3632
3633         * bufferlist.C (newFile): set language (messages_) for new
3634         documents also.
3635
3636         * buffer.C (readFile): ws changes only.
3637
3638 2003-04-28  André Pönitz  <poenitz@gmx.net>
3639
3640         * undo_funcs.C:
3641         * lyxfunc.C:
3642         * buffer.[Ch]:
3643         * BufferView_pimpl.C:
3644         * BufferView.C: getParFromID related ParagraphList::iterator changes
3645
3646 2003-04-28  André Pönitz  <poenitz@gmx.net>
3647
3648         * tabular.[Ch]: part of Lars' Paragraph * -> ParagraphList::iterator
3649           Changes
3650
3651 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
3652
3653         * messages.C: remove one more localedir class variable.
3654
3655 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
3656
3657         * messages.C (getLocaleDir): singleton generation function
3658         (Pimpl): use it.
3659         (Messages): add a default constructor.
3660
3661         * main.C (main): do not setup localedir here, do not call
3662         gettext_init.
3663
3664         * gettext.C (_): use it.
3665         (gettext_init): delete funciton
3666
3667 2003-04-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
3668
3669         * gettext.C (getLyXMessages): new singleton generating function.
3670
3671         * buffer.C (updateDocLang): adjust
3672
3673         * Makefile.am (messages.o): add target
3674         (main.o): remove target
3675
3676 2003-04-27  John Levon  <levon@movementarian.org>
3677
3678         * bufferlist.C:
3679         * lyx_cb.C:
3680         * lyxfunc.C:
3681         * lyxvc.C: specify cancel button in Alert::prompt
3682
3683 2003-04-26  John Levon  <levon@movementarian.org>
3684
3685         * text3.C:
3686         * lyxfunc.C:
3687         * lfuns.h:
3688         * LyXAction.C: add LFUN_INSET_SETTINGS
3689
3690         * lyxfunc.C: don't enable tabular-feature when there's
3691         just any locking inset
3692
3693 2003-04-26  John Levon  <levon@movementarian.org>
3694
3695         * bufferlist.C: re-add Cancel to buffer close question
3696
3697         * lyxfunc.C: fix import UI a bit
3698
3699 2003-04-25  John Levon  <levon@movementarian.org>
3700
3701         * gettext.C: remove the broken asserts for now
3702
3703 2003-04-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
3704
3705         * messages.C: make case where setlocale cannot comply work better.
3706
3707         * buffer.C (updateDocLang): new function
3708         (changeLanguage): use it
3709         (readFile): use it
3710
3711         * text2.C (setCounter): use B_ a bit.
3712
3713         * lyxlayout.C (Read): be sure to trim the label strings.
3714
3715         * messages.C (Messages): fix typo in comment
3716
3717         * buffer.C (readFile): set message_ after file is loaded.
3718         (makeDocBookFile): remove double return
3719         (changeLanguage): reset message_ upon language change.
3720         (B_): new func, use this to get translated buffer strings.
3721
3722         * main.C: add myself and Jean Marc as authors.
3723
3724 2003-04-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
3725
3726         * messages.[hC]: pimplify Messages, and three different pimpls to be
3727         used in different circumstances.
3728
3729         * gettext.[Ch]: change for use with new message code.
3730
3731 2003-04-24 André Pönitz <poenitz@gmx.net>
3732
3733         * factory.C: support for eqref
3734
3735 2003-04-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
3736
3737         * messages.[Ch]: add missing char
3738
3739         * Makefile.am (lyx_SOURCES): add messages.[Ch]
3740
3741         * messages.[Ch]: New files
3742
3743 2003-04-18  John Levon  <levon@movementarian.org>
3744
3745         * BufferView.h:
3746         * BufferView.C:
3747         * BufferView_pimpl.C:
3748         * lfuns.h:
3749         * LyXAction.C:
3750         * lyxtext.h:
3751         * text2.C: remove layout-copy/paste (bug 778)
3752
3753 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
3754
3755         * text2.C (redoParagraphs): eliminate good_prevrit, rewrite a loop
3756
3757 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
3758
3759         * bufferlist.C (quitWriteBuffer): WriteAs and MenuWrite return true
3760         if they succeed. Act accordingly.
3761
3762 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
3763
3764         * text2.C (setCharFont): adjust
3765         (setCounter): adjust
3766         (insertStringAsLines): adjust
3767
3768         * text.C (leftMargin): adjust
3769         (setHeightOfRow): adjust
3770
3771         * rowpainter.C (paintFirst): adjust
3772         (paintLast): adjust
3773
3774         * paragraph_funcs.C (depthHook): ParagraphList::iterators
3775         (outerHook): ditto
3776         (isFirstInSequence): ditto
3777         (getEndLabel): ditto
3778         (outerFont): adjust
3779
3780         * paragraph.C (getParLanguage): comment out some hard stuff.
3781
3782         * buffer.C (insertStringAsLines): take a ParagraphList as arg
3783         (sgmlError): ditto
3784         (simpleDocBookOnePar): ditto
3785         (makeDocBookFile): use ParagraphList::iterator
3786
3787         * CutAndPaste.C (pasteSelection): adjust
3788
3789 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
3790
3791         * text2.C (getFont): adjust
3792         (getLayoutFont): adjust
3793         (getLabelFont): adjust
3794
3795         * paragraph_funcs.C (TeXOnePar): adjust
3796
3797         * buffer.C (simpleLinuxDocOnePar): adjust
3798         (simpleDocBookOnePar): adjust
3799
3800         * CutAndPaste.C (pasteSelection): adjust
3801
3802         * BufferView.C (getEncoding): adjust
3803
3804         * paragraph_funcs.C (outerFont): prepare for a ParagraphList arg.
3805
3806 2003-04-16  John Levon  <levon@movementarian.org>
3807
3808         * lyxfind.C: use parlist stuff for search/changes
3809
3810 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
3811
3812         * undo_funcs.C (textHandleUndo): ajust (rather big adsjust this one)
3813
3814         * text2.C (deleteEmptyParagraphMechanism): adjust
3815
3816         * text2.[Ch] (ownerParagraph): delete func (both of them
3817
3818 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
3819
3820         * text_funcs.C (transposeChars): use ParagraphList::iterator here.
3821
3822 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
3823
3824         * ParagraphList.C: prepare for NO_NEXT
3825
3826 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
3827
3828         * text2.C (getFont): adjust
3829         (getLayoutFont): adjust
3830         (getLabelFont): adjust
3831
3832         * paragraph.C (getFont): adjust
3833         (getLabelFont): adjust
3834         (getLayoutFont): adjust
3835
3836         * paragraph_funcs.[Ch] (realizeFont): remove unneeded arguments.
3837
3838 2003-04-15  John Levon  <levon@movementarian.org>
3839
3840         From Angus Leeming
3841
3842         * lyx_main.C: handle Include in .ui files
3843
3844 2003-04-15  John Levon  <levon@movementarian.org>
3845
3846         * MenuBackend.C: make the doc files length shorter
3847
3848         * ToolbarBackend.h:
3849         * ToolbarBackend.C: handle toolbar placement flags,
3850         Minibuffer
3851
3852 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
3853
3854         * paragraph_pimpl.C (simpleTeXSpecialChars): take a outerfont arg,
3855         adjust
3856
3857         * paragraph_funcs.C (TeXOnePar): adjust
3858
3859         * paragraph.C (getLabelFont): add outerfont arg, adjust
3860         (getLayoutFont): ditto
3861         (simpleTeXOnePar): adjust
3862
3863         * paragraph_pimpl.C (realizeFont): delete func
3864
3865 2003-04-14  Alfredo Braunstein  <abraunst@libero.it>
3866
3867         * text2.C (beforeFullRowInset): added a bad getchar check, removed
3868         row argument, constify cur argument.
3869
3870 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
3871
3872         * text2.C (getFont): adjust
3873         (getLayoutFont): adjust
3874         (getLabelFont): adjust
3875
3876         * paragraph_funcs.C (TeXOnePar): adjust
3877         (outerFont): new func...
3878         (realizeFont): ...moved out from here, changed this to facilitate
3879         transition
3880
3881         * paragraph.C (getFont): take outerfont as arg, adjust
3882         (simpleTeXOnePar): add outerfont arg, adjust
3883
3884         * buffer.C (simpleLinuxDocOnePar): adjust
3885         (simpleDocBookOnePar): adjust
3886
3887         * CutAndPaste.C (pasteSelection): adjust
3888
3889         * BufferView.C (getEncoding): adjust
3890
3891 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
3892
3893         * text2.C (setCharFont): adjust
3894         (setCounter): adjust
3895
3896         * text.C (leftMargin): adjust
3897         (setHeightOfRow): adjust
3898
3899         * rowpainter.C (paintFirst): adjust
3900         (paintLast): adjust
3901
3902         * paragraph_pimpl.C (realizeFont): adjust
3903
3904         * paragraph.C (isFirstInSequence): move from here...
3905         * paragraph_funcs.C (isFirstInSequence): ...to here
3906
3907         * paragraph.C (outerHook): move from here...
3908         * paragraph_funcs.C (outerHook): ...to here
3909
3910         * paragraph.C (depthHook): move from here...
3911         * paragraph_funcs.C (depthHook): ...to here
3912
3913         * paragraph.C (getEndLabel): move from here...
3914         * paragraph_funcs.C (getEndLabel): ...to here
3915
3916         * text2.C (realizeFont): move from here...
3917         * paragraph_funcs.C (realizeFont): ...to here
3918
3919 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
3920
3921         * text3.C (gotoNextInset): use separate tmp vars for par and pos.
3922
3923 2003-04-14  Angus Leeming  <leeming@lyx.org>
3924
3925         * LColor.[Ch]: scrap LColor mathcursor.
3926
3927 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
3928
3929         * lyxlex.[Ch] (text): delete function
3930         * trans.C (Load): adjust
3931         * paragraph_funcs.C (readParToken): adjust
3932
3933 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
3934
3935         * lyxlex_pimpl.h: get rid of LEX_MAX_BUFF, change buff to be a
3936         vector<char> instead of a char[].
3937
3938         * lyxlex_pimpl.C (getString): adjust
3939         (next): adjust
3940         (lex): use getString
3941         (eatLine): adjust
3942         (nextToken): adjust
3943
3944         * lyxlex.C (text): use pimpl_->getString()
3945         (getBool): ditto
3946         (findToken): ditto
3947
3948 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
3949
3950         * text2.C (getInset): temp vars for cursor.par() and cursor.pos()
3951         (makeFontEntriesLayoutSpecific): temp var for par.size()
3952         (setLayout): temp var for ownerParagraphs().end()
3953         (fullRebreak): temp var for rows().end()
3954         (selectionAsString): temp var for boost::next(startpit), realize
3955         that the while really is a regular for loop.
3956         (cursorEnd): temp vars for cursor.row(), lastPos ++, only call
3957         setCursor in one place.
3958         (setParagraph): temp vr for ownerParagraphs().end()
3959         (updateCounters): make the while loop a for loop
3960         (cutSelection): temp var for ownerParagraphs().end()
3961         (updateInset): make the do {} while() a regular for loop
3962         (getCursorX): use temp vars
3963         (setCurrentFont): use temp vars
3964         (getColumnNearX): use temp vars
3965
3966 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
3967
3968         * text.C (transformChar): use temp var for getChar
3969         (computeBidiTables): use temp var for row->par()
3970         (fill): move temp vars for row->par() and pit->layout() earlier in
3971         the function.
3972         (labelFill): use temp var for row->par()
3973         (setHeightOfRow): do not allow rit to be RowList::end, get rid of
3974         asc and desc, realize that pit never changes and that firstpit is
3975         just a duplicate and not needed. Exchange rit->par() with pit in a
3976         lot of places.
3977         (breakAgain): use a temp var for boost::next(rit)
3978         (breakAgainOneRow): ditto
3979         (breakParagraph): use a temp var for rows().begin()
3980         (prepareToPrint): move nlh into minimal scope, use temp var for rit->par()
3981         (cursorRightOneWord): use temp var for cursor.par() and
3982         cursor.pos(), remove usage of tmpcursor.
3983         (cursorLeftOneWord): use temp var for cursor.par() and
3984         cursor.pos() only set cur at end of function.
3985
3986 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
3987
3988         * text.C, text2.C: exchange all usage of Paragraph::next with
3989         boost::next(ParagraphList::iterator)
3990
3991         * CutAndPaste.C (cutSelection): change 2. arg to a Paragraph*
3992
3993         * text2.C (cursorTop): simplify implementation
3994         (cursorBottom): ditto
3995         (setParagraph): use ParagraphList::iterator
3996         (setCurrentFont): adjust
3997         (getColumnNearX): adjust
3998         (cursorRight): adjust
3999         (cursorLeft): remove usage of Paragraph::previous
4000         (cursorUpParagraph): ditto
4001         (deleteEmptyParagraphMechanism): slight cleanup
4002
4003         * text.C (isBoundary): take a Paragraph const & instead of a
4004         pointer as arg.
4005         (addressBreakPoint): ditto
4006         (leftMargin): remove usage of Paragraph::previous.
4007         (setHeightOfRow): ditto
4008         (cursorLeftOneWord): ditto
4009         (selectNextWordToSpellcheck): ditto
4010         (Delete): ditto
4011         (backspace): ditto
4012         (breakParagraph): remove one usage of Paragraph::next
4013         (redoParagraph): ditto
4014         (acceptChange): ditto
4015         (insertChar): adjust
4016         (rowBreakPoint): adjust
4017
4018         * bufferview_funcs.C (toggleAndShow): adjust
4019
4020 2003-04-11  Alfredo Braunstein  <abraunst@libero.it>
4021
4022         * lyxrow.[Ch]: add a cached y position to a Row and Row::y()
4023         methods to access it.
4024         * lyxtext.h:
4025         * text.C: Added updateRowPositions to compute all row positions.
4026         Make top_y and getRowNearY() to use the cached y position
4027
4028 2003-04-11  John Levon  <levon@movementarian.org>
4029
4030         * text.C (rowBreakPoint): reintroduce the labelEnd
4031         checks, code copied from the row fill stuff. Deep voodoo.
4032
4033         * text.C (fill): add a comment and debugging for the
4034         next poor soul.
4035
4036 2003-04-11  John Levon  <levon@movementarian.org>
4037
4038         * text.C: make sure fullrow insets get wrapped to the next line,
4039         even when they're in a manual label
4040
4041 2003-04-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
4042
4043         * text2.C (insertParagraph): make it take ParagraphList::iterator
4044         as arg.
4045         (setLayout): make it return ParagraphList::iterator
4046         (redoParagraphs): ditto
4047         (setCounter): ditto
4048         (checkParagraph): ditto
4049
4050         * text.C (getRow): make getrow take ParagraphList::iterator as arg
4051
4052         * text2.C: adjust several funcs.
4053         (realizeFont): take a ParagraphList::iterator as arg.
4054         (getLayoutFont): ditto
4055         (getLabelFont): ditto
4056         (setCharFont): ditto
4057
4058         * text.C: adjust several funcs.
4059
4060 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
4061
4062         * text.C (selectNextWordToSpellcheck): don't accidentally
4063         skip insets
4064
4065 2003-04-10  John Levon  <levon@movementarian.org>
4066
4067         * ToolbarBackend.C (getIcon): special handling for
4068         LFUN_MATH_DELIM
4069
4070 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
4071
4072         * text2.C (cursorRight): a getChar assert fixed
4073
4074 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
4075
4076         * text2.C (getFont): change to take a ParagraphList::iterator
4077         instead of Paragraph*
4078         Adjust several functions.
4079
4080         * text.C (transformChar): change to take a ParagraphList::iterator
4081         instead of Paragraph*
4082         (singleWidth): ditto
4083         Adjust several functions.
4084
4085         * rowpainter.C: adjust several functions
4086         * rowpainter.h:store a ParagraphList::iterator and not a
4087         Paragraph&.
4088
4089
4090 2003-04-09  John Levon  <levon@movementarian.org>
4091
4092         * lyxfunc.C:
4093         * lfuns.h:
4094         * LyXAction.h:
4095         * LyXAction.C: remove LFUN_APROPOS, LFUN_GETTIP,
4096         and the "help" bits as well
4097
4098 2003-04-09  John Levon  <levon@movementarian.org>
4099
4100         * ToolbarBackend.h:
4101         * ToolbarBackend.C: allow multiple toolbars
4102
4103 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
4104
4105         * undo_funcs.C (setCursorParUndo): adjust
4106
4107         * text_funcs.C (transposeChars): adjust
4108
4109         * text3.C (gotoNextInset): adjust
4110         (dispatch): adjust
4111
4112         * text2.C (setLayout): adjust
4113         (changeDepth): adjust
4114         (setFont): adjust
4115         (redoParagraphs): adjust
4116         (selectionAsString): adjust
4117         (setParagraph): adjust
4118         (insertInset): adjust
4119         (cutSelection): adjust
4120         (copySelection): adjust
4121         (pasteSelection): adjust
4122         (insertStringAsLines): adjust
4123         (updateInset): adjust
4124         (setCursor): change to take a ParagraphList::iterator parameter
4125         (setCursorIntern): change to take a ParagraphList::iterator parameter
4126         (setCurrentFont): adjust
4127         (cursorLeft): adjust
4128         (cursorRight): adjust
4129         (deleteEmptyParagraphMechanism): adjust
4130
4131         * text.C (breakParagraph): adjust
4132         (insertChar): adjust
4133         (acceptChange): adjust
4134         (rejectChange): adjust
4135         (selectNextWordToSpellcheck): adjust
4136         (changeCase): adjust
4137         (Delete): adjust
4138         (backspace): adjust
4139
4140         * lyxfind.C (SearchForward): adjust
4141         (SearchBackward): adjust
4142         (nextChange): adjust
4143
4144         * lyxcursor.C (par): adjust
4145
4146         * lyxcursor.h: store a ParagraphList::iterator instead of a
4147         Paragraph*
4148
4149         * lyx_cb.C (getPossibleLabel): adjust
4150
4151         * bufferview_funcs.C (toggleAndShow): adjust
4152
4153         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
4154         (dispatch): adjust
4155
4156         * BufferView.C (removeAutoInsets): adjust
4157         (lockedInsetStoreUndo): adjust
4158
4159 2003-04-09  John Levon  <levon@movementarian.org>
4160
4161         * ToolbarBackend.C: try icon without argument
4162         if with argument fails
4163
4164 2003-04-08  John Levon  <levon@movementarian.org>
4165
4166         * ToolbarBackend.h:
4167         * ToolbarBackend.C: add getIcon(), handle tooltip,
4168         and change from "Icon" to "Item".
4169
4170 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
4171
4172         * BufferView.C (lockInset): another bad getchar crunched
4173
4174 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
4175
4176         * text2.C (changeDepth): do not setUndo on test_only (make undo work
4177         again)
4178
4179 2003-04-05  Alfredo Braunstein  <abraunst@libero.it>
4180
4181         * lyxfind.C (searchForward, searchBackwards): bug 782
4182
4183 2003-04-07  John Levon  <levon@movementarian.org>
4184
4185         * paragraph.C: remove dead comment
4186
4187         * text.C: remove troublesome depth-fiddling code
4188         in leftMargin() and rightMargin() (bug 1017)
4189
4190         * text.C: fix breaking of rows in nested lists
4191         (bug 1004)
4192
4193         * text2.C (updateCounters): fix up depth values
4194         (bug 1013)
4195
4196 2003-04-07  John Levon  <levon@movementarian.org>
4197
4198         * BufferView_pimpl.C: clear message when doc finishes resizing,
4199         and after a mouse event
4200
4201         * lyxfunc.C: clear message after exiting inset
4202
4203 2003-04-07  John Levon  <levon@movementarian.org>
4204
4205         * bufferview_funcs.C: show math status not outside
4206         status in the statusbar
4207
4208 2003-04-07  John Levon  <levon@movementarian.org>
4209
4210         * lyxfunc.C: note status changed after a depth change
4211
4212 2003-04-04  Angus Leeming  <leeming@lyx.org>
4213
4214         * LaTeX.h: move AuxInfo operator==, != out of line.
4215         Remove LaTeX virtual destructor; nothing derives from it.
4216         Move operator()() out of public area and rename it startscript().
4217         Change protected for private.
4218
4219 2003-04-04  Angus Leeming  <leeming@lyx.org>
4220
4221         * lyxfunc.C:
4222         * text2.C: remove unneeded #includes.
4223
4224 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
4225
4226         * text2.C (dEPM): fix the heigth of the next row
4227
4228 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
4229
4230         * text.C: squashed an invalid getChar requester + some ws changes
4231
4232 2003-04-03  John Levon  <levon@movementarian.org>
4233
4234         * bufferview_funcs.h:
4235         * bufferview_funcs.C:
4236         * lyxfunc.C:
4237         * lyxtext.h:
4238         * text2.C: make getStatus work for the env depth lfuns
4239
4240 2003-04-03  John Levon  <levon@movementarian.org>
4241
4242         * bufferview_funcs.h:
4243         * bufferview_funcs.C:
4244         * lyxfunc.C:
4245         * lyxtext.h:
4246         * text2.C: parlistize decDepth(), by merging it with incDepth()
4247
4248 2003-04-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
4249
4250         * lyxrow.h: store a ParagraphList::iterator instead of a
4251         Paragraph* and adjust other class functions to suit.
4252
4253         * lyxrow_funcs.C, text.C, text2.C, text3.C: adjust because of the
4254         above.
4255
4256 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
4257
4258         * text2.C (setCursor): do not anchor to cursor row for the time being
4259
4260 2003-04-02  John Levon  <levon@movementarian.org>
4261
4262         * LyXAction.C:
4263         * lfuns.h:
4264         * lyx_main.C:
4265         * lyxtext.h:
4266         * text.C:
4267         * text3.C: rename the "tab" lfuns. Remove tab support from normal text
4268
4269 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4270
4271         * paragraph.h: make ParagraphList and ParagraphList::iterator
4272         friends of Paragraph.
4273
4274         * buffer.C (makeLinuxDocFile): move towards ParagraphList
4275
4276         * ParagraphList.C: Use the private next_ and previous_ from
4277         Paragraph.
4278
4279 2003-04-01  John Levon  <levon@movementarian.org>
4280
4281         * ToolbarBackend.h:
4282         * ToolbarBackend.C:
4283         * Makefile.am: rename, remove defaults gunk
4284
4285         * MenuBackend.h:
4286         * MenuBackend.C: remove defaults gunk
4287
4288         * Languages.h:
4289         * Languages.C: remove defaults gunk
4290
4291         * lyx_main.h:
4292         * lyx_main.C: error out if files couldn't be found.
4293
4294 2003-04-02  John Levon  <levon@movementarian.org>
4295
4296         * text2.C: make incDepth() use parlist
4297
4298 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4299
4300         * undo_funcs.C (firstUndoParagraph): adjust
4301
4302         * text3.C (gotoInset): adjust
4303         (dispatch): adjust, and rewrite loop.
4304
4305         * text2.C (init): adjust, and rewrite loop.
4306         (redoParagraphs): adjust
4307         (updateInset): adjust, and rewrite loop.
4308         (deleteEmptyParagraphMechanism): adjust
4309
4310         * tabular.C (LyXTabular): adjust
4311         (SetMultiColumn): adjust
4312         (TeXRow): adjust
4313
4314         * lyxtext.[Ch] (ownerParagraph): delete function
4315         (ownerParagraphs): new function returns a ParagraphList.
4316
4317         * BufferView.C (removeAutoInsets): adjust
4318         (insertErrors): adjust
4319         (setCursorFromRow): adjust
4320
4321 2003-04-01  Angus Leeming  <leeming@lyx.org>
4322
4323         * BufferView_pimpl.C (buffer): ensure that the Layout is correct
4324         in the frontends.
4325
4326 2003-04-02  John Levon  <levon@movementarian.org>
4327
4328         * lyxtext.h:
4329         * text.C:
4330         * Makefile.am:
4331         * text_funcs.h:
4332         * text_funcs.C: make transposeChars a free function
4333
4334         * lyxrow_funcs.C: remove wrong comment
4335
4336 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4337
4338         * lyxtext.h: adjust
4339         * rowpainter.C: adjust
4340         * text.C: adjust
4341         * text2.C: adjust
4342         * text3.C: adjust
4343
4344         * lyxrow_funcs. [Ch]: new files
4345
4346         * lyxrow.[Ch]: remove next and previous pointers
4347         (next,previous): remove accessor functions
4348         (isParEnd): move to lyxrow_funcs
4349         (lastPos): move to lyxrow_funcs
4350         (nextRowIsAllInset): move to lyxrow_funcs
4351         (lastPrintablePos): move to lyxrow_funcs
4352         (numberOfSeparators): move to lyxrow_funcs
4353         (numberOfHfills): move to lyxrow_funcs
4354         (numberOfLabelHfills): move to lyxrow_funcs
4355         (hfillExpansion): move to lyxrow_funcs
4356
4357         * lyxfunc.C: adjust
4358
4359         * bufferview_funcs.C (toggleAndShow): adjust
4360
4361         * RowList.h: Remove class RowList from file leave just a
4362         std::list<Row>.
4363
4364         * RowList.C: delete file
4365
4366         * Makefile.am (lyx_SOURCES): remove RowList.C, add lyxrow_funcs.C
4367         and lyxrow_funcs.h
4368
4369 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4370
4371         * text3.C (cursorPrevious): adjust
4372         (cursorNext): adjust
4373         (dispatch): adjust
4374
4375         * text2.C (redoHeightOfParagraph): adjust
4376         (redoDrawingOfParagraph): adjust
4377         (setCursor): adjust
4378
4379         * text.C (breakParagraph): adjust
4380         (insertChar): adjust
4381         (backspace): adjust
4382
4383         * rowpainter.C (RowPainter): adjust
4384         (leftMargin): simplify and adjust
4385         (most rowpainter functions): adjust.
4386
4387         * rowpainter.h: store the row as RowList::iterator not as Row*
4388
4389         * lyxcursor.C (row): taka RowList::iterator as arg
4390         (irow): ditto
4391
4392         * lyxcursor.h: make the LyXCursor store RowList::iterators instead
4393         of Row*.
4394
4395 2003-04-01  Angus Leeming  <leeming@lyx.org>
4396
4397         * bufferview_funcs.C (string2font): rewrite so that it no longer uses
4398         stuff like bool Bool.
4399
4400 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
4401
4402         * text2.C (redoParagraphs): fix a bug (introduced by myself) and
4403         rewrite a loop
4404
4405 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4406
4407         * text2.C (redoParagraphs): rewrite (with help from Alfredo) for
4408         RowList::iterator.
4409
4410         * lyxtext.h (rows): drop one version and leve a const variant that
4411         returns a RowList::iterator.
4412
4413 2003-03-31  Angus Leeming  <leeming@lyx.org>
4414
4415         * text.C (fill): ensure that the signature is the same as that in the
4416         header file.
4417
4418 2003-03-31  Lars Gullik Bjønnes  <larsbj@gullik.net>
4419
4420         * text2.C (redoParagraphs): adjust
4421         (updateCounters): adjust
4422         (checkParagraph): adjust
4423         (getColumnNearX): adjust and reformat a bit.
4424
4425         * text.C (top_y): adjust
4426         (workWidth): adjust
4427         (leftMargin): adjust
4428         (prepareToPrint): adjust
4429         (getRow): adjust
4430         (getRowNearY): adjust
4431
4432         * lyxtext.h: make rowlist_ mutable.
4433
4434         * RowList.h: add const_iterator
4435         * RowList.C: adjust for RowList::const_iterator.
4436
4437         * text2.C (getCursorX): make it take a RowList::iterator as arg,
4438         adjust.
4439
4440 2003-03-31  John Levon  <levon@movementarian.org>
4441
4442         * lyxrc.h:
4443         * lyxrc.C: moved pdf_mode and use_gui to elsewhere
4444
4445         * lyx_main.C: set default fonts from using lyx_gui funcs
4446
4447         * exporter.C: pdf_mode moved from lyxrc
4448
4449         * lyx_cb.C:
4450         * lyxfunc.C: changes from above
4451
4452 2003-03-31  John Levon  <levon@movementarian.org>
4453
4454         * lyx_main.C: fix to the last fix
4455
4456 2003-03-31  John Levon  <levon@movementarian.org>
4457
4458         * bufferlist.C: "Load original" -> "Load Original"
4459
4460         * converter.C:
4461         * exporter.C:
4462         * importer.C:
4463         * lyx_main.C:
4464         * format.C: more Alert cleanups
4465
4466 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
4467
4468         * text2.C (removeParagraph): make it take a RowList::iterator as
4469         arg, adjust.
4470         (getColumnNearX): make it take a RowList::iterator as arg, adjust.
4471         (postRowPaint): make it take a RowList::iterator as arg, adjust.
4472
4473         * text.C (anchor_row): make it take a RowList::iterator as arg,
4474         adjust.
4475         (computeBidiTables): make it take a const reference to Row instead
4476         of Row pointer, adjust.
4477         (leftMargin): make it take a RowList::iterator as arg, adjust.
4478         (rowBreakPoint): adjust
4479         (breakAgainOneRow): make it take a RowList::iterator as arg,
4480         adjust.
4481         (prepareToPrint): make it take a RowList::iterator as arg, adjust.
4482
4483         * bufferview_funcs.C (toggleAndShow): adjust
4484
4485 2003-03-30  John Levon  <levon@movementarian.org>
4486
4487         * Makefile.am:
4488         * BoostFormat.h:
4489         * boost-inst.C: moved to support
4490
4491         * several files: changes as a result
4492
4493 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
4494
4495         * text2.C (LyXText): adjust.
4496         (init): adjust
4497         (removeRow): make it take a RowList::iterator as arg, adjust.
4498         (fullRebreak): adjust
4499         (deleteEmptyParagraphMechanism): adjust
4500         (clearPaint): adjust
4501         (postPaint): adjust
4502
4503         * text.C (top_y): adjust
4504         (setHeightOfRow): make it take a RowList::iterator as arg, adjust.
4505         (breakAgain): make it take a RowList::iterator as arg, adjust.
4506         (breakParagraph): adjust
4507         (insertChar): adjust
4508         (backspace): adjust
4509
4510         * lyxtext.h: make anchor_row_ be a RowList::iterator, ditto
4511         need_break_row, and refresh_row.
4512
4513         * text3.C (dispatch): adjust
4514
4515         * text2.C (checkParagraph): adjust
4516         (setCursor): adjust
4517         (setCursorFromCoordinates): adjust
4518
4519         * text.C (top_y): adjust
4520         (workWidth): adjust
4521         (getRow): make it return a RowList::iterator, adjust
4522         (getRowNearY): make it return a RowList::iterator, adjust
4523
4524         * text2.C (init): adjust
4525         (insertRow): remove function
4526         (insertParagraph): adjust
4527         (redoParagraphs): adjust
4528         (fullRebreak): adjust
4529         (updateCounters): adjust
4530
4531         * text.C (top_y): rewrite to use RowList iterators.
4532         (top_y): adjust
4533         (setHeightOfRow): rewrite to sue RowList iterators.
4534         (appendParagraph): adjust
4535         (breakAgain): adjust
4536         (breakAgainOneRow): adjust
4537         (breakParagraph): adjust
4538         (getRow): adjust
4539         (getRowNearY): adjust, and remove commented code.
4540
4541         * lyxtext.h (firstRow): delete function
4542         (lastRow): delete function
4543         (rows): new function (const and non-const versions.)
4544         (insertRow): delete function
4545
4546         * lyxrow.[Ch] (Row): new constructor taking a par and a pos
4547
4548 2003-03-29  John Levon  <levon@movementarian.org>
4549
4550         * BufferView_pimpl.C: always update scrollbar top
4551         because pasting text when we're anchored could mean we
4552         miss an update altogether
4553
4554 2003-03-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
4555
4556         * text2.C (init): use rowlist_.end() and not 0.
4557         (insertRow): change to take a RowList::iterator as arg, adjust
4558         for this.
4559         (insertParagraph): change to take a RowList::iterator as arg,
4560         adjust for this.
4561         (redoParagraphs): remove some debug msgs.
4562
4563         * text.C (appendParagraph): change to take a RowList::iterator
4564         arg, adjust for this.
4565         (breakAgain): add an assert
4566         (breakAgainOneRow): ditto
4567
4568 2003-03-29  John Levon  <levon@movementarian.org>
4569
4570         * text2.C: do not clear selection after inc/decDepth
4571         (bug 550)
4572
4573 2003-03-29  John Levon  <levon@movementarian.org>
4574
4575         * BufferView.C:
4576         * buffer.C: fix broken strerrors according to Lars
4577
4578 2003-03-29  John Levon  <levon@movementarian.org>
4579
4580         * converters.C: more Alert cleanups
4581
4582 2003-03-29  John Levon  <levon@movementarian.org>
4583
4584         * bufferview_funcs.C: remove pointless Alert
4585
4586         * buffer.C: fix confusing error message when
4587         a template is chmoded 000
4588
4589 2003-03-29  John Levon  <levon@movementarian.org>
4590
4591         * BufferView.C:
4592         * BufferView.h:
4593         * BufferView_pimpl.C: Alert fixes
4594
4595         * Makefile.am:
4596         * tabular.C:
4597         * tabular-old.C: remove unused table compat reading
4598
4599 2003-03-29  John Levon  <levon@movementarian.org>
4600
4601         * BufferView.C:
4602         * buffer.C:
4603         * lyx_cb.h:
4604         * lyx_cb.C: more Alert cleanups
4605
4606         * lyxfunc.C: don't allow chktex if not latex document
4607
4608 2003-03-29  John Levon  <levon@movementarian.org>
4609
4610         * lyx_cb.C:
4611         * BufferView.C:
4612         * buffer.C: warnings pushed down from support/,
4613         kill err_alert
4614
4615 2003-03-29  John Levon  <levon@movementarian.org>
4616
4617         * lyxfunc.C: safety check for C-r (revert)
4618
4619 2003-03-29  John Levon  <levon@movementarian.org>
4620
4621         * bufferlist.h:
4622         * bufferlist.C: several UI fixes using Alert::prompt.
4623         Fix the pointless looping quit code. Fix stupid revert
4624         behaviour (bug 938)
4625
4626         * lyxvc.h:
4627         * lyxvc.C:
4628         * lyx_cb.C: use Alert::prompt
4629
4630         * lyx_main.C: remove a silly question
4631
4632         * lyxfunc.C: remove a couple of silly questions,
4633         use Alert::prompt
4634
4635 2003-03-28  John Levon  <levon@movementarian.org>
4636
4637         * text2.C: fix bug 974 (End on empty par)
4638
4639 2003-03-28  John Levon  <levon@movementarian.org>
4640
4641         * BufferView_pimpl.C:
4642         * LyXAction.C:
4643         * lfuns.h: remove do-nothing math greek lfuns
4644
4645 2003-03-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
4646
4647         * lyxgluelength.h (isValidGlueLength): add default arg on
4648         parameter 2. Remove default arg from friend in class.
4649
4650         * lyxlength.h (isValidLength): add default arg on parameter 2.
4651         Remove default arg from friend in class.
4652
4653         * text2.C (LyXText): adjust, initialize refresh_row.
4654         (init): adjust
4655         (removeRow): adjust
4656         (insertRow): adjust
4657         (insertParagraph): adjst
4658         (redoParagraphs): adjust
4659         (fullRebreak): adjust
4660         (updateCounters): adjust
4661         (deleteEmptyParagraphMechanism): first attempt at fixing a
4662         crashing bug.
4663
4664         * text.C (top_y): adjust
4665         (setHeightOfRow): adjust
4666         (getRow): adjust
4667         (getRowNearY): adjust
4668
4669         * lyxtext.h: include RowList.h
4670         (~LyXText): not needed anymore, deleted.
4671         (firstRow): modify for RowList
4672         (lastRow): new function
4673         Delete firstrow and lastrow class variables, add a Rowlist
4674         rowlist_ class variable.
4675
4676         * lyxrow.C (lastPos): use empty() and not !size() to check if a
4677         paragraph is empty.
4678
4679         * RowList.C (insert): fix case where it == begin().
4680
4681 2003-03-26  Angus Leeming  <leeming@lyx.org>
4682
4683         * BufferView_pimpl.C (dispatch): changes to the Dialogs interface for
4684         the thesaurus dialog.
4685
4686 2003-03-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
4687
4688         * Makefile.am (lyx_SOURCES): add RowList.[Ch]
4689
4690         * RowList.[Ch]: new files
4691
4692         * ParagraphList.C (erase): handle the case where it == begin
4693         correctly.
4694
4695 2003-03-25  John Levon  <levon@movementarian.org>
4696
4697         * Makefile.am:
4698         * aspell_local.h:
4699         * aspell.C: add new aspell support
4700
4701         * lyxrc.h:
4702         * lyxrc.C: Make use_pspell be use_spell_lib. Always
4703         have it accessible.
4704
4705 2003-03-25  Angus Leeming  <leeming@lyx.org>
4706
4707         * lfuns.h:
4708         * LyXAction.C (init): new LFUN_INSET_INSERT.
4709
4710         * BufferView_pimpl.C (dispatch): split out part of the
4711         LFUN_INSET_APPLY block LFUN_INSET_INSERT.
4712
4713         * factory.C (createInset): act on LFUN_INSET_INSERT rather than
4714         LFUN_INSET_APPLY.
4715
4716 2003-03-25  Angus Leeming  <leeming@lyx.org>
4717
4718         * lyxfunc.C (dispatch): changes to the Dialogs interface.
4719
4720 2003-03-25  Alfredo Braunstein  <abraunst@libero.it>
4721
4722         * text2.C:
4723         * text3.C: remove useless row->height(0)
4724
4725 2003-03-25  John Levon  <levon@movementarian.org>
4726
4727         * lyxtext.h:
4728         * text2.C:
4729         * text3.C: rename the refreshing stuff to better names
4730
4731 2003-03-24  John Levon  <levon@movementarian.org>
4732
4733         * BufferView_pimpl.h:
4734         * BufferView_pimpl.C: update layout choice on a mouse
4735         press/release
4736
4737 2003-03-23  John Levon  <levon@movementarian.org>
4738
4739         * Makefile.am: fix commandtags.h reference
4740
4741 2003-03-22  John Levon  <levon@movementarian.org>
4742
4743         * BufferView_pimpl.C:
4744         * lyxtext.h:
4745         * rowpainter.C:
4746         * rowpainter.h:
4747         * text.C:
4748         * text2.C: remove CHANGED_IN_DRAW, it cannot happen now
4749
4750 2003-03-21  Alfredo Braunstein  <abraunst@libero.it>
4751
4752         * lyxtext.h:
4753         * text.C: take the rtl methods out of line
4754
4755 2003-03-21 André Pönitz <poenitz@gmx.net>
4756
4757         * metricsinfo.[Ch]: new files containing structures to be passed around
4758         during the two-phase-drawing...
4759
4760 2003-03-21 André Pönitz <poenitz@gmx.net>
4761
4762         * lyxtextclass.C: read 'environment' tag.
4763
4764 2003-03-20  Alfredo Braunstein  <abraunst@libero.it>
4765
4766         * text2.C (removeRow): fix bug 964
4767
4768 2003-03-20  John Levon  <levon@movementarian.org>
4769
4770         * rowpainter.C:
4771         * text.C:
4772         * text2.C: paint cleanups. Inset::update() dropped font
4773         parameter
4774
4775 2003-03-19  John Levon  <levon@movementarian.org>
4776
4777         * lyxfunc.C: only fitcursor/markDirty if available()
4778
4779 2003-03-19  John Levon  <levon@movementarian.org>
4780
4781         * commandtags.h: rename to ...
4782
4783         * lfuns.h: ... this, and renumber / cleanup
4784
4785 2003-03-19  John Levon  <levon@movementarian.org>
4786
4787         * lyxfunc.C: mark buffer dirty if we executed a "dirtying" lfun.
4788         fit the cursor after an lfun
4789
4790         * BufferView.h:
4791         * BufferView.C:
4792         * BufferView_pimpl.h:
4793         * BufferView_pimpl.C: remove BufferView::FITCUR/CHANGE
4794
4795         * LyXAction.C: layout-character should have ReadOnly
4796
4797         * ParagraphParameters.C:
4798         * buffer.C:
4799         * bufferview_funcs.C:
4800         * lyx_cb.C:
4801         * lyxfind.C:
4802         * lyxtext.h:
4803         * text.C:
4804         * text2.C:
4805         * text3.C:
4806         * undo_funcs.C: changes from above
4807
4808 2003-03-18  John Levon  <levon@movementarian.org>
4809
4810         * BufferView_pimpl.C (scrollDocView): add updateLayoutChoice(),
4811         remove it from update()
4812
4813         * lyxfunc.C: update layout choice after an lfun
4814
4815         * text3.C: remove extra updateLayoutChoice()s
4816
4817 2003-03-18  John Levon  <levon@movementarian.org>
4818
4819         * text.C: top_y change means full repaint, fix
4820         a drawing bug with cursor movement
4821
4822 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
4823
4824         * lyxtext.h:
4825         * text.C:
4826         * text2.C: anchor row on setCursor
4827
4828 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
4829
4830         * lyxtext.h: remove almost all mutable keywords
4831         * text.C:
4832         * text2.C:
4833         * text3.C: remove const keywords accordingly
4834
4835 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
4836
4837         * paragraph_funcs.C (TeXDeeper): reduce number of args, move into
4838         anon namespace
4839         (TeXEnvironment): ditto
4840         (TeXOnePar): ditto
4841
4842 2003-03-17  John Levon  <levon@movementarian.org>
4843
4844         * text.C (rowBreakPoint): remove attempt to fix displayed
4845         math insets inside a manual label
4846
4847 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
4848
4849         * lyxtext.h: remove BufferView* as first arg from almost all class
4850         functions.
4851         * other files: adjust.
4852
4853 2003-03-17  John Levon  <levon@movementarian.org>
4854
4855         * lyxtext.h:
4856         * undo_funcs.C:
4857         * text2.C: more paint cleanups
4858
4859         * BufferView_pimpl.C: screen prototype changed, use postPaint etc.
4860
4861         * rowpainter.h:
4862         * rowpainter.C: remove "smart" background painting code
4863
4864 2003-03-16  John Levon  <levon@movementarian.org>
4865
4866         * lyxtext.h:
4867         * text.C:
4868         * text2.C:
4869         * text3.C: add helper functions for setting refresh_row/y
4870
4871 2003-03-14  Kayvan Sylvan  <kayvan@sylvan.com>
4872
4873         * paragraph_pimpl.C (simpleTeXSpecialChars): Added fix for the
4874         newline inset which *can* get inserted in the pass_thru layouts.
4875         This is primarily for literate documents.
4876
4877 2003-03-14  Dekel Tsur  <dekelts@tau.ac.il>
4878
4879         * buffer.C: increment LYX_FORMAT to 223
4880
4881 2003-03-14 André Pönitz <poenitz@gmx.net>
4882
4883         * textclass.h: prepare for environment handling, ws changes
4884         * lyxlayout.C: read latexheader and latexfooter tags
4885
4886 2003-03-14  John Levon  <levon@movementarian.org>
4887
4888         * text2.C: rewrite ::status() a bit
4889
4890 2003-03-13  John Levon  <levon@movementarian.org>
4891
4892         * lyxtext.h: add some docs
4893
4894 2003-03-13  John Levon  <levon@movementarian.org>
4895
4896         * lyxtext.h:
4897         * text.C:
4898         * text2.C:
4899         * text3.C: remove pointless 2nd arg to setHeightOfParagraph()
4900
4901 2003-03-13  John Levon  <levon@movementarian.org>
4902
4903         * text3.C: fix appendix redrawing
4904
4905 2003-03-13  John Levon  <levon@movementarian.org>
4906
4907         * text.C (setHeightOfRow):
4908         * rowpainter.h:
4909         * rowpainter.C: make appendix mark have the text
4910           "Appendix" so the user knows what it is
4911
4912         * LColor.h:
4913         * LColor.C: s/appendixline/appendix/ from above
4914
4915 2003-03-13  John Levon  <levon@movementarian.org>
4916
4917         * paragraph_pimpl.C: fix Andre's backing out of the strong assertion
4918
4919         * text.C: fix a getChar(pos) bug properly
4920
4921 2003-03-13  Angus Leeming  <leeming@lyx.org>
4922
4923         * commandtags.h:
4924         * LyXAction.C (init): new LFUNs PARAGRAPH_APPLY and PARAGRAPH_UPDATE.
4925         Probably only temporary. Let's see how things pan out.
4926
4927         * BufferView.C (unlockInset):
4928         * BufferView_pimpl.C (fitCursor):
4929         replace Dialogs::updateParagraph with dispatch(LFUN_PARAGRAPH_UPDATE).
4930
4931         * BufferView_pimpl.C (dispatch): code for LFUNs LAYOUT_PARAGRAPH,
4932         PARAGRAPH_UPDATE, PARAGRAPH_APPLY.
4933
4934         * ParagraphParameters.[Ch] (setParagraphParams, params2string):
4935         new functions that convert ParagraphParameters to and from a string.
4936
4937         * lyxfunc.C (dispatch): move LFUN_LAYOUT_PARAGRAPH to
4938         BufferView::Pimpl's dispatch.
4939         In LFUN_ESCAPE, dispatch LFUN_PARAGRAPH_UPDATE.
4940
4941 2003-03-13 André Pönitz <poenitz@gmx.net>
4942
4943         * lyxfunc.C:
4944         * text3.C:
4945         * factory.C: make it aware of InsetEnv
4946
4947 2003-03-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
4948
4949         * text2.C (setCursor): never ask for one past last
4950         (setCursor): add some debugging messages.
4951
4952         * text.C (singleWidth): never ask for one past last
4953         (singleWidth): ditto
4954         (leftMargin): ditto
4955         (rightMargin): ditto
4956         (rowBreakPoint): ditto
4957         (setHeightOfRow): ditto
4958         (prepareToPrint): ditto
4959
4960         * rowpainter.C (paintBackground): never ask for one past last
4961         (paintText): never ask for one past last
4962
4963         * paragraph_pimpl.C (getChar): make the assert stricter, never
4964         allow the one past last pos to be taken
4965
4966         * paragraph.C (getChar): ws changes only
4967
4968         * lyxrow.C (nextRowIsAllInset): never ask for one past last
4969         (numberOfSeparators): ditto
4970         (numberOfHfills): ditto
4971
4972 2003-03-12  John Levon  <levon@movementarian.org>
4973
4974         * author.h:
4975         * author.C:
4976         * bufferparams.h:
4977         * bufferparams.C:
4978         * paragraph_funcs.C: fix per-buffer authorlists
4979
4980 2003-03-12  John Levon  <levon@movementarian.org>
4981
4982         * text.C: fix newline in right address
4983
4984 2003-03-12  Angus Leeming  <leeming@lyx.org>
4985
4986         * BufferView_pimpl.C (dispatch): remove LFUNs from switch as they
4987         duplicate those in LyXFunc::dispatch.
4988
4989         * commandtags.h:
4990         * LyXAction.C:
4991         * ToolbarDefaults.C:
4992         rename LFUN_FREE as LFUN_FONTFREE_APPLY.
4993         Add LFUN_FONTFREE_UPDATE.
4994
4995         * lyxfunc.C (dispatch): code for LFUN_FREEFONT_APPLY,
4996         LFUN_FREEFONT_UPDATE, LFUN_LAYOUT_CHARACTER.
4997
4998         * bufferview_func.[Ch]: several new functions to facilliate
4999         transfer of data to and from the character dialog.
5000
5001 2003-03-12  John Levon  <levon@movementarian.org>
5002
5003         * buffer.C:
5004         * paragraph.h:
5005         * paragraph.C:
5006         * paragraph_funcs.C:
5007         * paragraph_pimpl.C:
5008         * sgml.C:
5009         * tabular.C:
5010         * text.C:
5011         * text3.C: remove META_NEWLINE in favour of an inset
5012
5013         * rowpainter.h:
5014         * rowpainter.C: remove paintNewline (done by inset)
5015
5016 2003-03-12  John Levon  <levon@movementarian.org>
5017
5018         * paragraph_pimpl.C: complain about bad getChar()s
5019         for a while at least
5020
5021 2003-03-12  John Levon  <levon@movementarian.org>
5022
5023         * buffer.h:
5024         * buffer.C: move paragraph read into a separate function,
5025         a little renaming to reflect that.
5026
5027         * bufferparams.h:
5028         * bufferparams.C: remove the author_ids map, not necessary now
5029
5030         * factory.h:
5031         * factory.C: moved Buffer::readInset to here
5032
5033         * paragraph_funcs.h:
5034         * paragraph_funcs.C: readParagraph free function moved from
5035         buffer.C
5036
5037         * tabular.C: name change
5038
5039 2003-03-12  John Levon  <levon@movementarian.org>
5040
5041         * buffer.C:
5042         * ParagraphParameters.C: move par params input to
5043         a read() method
5044
5045         * lyxlex_pimpl.C: make nextToken()/next() after a pushToken()
5046         behave like a normal read from the stream wrt reading
5047         a line vs. a \\token
5048
5049 2003-03-12  John Levon  <levon@movementarian.org>
5050
5051         * paragraph.C:
5052         * ParagraphParameters.h:
5053         * ParagraphParameters.C: move output code to a
5054         ::write() method
5055
5056 2003-03-12  John Levon  <levon@movementarian.org>
5057
5058         * BufferView.C (insertLyXFile):
5059         * buffer.h:
5060         * buffer.C:
5061         * tabular.C: use a parlist iterator for creating the
5062           document.
5063
5064 2003-03-12  John Levon  <levon@movementarian.org>
5065
5066         * buffer.C: make current_change static local not
5067           static file-scope
5068
5069 2003-03-12  John Levon  <levon@movementarian.org>
5070
5071         * buffer.C: fix insertStringAsLines for change tracking
5072
5073 2003-03-12  John Levon  <levon@movementarian.org>
5074
5075         * BufferView.C:
5076         * tabular.C:
5077         * buffer.h:
5078         * buffer.C:
5079         * bufferparams.h:
5080         * bufferparams.C: move author list into params. Rename some
5081           functions. Move the header reading into a separate token
5082           loop. Move the header token reading into BufferParams.
5083
5084 2003-03-12  John Levon  <levon@movementarian.org>
5085
5086         * changes.C: put debug inside lyxerr.debugging() checks
5087
5088 2003-03-11 André Pönitz <poenitz@gmx.net>
5089
5090         * factory.C: make it aware of InsetHFill
5091
5092 2003-03-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5093
5094         * buffer.C (latexParagraphs): move function from here...
5095         * paragraph_funcs.C (latexParagraphs): ...to here, and adjust
5096         args.
5097
5098 2003-03-10  Angus Leeming  <leeming@lyx.org>
5099
5100         * LyXAction.C (init): fix bug in poplating array with multiple entries
5101         with the same LFUN (spotted by JMarc).
5102
5103 2003-03-10  John Levon  <levon@movementarian.org>
5104
5105         * text.C:
5106         * text2.C: move getColumnNearX() near its
5107         only call site
5108
5109 2003-03-10  John Levon  <levon@movementarian.org>
5110
5111         * text.C: fix break before a minipage
5112
5113 2003-03-10  John Levon  <levon@movementarian.org>
5114
5115         * text.C: fix the last commit
5116
5117 2003-03-09  John Levon  <levon@movementarian.org>
5118
5119         * lyxtext.h:
5120         * text.C:
5121         * text2.C: clean up nextBreakPoint (now rowBreakPoint). Fix
5122         bug 365 (don't break before insets unless needed). Don't
5123         return a value > last under any circumstances.
5124
5125 2003-03-09  Angus Leeming  <leeming@lyx.org>
5126
5127         * BufferView_pimpl.C (trackChanges, dispatch): call
5128         Dialogs::show("changes") rather than Dialogs::showMergeChanges().
5129
5130 2003-03-09  Angus Leeming  <leeming@lyx.org>
5131
5132         * lyxfunc.C (dispatch): call Dialogs::show("about") rather
5133         than Dialogs::showAboutlyx().
5134
5135 2003-03-09  Angus Leeming  <leeming@lyx.org>
5136
5137         * factory.C (createInset): call Dialogs::show("tabularcreate") rather
5138         than Dialogs::showTabularCreate().
5139
5140 2003-03-09  John Levon  <levon@movementarian.org>
5141
5142         * lyxtext.h:
5143         * text.C:
5144         * text2.C: 3rd arg to nextBreakPoint was always the same.
5145           Use references.
5146
5147 2003-03-08  John Levon  <levon@movementarian.org>
5148
5149         * lyxrow.C:
5150         * paragraph.C:
5151         * paragraph.h:
5152         * rowpainter.C:
5153         * text.C:
5154         * text2.C: Remove the "main" bit from the "main body"
5155           notion.
5156
5157 2003-03-08  John Levon  <levon@movementarian.org>
5158
5159         * text.C (leftMargin): The left margin of an empty
5160         manual label paragraph should not include the label width
5161         string length.
5162
5163         * text.C (prepareToPrint): don't attempt to measure hfills
5164         for empty manual label paragraphs - the answer should be 0
5165
5166 2003-03-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
5167
5168         * CutAndPaste.C: remove commented code and reindent.
5169
5170 2003-03-08  John Levon  <levon@movementarian.org>
5171
5172         * lyxfunc.h:
5173         * lyxfunc.C: move reloadBuffer()
5174
5175         * BufferView.h:
5176         * BufferView.C: to here
5177
5178         * lyxvc.C: add comment
5179
5180         * vc-backend.h:
5181         * vc-backend.C: call bv->reload() to avoid
5182           getStatus() check on MENURELOAD
5183
5184 2003-03-07  Dekel Tsur  <dekelts@tau.ac.il>
5185
5186         * LaTeX.C (run): Fix a bug where the DVI file was not updated due
5187         to an old format .dep file.
5188
5189 2003-03-07  Angus Leeming  <leeming@lyx.org>
5190
5191         * text3.C (dispatch): remove the 'gross hack' of calling inset->edit
5192         when the LFUN_MOUSE_RELEASE should have been handled by
5193         inset->localDispatch.
5194
5195 2003-03-07  Angus Leeming  <leeming@lyx.org>
5196
5197         * BufferView_pimpl.C (dispatch):
5198         * LyXAction.C (init):
5199         * ToolbarDefaults.C (init):
5200         * commandtags.h:
5201         * lyxfunc.C (getStatus):
5202         remove LFUN_INSET_GRAPHICS.
5203
5204         * factory.C (createInset): add "graphics" to LFUN_INSET_APPLY.
5205
5206 2003-03-07  Angus Leeming  <leeming@lyx.org>
5207
5208         * commandtags.h:
5209         * LyXAction.C (init):
5210         * lyxfunc.C (getStatus): remove LFUN_REF_INSERT.
5211
5212         * lyxfunc.C (getStatus): add LFUN_DIALOG_SHOW_NEW_INSET to switch.
5213
5214         * commandtags.h:
5215         * LyXAction.C: add LFUN_INSET_DIALOG_UPDATE.
5216
5217         * lyxfunc (dispatch): on LFUN_DIALOG_UPDATE, pass the 'open' inset's
5218         localDispatch method LFUN_INSET_DIALOG_UPDATE.
5219
5220 2003-03-07  Angus Leeming  <leeming@lyx.org>
5221
5222         * lyxfunc.C (dispatch): add "include" to LFUN_SHOW_NEW_INSET and
5223         remove "ert".
5224
5225 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
5226
5227         * ParagraphList.C (front): new function
5228         (back): implement
5229
5230 2003-03-06  Alfredo Braunstein  <abraunst@libero.it>
5231
5232         * lyxtext.h (top_y): added these 2 methods, and private vars top_row_
5233         and top_row_offset_. removed var first_y.
5234         * text.C (top_y):
5235         * text2.C (LyXText, removeRow):
5236         * text3.C:
5237         * BufferView_pimpl.C:
5238         use these methods instead of using first_y
5239
5240 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
5241
5242         * text2.C (pasteSelection): adjust for checkPastePossible
5243
5244         * CutAndPaste.C: remove Paragraph * buf and replace with
5245         ParagraphList paragraphs.
5246         (DeleteBuffer): delete
5247         (cutSelection): change the tc type to textclass_type
5248         (copySelection): change the tc type to textclass_type
5249         (copySelection): adjust for ParagraphList
5250         (pasteSelection): change the tc type to textclass_type
5251         (pasteSelection): adjust for Paragraphlist
5252         (nrOfParagraphs): simplify for ParagraphList
5253         (checkPastePossible): simplify for ParagraphList
5254         (checkPastePossible): remove unused arg
5255
5256         * ParagraphList.C (insert): handle the case where there are no
5257         paragraphs yet.
5258
5259         * CutAndPaste.h: make CutAndPaste a namespace.
5260
5261         * text3.C (dispatch): adjust
5262
5263         * text.C (breakParagraph): add a ParagraphList as arg
5264
5265         * paragraph_funcs.C (breakParagraph): change to take a
5266         BufferParams and a ParagraphList as args.
5267         (breakParagraphConservative): ditto
5268         (mergeParagraph): ditto
5269         (TeXDeeper): add a ParagraphList arg
5270         (TeXEnvironment): ditto
5271         (TeXOnePar): ditto
5272
5273         * buffer.C (readLyXformat2): adjust
5274         (insertStringAsLines): adjust
5275         (latexParagraphs): adjust
5276
5277         * CutAndPaste.C (cutSelection): use 'true' not '1' as truth value.
5278         (cutSelection): adjust
5279         (pasteSelection): adjust
5280
5281         * BufferView_pimpl.C (insertInset): adjust
5282
5283 2003-03-05  Angus Leeming  <leeming@lyx.org>
5284
5285         * commandtags.h:
5286         * LyXAction.C (init):
5287         * BufferView_pimpl.C (dispatch):
5288         * lyxfunc.C (getStatus):
5289         remove LFUN_CHILD_INSERT.
5290
5291         * factory.C (createInset): add "include" to LFUN_INSET_APPLY.
5292
5293 2003-03-05  Angus Leeming  <leeming@lyx.org>
5294
5295         * commandtags.h:
5296         * LyXAction.C (init):
5297         * src/factory.C (createInset):
5298         * lyxfunc.C (getStatus):
5299         * text3.C (dispatch):
5300         remove LFUN_INSET_EXTERNAL and LFUN_INSERT_URL
5301
5302         * factory.C (createInset): add "external" to LFUN_INSET_APPLY.
5303
5304 2003-03-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
5305
5306         * ParagraphList.C (insert): handle insert right before end()
5307         (erase): fix cases where it can be first or last paragraph.
5308
5309 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
5310
5311         * paragraph_funcs.C (TeXEnvironment): remove all usage of
5312         Paragraph::next and Paragraph::previous
5313         (TeXOnePar): ditto
5314
5315         * text.C (breakParagraph): adjust
5316
5317         * paragraph_funcs.C (breakParagraph): take a Buffer* instead of a
5318         BufferParams& as arg.
5319         (breakParagraph): use ParagraphList::insert
5320         (breakParagraphConservative): take a Buffer* instead of a
5321         BufferParams& as arg.
5322         (breakParagraphConservative): use ParagraphList::insert.
5323
5324         * buffer.C (insertStringAsLines): un-const it
5325         (insertStringAsLines): adjust
5326
5327         * ParagraphList.C (insert): new function
5328
5329         * CutAndPaste.C (pasteSelection): adjust
5330
5331         * text.C (backspace): adjust
5332
5333         * tabular.C (SetMultiColumn): adjust
5334
5335         * CutAndPaste.C (cutSelection): adjust
5336         (pasteSelection): adjust
5337
5338         * tabular.C (SetMultiColumn): make it take a Buffer* instead of a
5339         Buffer const * as arg
5340
5341         * ParagraphList.C (erase): new function
5342         * paragraph_funcs.C (mergeParagraph): use it
5343         (mergeParagraph): make it take a Buffer* instead of a
5344         BufferParams* as arg
5345
5346         * paragraph_funcs.C (breakParagraph): take ParagraphList::iterator
5347         as arg
5348         (breakParagraphConservative): ditto
5349
5350         * paragraph.h: remove the breakParagraph friend
5351
5352         * paragraph.C (eraseIntern): new function
5353         (setChange): new function
5354
5355         * paragraph_funcs.C (mergeParagraph): make it take a
5356         ParagraphList::iterator instead of a Paragraph *, adjust
5357         accordingly.
5358
5359         * paragraph.h: move an #endif so that the change tracking stuff
5360         also works in the NO_NEXT case.
5361
5362 2003-03-04  Angus Leeming  <leeming@lyx.org>
5363
5364         * commandtags.h:
5365         * LyXAction.C: new LFUN_INSET_MODIFY.
5366
5367         * BufferView_pimpl.C (dispatch): if an inset is found to be open
5368         on LFUN_INSET_APPLY, pass LFUN_INSET_MODIFY to its localDispatch.
5369
5370 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
5371
5372         * several files: ws changes only
5373
5374         * paragraph_funcs.C (TeXOnePar): take ParagraphList::iterator as args
5375         (TeXEnvironment): ditto
5376         (TeXDeeper): ditto
5377
5378         * buffer.C (makeLaTeXFile): adjust
5379         (latexParagraphs): make it take ParagraphList::iterator as args
5380
5381 2003-03-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
5382
5383         * buffer.C (latexParagraphs): adjust
5384
5385         * paragraph.C (TeXOnePar): move function...
5386         (optArgInset): move function...
5387         (TeXEnvironment): move function...
5388         * paragraph_pimpl.C (TeXDeeper): move function...
5389         * paragraph_funcs.C: ...here
5390
5391         * tabular.C (UseParbox): rewrite to use ParagraphList iterators.
5392
5393 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5394
5395         * buffer.C (readInset): remove compability code for old Figure and
5396         InsetInfo insets
5397
5398 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5399
5400         * buffer.C: ws changes
5401         (readInset):
5402
5403         * BufferView_pimpl.C: ditto
5404         * author.C: ditto
5405         * buffer.h: ditto
5406         * bufferlist.h: ditto
5407         * changes.h: ditto
5408         * lyxfunc.C: ditto
5409
5410 2003-02-28  Alfredo Braunstein <abraunst@libero.it>
5411
5412         * converter.[Ch]: split into itself +
5413         * graph.[Ch]
5414         * format.[Ch]
5415         * Makefile.am: += graph.[Ch] + format.[Ch]
5416         * MenuBackend.C
5417         * buffer.C
5418         * exporter.C
5419         * importer.C
5420         * lyx_main.C
5421         * lyxfunc.C
5422         * lyxrc.C: added #include "format.h"
5423
5424 2003-02-27  Angus Leeming  <leeming@lyx.org>
5425
5426         * BufferView_pimpl.C (dispatch): call a real, LyX dialog to insert
5427           a label.
5428
5429         * factory.C (createInset): add "label" to the factory.
5430
5431         * lyx_cb.[Ch] (getPossibleLabel): rewrite MenuInsertLabel to return the
5432           string and do no more.
5433
5434 2003-02-27  Angus Leeming  <leeming@lyx.org>
5435
5436         * commandtags.h:
5437         * LyXAction.C (init):
5438         * factory.C (createInset):
5439         * BufferView_pimpl.C (dispatch):
5440           collapse LFUN_XYZ_APPLY to LFUN_INSET_APPLY.
5441
5442         * lyxfunc.C (getStatus): remove LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY.
5443
5444         * lyxfunc.C (dispatch):
5445         * text3.C (dispatch): pass name to params2string.
5446
5447 2003-02-26  Angus Leeming  <leeming@lyx.org>
5448
5449         * BufferView_pimpl.C (dispatch): collapse the various LFUN_XYZ_APPLY
5450           blocks together.
5451           Rearrange the ~includes. Strip out the unnecessary ones.
5452
5453         * factory.C (createInset): reformat.
5454           create new insets for the various LFUN_XYZ_APPLY lfuns.
5455
5456 2003-02-26  John Levon  <levon@movementarian.org>
5457
5458         * lyxrow.h:
5459         * lyxrow.C: add isParStart,isParEnd helpers
5460
5461         * paragraph.h: make isInserted/DeletedText take refs
5462
5463         * paragraph_funcs.h:
5464         * paragraph_funcs.C: remove #if 0'd code
5465
5466         * lyxtext.h:
5467         * text3.C:
5468         * text2.C:
5469         * text.C: use lyxrow helpers above.
5470           Move draw and paint routines to RowPainter.
5471           Make several methods use refs not pointers.
5472           Make backgroundColor() const.
5473           Add markChangeInDraw(), isInInset().
5474           Merge changeRegionCase into changeCase.
5475           Make workWidth() shouldn't-happen code into an Assert.
5476
5477         * rowpainter.h:
5478         * rowpainter.C: new class for painting a row.
5479
5480         * vspace.h:
5481         * vspace.C: make inPixels take a ref
5482
5483 2003-02-26  Angus Leeming  <leeming@lyx.org>
5484
5485         * BufferView_pimpl.C (dispatch): use InsetCommand::localDispatch for
5486         LFUN_REF_APPLY.
5487
5488 2003-02-25  John Levon  <levon@movementarian.org>
5489
5490         * ispell.C: give the forked command a more accurate name
5491
5492 2003-02-22  John Levon  <levon@movementarian.org>
5493
5494         * toc.h:
5495         * toc.C: make TocItem store an id not a Paragraph *
5496           (bug #913)
5497
5498 2003-02-21  Angus Leeming  <leeming@lyx.org>
5499
5500         * commandtags.h: Retire LFUN_CITATION_INSERT, LFUN_CITATION_CREATE,
5501           LFUN_INSERT_BIBTEX, LFUN_BIBTEX_STYLE, LFUN_BIBDB_ADD, LFUN_BIBDB_DEL.
5502           Bring to life LFUN_DIALOG_SHOW_NEW_INSET, LFUN_DIALOG_SHOW_NEXT_INSET,
5503           LFUN_DIALOG_UPDATE, LFUN_DIALOG_HIDE, LFUN_DIALOG_DISCONNECT_INSET,
5504           LFUN_BIBITEM_APPLY, LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY,
5505           LFUN_INDEX_APPLY, LFUN_REF_APPLY, LFUN_TOC_APPLY, LFUN_URL_APPLY,
5506
5507         * BufferView_pimpl.C (dispatch):
5508         * LyXAction.C (init):
5509         * factory.C (createInset):
5510         * lyxfunc.C (getStatus, dispatch):
5511         * text3.C (dispatch): retire old LFUNs and bring new ones to life.
5512
5513 2003-02-21  Angus Leeming  <leeming@lyx.org>
5514
5515         * BufferView_pimpl.C (MenuInsertLyXFile):
5516         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
5517         * lyxfunc.C (menuNew, open, doImport):
5518           no longer pass a LyXView & to fileDlg.
5519
5520 2003-02-21  Angus Leeming  <leeming@lyx.org>
5521
5522         * BufferView_pimpl.C: replace insetbib.h with insetbibtex.h.
5523         * LyXAction.C: change, BIBKEY to BIBITEM.
5524         * buffer.C: replace insetbib.h with insetbibitem.h and insetbibtex.h.
5525         Change InsetBibKey to InsetBibitem.
5526         Change BIBKEY_CODE to BIBITEM_CODE.
5527         * commandtags.h: change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
5528         * factory.C: replace insetbib.h with insetbibitem.h.
5529         Change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
5530         * paragraph.C: replace insetbib.h with insetbibitem.h.
5531         * paragraph.[Ch]: change InsetBibKey to InsetBibitem.
5532         Change bibkey() to bibitem().
5533         * text.C: remove insetbib.h.
5534         * text2.C: replace insetbib.h with insetbibitem.h.
5535         change bibkey() to bibitem().
5536         * text3.C: remove insetbib.h.
5537         change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
5538
5539 2003-02-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5540
5541         * lyxrc.C (output): enclose user email in quotes (in case there are
5542         several words)
5543
5544 2003-02-18  John Levon  <levon@movementarian.org>
5545
5546         * buffer.h: add std::
5547
5548 2003-02-17  John Levon  <levon@movementarian.org>
5549
5550         * SpellBase.h:
5551         * ispell.h:
5552         * ispell.C:
5553         * pspell.h:
5554         * pspell.C: reworking. Especially in ispell, a large
5555           number of clean ups and bug fixes.
5556
5557         * lyxfunc.C: fix revert to behave sensibly
5558
5559 2003-02-17 André Pönitz <poenitz@gmx.net>
5560
5561         * LyXAction.C:
5562         * commandtags.h: new LFUN_INSERT_BIBKEY
5563
5564         * layout.h:
5565         * lyxlayout.C:
5566         * buffer.C:
5567         * factory.C:
5568         * text.C:
5569         * text2.C:
5570         * text3.C:
5571         * paragraph.[Ch]:
5572         * paragraph_func.C: remove special bibkey handling
5573
5574 2003-02-17  John Levon  <levon@movementarian.org>
5575
5576         * text.C (Delete): fix case where delete at the end of
5577           the very first paragraph would not merge the pars
5578
5579 2003-02-17  John Levon  <levon@movementarian.org>
5580
5581         * lyxrow.C: fix lastPrintablePos()
5582
5583 2003-02-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5584
5585         * bufferparams.C (writeLaTeX): add a std:here
5586
5587         * buffer.C: and remove a using directive there
5588
5589 2003-02-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5590
5591         * buffer.C (makeLaTeXFile): move the code that generates the
5592           preamble...
5593
5594         * bufferparams.C (writeLaTeX): ... in this new method
5595
5596         * LaTeXFeatures.C (getEncodingSet): make const
5597           (getLanguages): make const
5598
5599         * MenuBackend.C (binding): returns the binding associated to this
5600           action
5601           (add): sets the status of each item by calling getStatus. Adds
5602           some intelligence.
5603           (read): add support for OptSubMenu
5604           (expand): remove extra separator at the end of expanded menu
5605
5606 2003-02-15  John Levon  <levon@movementarian.org>
5607
5608         * BufferView.C:
5609         * BufferView_pimpl.C:
5610         * bufferlist.h:
5611         * bufferlist.C: remove pointless BufferStorage bloat. Remove
5612           inset code that had no actual effect. Remove unneeded status
5613           code.
5614
5615 2003-02-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5616
5617         * buffer.C (makeLaTeXFile): fix counting of number of line feeds
5618           in preamble
5619
5620 2003-02-14  Michael Schmitt <michael.schmitt@teststep.org>
5621
5622         * text.C (drawLengthMarker): also draw an arrow marker for
5623           symbolic lengths (medskip...)
5624
5625 2003-02-14  John Levon  <levon@movementarian.org>
5626
5627         * tabular.h:
5628         * tabular.C: better method names
5629
5630 2003-02-14  John Levon  <levon@movementarian.org>
5631
5632         * BufferView_pimpl.C:
5633         * bufferlist.C:
5634         * buffer.C:
5635         * converter.C:
5636         * lyx_cb.C:
5637         * lyxfunc.C: change prohibit/allowInput to busy(bool), as
5638           it's a more accurate name. Remove some pointless uses.
5639
5640 2003-02-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5641
5642         * text2.C (LyXText): change order of initilizers to shut off
5643           warnings
5644
5645 2003-02-14  John Levon  <levon@movementarian.org>
5646
5647         * buffer.C: use ParIterator for getParFromID()
5648
5649         * paragraph.h:
5650         * paragraph.C:
5651         * paragraph_pimpl.h:
5652         * paragraph_pimpl.C: remove unused getParFromID()
5653
5654 2003-02-14  John Levon  <levon@movementarian.org>
5655
5656         * buffer.C: remove some very old #if 0'd parse code
5657
5658 2003-02-13  John Levon  <levon@movementarian.org>
5659
5660         * text.h:
5661         * text.C:
5662         * text2.C: move hfillExpansion(), numberOfSeparators(),
5663           rowLast(), rowLastPrintable(), numberofHfills(),
5664           numberOfLabelHfills() ...
5665
5666         * lyxrow.h:
5667         * lyxrow.C: ... to member functions here.
5668
5669         * paragraph.h:
5670         * paragraph.C:
5671         * lyxtext.h:
5672         * text.C: remove LyXText::beginningOfMainBody(), and call
5673           p->beginningOfMainBody() directly. Move the check for
5674           LABEL_MANUAL into the latter.
5675
5676         * text.h:
5677         * text.C:
5678         * text2.C:
5679         * vspace.C:
5680         * BufferView.h:
5681         * BufferView.C: make defaultHeight() be a free defaultRowHeight()
5682
5683         * text.h:
5684         * text.C:
5685         * text2.C:
5686         * text3.C:
5687         * frontends/screen.C: move bv_owner private, introduce isTopLevel()
5688           to make it clear we're testing for outmost-lyxtext vs. inset's lyxtext
5689
5690 2003-02-13  John Levon  <levon@movementarian.org>
5691
5692         * CutAndPaste.C: remove debug
5693
5694 2003-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5695
5696         * paragraph.C (asString): remove two unused variables
5697
5698         * lyxtextclass.C (readTitleType):
5699           (Read):
5700           (LyXTextClass): handle new members titletype_ and titlename_
5701
5702         * buffer.C (latexParagraphs): honor LyXTextClass::titletype
5703
5704 2003-02-09  John Levon  <levon@movementarian.org>
5705
5706         * buffer.h:
5707         * buffer.C: replace hand-coded list with a map for the dep clean
5708
5709 2003-02-08  John Levon  <levon@movementarian.org>
5710
5711         * LaTeX.C: consolidate code into showRunMessage() helper
5712
5713 2003-02-08  John Levon  <levon@movementarian.org>
5714
5715         * lyxfind.C:
5716         * lyxtext.h:
5717         * text2.C:
5718         * BufferView.C: change setSelectionOverString() to setSelectionRange()
5719           and pass the size in explicitly
5720
5721         * BufferView_pimpl.h:
5722         * BufferView_pimpl.C:
5723         * BufferView.h:
5724         * BufferView.C: add getCurrentChange()
5725
5726         * BufferView_pimpl.h:
5727         * BufferView_pimpl.C: handle change lfuns
5728
5729         * CutAndPaste.C: merge the cut and copy code. Rework the cut code
5730           for changes. Mark pasted paragraphs as new.
5731
5732         * support/lyxtime.h:
5733         * support/lyxtime.C:
5734         * DepTable.C: abstract time_t as lyx::time_type
5735
5736         * LColor.h:
5737         * LColor.C: add colours for new text, deleted text, changebars
5738
5739         * LaTeXFeatures.C: add dvipost as a simple feature. Make the color
5740           package use "usenames" option.
5741
5742         * commandtags.h:
5743         * lyxfunc.C:
5744         * LyXAction.C: add change lfuns
5745
5746         * Makefile.am:
5747         * author.h:
5748         * author.C: author handling
5749
5750         * buffer.h:
5751         * buffer.C: add a per-buffer author list, with first entry as
5752           current author. Handle new .lyx tokens for change tracking. Output
5753           author list to .lyx file. Output dvipost stuff to .tex preamble.
5754           Bump lyx format to 222.
5755
5756         * bufferlist.h:
5757         * bufferlist.C: add setCurrentAuthor() to reset current author details
5758           in all buffers.
5759
5760         * bufferparams.h:
5761         * bufferparams.C: add param for tracking
5762
5763         * bufferview_funcs.C: output change info in minibuffer
5764
5765         * Makefile.am:
5766         * changes.h:
5767         * changes.C: add change-tracking structure
5768
5769         * debug.h:
5770         * debug.C: add CHANGES debug flag
5771
5772         * lyxfind.h:
5773         * lyxfind.C: add code for finding the next change piece
5774
5775         * lyxrc.h:
5776         * lyxrc.C: add user_name and user_email
5777
5778         * lyxrow.h:
5779         * lyxrow.C: add a metric for the top of the text line
5780
5781         * lyxtext.h:
5782         * text.C: implement accept/rejectChange()
5783
5784         * lyxtext.h:
5785         * text.C: paint changebars. Paint new/deleted text in the chosen
5786         colours. Strike through deleted text.
5787
5788         * paragraph.h:
5789         * paragraph.C:
5790         * paragraph_pimpl.h:
5791         * paragraph_pimpl.C: output change markers in .lyx and .tex. Pass
5792           in the current change to the insert functions. Rework erase to
5793           mark text as deleted, adding an eraseIntern() and a range-based
5794           erase(). Implement per-paragraph change lookup and
5795           accept/reject.
5796
5797         * paragraph_funcs.C: Fixup paste for change tracking.
5798
5799         * tabular.C: mark added row/columns as new.
5800
5801         * text.C: fix rowLast() to never return -1. Don't allow
5802           spellchecking of deleted text. Track transpose changes. Don't
5803           allow paragraph break or merge where appropriate.
5804
5805         * text2.C: leave cursor at end of selection after a cut.
5806
5807 2003-02-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5808
5809         * text.C (getLengthMarkerHeight):
5810         (drawLengthMarker): make the `symbolic' lengths (small/med/big)
5811         visible on screen too.
5812
5813 2003-02-07  John Levon  <levon@movementarian.org>
5814
5815         * text.C: s/LYX_PAPER_MARGIN/PAPER_MARGIN/g
5816
5817 2003-02-05  Angus Leeming  <leeming@lyx.org>
5818
5819         * lyxserver.C (read_ready): revert my patch of 11 September last year
5820         as it sends PC cpu through the roof. Presumably this means that
5821         the lyxserver will no longer run on an Alpha...
5822
5823 2003-01-30  Angus Leeming  <leeming@lyx.org>
5824
5825         * factory.C (createInset): create an InsetCommandParam of type "index"
5826         and use it to 'do the right thing'.
5827
5828         * text2.C (getStringToIndex): ensure that cursor position is always
5829         reset to the reset_cursor position.
5830
5831 2003-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5832
5833         * lyxfunc.C (getStatus): "buffer-export custom" should never be
5834         disabled.
5835
5836 2003-01-20  Michael Schmitt <michael.schmitt@teststep.org>
5837
5838         * bufferview.C:
5839         * lyxcb.C:
5840         * lyxfunc.C: Output messages with identical spelling, punctuation,
5841         and spaces
5842
5843 2003-01-22  Michael Schmitt  <Michael.Schmitt@teststep.org>
5844
5845         * MenuBackend.C (expandFormats): List only viewable export formats
5846         in "View" menu
5847
5848         * buffer.C (parseSingleLyXformat2Token): Fix misleading error
5849         message
5850
5851         * lyxfunc.C (getStatus): Make sure that formats other than
5852         "fax" can also be disabled
5853
5854 2003-01-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5855
5856         * text3.C (dispatch): put the lfuns that insert insets in 3
5857         groups, and call doInsertInset with appropriate arguments.
5858         (doInsertInset): new function, that creates an inset and inserts
5859         it according to some boolean parameters.
5860
5861 2003-01-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
5862
5863         * buffer.C (readFile): remember to pass on 'par' when calling
5864         readFile recursively.
5865
5866 2003-01-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5867
5868         * MenuBackend.C (expandFormats): add "..." to import formats.
5869
5870 2003-01-15  Dekel Tsur  <dekelts@tau.ac.il>
5871
5872         * paragraph.C (asString): Remove XForms RTL hacks.
5873
5874 2003-01-13  Alfredo Braunstein <abraunst@libero.it>
5875         * buffer.C: fix typo
5876
5877 2003-01-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
5878
5879         * Makefile.am (LIBS): delete var
5880         (lyx_LDADD): add @LIBS@ here instead.
5881
5882 2003-01-08  Michael Schmitt <Michael.Schmitt@teststep.org>
5883
5884         * Clarify the meaning of "wheel mouse jump"
5885
5886 2003-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5887
5888         * lyxfunc.C (getStatus): fix disabling of cut/paste of cells in a
5889         tabular in a float
5890
5891 2003-01-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5892
5893         * importer.C (Loaders): do not preallocate 3 elements in the
5894         vector, since one ends up with 6 elements otherwise
5895
5896 2002-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5897
5898         * DepTable.C (write): write the file name as last element of the
5899         .dep file (because it may contain spaces)
5900         (read): read info in the right order
5901
5902 2003-01-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5903
5904         * paragraph_pimpl.C (simpleTeXBlanks):
5905         (simpleTeXSpecialChars):
5906         * paragraph.C (simpleTeXOnePar): make `column' unsigned.
5907
5908         * tabular.C (latex): add some missing case statements. Reindent.
5909
5910         * MenuBackend.C (expandToc): remove unused variable.
5911
5912 2003-01-06  Michael Schmitt <Michael.Schmitt@teststep.org>
5913
5914         * LColor.C:
5915         * LaTeX.C:
5916         * LyXAction.C:
5917         * MenuBackend.C:
5918         * buffer.C:
5919         * exporter.C:
5920         * lyxfunc.C:
5921         * lyxrc.C: fix inconsistent usage of spaces, colons, capitalization,
5922         and the like.
5923
5924 2003-01-05  John Levon  <levon@movementarian.org>
5925
5926         * BufferView.h:
5927         * BufferView.C: add getEncoding()
5928
5929         * kbsequence.h:
5930         * kbsequence.C: do not store last keypress
5931
5932         * lyxfunc.h:
5933         * lyxfunc.C: store last keypress here instead. Pass encoding
5934           to getISOEncoded()
5935
5936 2002-12-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5937
5938         * lyx_main.C (init): remove annoying error message when following
5939         symbolic links (bug #780)
5940
5941 2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5942
5943         * text.C (insertChar):
5944         * lyxrc.C (getDescription): remove extra spaces
5945
5946 2002-12-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5947
5948         * lyxrc.C (getDescription): remove extra spaces
5949
5950 2002-12-20  John Levon  <levon@movementarian.org>
5951
5952         * text3.C: hack fix for page up/down across tall rows
5953
5954 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5955
5956         * text2.C (pasteEnvironmentType): avoid crash if layout-copy has
5957         not been invoked
5958
5959 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5960
5961         * lyxfunc.C (getStatus): query lyx_gui::getStatus() to catter for
5962         unimplemented lfuns. Make LFUN_THESAURUS_ENTRY status unknown if
5963         thesaurus is not compiled in
5964
5965 2002-12-17  Alfredo Braunstein <abraunst@libero.it>
5966
5967         * lyxfunc.C: correct  inversion of WORDFINDBACK/FORWARD
5968
5969 2002-12-16  Angus Leeming  <leeming@lyx.org>
5970
5971         * lyxrc.[Ch]:
5972         * lyx_main.C (init): remove override_x_deadkeys stuff.
5973
5974 2002-12-12  John Levon  <levon@movementarian.org>
5975
5976         * lyxfunc.C: use LyXKeySym->isText() as last-ditch
5977           insert. Only remove shift modifier under strict
5978           circumstances.
5979
5980 2002-12-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
5981
5982         * MenuBackend.C (expandToc): fix crash.
5983
5984 2002-12-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
5985
5986         * MenuBackend.C (expandToc): gettext on float names.
5987
5988 2002-12-03  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
5989
5990         * lyxlength.[Ch]: set default unit to UNIT_NONE,
5991         implement bool empty() [bug 490]
5992
5993 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5994
5995         * text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
5996
5997 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5998
5999         * several files: ws changes
6000
6001 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6002
6003         * text2.C (setCounter): clean up a bit, use boost.format.
6004         (updateCounters): initialize par upon declaration.
6005
6006         * CutAndPaste.C (SwitchLayoutsBetweenClasses): set the layout also
6007         if the layout exists. We do not just store the layout any more.
6008         (SwitchLayoutsBetweenClasses): use boost.format
6009
6010 2002-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6011
6012         * converter.C (convert): if from and to files are the same, use a
6013         temporary files as intermediary
6014
6015 2002-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6016
6017         * commandtags.h:
6018         * LyXAction.C (init): remove LFUN_VECTOR (bug 662)
6019
6020 2002-11-27  Dekel Tsur  <dekelts@tau.ac.il>
6021
6022         * lyxrc.[Ch]: Add {roman,sans,typewriter}_font_foundry variables.
6023
6024 2002-11-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
6025
6026         * tabular.C (asciiPrintCell): use string(size, char) instead of
6027         explicit loop.
6028
6029         * sgml.C (openTag): fix order of arguments to string constructor
6030         (closeTag): ditto
6031
6032         * lyxfunc.C (dispatch): use boost.format
6033
6034         * lots of files: change "c" -> 'c'
6035
6036 2002-11-25  Dekel Tsur  <dekelts@tau.ac.il>
6037
6038         * encoding.C: Patch from Isam Bayazidi: Fix Arabic shaping.
6039
6040 2002-11-25  Angus Leeming  <leeming@lyx.org>
6041
6042         * BoostFormat.h: wrap code inside #ifdef __GNUG__ block.
6043
6044         * lyx_main.C (init): compile fix.
6045
6046 2002-11-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
6047
6048         * lyx_cb.C (start): boost.formatify
6049         do not include <iostream>
6050
6051         * lengthcommon.C: ws only
6052
6053         * boost-inst.C,BoostFormat.h: add more explict instantations
6054
6055 2002-11-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
6056
6057         * lots of files: handle USE_BOOST_FORMAT
6058
6059 2002-11-21  John Levon  <levon@movementarian.org>
6060
6061         * pspell.C: fix compile
6062
6063 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6064
6065         * lyxfunc.C (dispatch): use boost::format
6066         (open): ditto
6067         (doImport): ditto
6068
6069         * lyxfont.C (stateText): use boost::format
6070
6071         * lyx_main.C (LyX): use boost::format
6072         (init): ditto
6073         (queryUserLyXDir): ditto
6074         (readRcFile): ditto
6075         (parse_dbg): ditto
6076         (typedef boost::function): use the recommened syntax.
6077
6078         * importer.C (Import): use boost::format
6079
6080         * debug.C (showLevel): use boost::format
6081
6082         * converter.C (view): use boost::format
6083         (convert): ditto
6084         (move): ditto
6085         (scanLog): ditto
6086
6087         * bufferview_funcs.C (currentState): use boost::format
6088
6089         * bufferlist.C (emergencyWrite): use boost::format
6090
6091         * buffer.C (readLyXformat2): use boost::format
6092         (parseSingleLyXformat2Token): ditto
6093
6094         * Makefile.am (lyx_SOURCES): add BoostFormat.h and boost-inst.C
6095
6096         * LaTeX.C (run): use boost::format
6097
6098         * Chktex.C (scanLogFile): use boost::format
6099
6100         * BufferView_pimpl.C (savePosition): use boost::format
6101         (restorePosition): ditto
6102         (MenuInsertLyXFile): ditto
6103
6104         * BoostFormat.h: help file for explicit instation.
6105
6106 2002-11-21  Dekel Tsur  <dekelts@tau.ac.il>
6107
6108         * tabular.C (latex): Support for block alignment in fixed width
6109         columns.
6110
6111 2002-11-17  John Levon  <levon@movementarian.org>
6112
6113         * BufferView_pimpl.C:
6114         * lyx_cb.C:
6115         * lyxfunc.C: split filedialog into open/save
6116
6117 2002-11-08  Juergen Vigna  <jug@sad.it>
6118
6119         * undo_funcs.C (textHandleUndo): fixed problems with undo introduced
6120         by my last patch (hopefully).
6121
6122 2002-11-08  John Levon  <levon@movementarian.org>
6123
6124         * iterators.h:
6125         * iterators.C:
6126         * buffer.h:
6127         * buffer.C:
6128         * paragraph.h:
6129         * paragraph.C:
6130         * toc.h:
6131         * toc.C: ParConstIterator, and use it (from Lars)
6132
6133 2002-11-07  Ben Stanley  <bds02@uow.edu.au>
6134
6135         * lyxtextclass.[Ch]: revise and add doxygen comments
6136
6137 2002-11-07  John Levon  <levon@movementarian.org>
6138
6139         * text.C: fix progress value for spellchecker
6140
6141         * toc.C: fix navigate menu for insetwrap inside minipage
6142
6143         * paragraph_funcs.C: added FIXME for suspect code
6144
6145 2002-11-07  John Levon  <levon@movementarian.org>
6146
6147         * BufferView_pimpl.C: fix redrawing of insets
6148           on buffer switch
6149
6150 2002-11-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6151
6152         * text2.C (updateCounters): fix bug 668
6153
6154 2002-11-04  Dekel Tsur  <dekelts@tau.ac.il>
6155
6156         * text3.C (dispatch): Do not make the buffer dirty when moving the
6157         cursor.
6158
6159 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
6160
6161         * vc-backend.C: STRCONV
6162         (scanMaster): ditto
6163
6164         * text2.C (setCounter): STRCONV
6165
6166         * paragraph.C (asString): STRCONV
6167
6168         * lyxlength.C (asString): STRCONV
6169         (asLatexString): ditto
6170
6171         * lyxgluelength.C (asString): STRCONV
6172         (asLatexString): ditto
6173
6174         * lyxfunc.C (dispatch): STRCONV
6175         (open): ditto
6176
6177         * lyxfont.C (stateText): STRCONV
6178
6179         * importer.C (Import): STRCONV
6180
6181         * counters.C (labelItem): STRCONV
6182         (numberLabel): ditto
6183         (numberLabel): remove unused ostringstream o
6184
6185         * chset.C: STRCONV
6186         (loadFile): ditto
6187
6188         * bufferview_funcs.C (currentState): STRCONV
6189
6190         * buffer.C (readFile): STRCONV
6191         (asciiParagraph): ditto
6192         (makeLaTeXFile): ditto
6193
6194         * Spacing.C (writeEnvirBegin): STRCONV
6195
6196         * LaTeXFeatures.C (getLanguages): STRCONV
6197         (getPackages): ditto
6198         (getMacros): ditto
6199         (getBabelOptions): ditto
6200         (getTClassPreamble): ditto
6201         (getLyXSGMLEntities): ditto
6202         (getIncludedFiles): ditto
6203
6204         * LaTeX.C: STRCONV
6205         (run): ditto
6206         (scanAuxFile): ditto
6207         (deplog): ditto
6208
6209         * LString.h: add the STRCONV macros
6210
6211         * BufferView_pimpl.C (savePosition): STRCONV
6212         (restorePosition): ditto
6213         (MenuInsertLyXFile): ditto
6214
6215         * vc-backend.C (scanMaster): change from submatch[...] to
6216         submatch.str(...)
6217
6218         * funcrequest.C: include config.h
6219
6220         * factory.C: include config.h
6221
6222         * chset.C (loadFile): change from submatch[...] to submatch.str(...)
6223
6224         * box.C: include config.h
6225
6226         * LaTeX.C (scanAuxFile): change from submatch[...] to
6227         submatch.str(...)
6228         (deplog): ditto
6229
6230 2002-10-25  Angus Leeming  <leeming@lyx.org>
6231
6232         * BufferView_pimpl.C (cursorToggle): remove reapSpellchecker hack.
6233
6234         * ispell.[Ch] (setError): new method.
6235         * ispell.C (c-tor): move out child process into new class LaunchIspell.
6236         Use setError() insetead of goto END.
6237
6238         * lyx_cb.C (AutoSave): move out child process into new class
6239         AutoSaveBuffer.
6240
6241 2002-10-30  John Levon  <levon@movementarian.org>
6242
6243         * text3.C: make start appendix undoable
6244
6245 2002-10-24  Dekel Tsur  <dekelts@tau.ac.il>
6246
6247         * lyxlength.C (inPixels): Fix returned value.
6248
6249         * paragraph.C (TeXOnePar): Fix bug with language changes in nested
6250         environment.
6251
6252 2002-10-24  Angus Leeming  <leeming@lyx.org>
6253
6254         * lyxgluelength.h: no need to forward declare BufferParams
6255         or BufferView, so don't.
6256
6257 2002-10-21  John Levon  <levon@movementarian.org>
6258
6259         * BufferView.C: menuUndo ->undo, redo
6260
6261         * BufferView.h: document, remove dead, make some methods private
6262
6263         * paragraph_funcs.h:
6264         * paragraph_funcs.C:
6265         * CutAndPaste.C: s/pasteParagraph/mergeParagraph
6266
6267         * buffer.h:
6268         * buffer.C:
6269         * sgml.h:
6270         * sgml.C: move sgml open/close tag into sgml.C
6271
6272         * bufferview_funcs.h: unused prototype
6273
6274         * lyxfunc.h:
6275         * lyxfunc.C: remove unused
6276
6277         * lyxtext.h:
6278         * text.C: remove unused
6279
6280 2002-10-21  John Levon  <levon@movementarian.org>
6281
6282         * BufferView.h:
6283         * BufferView.C:
6284         * BufferView_pimpl.h:
6285         * BufferView_pimpl.C: fix mouse wheel handling based on
6286           patch from Darren Freeman
6287
6288 2002-10-09  Dekel Tsur  <dekelts@tau.ac.il>
6289
6290         * lyx_main.C (queryUserLyXDir): Fix automatic reconfiguration.
6291
6292 2002-10-17  Dekel Tsur  <dekelts@tau.ac.il>
6293
6294         * lyxlength.C (inPixels): Fix hanfling of negative length.
6295         Fix LyXLength::MU case.
6296
6297 2002-10-16  John Levon  <levon@movementarian.org>
6298
6299         * buffer.C: remove \\protected_separator parsing done by lyx2lyx now
6300
6301 2002-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6302
6303         * converter.C (view): add support for $$i (file name) and $$p
6304         (file path) for the viewer command. If $$i is not specified, then
6305         it is appended to the command (for compatibility with old syntax)
6306
6307 2002-10-14  Juergen Vigna  <jug@sad.it>
6308
6309         * undo_funcs.C (textHandleUndo): alter the order in which the
6310         new undopar is added to the LyXText, as we have to set first
6311         the right prev/next and then add it as otherwise the rebuild of
6312         LyXText is not correct. Also reset the cursor to the right paragraph,
6313         with this IMO we could remove the hack in "redoParagraphs()".
6314
6315 2002-10-09  Angus Leeming  <leeming@lyx.org>
6316
6317         * Bufferview_pimpl.C (dispatch): call InsetCitation::setLoadingBuffer
6318         to turn off an optimisation if a new inset is to be inserted.
6319
6320 2002-10-11 André Pönitz <poenitz@gmx.net>
6321
6322         * lyxtext.h: make some functions public to allow access
6323         from inset/lyxtext for handling LFUN_PRIOR/NEXT
6324
6325 2002-10-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6326
6327         * text3.C (dispatch): when changing layout, avoid an infinite loop
6328         [bug #652]
6329
6330 2002-10-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6331
6332         * lyxrc.C (read): treat a viewer or converter command of "none" as
6333         if it were empty.
6334
6335         * MenuBackend.C (expandFormats): for an update, also allow the
6336         formats that are not viewable
6337
6338         * lyx_main.C (queryUserLyXDir): re-run automatically the configure
6339         script if it is newer than the lyxrc.defaults in user directory
6340
6341 2002-10-07 André Pönitz <poenitz@gmx.net>
6342
6343         * text.C: Vitaly Lipatov's small i18n fix
6344
6345 2002-09-25  Angus Leeming  <leeming@lyx.org>
6346
6347         * ispell.h: doxygen fix.
6348
6349 2002-09-25  Dekel Tsur  <dekelts@tau.ac.il>
6350
6351         * buffer.h (readFile): Add a new argument to the method, to allow
6352         reading of old-format templates.
6353
6354 2002-09-24  Dekel Tsur  <dekelts@tau.ac.il>
6355
6356         * toc.C (getTocList): Get TOC from InsetWrap.
6357
6358 2002-09-16  John Levon  <levon@movementarian.org>
6359
6360         * lyxfunc.C: check tabular for cut/copy too
6361
6362 2002-09-12  John Levon  <levon@movementarian.org>
6363
6364         * LyXAction.C: tidy
6365
6366         * factory.h:
6367         * factory.C: add header
6368
6369         * paragraph_funcs.h:
6370         * paragraph_funcs.C: cleanup
6371
6372 2002-09-11  John Levon  <levon@movementarian.org>
6373
6374         * PrinterParams.h: odd/even default to true
6375
6376 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
6377
6378         * PrinterParams.h: update printer parameters for new xforms dialog
6379
6380 2002-09-11  Angus Leeming  <leeming@lyx.org>
6381
6382         * lyxserver.C (read_ready): re-write to make it more transparent
6383         and to make it work in coherent fashion under Tru64 Unix.
6384
6385 2002-09-11  André Pönitz <poenitz@gmx.net>
6386
6387         * commandtags.h:
6388         * LyXAction.C:
6389         * text3.C: implement LFUN_WORDSEL
6390
6391 2002-09-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
6392
6393         * lyxtextclass.h: don't include FloatList.h, forward declare instead.
6394         make floatlist_ a boost::shared_ptr<FloatList>
6395
6396         * lyxtextclass.C: include FloatList.h
6397         (LyXTextClass): initialize floatlist_
6398         (TextClassTags): add TC_NOFLOAT
6399         (Read): match "nofloat" to TC_NOFLOAT and use it.
6400         (readFloat): modify call to floatlist_
6401         (floats): ditto
6402         (floats): ditto
6403
6404         * FloatList.[Ch] (FloatList): remove commented out float
6405         initialization.
6406         (erase): new function
6407
6408 2002-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6409
6410         * MenuBackend.C (expandToc): fix crash when there is no document
6411         open
6412
6413 2002-09-10  Dekel Tsur  <dekelts@tau.ac.il>
6414
6415         * many files: Add insetwrap.
6416
6417 2002-09-09  John Levon  <levon@movementarian.org>
6418
6419         * text2.C: remove confusing and awkward depth wraparound
6420
6421 2002-09-09  John Levon  <levon@movementarian.org>
6422
6423         * BufferView_pimpl.C: Don't use empty arg for LFUN_CHILD_INSERT
6424
6425         * buffer.h:
6426         * buffer.C: remove getIncludeonlyList()
6427
6428         * paragraph.C:
6429         * lyxfunc.C: remove headers
6430
6431 2002-09-09  Juergen Vigna  <jug@sad.it>
6432
6433         * text.C (getColumnNearX): fix form Michael this is most
6434         probably a cut&paste bug.
6435
6436 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
6437
6438         * remove all INHERIT_LANG and INHERIT_LANGUAGE commented code
6439
6440         * LaTeXFeatures.C (useLayout): let tclass and lyt be a const
6441         references, ws changes.
6442
6443         * text2.C (init): update counters after init
6444         (insertParagraph): no need to set counter on idividual paragraphs.
6445         (setCounter): access the counters object in the textclass object
6446         on in the buffer object.
6447         (updateCounters): ditto
6448
6449         * lyxtextclass.C: include counters.h, add variable ctrs_ as
6450         shared_ptr<Counters> to avoid loading counters.h in all
6451         compilation units.
6452         (LyXTextClass): initialize ctrs_
6453         (TextClassTags): add TC_COUNTER, and ...
6454         (Read): use it here.
6455         (CounterTags): new tags
6456         (readCounter): new function
6457         (counters): new funtion
6458         (defaultLayoutName): return a const reference
6459
6460         * counters.C (Counters): remove contructor
6461         (newCounter): remove a couple of unneeded statements.
6462         (newCounter): simplify a bit.
6463         (numberLabel): some small formatting changes.
6464
6465         * buffer.[Ch]: remove all traces of counters, move the Counters
6466         object to the LyXTextClass.
6467
6468 2002-09-06  Alain Castera  <castera@in2p3.fr>
6469
6470         * tabular.C: uses \tabularnewline; uses >{...} construct from array
6471         package to set the horizontal alignment on fixed width columns.
6472
6473         * lyx_sty.C:
6474         * lyx_sty.h: added tabularnewline macro def.
6475
6476         * LaTeXFeatures.C: added NeedTabularnewline macro feature
6477
6478 2002-09-06  John Levon  <levon@movementarian.org>
6479
6480         * LyXAction.C: tooltips for sub/superscript
6481
6482         * MenuBackend.C: a bit more verbose
6483
6484         * lyxfunc.C: tiny clean
6485
6486         * undo_funcs.C: document undo_frozen
6487
6488 2002-09-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
6489
6490         * counters.C (Counters): add missing algorithm counter.
6491
6492         * text2.C (setCounter): lookup the counter with layouts latexname
6493         instead of by section number.
6494         (setCounter): use a hackish way to lookup the correct enum
6495         counter.
6496         a float name->type change
6497         reset enum couners with counter name directly instead of depth value.
6498
6499         * counters.C (Counters): remove the push_backs, change to use the
6500         float type not the float name.
6501         (labelItem): remove unused string, float name->type change
6502
6503         * counters.h: don't include vector, loose the enums and sects vectors
6504
6505 2002-09-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
6506
6507         * lyxtextclass.C (TextClassTags): add TC_FLOAT
6508         (Read): add float->TC_FLOAT to textclassTags
6509         (Read): and handle it in the switch
6510         (readFloat): new function
6511
6512         * FloatList.C (FloatList): comment out the hardcoded float
6513         definitions.
6514
6515         * lyxlayout.h: ws change.
6516
6517 2002-08-29  Dekel Tsur  <dekelts@tau.ac.il>
6518
6519         * buffer.C (readFile): Look for lyx2lyx in LYXDIR/lyx2lyx/
6520
6521 2002-09-03  Angus Leeming  <leeming@lyx.org>
6522
6523         * BufferView_pimpl.h: qualified name is not allowed in member
6524         declaration: WorkArea & Pimpl::workarea() const;
6525
6526         * factory.C: added using std::endl directive.
6527
6528         * text3.C: added using std::find and std::vector directives.
6529
6530 2002-08-29  André Pönitz <poenitz@gmx.net>
6531
6532         * lyxtext.h:
6533         * text2.C: remove unused member number_of_rows
6534
6535         * Makefile.am:
6536         * BufferView2.C: remove file, move contents to...
6537         * BufferView.C: ... here
6538
6539         * BufferView_pimpl.C:
6540         * factory.C: move more inset creation to factory
6541
6542         * vspace.C: avoid direct usage of LyXText, ws changes
6543
6544         * BufferView.[Ch]:
6545                 don't provide direct access to WorkArea, use two simple
6546                 acessors haveSelction() and workHeight() instead
6547
6548
6549 2002-08-29  John Levon  <levon@movementarian.org>
6550
6551         * BufferView_pimpl.C (dispatch): do not continue when
6552           no buffer
6553
6554 2002-08-28  André Pönitz <poenitz@gmx.net>
6555
6556         * commandtags.h: new LFUN_MOUSE_DOUBLE, LFUN_MOUSE_TRIPLE
6557
6558         * BufferView.h:
6559         * BufferView_pimpl.[Ch] move work area mouse event to LFUNs
6560
6561 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
6562
6563         * buffer.C: increment LYX_FORMAT to 221
6564
6565         * lyxrc.[Ch]: declare display_graphics as grfx::DisplayType and use
6566         grfx::displayTranslator.find(foo); include graphics/GraphicsTypes.h.
6567
6568         * lyxrc.C: use more "if (...) { } else { }" style (John's advice).
6569
6570         * lyx_main.C: call once the setDisplayTranslator(); is that okay here?
6571
6572 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6573
6574         * factory.C (createInset): use LyXTextClass::floats
6575
6576         * MenuBackend.C (expandFloatListInsert):
6577         (expandFloatInsert):
6578         (expandToc):
6579
6580         * text2.C (setCounter):
6581
6582         * LaTeXFeatures.C (useFloat):
6583         (getFloatDefinitions):
6584
6585         * BufferView_pimpl.C (dispatch): use LyXTextClass::floats()
6586
6587         * lyxtextclass.[Ch]: rename layoutlist to layoutlist_; add
6588         floatlist_, with accessor floats().
6589
6590         * FloatList.h: remove global FloatList
6591
6592 2002-08-26  André Pönitz <poenitz@gmx.net>
6593
6594         * paragraph.[Ch]: Martin's patch for the \end_deeper bug
6595
6596         * BufferView.h:
6597         * BufferView2.C:
6598         * BufferView_pimpl.C:
6599         * text3.C: mun hanfling of LFUN_CUT/COPY/PASTE to LyXText
6600
6601 2002-08-25  John Levon  <levon@movementarian.org>
6602
6603         * LyXAction.C: fix margin note description
6604
6605 2002-08-24  John Levon  <levon@movementarian.org>
6606
6607         * buffer.C:
6608         * bufferlist.C:
6609         * bufferview_funcs.C:
6610         * lyxfont.C:
6611         * undo_funcs.C: cleanups
6612
6613         * lyxfunc.C: disable CUT/COPY when no selection
6614
6615 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
6616
6617         * lyxlength.[Ch]: use better (three letters) mnemonics for percentage units
6618         in "enum UNIT"; e.g. PTW for Percent of TextWidth
6619
6620         * lyxrc.C: graphics display is now monochrome|grayscale|color|none.
6621         Add backward compatibility to "mono", "gray" and "no".
6622
6623 2002-08-24  Dekel Tsur  <dekelts@tau.ac.il>
6624
6625         * buffer.C (readFile): Always run lyx2lyx if file_format < LYX_FORMAT
6626         (and file_format >= 200).
6627
6628 2002-08-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6629
6630         * lyxlayout.C (Read): treat LT_OPTARGS as an integer, not a bool
6631
6632 2002-08-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6633
6634         * lyxfunc.C (getStatus): handle LFUN_INSET_OPTARG
6635
6636 2002-08-20  Martin Vermeer  <martin.vermeer@hut.fi>
6637
6638         * BufferView_pimpl.C:
6639         * LyXAction.C:
6640         * buffer.C:
6641         * commandtags.h:
6642         * lyxfunc.C:
6643         * paragraph.[Ch]:
6644         * text2.C:
6645         * insets/insetoptarg.[Ch]: Added "optional argument" collapsible
6646         inset and code to make it  work with the paragraph code. The inset
6647         can be anywhere in the paragraph, but will only do the expected
6648         thing in LaTeX if the layout file contains the parameter line
6649                         OptionalArgs    1
6650         (or more generally, a nonzero value) for that layout.
6651
6652 2002-08-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
6653
6654         * paragraph.h: remove the declaration of undefined counters class
6655         function.
6656
6657 2002-08-22  Martin Vermeer <martin.vermeer@hut.fi>
6658
6659         * text2.C (setCounter):  fixed enumeration mis-count as reported by
6660         Dr. Richard Hawkins.
6661
6662 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6663
6664         * paragraph_funcs.h: remove some unneeded includes
6665
6666         * text.C (backspace): pasteParagraph now in global scipe
6667
6668         * CutAndPaste.C (cutSelection): pasteParagraph now in global scope
6669         (pasteSelection): ditto
6670
6671         * paragraph.[Ch] (pasteParagraph): move function to global scope ...
6672         * paragraph_funcs.C (pasteParagraph): ... here
6673
6674 2002-08-20  André Pönitz <poenitz@gmx.net>
6675
6676         * commandtags.h: new LFUNs for swapping/copying table row/colums
6677
6678         * LyXAction.C:
6679         * lyxfunc.C: support for new lfuns
6680
6681 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
6682
6683         * tabular.C:
6684         * buffer.[Ch]: remove NO_COMPABILITY stuff
6685
6686 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
6687
6688         * boost.C (throw_exception): new file, with helper function for
6689         boost compiled without exceptions.
6690
6691         * paragraph.h:
6692         * lyxlength.C:
6693         * buffer.C:
6694         * ParameterStruct.h:
6695         * ParagraphParameters.[Ch]: remove NO_PEXTRA_REALLY stuff
6696
6697         * bufferlist.C (emergencyWriteAll): use boost bind
6698
6699         * BufferView_pimpl.C (moveCursorUpdate): remove inline
6700
6701         * text.C: include paragraph_funcs.h
6702         (breakParagraph): breakParagraph is now in global scope
6703
6704         * paragraph_funcs.[Ch]: new files
6705
6706         * paragraph.C (breakParagraph,breakParagraphConservative): move to
6707         global scope
6708
6709         * buffer.C: include paragraph_funcs.h
6710         (insertStringAsLines): breakParagraph is now in global scope
6711
6712         * Makefile.am (lyx_SOURCES): add paragraph_funcs.h and
6713         paragraph_funcs.C
6714
6715         * CutAndPaste.C: include paragraph_funcs.h
6716         (cutSelection): breakParagraphConservative is now in global scope
6717         (pasteSelection): ditto
6718
6719         * buffer.h: declare oprator== and operator!= for
6720         Buffer::inset_iterator
6721
6722         * bufferlist.C (emergencyWrite): don't use fmt(...)
6723
6724         * text3.C: add using std::endl
6725
6726         * BufferView.C (moveCursorUpdate): remove default arg
6727
6728 2002-08-20  André Pönitz <poenitz@gmx.net>
6729
6730         * buffer.[Ch]: move inline functions to .C
6731
6732         * BufferView2.C:
6733         * BufferView_pimpl.C:
6734         * text.C:
6735         * buffer.[Ch]: use improved inset_iterator
6736
6737         * buffer.C:
6738         * paragraph.[Ch]: write one paragraph at a time
6739
6740 2002-08-20  Dekel Tsur  <dekelts@tau.ac.il>
6741
6742         * BufferView_pimpl.C (dispatch): Insert insetbibtex with "plain"
6743         style if style is not specified.
6744
6745 2002-08-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6746
6747         * text2.C (setCounter): when searching for right label for a
6748         caption, make sure to recurse to parent insets (so that a caption
6749         in a minipage in a figure float works) (bug #568)
6750
6751 2002-08-20  André Pönitz <poenitz@gmx.net>
6752
6753         * text3.C: new file for LyXText::dispatch() and helpers
6754
6755         * BufferView.[Ch]: move text related stuff to LyXText::dispatch()
6756
6757         * funcrequest.[Ch]: add message() do avoid direct access to LyXFunc
6758
6759 2002-08-19  André Pönitz <poenitz@gmx.net>
6760
6761         * lyxtext.h:
6762         * text.C: new LyXText::dispatch()
6763
6764         * BufferView_pimpl.C: move handling of LFUN_APPENDIX to LyXText
6765
6766 2002-08-18  Dekel Tsur  <dekelts@tau.ac.il>
6767
6768         * text.C (paintRowSelection): Fix code for rows with both RTL & LTR text.
6769
6770         * BufferView_pimpl.C (smartQuote): Insert typewriter quotes in
6771         Hebrew text.
6772
6773 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6774
6775         * Makefile.am: use $(variables) instead of @substitutions@
6776
6777 2002-08-15  André Pönitz <poenitz@gmx.net>
6778
6779         * lyxfunc.C:
6780         * BufferView_pimpl.C: streamlining mathed <-> outer world
6781         interaction
6782
6783         * commandtags.h:
6784         * LyXAction.C: remove unused LFUN_MATH
6785
6786 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
6787
6788         * paragraph.[Ch]: add some NO_NEXT ifdefs.
6789
6790 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
6791
6792         * paragraph.C (Paragraph): reformat a bit
6793         (cutIntoMinibuffer): use builtin InsetList function instad of
6794         doing it manually.
6795         (getInset): ditto
6796
6797         * buffer.C: include boost/bind.hpp, add using std::for_each
6798         (writeFileAscii): use ParagraphList iterators
6799         (validate): use for_each for validate traversal of paragraphs
6800         (getBibkeyList): use ParagraphList iterators
6801         (resizeInsets): use for_each to resizeInsetsLyXText for all
6802         paragraphs.
6803         (getParFromID): use ParagraphList iterators
6804
6805         * BufferView2.C (lockInset): use paragraph list and iterators
6806
6807 2002-08-14  John Levon  <levon@movementarian.org>
6808
6809         * lyxserver.C: remove spurious xforms include
6810
6811 2002-08-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6812
6813         * lyxfunc.C (getStatus): disable math-extern outside of math mode
6814
6815 2002-08-13  André Pönitz <poenitz@gmx.net>
6816
6817         * LyXAction.[Ch]:
6818         * lyxfunc.C: further cleaning
6819
6820 2002-08-13  André Pönitz <poenitz@gmx.net>
6821
6822         * funcrequest.h: new constructor
6823
6824         * funcrequest.C: move stuff here from .h
6825
6826         * Makefile.am:
6827         * BufferView_pimpl.C:
6828         * LyXAction.C:
6829         * toc.C:
6830         * lyxfunc.C: subsequent changes
6831
6832         * lyxfunc.h: new view() member function
6833
6834         * lyxfunc.C: subsequent changes
6835
6836 2002-08-13  Angus Leeming  <leeming@lyx.org>
6837
6838         * BufferView2.C:
6839         * BufferView_pimpl.C:
6840         * buffer.C:
6841         * converter.C:
6842         * importer.C:
6843         * lyxfunc.C:
6844         * lyxvc.C:
6845         * toc.C:
6846         * vc-backend.C:
6847         changes due to the changed LyXView interface that now returns references
6848         to member variables not pointers.
6849
6850 2002-08-13  Angus Leeming  <leeming@lyx.org>
6851
6852         * WordLangTuple (word, lang_code): return references to strings,
6853         not strings.
6854
6855         * BufferView.h:
6856         * SpellBase.h:
6857         * lyxtext.h: forward-declare WordLangTuple.
6858
6859         * BufferView2.C:
6860         * ispell.C:
6861         * pspell.C:
6862         * text.C: #include "WordLangTuple.h".
6863
6864         * lyxtext.h:
6865         * text.C: (selectNextWordToSpellcheck): constify return type.
6866
6867 2002-08-12  Martin Vermeer <martin.vermeer@hut.fi>
6868
6869         * buffer.C:
6870         * buffer.h:
6871         * lyxtext.h:
6872         * paragraph.C:
6873         * paragraph_pimpl.h:
6874         * text.C:
6875         * text2.C:
6876         * undo_funcs.C: replaced per-paragraph counter logic by per-buffer, as
6877         suggested by Angus.
6878         Made updateCounter always count from start of buffer, and removed
6879         second argument (par).
6880         Reverted floats number display to '#'. Perhaps I'll try again when the
6881         code base is sanitized a bit.
6882
6883 2002-08-12  Angus Leeming  <leeming@lyx.org>
6884
6885         * buffer.[Ch] (getLabelList): constify.
6886
6887 2002-08-07  André Pönitz <poenitz@gmx.net>
6888
6889         * commandtags.h: new LFUN_MOUSE_(PRESS|MOTION|RELEASE)
6890
6891         * funcrequest.h: extension to keep mouse (x,y) position
6892
6893 2002-08-12  Juergen Vigna  <jug@sad.it>
6894
6895         * BufferView2.C (insertErrors): forbid undo when inserting error
6896         insets.
6897
6898         * CutAndPaste.C (SwitchLayoutsBetweenClasses): ditto
6899
6900 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
6901
6902         * ParagraphList.[Ch]: new files
6903
6904         * Makefile.am (lyx_SOURCES): add ParagraphList.[Ch]
6905
6906         * BufferView2.C (lockInset): ParagraphList changes
6907         * toc.C: ditto
6908         * text2.C: ditto
6909         * bufferlist.C: ditto
6910         * buffer.h: ditto
6911         * buffer.C: ditto
6912
6913 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
6914
6915         * paragraph_pimpl.h: remove inclusion of boost/array.hpp, remove
6916         unused class variable counter_,
6917
6918         * paragraph.[Ch] (getFirstCounter): delete unused function
6919
6920         * counters.C: include LAssert.h
6921         (reset): add a new function with no arg, change other version to
6922         not have def. arg and to not allow empty arg.
6923
6924         * text2.C (setCounter): remove empty arg from call to Counters::reset
6925
6926 2002-08-11  John Levon  <levon@movementarian.org>
6927
6928         * Makefile.am: add WordLangTuple.h
6929
6930 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
6931
6932         * paragraph.C, ToolbarDefaults.h, kbsequence.h, lyx_main.C,
6933         lyxfunc.C lyxlex_pimpl.C: ws changes only.
6934
6935         * insets/insettext.C: InsetList changes
6936
6937         * graphics/GraphicsSupport.C (operator()): InsetList changes
6938
6939         * toc.C (getTocList): InsetList changes
6940
6941         * paragraph_pimpl.[Ch]: InsetList changes
6942
6943         * paragraph.[Ch]: InsetList changes
6944
6945         * buffer.C (inset_iterator): InsetList changes
6946         (setParagraph): ditto
6947         * buffer.h (inset_iterator): ditto
6948         * iterators.C (operator++): ditto
6949         * iterators.h: ditto
6950
6951         * Makefile.am (lyx_SOURCES): add InsetList.C and InsetList.h
6952
6953         * InsetList.[Ch]: new files, most InsetList handling moved out of
6954         paragraph.C.
6955
6956         * BufferView2.C (removeAutoInsets): InsetList changes
6957         (lockInset): ditto
6958         (ChangeInsets): ditto
6959
6960 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
6961
6962         * paragraph_pimpl.h (empty): new function
6963
6964         * paragraph.[Ch] (empty): new function
6965
6966         * other files: use the new Paragraph::empty function
6967
6968 2002-08-09  John Levon  <levon@movementarian.org>
6969
6970         * lyxtext.h: remove unused refresh_height
6971
6972 2002-08-09  John Levon  <levon@movementarian.org>
6973
6974         * Makefile.am:
6975         * sgml.h:
6976         * sgml.C:
6977         * buffer.C:
6978         * paragraph.h:
6979         * paragraph.C: move sgml char escaping out of paragraph
6980
6981         * paragraph.h:
6982         * paragraph.C: remove id setter
6983
6984         * buffer.C:
6985         * paragraph.C:
6986         * paragraph_pimpl.C: remove dead tex_code_break_column
6987
6988         * bufferview_funcs.C: small cleanup
6989
6990         * lyxfunc.C: remove dead proto
6991
6992         * lyxtext.h: make some stuff private. Remove some dead stuff.
6993
6994         * lyxgluelength.C: make as[LyX]String() readable
6995
6996 2002-08-08  John Levon  <levon@movementarian.org>
6997
6998         * LyXAction.h:
6999         * LyXAction.C:
7000         * MenuBackend.C:
7001         * ToolbarDefaults.C:
7002         * lyxfunc.C:
7003         * lyxrc.C:
7004         * toc.C: lyxaction cleanup
7005
7006 2002-08-08  John Levon  <levon@movementarian.org>
7007
7008         * BufferView2.C: small cleanup
7009
7010         * lyxfind.h:
7011         * lyxfind.C: move unnecessary header into the .C
7012
7013 2002-08-08  John Levon  <levon@movementarian.org>
7014
7015         * funcrequest.h: just tedious nonsense
7016
7017         * lyx_main.h:
7018         * lyx_main.C: cleanups
7019
7020         * buffer.C:
7021         * vspace.C: remove dead header lyx_main.h
7022
7023 2002-08-07  Angus Leeming  <leeming@lyx.org>
7024
7025         * Paragraph.[Ch]:
7026         * paragraph_pimpl.h:
7027         Forward declare class Counters in paragraph.h by moving the ctrs member
7028         variable into Paragraph::Pimpl.
7029         (counters): new method, returning a reference to pimpl_->ctrs.
7030
7031         * text2.C: ensuing changes.
7032
7033 2002-08-07  John Levon  <levon@movementarian.org>
7034
7035         * BufferView_pimpl.C (resizeCurrentBuffer): update scrollbar
7036
7037         * BufferView_pimpl.C: announce X selection on double/triple
7038           click
7039
7040         * lyx_main.C: use correct bool in batch dispatch
7041
7042         * counters.h: srcdocs (from Martin Vermeer and Angus Leeming)
7043
7044 2002-08-07  André Pönitz <poenitz@gmx.net>
7045
7046         * funcrequest.h: new class to wrap a kb_action and its argument
7047
7048         * BufferView.[Ch]:
7049         * BufferView_pimpl[Ch]:
7050         * LaTeX.C:
7051         * LyXAction.[Ch]:
7052         * lyxfunc.[Ch]:
7053         * lyxrc.C: subsequent changes
7054
7055
7056 2002-08-07  John Levon  <levon@movementarian.org>
7057
7058         * BufferView_pimpl.C (redoCurrentBuffer): fix screen update when
7059           document options change.
7060
7061 2002-08-06  Martin Vermeer  <martin.vermeer@hut.fi>
7062
7063         * counters.[Ch]
7064         * text2.C
7065         * paragraph.[Ch]
7066         * makefile.am: move counters functionality over from
7067         text2.C/paragraph.[Ch] to counters.[Ch], and make proper C++.
7068
7069 2002-08-06  John Levon  <levon@movementarian.org>
7070
7071         * WordLangTuple.h: new file for word + language code tuple
7072
7073         * SpellBase.h:
7074         * pspell.h:
7075         * pspell.C:
7076         * ispell.h:
7077         * ispell.C:
7078         * lyxtext.h:
7079         * text.C:
7080         * text2.C:
7081         * BufferView.h:
7082         * BufferView2.C: use WordLangTuple
7083
7084         * layout.h:
7085         * buffer.C: remove very dead LYX_LAYOUT_DEFAULT
7086
7087 2002-08-06  John Levon  <levon@movementarian.org>
7088
7089         * lyx_main.C: fix cmdline batch handling
7090
7091 2002-08-06  André Pönitz <poenitz@gmx.net>
7092
7093         * lyxrc.C: set default for show_banner to true
7094
7095 2002-08-06  John Levon  <levon@movementarian.org>
7096
7097         * pspell.C: fix a crash, and allow new aspell to work
7098
7099 2002-08-06  John Levon  <levon@movementarian.org>
7100
7101         * lyxfunc.C:
7102         * kbmap.C: small cleanup
7103
7104         * vspace.h:
7105         * vspace.C: add const
7106
7107 2002-08-05  John Levon  <levon@movementarian.org>
7108
7109         * LyXAction.C: back to tabular-insert
7110
7111 2002-08-04  John Levon  <levon@movementarian.org>
7112
7113         * BufferView.h:
7114         * BufferView.C: cosmetic change
7115
7116         * BufferView_pimpl.C: s/IGNORE_CODE/NOTE_CODE/
7117
7118         * bufferlist.C:
7119         * buffer.h:
7120         * buffer.C:
7121         * lyxcb.h:
7122         * lyxcb.C:
7123         * lyxserver.C:
7124         * lyxvc.C:
7125         * vc-backend.C:
7126         * BufferView2.C: purge all "Lyx" not "LyX" strings
7127
7128         * lyxcursor.h:
7129         * lyxcursor.C: attempt to add some documentation
7130
7131         * lyxfunc.C:
7132         * commandtags.h:
7133         * LyXAction.C:
7134         * ToolbarDefaults.C:
7135         * BufferView_pimpl.C: remove LFUN_DIALOG_TABULAR_INSERT and
7136           merge with LFUN_TABULAR_INSERT
7137
7138         * Makefile.am:
7139         * SpellBase.h:
7140         * ispell.h:
7141         * ispell.C:
7142         * pspell.h:
7143         * pspell.C: split up i/pspell implementations into separate
7144           files, many cleanups
7145
7146         * lyxlex.C: unrevert, with a proper fix for prefix.length() == 0
7147
7148         * text2.C: some cleanup
7149
7150         * lyxfunc.C: don't check for isp_command == "none" any more, it
7151           didn't make any sense
7152
7153 2002-08-06      Martin Vermeer <martin.vermeer@hut.fi>
7154
7155         * counters.[Ch]
7156         * text2.C
7157         * paragraph.[Ch]
7158         * makefile.am: move counters functionality over
7159         from text2.C/paragraph.[Ch] to counters.[Ch], and
7160         make proper C++.
7161 2002-08-02  John Levon  <levon@movementarian.org>
7162
7163         * buffer.C: s/lyxconvert/lyx2lyx/
7164
7165 2002-08-02  Angus Leeming  <leeming@lyx.org>
7166
7167         * lyxlex.C: revert John's change as it breaks reading of the user
7168         preamble.
7169
7170 2002-08-02  Angus Leeming  <leeming@lyx.org>
7171
7172         * importer.C (Import):
7173         * lyxfunc.C (moveCursorUpdate, dispatch, view_status_message):
7174         changes due to LyXView::view() now returning a boost::shared_ptr.
7175
7176 2002-08-02  John Levon  <levon@movementarian.org>
7177
7178         * lyxlex.C: small cleanup
7179
7180 2002-08-02  John Levon  <levon@movementarian.org>
7181
7182         * text2.C (status): small cleanup, no logic change
7183
7184 2002-08-01  John Levon  <levon@movementarian.org>
7185
7186         * buffer.h:
7187         * buffer.C (writeFile): don't output alerts, caller
7188           handles this
7189
7190         * bufferlist.C:
7191         * lyx_cb.C: from above
7192
7193         * lyxfunc.C: allow to open non-existent files
7194
7195 2002-07-31  John Levon  <levon@movementarian.org>
7196
7197         * lyxserver.C: don't let incidental errors get
7198           in the way (errno)
7199
7200 2002-07-30  John Levon  <levon@movementarian.org>
7201
7202         * lyxfunc.C: disable character dialog in ERT inset (partial fix)
7203
7204 2002-07-30  John Levon  <levon@movementarian.org>
7205
7206         * lyxserver.h:
7207         * lyxserver.C: remove I/O callback too
7208
7209 2002-07-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7210
7211         * lyxfunc.C (getStatus): disable LFUN_LATEX_LOG when there is no
7212         log.
7213
7214 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
7215
7216         * many files: strip,frontStrip -> trim,ltrim,rtrim
7217
7218 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
7219
7220         * PrinterParams.h: remove extern containsOnly, and include
7221         support/lstrings.h instead.
7222
7223         * LaTeX.C (scanAuxFile): modify because of strip changes
7224         (deplog): ditto
7225         * buffer.C (makeLaTeXFile): ditto
7226         * bufferparams.C (writeFile): ditt
7227         * lyxfont.C (stateText): ditto
7228         * lyxserver.C (read_ready): ditto
7229         * vc-backend.C (scanMaster): ditto
7230
7231         * BufferView_pimpl.h: ws changes
7232
7233         * BufferView_pimpl.C: inlude boost/signals/connection.hpp
7234
7235 2002-07-26  André Pönitz <poenitz@gmx.net>
7236
7237         * kb_sequence.C: remove unnedred usings
7238
7239 2002-07-26  Juergen Vigna  <jug@sad.it>
7240
7241         * lyxfind.C (LyXReplace): we have to check better if the returned
7242         text is not of theLockingInset()->getLockingInset().
7243
7244 2002-07-25  Juergen Vigna  <jug@sad.it>
7245
7246         * lyxfind.C (LyXReplace): don't replace if we don't get the
7247         right LyXText.
7248
7249         * undo_funcs.C (createUndo): remove debugging code.
7250
7251 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
7252
7253         * buffer.C (parseSingleLyXformat2Token): Use default placement
7254         when reading old floats.
7255
7256         * FloatList.C (FloatList): Change the default placement of figure
7257         and tables to "tbp".
7258
7259 2002-07-25  John Levon  <moz@compsoc.man.ac.uk>
7260
7261         * MenuBackend.C: using std::max
7262
7263 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7264
7265         * MenuBackend.C (expandToc):
7266         (expandToc2): code moved from xforms menu frontend. It is now
7267         generic and TOCs are transparent to menu frontends.
7268
7269 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7270
7271         * toc.C (getTocList): protect against buf=0
7272
7273         * MenuBackend.C (expand): move from Menu to MenuBackend; pass a
7274         Menu as first parameter. Now, this calls itself recursively to
7275         expand a whole tree (this will be useful for TOC handling)
7276         (expandFloatInsert): remove 'wide' version of floats
7277
7278         * MenuBackend.h (submenuname): returns the name of the submenu.
7279         (submenu): returns the submenu itself, provided it has been
7280         created by MenuBackend::expand
7281
7282 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7283
7284         * paragraph_pimpl.C (simpleTeXSpecialChars): close fonts before
7285         insets which have noFontChange == true. (bug #172)
7286
7287 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7288
7289         * BufferView_pimpl.C: add connection objects and use them...
7290         (Pimpl): here.
7291
7292 2002-07-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7293
7294         * MenuBackend.C (expandLastfiles):
7295         (expandDocuments):
7296         (expandFormats):
7297         (expandFloatListInsert):
7298         (expandFloatInsert):
7299         (expand): split expand in parts
7300
7301 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
7302
7303         * lyx_gui.C: use lyx_gui::exit()
7304
7305 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
7306
7307         * LyXAction.C: show the failing pseudo action
7308
7309 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
7310
7311         * buffer.C (readFile): Run the lyxconvert script in order to read
7312         old files.
7313
7314 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
7315
7316         * LyXAction.C:
7317         * commandtags.h:
7318         * lyxfunc.C: remove LFUN_ADD_TO_TOOLBAR
7319
7320 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
7321
7322         * LyXAction.C:
7323         * commandtags.h:
7324         * lyxfunc.C: remove LFUN_TOOLBAR_PUSH
7325
7326 2002-07-22  Herbert Voss  <voss@lyx.org>
7327
7328         * lengthcommon.C:
7329         * lyxlength.[Ch]: add support for the vertical lengths
7330
7331 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
7332
7333         * toc.[Ch]: std:: fixes
7334
7335 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7336
7337         * lyxrc.C: do not include lyx_main.h
7338
7339         * LaTeXFeatures.h: use a list<string> instead of a vector<string>
7340         for layouts
7341
7342         * lyxrc.C:
7343         * encoding.C:
7344         * bufferlist.C:
7345         * BufferView2.C: include "lyxlex.h"
7346
7347         * tabular.h:
7348         * bufferparams.h: do not #include "lyxlex.h"
7349
7350         * lyxtextclasslist.C (Add): remove method
7351         (classlist): renamed to classlist_
7352
7353         * paragraph_pimpl.C:
7354         * paragraph.C:
7355         * text2.C:
7356         * CutAndPaste.C:
7357         * bufferview_funcs.C:
7358         * bufferlist.C:
7359         * text.C:
7360         * LaTeXFeatures.C:
7361         * buffer.C:
7362         * toc.C (getTocList): use BufferParams::getLyXTextClass
7363
7364         * toc.C (getTocList): use InsetFloat::addToToc
7365
7366         * toc.[Ch]: new files, containing helper functions to handle table
7367         of contents
7368
7369         * lyxfunc.C (dispatch): no need to remove spaces around command
7370         given as a string
7371         (getStatus): handle LFUN_SEQUENCE by returning the status of the
7372         first command of the sequence; it is not very clever, but I do not
7373         have a better idea, actually
7374
7375         * LyXAction.C (LookupFunc): make sure to remove space at the
7376         beginning and end of the command
7377
7378 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7379
7380         * MenuBackend.C (getMenubar): new method: return the menubar of
7381         this menu set
7382         (read): treat differently reading of menu and menubar (in
7383         particular, the menubar has no name now)
7384         (Menu::menubar): remove
7385
7386         * lyxfunc.C (dispatch): add 'done' message to minibuffer when
7387         saving is finished
7388
7389 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
7390
7391         * BufferView_pimpl.C (workAreaButtonRelease): Fix opening of
7392         a bibitem inset in a RTL paragraph.
7393
7394 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
7395
7396         * paragraph_pimpl.C: constify
7397
7398         * BufferView_pimpl.C:
7399         * LaTeX.C:
7400         * lyxfunc.C: fix dispatch in a nicer way
7401
7402 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7403
7404         * lyxfunc.C (dispatch):
7405         * BufferView_pimpl.C:
7406         * BufferView_pimpl.h:
7407         * BufferView.C:
7408         * BufferView.h: rename Dispatch() to dispatch()
7409
7410         * LaTeXFeatures.C (useLayout): honor LyXLayout::depends_on()
7411
7412         * lyxlayout.C (Read): honor DependsOn tag
7413
7414         * lyxlayout.[Ch] (depends_on): new method
7415
7416         * version.C.in: update lyx_docversion
7417
7418         * LaTeXFeatures.C (getMacros): only define \LyX when needed
7419
7420         * paragraph.C (validate): remove from here...
7421         * paragraph_pimpl.C (validate): ... and move here
7422         (isTextAt): make it const
7423
7424         * buffer.C (getLists): ws cleanup
7425
7426 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
7427
7428         * language.C (read): Use iso8859-1 encoding in latex_lang
7429         (this prevents LyX from crashing when using iso10646-1 encoding).
7430
7431 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7432
7433         * text2.C (toggleInset): if cursor is inside an inset, close the
7434         inset and leave cursor _after_ it
7435
7436 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
7437
7438         * lyxfunc.C: move minibuffer completion handling out of here
7439
7440 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
7441
7442         * BufferView_pimpl.C:
7443         * LaTeX.C: fix dispatch calls
7444
7445 2002-07-19  Dekel Tsur  <dekelts@tau.ac.il>
7446
7447         * text.C (drawChars): Fix Arabic text rendering.
7448
7449 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
7450
7451         * LyXAction.C:
7452         * commandtags.h:
7453         * lyxfunc.C: remove message-push/pop
7454
7455         * lyxserver.C:
7456         * lyxfunc.h:
7457         * lyxfunc.C: rationalise some code by removing verboseDispatch
7458           in favour of a bool argument to dispatch()
7459
7460 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7461
7462         * lyx_main.C (init): make sure to read symlinks as absolute paths
7463
7464 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
7465
7466         * lyxfunc.h:
7467         * lyxfunc.C: no need for commandshortcut to be a member
7468
7469 2002-07-15  André Pönitz <poenitz@gmx.net>
7470
7471         * converter.C: add support for $$s (scripts from lib/scripts dir)
7472         * lyx_main.C: white space
7473
7474 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
7475
7476         * bufferlist.C:
7477         * lyxrc.h:
7478         * lyxrc.C: remove second exit confirmation
7479
7480 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
7481
7482         * BufferView.h:
7483         * BufferView.C:
7484         * BufferView2.C:
7485         * BufferView_pimpl.h:
7486         * BufferView_pimpl.C:
7487         * lyxfunc.C: s/setState/switchKeyMap/, s/showState/view_state_changed/
7488
7489 2002-07-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7490
7491         * MenuBackend.C (expand): add numeric shortcuts to document menu
7492
7493         * lyxrc.C (getDescription): remove RC_NEW_ASK_FILENAME
7494
7495 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7496
7497         * lyxfont.C (setLyXFamily):
7498         (setLyXSeries):
7499         (setLyXShape):
7500         (setLyXSize):
7501         (setLyXMisc):
7502         (lyxRead):
7503         * debug.C (value):
7504         * buffer.C (asciiParagraph): use ascii_lowercase
7505
7506 2002-07-15  Mike Fabian  <mfabian@suse.de>
7507
7508         * lyxlex_pimpl.C (search_kw):
7509         * lyxlex.C (getLongString):
7510         * converter.h (operator<):
7511         * converter.C (operator<):
7512         * buffer.C (parseSingleLyXformat2Token):
7513         (asciiParagraph):
7514         * ToolbarDefaults.C (read):
7515         * MenuBackend.C (checkShortcuts):
7516         (read):
7517         * LColor.C (getFromGUIName):
7518         (getFromLyXName): use the compare_ascii_no_case instead of
7519         compare_no_case, because in turkish, 'i' is not the lowercase
7520         version of 'I', and thus turkish locale breaks parsing of tags.
7521
7522 2002-07-16  Angus Leeming  <leeming@lyx.org>
7523
7524         * BufferView_pimpl.C (buffer): Previews::generateBufferPreviews
7525         now takes a Buffer const & argument.
7526
7527 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
7528
7529         * BufferView.C (resize): check there's a buffer to resize
7530
7531 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
7532
7533         * lyxfunc.C: remove dead code
7534
7535         * lyxserver.h:
7536         * lyxserver.C: use lyx_guii::set_read_callback
7537
7538 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
7539
7540         * lyxfunc.C (dispatch): Correct cursor behaviour when exiting
7541         an inset in a RTL paragraph.
7542
7543 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
7544
7545         * lyxfunc.C: repaint after a font size update
7546
7547 2002-07-15  André Pönitz <poenitz@gmx.net>
7548
7549         * lyxlength.C: inBP should be able to return negative values
7550
7551 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
7552
7553         * lyxfunc.C: use lyx_gui::update_fonts()
7554
7555 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
7556
7557         * lyxfunc.C: use lyx_gui::update_color()
7558
7559 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
7560
7561         * bufferlist.C:
7562         * lyxfunc.h:
7563         * lyxfunc.C:
7564         * lyxrc.h:
7565         * lyxrc.C: remove file->new asks for name option, and let
7566           buffer-new take an argument
7567
7568 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
7569
7570         * BufferView_pimpl.C: remove unneeded extra repaint()
7571
7572 2002-07-10  John Levon  <moz@compsoc.man.ac.uk>
7573
7574         * LyXAction.C: allow command-sequence with NoBuffer
7575
7576         * lyxfunc.C: don't insist on trailing ';' for command-sequence
7577
7578 2002-07-10  Angus Leeming  <leeming@lyx.org>
7579
7580         * lyxrc.[Ch]: preview_scale_factor should be a float not an int.
7581
7582 2002-07-09  Angus Leeming  <leeming@lyx.org>
7583
7584         * lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
7585
7586 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
7587
7588         * lengthcommon.h: whitespace
7589
7590         * lyxfunc.C: update scrollbar after goto paragraph
7591
7592         * lyxtext.h: factor out page break drawing, and fix it so
7593           page break/added space paints as selected nicely
7594
7595 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
7596
7597         * BufferView_pimpl.C: add FIXMEs, clean up a little
7598
7599 2002-07-09  André Pönitz <poenitz@gmx.net>
7600
7601         * lyxfont.[Ch]: support for wasy symbols
7602
7603 2002-07-08  André Pönitz <poenitz@gmx.net>
7604
7605         * BufferView_pimpl.C: apply John's patch for #93.
7606
7607 2002-07-05  Angus Leeming  <leeming@lyx.org>
7608
7609         * BufferView_pimpl.C (buffer): generate previews if desired.
7610
7611         * LColor.h: add "preview" to the color enum.
7612
7613         * LColor.C (LColor): add a corresponding entry to the items array.
7614
7615         * buffer.C (~Buffer): remove any previewed LaTeX snippets associated
7616         with this buffer.
7617
7618 2002-07-05  Angus Leeming  <leeming@lyx.org>
7619
7620         * buffer.[Ch] (makeLaTeXFile): create two methods where there was one.
7621         The body of the code is now in the method that is passed an ostream &
7622         rather than a file name.
7623         Pass an additional only_preamble parameter, useful for the forthcoming
7624         preview stuff.
7625
7626 2002-07-03  André Pönitz <poenitz@gmx.net>
7627
7628         * lyxfunc.C: simplify getStatus() a bit for math stuff
7629
7630 2002-07-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7631
7632         * BufferView_pimpl.C (workAreaResize): add an unconditional repaint.
7633
7634 2002-06-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7635
7636         * text.C (changeRegionCase): do not change case of all the
7637         document when region ends at paragraph end (bug #461)
7638
7639 2002-07-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7640
7641         * paragraph.C (startTeXParParams):
7642         (endTeXParParams): add \protect when necessary
7643
7644 2002-06-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7645
7646         * BufferView_pimpl.C (workAreaExpose): remove warning
7647
7648 2002-06-27  Angus Leeming  <leeming@lyx.org>
7649
7650         * Makefile.am: add lyxlayout_ptr_fwd.h.
7651
7652 2002-06-26  André Pönitz <poenitz@gmx.net>
7653
7654         * lyxrc.[Ch]: introduce \preview, revive half-dead \show_banner
7655
7656 2002-06-25  Angus Leeming  <leeming@lyx.org>
7657
7658         * lyxfunc.C (dispatch): Comment out the call to
7659         grfx::GCache::changeDisplay. The method no longer exists now that the
7660         pixmap generation part of the graphics loader has been moved into
7661         InsetGraphics.
7662
7663 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7664
7665         * text2.C: layout as layout
7666
7667         * text.C: layout as layout
7668
7669         * tabular.C (OldFormatRead): layout as layout
7670
7671         * paragraph_pimpl.C (TeXDeeper): layout as layout
7672         (realizeFont): layout as layout
7673
7674         * paragraph.C (writeFile): layout as layout
7675         (validate): layout as layout
7676         (getFont): layout as layout
7677         (getLabelFont): layout as layout
7678         (getLayoutFont): layout as layout
7679         (breakParagraph): layout as layout
7680         (stripLeadingSpaces): layout as layout
7681         (getEndLabel): layout as layout
7682         (getMaxDepthAfter): layout as layout
7683         (applyLayout): layout as layout
7684         (TeXOnePar): layout as layout
7685         (simpleTeXOnePar): layout as layout
7686         (TeXEnvironment): layout as layout
7687         (layout): layout as layout
7688         (layout): layout as layout
7689
7690         * lyxtextclass.C (compare_name): new functor to work with
7691         shared_ptr, layout as layout
7692         (Read): layout as layout
7693         (hasLayout): layout as layout
7694         (operator): layout as layout
7695         (delete_layout): layout as layout
7696         (defaultLayout): layout as layout
7697
7698         * lyxlayout_ptr_fwd.h: new file
7699
7700         * lyxlayout.C (Read): layout as layout
7701
7702         * lyx_cb.C (MenuInsertLabel): layout as layout
7703
7704         * bufferlist.C (newFile): layout as layout
7705
7706         * buffer.C (readLyXformat2): layout as layout
7707         (parseSingleLyXformat2Token): layout as layout
7708         (insertStringAsLines): layout as layout
7709         (asciiParagraph): layout as layout
7710         (latexParagraphs): layout as layout
7711         (makeLinuxDocFile): layout as layout
7712         (simpleLinuxDocOnePar): layout as layout
7713         (makeDocBookFile): layout as layout
7714         (simpleDocBookOnePar): layout as layout
7715         (getLists): layout as layout
7716
7717         * LaTeXFeatures.C (getTClassPreamble): layout as layout
7718
7719         * CutAndPaste.C (cutSelection): layout as layout
7720         (pasteSelection): layout as layout
7721         (SwitchLayoutsBetweenClasses): layout as layout
7722
7723         * BufferView_pimpl.C (Dispatch): layout as layout
7724         (smartQuote): layout as layout
7725
7726         * BufferView2.C (unlockInset): layout as layout
7727
7728 2002-06-24  André Pönitz <poenitz@gmx.net>
7729
7730         * lyxfunc.C: fix #487
7731
7732 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
7733
7734         * lyxrc.h:
7735         * lyxrc.C:
7736         * lyxfunc.C: remove display_shortcuts, show_banner
7737
7738 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
7739
7740         * Buffer_pimpl.C: oops, update on resize
7741
7742 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
7743
7744         * buffer.C:
7745         * converter.C:
7746         * exporter.C:
7747         * lyxfunc.C:
7748         * BufferView.h:
7749         * BufferView.C: use repaint()
7750
7751         * BufferView_pimpl.h:
7752         * BufferView_pimpl.C: s/updateScreen()/repaint()/
7753           as it's a clearer description. Remove superfluous
7754           redraws.
7755
7756 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
7757
7758         * text.C: fix bug 488. Not ideal, but getting
7759           getWord() to work properly for the insets that
7760           matter is more difficult ...
7761
7762 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
7763
7764         * BufferView_pimpl.C:
7765         * LyXAction.C:
7766         * commandtags.h:
7767         * lyxfunc.C: remove the six million index lyxfuncs to just
7768           one, and DTRT (bug 458)
7769
7770 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
7771
7772         * BufferView.h:
7773         * BufferView.C:
7774         * BufferView_pimpl.h:
7775         * BufferView_pimpl.C: clean up resize() stuff,
7776           and unnecessary updateScreen()s
7777
7778 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
7779
7780         * BufferView.h:
7781         * BufferView.C:
7782         * BufferView_pimpl.h:
7783         * BufferView_pimpl.C:
7784         * lyxfind.h:
7785         * lyxfind.C:
7786         * minibuffer.C: remove focus management of workarea,
7787           not needed. Use screen's greyOut()
7788
7789 2002-06-17  Herbert Voss  <voss@lyx.org>
7790
7791         * converter.C: (convert) do not post a message, when converting
7792         fails, let the calling function decide what to do in this case
7793
7794 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
7795
7796         * lyxfunc.C: tidy up a little
7797
7798 2002-06-16    <alstrup@diku.dk>
7799
7800         * BufferView_pimpl.C (Pimpl): Use WorkAreaFactory.
7801         Got rid of FORMS_H_LOCATION include. Now we are
7802         GUII.
7803
7804 2002-06-15  LyX Development team  <lyx@rilke>
7805
7806         * buffer.[Ch] (sgmlOpenTag):
7807         (sgmlCloseTag): Added support for avoiding pernicious mixed
7808         content. Return number of lines written.
7809
7810         (makeLinuxDocFile):
7811         (makeDocBookFile): Fixed calls to sgml*Tag.
7812         Simple white space clean.
7813
7814         (simpleDocBookOnePar): Simple white space clean.
7815
7816         * tabular.[Ch] (docBook): Renamed to docbook and got another
7817         argument to related with the pernicious mixed content.
7818
7819         (docbookRow): Fixed calls for docbook inset method.
7820
7821 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
7822
7823         * lyxfunc.[Ch]: Use LyXKeySym instead of KeySym,
7824         so it's X11 independent.
7825
7826         * kb*.[Ch]: ditto.
7827
7828         * BufferView_pimpl.[Ch] (workAreaKeyPress): ditto.
7829
7830 2002-06-15  Lyx Development team  <lyx@electronia>
7831
7832         * intl.h: Renamed getTrans to getTransManager.
7833
7834 2002-06-14  Angus Leeming  <leeming@lyx.org>
7835
7836         * Makefile.am: nuke forgotten stl_string_fwd.h.
7837
7838 2002-06-12  Angus Leeming  <leeming@lyx.org>
7839
7840         * stl_string_fwd.h: unused and non-compliant anyway. Nuked.
7841
7842 2002-06-13  Angus Leeming  <leeming@lyx.org>
7843
7844         * LaTeX.C:
7845         * vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
7846
7847 2002-06-12  Andrew Zabolotny  <zap@cobra.ru>
7848
7849         * kbmap.C (getiso): add support for cyrillic and greek
7850
7851 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7852
7853         * BufferView.h:
7854         * BufferView.C:
7855         * BufferView_pimpl.h:
7856         * BufferView_pimpl.C: move bogus scrolling logic
7857           to xforms
7858
7859 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7860
7861         * lyxfunc.C:
7862         * BufferView_pimpl.C: view->resize() change
7863
7864 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7865
7866         * BufferView_pimpl.C: topCursorVisible
7867           prototype change
7868
7869 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7870
7871         * Makefile.am:
7872         * lyx_gui.h:
7873         * lyx_gui.C: move to frontends/
7874
7875         * main.C:
7876         * lyx_main.h:
7877         * lyx_main.C: changes from above
7878
7879 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7880
7881         * intl.C:
7882         * intl.h:
7883         * kbmap.C:
7884         * kbsequence.C:
7885         * lyx_cb.C:
7886         * lyx_main.C: minor tidy
7887
7888 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7889
7890         * BufferView_pimpl.h:
7891         * BufferView_pimpl.C:
7892         * BufferView.h:
7893         * BufferView.C: make painter() const,
7894           remove dead code
7895
7896         * BufferView2.C: use screen() accessor
7897
7898         * lyx_main.h:
7899         * lyx_main.C: some minor cleanup
7900
7901 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7902
7903         * BufferView_pimpl.h:
7904         * BufferView_pimpl.C: remove enter/leaveView,
7905           use workHeight()
7906
7907 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7908
7909         * BufferView.h:
7910         * BufferView.C:
7911         * BufferView2.C:
7912         * BufferView_pimpl.h:
7913         * BufferView_pimpl.C: only construct screen once,
7914           rename
7915
7916         * lyxrc.C: remove pointless comment
7917
7918 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
7919
7920         * BufferView.h:
7921         * BufferView.C: remove active() and belowMouse()
7922
7923         * BufferView_pimpl.h:
7924         * BufferView_pimpl.C: use workarea() not workarea_,
7925           and make it use a scoped_ptr instead
7926
7927 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
7928
7929         * lyx_gui.C: add debug message on BadWindow
7930
7931 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7932
7933         * sp_spell.C: fdopen is not part of the C++ standard.
7934
7935         * paragraph.C (InsetIterator): use >= instead of ==
7936
7937 2002-06-07  Angus Leeming  <leeming@lyx.org>
7938
7939         Fixes needed to compile with Compaq cxx 6.5.
7940         * BufferView_pimpl.C:
7941         * DepTable.C:
7942         * buffer.C:
7943         * converter.C:
7944         * encoding.C:
7945         * lyx_gui.C:
7946         * lyx_main.C:
7947         * lyxtextclasslist.C:
7948         * minibuffer.C:
7949         * sp_spell.C:
7950         * tabular_funcs.C:
7951         * vc-backend.C:
7952         all c-library variables have been moved into namespace std. Wrap
7953         using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
7954
7955         * lyxlength.C:
7956         * tabular-old.C:
7957         * tabular.C:
7958         Add a using std::abs declaration.
7959
7960         * kbmap.h (modifier_pair):
7961         * paragraph.h (InsetTable, InsetList):
7962         * lyxfont.h (FontBits):
7963         type definition made public.
7964
7965         * bufferlist.C (emergencyWriteAll): the compiler complains that
7966         there is more than one possible lyx::class_fun template to choose from.
7967         I re-named the void specialisation as lyx::void_class_fun.
7968
7969         * lyxfont.C (FontBits' operator==, operator!=): taken out of class.
7970
7971         * tabular_funcs.C: lstrings.h must come before tabular_funcs.h or
7972         the compiler is is unable to find tostr in write_attribute.
7973
7974 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7975
7976         * buffer.C (sgmlError): hide #warning
7977
7978 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7979
7980         * xtl/*: get rid of xtl, which is not in use anyway
7981
7982         * LyXAction.C (init):
7983         * commandtags.h: remove BUFFER_PRINT and BUFFER_PARAMS_GET, which
7984         were unimplemented xtl experimentation
7985
7986 2002-06-04  André Pönitz <poenitz@gmx.net>
7987
7988         * lyxfunc.C: disable array operation on simple formulae
7989
7990 2002-06-03  John Levon  <moz@compsoc.man.ac.uk>
7991
7992         * converter.C: constify a bit
7993
7994 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
7995
7996         * lyx_gui.C: check xforms version correctly
7997
7998 2002-04-30  Herbert Voss  <voss@lyx.org>
7999
8000         * buffer.C (parseSingleLyXformat2Token): fix bug with ignored
8001         "keep" option
8002
8003 2002-05-31  John Levon  <moz@compsoc.man.ac.uk>
8004
8005         * lyxvc.C: fix bug 416 (make sure buffer is saved before
8006           attempt to register it with a VCS)
8007
8008 2002-05-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8009
8010         * lyx_main.C (init): honor variables LYX_DIR_13x and
8011         LYX_USERDIR_13x
8012
8013 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
8014
8015         * buffer.h:
8016         * buffer.C:
8017         * lyx_main.C: fix a crash on bad command line,
8018           and give a useful exit status on error
8019
8020         * lyxfunc.C (doImport): allow -i lyx to work
8021
8022 2002-03-30  André Pönitz <poenitz@gmx.net>
8023
8024         * lyxfunc.C: mathed font changes
8025
8026 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
8027
8028         * LaTeX.C:
8029         * importer.h:
8030         * importer.C:
8031         * lyx_sty.h:
8032         * lyx_sty.C:
8033         * lyxlex.C:
8034         * lyxrow.h:
8035         * lyxtext.h:
8036         * paragraph.h:
8037         * paragraph.C:
8038         * texrow.h:
8039         * texrow.C:
8040         * text.C:
8041         * trans_mgr.h: srcdocs, and some minor cleanups
8042
8043 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8044
8045         * paragraph_pimpl.C (isTextAt): rewrite to be much faster (do not
8046         call getFont all the time)
8047
8048 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8049
8050         * switch from SigC signals to boost::signals
8051
8052 2002-05-29  André Pönitz <poenitz@gmx.net>
8053
8054         * paragraph_pimpl.C (getChar): don't call size() too often...
8055
8056 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8057
8058         * paragraph_pimpl.C (insertChar): do not try to update tables when
8059         appending (pos == size())
8060
8061         * buffer.C (parseSingleLyXformat2Token): reorder a bit the tests
8062         in order to reduce drastically the number of comparisons needed to
8063         parse a large document
8064
8065 2002-05-29  André Pönitz <poenitz@gmx.net>
8066
8067         * text.C:
8068         * text2.C:
8069         * lyxtextclass.C:
8070         * sp_pspell.h:
8071         * textclasslist.[Ch]:
8072         * sp_ispell.h: whitespace change
8073
8074 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8075
8076         * lyxserver.C (callback): tentative fix of lyxserver. Does not use
8077         lyxaction directly now.
8078
8079 2002-05-27  John Levon  <moz@compsoc.man.ac.uk>
8080
8081         * trans.C:
8082         * lyxfont.C:
8083         * lyxvc.C: remove unused headers
8084
8085 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
8086
8087         * Makefile.am:
8088         * buffer.h:
8089         * undostack.h:
8090         * undostack.C:
8091         * undo_funcs.h:
8092         * undo_funcs.C: some cleanups. Use shared_ptr
8093           and a template for the undo stacks.
8094
8095 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
8096
8097         * BufferView_pimpl.h:
8098         * BufferView_pimpl.C:
8099         * kbmap.h:
8100         * kbmap.C:
8101         * kbsequence.h:
8102         * kbsequence.C:
8103         * lyxfunc.h:
8104         * lyxfunc.C:
8105         * text2.C: use key_state/mouse_state
8106
8107 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8108
8109         * vc-backend.C (scanMaster): use boost regex and get rid of LRegex
8110         and LSubstring
8111
8112         * chset.C: change include order
8113         (loadFile): use boost regex and get rid of LRegex and LSubstring
8114
8115         * Makefile.am (BOOST_LIBS): new variable
8116         (lyx_LDADD): use it
8117
8118         * LaTeX.C: change include order.
8119         (scanAuxFile): use boost regex and get rid of LRegex and
8120         LSubstring
8121         (deplog): ditto
8122
8123 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
8124
8125         * ColorHandler.h:
8126         * ColorHandler.C:
8127         * FontInfo.h:
8128         * FontInfo.C: moved to frontends/xforms/
8129
8130         * FontLoader.h:
8131         * FontLoader.C: moved into frontends for GUIIzation
8132
8133         * Makefile.am:
8134         * lyx_gui.C:
8135         * lyxfont.C:
8136         * lyxfunc.C: changes from above
8137
8138 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
8139
8140         * LColor.C: remove spurious X include
8141
8142         * BufferView_pimpl.C:
8143         * Makefile.am:
8144         * font.h:
8145         * font.C:
8146         * text.C:
8147         * text2.C: move font metrics to frontends/
8148
8149 2002-05-24  Juergen Vigna  <jug@sad.it>
8150
8151         * undo_funcs.C (textHandleUndo): fix the cursor selection after
8152         setting the undo_cursor.
8153
8154         * ParagraphParameters.h: include local includes first.
8155
8156 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
8157
8158         * BufferView_pimpl.C:
8159         * BufferView_pimpl.h:
8160         * Makefile.am:
8161         * WorkArea.h:
8162         * WorkArea.C:
8163         * screen.C: move WorkArea into frontends/
8164
8165         * lyxscreen.h:
8166         * screen.C:
8167         * text.C:
8168         * BufferView.C:
8169         * BufferView2.C: move LyXScreen into frontends/
8170
8171         * lyxlookup.h:
8172         * lyxlookup.C:
8173         * lyx_gui.C: move lyxlookup into frontends/xforms/
8174
8175 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
8176
8177         * BufferView2.C:
8178         * BufferView_pimpl.C:
8179         * FontLoader.C:
8180         * LyXView.h:
8181         * LyXView.C:
8182         * Makefile.am:
8183         * WorkArea.C:
8184         * XFormsView.h:
8185         * XFormsView.C:
8186         * buffer.C:
8187         * bufferlist.C:
8188         * bufferview_funcs.C:
8189         * converter.C:
8190         * importer.C:
8191         * lyx_cb.C:
8192         * lyx_gui.C:
8193         * lyx_main.C:
8194         * lyx_find.C:
8195         * lyxfunc.C:
8196         * lyxvc.C:
8197         * minibuffer.C:
8198         * text.C:
8199         * text2.C:
8200         * trans.C:
8201         * vc-backend.C: move LyX/XFormsView into frontends/
8202
8203 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
8204
8205         * Makefile.am:
8206         * PainterBase.C:
8207         * PainterBase.h:
8208         * Painter.C:
8209         * Painter.h:
8210         * WorkArea.C:
8211         * WorkArea.h:
8212         * screen.C:
8213         * tabular.C:
8214         * text.C:
8215         * text2.C: move Painter to frontends/
8216
8217 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8218
8219         * buffer.C: comment out some some code that depend upon lyx_format
8220         < 220
8221
8222         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
8223         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
8224
8225         * buffer.h (NO_COMPABILITY): turn off compability
8226
8227         * ColorHandler.C: include scoped_array.hpp
8228
8229         * font.C: Use more specific smart_ptr header.
8230         * Painter.C: ditto
8231         * gettext.C: ditto
8232         * ShareContainer.h: ditto
8233         * lyx_main.h: ditto
8234         * kbmap.h: ditto
8235         * FontInfo.h: ditto
8236         * BufferView_pimpl.h: ditto
8237         * ColorHandler.h: ditto
8238
8239         * kbmap.C (defkey): change call to shared_ptr::reset
8240
8241 2002-05-21  Juergen Vigna  <jug@sad.it>
8242
8243         * buffer.C (insertErtContents): fix to insert ert asis if it is
8244         non empty. Skip it completely if it contains only whitespaces.
8245
8246 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
8247
8248         * BufferView_pimpl.C:
8249         * BufferView2.C: clear selection on paste (bug 393)
8250
8251 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8252
8253         * DepTable.C: include ctime
8254
8255 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
8256
8257         * buffer.C (latexParagraphs): Add new argument (moving_arg).
8258
8259 2002-05-14  Juergen Vigna  <jug@sad.it>
8260
8261         * text.C (breakParagraph): fixed function to honor the keepempty
8262         layout in the right maner and also to permit the right breaking
8263         algorithm on empty or non empyt keepempty paragraphs.
8264
8265         * paragraph.C (breakParagraph): we have to check also if the par
8266         is really empty (!size()) for isempty otherwise we do the wrong
8267         paragraph break.
8268
8269 2002-05-10  Juergen Vigna  <jug@sad.it>
8270
8271         * buffer.[Ch] : The following are only changes to the ert
8272         compatibility read reading old LaTeX layout and font stuff and
8273         convert it to ERTInsets.
8274
8275         * buffer.h: added isErtInset().
8276
8277         * buffer.C (struct ErtComp): add a fromlayout bool to check
8278         if we're inside a LaTeX layout.
8279         (isErtInset): new helper function.
8280         (insertErtContents): look for other ert insets before this one
8281         and insert the contents there, so that we don't have subsequent
8282         ERT insets with nothing between them. This way we create only one
8283         inset with multiple paragraphs. Also check if we don't insert only
8284         spaces ' ' as they are ignored anyway afterwards in the .tex file
8285         so if we have only spaces we will ignore this latex part in the
8286         new file.
8287         (parseSingleLyXformat2Token \\layout): better compatibility when
8288         reading layout-latex stuff.
8289         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
8290         language tag.
8291         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
8292         stuff after reading the inset only get the information back from
8293         the stack.
8294
8295 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
8296
8297         * buffer.C (makeLaTeXFile): Put language options after loading babel.
8298
8299         * LaTeXFeatures.C (getBabelOptions): New method.
8300
8301 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8302
8303         * BufferView_pimpl.C (Dispatch): work around missing argument for
8304         'layout'
8305
8306 2002-05-08  Juergen Vigna  <jug@sad.it>
8307
8308         * text.C (leftMargin): handle paragraph leftindent.
8309
8310         * paragraph.C (writeFile): write the new \\leftindent tag.
8311         (validate): handle leftindent code.
8312         (TeXEnvironment): handle paragraphleftindent code again.
8313
8314         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
8315
8316         * buffer.C (parseSingleLyXformat2Token): added compatibility code
8317         for paragrap_extra indent code and new token \\leftindent.
8318         (latexParagraphs): handle the leftindent as environment.
8319
8320         * ParameterStruct.h: added leftindent support.
8321
8322         * ParagraphParameters.C (leftIndent): added support functions for
8323         the paragraph left indent.
8324
8325         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
8326         more appropriate.
8327
8328 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
8329
8330         * paragraph.C (isRightToLeftPar): Return false for a paragraph
8331         inside insetERT.
8332
8333         * text.C (computeBidiTables): No bidi in insetERT.
8334
8335         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
8336         in RTL documents.
8337
8338 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8339
8340         * version.C.in: pre 5
8341
8342 2002-05-02  José Matos  <jamatos@fep.up.pt>
8343         * buffer.C (makeDocBookFile): white space changes, add newline to
8344         command styles.
8345         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
8346
8347         * tabular.C (docBook): fix typo.
8348
8349 2002-05-03  Juergen Vigna  <jug@sad.it>
8350
8351         * screen.C (drawFromTo): recalculate the rowpointer if we had a
8352         change in LyXText as we can not be sure it was not freed.
8353         (drawOneRow): remove unused code.
8354
8355         * text.C (drawInset): redo the calculation of the need_break_row as
8356         it could have a row which was already freed.
8357         (draw): look at the return value of drawInset and return false if
8358         it also returned false.
8359         (paintRowText): look at the return value of draw and return false if
8360         it also returned false.
8361
8362         * lyxtext.h: added bool return type to drawInset() and draw() so that
8363         if we have a change in the row so that the rowbreak has to be redone
8364         we abort drawing as it will be called again.
8365
8366 2002-05-02  Juergen Vigna  <jug@sad.it>
8367
8368         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
8369         a change in the maintext also if we're inside an inset.
8370         (Dispatch): set the cursor again after a break line and after the
8371         screen has been updated as it could be we're in a different row.
8372
8373         * text2.C (fixCursorAfterDelete): check to make sure we don't request
8374         to set the cursor behind the pargraph with > size().
8375         (setCursor): check also for the same paragraph when checking where
8376         to put the cursor if we have a NFR inset.
8377
8378         * buffer.C (parseSingleLyXformat2Token): move the compatibility
8379         parts of layout read further up as it still was in the wrong
8380         position.
8381
8382 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8383
8384         * screen.C (drawFromTo): change sine fullRebreak always return
8385         true.
8386
8387         * buffer.C (parseSingleLyXformat2Token): reindent some
8388
8389         * BufferView_pimpl.C (update): change since fullRebreak always
8390         return true.
8391         (Dispatch): git rid of the last hardcoded "Standard"s.
8392
8393 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8394
8395         * text2.[Ch] (fullRebreak): make it return void now that we always
8396         returned true.
8397
8398 2002-04-30  Juergen Vigna  <jug@sad.it>
8399
8400         * buffer.C (parseSingleLyXformat2Token): reset the font before the
8401         ert compatibility check for "latex" layout.
8402
8403 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
8404
8405         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
8406         minipages: use col% instead of p%, and also use the current font.
8407         (makeLaTeXFile): Fix use babel condition.
8408         (parseSingleLyXformat2Token): Correct font when reading old floats.
8409
8410 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
8411
8412         * BufferView_pimpl.C (Dispatch): Check that float type exists when
8413         inserting list of floats.
8414
8415 2002-04-25  Herbert Voss  <voss@lyx.org>
8416
8417         * MenuBackend.C (expand): don't add the graphics extensions to the
8418         export menu
8419
8420 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8421
8422         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
8423         non-existing layout, do not complain if it was the default layout
8424         of the original class (bug #342)
8425
8426 2002-04-24  Juergen Vigna  <jug@sad.it>
8427
8428         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
8429         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
8430
8431 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
8432
8433         * buffer.C (getBibkeyList): If using \bibliography, return the
8434         option field with the reference itself. Enables us to provide natbib
8435         support when using \bibliography.
8436
8437 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
8438
8439         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
8440
8441         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
8442         natbib is provided by the LaTeX class.
8443
8444 2002-04-23  Juergen Vigna  <jug@sad.it>
8445
8446         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
8447         Wakeup functions.
8448
8449         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
8450
8451 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8452
8453         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
8454
8455         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
8456         ensuremath around textordmasculine, textordfeminine and
8457         textdegree.
8458
8459 2002-04-19  Juergen Vigna  <jug@sad.it>
8460
8461         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
8462         reinitializing the buffer otherwise row-dimensions may be wrong.
8463         (update): reset also the selection cursors if they do exits otherwise
8464         their x/y positions may be wrong.
8465
8466         * text2.C (cursorDown): don't enter the inset if we came from a row
8467         above and are one row over the inset.
8468
8469         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
8470         really leaving an inset.
8471
8472 2002-04-18  Juergen Vigna  <jug@sad.it>
8473
8474         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
8475         of the selected paragraph does not have the selected layout also if
8476         the last one had!
8477
8478         * text2.C (setLayout): fixed bug which did not change last selected
8479         paragraph.
8480
8481         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
8482         changed the read and substituted \\end_float with \\end_inset!
8483
8484         * BufferView_pimpl.C (cursorPrevious):
8485         (cursorNext): fixed to make it work with rows heigher than the work
8486         area without moving the cursor only the draw of the row.
8487         (workAreaMotionNotify): fix jumping over high rows.
8488
8489 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8490
8491         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
8492         Ressler.
8493
8494 2002-04-16  Juergen Vigna  <jug@sad.it>
8495
8496         * text2.C (setCursor): set also the irow().
8497         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
8498         (cursorUp):
8499         (cursorDown): support for locking an inset if the x_fix value goes
8500         inside it. That way I can transverse insets too with cursor up/down.
8501
8502         * lyxrow.h: added irow helper function same as other (i) functions.
8503
8504         * BufferView_pimpl.C (cursorPrevious):
8505         (cursorNext): fixed for insets!
8506
8507 2002-04-15  Juergen Vigna  <jug@sad.it>
8508
8509         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
8510         position otherwise it is wrong in some cases.
8511
8512         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
8513         inside the inset before the call.
8514
8515 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
8516
8517         * buffer.[Ch] (getBibkeyList): make it const.
8518
8519 2002-04-12  Juergen Vigna  <jug@sad.it>
8520
8521         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
8522
8523         * text2.C (getCursorX): new helper function
8524         (setCursor): compute also ix_
8525         (setCursorFromCoordinates): set also ix.
8526
8527         * lyxcursor.h: added ix_ and helper functions.
8528
8529         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
8530
8531         * buffer.C (insertStringAsLines): dont break paragraph if the this
8532         paragraph is inside an inset which does not permit it!
8533
8534         * text.C (breakParagraph): honor keepempty flag and break the paragraph
8535         also with no chars on this paragraph.
8536         (paintRowText): only paint stuff if it's inside the workarea!
8537
8538         * paragraph.C (breakParagraph): honor keepempty flag and break the
8539         paragraph always below not above.
8540
8541         * BufferView2.C (unlockInset): update the paragraph layout on inset
8542         unlock as we changed paragraph in such a case.
8543
8544         * lyxfind.C (LyXFind): clear the former selection if not found!
8545
8546         * text2.C (insertInset): freeze Undo after setUndo so that it is not
8547         again called in insertChar().
8548
8549         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
8550         an inset which uses the whole row!
8551         (rightMargin): ditto.
8552         (insertChar): force a rebreak if we inserted an inset!
8553
8554 2002-03-28  Herbert Voss  <voss@lyx.org>
8555
8556         * lyxlength.[Ch]: add inBP() to get the right PS-point
8557         units (BigPoint). With inPixels we have rounding errors
8558
8559 2002-04-11  Juergen Vigna  <jug@sad.it>
8560
8561         * text2.C (setCursorFromCoordinates): set iy to the right value.
8562         (setCursor): add check if row->previous exists!
8563
8564         * buffer.C (parseSingleLyXformat2Token): reset font after read of
8565         an old float_type as this was the case in the old code!
8566
8567         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
8568
8569         * BufferView2.C (showLockedInsetCursor): use iy
8570         (fitLockedInsetCursor): ditto
8571
8572         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
8573         locked insets as there we have the right value now.
8574
8575         * lyxcursor.C: added iy_ variable and iy functions to set to the
8576         baseline of cursor-y of the locked inset.
8577
8578         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
8579         (setCursor): fixed for insets which need a full row.
8580
8581         * text.C (rowLastPrintable): don't ignore the last space when before
8582         an inset which needs a full row.
8583         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
8584         as last character of a row when before a inset which needs a full row.
8585
8586 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8587
8588         * version.C.in: update date
8589
8590         * text2.C (fullRebreak): try to always return true and see what
8591         happens...
8592
8593 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8594
8595         * MenuBackend.C (expand): use Floating::listName
8596
8597         * FloatList.C (FloatList): add listName argument to the built-in
8598         floats
8599
8600         * Floating.[Ch]: add listName member, which is the 'List of XXX'
8601         text associated with the float.
8602
8603 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8604
8605         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
8606
8607 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8608
8609         * ShareContainer.h: add a couple of missing typenames.
8610
8611 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
8612
8613         * lyxrc.C (getDescription): use _() correctly rather than N_().
8614
8615 2002-03-28  Herbert Voss  <voss@lyx.org>
8616
8617         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
8618         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
8619
8620 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8621
8622         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
8623         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
8624
8625 2002-03-29  Juergen Vigna  <jug@sad.it>
8626
8627         * lyxfunc.C (dispatch): add a missing fitCursor call.
8628
8629         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
8630         it was scrolled by a cursor move, so return the bool status.
8631
8632         * BufferView.C (fitCursor): return the bool flag also to the outside
8633         world as this is needed.
8634
8635         * screen.C (toggleToggle): don't subtract the offset if it's positive.
8636
8637         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
8638         call the edit() as it is not needed (and wrong) IMO.
8639         (workAreaButtonPress): set the screen_first variable before evt.
8640         unlock the inset as this may change screen_first and then we have
8641         a wrong y position for the click!
8642
8643 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8644
8645         * MenuBackend.C (expand): another translation that I missed
8646
8647 2002-03-28  Juergen Vigna  <jug@sad.it>
8648
8649         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
8650
8651         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
8652
8653 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8654
8655         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
8656
8657         * MenuBackend.C (expand): fix export/view/update when there is no
8658         document open.
8659
8660 2002-03-27  Herbert Voss  <voss@lyx.org>
8661
8662         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
8663         and text%
8664
8665 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8666
8667         * bufferview_funcs.C (currentState): only show paragraph number
8668         for is DEVEL_VERSION is set.
8669
8670         * lyxfunc.C (dispatch): put warning in INFO channel
8671
8672         * MenuBackend.C (expand): translate the name of floats
8673
8674         * FloatList.C (FloatList): mark the float names for translation
8675
8676         * converter.C (convert): use LibScriptSearch
8677
8678 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8679
8680         * MenuBackend.C (defaults): fix default menu (we might as well get
8681         rid of it...)
8682
8683 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8684
8685         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
8686         directory.
8687
8688 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8689
8690         * lyxvc.C: reorder includes.
8691
8692 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
8693
8694         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
8695           properly
8696
8697 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
8698
8699         * CutAndPaste.C: change layouts earlier on paste
8700           to avoid crashing when calling getFont()
8701
8702 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
8703
8704         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
8705         irritating #error.
8706
8707 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8708
8709         * WorkArea.C: remove 'Pending' debug message.
8710
8711         * most files: ws cleanup
8712
8713         * buffer.[Ch]: ws changes
8714
8715         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
8716
8717 2002-03-21  Juergen Vigna  <jug@sad.it>
8718
8719         * tabular.C (SetMultiColumn): collapse also the contents of the
8720         cells and set the last border right. Added a Buffer const * param.
8721
8722 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8723
8724         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
8725         linking or not.
8726
8727 2002-03-19  Juergen Vigna  <jug@sad.it>
8728
8729         * text2.C (clearSelection): reset also xsel_cache.
8730
8731         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
8732         where it needs to be called (John tells us to do so too :)
8733         (selectionLost): reset sel_cache.
8734
8735         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
8736
8737 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8738
8739         * text2.C (setCursorIntern): put debuging code in INSETS channel
8740
8741 2002-03-19  André Pönitz <poenitz@gmx.net>
8742
8743         * lyxfunc.C: tiny whitespace change
8744
8745 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8746
8747         * ToolbarDefaults.C (init):
8748         * LyXAction.C (init):
8749         * commandtags.h:
8750         * BufferView_pimpl.C (Dispatch):
8751         * lyxfunc.C (dispatch): remove LFUN_DEPTH
8752
8753 2002-03-19  Allan Rae  <rae@lyx.org>
8754
8755         * exporter.C (Export): removeAutoInsets before doing anything else.
8756         While I've just introduced a dependency on BufferView this really is
8757         the best place to clean the buffer otherwise you need to cleanup in
8758         a dozen places before calling export or cleanup in a dozen functions
8759         that export calls.
8760
8761         * converter.C (runLaTeX):
8762         (scanLog): Better handling of removeAutoInsets and screen updates.
8763
8764         * lyxfunc.C (dispatch): small whitespace changes
8765
8766 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8767
8768         * WorkArea.C (C_WorkAreaEvent): return a value.
8769         (event_cb): return 1 if we handled the event, 0 otherwise.
8770
8771         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
8772
8773 2002-03-18  Juergen Vigna  <jug@sad.it>
8774
8775         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
8776         (GetAdditionalWidth): ditto.
8777         (RightLine): ditto.
8778         (LeftLine): ditto.
8779
8780         * BufferView2.C (copy): use getLyXText() so that we do it inside an
8781         inset if we're there actually (probably not used right now but this
8782         is the direction to go for unifying code).
8783         (paste): disable code to clear the selection.
8784
8785         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
8786         inside an InsetText and move the check further up as it is in the
8787         wrong place.
8788
8789         * text2.C (pasteSelection): set a selection over the pasted text.
8790
8791 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
8792
8793         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
8794         and libgraphics to build on Cygwin.
8795
8796 2002-03-15  Juergen Vigna  <jug@sad.it>
8797
8798         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
8799         inserting an Inset into the paragraph. I know this is not the best
8800         fix but we already use current_view in CutAndPaste so we will remove
8801         all of it's using at the same time.
8802
8803         * buffer.C (sgmlError): deactivated function till it is rewritten in
8804         the right mode, now it can create problems.
8805
8806         * paragraph.C (isLineSeparator): check if getInset returns != 0,
8807         before accessing it.
8808
8809 2002-03-14  Juergen Vigna  <jug@sad.it>
8810
8811         * undo_funcs.C (textHandleUndo): do the right thing when updating
8812         the inset after the undo/redo.
8813
8814         * text2.C (setCursor): just some testcode for #44 not ready yet.
8815
8816         * undo_funcs.C (textHandleUndo): set the next() and previous()
8817         pointers of the paragraph to 0 before deleting otherwise we have
8818         problems with the Paragraph::[destructor].
8819
8820         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
8821         on a paragraph insertion.
8822
8823 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8824
8825         * buffer.C (asciiParagraph): use += operator for char append to
8826         string.
8827
8828         * paragraph.C (getFontSettings): compare >= not just >
8829         (highestFontInRange): ditto
8830         (setFont): ditto
8831
8832 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8833
8834         * paragraph.C: change several algorithm to be more appripriate for
8835         the problem domain. This is lookip in FontList and in the InsetList.
8836
8837 2002-03-13  André Pönitz <poenitz@gmx.net>
8838
8839         * commandtags.h:
8840         * LyXAction.C: remove unused LFUN_MATH_MACROARG
8841
8842 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
8843
8844         * commandtags.h:
8845         * LyXAction.C:
8846         * lyxfunc.C:
8847         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
8848
8849 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8850
8851         * Painter.C (display): anon helper function, adjust code for this
8852         change.
8853         (pixmap): remove function.
8854
8855         * Painter.h: remove private display variable.
8856
8857         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
8858
8859 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
8860
8861         * WorkArea.[Ch]: remove figinset_canvas cruft.
8862
8863 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8864
8865         * lyxtextclass.C (operator): add one item cache optimization.
8866
8867         * bufferlist.h: doxy changes
8868
8869         * bufferlist.C: ws changes
8870
8871         * DepTable.[Ch] (ext_exist): place const in the right spot.
8872
8873         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
8874         call resizeInsets.
8875         (workAreaExpose): call resizeInsets when the with BufferView changes.
8876         (Dispatch): adjust for protectedBlank removal
8877         (specialChar): call updateInset if the insert went ok.
8878
8879         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
8880         specialChar instead.
8881
8882         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
8883
8884         * BufferView.h: doxy change
8885
8886         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
8887
8888         * lyxtextclass.C (operator[]): remove non-const version
8889         (defaultLayout): remove non-const version
8890
8891 2002-03-12  Juergen Vigna  <jug@sad.it>
8892
8893         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
8894         did resize the LyXText too.
8895
8896         * buffer.C (readLyXformat2): set layout information on newly allocated
8897         paragraphs.
8898
8899         * tabular.C (OldFormatRead): set layout information on the paragraph.
8900
8901 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
8902
8903         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
8904
8905 2002-03-11  Juergen Vigna  <jug@sad.it>
8906
8907         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
8908         plainly wrong.
8909         (resizeCurrentBuffer): force also the insets to resize themselfes.
8910         (moveCursorUpdate): fixed up for InsetText.
8911
8912 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
8913
8914         * commandtags.h:
8915         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
8916         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
8917         value of Dialogs::tooltipsEnabled().
8918         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
8919
8920 2002-03-08  Juergen Vigna  <jug@sad.it>
8921
8922         * BufferView_pimpl.C (updateInset): update inset inside inset also
8923         if it isn't inside theLockingInset().
8924
8925 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8926
8927         * buffer.C (asciiParagraph): redo some of the word and line length
8928         handling.
8929         (getLists): look for Caption instead of caption.
8930
8931 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8932
8933         * buffer.C (Buffer): initialize niceFile to true
8934         (makeLaTeXFile):
8935         (makeLinuxDocFile):
8936         (makeDocBookFile): make sure niceFile is true on exit
8937
8938 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8939
8940         * buffer.C (makeLaTeXFile): escape ~ in \input@path
8941
8942 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
8943
8944         * LyXSendto.C: remove.
8945         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
8946         * lyx_gui.C: remove now-redundant comment.
8947         * ColorHandler.h: remove forward declaration of class WorkArea.
8948         * lyxfunc.C: remove #include "WorkArea.h".
8949
8950 2002-03-07  Juergen Vigna  <jug@sad.it>
8951
8952         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
8953         got moved away with the DEPM and also set the inset_owner always
8954         right which before could have been omitted.
8955
8956 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8957
8958         * buffer.C (parseSingleLyXformat2Token): use default layout is the
8959         wanted layout is not found.
8960
8961 2002-03-07  Juergen Vigna  <jug@sad.it>
8962
8963         * CutAndPaste.C (cutSelection): another layout settings forgotten.
8964
8965 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8966
8967         * paragraph.C (breakParagraph): use default layout not layout of
8968         prev paragraph.
8969         (Paragraph): clear ParagraphParameters.
8970
8971 2002-03-06  Juergen Vigna  <jug@sad.it>
8972
8973         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
8974         otherwise it would not be a valid lenght. Fixed a special case in
8975         the minipage compatibility read where we end the document with a
8976         minipage.
8977
8978         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
8979         was set as it could be 0 for InsetTexts first entry.
8980
8981 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8982
8983         * paragraph.C (writeFile): if layout is empty write out
8984         defaultLayoutName().
8985
8986         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
8987         file without named layout we set layout to defaultLayoutName().
8988
8989 2002-03-06  Juergen Vigna  <jug@sad.it>
8990
8991         * CutAndPaste.C (copySelection): set layout for new paragraph.
8992
8993         * text.C (prepareToPrint): leave ERT inset left aligned
8994         (leftMargin): don't indent paragraphs inside ERT insets
8995
8996 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8997
8998         * paragraph.C (breakParagraph): dont call clear do the work manually
8999
9000         * paragraph.[Ch] (clear): remove function
9001
9002 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9003
9004         * paragraph.C (Paragraph): dont call clear, the work has already
9005         been done.
9006
9007         * lyxtextclass.C (operator): assert if n is empty
9008
9009         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
9010         work manually instead.
9011
9012 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
9013
9014         * BufferView_pimpl.C: protect selectionLost against text == 0
9015
9016 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9017
9018         * text.C (breakParagraph): fix a setting layout to '0' problem.
9019
9020 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
9021
9022         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
9023         final location of file, for the included files, and graphics.
9024
9025 2002-03-05  Juergen Vigna  <jug@sad.it>
9026
9027         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
9028
9029 2002-03-04  Juergen Vigna  <jug@sad.it>
9030
9031         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
9032
9033         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
9034         last column of multicolumn cells.
9035         (SetWidthOfMulticolCell): recalculate NMC and real columns.
9036
9037 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
9038
9039         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
9040         file if it doesn't go to a temporary file.
9041
9042         * buffer.C (sgmlOpenTag):
9043         (sgmlCloseTag):  remove extra newline insertion.
9044
9045 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9046
9047         * text.C (getRowNearY): comment out debug msg
9048
9049 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9050
9051         * text2.C: first -> first_y
9052
9053         * text.C (getRowNearY): add some attemts at a possible
9054         optimization, not working.
9055
9056         * tabular.[Ch]: add BufferParams to several function so that newly
9057         created paragraph can be initialized to he default layotu for the
9058         buffers textclass.
9059
9060         * tabular-old.C (ReadOld): add buf->params to call of Init
9061
9062         * screen.C: rename text->first to text->first_y
9063
9064         * paragraph.C (breakParagraph): always set layout in the broken
9065         paragraph
9066
9067         * lyxtextclass.C (Read): remove lowercase
9068         (hasLayout): ditto
9069         (operator): ditto
9070         (delete_layout): ditto
9071
9072         * lyxtext.h: rename first -> first_y
9073
9074         * lyxlayout.C (Read): remove lowercase
9075         (name): ditto
9076         (setName): ditto
9077         (obsoleted_by): ditto
9078
9079         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
9080
9081         * buffer.C (insertErtContents): add params are to InsetERT
9082         (parseSingleLyXformat2Token): add code to check if a paragraphs
9083         layout really exist.
9084         (parseSingleLyXformat2Token): add params to several inset
9085         constructors
9086         (asciiParagraph): remove lowercase, do the layout comparisons with
9087         no_case
9088
9089         * BufferView_pimpl.C (cursorNext): first -> first_y
9090         (resizeCurrentBuffer): first -> first_y
9091         (updateScrollbar): first -> first_y
9092         (scrollCB): first -> first_y
9093         (workAreaMotionNotify): first -> first_y
9094         (workAreaButtonPress): first -> first_y
9095         (checkInsetHit): first -> first_y
9096         (cursorPrevious): first -> first_y
9097         (cursorNext): first -> first_y
9098         (Dispatch): add buffer_->params to severl inset contructors
9099
9100 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9101
9102         * lyxlayout.C (Read): remove some debug info that I forgot.
9103
9104         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
9105         clean up the code slightly.
9106         (makeLinuxDocFile): ditto
9107         (makeDocBookFile): ditto
9108
9109         * text2.C: layout as string
9110
9111         * text.C: layout as string
9112
9113         * paragraph_pimpl.C: layout as string
9114
9115         * paragraph.[Ch]: layout as string
9116
9117         * lyxtextclasslist.[Ch]: layout as string
9118
9119         * lyxtextclass.[Ch]: layout as string
9120
9121         * lyxtext.h: layout as string
9122
9123         * lyxlayout.[Ch]: layout as string
9124
9125         * lyx_cb.C: layout as string
9126
9127         * bufferview_funcs.C: layout as string
9128
9129         * bufferparams.C: layout as string
9130
9131         * buffer.C: layout as string
9132
9133         * LyXView.[Ch]: layout as string
9134
9135         * LaTeXFeatures.[Ch]: layout as string
9136
9137         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
9138
9139         * BufferView_pimpl.C: change current_layout to string, remove
9140         lyx::layout_type.
9141         (Dispatch):
9142         (smartQuote):
9143         (insertInset):
9144         (workAreaButtonRelease): layout as string
9145
9146         * BufferView2.C (unlockInset): adjust
9147
9148         * vspace.C (asLatexCommand): use an explict temp variable.
9149
9150 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
9151
9152         * Makefile.am: use FRONTEND_*
9153
9154 2002-03-01  Juergen Vigna  <jug@sad.it>
9155
9156         * tabular.C (SetWidthOfMulticolCell): changed to something better
9157         I hope but still work in progress.
9158         (recalculateMulticolumnsOfColumn): renamed function from
9159         recalculateMulticolCells as it is more appropriate now.
9160         (SetWidthOfCell): calculate multicols better.
9161
9162 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9163
9164         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
9165
9166         * lyxfunc.C (processKeySym): print sequence also if it is
9167         `deleted' (complete)
9168
9169         * kbsequence.C (print): print sequence even if it is deleted
9170         (complete would be a better word, actually).
9171
9172         * lyxfunc.C (dispatch): print complete options after a prefix key
9173
9174         * vspace.C (asLatexCommand): rewrite in a slightly different form.
9175
9176 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
9177
9178         * text2.C (setCharFont): eliminate setCharFont code duplication.
9179
9180 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9181
9182         * BufferView_pimpl.C (Dispatch): remove bogus handling of
9183         LFUN_TABULAR_FEATURE (bug #177)
9184
9185 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
9186
9187         * Makefile.am: remove figure.h
9188
9189 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
9190
9191         * Bufferview_pimpl.C:
9192         * CutAndPasteC:
9193         * LaTeX.C:
9194         * LyXSendto.C:
9195         * buffer.C:
9196         * bufferlist.C:
9197         * converter.C:
9198         * language.C:
9199         * lyxfunc.C:
9200         * lyxvc.C:
9201         * paragraph.C:
9202         * text.C:
9203         * text2.C: remove #include "lyx_gui_misc.h".
9204
9205         * LaTeX.C: added #include <cstdio>
9206
9207 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9208
9209         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
9210         that the paragraph following this one can have.
9211
9212         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
9213
9214         * vspace.C (asLatexCommand): fix bogus gcc warning
9215
9216         * Makefile.am (lyx_SOURCES): remove vms_defines.h
9217
9218 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
9219
9220         * text2.C (setLayout): get rid of redundant code
9221
9222 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
9223
9224         * text2.C (incDepth): make sure depth cannot be increased beyond
9225         reasonable values.
9226
9227 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
9228
9229         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
9230         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
9231
9232         * PainterBase.h (image):
9233         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
9234         a LyXImage const *.
9235
9236 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
9237
9238         * BufferView.C:
9239         * BufferView.h:
9240         * BufferView_pimpl.C:
9241         * BufferView_pimpl.h:
9242         * LaTeXFeatures.C:
9243         * LyXAction.C:
9244         * LyXView.C:
9245         * Makefile.am:
9246         * UpdateList.h:
9247         * UpdateList.C:
9248         * buffer.C:
9249         * figure.h:
9250         * figureForm.C:
9251         * figureForm.h:
9252         * figure_form.C:
9253         * figure_form.h:
9254         * lyx_cb.C:
9255         * lyx_gui.C:
9256         * lyx_gui_misc.C:
9257         * lyxfunc.C:
9258         * sp_base.h:
9259         * sp_ispell.h:
9260         * sp_pspell.h:
9261         * sp_spell.C: remove fig inset, and the crap house of
9262           cards that follows it
9263
9264 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
9265
9266         * Makefile.am:
9267         * lyxserver.C:
9268         * os2_defines.h:
9269         * os2_errortable.h:
9270         * nt_defines.h: move .h into support/
9271
9272         * vms_defines.h: remove
9273
9274         * WorkArea.C: add space in debug output
9275
9276         * text2.C:
9277         * paragraph.C:
9278         * buffer.C: add WITH_WARNINGS
9279
9280         * vc-backend.h:
9281         * vc-backend.C:
9282         * bufferlist.C: s/retrive/retrieve/, add docs
9283
9284         * vspace.h:
9285         * vspace.C:
9286         * kbmap.h:
9287         * lyxlength.h:
9288         * lyxgluelength.h:
9289         * length_common.h:
9290         * chset.h:
9291         * chset.C: add docs
9292
9293         * lyxgui.C: add ID to X error handler
9294
9295         * lyxtestclass.c: fix typo
9296
9297 2002-02-26  Juergen Vigna  <jug@sad.it>
9298
9299         * tabular_funcs.C (write_attribute): changed so that some default
9300         attributes are not written at all.
9301         (getTokenValue): set default values before trying to read the
9302         value so we have the return value always set as default if we don't
9303         find the token we search for.
9304
9305         * tabular.C (Write): write bools as bools not as strings!
9306
9307 2002-02-22  Juergen Vigna  <jug@sad.it>
9308
9309         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
9310         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
9311
9312         * text.C (leftMargin): don't add an indent for paragraphs inside
9313         tabular cells (fix #208).
9314
9315 2002-02-21  José Matos  <jamatos@fep.up.pt>
9316
9317         * tabular.C (docBook): fixed support for long tables.
9318
9319 2002-02-20  Juergen Vigna  <jug@sad.it>
9320
9321         * text2.C (getFont): get the drawing font of the Inset if this
9322         paragraph is inside an inset (only important for InsetERT for now).
9323
9324         * buffer.C (insertErtContents): use new lanugage params in ERT
9325         constructor.
9326
9327         * CutAndPaste.C: commenting out seemingly uneeded code.
9328
9329 2002-02-19  Allan Rae  <rae@lyx.org>
9330
9331         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
9332         Iterators might be simple to use but they also get invalidated.
9333         (removeAutoInsets): renamed saved cursor tracking variables and added
9334         some comments to clarify what everything does.
9335
9336 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
9337
9338         * Chktex.C:
9339         * LaTeX.C:
9340         * LyXSendto.C:
9341         * converter.C:
9342         * lyx_cb.C:
9343         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
9344         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
9345
9346         * lyxfunc.C:
9347         * vc-backend.h: remove #include "support/syscall.h"
9348
9349         * LaTeX.C:
9350         * LyXSendto.C:
9351         * converter.C: rearrange #includes in Lars' approved fashion.
9352
9353         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
9354         forward declare class Timeout in the header file.
9355
9356         * XFormsView.C: changes due to the above.
9357
9358         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
9359         similar to LyXView.
9360
9361         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
9362         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
9363
9364 2002-02-18  José Matos  <jamatos@fep.up.pt>
9365
9366         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
9367         insets contents.
9368
9369 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
9370
9371         * a lot of small ws changes
9372         * add a lot of using std::XXX
9373         * use std construcs some places where approp.
9374         * use some exisint stuff from lyxfunctional where approp.
9375         * Make file changes to use partial linking (lets test this now...)
9376
9377 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
9378
9379         * Chktex.C:
9380         * buffer.C:
9381         remove #include "support/syscontr.h" as it's redundant. Always has been.
9382
9383         * Chktex.C:
9384         * LaTeX.C:
9385         * LyXSendto.C:
9386         * converter.C:
9387         * lyx_cb.C:
9388         * vc-backend.C:
9389         change Systemcalls::System to Systemcalls::Wait and
9390         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
9391         No change of functionality, just reflects the stripped down Systemcalls
9392         class.
9393
9394 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
9395
9396         * debug.[Ch]: add a GRAPHICS type to the enum.
9397
9398 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9399
9400         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
9401
9402         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
9403         there is an inset.
9404
9405 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9406
9407         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
9408         match the changes below.
9409
9410         * text2.C (toggleInset): if there is not editable inset at cursor
9411         position, try to see if cursor is _inside_ a collapsable inset
9412         and close it.
9413
9414 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9415
9416         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
9417         document menu has a nice checkbox
9418
9419 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9420
9421         * lyxlength.C (asLatexString): change PW to output as percent of
9422         \textwidth.
9423
9424         * lengthcommon.C: change '%' to 't%'
9425
9426         * lyxfunc.C (dispatch): a few comments from Martin
9427
9428 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
9429
9430         * WorkArea.h:
9431         * WorkArea.C:
9432         * BufferView_pimpl.h:
9433         * BufferView_pimpl.C: clear our selection when X tells us we've lost
9434           the X selection.
9435
9436 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9437
9438         * vspace.C (inPixels): fix compiler warning
9439
9440 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9441
9442         * lyxfunc.C (getStatus): fix status message for disabled commands.
9443
9444 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
9445
9446         * BufferView_pimpl.C: fix crash on close buffer
9447         during selection (#227)
9448
9449 2002-01-27  Herbert Voss  <voss@lyx.org>
9450
9451         * buffer.C: link old Figure to new graphic inset
9452
9453 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
9454
9455         * FontLoader.C (getFontinfo): Change the latex font names in order
9456         to match the names of type1inst.
9457
9458 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9459
9460         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
9461
9462         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
9463         (extchanged): ditto
9464         (ext_exist): ditto
9465         (remove_files_with_extension): ditto
9466         (remove_file): ditto
9467         (write): ditto
9468
9469         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
9470         document is smaller than the work area height. Do not initialize
9471         static variables to 0.
9472
9473 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9474
9475         * lyx_gui.C (init): give the toolbar tooltips a normal font.
9476
9477         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
9478         LFUN_LAYOUT_PARAGRAPHS.
9479
9480         * tabular.C (GetCellFromInset): new method. Finds an inset in a
9481         tabular. It is possible to provide a possible cell, which will
9482         typically be the actcell from the corresponding insettabular
9483
9484         * lyxfunc.C (getStatus): small cleanup; disable
9485         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
9486         true
9487
9488 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9489
9490         * tabular.C (Validate): remove broken optimization (fixes bug #201)
9491
9492         * paragraph.C (startTeXParParams):
9493         (endTeXParParams): new methods. The LaTeX code to
9494         start/end paragraph formatting
9495         (simpleTeXOnePar): call startTeXParParams also when paragraph is
9496         empty (fixes bug #200)
9497
9498         * vspace.C (inPixels): adapt to the change below
9499         (inPixels): [later] more cleanups (remove unused variables)
9500
9501         * lyxlength.C (inPixels): change to use a width and a height as
9502         parameter.
9503
9504 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9505
9506         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
9507         Replaced with \paperwidth
9508
9509         * DepTable.C (insert): add std:: qualifier
9510
9511 2002-01-18  Allan Rae  <rae@lyx.org>
9512
9513         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
9514         updated also?
9515
9516         * text.C (drawInset): Turned out I didn't know enough about how
9517         rebreaking worked.  This fixes most of the redraw problems.  I see
9518         an occasional cursor trail when a line is broken now and the cursor
9519         placement can seem out by a few pixels also after a rebreak.
9520
9521 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9522
9523         * buffer.C (parseSingleLyXformat2Token): update because minipage
9524         width is now a LyXLength
9525
9526         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
9527
9528         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
9529         math insets
9530
9531 2002-01-17  Juergen Vigna  <jug@sad.it>
9532
9533         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
9534
9535         * BufferView2.C (lockInset): call edit() so that theLockingInset()
9536         is set correctly and the inset is updated correctly.
9537
9538 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9539
9540         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
9541         the beginning of the loop.
9542
9543 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
9544
9545         * lyxrc.C: improve help for use_scalable_fonts
9546
9547 2002-01-17  Allan Rae  <rae@lyx.org>
9548
9549         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
9550
9551 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9552
9553         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
9554         make sure to set their inset_owner to the right value (bug #171)
9555
9556 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
9557
9558         * DepTable.h
9559         * DepTable.C: Implement mtime checking to reduce time spent doing
9560         CRCs.
9561
9562 2002-01-16  Juergen Vigna  <jug@sad.it>
9563
9564         * tabular.C (GetAdditionalHeight): one of error fixed.
9565
9566         * lyxrc.C (output): small fix in writing use_pspell.
9567
9568 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
9569
9570         * sp_base.h: #include LString.h
9571
9572 2002-01-16  Allan Rae  <rae@lyx.org>
9573
9574         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
9575         Can someone check this please?
9576
9577         * text.C (drawInset): It was possible that p.row would be removed by
9578         breakAgainOneRow upsetting a few other settings.  There may be another
9579         small tweak possible by setting need_break_row = 0 when p.row has been
9580         removed but I don't know enough about the logic here.
9581
9582 2002-01-15  Allan Rae  <rae@lyx.org>
9583
9584         * text.C (insertChar): removed conditional truism.
9585
9586         * BufferView2.C (removeAutoInsets): More tweaks.
9587         cur_par_prev could be a stray pointer.  Check for trailing empty line
9588         in case last line was cur_par and only had an error inset on it.
9589
9590 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9591
9592         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
9593         absolute
9594
9595         * vc-backend.C (most methods):
9596         * exporter.C (Export):
9597         * converter.C (convert):
9598         (runLaTeX):
9599         * LyXSendto.C (SendtoApplyCB):
9600         * lyxfunc.C (dispatch):
9601         (menuNew):
9602         (open):
9603         (doImport):
9604         * lyx_cb.C (AutoSave):
9605         (InsertAsciiFile):
9606         * BufferView_pimpl.C (MenuInsertLyXFile):
9607         * buffer.C (runChktex): use Buffer::filePath().
9608
9609         * buffer.h: rename filename to filename_; rename filepath to
9610         filepath_ and make it private
9611         (filePath): new method
9612
9613         * buffer.C (writeFile): use fileName()
9614         (getLatexName):
9615
9616         * lyx_main.C (init): fix starting  of LyX when the binary is a
9617         link from so,ewhere else.
9618
9619         * minibuffer.C: include <cctype> for isprint
9620
9621 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
9622
9623         * buffer.C (parseSingleLyXformat2Token): changes associated with the
9624         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
9625         name clash with InsetCollapsable's width function.
9626
9627 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9628
9629         * lastfiles.C: include <iterator>
9630
9631 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
9632
9633         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
9634         std::count.
9635
9636         * buffer.C (makeLaTeXFile): ditto.
9637         Also make loop operation more transparent.
9638
9639 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
9640
9641         * ToolbarDefaults.C: remove trailing comma closing namespace.
9642
9643         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
9644
9645         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
9646         as in WorkArea.
9647
9648         * trans.C (Load): comment out unused variable, allowed.
9649
9650 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
9651
9652         * minibuffer.[Ch] (append_char): new method to recieve input from the
9653         drop-down completion browser. If a key was pressed, then recieve this
9654         char and append it to the existing string.
9655         (peek_event): modify the positioning data passed to the completion
9656         browser so that it can be placed above the minibuffer rather than below.
9657 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9658
9659         * LyXAction.C (init): alloe error-next for readonly documents.
9660
9661         * BufferView2.C (ChangeRefsIfUnique): use standard version of
9662         count.
9663
9664 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9665
9666         * bufferlist.C (readFile): create the buffer _after_ checking that
9667         the file exists.
9668
9669         * lyxfunc.C (verboseDispatch): fix handling of arguments
9670
9671         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
9672
9673         * lyxrc.C: use string::erase() instead of initializing to "".
9674
9675
9676 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
9677
9678         * BufferView_pimpl.h:
9679         * BufferView_pimpl.C:
9680         * WorkArea.h:
9681         * WorkArea.C:
9682         * text2.C: tell X when we have made a selection for copying
9683
9684 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9685
9686         * BufferView_pimpl.C (MenuInsertLyXFile):
9687         * lyxfunc.C (menuNew):
9688         (open):
9689         (doImport): add shortcuts to directory buttons
9690
9691         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
9692         open a float)
9693
9694         * lyxfunc.C (setStatusMessage):
9695         (getStatusMessage): new methods
9696         (getStatus):use setStatusMessage instead of setErrorMessage
9697         (dispatch): when function is disabled, set error message here
9698         [instead of in getStatus previously]
9699
9700         * BufferView_pimpl.C (workAreaButtonRelease): update
9701         toolbar/menubar here too.
9702
9703 2002-01-13  Allan Rae  <rae@lyx.org>
9704
9705         * BufferView2.C (removeAutoInsets): finished off earlier fix.
9706         Now seems indestructible.  Remaining task is to audit all other
9707         code affected by deleteEmptyParagraphMechanism.  One small quirk
9708         left is that an empty document with an error in the preamble can
9709         be made to report an error but no error box appears.  I don't know
9710         where it goes.
9711         (removeAutoInsets): Improved comments.
9712
9713 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
9714
9715         * Thesaurus.h:
9716         * Thesaurus.C: update for Aiksaurus 0.14
9717
9718 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9719
9720         * text2.C (firstParagraph): removed member function, all uses
9721         replaces with ownerParagraph
9722         (redoParagraphs): here
9723         (updateInset): here
9724         (toggleAppendix): here
9725         * BufferView2.C (insertErrors): here
9726         (setCursorFromRow): here
9727
9728 2002-01-13  Allan Rae  <rae@lyx.org>
9729
9730         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
9731         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
9732         There is still a way to segfault this although you may have to do this
9733         multiple times: Have an InsetERT with an unknown command in it.
9734         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
9735         <down-arrow>, <Enter> again, View->DVI, BANG!
9736
9737         * text2.C (setCursor):
9738         (deleteEmptyParagraphMechanism):
9739         * lyxtext.h (setCursor):
9740         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
9741         Making use of the return value may help fix other bugs.
9742
9743 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9744
9745         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
9746
9747         * LyXView.C (updateMenubar): call MenuBar::update here
9748         (updateToolbar): but not here
9749         (showState): do not update toolbar/menubar
9750
9751         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
9752         should need to care about that.
9753
9754         * lyxfunc.C (verboseDispatch): simplify a bit
9755         (getStatus): have a version which takes a pseudoaction, and
9756         another which requires a (kb_action,string).
9757
9758         * LyXAction.C (retrieveActionArg): make it work also when action
9759         is not a pseudo-action.
9760         (getActionName): simplify a bit
9761         (helpText):
9762
9763 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9764
9765         * lyxfunc.C (verboseDispatch): new families of methods with
9766         several ways to specify a command and a bool to indicate whether
9767         the command name and shortcut should be displayed in minibuffer
9768         (eventually, we could extend that to a finer bitmask like
9769         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
9770         (dispatch): the pristine dispatch command which just, well,
9771         dispatchs! Note it still sets its result to minibuffer; I'm not
9772         sure we want that.
9773
9774         * lyxfunc.h: remove setHintMessage
9775
9776         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
9777
9778 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9779
9780         * BufferView_pimpl.C (specialChar): delete new inset if we have
9781         not been able to insert it.
9782
9783         * kbmap.C: revert to using int instead of kb_action, since all we
9784         are dealing with is pseudo-actions.
9785
9786         * LyXAction.C (searchActionArg): change to return int instead of
9787         kb_action, since the result is a pseudoaction.
9788
9789 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
9790
9791         * buffer.C (insertErtContents): Fix (partially) the font bug.
9792
9793 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
9794
9795         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
9796         as the other one is broken on my machine!
9797
9798 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
9799
9800         * commandtags.h:
9801         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
9802
9803 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
9804
9805         * lyxrc.[Ch]: change names and descriptions of popup font variables to
9806         reflect their actual use. Provide compatibility code for older lyxrc
9807         files.
9808
9809         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
9810         FL_NORMAL_STYLE.
9811         change names of popup font variables in line with the changes to lyxrc.C
9812
9813 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9814
9815         * buffer.C (asciiParagraph): avoid outputing a word twice after
9816         an inset.
9817
9818         * lyxrc.C (getDescription): document that document_path and
9819         template_path can be empty.
9820
9821 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9822
9823         * LaTeXFeatures.C (getMacros):
9824         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
9825
9826         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
9827
9828         * LaTeXFeatures.C (useFloat): require "float" here instead of in
9829         getPackages.
9830         (getPackages): rename feature "floats" to "float". Use an array to
9831         iterate over 'simple' features (i.e. just a \usepackage). Add
9832         handling of "amsmath" (renamed from "amsstyle").
9833
9834 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
9835
9836         * LaTeXFeatures.C (require): Prevent duplicate entries in the
9837         features list.
9838
9839 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
9840
9841         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
9842         FuncStaus::FuncStatus & FuncStaus::some_method().
9843
9844 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
9845
9846         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
9847         of the func_satus stuff. Edited and massaged in various ways by
9848         JMarc.
9849
9850         * lyxfunc.C (getStatus): use FuncStatus
9851
9852 2002-01-08  Juergen Vigna  <jug@sad.it>
9853
9854         * text.C (nextBreakPoint): use function Inset::isChar().
9855
9856         * paragraph.C (TeXOnePar): use function
9857         Inset::forceDefaultParagraphs.
9858
9859         * buffer.C (latexParagraphs): use function
9860         Inset::forceDefaultParagraphs.
9861
9862 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
9863
9864         * lyx_gui.C (init): set the style of the menu popups to
9865         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
9866
9867 2002-01-07  Juergen Vigna  <jug@sad.it>
9868
9869         * text.C (setHeightOfRow): small fix
9870         (prepareToPrint): don't look at alignment if we don't have the place
9871         for doing it.
9872
9873 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
9874
9875         * box.C: New file. Move the Box methods and functions out of box.h,
9876         following Lars' suggestion.
9877
9878 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
9879
9880         * box.h: #include "support/LOstream.h", needed for inlined function.
9881
9882         * lyxtextclass.C:
9883         * lyxtextclasslist.C: added some using std declarations.
9884
9885 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
9886
9887         * box.h: make signed dimensions to allow insets wider than
9888           the screen (bug #162)
9889
9890         * BufferView_pimpl.C: add some insetHit debug
9891
9892 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
9893
9894         * vc-backend.C: add FIXME
9895
9896 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9897
9898         * lyxfunc.C (getStatus): enable code for showing math font status
9899         in toolbar/menu.
9900
9901 2002-01-07  Juergen Vigna  <jug@sad.it>
9902
9903         * text.C (nextBreakPoint): removed debug output not needed anymore.
9904
9905 2002-01-06  Juergen Vigna  <jug@sad.it>
9906
9907         * text.C (nextBreakPoint): fixed up this function we had this bug
9908         since ever but now hopefully we break row better.
9909         (insertChar): we have to check if an inset is the next char as it
9910         could now happen that a large inset is causing a break.
9911
9912 2002-01-05  Juergen Vigna  <jug@sad.it>
9913
9914         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
9915         if it doesn't like to be drawed.
9916
9917 2002-01-04  Juergen Vigna  <jug@sad.it>
9918
9919         * BufferView2.C (lockInset): forgot to set a cursor.
9920
9921         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
9922
9923 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
9924
9925         * FormMathsPanel.C:
9926         * FormMathsPanel.h
9927         * MathsSymbols.C:
9928         * form_maths_panel.C:
9929         * form_maths_panel.h:
9930         * form_maths_panel.fd: implemented sub- and super- buttons in math
9931         panel.
9932
9933         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
9934         (or ^ space) to be used as in TeX (req'd by André).
9935
9936         * lyxfunc.C: Allow ^ and _ again to be used both as
9937         super/subscript (mathed) and as themselves (in text).
9938
9939 2002-01-03  Allan Rae  <rae@lyx.org>
9940
9941         * LyXView.C (updateWindowTitle): Setup a short icon title of either
9942         "LyX" or the filename of the current buffer if it has one.  This is a
9943         modified form of John Levon's patch.
9944
9945         * XFormsView.C (setWindowTitle): also set icon title.
9946
9947         * LyXView.h (setWindowTitle): signature changed.
9948         * XFormsView.h (setWindowTitle): ditto.
9949
9950 2002-01-02  Juergen Vigna  <jug@sad.it>
9951
9952         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
9953
9954 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9955
9956         * screen.C (topCursorVisible): introduce a temp var for
9957         text->cursor.row(), handle the case where this row is null. (kindo
9958         hachish)
9959
9960         * text2.C (setCursor): add a couple of asserts.
9961
9962         * paragraph.h (inset_iterator): add -> operator
9963
9964         * paragraph.[Ch] (autoDeleteInsets): remove member function
9965
9966         * BufferView2.C (removeAutoInsets): rewrite to handle the old
9967         cursor pos correctly and handle inset deletion by itself.
9968         (insertErrors): move iterator declaration out of for expression
9969
9970         * lyxtextclass.C: add <algorithm>
9971
9972         * Makefile.am: added the new files to sources, removed layout.C
9973
9974         * layout.C: removed file
9975
9976         * layout.h: remove LYX_DUMMY_LAYOUT
9977
9978         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
9979         layout.
9980
9981         * lyxlayout.[Ch]:
9982         * lyxtextclass.[Ch]:
9983         * lyxtextclasslist.[Ch]: new files
9984
9985         * include order changes to a lot of files, also changes because of
9986         the six new files.
9987
9988 2001-12-27  Juergen Vigna  <jug@sad.it>
9989
9990         * buffer.C (asciiParagraph): more fixes.
9991
9992         * tabular.C (ascii): make ascii export support export of only the
9993         data separated by a column-delimiter.
9994         (ascii): better support for ascii export.
9995
9996         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
9997
9998 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9999
10000         * tabular_funcs.C: use a "using std::getline" instead of the
10001         previous fix from Angus (necessary for cxx + lyxstring)
10002
10003 2001-12-24  Juergen Vigna  <jug@sad.it>
10004
10005         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
10006
10007         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
10008         problems. First check a minipage also if we have some ert-contents
10009         (not only on par->size(), second set the right depth of the paragraph
10010         on the relink to the root-paragraph-list!
10011
10012         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
10013         which then did not anymore update the main paragraphs on undo/redo!
10014
10015 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10016
10017         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
10018         code. Support all font-changing funcs (even those which are not in
10019         menu currently). Support for reporting font settings in
10020         mathed (disabled until Andre provides a function on mathed's side).
10021
10022         * func_status.h (toggle): small helper function to set toggle
10023         state on a flag.
10024
10025 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
10026
10027         * tabular_funcs.C: getline -> std::getline
10028
10029 2001-12-21  Juergen Vigna  <jug@sad.it>
10030
10031         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
10032         accessed and could be 0 (I couldn't generate this but it seems
10033         Michael could!).
10034
10035 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10036
10037         * tabular_funcs.C: add LIstream.h, move write_attribute to..
10038         * tabular_funcs.h: here and include iosfwd
10039
10040 2001-12-20  Juergen Vigna  <jug@sad.it>
10041
10042         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
10043         inside inset but undo_par was.
10044
10045 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10046
10047         * Thesaurus.C: always include <config.h> in sources.
10048
10049         * Painter.h:
10050         * lyxlookup.h:
10051         * box.h: do not include <config.h> in header files
10052
10053         * text.C (paintLastRow): remove unused variable
10054
10055         * text.C (transformChar):
10056         (insertChar):
10057         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
10058
10059         * Painter.C (text):
10060         * font.C (width): rewrite to use uppercase() instead of
10061         islower/toupper.
10062
10063         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
10064
10065 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
10066
10067         * lyxfind.C: clean up of find failure position change
10068
10069 2001-12-20  Juergen Vigna  <jug@sad.it>
10070
10071         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
10072
10073         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
10074         (TeXRow): added to LaTeX a single tabular row.
10075         (TeXLongtableHeaderFooter): added to output LT-h/f data.
10076         (Latex): simplified and finally good LT-h/f support.
10077         (various_functions): just small adaptions for LT-h/f support.
10078
10079         * tabular_funcs.[hC]: added and moved here all not classfunctions
10080         of LyXTabular.
10081
10082 2001-12-19  Juergen Vigna  <jug@sad.it>
10083
10084         * tabular.[Ch]: better support for longtabular options (not finished
10085         yet!)
10086
10087 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10088
10089         * text.C (paintLastRow): use the label font instead of the font of
10090         the last character to compute the size of *_BOX. This makes more
10091         sense and avoids a crash with empty paragraphs.
10092         Use Painter::rectangle to draw EMPTY_BOX.
10093
10094 2001-12-19  Juergen Vigna  <jug@sad.it>
10095
10096         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
10097         the paragraphs if the replaced paragraph is not the first one!
10098         Tried to delete not used paragraphs but does not work yet so for
10099         now it's inside #ifdef's and by default off!
10100
10101 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10102
10103         * MenuBackend.C: include "lyx_main.h" instead of declaring
10104         lastfiles (actually was declared as LastFiles* instead of a
10105         scoped_ptr).
10106
10107 2001-12-17  Juergen Vigna  <jug@sad.it>
10108
10109         * tabular.C (AppendColumn): applied John's fix
10110
10111 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
10112
10113         * BufferView.h:
10114         * BufferView.C:
10115         * BufferView_pimpl.h:
10116         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
10117
10118         * Makefile.am:
10119         * box.h: new start of class for above
10120
10121         * lyxfunc.C: ignore space-only minibuffer dispatches.
10122           Show the command name when it doesn't exist
10123
10124         * minibuffer.C: don't add empty lines to the history
10125
10126         * minibuffer.C: add a space on dropdown completion
10127
10128 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
10129
10130         * text.C: fix line above/below drawing in insets
10131
10132 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10133
10134         * lyxlength.C (LyXLength): Initialize private variables.
10135
10136 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
10137
10138         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
10139         when inserting error insets.
10140
10141 2001-12-13  Juergen Vigna  <jug@sad.it>
10142
10143         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
10144         actually sometimes the before-paragraph.
10145         (setUndo): don't clear the redostack if we're not actually undoing!
10146
10147 2001-12-06  Juergen Vigna  <jug@sad.it>
10148
10149         * undo_funcs.C (textHandleUndo): well after John's hint I got here
10150         and fixed redoing of main paragraph, so we can use it now ;)
10151
10152         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
10153
10154 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10155
10156         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
10157         Juergen's request
10158
10159 2001-12-13  André Pönitz <poenitz@gmx.net>
10160
10161         * undostack.[Ch]:
10162         * undo_func.C: minor cleanup
10163
10164 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10165
10166         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
10167         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
10168         font in urw-fonts package which is marked as -urw-fontspecific and
10169         does not work (incidentally, changing the encoding in the
10170         fonts.dir of this package to -adobe-fontspecific fixes the
10171         problem).
10172
10173         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
10174         is a crash when undoing first paragraph (Juergen, please take a
10175         look). THis does not mean the undo fix is wrong, just that it
10176         uncovers problems.
10177
10178         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
10179         the (Paragraph*) version when needed instead of duplicating the
10180         code.
10181
10182         * text.C (workWidth): use Inset::parOwner to find out where the
10183         inset has been inserted. This is a huge performance gain for large
10184         documents with lots of insets. If Inset::parOwner is not set, fall
10185         back on the brute force method
10186
10187         * paragraph_pimpl.C (insertInset):
10188         * paragraph.C (Paragraph):
10189         (cutIntoMinibuffer): set parOwner of insets when
10190         inserting/removing them
10191
10192         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
10193
10194 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
10195
10196         * commandtags.h:
10197         * LyXAction.C:
10198         * lyx_main.C:
10199         * lyxfunc.C:
10200         * mathed/formulabase.C:
10201         * mathed/math_cursor.[Ch]:
10202         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
10203
10204
10205 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10206
10207         * lyxlength.[Ch] (operator!=): new function
10208
10209 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10210
10211         * text.C (workWidth): use Inset::parOwner to find out where the
10212         inset has been inserted. This is a huge performance gain for large
10213         documents with lots of insets. If Inset::parOwner is not set, fall
10214         back on the brute force method
10215
10216         * paragraph_pimpl.C (insertInset):
10217         * paragraph.C (Paragraph):
10218         (cutIntoMinibuffer): set parOwner of insets when
10219         inserting/removing them
10220
10221         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
10222
10223 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10224
10225         * tabular-old.C (getTokenValue):
10226         * tabular.C (getTokenValue):
10227         (write_attribute): new versions for LyXLength
10228         (everywhere): adjust the use of widths
10229
10230         * tabular.h: change the type of widths from string to LyXLength
10231
10232 2001-12-11  Ben Stanley <bds02@uow.edu.au>
10233
10234         * paragraph.C: fixed missing line number count when exporting
10235         Environments to LaTeX file
10236
10237         * buffer.C: added informational message for checking line numbers.
10238
10239 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10240
10241         * text2.C (deleteEmptyParagraphMechanism): if there is only one
10242         paragraph, do the 'double space' part, but not the 'empty
10243         paragraph' one.
10244
10245         * text.C (workWidth): small optimization
10246         (getLengthMarkerHeight): use minimal size for negative lengths.
10247
10248 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
10249
10250         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
10251
10252         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
10253
10254 2001-12-11  André Pönitz <poenitz@gmx.net>
10255
10256         * FontLoader.C:
10257         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
10258
10259 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
10260
10261         * text2.C: keep selection on a setFont()
10262
10263 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
10264
10265         * lyx_cb.C: another bv->text misuse, from insert label
10266
10267 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
10268
10269         * kbsequence.h:
10270         * kbsequence.C: re-instate nmodifier mask
10271
10272 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
10273
10274         * lyx_main.h: make lyxGUI private.
10275
10276 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
10277
10278         * lyxfind.C: place the cursor correctly on failed search
10279
10280 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10281
10282         * text.C (getLengthMarkerHeight): for small heights, the arrows
10283         are not always on top/bottom of the text
10284         (drawLengthMarker): smaller arrows; take the left margin in
10285         account; draw also vfills.
10286         (paintFirstRow):
10287         (paintLastRow): remove special code for vfill and standard spaces,
10288         since everything is handled in drawLengthMarker now.
10289
10290 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10291
10292         * buffer.C (insertErtContents): try to handle font and language
10293         interaction a bit better.g
10294
10295         * ColorHandler.C (updateColor): change the hash to cover the whole
10296         LColor enum, ws cleanup
10297         (getGCLinepars): ditto
10298         (getGCLinepars): only lookup in the linecache once.
10299
10300 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
10301
10302         * iterators.C (operator++): Make the iterator more robust
10303
10304         * BufferView2.C (removeAutoInsets): Use paragraph iterators
10305         (John's patch)
10306         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
10307
10308 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
10309
10310         * lyxtext.h:
10311         * text.C: better added space drawing
10312
10313 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
10314
10315         * LyXView.C:
10316         * BufferView2.C: fix layout combo update on inset unlock
10317
10318 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
10319
10320         * Makefile.am: don't compile unused files
10321
10322 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
10323
10324         * lyxfunc.C:
10325         * commandtags.h:
10326         * LyXAction.C: remove old LFUN_LAYOUTNO
10327
10328 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
10329
10330         * paragraph_pimpl.h:
10331         * paragraph_pimpl.C: isTextAt() doesn't need font param
10332
10333 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
10334
10335         * lyxlex.h:
10336         * lyxlex.C: little cleanup
10337
10338 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
10339
10340         * BufferView_pimpl.C: fix insertAscii for insets
10341
10342 2001-12-05  Juergen Vigna  <jug@sad.it>
10343
10344         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
10345         set the right font on the "multi" paragraph paste!
10346
10347 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10348
10349         * trans_decl.h:
10350         * trans_mgr.[Ch]:
10351         * trans.[Ch]:
10352         * lyxgluelength.C:
10353         * lyxlength.C: remove out-commented code.
10354
10355         * BufferView_pimpl:
10356         * CutAndPaste.C:
10357         * DepTable.C:
10358         * buffer.C:
10359         * chset.C:
10360         * lastfiles.C:
10361         * lyxlex.C:
10362         * lyxlex_pimpl.C:
10363         * lyxserver.C:
10364         * screen.C:
10365         * tabular-old.C:
10366         * tabular.C:
10367         * text.C:
10368         * trans_mgr.C:
10369         * vc-backend.C: change "while(" to "while ("
10370
10371         * lyxlength.[Ch]: add zero function to check if length is zero or
10372         not
10373         * lyxgluelength.C: use it
10374
10375 2001-12-05  Allan Rae  <rae@lyx.org>
10376
10377         * lyxlength.C: Attempted a fix for the abs(int) header selection.
10378         Works for 2.95.3, from what I understand of Garst's reports this should
10379         work for other g++ versions.  We're screwed if the abs(int) definition
10380         changed between bugfix releases of gcc.
10381
10382 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
10383
10384         * text.C: fix chapter label offset !
10385
10386 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
10387
10388         * lyxtext.h:
10389         * text.C: fix hfill at end of line, clean up
10390
10391 2001-12-04  Juergen Vigna  <jug@sad.it>
10392
10393         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
10394         that we force an update of the inset and it's owners if neccessary.
10395
10396 2001-12-03  Juergen Vigna  <jug@sad.it>
10397
10398         * text.C (rowLast): simplified code
10399
10400 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
10401
10402         * lyxfunc.C: fix show options on timeout
10403
10404 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10405
10406         * screen.C (topCursorVisible): scroll half a page when the cursor
10407         reached top of bottom of screen
10408
10409 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
10410
10411         * minibuffer.C: deactivate on loss of focus
10412
10413 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10414
10415         * vspace.[Ch] (operator!=): add operator.
10416
10417 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
10418
10419         * BufferView_pimpl.C: refuse to open an inset when
10420         there's a selection.
10421
10422 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
10423
10424         * BufferView_pimpl.C: allow to click on RHS of full row insets
10425
10426 2001-11-30  Juergen Vigna  <jug@sad.it>
10427
10428         * tabular.C (LyXTabular): add a same_id to set the same id's in the
10429         insets for undo reasons.
10430
10431 2001-11-28  André Pönitz <poenitz@gmx.net>
10432
10433         * vspace.[Ch]: cosmetical changes
10434
10435 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
10436
10437         * LyXAction.h:
10438         * LyXAction.C:
10439         * lyxfunc.h:
10440         * lyxfunc.C:
10441         * kbmap.h:
10442         * kbmap.C:
10443         * lyxrc.C:
10444         * kbsequence.h:
10445         * kbsequence.C: part re-write of old kb code
10446
10447         * Painter.C:
10448         * WorkArea.C: remove Lgb_bug_find_hack
10449
10450 2001-11-30  José Matos <jamatos@fep.up.pt>
10451
10452         * buffer.C (makeDocBookFile): add a comment to point a hack.
10453         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
10454         Fixed a double write of labels.
10455
10456 2001-11-29 Ben Stanley <bds02@uow.edu.au>
10457
10458         * LaTeX.C:
10459         * LaTeX.h Fixed bug in LaTeX class where it would not
10460         re-run latex if no depfiles were changed, but the .dvi was removed.
10461
10462 2001-11-28  André Pönitz <poenitz@gmx.net>
10463
10464         * all the files from the change on 2001/11/26:
10465         use lyx::layout_type instead of LyXTextClass::size_type
10466         use lyx::textclass_type instead of LyXTextClassList::size_type
10467
10468 2001-11-29  Juergen Vigna  <jug@sad.it>
10469
10470         * text.C: added support for paragraph::isFreeSpacing()
10471
10472         * buffer.C: same as above
10473
10474         * paragraph.h: inserted isFreeSpacing() function to enable
10475         FreeSpacing inside InsetERT.
10476
10477         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
10478         of the paragraph's in the cut/copy buffer to 0!
10479
10480         * text2.C (removeRow): remove the assert as it can!
10481
10482         * lyxtext.h: added helper function firstRow returning firstrow and
10483         made firstrow private again.
10484
10485         * BufferView2.C (lockInset): don't relock if we're already locked!
10486
10487         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
10488         the only paragraph.
10489         (removeRow): added Assert::(firstrow)
10490
10491         * debug.C: forgot to add INSETTEXT here.
10492
10493 2001-11-28  Juergen Vigna  <jug@sad.it>
10494
10495         * sp_spell.C (initialize): changed error text to more general
10496         spellchecker command use (not only ispell!)
10497
10498         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
10499
10500         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
10501
10502 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
10503
10504         * vspace.C: initialise lyxgluelength on failure
10505
10506 2001-11-28  Allan Rae  <rae@lyx.org>
10507
10508         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
10509         declaration & definition that looks like a function declaration.
10510
10511 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10512
10513         * BufferView2.C (copy):
10514         (copyEnvironment): do not clear the selection when doing a copy.
10515
10516         * text.C (paintFirstRow): compilation fix
10517
10518 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
10519
10520         * tabular.C (Latex): correct line count when writing latex.
10521
10522 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
10523
10524         * paragraph_pimpl.h:
10525         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
10526           bug a bit
10527
10528 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
10529
10530         * text.C:
10531         * LColor.h:
10532         * LColor.C: change vfillline->added_space
10533
10534         * text.C: add markers and text for added space
10535
10536         * vspace.C: fix comment
10537
10538 2001-11-28  André Pönitz <poenitz@gmx.net>
10539
10540         * paragraph.C: whitespace changes
10541         * all the other files from the change on 2001/11/26:
10542         change *::pos_type into lyx::pos_type
10543
10544 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
10545
10546         * buffer.C (parseSingleLyXformat2Token): Set the language to the
10547         language of the document when inserting error insets.
10548
10549 2001-11-26  André Pönitz <poenitz@gmx.net>
10550
10551         * BufferView_pimpl.[Ch]:
10552         *       CutAndPaste.C:
10553         * buffer.[Ch]:
10554         * lyxcursor.[Ch]:
10555         * lyxfind.C:
10556         * lyxfunc.C:
10557         * lyxrow.[Ch]:
10558         * paragraph.[Ch]:
10559         * paragraph_pimpl.[Ch]:
10560         * sp_spell.C:
10561         * text.C:
10562         * text2.C: reduce header dependencies, introduce type for positions
10563
10564 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
10565
10566         * <various>: change to use Alert.h
10567
10568 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
10569
10570         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
10571         when encountering an unknown token.
10572         (readLyXformat2): Show an error message if there were unknown tokens.
10573
10574 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
10575
10576         * BufferView2.C:
10577         * BufferView_pimpl.C:
10578         * buffer.C:
10579         * paragraph.h:
10580         * text.C:
10581         * text2.C: use par->isInset()
10582
10583 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
10584
10585         * paragraph_pimpl.h:
10586         * paragraph_pimpl.C: cleanup
10587
10588 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10589
10590         * text2.C (removeRow):
10591         * text.C (setHeightOfRow): remove useless (and costly) call to
10592         getRow.
10593
10594 2001-11-20  Allan Rae  <rae@lyx.org>
10595
10596         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
10597         Now need Inset*::checkInsertChar() to return true for appropriate
10598         cases so that the characters in the minibuffer will actually be
10599         inserted.
10600
10601 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10602
10603         * text.C: change the order of the includes.
10604         (workWidth): initialize it at once.
10605         (workWidth): make maxw unsigned
10606         (setHeightOfRow): remove unused variable (inset)
10607         (selectSelectedWord): remove unused variable (inset)
10608         (paintRowText): fix drawing of hfill characters, and clean up a bit.
10609
10610 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10611
10612         * lyxserver.C (emergencyCleanup): do not try to close pipes if
10613         server is not running.
10614         (openConnection):
10615         (closeConnection): add debug info when server is disabled.
10616
10617         * ColorHandler.C (getGCForeground): send debug message to GUI
10618         channel.
10619
10620         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
10621
10622         * kbmap.C (bind): modify because return conventions of
10623         kb_sequence::parse have changed.
10624
10625         * kbsequence.C (parse): only ignore spaces and not any stupid
10626         control character. This avoids tests like s[i] <= ' ', which are
10627         guaranteed to fail with 8bit characters and signed chars.
10628         Change return code to string::npos when there have been no error
10629         (0 was a bad idea when error is at first character)
10630
10631 2001-11-14  José Matos  <jamatos@fep.up.pt>
10632
10633         * buffer.h:
10634         * buffer.C (simpleDocBookOnePar): removed unused argument.
10635
10636 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10637
10638         * text.C (selectNextWordToSpellcheck): do not test explicitely for
10639         insets which are part of a word. Paragraph::isLetter takes care of
10640         that now. Use Paragraph::isInset to identify insets.
10641         (selectSelectedWord): do not test for hyphenation break.
10642
10643         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
10644         that protected spaces are considered as spaces.
10645
10646         * paragraph.C (isLetter): cleanup the code for ispell extras; use
10647         Inset::isLetter.
10648
10649 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
10650
10651         * lyxserver.h:
10652         * lyxserver.C: fix it. and small cleanup.
10653
10654 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
10655
10656         * BufferView_pimpl.C: use inline helpers
10657
10658         * LaTeXFeatures.h:
10659         * LaTeXFeatures.C: fix typos
10660
10661         * Spacing.h:
10662         * Spacing.C: move spacing_string into class
10663
10664         * ToolbarDefaults.C: move stuff into namespace anon
10665
10666         * layout.h: update enum
10667
10668         * lyxfunc.C: use better debug
10669
10670         * minibuffer.h: fix typo
10671
10672         * debug.h:
10673         * debug.C:
10674         * WorkArea.C: add and use Debug::WORKAREA
10675
10676         * lyxtext.h:
10677         * text.C:
10678         * text2.C: code re-organisation, inline helpers
10679
10680 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
10681
10682         * Layout.C: replaced a few cases of std::vector.size() == 0 with
10683         std::vector.empty().
10684
10685 2001-11-09  Allan Rae  <rae@lyx.org>
10686
10687         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
10688         '\n's after tables.  Tabular and ERT inset work now makes this no
10689         longer necessary.
10690
10691 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
10692
10693         * minibuffer.h:
10694         * minibuffer.C: fix crash, improve drop-down completion
10695
10696 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
10697
10698         * lyxserver.h:
10699         * lyxserver.C: invalidate fd's when doing endPipe()
10700
10701 2001-11-08  José Matos  <jamatos@fep.up.pt>
10702
10703         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
10704         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
10705
10706         * paragraph.h:
10707         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
10708
10709 2001-11-07  José Matos  <jamatos@fep.up.pt>
10710
10711         * buffer.h:
10712         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
10713         const qualifier.
10714
10715         * buffer.C (sgmlOpenTag):
10716         * buffer.C (sgmlCloseTag): removed debug info.
10717
10718         * buffer.h (sgmlOpenTag):
10719         * buffer.h (sgmlCloseTag): made public.
10720
10721 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10722
10723         * buffer.C (saveParamsAsDefaults):
10724         * lyx_cb.C (MenuLayoutSave): remove
10725
10726         * LyXAction.C (init):
10727         * commandtags.h:
10728         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
10729
10730 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10731
10732         * buffer.C (setPaperStuff): removed from here...
10733
10734         * bufferparams.C (setPaperStuff): ... and moved there.
10735
10736 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
10737
10738         * minibuffer.h:
10739         * minibuffer.C:
10740         * XFormsView.C: add support for drop-down completion
10741
10742 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
10743
10744         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
10745         commands.
10746
10747 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10748
10749         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
10750         disabled.
10751
10752 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
10753
10754         * lyx_main.C: change ref to known bugs
10755
10756 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
10757
10758         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
10759         to work around older babel problems.
10760
10761 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
10762
10763         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
10764
10765 2001-10-24  Juergen Vigna  <jug@sad.it>
10766
10767         * tabular-old.C (ReadOld): below variable changes reflected.
10768
10769         * tabular.[Ch]: added ltType struct for longtable header/footer
10770         defines and changed all instances where they are used. Added
10771         future support for double top/bottom rows.
10772
10773 2001-10-24  José Matos  <jamatos@fep.up.pt>
10774
10775         * buffer.h (docbookHandleCaption):
10776         * buffer.C (docbookHandleCaption): removed unused function.
10777         (makeDocBookFile): moved docbook supported version to v4.1.
10778
10779 2001-10-24  José Matos  <jamatos@fep.up.pt>
10780
10781         * tabular.h:
10782         * tabular.C (docbookRow): new function to export docbook code of a row.
10783         (DocBook): now honors the longtable flags.
10784
10785 2001-10-23  José Matos  <jamatos@fep.up.pt>
10786
10787         * LaTeXFeatures.h:
10788         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
10789         of the lyx defined sgml entities used in a docbook/linuxdoc document.
10790
10791         * buffer.C (makeLinuxDocFile):
10792         (makeDocBookFile): reworked the preamble, more clean, and with
10793         support for lyx defined entities. Changed the document declaration
10794         to be more XML friendly.
10795
10796         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
10797         if we need to output XML that should be done with a filter.
10798
10799 2001-10-22  Juergen Vigna  <jug@sad.it>
10800
10801         * sp_pspell.h (class PSpell): add alive function needed in the
10802         controller to see if the spellchecker could be started.
10803
10804 2001-10-22  Juergen Vigna  <jug@sad.it>
10805
10806         * buffer.C (insertStringAsLines): modify the font for inserting
10807         chars in certain conditions by calling checkInsertChar(font).
10808
10809 2001-10-19  Juergen Vigna  <jug@sad.it>
10810
10811         * text.C (workWidth): use getRow instead of wrong algorithm.
10812         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
10813
10814 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
10815
10816         * lyxserver.h:
10817         * lyxserver.C:
10818         * lyx_main.h:
10819         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
10820
10821 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10822
10823         * text.C (workWidth): do not search for the exact row when
10824         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
10825         optimization for big documents.
10826
10827 2001-10-18  Juergen Vigna  <jug@sad.it>
10828
10829         * text.C (workWidth): new function with added Inset * parameter.
10830
10831 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10832
10833         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
10834
10835         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
10836         change return type of getColumnNearX.
10837
10838
10839         * text.C (changeRegionCase): use uppercase/lowercase instead of
10840         toupper/tolower.
10841         (leftMargin):
10842         (rightMargin): simplify code by factoring out the uses of
10843         textclasslist.
10844         (labelFill):
10845         (numberOfHfills):
10846         (setHeightOfRow):
10847         (appendParagraph): use Paragraph::size_type
10848
10849 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10850
10851         * vspace.C (asLatexString): add a missing break
10852
10853 2001-10-15  Herbert Voss  <voss@perce.de>
10854
10855         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
10856
10857 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10858
10859         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
10860         is not available.
10861
10862 2001-10-10  André Pönitz <poenitz@gmx.net>
10863
10864         * lyxfunc.C: removed greek_kb_flag.
10865
10866 2001-10-10  Herbert Voss  <voss@perce.de>
10867
10868         * lyx_main.C: delete global string help_lyxdir.
10869
10870 2001-10-09  Herbert Voss  <voss@perce.de>
10871
10872         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
10873
10874         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
10875
10876         * lyx_main.C: added global string help_lyxdir.
10877
10878         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
10879
10880 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
10881
10882         * lyxrc.C (set_font_norm_type): support iso8859-4
10883
10884 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
10885
10886         * LaTeX.C (deplog): add another regex for MikTeX
10887
10888 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
10889
10890         * lyxrc.C (set_font_norm_type): support iso8859-3
10891
10892 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10893
10894         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
10895
10896         * LaTeXFeatures.C: remove special case of french and index
10897
10898         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
10899         before \begin{document}). This solves several incompatibilities.
10900
10901 2001-10-03  Garst Reese  <reese@isn.net>
10902
10903         * lyx_cb.C: change CheckTex error msg.
10904
10905 2001-10-03  José Matos  <jamatos@fep.up.pt>
10906
10907         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
10908
10909 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10910
10911         * .cvsignore: update
10912
10913         * lyx_main.C (commandLineVersionInfo): use new style version info.
10914
10915         * buffer.C (writeFile):
10916         (makeLaTeXFile):
10917         (makeLinuxDocFile):
10918         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
10919
10920         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
10921
10922         * version.h: update to use stuff in version.C
10923
10924         * version.C.in: new file. Contains version information determined
10925         at compile time. This is a merging of version.h and
10926         version_info.h.in.
10927
10928 2001-10-03  Juergen Vigna  <jug@sad.it>
10929
10930         * BufferView_pimpl.C (update): don't change "dirty" status in
10931         updateInset call.
10932
10933 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
10934
10935         * WorkArea.C (c-tor): re-position version string slightly.
10936
10937 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
10938
10939         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
10940         revert to previous code.
10941
10942         WorkArea.[Ch]: (show, destroySplash): methods removed.
10943
10944         WorkArea.C: rework code so that it's an amalgam of the codes before and
10945         after the splash screen was moved to WorkArea.
10946
10947 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10948
10949         * lyxrc.C (read):
10950         * vspace.C (inPixels):
10951         (lyx_advance):
10952         * kbmap.C (bind):
10953         * buffer.C (insertStringAsLines):
10954         (asciiParagraph): fix types to be large enough
10955
10956         * lyxlex_pimpl.h: change member status from short to int
10957
10958         * layout.h: fix type of endlabeltype
10959
10960         * kbmap.C (bind):
10961         * kbsequence.C (parse): change return type to string::size_type
10962
10963         * LaTeX.C (updateBibtexDependencies): comment out unneeded
10964         variable
10965
10966         * Bullet.C (bulletSize):
10967         (bulletEntry): do not use short ints as parameters
10968
10969         * BufferView2.C (insertLyXFile): change a char to an int.
10970
10971         * WorkArea.C (WorkArea): remove unneeded floats in computation
10972
10973 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
10974
10975         * buffer.C (asciiParagraph): Treat '\\' as other chars.
10976
10977         * paragraph.C (asString): Do not ignore newline/hfill chars when
10978         copying to the clipboard.
10979
10980 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
10981
10982         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
10983         after a multi-line inset.
10984
10985 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
10986
10987         * paragraph.C (validate): Set NeedLyXFootnoteCode
10988
10989 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
10990
10991         * lyxfont.C (LyXSizeNames): changed increase-error to increase
10992         and decrease-error to decrease.
10993
10994 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10995
10996         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
10997         it more readable (should be equivalent)
10998
10999 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
11000
11001         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
11002
11003 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11004
11005         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
11006         of a cursor (row, etc.) after a character has been deleted
11007         (deleteEmptyParagraphMechanism): call the method above on _all_
11008         cursors held by the LyXText when a double space has been
11009         detected/deleted.
11010
11011 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
11012
11013         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
11014         pixmap.
11015         (resizeCurrentBuff): remove code to destroy the old splash dialog.
11016
11017         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
11018         background. Use greyOut() and the new show() methods to toggle between
11019         the foreground and background. Add code to remove the splash after
11020         its initial showing.
11021
11022         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
11023         (create_forms): no longer call Dialogs::showSplash.
11024
11025 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11026
11027         * .cvsignore: add version_info.h
11028
11029 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11030
11031         * version_info.h.in: new file
11032
11033         * Makefile.am: add version_info.h.in
11034
11035         * lyx_main.C (commandLineVersionInfo): use version_info defined in
11036         version_info.h instead of VERSION_INFO
11037
11038 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
11039
11040         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
11041         The ERT inset now returns string().
11042
11043 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
11044
11045         * lyxtext.h, text.C (selectNextWord): renamed as
11046         selectNextWordToSpellcheck.
11047
11048         * text.C (selectNextWordToSpellcheck): Modified to not select
11049         words inside an ERT inset.
11050
11051 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11052
11053         * lyx_cb.C (MenuLayoutSave): change a bit the question
11054
11055         * sp_base.h: include <sys/types.h>
11056
11057 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
11058
11059         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
11060
11061 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
11062
11063         * several files: fix typos in user-visible strings
11064
11065 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11066
11067         * text2.C (pasteSelection): do not set the selection, since it
11068         will be cleared later. Actually, the intent was to fix the way the
11069         selection was set, but I figured rmoving the code was just as good.
11070
11071 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
11072
11073         * FontLoader.C (available): Check if font is available without
11074         loading the font.
11075
11076 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
11077
11078         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
11079
11080 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
11081
11082         * lyxrc.[Ch]: added display_graphics variable and associated code.
11083
11084 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11085
11086         * bufferparams.C (hasClassDefaults): new method. Returns true if
11087         the buffer parameters correspond to known class defaults
11088
11089 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
11090
11091         * XFormsView.C (show): set minimum size to the main window.
11092
11093 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11094
11095         * text2.C (copySelection):
11096         (cutSelection):
11097         * lyxfind.C (LyXReplace):
11098         * BufferView_pimpl.C (Dispatch): pass the correct flag to
11099         LyXText::selectionAsString.
11100
11101         * paragraph.C (asString): add "label" argument to the second form
11102
11103         * text2.C (selectionAsString): add "label" argument and pass it to
11104         Paragraph::asString.
11105
11106 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11107
11108         * lyx_main.C (commandLineHelp): remove version information
11109
11110 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
11111
11112         * lyx_main.C: add -version commandline option
11113
11114 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11115
11116         * paragraph.h: make the optional constructor arg required instead.
11117         some modifications to other files because of this.
11118
11119         * minibuffer.C (C_MiniBuffer_peek_event): make it static
11120
11121         * lyxserver.C (C_LyXComm_callback): make it static
11122
11123         * lyx_main.C (error_handler): make it static
11124
11125         * lyx_gui.C (LyX_XErrHandler): make it static
11126
11127         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
11128
11129         * WorkArea.C: make the extern "C" methods static.
11130
11131         * Makefile.am (lyx_LDADD): simplify
11132
11133 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
11134
11135         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
11136         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
11137
11138         * LyXAction.C (init):
11139         * lyxfunc.C (dispatch): associated code removal.
11140
11141 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11142
11143         * lyxfont.h (isSymbolFont): shut off warning
11144
11145         * text.C (setHeightOfRow):
11146         (getVisibleRow): fix crash with empty paragraphs which have a
11147         bottom line
11148
11149 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
11150
11151         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
11152         code.
11153
11154 2001-09-04  José Matos  <jamatos@fep.up.pt>
11155         * buffer.C
11156         * buffer.h
11157         * tabular.C (docbook): rename docBook method to docbook.
11158
11159 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
11160
11161         * Makefile.am: add dependencies to main.o.
11162
11163 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
11164
11165         * FontLoader.C (available): Return false if !lyxrc.use_gui
11166
11167 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
11168
11169         * FontInfo.C (query):
11170         * converter.C (view):
11171         * importer.C (Import):
11172         * exporter.C (Export): Can not -> cannot.
11173
11174 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
11175
11176         * BufferView_pimpl.C: allow to create index inset even if
11177           string is empty
11178
11179 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
11180
11181         * buffer.C (getLists): replace boost::tie code with an explicit pair
11182         as boost::tie can break some compilers.
11183
11184         * iterators.h: Added a std:: declaration to the return type of
11185         ParIterator::size.
11186
11187 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
11188
11189         * lyxrc.C: add help for view_dvi_paper_option, default to safe
11190           case.
11191
11192 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
11193
11194         * iterators.[Ch]: New files. Provide paragraph iterators.
11195
11196         * buffer.C (changeLanguage): Use paragraph iterators.
11197         (isMultiLingual): ditto
11198
11199         * BufferView2.C (ChangeInsets): Use paragraph iterators.
11200
11201 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
11202
11203         * FontLoader.C: Support for cmr font.
11204
11205 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
11206
11207         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
11208         (available): New method.
11209
11210         * FontInfo.C (getFontname): Use scalable fonts even when
11211         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
11212         found.
11213
11214 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
11215
11216         * converter.C (Formats::view): reverted! Incorrect fix.
11217
11218 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
11219
11220         * converter.C (Formats::view): only output the -paper option
11221         if the dvi viewer is xdvi, thereby fixing bug #233429.
11222
11223 2001-08-23  Herbert Voss  <voss@perce>
11224
11225         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
11226
11227 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
11228
11229         * Spacing.h (Spacing): Set space to Default on in the default
11230         constructor.
11231
11232 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11233
11234         * vc-backend.h (RCS::versionString): add RCS to version
11235         (CVS::versionString): add CVS to version
11236
11237         * vc-backend.C (scanMaster): do not add CVS to version.
11238         (scanMaster): do not add RCS to version
11239
11240         * lyxvc.C (versionString): new method
11241
11242         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
11243
11244 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11245
11246         * Spacing.C (set): initialize fval
11247
11248 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
11249
11250         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
11251         " or \.
11252
11253 2001-08-16  Juergen Vigna  <jug@sad.it>
11254
11255         * lyxfunc.C (dispatch): implemented the new FINISHED states.
11256
11257 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
11258
11259         * BufferView_pimpl.C:
11260         * figureForm.C:
11261         * lyxtext.h:
11262         * text2.C: setParagraph takes linespacing now
11263
11264 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
11265
11266         * LyxAction.C: add internal LFUN_CITATION_INSERT
11267
11268         * LyXView.C: actually apply fix
11269
11270         * bufferlist.C: fix open non-existent file
11271
11272         * lyxfind.C: fix indentation
11273
11274         * lyxfunc.C: remove unneeded assert, fix typo
11275
11276 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
11277
11278         * MenuBackend.C: use "Floatname List"
11279
11280 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
11281
11282         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
11283         when converting LaTeX layout to insetERT.
11284         Generate a non-collapsed float when reading old float
11285
11286 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
11287
11288         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
11289         ERT insets.
11290
11291 2001-08-13  Juergen Vigna  <jug@sad.it>
11292
11293         * text.C (fill): return 0 instead of 20 as this seems to be the more
11294         correct value.
11295
11296 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
11297
11298         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
11299         lyxrc.font_norm.
11300
11301 2001-08-13  Juergen Vigna  <jug@sad.it>
11302
11303         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
11304         casesensitive off.
11305         (SearchBackward): comment out the unlocking of the inset_owner this
11306         should not be needed!
11307
11308 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
11309
11310         * Many files: Remove inherit_language, and add latex_language
11311
11312         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
11313         collapsible insets.
11314
11315 2001-08-10  Juergen Vigna  <jug@sad.it>
11316
11317         * text.C (prepareToPrint): fixed hfill-width in draw!
11318
11319         * BufferView2.C (selectLastWord): save the selection cursor as this
11320         now is cleared in the function LyXText::clearSelection!
11321
11322 2001-08-08  Juergen Vigna  <jug@sad.it>
11323
11324         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
11325         BACKSPACE type functions.
11326
11327         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
11328         is only cutted from the document but not put in the cut-buffer, where
11329         still the old stuff should be.
11330
11331         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
11332
11333         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
11334
11335         * tabular.C (SetWidthOfCell): fixed special case where the width
11336         was not updated!
11337         (LeftLine): handle '|' in align_special.
11338         (RightLine): ditto
11339         (LeftAlreadyDrawed): ditto
11340         (SetWidthOfCell): ditto
11341
11342 2001-08-07  Juergen Vigna  <jug@sad.it>
11343
11344         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
11345
11346 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11347
11348         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
11349         * lyxlex.[hC]: ditto
11350
11351 2001-08-06  Juergen Vigna  <jug@sad.it>
11352
11353         * text.C (getVisibleRow): fix up row clearing a bit.
11354
11355 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11356
11357         * minibuffer.C: make sure the X server sees the changes in the input.
11358
11359 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11360
11361         * paragraph.C (getFont): split into...
11362         (getLabelFont): this
11363         (getLayoutFont): and this
11364         * paragraph_pimpl.C (realizeFont): calling this
11365
11366         * text2.C (getFont): split into...
11367         (getLayoutFont): this
11368         (getLabelFont): and this
11369         (realizeFont): all three calling this
11370
11371         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
11372         files where used.
11373
11374 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11375
11376         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
11377
11378 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
11379
11380         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
11381         layouts from the Quote inset insertion.
11382
11383 2001-08-03  Juergen Vigna  <jug@sad.it>
11384
11385         * BufferView_pimpl.C (update): do the fitCursor only at the end!
11386
11387         * screen.C (drawFromTo): don't call fitcursor here and do the loop
11388         only if status not is already CHANGED_IN_DRAW (second level).
11389
11390         * text.C (draw): don't set the need_break_row when inside an
11391         InsetText LyXText.
11392
11393 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11394
11395         * buffer.C (parseSingleLyXformat2Token): handle more latex
11396         conversion cases.
11397
11398         * bufferview_funcs.[hC]: change function names to
11399         begin with small char, adjust other files.
11400
11401 2001-08-02  André Pönitz <poenitz@gmx.net>
11402
11403         * lyxfunc.C:
11404         BufferView_pimpl.C: remove broken special code for math-greek
11405
11406 2001-08-02  Juergen Vigna  <jug@sad.it>
11407
11408         * BufferView_pimpl.C (update): redone this function so that we
11409         update the text again if there was a CHANGE_IN_DRAW.
11410
11411         * screen.C (cursorToggle): removed LyXText parameter and recoded.
11412         (drawFromTo): added a new internal bool which is used by draw() and
11413         redraw() function.
11414         (general): some cursor drawing problems fixed.
11415
11416 2001-08-01  Juergen Vigna  <jug@sad.it>
11417
11418         * lyxfind.C (LyXFind): fixed
11419         (SearchForward): ditto
11420         (SearchBackward): ditto
11421
11422         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
11423         spurius drawing of the cursor in the main area.
11424
11425         * text2.C (status): small fix which could lead to a segfault!
11426         (clearSelection): remove unneeded BufferView param.
11427
11428 2001-08-01  André Pönitz <poenitz@gmx.net>
11429
11430         * lyxfunc.C: small change due to changed mathed interface
11431
11432 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11433
11434         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
11435
11436 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
11437
11438         * lyxfunc.c: fail gracefully if file doesn't exist
11439
11440         * LyXSendto.C:
11441         * buffer.C:
11442         * lyxfunc.C:
11443         * BufferView_pimpl.C: IsDirWriteable() proto changed
11444
11445         * LyXView.C: fix updateWindowTitle() to store the last title
11446
11447 2001-07-31  Juergen Vigna  <jug@sad.it>
11448
11449         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
11450         the font (wrong since using of Paragraph::highestFontInRange).
11451
11452         * paragraph.C (highestFontInRange): added a default_size parameter.
11453
11454         * text.C (getVisibleRow): minor clear row changes (still not perfect).
11455         (setHeightOfRow): reformat
11456
11457 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11458
11459         * converter.[hC] + affected files: move to (inital-char)lowercase
11460         function names.
11461
11462         * ParagraphParameters.C (ParagraphParameters): remove commented code
11463
11464         * PainterBase.[Ch]: remove commented code
11465
11466         * LaTeXFeatures.h: add "bool floats" for float.sty
11467
11468         * LaTeXFeatures.C (LaTeXFeatures): init floats
11469         (require): handle float
11470         (getPackages): do it with floats
11471
11472 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11473
11474         * BufferView_pimpl.C (Dispatch): improve handling of
11475         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
11476
11477         * commandtags.h: #include lyxfont.h here temporarily to avoid
11478         keybinding bug.
11479
11480         * bufferlist.h: include LString.h here.
11481
11482 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11483
11484         * text2.C (getStringToIndex): new method.
11485
11486 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
11487
11488         * *: Reduced header file dependencies all over.
11489
11490 2001-07-30  Baruch Even  <baruch@lyx.org>
11491
11492         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
11493
11494 2001-07-29  Baruch Even  <baruch@lyx.org>
11495
11496         * buffer.C (readInset): Changed GRAPHICS to Graphics.
11497
11498 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11499
11500         * ParameterStruct.h (endif): add a default constructor to make
11501         sure that all variables is initialized.
11502
11503         * ParagraphParameters.C (ParagraphParameters): adjust
11504
11505 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11506
11507         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
11508         index; also, check that there is something to index, and that it
11509         does not span over several paragraphs.
11510         (doubleClick): use WHOLE_WORD_STRICT for double click.
11511
11512         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
11513
11514         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
11515         scheme.
11516
11517 2001-07-26  Baruch Even  <baruch@lyx.org>
11518
11519         * buffer.C (readInset): Changed to call up InsetGraphics when reading
11520         an InsetFig figure, backwards compatible reading of old figure code.
11521
11522 2001-07-27  Juergen Vigna  <jug@sad.it>
11523
11524         * text2.C: font.realize function adaption.
11525
11526         * text.C (draw): add a warnings lyxerr text if needed.
11527
11528         * layout.C: font.realize function adaption.
11529
11530         * language.C: add inherit_language and implement it's handlings
11531
11532         * bufferview_funcs.C (StyleReset): remove language parameter from
11533         font creation (should be language_inherit now).
11534
11535         * bufferparams.C (writeFile): handle ignore_language.
11536
11537         * paragraph.C (getFontSettings): the language has to be resolved
11538         otherwise we have problems in LyXFont!
11539
11540         * lyxfont.C (lyxWriteChanges): added document_language parameter
11541         (update): removed unneeded language parameter
11542
11543         * paragraph.C (validate): fixed wrong output of color-package when
11544         using interface colors for certain fonts in certain environments,
11545         which should not seen as that on the final output.
11546
11547 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
11548
11549         * BufferView_pimpl.C:
11550         * Thesaurus.h:
11551         * Thesaurus.C:
11552         * Makefile.am:
11553         * commandtags.h:
11554         * LyXAction.C: add thesaurus support
11555
11556         * lyxfind.h:
11557         * lyxfind.C: add "once" parameter, for thesaurus, to not
11558           move to the next match
11559
11560 2001-07-26  Juergen Vigna  <jug@sad.it>
11561
11562         * lyxfont.C (realize): honor ignore_language too!
11563         (resolved): ditto.
11564
11565         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
11566
11567         * text.C (draw): one place more for ignore_language to not draw
11568         itself!
11569
11570 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
11571
11572         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
11573
11574 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11575
11576         * buffer.C (parseSingleLyXformat2Token): a more general fix for
11577         the minipage conversion problem.
11578
11579 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11580
11581         * buffer.C (parseSingleLyXformat2Token): check minipage if we
11582         insert an inset.
11583
11584 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11585
11586         * BufferView.h: don't forward declare WorkArea
11587
11588         * BufferView.C: don't include WorkArea.h
11589
11590 2001-07-25  André Pönitz <poenitz@gmx.net>
11591
11592         * commandtags.h:
11593         * LyXAction.C:
11594         * lyxfunc.C:  new LFUN 'math-space'
11595
11596         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
11597
11598 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11599
11600         * text2.C (toggleInset): call open/close
11601
11602 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11603
11604         * lyxfunc.C (dispatch): add debug for the disabled case
11605
11606         * font.C (buttonText): make similar to rectText
11607
11608         * buffer.C (readInset): comment out parsing of insetlist and
11609         insttheorem
11610
11611         * PainterBase.C (rectText): small correction
11612
11613         * BufferView_pimpl.C: comment out insettheorem and insetlist
11614         * LyXAction.C: ditto
11615         * commandtags.h: ditto
11616
11617 2001-07-24  Juergen Vigna  <jug@sad.it>
11618
11619         * text.C (draw): honor the ignore_language.
11620
11621         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
11622
11623 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11624
11625         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
11626         char inset.
11627
11628 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
11629
11630         * lyxtext.h: remove unused (and unimplemented) methods
11631
11632 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
11633
11634         * text.C (getVisibleRow): honor background color
11635
11636         * PainterBase.h:
11637         * Painter.h: remove default color argument for fillRectangle
11638
11639         * text.C (backgroundColor): new method
11640
11641 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11642
11643         * text.C (getVisibleRow): adjust
11644
11645         * font.[Ch] (rectText): new method, metrics
11646         (buttonText): new method, metrics
11647
11648         * PainterBase.[hC]: make rectText and buttonText always draw and take
11649         fewer paramteres.
11650
11651 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
11652
11653         * ToolbarDefaults.C (read):
11654         * MenuBackend.C (read): allow escaping in all strings
11655
11656         * BufferView_pimpl.C (insertAndEditInset): new method.
11657         (Dispatch): use insertAndEditInset whenever appropriate.
11658
11659         * BufferView_pimpl.C (insertNote): removed
11660
11661         * BufferView_pimpl.C (smartQuote): new method, moved from
11662         BufferView; if an insetquote cannot be inserted, insert a '"'
11663         character instead.
11664
11665         * BufferView2.C: remove insertCorrectQuote();
11666
11667         * lyxfunc.C (getStatus): Add support for all remaingin
11668         inset-insert lfuns.
11669
11670         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
11671
11672         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
11673         command (necessary to pass " as parameter of self-insert.
11674
11675         * text.C (selectWordWhenUnderCursor):
11676         (selectWord): add word_location parameter
11677         (selectWordWhenUnderCursor): same + remove special code for word
11678         boundary.
11679         (selectNextWord): use kind() to guess type of insetspecialchar,
11680         not latex().
11681
11682         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
11683         (insertErtContents): create ert insets as collapsed.
11684         (readInset): better compatibility code for Info inset.
11685
11686 2001-07-20  Juergen Vigna  <jug@sad.it>
11687
11688         * lyxfunc.C (dispatch): use always LyXFind now!
11689
11690         * text2.C (init): add a reinit flag so that the LyXText can be
11691         reinited instead of deleted and reallocated (used in InsetText).
11692
11693         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
11694
11695         * text.C: ditto
11696
11697         * text2.C: ditto
11698
11699 2001-07-18  Juergen Vigna  <jug@sad.it>
11700
11701         * text.C (selectNextWord): handle insets inside inset by calling
11702         always the bv->text functions so that we can go up the_locking_inset!
11703
11704         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
11705         in strange locations when inside an inset!
11706
11707         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
11708         handling to include insets.
11709
11710         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
11711
11712 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11713
11714         * LyXAction.C (init):
11715         * commandtags.h:
11716         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
11717         LIGATURE_BREAK, since the name is so stupid.
11718
11719 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
11720
11721         * buffer.C (readInset): enable reading of new InsetNotes as well as old
11722         InsetInfos.
11723
11724         * FontLoader.C: remove FORMS_H_LOCATION cruft.
11725
11726         * sp_form.[Ch]: remove.
11727
11728         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
11729
11730         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
11731         InsetInfo.
11732
11733         * src/buffer.C (readInset): ditto.
11734
11735 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
11736
11737         * BufferView_pimpl.C (specialChar): new method. Obsoletes
11738         menuSeparator(), endOfSentenceDot(), ldots() and
11739         hyphenationPoint(), which are therefore removed.
11740         (Dispatch): handle LFUN_HYPHENATION_BREAK.
11741
11742         * LyXAction.C (init):
11743         * commandtags.h: add LFUN_HYPHENATION_BREAK.
11744
11745         * paragraph.C (getWord): removed.
11746
11747         * BufferView_pimpl.C (Dispatch): use last word or selection for
11748         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
11749
11750         * lyx_main.C (queryUserLyXDir): do not ask before creating
11751         user_dir, except if it has been named explicitely.
11752
11753 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
11754
11755         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
11756         a document of zero size.
11757
11758 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
11759
11760         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
11761         approriately in the c-tor and in require().
11762         (getPackages): output the appropriate LaTeX for natbib support.
11763
11764         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
11765         variables "use_natbib" and "use_numerical_citations" when reading the
11766         LyX file.
11767         (readInset): read the various natbib cite commands.
11768         (validate): white-space change.
11769
11770         * bufferparams.[Ch]: new variables "bool use_natbib" and
11771         "bool use_numerical_citations".
11772         (writeFile): output them in the LyX file.
11773
11774 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
11775
11776         * lyxfunc.C (getStatus): add support for all the inset insertion
11777         commands.
11778
11779         * text2.C (insertInset):
11780         * paragraph.C (insetAllowed):
11781         * BufferView_pimpl.C (insertInset): update to take in account the
11782         renaming of insertInsetAllowed
11783
11784         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
11785
11786         * text2.C (getInset): new method. returns inset at cursor position.
11787
11788         * BufferView_pimpl.C (Dispatch): changes because of this.
11789
11790         * LyXAction.C (init): rename open-stuff to inset-toggle.
11791
11792         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
11793
11794         * text2.C (toggleInset): renamed from openStuff; use
11795         Inset::open().
11796
11797 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
11798
11799         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
11800
11801         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
11802
11803 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
11804
11805         * buffer.C (readLyXformat2): Add filename to the error dialog
11806
11807 2001-07-18  Juergen Vigna  <jug@sad.it>
11808
11809         * tabular.C (GetCellNumber): put an assert here instead of the check!
11810
11811 2001-07-17  Juergen Vigna  <jug@sad.it>
11812
11813         * BufferView_pimpl.C (toggleSelection): adapted too.
11814
11815         * text.C (selectNextWord): adapted for use with insets.
11816         (selectSelectedWord): ditto
11817
11818 2001-07-17  Juergen Vigna  <jug@sad.it>
11819
11820         * sp_spell.C (PSpell): fix initialitation order.
11821
11822 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11823
11824         * paragraph.C: spacing
11825
11826 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
11827
11828         * sp_spell.C: repair language selection for pspell
11829
11830 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11831
11832         * lyxfunc.h: change more methods to begin with lower char.
11833
11834 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
11835
11836         * buffer.C (parseSingleLyXformat2Token): Generate error insets
11837         for unknown layouts.
11838
11839 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
11840
11841         * buffer.C (readLyXformat2): Generate an error dialog if there are
11842         unknown layouts.
11843
11844 2001-07-16  Juergen Vigna  <jug@sad.it>
11845
11846         * sp_spell.C: always compile ISpell part.
11847
11848         * lyxrc.C: added use_pspell entry and it's handling.
11849
11850 2001-07-13  Juergen Vigna  <jug@sad.it>
11851
11852         * sp_spell.C: removed double includes.
11853
11854 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
11855
11856         Consistent use of Lsstream.h:
11857         * Lsstream.h: added using std::stringstream for consistencies sake.
11858
11859         * buffer.C: removed using std::stringstream
11860
11861         * lyxfont.C (stateText):
11862         * paragraph.C (asString):
11863         * text.C (selectNextWord, selectSelectedWord):
11864         * text2.C (setCounter):
11865         * vspace.C (asString, asLatexString):
11866         std::ostringstream -> ostringstream.
11867
11868 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
11869
11870         * LyXAction.C: add LFUN_HELP_ABOUTLYX
11871         * commandtags.h: add LFUN_HELP_ABOUTLYX
11872         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
11873
11874 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
11875
11876         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
11877         cursorToggle()
11878         * lyx_gui_misc.C: remove spellchecker
11879         * lyxfunc.C: showSpellchecker
11880         * sp_base.h: added
11881         * sp_ispell.h: added
11882         * sp_pspell.h: added
11883         * sp_spell.C: added
11884         * sp_form.[Ch]: removed
11885         * spellchecker.[Ch]: removed
11886
11887 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
11888
11889         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
11890         is set.
11891         (simpleTeXSpecialChars): Simply print the input character without
11892         any special translation if pass_thru is set.
11893
11894         * layout.h: Added bool pass_thru to layout class for being able to
11895         implement pass through of a paragraph for Literate Programming.
11896
11897         * layout.C: add LT_PASS_THRU to LayoutTags enum.
11898         * layout.C (LyXLayout): set pass_thru to flase in constructor.
11899         * layout.C (Read): add "passthru" to list of layout tags and add
11900         code to set the pass_thru boolean when it is read.
11901
11902 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11903
11904         * trans_decl.h: remove allowed from KmodInfo
11905
11906         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
11907         remove allowed code
11908         (Load): adjust
11909
11910         * paragraph_pimpl.C (erase): use boost::prior
11911
11912         * Painter.C (text): use data() instead of c_str() when length is
11913         also provided.
11914         * WorkArea.C (putClipboard): ditto
11915         * font.h (width): ditto
11916
11917         * BufferView2.C: use it-> instead of (*it). for iterators
11918         * texrow.C: ditto
11919         * paragraph_pimpl.C: ditto
11920         * paragraph.C: ditto
11921         * minibuffer.C: ditto
11922         * language.C: ditto
11923         * kbmap.C: ditto
11924         * encoding.C: ditto
11925         * counters.C: ditto
11926         * converter.C: ditto
11927         * chset.C: ditto
11928         * Variables.C: ditto
11929         * TextCache.C: ditto
11930         * MenuBackend.C: ditto
11931         * LyXAction.C: ditto
11932         * LColor.C: ditto
11933         * FloatList.C: ditto
11934         * DepTable.C: ditto
11935         * ColorHandler.C (LyXColorHandler): ditto
11936
11937 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11938
11939         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
11940
11941         * text2.C (openStuff): reintroduce this method (which had been
11942         nuked in NEW_INSETS frenzy).
11943
11944         * lyxfunc.C (Dispatch): when an action has not been handled, use
11945         its name in the error message, not its number.
11946
11947         * paragraph.C (inInset): change method name to begin with lowercase.
11948
11949         * undo_funcs.C:
11950         * text2.C: updates because of this.
11951
11952 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11953
11954         * ToolbarDefaults.C (add): add spaces in error message
11955
11956 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11957
11958         * buffer.C (readLyXformat2): initialize the ert comp. variables.
11959         (readLyXformat2): rename return_par to first_par, use lyxlex's
11960         pushToken and remove the manual push handling.
11961         (parseSingleLyXformat2Token): add another ert comp. variable:
11962         in_tabular, rename return_par to first_par. handle newlines better
11963
11964 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11965
11966         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
11967
11968 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11969
11970         * text2.C (getParFromID): removed
11971
11972         * buffer.C (getParFromID): new method moved form lyxtext.
11973         * BufferView2.C (insertErrors): adjust
11974         (setCursorFromRow): adjust
11975         * BufferView_pimpl.C (restorePosition): adjust
11976         * lyxfunc.C (Dispatch): adjust
11977         * undo_funcs.C (textUndo): adjust
11978         (textRedo): adjust
11979         (textHandleUndo): adjust
11980         (textHandleUndo): adjust
11981
11982 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11983
11984         * buffer.C: up' the LYX_FORMAT
11985
11986         * lyxfont.h: turn NO_LATEX on as default
11987
11988         * buffer.C (insertErtContents): new methods of tex style compability.
11989         (parseSingleLyXformat2Token): use it several places.
11990         * tabular.C (OldFormatRead): and here
11991
11992 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11993
11994         * text2.C: remove some commented code.
11995         reindent file.
11996
11997         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
11998         * trans.C: changes because of the above.
11999
12000 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
12001
12002         * text2.C (setCounter): Fix counters bug with bibliography layout.
12003
12004 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12005
12006         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
12007         own member functions
12008         (simpleTeXSpecialChars): ditto
12009
12010 2001-07-06  Juergen Vigna  <jug@sad.it>
12011
12012         * a lot of files: changed the access to LyXText::status and the
12013         call of undo-functions.
12014
12015         * undo.[Ch]: added a inset_id to the undo informations.
12016
12017         * undo_funcs.[Ch]: added and moved here all undo functions.
12018
12019         * lyxtext.h: give the status enum a weight, made status_ a private
12020         variable and made accessor functions for it, removed the whole bunch
12021         of undo-functions as they are now in their own file, make some
12022         functions publically available. Added function ownerParagraph with
12023         int parameter.
12024
12025         * paragraph.[Ch]: added "bool same_ids" to the constructor,
12026         made InInset() a const function, added getParFromID() function.
12027
12028         * buffer.[Ch]: added const version for inset_iterator functions,
12029         added getInsetFromID() function.
12030
12031         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
12032         changed undo functions for new version.
12033
12034 2001-07-05  Juergen Vigna  <jug@sad.it>
12035
12036         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
12037         unknow mechanism does not call the proper constructor but only this
12038         one also if I request the other!?
12039
12040 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12041
12042         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
12043
12044         * text2.C (LyXText): use initialization lists.
12045
12046         * lyxtext.h (Selection): initialize set_ and mark_
12047         (init): remove method
12048
12049 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
12050
12051         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
12052
12053 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12054
12055         * screen.[Ch]: change method names to begin with lowercase
12056
12057         * BufferView_pimpl.C (updateScrollbar): simplify further and
12058         hopefully make it a bit faster.
12059
12060 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12061
12062         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
12063         calling directly xforms functions.
12064
12065         * Painter.C (Painter):
12066         * lyx_cb.C (MenuWrite):
12067         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
12068         fl_display.
12069
12070         * lyx_gui.C: remove bogus guiruntime extern declaration.
12071
12072 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12073
12074         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
12075         in NEW_INSETS
12076         (redoDrawingOfParagraph): ditto
12077         (redoParagraphs): ditto
12078         (cutSelection): don't create a object for CutAndPaste use the
12079         static method directly
12080         (pasteSelection): ditto
12081
12082         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
12083         LyXview (+ rename)
12084
12085 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12086
12087         * modifications to some other files because of this.
12088
12089         * Makefile.am (lyx_SOURCES): add XFormsView
12090
12091         * XFormsView.[Ch]: new files
12092
12093         * LyXView.[Ch]: make LyXView a base class for the gui handling for
12094         the main window. Move the gui dependent stuff to XFormsView
12095
12096 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12097
12098         * tabular.C (GetCellInset): update cur_cell also in the row/col
12099         version of this function.
12100
12101         * lyxfunc.C: no need to include figure_form.h here.
12102
12103         * FontLoader.h:
12104         * lyxfunc.h:
12105         * lyxscreen.h:
12106         * text2.C:
12107         * lyxvc.C: no need to include forms.h here.
12108
12109 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12110
12111         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
12112
12113         * lyxfunc.C (Dispatch):
12114         * Spacing.C (set):
12115         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
12116         constructor argument.
12117
12118 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12119
12120         * paragraph.C (Paragraph): dont't clear, and just set layout.
12121         (makeSameLayout): use params's copy contructor.
12122
12123         * ParagraphParameters.[Ch] (makeSame): delete method
12124
12125 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
12126
12127         * Variables.[Ch]: fix indentation, rename set to isSet
12128
12129 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12130
12131         * lyxfunc.C (Dispatch): fix typo
12132
12133 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12134
12135         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
12136         upper_bound.
12137
12138         * bufferlist.C: include assert.h for emergencyWrite().
12139
12140 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
12141
12142         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
12143           give up at last (bug #425202) !
12144
12145 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
12146
12147         * lyx_gui_misc.C:
12148         * sp_form.h:
12149         * sp_form.C:
12150         * spellchecker.h:
12151         * spellchecker.C: strip spellchecker options and bring up
12152           preferences tab instead
12153
12154 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12155
12156         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
12157         the istringstream constructor
12158
12159 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12160
12161         * paragraph.C (getLayout): fix return value
12162
12163         * paragraph.h: do not declare getLayout as inline.
12164
12165         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
12166
12167 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12168
12169         * lyxcursor.h (operator<): new func
12170         (operator>): new func
12171         (operator>=): new func
12172         (operator<=): new func
12173
12174         * text.C (changeCase): use selection.start and selection.end
12175         (changeRegionCase): require from to be <= to. Require par to be a
12176         valid paragraph.
12177
12178         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
12179
12180 2001-06-27  Juergen Vigna  <jug@sad.it>
12181
12182         * text.C (cursorLeftOneWord): changed to return the cursor and added
12183         overlay with BufferView * parameter which calls this one.
12184         (getWord): added
12185         (selectWord): use new getWord function.
12186         (changeCase): renamed from changeWordCase as and extended to work
12187         also on selections.
12188
12189         * lyxtext.h: added enum word_location
12190
12191         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
12192         changeCase as this operates now also on selections.
12193
12194 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
12195
12196         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
12197
12198         * many files: send debug output to Debug::INFO instead of
12199         Debug::ANY.
12200
12201         * converter.C (View):
12202         (Convert):
12203         (Move): send debug output to Debug::FILES instead of console.
12204
12205 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
12206
12207         * lyxfunc.C (getStatus): use func_status
12208
12209         * func_status.h: new header, describing the results of
12210         LyXFunc::getStatus;
12211
12212         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
12213         LFUN_MATH_HALIGN.
12214
12215 2001-06-25  The LyX Project  <jug@sad.it>
12216
12217         * buffer.C (sgmlOpenTag):
12218         (sgmlCloseTag):
12219         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
12220
12221 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12222
12223         * text2.C: remove some dead code
12224
12225         * tabular.C (GetCellInset): store the last cell checked (gotten)
12226
12227         * tabular.h: add the helper for the speedup
12228
12229         * lyxtext.h: remove some dead code
12230
12231 2001-06-26  The LyX Project  <Asger>
12232
12233         * paragraph.C: Change export to LaTeX of alignment to
12234         \begin{center} and family for better roundtrip work with reLyX.
12235
12236         * Tune the math drawing a bit.
12237
12238 2001-06-25  The LyX Project  <Asger>
12239
12240         * LColor.C (LColor): New color for math background. New color
12241         for buttons.
12242
12243 2001-06-25  The LyX Project  <jug@sad.it>
12244
12245         * lyxfunc.C (MenuNew): remove extra check for .lyx file
12246
12247         * lyxfunc.C (Open):
12248         * bufferlist.C (newFile): do not restrict to files ending with
12249         .lyx
12250
12251         * BufferView_pimpl.C (MenuInsertLyXFile):
12252
12253 2001-06-24  The LyX Project  <jug@sad.it>
12254
12255         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
12256         of compare_no_case
12257
12258 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12259
12260         * lyxtext.h: rename most methods to begin with a small char.
12261         Lots of changes because of this.
12262
12263         * paragraph.C (Paragraph): do not call fitToSize
12264         (erase): call Pimpl::erase
12265         (insertChar): call Pimpl::insertChar
12266         (insertInset): call Pipl::insertInset
12267         (breakParagraph): do not call fitToSize
12268         (breakParagraphConservative): do not call fitToSize
12269         (fitToSize): remove method
12270
12271         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
12272
12273 2001-06-24  The LyX Project  <Asger>
12274
12275         * Fix Qt compilation^2
12276
12277 2001-06-24  The LyX Project  <jug@sad.it>
12278
12279         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
12280         depthHook(getDepth()-1).
12281
12282         * paragraph.h:
12283         * ParagraphParameters.h:
12284         * ParameterStruct.h: change type of depth to unsigned int ==
12285         depth_type. Many adaptations to other files before of that.
12286
12287 2001-06-24  The LyX Project  <Asger>
12288
12289         * Fix Qt compilation.
12290
12291 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12292
12293         * paragraph.h: renamed several methods to begin with small letter.
12294         several changes to many parts of the code because of this.
12295
12296 2001-06-23  The LyX Project  <jug@sad.it>
12297
12298         * text2.C (InsertStringAsLines): renamed from InsertStringA;
12299         rewritten to discard all double spaces when KeepEmpty is off
12300         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
12301         to only handle newlines but not fiddle with spaces and friends.
12302
12303         * lyxfunc.C (MenuNew): when doing 'new from template', use
12304         template_path as default directory
12305
12306 2001-06-23  The LyX Project  <Asger>
12307
12308         * Clean-up of header file includes all over
12309         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
12310
12311 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12312
12313         * paragraph.h: renamed from lyxparagraph.h
12314
12315 2001-06-23  Asger  <lyx@violet.home.sad.it>
12316
12317         * Buffer.h: Removed Buffer::resize
12318         * BufferList.h: Removed BufferList::resize
12319         * LyXView.h: Added LyXView::resize. This way, we will only reflow
12320         the document lazily when we change the width, or the font settings.
12321
12322 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
12323
12324         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
12325
12326 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
12327
12328         * buffer.h: remove out of date comment
12329
12330 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
12331
12332         * lyxscreen.h:
12333         * screen.C: fix "theoretical" GC leak
12334
12335 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12336
12337         * LaTeX.C (scanAuxFile):
12338         (deplog): remove trailing \r when reading stream (useful under
12339         win32)
12340
12341 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
12342
12343         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
12344         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
12345         and BufferView::theLockingInset(Inset*), so should use them and not
12346         access bv_->text->the_locking_inset directly.
12347
12348         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
12349
12350 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
12351
12352         * Makefile.am:
12353         * tex-defs.h: remove old unused file
12354
12355 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
12356
12357         * BufferView_pimpl.C: fix typo, remove minibuffer message
12358           when buffer has loaded
12359
12360 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12361
12362         * lyxfunc.C (Dispatch): use stringstream
12363         (MenuNew): use stringstream
12364         (Open): use stringstream
12365
12366         * importer.C (Import): use stringstream
12367
12368         * bufferview_funcs.C (CurrentState): use stringstream
12369
12370         * LaTeX.C (run): use stringstream
12371
12372         * BufferView_pimpl.C (savePosition): use stringstream
12373         (restorePosition): use stringstream
12374         (MenuInsertLyXFile): use stringstream
12375
12376 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
12377
12378         * BufferView.C:
12379         * Bullet.C:
12380         * ColorHandler.C:
12381         * FontInfo.C:
12382         * FontLoader.C:
12383         * LColor.C:
12384         * LaTeXFeatures.C:
12385         * Painter.C:
12386         * gettext.C:
12387         * lyx_gui_misc.C:
12388         * lyxserver.C:
12389         * vspace.C: removed // -*- C++ -*- as first line.
12390
12391         * lyxfind.h:
12392         * version.h: added // -*- C++ -*- as first line.
12393
12394 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12395
12396         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
12397
12398         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
12399         of string
12400
12401 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12402
12403         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
12404         of floats.
12405
12406 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12407
12408         * gettext.C: include LString.h even when --disable-nls is on.
12409
12410 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
12411
12412         * converter.h (Get): changed argument type from int to
12413         FormatList::size_type to avoid unnecessary conversion.
12414
12415         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
12416         before using it.
12417
12418 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12419
12420         * gettext.h: include LString.h even when --disable-nls is on.
12421
12422 2001-06-07  Juergen Vigna  <jug@sad.it>
12423
12424         * text.C (BreakAgain): subst spaces with tabs.
12425
12426         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
12427         (resizeInsetsLyXText): set force on resizeLyXText.
12428
12429 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12430
12431         * gettext.h (gettext_init):
12432         (locale_init): use a real definition instead of a macro
12433
12434 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
12435
12436         * Bufferview_pimpl.C:
12437         * LColor.h:
12438         * LColor.C: further lcolor tidies
12439
12440 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12441
12442         * BufferView_pimpl.C (updateScrollbar): simplify.
12443
12444         * BufferView2.C: don't include insets/insetinfo.h, change
12445         prototype for insertInset and call the Pimpl version. let
12446         updateInset call Pimpl version.
12447
12448         * BufferView.h: move inset_slept to BufferView::Pimpl, move
12449         gotoInset to BufferView::Pimpl
12450
12451 2001-06-01  Juergen Vigna  <jug@sad.it>
12452
12453         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
12454         inside a LockingInset (is the update needed at all?).
12455
12456 2001-05-31  Juergen Vigna  <jug@sad.it>
12457
12458         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
12459         here not the old one otherwise how should we compare it afterwards
12460         if it's the same!
12461
12462 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12463
12464         * lyxfont.C:
12465         * tabular.C:
12466         * tabular-old.C:
12467         * FontInfo.C: bring C functions into global namespace when
12468         necessary
12469
12470 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12471
12472         * LString.h: make sure config.h has been loaded before LString.h.
12473
12474         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
12475         (one for each char read by EatLine!).
12476
12477         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
12478         variables.
12479
12480 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12481
12482         * paragraph.C (BreakParagraph): set the inset_owner in the new par
12483         to the same as the par we break from
12484
12485 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12486
12487         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
12488
12489         * MenuBackend.C (expand): also create menu entries for wide
12490         versions of the floats.
12491
12492         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
12493
12494         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
12495
12496         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
12497         frontends/Makefile.am
12498
12499         * text2.C: adjust
12500         * text.C: adjust
12501
12502
12503         * tabular.C (getTokenValue): add std::
12504
12505         * tabular-old.C (getTokenValue): add std::
12506         (getTokenValue): ditto
12507         (getTokenValue): ditto
12508
12509         * screen.C (ToggleSelection): adjust
12510
12511         * lyxtext.h: put selection cursors inside a Selection struct.
12512
12513         * lyxfunc.C (moveCursorUpdate): adjust
12514
12515         * lyxfont.C (latexWriteStartChanges): add std::
12516
12517         * lyxfind.C: adjust
12518
12519         * font.h: delete with(char const *, LyXFont const &)
12520
12521         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
12522
12523         * FontInfo.C (getFontname): add std::
12524
12525         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
12526         (workAreaButtonPress): adjust
12527         (tripleClick): adjust
12528         (update): adjust
12529         (moveCursorUpdate): adjust
12530         (Dispatch): adjust
12531
12532         * BufferView2.C (gotoInset): adjust
12533
12534 2001-05-30  Juergen Vigna  <jug@sad.it>
12535
12536         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
12537         to check pspell I add this as default as I now have new pspell
12538         libraries and they seem to use this.
12539
12540 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12541
12542         * text2.C (CutSelection): make the cursor valid before the call to
12543         ClearSelection.
12544
12545 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12546
12547         * kbsequence.C (parse): de-uglify a bit the parsing code, which
12548         relied on 0 terminated strings and other horrors. Bug found due to
12549         the new assert in lyxstring!
12550
12551         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
12552         KP_ keys.
12553
12554 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12555
12556         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
12557         to latinkeys.bind.
12558
12559         * lyxfunc.C (processKeySym): change method of getting to the
12560         self-insert char.
12561
12562         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
12563         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
12564         * BufferView_pimpl.[Ch]: here as private methods.
12565
12566 2001-05-28  Juergen Vigna  <jug@sad.it>
12567
12568         * text.C (SetHeightOfRow): added the update() call again as it is
12569         needed to initialize inset dimensions!
12570
12571 2001-05-16  Juergen Vigna  <jug@sad.it>
12572
12573         * text2.C (SetCharFont): Add new function with BufferView * and
12574         bool toggleall parameters for setting insets internal fonts.
12575         (SetFont): Freeze the undo as we may change fonts in Insets and
12576         all this change should be inside only one Undo!
12577
12578         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
12579         setting font's in insets as for them we have the SetFont function!
12580
12581 2001-05-15  Juergen Vigna  <jug@sad.it>
12582
12583         * text2.C (ClearSelection): to be sure we REALLY don't have any
12584         selection anymore!
12585
12586         * tabular.C (TeXCellPreamble): fixed the left border problem for
12587         multicolumn cells.
12588
12589 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
12590
12591         * LaTeX.C (deplog): Make sure that the main .tex file is in the
12592         dependancy file
12593
12594 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12595
12596         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
12597         LFUN_BREAKPARAGRAPH.
12598
12599         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
12600         help test to "internal only", similar for LFUN_INSERT_URL
12601
12602         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
12603         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
12604         auto_region_delete and deadkeys.
12605
12606 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
12607
12608         * LColor.h:
12609         * LColor.C: remove some dead entries, tidy a little
12610
12611 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12612
12613         * lyxfunc.C (processKeySym): comment the Escape handling, remove
12614         commented code.
12615         (Dispatch): implement LFUN_ESCAPE
12616
12617         * commandtags.h: add LFUN_ESCAPE
12618
12619         * LyXAction.C (init): add entry for LFUN_ESCAPE
12620
12621         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
12622         Remove commented code.
12623         (insertNote): moved here
12624         (open_new_inset): moved here
12625
12626         * BufferView[2].[Ch]: move insertNote and open_new_inset to
12627         BufferView_pimpl
12628
12629 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12630
12631         * kbmap.C (findbinding): clean it up and make it work correctly.
12632
12633         * lyx_main.C (init): do not pass argc and argv as parameters
12634
12635 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
12636
12637         * buffer.C: fix path for OS/2 & Win32
12638
12639         * lyx_gui.C:
12640         * lyx_main:
12641         * lyx_main.C: Added os:: class.
12642
12643         * os2_defines.h: update
12644
12645 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12646
12647         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
12648         better by trying again with reduced state.
12649
12650 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12651
12652         * lyxrc.C (read): print error about invalid key sequence only when
12653         debugging (because not all latinX keysyms are known to some X
12654         servers)
12655
12656         * kbsequence.C (getiso): add a few std:: qualifiers
12657         (getiso): comment out extra return statement.
12658
12659 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12660
12661         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
12662         handling.
12663         (Dispatch): enhance the accent inset a bit. (not perfect)
12664
12665 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12666
12667         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
12668
12669 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12670
12671         * bufferlist.C (emergencyWrite): fix assert() call
12672
12673 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
12674
12675         * text.C (InsertChar): Added trivial patch to only send the "you
12676         can not do multiple spaces this way" message once during a
12677         session.
12678
12679 2001-05-08  Baruch Even  <baruch@lyx.org>
12680
12681         * Makefile.am: Changed order of libraries to get LyX to link properly
12682         with the gnome frontend.
12683
12684 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12685
12686         * LaTeXFeatures.h: add a std:: qualifier
12687
12688 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12689
12690         * paragraph.C (String): use stringstream
12691
12692 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12693
12694         * paragraph.C (writeFile): remove footflag arg
12695
12696         * buffer.C (makeLaTeXFile): use stringstream
12697         (latexParagraphs): remove footnot gurba
12698
12699         * LaTeXFeatures.C (getPackages): use stringstream
12700         (getMacros): likewise
12701         (getTClassPreamble): likewise
12702         (getFloatDefinitions): new method
12703
12704         * paragraph.C (writeFile): reindent
12705         (Erase): reindent
12706
12707         * WorkArea.h: revert the xpos + etc changes.
12708
12709         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
12710
12711         * lyxparagraph.[Ch]: add copy constructor, remove Clone
12712
12713         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
12714         (pasteSelection): likewise
12715         * text2.C (CreateUndo): likewise
12716
12717 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12718
12719         * minibuffer.C (peek_event): temporarily reduce the functionality
12720         of the minibuffer (to allow args on lfuns)
12721
12722         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
12723         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
12724
12725         * buffer.C (readInset): add compability reading of old float
12726         lists, add reading of new style float list.
12727         (readInset): avoid reevaluation of inscmd.getCmdName()
12728         (getLists): reindent
12729
12730         * MenuBackend.C (MenuItem): implement parsing of
12731         md_floatlistinsert and md_floatinsert.
12732         (expand::LastFiles): move initalizaton of iterators out of loop,
12733         avoid reevaluation.
12734         (expand::Documents): introduce typdedef vector<string> Strings,
12735         and use it.
12736         (expand::ExportFormats): introduce typedef vector<Format const *>
12737         Formats, and use it.
12738         (expand): implement FloatListInsert and FloatInsert.
12739
12740         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
12741         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
12742         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
12743
12744         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
12745         handling.
12746         (Dispatch::LFUN_FLOAT_LIST): implement
12747
12748 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
12749
12750         * LaTeX.C (run): Fix problem with --export code.
12751
12752 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
12753
12754         * BufferView.[Ch] (workarea): removed.
12755         (getClipboard) new method; wrapper for workarea()->getClipboard()
12756
12757         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
12758         bug.
12759
12760         * WorkArea.h (width, height, xpos, ypos): These methods all
12761         returned the dimensions of the work_area sub-area of WorkArea,
12762         resulting in a position error if the WorkArea were resized. Now
12763         return the dimensions of the entire WorkArea.
12764
12765         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
12766
12767 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12768
12769         * LaTeX.C (deplog): correct the syntax of regex reg1
12770
12771 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12772
12773         * undo.C: remove !NEW_INSETS cruft
12774
12775 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12776
12777         * text2.C: remove !NEW_INSETS cruft
12778
12779         * text.C: remove !NEW_INSETS cruft
12780
12781         * tabular.C: remove !NEW_INSETS cruft
12782
12783         * spellchecker.C: remove !NEW_INSETS cruft
12784
12785         * lyxtext.h: remove !NEW_INSETS cruft
12786
12787         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
12788
12789         * lyxfunc.C: remove !NEW_INSETS cruft
12790
12791         * lyxfind.C: remove !NEW_INSETS cruft
12792
12793         * lyx_cb.C: remove !NEW_INSETS cruft
12794
12795         * figureForm.C: remove  !NEW_INSETS cruft
12796
12797         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
12798
12799         * buffer.[Ch]: remove !NEW_INSETS cruft
12800
12801         * ToolbarDefaults.C: remove !NEW_INSETS cruft
12802
12803         * CutAndPaste.C: remove !NEW_INSETS cruft
12804
12805         * BufferView_pimpl.C: remove !NEW_INSETS cruft
12806
12807         * BufferView2.C: remove !NEW_INSETS cruft
12808
12809         * BufferView.h: remove !NEW_INSETS cruft
12810
12811 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12812
12813         * Lsstream.h: include LString.h before the sstream headers to
12814         fix problem with gcc 2.95.3 and lyxstring
12815
12816 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12817
12818         * lyx_main.C: add using directives when needed for C functions
12819         declared in std:: namespace.
12820
12821 2001-04-27  Juergen Vigna  <jug@sad.it>
12822
12823         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
12824         (SetHeightOfRow): comment out the update call should not be needed!
12825
12826 2001-04-13  Juergen Vigna  <jug@sad.it>
12827
12828         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
12829         (LyXTabular): tried to minimize operator= operations (and realized
12830         hopfully Lars wish).
12831
12832 2001-04-27  Juergen Vigna  <jug@sad.it>
12833
12834         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
12835
12836 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12837
12838         * lyxfunc.C (Dispatch): hack to make listof algorithm work
12839
12840         * buffer.C (readInset): hack to make listof algorithm work
12841
12842         * BufferView_pimpl.C: hack to make listof algorithm work
12843
12844 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12845
12846         * LyXAction.C: removed all !NEW_INSETS cruft
12847         (init): moved lfun_item in method
12848
12849         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
12850
12851 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
12852
12853         * BufferView2.C (theLockingInset): white space.
12854
12855 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12856
12857         * minibuffer.C: include <iostream>
12858
12859         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
12860
12861         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
12862
12863         * commandtags.h: add LFUN_TRANSPOSE_CHARS
12864
12865         * text.[Ch] (TransposeChars): new method
12866
12867 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12868
12869         * call message directly through LyXView instead of through LyXFunc
12870         * BufferView2.C: adjust
12871         * BufferView_pimpl.C: adjust
12872         * FontLoader.C: adjust
12873         * buffer.C: adjust
12874         * bufferview_funcs.C: adjust
12875         * converter.C: adjust
12876         * figureForm.C: adjust
12877         * importer.C: adjust
12878         * lyx_cb.C: adjust
12879         * lyx_gui_misc.C: adjust
12880         * lyxfunc.C: adjust
12881         * lyxvc.C: adjust
12882         * text2.C: adjust
12883         + more files in subdirs
12884
12885         * lyxparagraph.h (size): move up int file
12886         (GetLayout): ditto
12887
12888         * adjust all uses of Assert to lyx::Assert.
12889
12890         * BufferView2.C (ChangeCitationsIfUnique): adjust for
12891         lyxfunctional in namespace lyx
12892         * layout.C (hasLayout): ditto
12893         (GetLayout): ditto
12894         (GetLayout): ditto
12895         (delete_layout): ditto
12896         (NumberOfClass): ditto
12897         * converter.C (GetFormat): ditto
12898         (GetNumber): ditto
12899         (Add): ditto
12900         (Delete): ditto
12901         (SetViewer): ditto
12902         * bufferlist.C (getFileNames): ditto
12903         (emergencyWriteAll): ditto
12904         (exists): ditto
12905         (getBuffer): ditto
12906         * MenuBackend.C (hasSubmenu): ditto
12907         (hasMenu): ditto
12908         (getMenu): ditto
12909         * BufferView_pimpl.C (getInsetByCode): ditto
12910
12911 2001-04-18  Juergen Vigna  <jug@sad.it>
12912
12913         * vspace.C (asLatexString): fixed the 100% problem.
12914
12915 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12916
12917         * lyxfunc.C (Dispatch):
12918         * minibuffer.C:
12919         * minibuffer.h: add a few std:: qualifiers
12920
12921 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12922
12923         * minibuffer.[Ch]: reimplement so that commands is initiated and
12924         run from lyxfunc, simplified som handling, and made the completion
12925         and history code for complete. wip.
12926
12927         * lyxfunc.C (processKeySym): call message
12928         (miniDispatch): new temporary method
12929         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
12930         (LFUN_MESSAGE): implement
12931         (LFUN_MESSAGE_PUSH): implement
12932         (LFUN_MESSAGE_POP): implement
12933         (initMiniBuffer): the initial/defualt minibuffer message.
12934
12935         * lyxfont.[Ch]: inline some more getters
12936
12937         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
12938
12939         * lyx_gui_misc.[Ch] (WriteStatus): remove method
12940
12941         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
12942         (AutoSave): use LFUN_MESSAGE
12943         (Reconfigure): ditto
12944
12945         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
12946
12947         * figureForm.C: use LFUN_MESSAGE
12948
12949         * converter.C (runLaTeX): use LFUN_MESSAGE
12950
12951         * bufferview_funcs.C: use LFUN_MESSAGE
12952         (Melt): ditto
12953         (changeDepth): ditto
12954
12955         * bufferparams.h: use boost::
12956
12957         * bufferlist.h: inherit privately from noncopyable
12958
12959         * bufferlist.C (loadLyXFile): remove some commented code.
12960
12961         * buffer.C (runChktex): use LFUN_MESSAGE
12962
12963         * ShareContainer.h: inherit privately from noncopyable
12964
12965         * ParagraphParameters.[hC] (depth): inline it.
12966
12967         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
12968         methods.
12969         (message): new method
12970         (messagePush): ditto
12971         (messagePop): ditto
12972         (show): init minibuffer
12973         (showState): direct call
12974
12975         * LaTeX.[Ch]: inherit privately from noncopyable
12976         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
12977         instead of WriteStatus.
12978
12979         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
12980
12981         * BufferView_pimpl.C (buffer): don't init minibuffer
12982         (workAreaButtonPress): use LFUN_MESSAGE
12983         (workAreaButtonRelease): ditto
12984         (savePosition): ditto
12985         (restorePosition): ditto
12986         (MenuInsertLyXFile): ditto
12987         (workAreaExpose): don't init minibuffer
12988         (update): remove commented code, simplify
12989
12990         * BufferView2.C (openStuff): use LFUN_MESSAGE
12991         (toggleFloat): ditto
12992         (menuUndo): ditto
12993         (menuRedo): ditto
12994         (copyEnvironment): ditto
12995         (pasteEnvironment): ditto
12996         (copy): ditto
12997         (cut): ditto
12998         (paste): ditto
12999         (gotoInset): ditto
13000         (updateInset): remove some commented code
13001
13002         * lastfiles.h: inherit privately from noncopyable
13003         * layout.h: ditto
13004         * lyx_gui.h: ditto
13005         * lyx_main.h: ditto
13006         * lyxlex.h: ditto
13007         * lyxlex_pimpl.h: ditto
13008
13009         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
13010         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
13011         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
13012
13013         * LyXAction.h: inherit privately from noncopyable, add methods
13014         func_begin, func_end, returning iterators to the func map.
13015
13016         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
13017         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
13018         (func_begin): new method
13019         (func_end): new method
13020
13021         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
13022         and not)
13023         (copySelection): ditto
13024         (pasteSelection): ditto
13025
13026         * BufferView.C: whitespace change
13027         * BufferView.h: inherit privately from noncopyable
13028
13029 2001-04-16  Allan Rae  <rae@lyx.org>
13030
13031         * tabular-old.C (l_getline):
13032         * spellchecker.C (sc_check_word):
13033         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
13034         an unrecognised preprocessor directive.  So ensure they're wrapped.
13035
13036 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
13037
13038         * src/exporter.C (Export): Give an error message when path to file
13039         contains spaces.
13040
13041 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
13042
13043         * LaTeX.C (deplog): Always check that foundfile exists.
13044
13045 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13046
13047         * lyx_main.h:
13048         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
13049
13050 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13051
13052         * tabular.[Ch] (getLabelList): implement new method
13053
13054         * minibuffer.h: comment ouf setTiimer
13055
13056         * minibuffer.C (ExecutingCB): constify res
13057         (peek_event): constify s
13058         (Set): constify ntext
13059         (Init): constify nicename
13060
13061         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
13062
13063         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
13064         (savePosition): use two params to Minibuffer::Set
13065         (restorePosition): ditto
13066
13067 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13068
13069         * lyx_main.C: include language.h
13070
13071         * Makefile.am (lyx_main.o): add language.h
13072
13073 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13074
13075         * exporter.C:
13076         * paragraph.C:
13077         * screen.C:
13078         * tabular.C:
13079         * CutAndPaste.C: include gettext.h
13080
13081         * lyxfont.h: remove old hack with ON and OFF.
13082
13083         * lyxparagraph.h:
13084         * lyxfont.h: do not include language.h...
13085
13086         * BufferView2.C:
13087         * LaTeXFeatures.C:
13088         * Painter.C:
13089         * bufferview_funcs.C:
13090         * font.C:
13091         * lyxfont.C:
13092         * text.C:
13093         * text2.C:
13094         * trans_mgr.C:
13095         * paragraph.C: ... but do it here instead
13096
13097 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13098
13099         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
13100
13101         * tabular.C: small reformat
13102
13103         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
13104         NEW_INSETS version
13105         (GetChar): ditto
13106         (BreakParagraph): ditto
13107         (SetOnlyLayout): ditto
13108         (SetLayout): ditto
13109
13110         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
13111         with one arg less.
13112
13113         * lastfiles.C: removed most using decl, add std:: where needed
13114
13115         * buffer.C: ws changes
13116
13117         * MenuBackend.C (class compare_format): put into anon namespace
13118         (expand): constify label, names, action, action2
13119         (expand):
13120
13121         * text.C (SingleWidth): constify font
13122         (IsBoundary): constify rtl2
13123         (GetVisibleRow): constify ww
13124
13125         * LaTeX.C (deplog): constify logfile
13126
13127         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
13128         start_x, end_x
13129         (workAreaExpose): constify widthChange, heightChange
13130
13131         * lyxrow.C (par): moved
13132         (height): moved
13133         (next): moved
13134         * lyxrow.h: as inlines here
13135
13136         * lyxfont.h (shape): moved from lyxfont.C
13137         (emph): moved from lyxfont.C
13138
13139         * lyxfont.C (LyXFont): use initialization list for all
13140         constructors
13141         (shape): move to lyxfont.h as inline
13142         (emph): move to lyxfont.h as inline
13143
13144
13145 2001-04-04  Juergen Vigna  <jug@sad.it>
13146
13147         * vspace.C: had to include stdio.h for use of sscanf
13148
13149 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
13150
13151         * BufferView.h:
13152         * BufferView_pimpl.h: remove xforms cruft. Both classes are
13153         independent of xforms.
13154
13155 2001-04-02  Juergen Vigna  <jug@sad.it>
13156
13157         * spellchecker.C: fixed namespace placing!
13158
13159 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
13160
13161         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
13162         the LyXParagraph * is 0.
13163
13164 2001-03-29  Juergen Vigna  <jug@sad.it>
13165
13166         * vspace.C: added support for %, c%, p%, l%.
13167         (stringFromUnit): added helper function.
13168         (asLatexString): changed to give right results for the %-values.
13169
13170         * buffer.C: convert the widthp in a width%.
13171
13172 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
13173
13174         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
13175         figureForm.[Ch].
13176
13177         * figureForm.[Ch]: stripped the FD_from_figure manipulation
13178         code out of lux_cb.[Ch], ready for its (imminent?) removal.
13179
13180         * lyx_cb.[Ch]: see above.
13181
13182         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
13183         form1.[Ch].
13184
13185         * form1.[Ch]:
13186         * lyx.[Ch]: replaced by figure_form.[Ch].
13187
13188         * lyx_gui.C:
13189         * lyx_gui_misc.C:
13190         * lyxfunc.C: changed headers associated with above changes.
13191
13192 2001-03-27  Juergen Vigna  <jug@sad.it>
13193
13194         * BufferView_pimpl.C: set the temporary cursor right!
13195
13196 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
13197
13198         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
13199
13200 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
13201
13202         * LString.h: removed "using std::getline"!
13203
13204         * BufferView_pimpl.C (Dispatch): changes due to changes in
13205         InsetInclude::Params.
13206
13207         * buffer.C (tag_name): removed redundant break statements as they were
13208         producing lots of warnings with my compiler.
13209
13210 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13211
13212         * LString.h: add "using std::getline" when using the real <string>.
13213
13214 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
13215
13216         * buffer.C: removed bitset usage.
13217         PAR_TAG moved to an anonymous name space.
13218         (tag_name): new funtion, also in the anonymous namespace.
13219         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
13220         (makeDocBookFile): clean code. Completed transition from string arrays
13221         to string vectors.
13222         (SimpleDocBookOnePar): code clean.
13223
13224 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13225
13226         * tabular.C: add some comments.
13227
13228 2001-03-22  Juergen Vigna  <jug@sad.it>
13229
13230         * buffer.C (parseSingleLyXformat2Token): redone the minipage
13231         compatibility read a bit and fixed bug with minipage in different
13232         depth.
13233
13234 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
13235
13236         * buffer.C (pop_tag): removed.
13237         (push_tag): removed.
13238         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
13239         array replaced with vector. Added support for CDATA sections.
13240         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
13241         at any nest level.
13242         (makeDocBookFile): XML conformant declaration of CDATA section,
13243         fixed bug related to <emphasis> in the first paragraph char.
13244         (sgmlOpenTag): exclude empty tags.
13245         (sgmlCloseTag): ditto.
13246
13247         * buffer.h (pop_tag): removed.
13248         (push_tag): removed.
13249
13250 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
13251
13252         * language.h (Languages): added size_type and size().
13253
13254 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13255
13256         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
13257         response on compability reading of minipages. One probliem is that
13258         the old usage of minipages was «flertydig»
13259
13260         * several files here and in subdirs: don't use static at file
13261         scope use anon namespaces instead.
13262
13263 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
13264
13265         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
13266         LaTeX output. This is necessary for Literate document
13267         processing.
13268
13269 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13270
13271         * buffer.C: insert hfill when needed.
13272
13273         * tabular.C (l_getline): use string::erase, small whitespace change.
13274
13275         * BufferView_pimpl.C: try the anon namespace.
13276         * WorkArea.C: ditto
13277
13278 2001-03-16  Juergen Vigna  <jug@sad.it>
13279
13280         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
13281         otherwise it won't open options-dialogs.
13282
13283         * buffer.C: honor pextraWidth(p) on converting minipages.
13284
13285         * tabular.C (l_getline): changed the functions to strip trailing \r.
13286
13287 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
13288
13289         * BufferView_pimpl.C:
13290         * minibuffer..C: added "using SigC::slot" declaration.
13291
13292 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13293
13294         * lyxlex_pimpl.h: noncopyable is in namespace boost.
13295
13296         * text2.C: ditto
13297
13298         * text.C: ditto
13299
13300         * paragraph.C: ditto
13301
13302         * lyxtext.h: NO_PEXTRA
13303
13304         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
13305
13306         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
13307         * ParameterStruct.h: ditto
13308         * ParagraphParameters.h: ditto
13309         * lyxparagraph.h: ditto
13310
13311 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13312
13313         * buffer.C: add compability for minipage alignment.
13314         (latexParagraphs): remove unwanted pextra check.
13315
13316         * several files: remove CXX_WORKING_NAMESPACES
13317
13318         * buffer.C (pop_tag): tie is in namespace boost
13319
13320         * BufferView.h: noncopyable is in namespace boost
13321         * lyxlex.h: ditto
13322         * lyx_main.h: ditto
13323         * lyx_gui.h: ditto
13324         * layout.h: ditto
13325         * lastfiles.h: ditto
13326         * bufferlist.h: ditto
13327         * ShareContainer.h: ditto
13328         * LyXView.h: ditto
13329         * LyXAction.h: ditto
13330         * LaTeX.h: ditto
13331
13332 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
13333
13334         * Merging changes from BRANCH_MVC back into HEAD.
13335
13336         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
13337
13338 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
13339
13340         * BufferView_pimpl.C: change from intl.C
13341
13342         * combox.h:
13343         * combox.C:
13344         * Makefile.am: move combox.*
13345
13346         * form1.h:
13347         * form1.C:
13348         * lyx_gui.C:
13349         * intl.h:
13350         * intl.C: remove dialog (covered by prefs)
13351
13352 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
13353
13354         * lyxfunc.C (Dispatch): removed redundant break statement.
13355
13356 2001-03-14  Juergen Vigna  <jug@sad.it>
13357
13358         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
13359
13360 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13361
13362         * buffer.C: add hack to fix compability reading of minipages.
13363
13364 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
13365
13366         * buffer.C (getLists): Cleanup.
13367
13368 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13369
13370         * lyxfont.C (update): don't honor toggleall on font size.
13371
13372 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
13373
13374         * bmtable.c:
13375         * bmtable.h:
13376         * Makefile.am: moved to frontends/xforms/
13377
13378         * lyx_gui_misc.C:
13379         * lyxfunc.C:
13380         * BufferView_pimpl.C: changes for moved mathpanel
13381
13382 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
13383
13384         * gettext.h: fix gettext_init() in --disable-nls
13385
13386 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13387
13388         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
13389
13390 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
13391
13392         * lyx.C:
13393         * lyx.h: strip external form
13394
13395 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
13396
13397         * BufferView_pimpl.C: add comment, destroySplash()
13398
13399 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
13400
13401         * BufferView_pimpl.C:
13402         * LyXAction.C:
13403         * buffer.C:
13404         * commandtags.h:
13405         * lyxfunc.C: use re-worked insetinclude
13406
13407 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13408
13409         * buffer.C: add using std::stringstream.
13410
13411         * lyx_cb.C: readd using std::ios.
13412
13413         * buffer.C: add using std::map.
13414
13415         * BufferView_pimpl.C: add using std::vector.
13416
13417         * ShareContainer.h: add std:: to swap.
13418
13419         * buffer.h: add some typedefs
13420         * buffer.C (getLists): use them
13421         (getLists): renamed from getTocList.
13422         add a counter for the different float types and use it in the
13423         generated string.
13424         (getLists): use the same counter for the NEW_INSETS and the "non"
13425         NEW_INSETS
13426
13427         * lyx_cb.h: remove unused items, includes, using etc.
13428
13429         * ShareContainer.h: remove some commented code, add more comments
13430         and "documentation".
13431
13432 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13433
13434         * buffer.C (getTocList): make the list also when NEW_INSETS is
13435         defined.
13436
13437         * buffer.h: remove TocType
13438
13439         * buffer.C (getTocList): change to return a map<string,
13440         vector<TocItem> >, implement for dynamic number of list.
13441
13442         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
13443         * text2.C (PasteSelection): adjust
13444         * CutAndPaste.C (pasteSelection): adjust
13445
13446         * FloatList.C (FloatList): update from the new_insets branch.
13447         * Floating.[Ch]: ditto
13448         * LaTeXFeatures.C: ditto
13449         * buffer.C: ditto
13450         * lyxlex_pimpl.C: ditto
13451
13452         * paragraph.C (Last): remove when NEW_INSETS is defined.
13453
13454         * other file: changes because of the above.
13455
13456 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13457
13458         * lyxparagraph.h: rename next to next_, previous to previous_,
13459         make them private for NEW_INSETS. Rename Next() to next(),
13460         Previous() to previous().
13461
13462         * other files: changes because of the above.
13463
13464 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
13465
13466         * BufferView.h:
13467         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
13468         problem.
13469
13470 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13471
13472         * main.C (main): pass lyx_localedir to gettext_init().
13473
13474         * gettext.h: remove locale_init and gettext_init macros
13475
13476         * gettext.C (locale_init): new function
13477         (gettext_init): new function
13478
13479         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
13480         setlocale().
13481
13482 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
13483
13484         * Moved credits to frontends:
13485         * credits.[Ch]: removed
13486         * credits_form.[Ch]: removed
13487         * lyx_gui_misc.C: remove credits stuff
13488         * Makefile.am:
13489
13490 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13491
13492         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
13493
13494         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
13495         unneeded destructor.
13496
13497         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
13498         a standalone pointer again.
13499
13500         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
13501
13502 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
13503
13504         * Makefile.am:
13505         * filedlg.h:
13506         * filedlg.C:
13507         * LyXAction.C:
13508         * ToolbarDefaults.C:
13509         * bufferlist.C:
13510         * commandtags.h:
13511         * form1.C:
13512         * form1.h:
13513         * lyx_cb.C:
13514         * lyx_cb.h:
13515         * lyxfunc.h:
13516         * lyxfunc.C:
13517         * BufferView_pimpl.C: use new file dialog in GUII
13518
13519         * lyx_cb.h:
13520         * lyx_cb.C: remove LayoutsCB to Toolbar
13521
13522 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13523
13524         * ShareContainer.h (get): add std:: qualifier
13525
13526 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13527
13528         * ShareContainer.h: define a proper ShareContainer::value_type
13529         type (and use typename to please compaq cxx)
13530
13531 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13532
13533         * lyxparagraph.h: move serveral local vars to
13534         ParameterStruct/ParagraphParameters., use ShareContainer in
13535         FontTable., make vars in FontTable private and add getter and
13536         setter.
13537
13538         * paragraph.C: changes because of the above.
13539
13540         * lyxfont.h: remove copy constructor and copy assignment. (the
13541         default ones is ok), move number inside FontBits. move inlines to
13542         lyxfont.C
13543
13544         * lyxfont.C: add number to initializaton of statics, move several
13545         inlines here. constify several local vars. some whitespace
13546         cleanup. Dont hide outerscope variables.
13547
13548         * Spacing.h: add two new constructors to match the set methods.
13549
13550         * ShareContainer.h: new file, will perhaps be moved to support
13551
13552         * ParameterStruct.h: new file
13553
13554         * ParagraphParameters.h: new file
13555
13556         * ParagraphParameters.C: new file
13557
13558         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
13559         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
13560
13561         * BufferView_pimpl.C: ParagraphParameter changes.
13562         * buffer.C: Likewise.
13563         * bufferview_funcs.C: Likewise.
13564         * text.C: Likewise.
13565         * text2.C: Likewise.
13566
13567 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13568
13569         * lyxfind.C (LyXReplace): do not redefine default argument in
13570         implementation.
13571         (IsStringInText): ditto
13572         (SearchForward): ditto
13573         (SearchBackward): ditto
13574
13575 2001-03-06  Juergen Vigna  <jug@sad.it>
13576
13577         * lyxfind.C (IsStringInText): put parentes around expressions.
13578
13579 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
13580
13581         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
13582
13583 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
13584
13585         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
13586
13587         * stl_string_fwd.h: add comment
13588
13589         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
13590
13591         * tabular.h:
13592         * tabular.C: remove unused DocBook methods
13593
13594         * intl.C:
13595         * language.C:
13596         * paragraph.C:
13597         * buffer.C:
13598         killed DO_USE_DEFAULT_LANGUAGE
13599
13600 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13601
13602         * lyx_gui.C: do not include language.h.
13603
13604         * bufferview_funcs.C (ToggleAndShow): do not provide optional
13605         arguments in function implementation.
13606
13607 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13608
13609         * BufferView_pimpl.C: add <ctime>
13610
13611 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13612
13613         * BufferView_pimpl.C: add using std::find_if
13614
13615 2001-02-27  José Matos  <jamatos@fep.up.pt>
13616
13617         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
13618         by OnlyPath.
13619
13620 2001-02-11  José Matos  <jamatos@fep.up.pt>
13621
13622         * buffer.C (makeDocBookFile): command styles now have a parameter as
13623         "title" by default.
13624
13625 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
13626
13627         * layout_forms.[Ch]: removed
13628         * lyx_cb.[Ch]: out character
13629         * lyx_gui.C: out character
13630         * lyx_gui_misc.C: out character
13631         * bufferview_funcs.C: : out character,
13632         added toggleall as parameter in ToggleAndShow
13633
13634 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
13635
13636         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
13637
13638         * text2.C (SetCurrentFont): Disable number property at boundary.
13639
13640 2001-02-26  Juergen Vigna  <jug@sad.it>
13641
13642         * lyxfunc.C (getStatus): added a string argument override function so
13643         that this is correctly called from LyXFunc::Dispatch if it contains a
13644         do_not_use_argument which is used!
13645         (Dispatch): added check for "custom" export and call appropriate func.
13646
13647 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
13648
13649         * lyxrc.C: Add language_command_local, language_use_babel and
13650         language_global_options.
13651
13652         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
13653
13654         * buffer.C (makeLaTeXFile): Use language_use_babel and
13655         language_global_options.
13656
13657 2001-02-23  Juergen Vigna  <jug@sad.it>
13658
13659         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
13660         which works with LyXText and putted it inside BufferView. Here now we
13661         only call for that part the BufferView::Dispatch() function.
13662
13663         * BufferView.C (Dispatch): added.
13664
13665         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
13666         functions which needs to use a LyXText over from LyXFunc.
13667         (MenuInsertLyXFile): added
13668         (getInsetByCode): added
13669         (moveCursorUpdate): added
13670         (static TEXT): added
13671
13672 2001-02-22  Juergen Vigna  <jug@sad.it>
13673
13674         * BufferView_pimpl.C (update): call a status update to see if LyXText
13675         needs it.
13676
13677 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
13678
13679         * vc-backend.C (revert): implement for CVS
13680         (getLog): implement for CVS
13681
13682 2001-02-20  Juergen Vigna  <jug@sad.it>
13683
13684         * text2.C (ClearSelection): added BufferView param for inset_owner call
13685
13686         * lyxfunc.C (TEXT): added this function and use it instead of
13687         directly owner->view()-text of getLyXText().
13688
13689 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
13690
13691         * src/layout_forms.C: out preamble
13692         * src/layout_forms.h: out preamble
13693         * src/lyx_cb.C: out preamble
13694         * src/lyx_cb.h: out preamble
13695         * src/lyx_gui.C: out preamble
13696         * src/lyx_gui_misc.C: out preamble
13697         * src/lyxfunc.C: connect with guii preamble
13698
13699 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
13700
13701         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
13702
13703 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
13704
13705         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
13706         whether to run bibtex.
13707
13708 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
13709
13710         * Makefile.am (lyx_SOURCES): Remove BackStack.h
13711
13712 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
13713
13714         * Makefile.am (lyx_SOURCES): removed bibforms.h
13715
13716         * vspace.h: doxygen
13717
13718         * text.C (GetVisibleRow): make several local vars const
13719
13720         * tabular.C: small cleanup.
13721
13722         * lyxserver.C (callback): use compare instead of strncmp
13723
13724         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
13725         inlines to after class or to paragraph.C
13726
13727         * lyxfont.h: remove friend operator!=
13728
13729         * converter.h: move friend bool operator< to non friend and after
13730         class def.
13731
13732         * combox.h: small cleanup
13733
13734         * buffer.h: doxygen, remove unused constructor, move inclas inlies
13735         to inlines after class def.
13736
13737         * buffer.C (pop_tag): use string operations instead of strcmp
13738
13739         * bmtable.c: doxygen, small cleanup
13740
13741         * LaTeX.h: remove friend operator==
13742
13743 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
13744
13745         * screen.C:
13746         * lyxrc.[Ch]:
13747         * lyxfunc.C:
13748         * lyxfont.[Ch]:
13749         * lyx_cb.C:
13750         * intl.[Ch]:
13751         * commandtags.h:
13752         * buffer.C:
13753         * WorkArea.[Ch]:
13754         * LyXAction.C:
13755         * BufferView_pimpl.C:
13756         * BufferView.[Ch]: remove cruft
13757
13758 2001-02-14  Juergen Vigna  <jug@sad.it>
13759
13760         * lyxfunc.C: removed #if 0 unused code
13761
13762         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
13763
13764         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
13765
13766         * text2.C (SetSelection): added a BufferView * parameter
13767
13768 2001-02-13  Juergen Vigna  <jug@sad.it>
13769
13770         * lyxfunc.C (Dispatch): fixed protected blank problem.
13771         * BufferView2.C (protectedBlank): added LyxText * parameter.
13772
13773         * tabular.C (AppendRow): forgot to set row_info of newly added row.
13774         (AppendColumn): same as above for column_info.
13775
13776         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
13777         (moveCursorUpdate): use a LyXText param for support of InsetText.
13778
13779         * BufferView_pimpl.C (doubleClick): added support for InsetText.
13780         (tripleClick): ditto
13781
13782         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
13783
13784         * BufferView_pimpl.C (update): added LyXText param to honor insets.
13785
13786         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
13787
13788         * text2.C (SetSelection): set correct update status if inset_owner
13789         (ToggleFree): ditto
13790
13791 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
13792
13793         * tabular.C: remove some commented code.
13794
13795 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
13796
13797         * BufferView_pimpl.C: call hideSplash()
13798
13799         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
13800
13801         * include_form.h:
13802         * bibforms.h: remove
13803
13804         * lyxfunc.C:
13805         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
13806           add LFUN_CHILD_CREATE
13807
13808         * counters.h: fix tiny typo
13809
13810         * lyx_cb.C:
13811         * lyx.h:
13812         * lyx_gui.C:
13813         * lyx.C: move splash to frontends/xforms/
13814
13815         * lyx_gui_misc.C: move Include and Bibform to frontends
13816
13817         * lyxvc.h: clarify comment
13818
13819         * vspace.C: tiny housekeeping
13820
13821 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
13822
13823         * text.C (PrepareToPrint): RTL Fix.
13824
13825         * paragraph.C (GetUChar): New method.
13826         (String):  Use GetUChar.
13827
13828         * buffer.C (asciiParagraph): Use GetUChar.
13829
13830 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
13831
13832         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
13833
13834 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
13835
13836         * buffer.h:
13837         * buffer.C: rename to getLogName(), handle
13838           build log / latex log nicely
13839
13840 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13841
13842         * MenuBackend.C:
13843         * MenuBackend.h: remove support for reference menuitem type.
13844
13845 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
13846
13847         * BufferView_pimpl.C: housekeeping
13848         * BufferView_pimpl.h:
13849         * LyXView.h:
13850         * Makefile.am:
13851         * Timeout.C:
13852         * Timeout.h:
13853         * minibuffer.h: move Timeout GUI-I
13854
13855 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
13856
13857         * lyxrc.C (read): Update converters data-structures.
13858
13859 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
13860
13861         * LaTeX.h (operator!=): add operator != for Aux_Info
13862
13863 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
13864
13865         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
13866
13867         * LaTeXLog.C: deleted, useful code moved to Buffer
13868
13869         * buffer.h:
13870         * buffer.C: new function getLatexLogName()
13871
13872         * lyx_gui_misc.C:
13873         * lyx_gui.C:
13874         * lyxvc.C:
13875         * lyxvc.h:
13876         * lyxfunc.C: use frontends for LaTeX and VC logs
13877
13878 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13879
13880         * LaTeX.h: yet another std:: that Allan forgot.
13881
13882         * Variables.C (set): renamed from isset(), because this clashes
13883         with some HP-UX macros (grr).
13884
13885 2001-02-06  Allan Rae  <rae@lyx.org>
13886
13887         * LaTeX.h: Another bug fix.  Missing std:: this time.
13888
13889 2001-02-04  Allan Rae  <rae@lyx.org>
13890
13891         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
13892         floats problem. I've left it commented out because it's not quite
13893         correct.  It should also test that the current object is a table or
13894         figure inset.  But I haven't gotten around to figuring out how to do
13895         that.  I *think* it'll be something like: "table" == inset.type()
13896
13897         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
13898         bool.
13899
13900 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
13901
13902         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
13903         all the citation/databases/styles in the auxilary file.
13904         (run): Rerun latex if there was a babel language error.
13905
13906 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
13907
13908         * text.C (Backspace): Preserve the font when changing newline char
13909         with a space.
13910         (BreakParagraph): If the cursor is before a space, delete the space.
13911
13912         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
13913
13914 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
13915
13916         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
13917         new argument (code).
13918         (ChangeCitationsIfUnique): New method.
13919
13920         * paragraph.C (GetPositionOfInset): Handle bibkey.
13921
13922 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13923
13924         * BufferView_pimpl.h: change type of Position::par_pos to
13925         LyXParagraph::size_type.
13926
13927 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
13928
13929         * BufferView_pimpl.C (savePosition, restorePosition): Write
13930         messages to minibuffer.
13931
13932 2001-01-28  José Matos  <jamatos@fep.up.pt>
13933
13934         * buffer.C (makeDocBookFile): adds support for document language.
13935         A silly restriction on the name of LatexCommand types where removed.
13936         Added support for CDATA sections, allows to chars unescaped, used
13937         among others in code, to avoid escape < and >.
13938
13939 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
13940
13941         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
13942         saved positions instrad of a stack. Furthermore, a position is
13943         stored using paragraph id/paragraph position.
13944
13945         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
13946         Remove LFUN_REF_BACK.
13947
13948 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
13949
13950         * converter.C (dvipdfm_options): New method.
13951
13952 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
13953
13954         * vspace.C (isValidLength): Fix for empty input string.
13955
13956 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13957
13958         * LyXAction.C (init): change description of LFUN_FIGURE to
13959         "Insert Graphics"
13960
13961 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13962
13963         * LaTeX.C: add using directive
13964
13965 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
13966
13967         * MenuBackend.C (expand): Fix the sorting of the formats.
13968
13969 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
13970
13971         * lyx_main.C: tiny error message fix
13972
13973 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13974
13975         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
13976         calling fl_initialize(). This fixes the problem with ',' as
13977         decimal separator in text files.
13978
13979 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
13980
13981         * trans.C (process): Fix the keymap bug.
13982
13983 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
13984
13985         * LaTeX.C (scanAuxFiles): New method. Provides support for
13986         multiple bibliographies (when using the bibtopic/bibunits pacakges).
13987         (scanLogFile) Scan for "run BibTeX" messages.
13988
13989         * buffer.C (makeLaTeXFile): Do not load the ae package when using
13990         OT1 font encoding. Also, load the aecompl package if the ae
13991         package is loaded.
13992
13993         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
13994
13995 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13996
13997         * texrow.C (increasePos): turn two error messages into debug
13998         messages.
13999
14000 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
14001
14002         * LaTeX.C (scanAux): Handle the \@input macro.
14003         (runBibTeX): Use scanAux().
14004
14005         * language.C (latex_options_): New field.
14006
14007         * LaTeXFeatures.C (getMacros): Add language macros.
14008
14009         * buffer.C (makeLaTeXFile): Small fix.
14010
14011 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14012
14013         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
14014
14015         * text2.C: add a using directive.
14016
14017 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
14018
14019         * BufferView2.C:
14020         * lyx_gui_misc.h:
14021         * lyxfr1.C:
14022         * lyxfunc.C: kill LyXBell.
14023
14024 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
14025
14026         * text.C (IsBoundary): Remove the error message
14027
14028         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
14029
14030         * lyxrc.C (setDefaults): Correct initialization value for
14031         font_norm_type.
14032
14033 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
14034
14035         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
14036         gotoError().
14037
14038         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
14039         and GotoNextNote().
14040
14041         * src/LyXAction.C: Added reference-next.
14042
14043         * text.C (InsertChar): Use contains instead of strchr.
14044
14045         * lyx_cb.C (MenuInsertLabel): Enable default value code.
14046
14047 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
14048
14049         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
14050         alignment commands (when needed).
14051
14052         * text.C (InsertChar): Add ':' to number separator chars.