]> git.lyx.org Git - lyx.git/blob - src/ChangeLog
undostack back again
[lyx.git] / src / ChangeLog
1 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
2
3         * BufferView2.C:
4         * BufferView_pimpl.C:
5         * FontLoader.C:
6         * LyXView.h:
7         * LyXView.C:
8         * Makefile.am:
9         * WorkArea.C:
10         * XFormsView.h:
11         * XFormsView.C:
12         * buffer.C:
13         * bufferlist.C:
14         * bufferview_funcs.C:
15         * converter.C: 
16         * importer.C: 
17         * lyx_cb.C:
18         * lyx_gui.C:
19         * lyx_main.C:
20         * lyx_find.C:
21         * lyxfunc.C:
22         * lyxvc.C:
23         * minibuffer.C:
24         * text.C:
25         * text2.C:
26         * trans.C:
27         * vc-backend.C: move LyX/XFormsView into frontends/
28  
29 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
30
31         * Makefile.am:
32         * PainterBase.C:
33         * PainterBase.h:
34         * Painter.C:
35         * Painter.h:
36         * WorkArea.C:
37         * WorkArea.h:
38         * screen.C:
39         * tabular.C:
40         * text.C:
41         * text2.C: move Painter to frontends/
42  
43 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
44
45         * buffer.C: comment out some some code that depend upon lyx_format
46         < 220
47
48         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
49         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
50
51         * buffer.h (NO_COMPABILITY): turn off compability
52
53         * ColorHandler.C: include scoped_array.hpp
54
55         * font.C: Use more specific smart_ptr header.
56         * Painter.C: ditto
57         * gettext.C: ditto
58         * ShareContainer.h: ditto
59         * lyx_main.h: ditto
60         * kbmap.h: ditto
61         * FontInfo.h: ditto
62         * BufferView_pimpl.h: ditto
63         * ColorHandler.h: ditto
64
65         * kbmap.C (defkey): change call to shared_ptr::reset
66
67 2002-05-21  Juergen Vigna  <jug@sad.it>
68
69         * buffer.C (insertErtContents): fix to insert ert asis if it is
70         non empty. Skip it completely if it contains only whitespaces.
71
72 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
73
74         * BufferView_pimpl.C:
75         * BufferView2.C: clear selection on paste (bug 393)
76
77 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
78
79         * DepTable.C: include ctime
80
81 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
82
83         * buffer.C (latexParagraphs): Add new argument (moving_arg).
84
85 2002-05-14  Juergen Vigna  <jug@sad.it>
86
87         * text.C (breakParagraph): fixed function to honor the keepempty
88         layout in the right maner and also to permit the right breaking
89         algorithm on empty or non empyt keepempty paragraphs.
90
91         * paragraph.C (breakParagraph): we have to check also if the par
92         is really empty (!size()) for isempty otherwise we do the wrong
93         paragraph break.
94
95 2002-05-10  Juergen Vigna  <jug@sad.it>
96
97         * buffer.[Ch] : The following are only changes to the ert
98         compatibility read reading old LaTeX layout and font stuff and
99         convert it to ERTInsets.
100
101         * buffer.h: added isErtInset().
102
103         * buffer.C (struct ErtComp): add a fromlayout bool to check
104         if we're inside a LaTeX layout.
105         (isErtInset): new helper function.
106         (insertErtContents): look for other ert insets before this one
107         and insert the contents there, so that we don't have subsequent
108         ERT insets with nothing between them. This way we create only one
109         inset with multiple paragraphs. Also check if we don't insert only
110         spaces ' ' as they are ignored anyway afterwards in the .tex file
111         so if we have only spaces we will ignore this latex part in the
112         new file.
113         (parseSingleLyXformat2Token \\layout): better compatibility when
114         reading layout-latex stuff.
115         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
116         language tag.
117         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
118         stuff after reading the inset only get the information back from
119         the stack.
120
121 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
122
123         * buffer.C (makeLaTeXFile): Put language options after loading babel.
124
125         * LaTeXFeatures.C (getBabelOptions): New method.
126
127 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
128
129         * BufferView_pimpl.C (Dispatch): work around missing argument for
130         'layout'
131
132 2002-05-08  Juergen Vigna  <jug@sad.it>
133
134         * text.C (leftMargin): handle paragraph leftindent.
135
136         * paragraph.C (writeFile): write the new \\leftindent tag.
137         (validate): handle leftindent code.
138         (TeXEnvironment): handle paragraphleftindent code again.
139
140         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
141
142         * buffer.C (parseSingleLyXformat2Token): added compatibility code
143         for paragrap_extra indent code and new token \\leftindent.
144         (latexParagraphs): handle the leftindent as environment.
145
146         * ParameterStruct.h: added leftindent support.
147
148         * ParagraphParameters.C (leftIndent): added support functions for
149         the paragraph left indent.
150
151         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
152         more appropriate.
153
154 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
155
156         * paragraph.C (isRightToLeftPar): Return false for a paragraph
157         inside insetERT.
158
159         * text.C (computeBidiTables): No bidi in insetERT.
160
161         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
162         in RTL documents.
163
164 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
165
166         * version.C.in: pre 5
167
168 2002-05-02  José Matos  <jamatos@fep.up.pt>
169         * buffer.C (makeDocBookFile): white space changes, add newline to
170         command styles.
171         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
172
173         * tabular.C (docBook): fix typo.
174
175 2002-05-03  Juergen Vigna  <jug@sad.it>
176
177         * screen.C (drawFromTo): recalculate the rowpointer if we had a
178         change in LyXText as we can not be sure it was not freed.
179         (drawOneRow): remove unused code.
180
181         * text.C (drawInset): redo the calculation of the need_break_row as
182         it could have a row which was already freed.
183         (draw): look at the return value of drawInset and return false if
184         it also returned false.
185         (paintRowText): look at the return value of draw and return false if
186         it also returned false.
187
188         * lyxtext.h: added bool return type to drawInset() and draw() so that
189         if we have a change in the row so that the rowbreak has to be redone
190         we abort drawing as it will be called again.
191
192 2002-05-02  Juergen Vigna  <jug@sad.it>
193
194         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
195         a change in the maintext also if we're inside an inset.
196         (Dispatch): set the cursor again after a break line and after the
197         screen has been updated as it could be we're in a different row.
198
199         * text2.C (fixCursorAfterDelete): check to make sure we don't request
200         to set the cursor behind the pargraph with > size().
201         (setCursor): check also for the same paragraph when checking where
202         to put the cursor if we have a NFR inset.
203
204         * buffer.C (parseSingleLyXformat2Token): move the compatibility
205         parts of layout read further up as it still was in the wrong
206         position.
207
208 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
209
210         * screen.C (drawFromTo): change sine fullRebreak always return
211         true.
212
213         * buffer.C (parseSingleLyXformat2Token): reindent some
214
215         * BufferView_pimpl.C (update): change since fullRebreak always
216         return true.
217         (Dispatch): git rid of the last hardcoded "Standard"s.
218
219 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
220
221         * text2.[Ch] (fullRebreak): make it return void now that we always
222         returned true.
223
224 2002-04-30  Juergen Vigna  <jug@sad.it>
225
226         * buffer.C (parseSingleLyXformat2Token): reset the font before the
227         ert compatibility check for "latex" layout.
228
229 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
230
231         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
232         minipages: use col% instead of p%, and also use the current font.
233         (makeLaTeXFile): Fix use babel condition.
234         (parseSingleLyXformat2Token): Correct font when reading old floats.
235
236 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
237
238         * BufferView_pimpl.C (Dispatch): Check that float type exists when
239         inserting list of floats.
240
241 2002-04-25  Herbert Voss  <voss@lyx.org>
242
243         * MenuBackend.C (expand): don't add the graphics extensions to the
244         export menu
245
246 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
247
248         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
249         non-existing layout, do not complain if it was the default layout
250         of the original class (bug #342)
251
252 2002-04-24  Juergen Vigna  <jug@sad.it>
253
254         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
255         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
256
257 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
258
259         * buffer.C (getBibkeyList): If using \bibliography, return the
260         option field with the reference itself. Enables us to provide natbib
261         support when using \bibliography.
262
263 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
264
265         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
266
267         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
268         natbib is provided by the LaTeX class.
269
270 2002-04-23  Juergen Vigna  <jug@sad.it>
271
272         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
273         Wakeup functions.
274
275         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
276
277 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
278
279         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
280
281         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
282         ensuremath around textordmasculine, textordfeminine and
283         textdegree.
284
285 2002-04-19  Juergen Vigna  <jug@sad.it>
286
287         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
288         reinitializing the buffer otherwise row-dimensions may be wrong.
289         (update): reset also the selection cursors if they do exits otherwise
290         their x/y positions may be wrong.
291
292         * text2.C (cursorDown): don't enter the inset if we came from a row
293         above and are one row over the inset.
294
295         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
296         really leaving an inset.
297
298 2002-04-18  Juergen Vigna  <jug@sad.it>
299
300         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
301         of the selected paragraph does not have the selected layout also if
302         the last one had!
303
304         * text2.C (setLayout): fixed bug which did not change last selected
305         paragraph.
306
307         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
308         changed the read and substituted \\end_float with \\end_inset!
309
310         * BufferView_pimpl.C (cursorPrevious):
311         (cursorNext): fixed to make it work with rows heigher than the work
312         area without moving the cursor only the draw of the row.
313         (workAreaMotionNotify): fix jumping over high rows.
314
315 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
316
317         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
318         Ressler.
319
320 2002-04-16  Juergen Vigna  <jug@sad.it>
321
322         * text2.C (setCursor): set also the irow().
323         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
324         (cursorUp):
325         (cursorDown): support for locking an inset if the x_fix value goes
326         inside it. That way I can transverse insets too with cursor up/down.
327
328         * lyxrow.h: added irow helper function same as other (i) functions.
329
330         * BufferView_pimpl.C (cursorPrevious):
331         (cursorNext): fixed for insets!
332
333 2002-04-15  Juergen Vigna  <jug@sad.it>
334
335         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
336         position otherwise it is wrong in some cases.
337
338         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
339         inside the inset before the call.
340
341 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
342
343         * buffer.[Ch] (getBibkeyList): make it const.
344
345 2002-04-12  Juergen Vigna  <jug@sad.it>
346
347         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
348
349         * text2.C (getCursorX): new helper function
350         (setCursor): compute also ix_
351         (setCursorFromCoordinates): set also ix.
352
353         * lyxcursor.h: added ix_ and helper functions.
354
355         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
356
357         * buffer.C (insertStringAsLines): dont break paragraph if the this
358         paragraph is inside an inset which does not permit it!
359
360         * text.C (breakParagraph): honor keepempty flag and break the paragraph
361         also with no chars on this paragraph.
362         (paintRowText): only paint stuff if it's inside the workarea!
363
364         * paragraph.C (breakParagraph): honor keepempty flag and break the
365         paragraph always below not above.
366
367         * BufferView2.C (unlockInset): update the paragraph layout on inset
368         unlock as we changed paragraph in such a case.
369
370         * lyxfind.C (LyXFind): clear the former selection if not found!
371
372         * text2.C (insertInset): freeze Undo after setUndo so that it is not
373         again called in insertChar().
374
375         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
376         an inset which uses the whole row!
377         (rightMargin): ditto.
378         (insertChar): force a rebreak if we inserted an inset!
379
380 2002-03-28  Herbert Voss  <voss@lyx.org>
381
382         * lyxlength.[Ch]: add inBP() to get the right PS-point
383         units (BigPoint). With inPixels we have rounding errors
384
385 2002-04-11  Juergen Vigna  <jug@sad.it>
386
387         * text2.C (setCursorFromCoordinates): set iy to the right value.
388         (setCursor): add check if row->previous exists!
389
390         * buffer.C (parseSingleLyXformat2Token): reset font after read of
391         an old float_type as this was the case in the old code!
392
393         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
394
395         * BufferView2.C (showLockedInsetCursor): use iy
396         (fitLockedInsetCursor): ditto
397
398         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
399         locked insets as there we have the right value now.
400
401         * lyxcursor.C: added iy_ variable and iy functions to set to the
402         baseline of cursor-y of the locked inset.
403
404         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
405         (setCursor): fixed for insets which need a full row.
406
407         * text.C (rowLastPrintable): don't ignore the last space when before
408         an inset which needs a full row.
409         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
410         as last character of a row when before a inset which needs a full row.
411
412 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
413
414         * version.C.in: update date
415
416         * text2.C (fullRebreak): try to always return true and see what
417         happens...
418
419 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
420
421         * MenuBackend.C (expand): use Floating::listName
422
423         * FloatList.C (FloatList): add listName argument to the built-in
424         floats
425
426         * Floating.[Ch]: add listName member, which is the 'List of XXX'
427         text associated with the float.
428
429 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
430
431         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
432
433 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
434
435         * ShareContainer.h: add a couple of missing typenames.
436
437 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
438
439         * lyxrc.C (getDescription): use _() correctly rather than N_().
440
441 2002-03-28  Herbert Voss  <voss@lyx.org>
442
443         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
444         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
445
446 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
447
448         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
449         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
450
451 2002-03-29  Juergen Vigna  <jug@sad.it>
452
453         * lyxfunc.C (dispatch): add a missing fitCursor call.
454
455         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
456         it was scrolled by a cursor move, so return the bool status.
457
458         * BufferView.C (fitCursor): return the bool flag also to the outside
459         world as this is needed.
460
461         * screen.C (toggleToggle): don't subtract the offset if it's positive.
462
463         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
464         call the edit() as it is not needed (and wrong) IMO.
465         (workAreaButtonPress): set the screen_first variable before evt.
466         unlock the inset as this may change screen_first and then we have
467         a wrong y position for the click!
468
469 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
470
471         * MenuBackend.C (expand): another translation that I missed
472
473 2002-03-28  Juergen Vigna  <jug@sad.it>
474
475         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
476
477         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
478
479 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
480
481         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
482
483         * MenuBackend.C (expand): fix export/view/update when there is no
484         document open.
485
486 2002-03-27  Herbert Voss  <voss@lyx.org>
487
488         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
489         and text%
490
491 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
492
493         * bufferview_funcs.C (currentState): only show paragraph number
494         for is DEVEL_VERSION is set.
495
496         * lyxfunc.C (dispatch): put warning in INFO channel
497
498         * MenuBackend.C (expand): translate the name of floats
499
500         * FloatList.C (FloatList): mark the float names for translation
501
502         * converter.C (convert): use LibScriptSearch
503
504 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
505
506         * MenuBackend.C (defaults): fix default menu (we might as well get
507         rid of it...)
508
509 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
510
511         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
512         directory.
513
514 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
515
516         * lyxvc.C: reorder includes.
517
518 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
519
520         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
521           properly
522
523 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
524
525         * CutAndPaste.C: change layouts earlier on paste
526           to avoid crashing when calling getFont()
527
528 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
529
530         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
531         irritating #error.
532
533 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
534
535         * WorkArea.C: remove 'Pending' debug message.
536
537         * most files: ws cleanup
538
539         * buffer.[Ch]: ws changes
540
541         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
542
543 2002-03-21  Juergen Vigna  <jug@sad.it>
544
545         * tabular.C (SetMultiColumn): collapse also the contents of the
546         cells and set the last border right. Added a Buffer const * param.
547
548 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
549
550         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
551         linking or not.
552
553 2002-03-19  Juergen Vigna  <jug@sad.it>
554
555         * text2.C (clearSelection): reset also xsel_cache.
556
557         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
558         where it needs to be called (John tells us to do so too :)
559         (selectionLost): reset sel_cache.
560
561         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
562
563 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
564
565         * text2.C (setCursorIntern): put debuging code in INSETS channel
566
567 2002-03-19  André Pönitz <poenitz@gmx.net>
568
569         * lyxfunc.C: tiny whitespace change
570
571 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
572
573         * ToolbarDefaults.C (init):
574         * LyXAction.C (init):
575         * commandtags.h:
576         * BufferView_pimpl.C (Dispatch):
577         * lyxfunc.C (dispatch): remove LFUN_DEPTH
578
579 2002-03-19  Allan Rae  <rae@lyx.org>
580
581         * exporter.C (Export): removeAutoInsets before doing anything else.
582         While I've just introduced a dependency on BufferView this really is
583         the best place to clean the buffer otherwise you need to cleanup in
584         a dozen places before calling export or cleanup in a dozen functions
585         that export calls.
586
587         * converter.C (runLaTeX):
588         (scanLog): Better handling of removeAutoInsets and screen updates.
589
590         * lyxfunc.C (dispatch): small whitespace changes
591
592 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
593
594         * WorkArea.C (C_WorkAreaEvent): return a value.
595         (event_cb): return 1 if we handled the event, 0 otherwise.
596
597         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
598
599 2002-03-18  Juergen Vigna  <jug@sad.it>
600
601         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
602         (GetAdditionalWidth): ditto.
603         (RightLine): ditto.
604         (LeftLine): ditto.
605
606         * BufferView2.C (copy): use getLyXText() so that we do it inside an
607         inset if we're there actually (probably not used right now but this
608         is the direction to go for unifying code).
609         (paste): disable code to clear the selection.
610
611         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
612         inside an InsetText and move the check further up as it is in the
613         wrong place.
614
615         * text2.C (pasteSelection): set a selection over the pasted text.
616
617 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
618
619         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
620         and libgraphics to build on Cygwin.
621
622 2002-03-15  Juergen Vigna  <jug@sad.it>
623
624         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
625         inserting an Inset into the paragraph. I know this is not the best
626         fix but we already use current_view in CutAndPaste so we will remove
627         all of it's using at the same time.
628
629         * buffer.C (sgmlError): deactivated function till it is rewritten in
630         the right mode, now it can create problems.
631
632         * paragraph.C (isLineSeparator): check if getInset returns != 0,
633         before accessing it.
634
635 2002-03-14  Juergen Vigna  <jug@sad.it>
636
637         * undo_funcs.C (textHandleUndo): do the right thing when updating
638         the inset after the undo/redo.
639
640         * text2.C (setCursor): just some testcode for #44 not ready yet.
641
642         * undo_funcs.C (textHandleUndo): set the next() and previous()
643         pointers of the paragraph to 0 before deleting otherwise we have
644         problems with the Paragraph::[destructor].
645
646         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
647         on a paragraph insertion.
648
649 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
650
651         * buffer.C (asciiParagraph): use += operator for char append to
652         string.
653
654         * paragraph.C (getFontSettings): compare >= not just >
655         (highestFontInRange): ditto
656         (setFont): ditto
657
658 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
659
660         * paragraph.C: change several algorithm to be more appripriate for
661         the problem domain. This is lookip in FontList and in the InsetList.
662
663 2002-03-13  André Pönitz <poenitz@gmx.net>
664
665         * commandtags.h:
666         * LyXAction.C: remove unused LFUN_MATH_MACROARG
667
668 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
669
670         * commandtags.h:
671         * LyXAction.C:
672         * lyxfunc.C:
673         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
674
675 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
676
677         * Painter.C (display): anon helper function, adjust code for this
678         change.
679         (pixmap): remove function.
680
681         * Painter.h: remove private display variable.
682
683         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
684
685 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
686
687         * WorkArea.[Ch]: remove figinset_canvas cruft.
688
689 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
690
691         * lyxtextclass.C (operator): add one item cache optimization.
692
693         * bufferlist.h: doxy changes
694
695         * bufferlist.C: ws changes
696
697         * DepTable.[Ch] (ext_exist): place const in the right spot.
698
699         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
700         call resizeInsets.
701         (workAreaExpose): call resizeInsets when the with BufferView changes.
702         (Dispatch): adjust for protectedBlank removal
703         (specialChar): call updateInset if the insert went ok.
704
705         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
706         specialChar instead.
707
708         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
709
710         * BufferView.h: doxy change
711
712         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
713
714         * lyxtextclass.C (operator[]): remove non-const version
715         (defaultLayout): remove non-const version
716
717 2002-03-12  Juergen Vigna  <jug@sad.it>
718
719         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
720         did resize the LyXText too.
721
722         * buffer.C (readLyXformat2): set layout information on newly allocated
723         paragraphs.
724
725         * tabular.C (OldFormatRead): set layout information on the paragraph.
726
727 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
728
729         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
730
731 2002-03-11  Juergen Vigna  <jug@sad.it>
732
733         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
734         plainly wrong.
735         (resizeCurrentBuffer): force also the insets to resize themselfes.
736         (moveCursorUpdate): fixed up for InsetText.
737
738 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
739
740         * commandtags.h:
741         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
742         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
743         value of Dialogs::tooltipsEnabled().
744         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
745
746 2002-03-08  Juergen Vigna  <jug@sad.it>
747
748         * BufferView_pimpl.C (updateInset): update inset inside inset also
749         if it isn't inside theLockingInset().
750
751 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
752
753         * buffer.C (asciiParagraph): redo some of the word and line length
754         handling.
755         (getLists): look for Caption instead of caption.
756
757 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
758
759         * buffer.C (Buffer): initialize niceFile to true
760         (makeLaTeXFile):
761         (makeLinuxDocFile):
762         (makeDocBookFile): make sure niceFile is true on exit
763
764 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
765
766         * buffer.C (makeLaTeXFile): escape ~ in \input@path
767
768 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
769
770         * LyXSendto.C: remove.
771         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
772         * lyx_gui.C: remove now-redundant comment.
773         * ColorHandler.h: remove forward declaration of class WorkArea.
774         * lyxfunc.C: remove #include "WorkArea.h".
775
776 2002-03-07  Juergen Vigna  <jug@sad.it>
777
778         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
779         got moved away with the DEPM and also set the inset_owner always
780         right which before could have been omitted.
781
782 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
783
784         * buffer.C (parseSingleLyXformat2Token): use default layout is the
785         wanted layout is not found.
786
787 2002-03-07  Juergen Vigna  <jug@sad.it>
788
789         * CutAndPaste.C (cutSelection): another layout settings forgotten.
790
791 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
792
793         * paragraph.C (breakParagraph): use default layout not layout of
794         prev paragraph.
795         (Paragraph): clear ParagraphParameters.
796
797 2002-03-06  Juergen Vigna  <jug@sad.it>
798
799         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
800         otherwise it would not be a valid lenght. Fixed a special case in
801         the minipage compatibility read where we end the document with a
802         minipage.
803
804         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
805         was set as it could be 0 for InsetTexts first entry.
806
807 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
808
809         * paragraph.C (writeFile): if layout is empty write out
810         defaultLayoutName().
811
812         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
813         file without named layout we set layout to defaultLayoutName().
814
815 2002-03-06  Juergen Vigna  <jug@sad.it>
816
817         * CutAndPaste.C (copySelection): set layout for new paragraph.
818
819         * text.C (prepareToPrint): leave ERT inset left aligned
820         (leftMargin): don't indent paragraphs inside ERT insets
821
822 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
823
824         * paragraph.C (breakParagraph): dont call clear do the work manually
825
826         * paragraph.[Ch] (clear): remove function
827
828 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
829
830         * paragraph.C (Paragraph): dont call clear, the work has already
831         been done.
832
833         * lyxtextclass.C (operator): assert if n is empty
834
835         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
836         work manually instead.
837
838 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
839
840         * BufferView_pimpl.C: protect selectionLost against text == 0
841
842 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
843
844         * text.C (breakParagraph): fix a setting layout to '0' problem.
845
846 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
847
848         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
849         final location of file, for the included files, and graphics.
850
851 2002-03-05  Juergen Vigna  <jug@sad.it>
852
853         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
854
855 2002-03-04  Juergen Vigna  <jug@sad.it>
856
857         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
858
859         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
860         last column of multicolumn cells.
861         (SetWidthOfMulticolCell): recalculate NMC and real columns.
862
863 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
864
865         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
866         file if it doesn't go to a temporary file.
867
868         * buffer.C (sgmlOpenTag):
869         (sgmlCloseTag):  remove extra newline insertion.
870
871 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
872
873         * text.C (getRowNearY): comment out debug msg
874
875 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
876
877         * text2.C: first -> first_y
878
879         * text.C (getRowNearY): add some attemts at a possible
880         optimization, not working.
881
882         * tabular.[Ch]: add BufferParams to several function so that newly
883         created paragraph can be initialized to he default layotu for the
884         buffers textclass.
885
886         * tabular-old.C (ReadOld): add buf->params to call of Init
887
888         * screen.C: rename text->first to text->first_y
889
890         * paragraph.C (breakParagraph): always set layout in the broken
891         paragraph
892
893         * lyxtextclass.C (Read): remove lowercase
894         (hasLayout): ditto
895         (operator): ditto
896         (delete_layout): ditto
897
898         * lyxtext.h: rename first -> first_y
899
900         * lyxlayout.C (Read): remove lowercase
901         (name): ditto
902         (setName): ditto
903         (obsoleted_by): ditto
904
905         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
906
907         * buffer.C (insertErtContents): add params are to InsetERT
908         (parseSingleLyXformat2Token): add code to check if a paragraphs
909         layout really exist.
910         (parseSingleLyXformat2Token): add params to several inset
911         constructors
912         (asciiParagraph): remove lowercase, do the layout comparisons with
913         no_case
914
915         * BufferView_pimpl.C (cursorNext): first -> first_y
916         (resizeCurrentBuffer): first -> first_y
917         (updateScrollbar): first -> first_y
918         (scrollCB): first -> first_y
919         (workAreaMotionNotify): first -> first_y
920         (workAreaButtonPress): first -> first_y
921         (checkInsetHit): first -> first_y
922         (cursorPrevious): first -> first_y
923         (cursorNext): first -> first_y
924         (Dispatch): add buffer_->params to severl inset contructors
925
926 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
927
928         * lyxlayout.C (Read): remove some debug info that I forgot.
929
930         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
931         clean up the code slightly.
932         (makeLinuxDocFile): ditto
933         (makeDocBookFile): ditto
934
935         * text2.C: layout as string
936
937         * text.C: layout as string
938
939         * paragraph_pimpl.C: layout as string
940
941         * paragraph.[Ch]: layout as string
942
943         * lyxtextclasslist.[Ch]: layout as string
944
945         * lyxtextclass.[Ch]: layout as string
946
947         * lyxtext.h: layout as string
948
949         * lyxlayout.[Ch]: layout as string
950
951         * lyx_cb.C: layout as string
952
953         * bufferview_funcs.C: layout as string
954
955         * bufferparams.C: layout as string
956
957         * buffer.C: layout as string
958
959         * LyXView.[Ch]: layout as string
960
961         * LaTeXFeatures.[Ch]: layout as string
962
963         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
964
965         * BufferView_pimpl.C: change current_layout to string, remove
966         lyx::layout_type.
967         (Dispatch):
968         (smartQuote):
969         (insertInset):
970         (workAreaButtonRelease): layout as string
971
972         * BufferView2.C (unlockInset): adjust
973
974         * vspace.C (asLatexCommand): use an explict temp variable.
975
976 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
977
978         * Makefile.am: use FRONTEND_*
979
980 2002-03-01  Juergen Vigna  <jug@sad.it>
981
982         * tabular.C (SetWidthOfMulticolCell): changed to something better
983         I hope but still work in progress.
984         (recalculateMulticolumnsOfColumn): renamed function from
985         recalculateMulticolCells as it is more appropriate now.
986         (SetWidthOfCell): calculate multicols better.
987
988 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
989
990         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
991
992         * lyxfunc.C (processKeySym): print sequence also if it is
993         `deleted' (complete)
994
995         * kbsequence.C (print): print sequence even if it is deleted
996         (complete would be a better word, actually).
997
998         * lyxfunc.C (dispatch): print complete options after a prefix key
999
1000         * vspace.C (asLatexCommand): rewrite in a slightly different form.
1001
1002 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
1003
1004         * text2.C (setCharFont): eliminate setCharFont code duplication.
1005
1006 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1007
1008         * BufferView_pimpl.C (Dispatch): remove bogus handling of
1009         LFUN_TABULAR_FEATURE (bug #177)
1010
1011 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
1012
1013         * Makefile.am: remove figure.h
1014
1015 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
1016
1017         * Bufferview_pimpl.C:
1018         * CutAndPasteC:
1019         * LaTeX.C:
1020         * LyXSendto.C:
1021         * buffer.C:
1022         * bufferlist.C:
1023         * converter.C:
1024         * language.C:
1025         * lyxfunc.C:
1026         * lyxvc.C:
1027         * paragraph.C:
1028         * text.C:
1029         * text2.C: remove #include "lyx_gui_misc.h".
1030
1031         * LaTeX.C: added #include <cstdio>
1032
1033 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1034
1035         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
1036         that the paragraph following this one can have.
1037
1038         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
1039
1040         * vspace.C (asLatexCommand): fix bogus gcc warning
1041
1042         * Makefile.am (lyx_SOURCES): remove vms_defines.h
1043
1044 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
1045
1046         * text2.C (setLayout): get rid of redundant code
1047
1048 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
1049
1050         * text2.C (incDepth): make sure depth cannot be increased beyond
1051         reasonable values.
1052
1053 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
1054
1055         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
1056         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
1057
1058         * PainterBase.h (image):
1059         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
1060         a LyXImage const *.
1061
1062 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
1063
1064         * BufferView.C:
1065         * BufferView.h:
1066         * BufferView_pimpl.C:
1067         * BufferView_pimpl.h:
1068         * LaTeXFeatures.C:
1069         * LyXAction.C:
1070         * LyXView.C:
1071         * Makefile.am:
1072         * UpdateList.h:
1073         * UpdateList.C:
1074         * buffer.C:
1075         * figure.h:
1076         * figureForm.C:
1077         * figureForm.h:
1078         * figure_form.C:
1079         * figure_form.h:
1080         * lyx_cb.C:
1081         * lyx_gui.C:
1082         * lyx_gui_misc.C:
1083         * lyxfunc.C:
1084         * sp_base.h:
1085         * sp_ispell.h:
1086         * sp_pspell.h:
1087         * sp_spell.C: remove fig inset, and the crap house of
1088           cards that follows it
1089
1090 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
1091
1092         * Makefile.am:
1093         * lyxserver.C:
1094         * os2_defines.h:
1095         * os2_errortable.h:
1096         * nt_defines.h: move .h into support/
1097
1098         * vms_defines.h: remove
1099
1100         * WorkArea.C: add space in debug output
1101
1102         * text2.C:
1103         * paragraph.C:
1104         * buffer.C: add WITH_WARNINGS
1105
1106         * vc-backend.h:
1107         * vc-backend.C:
1108         * bufferlist.C: s/retrive/retrieve/, add docs
1109
1110         * vspace.h:
1111         * vspace.C:
1112         * kbmap.h:
1113         * lyxlength.h:
1114         * lyxgluelength.h:
1115         * length_common.h:
1116         * chset.h:
1117         * chset.C: add docs
1118
1119         * lyxgui.C: add ID to X error handler
1120
1121         * lyxtestclass.c: fix typo
1122
1123 2002-02-26  Juergen Vigna  <jug@sad.it>
1124
1125         * tabular_funcs.C (write_attribute): changed so that some default
1126         attributes are not written at all.
1127         (getTokenValue): set default values before trying to read the
1128         value so we have the return value always set as default if we don't
1129         find the token we search for.
1130
1131         * tabular.C (Write): write bools as bools not as strings!
1132
1133 2002-02-22  Juergen Vigna  <jug@sad.it>
1134
1135         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
1136         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
1137
1138         * text.C (leftMargin): don't add an indent for paragraphs inside
1139         tabular cells (fix #208).
1140
1141 2002-02-21  José Matos  <jamatos@fep.up.pt>
1142
1143         * tabular.C (docBook): fixed support for long tables.
1144
1145 2002-02-20  Juergen Vigna  <jug@sad.it>
1146
1147         * text2.C (getFont): get the drawing font of the Inset if this
1148         paragraph is inside an inset (only important for InsetERT for now).
1149
1150         * buffer.C (insertErtContents): use new lanugage params in ERT
1151         constructor.
1152
1153         * CutAndPaste.C: commenting out seemingly uneeded code.
1154
1155 2002-02-19  Allan Rae  <rae@lyx.org>
1156
1157         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
1158         Iterators might be simple to use but they also get invalidated.
1159         (removeAutoInsets): renamed saved cursor tracking variables and added
1160         some comments to clarify what everything does.
1161
1162 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
1163
1164         * Chktex.C:
1165         * LaTeX.C:
1166         * LyXSendto.C:
1167         * converter.C:
1168         * lyx_cb.C:
1169         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
1170         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
1171
1172         * lyxfunc.C:
1173         * vc-backend.h: remove #include "support/syscall.h"
1174
1175         * LaTeX.C:
1176         * LyXSendto.C:
1177         * converter.C: rearrange #includes in Lars' approved fashion.
1178
1179         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
1180         forward declare class Timeout in the header file.
1181
1182         * XFormsView.C: changes due to the above.
1183
1184         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
1185         similar to LyXView.
1186
1187         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
1188         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
1189
1190 2002-02-18  José Matos  <jamatos@fep.up.pt>
1191
1192         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
1193         insets contents.
1194
1195 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
1196
1197         * a lot of small ws changes
1198         * add a lot of using std::XXX
1199         * use std construcs some places where approp.
1200         * use some exisint stuff from lyxfunctional where approp.
1201         * Make file changes to use partial linking (lets test this now...)
1202
1203 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
1204
1205         * Chktex.C:
1206         * buffer.C:
1207         remove #include "support/syscontr.h" as it's redundant. Always has been.
1208
1209         * Chktex.C:
1210         * LaTeX.C:
1211         * LyXSendto.C:
1212         * converter.C:
1213         * lyx_cb.C:
1214         * vc-backend.C:
1215         change Systemcalls::System to Systemcalls::Wait and
1216         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
1217         No change of functionality, just reflects the stripped down Systemcalls
1218         class.
1219
1220 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
1221
1222         * debug.[Ch]: add a GRAPHICS type to the enum.
1223
1224 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1225
1226         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
1227
1228         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
1229         there is an inset.
1230
1231 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1232
1233         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
1234         match the changes below.
1235
1236         * text2.C (toggleInset): if there is not editable inset at cursor
1237         position, try to see if cursor is _inside_ a collapsable inset
1238         and close it.
1239
1240 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1241
1242         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
1243         document menu has a nice checkbox
1244
1245 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1246
1247         * lyxlength.C (asLatexString): change PW to output as percent of
1248         \textwidth.
1249
1250         * lengthcommon.C: change '%' to 't%'
1251
1252         * lyxfunc.C (dispatch): a few comments from Martin
1253
1254 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
1255
1256         * WorkArea.h:
1257         * WorkArea.C:
1258         * BufferView_pimpl.h:
1259         * BufferView_pimpl.C: clear our selection when X tells us we've lost
1260           the X selection.
1261
1262 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1263
1264         * vspace.C (inPixels): fix compiler warning
1265
1266 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1267
1268         * lyxfunc.C (getStatus): fix status message for disabled commands.
1269
1270 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
1271
1272         * BufferView_pimpl.C: fix crash on close buffer
1273         during selection (#227)
1274
1275 2002-01-27  Herbert Voss  <voss@lyx.org>
1276
1277         * buffer.C: link old Figure to new graphic inset
1278
1279 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
1280
1281         * FontLoader.C (getFontinfo): Change the latex font names in order
1282         to match the names of type1inst.
1283
1284 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1285
1286         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
1287
1288         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
1289         (extchanged): ditto
1290         (ext_exist): ditto
1291         (remove_files_with_extension): ditto
1292         (remove_file): ditto
1293         (write): ditto
1294
1295         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
1296         document is smaller than the work area height. Do not initialize
1297         static variables to 0.
1298
1299 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1300
1301         * lyx_gui.C (init): give the toolbar tooltips a normal font.
1302
1303         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
1304         LFUN_LAYOUT_PARAGRAPHS.
1305
1306         * tabular.C (GetCellFromInset): new method. Finds an inset in a
1307         tabular. It is possible to provide a possible cell, which will
1308         typically be the actcell from the corresponding insettabular
1309
1310         * lyxfunc.C (getStatus): small cleanup; disable
1311         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
1312         true
1313
1314 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1315
1316         * tabular.C (Validate): remove broken optimization (fixes bug #201)
1317
1318         * paragraph.C (startTeXParParams):
1319         (endTeXParParams): new methods. The LaTeX code to
1320         start/end paragraph formatting
1321         (simpleTeXOnePar): call startTeXParParams also when paragraph is
1322         empty (fixes bug #200)
1323
1324         * vspace.C (inPixels): adapt to the change below
1325         (inPixels): [later] more cleanups (remove unused variables)
1326
1327         * lyxlength.C (inPixels): change to use a width and a height as
1328         parameter.
1329
1330 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1331
1332         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
1333         Replaced with \paperwidth
1334
1335         * DepTable.C (insert): add std:: qualifier
1336
1337 2002-01-18  Allan Rae  <rae@lyx.org>
1338
1339         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
1340         updated also?
1341
1342         * text.C (drawInset): Turned out I didn't know enough about how
1343         rebreaking worked.  This fixes most of the redraw problems.  I see
1344         an occasional cursor trail when a line is broken now and the cursor
1345         placement can seem out by a few pixels also after a rebreak.
1346
1347 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1348
1349         * buffer.C (parseSingleLyXformat2Token): update because minipage
1350         width is now a LyXLength
1351
1352         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
1353
1354         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
1355         math insets
1356
1357 2002-01-17  Juergen Vigna  <jug@sad.it>
1358
1359         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
1360
1361         * BufferView2.C (lockInset): call edit() so that theLockingInset()
1362         is set correctly and the inset is updated correctly.
1363
1364 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1365
1366         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
1367         the beginning of the loop.
1368
1369 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
1370
1371         * lyxrc.C: improve help for use_scalable_fonts
1372
1373 2002-01-17  Allan Rae  <rae@lyx.org>
1374
1375         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
1376
1377 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1378
1379         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
1380         make sure to set their inset_owner to the right value (bug #171)
1381
1382 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
1383
1384         * DepTable.h
1385         * DepTable.C: Implement mtime checking to reduce time spent doing
1386         CRCs.
1387
1388 2002-01-16  Juergen Vigna  <jug@sad.it>
1389
1390         * tabular.C (GetAdditionalHeight): one of error fixed.
1391
1392         * lyxrc.C (output): small fix in writing use_pspell.
1393
1394 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
1395
1396         * sp_base.h: #include LString.h
1397
1398 2002-01-16  Allan Rae  <rae@lyx.org>
1399
1400         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
1401         Can someone check this please?
1402
1403         * text.C (drawInset): It was possible that p.row would be removed by
1404         breakAgainOneRow upsetting a few other settings.  There may be another
1405         small tweak possible by setting need_break_row = 0 when p.row has been
1406         removed but I don't know enough about the logic here.
1407
1408 2002-01-15  Allan Rae  <rae@lyx.org>
1409
1410         * text.C (insertChar): removed conditional truism.
1411
1412         * BufferView2.C (removeAutoInsets): More tweaks.
1413         cur_par_prev could be a stray pointer.  Check for trailing empty line
1414         in case last line was cur_par and only had an error inset on it.
1415
1416 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1417
1418         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
1419         absolute
1420
1421         * vc-backend.C (most methods):
1422         * exporter.C (Export):
1423         * converter.C (convert):
1424         (runLaTeX):
1425         * LyXSendto.C (SendtoApplyCB):
1426         * lyxfunc.C (dispatch):
1427         (menuNew):
1428         (open):
1429         (doImport):
1430         * lyx_cb.C (AutoSave):
1431         (InsertAsciiFile):
1432         * BufferView_pimpl.C (MenuInsertLyXFile):
1433         * buffer.C (runChktex): use Buffer::filePath().
1434
1435         * buffer.h: rename filename to filename_; rename filepath to
1436         filepath_ and make it private
1437         (filePath): new method
1438
1439         * buffer.C (writeFile): use fileName()
1440         (getLatexName):
1441
1442         * lyx_main.C (init): fix starting  of LyX when the binary is a
1443         link from so,ewhere else.
1444
1445         * minibuffer.C: include <cctype> for isprint
1446
1447 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
1448
1449         * buffer.C (parseSingleLyXformat2Token): changes associated with the
1450         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
1451         name clash with InsetCollapsable's width function.
1452
1453 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1454
1455         * lastfiles.C: include <iterator>
1456
1457 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
1458
1459         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
1460         std::count.
1461
1462         * buffer.C (makeLaTeXFile): ditto.
1463         Also make loop operation more transparent.
1464
1465 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
1466
1467         * ToolbarDefaults.C: remove trailing comma closing namespace.
1468
1469         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
1470
1471         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
1472         as in WorkArea.
1473
1474         * trans.C (Load): comment out unused variable, allowed.
1475
1476 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
1477
1478         * minibuffer.[Ch] (append_char): new method to recieve input from the
1479         drop-down completion browser. If a key was pressed, then recieve this
1480         char and append it to the existing string.
1481         (peek_event): modify the positioning data passed to the completion
1482         browser so that it can be placed above the minibuffer rather than below.
1483 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1484
1485         * LyXAction.C (init): alloe error-next for readonly documents.
1486
1487         * BufferView2.C (ChangeRefsIfUnique): use standard version of
1488         count.
1489
1490 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1491
1492         * bufferlist.C (readFile): create the buffer _after_ checking that
1493         the file exists.
1494
1495         * lyxfunc.C (verboseDispatch): fix handling of arguments
1496
1497         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
1498
1499         * lyxrc.C: use string::erase() instead of initializing to "".
1500
1501
1502 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
1503
1504         * BufferView_pimpl.h:
1505         * BufferView_pimpl.C:
1506         * WorkArea.h:
1507         * WorkArea.C:
1508         * text2.C: tell X when we have made a selection for copying
1509
1510 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1511
1512         * BufferView_pimpl.C (MenuInsertLyXFile):
1513         * lyxfunc.C (menuNew):
1514         (open):
1515         (doImport): add shortcuts to directory buttons
1516
1517         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
1518         open a float)
1519
1520         * lyxfunc.C (setStatusMessage):
1521         (getStatusMessage): new methods
1522         (getStatus):use setStatusMessage instead of setErrorMessage
1523         (dispatch): when function is disabled, set error message here
1524         [instead of in getStatus previously]
1525
1526         * BufferView_pimpl.C (workAreaButtonRelease): update
1527         toolbar/menubar here too.
1528
1529 2002-01-13  Allan Rae  <rae@lyx.org>
1530
1531         * BufferView2.C (removeAutoInsets): finished off earlier fix.
1532         Now seems indestructible.  Remaining task is to audit all other
1533         code affected by deleteEmptyParagraphMechanism.  One small quirk
1534         left is that an empty document with an error in the preamble can
1535         be made to report an error but no error box appears.  I don't know
1536         where it goes.
1537         (removeAutoInsets): Improved comments.
1538
1539 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
1540
1541         * Thesaurus.h:
1542         * Thesaurus.C: update for Aiksaurus 0.14
1543
1544 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1545
1546         * text2.C (firstParagraph): removed member function, all uses
1547         replaces with ownerParagraph
1548         (redoParagraphs): here
1549         (updateInset): here
1550         (toggleAppendix): here
1551         * BufferView2.C (insertErrors): here
1552         (setCursorFromRow): here
1553
1554 2002-01-13  Allan Rae  <rae@lyx.org>
1555
1556         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
1557         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
1558         There is still a way to segfault this although you may have to do this
1559         multiple times: Have an InsetERT with an unknown command in it.
1560         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
1561         <down-arrow>, <Enter> again, View->DVI, BANG!
1562
1563         * text2.C (setCursor):
1564         (deleteEmptyParagraphMechanism):
1565         * lyxtext.h (setCursor):
1566         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
1567         Making use of the return value may help fix other bugs.
1568
1569 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1570
1571         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
1572
1573         * LyXView.C (updateMenubar): call MenuBar::update here
1574         (updateToolbar): but not here
1575         (showState): do not update toolbar/menubar
1576
1577         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
1578         should need to care about that.
1579
1580         * lyxfunc.C (verboseDispatch): simplify a bit
1581         (getStatus): have a version which takes a pseudoaction, and
1582         another which requires a (kb_action,string).
1583
1584         * LyXAction.C (retrieveActionArg): make it work also when action
1585         is not a pseudo-action.
1586         (getActionName): simplify a bit
1587         (helpText):
1588
1589 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1590
1591         * lyxfunc.C (verboseDispatch): new families of methods with
1592         several ways to specify a command and a bool to indicate whether
1593         the command name and shortcut should be displayed in minibuffer
1594         (eventually, we could extend that to a finer bitmask like
1595         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
1596         (dispatch): the pristine dispatch command which just, well,
1597         dispatchs! Note it still sets its result to minibuffer; I'm not
1598         sure we want that.
1599
1600         * lyxfunc.h: remove setHintMessage
1601
1602         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
1603
1604 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1605
1606         * BufferView_pimpl.C (specialChar): delete new inset if we have
1607         not been able to insert it.
1608
1609         * kbmap.C: revert to using int instead of kb_action, since all we
1610         are dealing with is pseudo-actions.
1611
1612         * LyXAction.C (searchActionArg): change to return int instead of
1613         kb_action, since the result is a pseudoaction.
1614
1615 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
1616
1617         * buffer.C (insertErtContents): Fix (partially) the font bug.
1618
1619 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
1620
1621         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
1622         as the other one is broken on my machine!
1623
1624 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
1625
1626         * commandtags.h:
1627         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
1628
1629 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
1630
1631         * lyxrc.[Ch]: change names and descriptions of popup font variables to
1632         reflect their actual use. Provide compatibility code for older lyxrc
1633         files.
1634
1635         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
1636         FL_NORMAL_STYLE.
1637         change names of popup font variables in line with the changes to lyxrc.C
1638
1639 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1640
1641         * buffer.C (asciiParagraph): avoid outputing a word twice after
1642         an inset.
1643
1644         * lyxrc.C (getDescription): document that document_path and
1645         template_path can be empty.
1646
1647 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1648
1649         * LaTeXFeatures.C (getMacros):
1650         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
1651
1652         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
1653
1654         * LaTeXFeatures.C (useFloat): require "float" here instead of in
1655         getPackages.
1656         (getPackages): rename feature "floats" to "float". Use an array to
1657         iterate over 'simple' features (i.e. just a \usepackage). Add
1658         handling of "amsmath" (renamed from "amsstyle").
1659
1660 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
1661
1662         * LaTeXFeatures.C (require): Prevent duplicate entries in the
1663         features list.
1664
1665 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
1666
1667         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
1668         FuncStaus::FuncStatus & FuncStaus::some_method().
1669
1670 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
1671
1672         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
1673         of the func_satus stuff. Edited and massaged in various ways by
1674         JMarc.
1675
1676         * lyxfunc.C (getStatus): use FuncStatus
1677
1678 2002-01-08  Juergen Vigna  <jug@sad.it>
1679
1680         * text.C (nextBreakPoint): use function Inset::isChar().
1681
1682         * paragraph.C (TeXOnePar): use function
1683         Inset::forceDefaultParagraphs.
1684
1685         * buffer.C (latexParagraphs): use function
1686         Inset::forceDefaultParagraphs.
1687
1688 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
1689
1690         * lyx_gui.C (init): set the style of the menu popups to
1691         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
1692
1693 2002-01-07  Juergen Vigna  <jug@sad.it>
1694
1695         * text.C (setHeightOfRow): small fix
1696         (prepareToPrint): don't look at alignment if we don't have the place
1697         for doing it.
1698
1699 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
1700
1701         * box.C: New file. Move the Box methods and functions out of box.h,
1702         following Lars' suggestion.
1703
1704 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
1705
1706         * box.h: #include "support/LOstream.h", needed for inlined function.
1707
1708         * lyxtextclass.C:
1709         * lyxtextclasslist.C: added some using std declarations.
1710
1711 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
1712
1713         * box.h: make signed dimensions to allow insets wider than
1714           the screen (bug #162)
1715
1716         * BufferView_pimpl.C: add some insetHit debug
1717
1718 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
1719
1720         * vc-backend.C: add FIXME
1721
1722 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1723
1724         * lyxfunc.C (getStatus): enable code for showing math font status
1725         in toolbar/menu.
1726
1727 2002-01-07  Juergen Vigna  <jug@sad.it>
1728
1729         * text.C (nextBreakPoint): removed debug output not needed anymore.
1730
1731 2002-01-06  Juergen Vigna  <jug@sad.it>
1732
1733         * text.C (nextBreakPoint): fixed up this function we had this bug
1734         since ever but now hopefully we break row better.
1735         (insertChar): we have to check if an inset is the next char as it
1736         could now happen that a large inset is causing a break.
1737
1738 2002-01-05  Juergen Vigna  <jug@sad.it>
1739
1740         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
1741         if it doesn't like to be drawed.
1742
1743 2002-01-04  Juergen Vigna  <jug@sad.it>
1744
1745         * BufferView2.C (lockInset): forgot to set a cursor.
1746
1747         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
1748
1749 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
1750
1751         * FormMathsPanel.C:
1752         * FormMathsPanel.h
1753         * MathsSymbols.C:
1754         * form_maths_panel.C:
1755         * form_maths_panel.h:
1756         * form_maths_panel.fd: implemented sub- and super- buttons in math
1757         panel.
1758
1759         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
1760         (or ^ space) to be used as in TeX (req'd by André).
1761
1762         * lyxfunc.C: Allow ^ and _ again to be used both as
1763         super/subscript (mathed) and as themselves (in text).
1764
1765 2002-01-03  Allan Rae  <rae@lyx.org>
1766
1767         * LyXView.C (updateWindowTitle): Setup a short icon title of either
1768         "LyX" or the filename of the current buffer if it has one.  This is a
1769         modified form of John Levon's patch.
1770
1771         * XFormsView.C (setWindowTitle): also set icon title.
1772
1773         * LyXView.h (setWindowTitle): signature changed.
1774         * XFormsView.h (setWindowTitle): ditto.
1775
1776 2002-01-02  Juergen Vigna  <jug@sad.it>
1777
1778         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
1779
1780 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1781
1782         * screen.C (topCursorVisible): introduce a temp var for
1783         text->cursor.row(), handle the case where this row is null. (kindo
1784         hachish)
1785
1786         * text2.C (setCursor): add a couple of asserts.
1787
1788         * paragraph.h (inset_iterator): add -> operator
1789
1790         * paragraph.[Ch] (autoDeleteInsets): remove member function
1791
1792         * BufferView2.C (removeAutoInsets): rewrite to handle the old
1793         cursor pos correctly and handle inset deletion by itself.
1794         (insertErrors): move iterator declaration out of for expression
1795
1796         * lyxtextclass.C: add <algorithm>
1797
1798         * Makefile.am: added the new files to sources, removed layout.C
1799
1800         * layout.C: removed file
1801
1802         * layout.h: remove LYX_DUMMY_LAYOUT
1803
1804         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
1805         layout.
1806
1807         * lyxlayout.[Ch]:
1808         * lyxtextclass.[Ch]:
1809         * lyxtextclasslist.[Ch]: new files
1810
1811         * include order changes to a lot of files, also changes because of
1812         the six new files.
1813
1814 2001-12-27  Juergen Vigna  <jug@sad.it>
1815
1816         * buffer.C (asciiParagraph): more fixes.
1817
1818         * tabular.C (ascii): make ascii export support export of only the
1819         data separated by a column-delimiter.
1820         (ascii): better support for ascii export.
1821
1822         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
1823
1824 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1825
1826         * tabular_funcs.C: use a "using std::getline" instead of the
1827         previous fix from Angus (necessary for cxx + lyxstring)
1828
1829 2001-12-24  Juergen Vigna  <jug@sad.it>
1830
1831         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
1832
1833         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
1834         problems. First check a minipage also if we have some ert-contents
1835         (not only on par->size(), second set the right depth of the paragraph
1836         on the relink to the root-paragraph-list!
1837
1838         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
1839         which then did not anymore update the main paragraphs on undo/redo!
1840
1841 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1842
1843         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
1844         code. Support all font-changing funcs (even those which are not in
1845         menu currently). Support for reporting font settings in
1846         mathed (disabled until Andre provides a function on mathed's side).
1847
1848         * func_status.h (toggle): small helper function to set toggle
1849         state on a flag.
1850
1851 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
1852
1853         * tabular_funcs.C: getline -> std::getline
1854
1855 2001-12-21  Juergen Vigna  <jug@sad.it>
1856
1857         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
1858         accessed and could be 0 (I couldn't generate this but it seems
1859         Michael could!).
1860
1861 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1862
1863         * tabular_funcs.C: add LIstream.h, move write_attribute to..
1864         * tabular_funcs.h: here and include iosfwd
1865
1866 2001-12-20  Juergen Vigna  <jug@sad.it>
1867
1868         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
1869         inside inset but undo_par was.
1870
1871 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1872
1873         * Thesaurus.C: always include <config.h> in sources.
1874
1875         * Painter.h:
1876         * lyxlookup.h:
1877         * box.h: do not include <config.h> in header files
1878
1879         * text.C (paintLastRow): remove unused variable
1880
1881         * text.C (transformChar):
1882         (insertChar):
1883         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
1884
1885         * Painter.C (text):
1886         * font.C (width): rewrite to use uppercase() instead of
1887         islower/toupper.
1888
1889         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
1890
1891 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
1892
1893         * lyxfind.C: clean up of find failure position change
1894
1895 2001-12-20  Juergen Vigna  <jug@sad.it>
1896
1897         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
1898
1899         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
1900         (TeXRow): added to LaTeX a single tabular row.
1901         (TeXLongtableHeaderFooter): added to output LT-h/f data.
1902         (Latex): simplified and finally good LT-h/f support.
1903         (various_functions): just small adaptions for LT-h/f support.
1904
1905         * tabular_funcs.[hC]: added and moved here all not classfunctions
1906         of LyXTabular.
1907
1908 2001-12-19  Juergen Vigna  <jug@sad.it>
1909
1910         * tabular.[Ch]: better support for longtabular options (not finished
1911         yet!)
1912
1913 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1914
1915         * text.C (paintLastRow): use the label font instead of the font of
1916         the last character to compute the size of *_BOX. This makes more
1917         sense and avoids a crash with empty paragraphs.
1918         Use Painter::rectangle to draw EMPTY_BOX.
1919
1920 2001-12-19  Juergen Vigna  <jug@sad.it>
1921
1922         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
1923         the paragraphs if the replaced paragraph is not the first one!
1924         Tried to delete not used paragraphs but does not work yet so for
1925         now it's inside #ifdef's and by default off!
1926
1927 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1928
1929         * MenuBackend.C: include "lyx_main.h" instead of declaring
1930         lastfiles (actually was declared as LastFiles* instead of a
1931         scoped_ptr).
1932
1933 2001-12-17  Juergen Vigna  <jug@sad.it>
1934
1935         * tabular.C (AppendColumn): applied John's fix
1936
1937 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
1938
1939         * BufferView.h:
1940         * BufferView.C:
1941         * BufferView_pimpl.h:
1942         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
1943
1944         * Makefile.am:
1945         * box.h: new start of class for above
1946
1947         * lyxfunc.C: ignore space-only minibuffer dispatches.
1948           Show the command name when it doesn't exist
1949
1950         * minibuffer.C: don't add empty lines to the history
1951
1952         * minibuffer.C: add a space on dropdown completion
1953
1954 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
1955
1956         * text.C: fix line above/below drawing in insets
1957
1958 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1959
1960         * lyxlength.C (LyXLength): Initialize private variables.
1961
1962 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
1963
1964         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
1965         when inserting error insets.
1966
1967 2001-12-13  Juergen Vigna  <jug@sad.it>
1968
1969         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
1970         actually sometimes the before-paragraph.
1971         (setUndo): don't clear the redostack if we're not actually undoing!
1972
1973 2001-12-06  Juergen Vigna  <jug@sad.it>
1974
1975         * undo_funcs.C (textHandleUndo): well after John's hint I got here
1976         and fixed redoing of main paragraph, so we can use it now ;)
1977
1978         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
1979
1980 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1981
1982         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
1983         Juergen's request
1984
1985 2001-12-13  André Pönitz <poenitz@gmx.net>
1986
1987         * undostack.[Ch]:
1988         * undo_func.C: minor cleanup
1989
1990 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1991
1992         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
1993         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
1994         font in urw-fonts package which is marked as -urw-fontspecific and
1995         does not work (incidentally, changing the encoding in the
1996         fonts.dir of this package to -adobe-fontspecific fixes the
1997         problem).
1998
1999         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
2000         is a crash when undoing first paragraph (Juergen, please take a
2001         look). THis does not mean the undo fix is wrong, just that it
2002         uncovers problems.
2003
2004         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
2005         the (Paragraph*) version when needed instead of duplicating the
2006         code.
2007
2008         * text.C (workWidth): use Inset::parOwner to find out where the
2009         inset has been inserted. This is a huge performance gain for large
2010         documents with lots of insets. If Inset::parOwner is not set, fall
2011         back on the brute force method
2012
2013         * paragraph_pimpl.C (insertInset):
2014         * paragraph.C (Paragraph):
2015         (cutIntoMinibuffer): set parOwner of insets when
2016         inserting/removing them
2017
2018         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
2019
2020 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
2021
2022         * commandtags.h:
2023         * LyXAction.C:
2024         * lyx_main.C:
2025         * lyxfunc.C:
2026         * mathed/formulabase.C:
2027         * mathed/math_cursor.[Ch]:
2028         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
2029
2030
2031 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2032
2033         * lyxlength.[Ch] (operator!=): new function
2034
2035 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2036
2037         * text.C (workWidth): use Inset::parOwner to find out where the
2038         inset has been inserted. This is a huge performance gain for large
2039         documents with lots of insets. If Inset::parOwner is not set, fall
2040         back on the brute force method
2041
2042         * paragraph_pimpl.C (insertInset):
2043         * paragraph.C (Paragraph):
2044         (cutIntoMinibuffer): set parOwner of insets when
2045         inserting/removing them
2046
2047         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
2048
2049 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2050
2051         * tabular-old.C (getTokenValue):
2052         * tabular.C (getTokenValue):
2053         (write_attribute): new versions for LyXLength
2054         (everywhere): adjust the use of widths
2055
2056         * tabular.h: change the type of widths from string to LyXLength
2057
2058 2001-12-11  Ben Stanley <bds02@uow.edu.au>
2059
2060         * paragraph.C: fixed missing line number count when exporting
2061         Environments to LaTeX file
2062
2063         * buffer.C: added informational message for checking line numbers.
2064
2065 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2066
2067         * text2.C (deleteEmptyParagraphMechanism): if there is only one
2068         paragraph, do the 'double space' part, but not the 'empty
2069         paragraph' one.
2070
2071         * text.C (workWidth): small optimization
2072         (getLengthMarkerHeight): use minimal size for negative lengths.
2073
2074 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
2075
2076         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
2077
2078         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
2079
2080 2001-12-11  André Pönitz <poenitz@gmx.net>
2081
2082         * FontLoader.C:
2083         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
2084
2085 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
2086
2087         * text2.C: keep selection on a setFont()
2088
2089 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
2090
2091         * lyx_cb.C: another bv->text misuse, from insert label
2092
2093 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
2094
2095         * kbsequence.h:
2096         * kbsequence.C: re-instate nmodifier mask
2097
2098 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
2099
2100         * lyx_main.h: make lyxGUI private.
2101
2102 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
2103
2104         * lyxfind.C: place the cursor correctly on failed search
2105
2106 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2107
2108         * text.C (getLengthMarkerHeight): for small heights, the arrows
2109         are not always on top/bottom of the text
2110         (drawLengthMarker): smaller arrows; take the left margin in
2111         account; draw also vfills.
2112         (paintFirstRow):
2113         (paintLastRow): remove special code for vfill and standard spaces,
2114         since everything is handled in drawLengthMarker now.
2115
2116 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2117
2118         * buffer.C (insertErtContents): try to handle font and language
2119         interaction a bit better.g
2120
2121         * ColorHandler.C (updateColor): change the hash to cover the whole
2122         LColor enum, ws cleanup
2123         (getGCLinepars): ditto
2124         (getGCLinepars): only lookup in the linecache once.
2125
2126 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
2127
2128         * iterators.C (operator++): Make the iterator more robust
2129
2130         * BufferView2.C (removeAutoInsets): Use paragraph iterators
2131         (John's patch)
2132         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
2133
2134 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
2135
2136         * lyxtext.h:
2137         * text.C: better added space drawing
2138
2139 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
2140
2141         * LyXView.C:
2142         * BufferView2.C: fix layout combo update on inset unlock
2143
2144 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
2145
2146         * Makefile.am: don't compile unused files
2147
2148 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
2149
2150         * lyxfunc.C:
2151         * commandtags.h:
2152         * LyXAction.C: remove old LFUN_LAYOUTNO
2153
2154 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
2155
2156         * paragraph_pimpl.h:
2157         * paragraph_pimpl.C: isTextAt() doesn't need font param
2158
2159 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
2160
2161         * lyxlex.h:
2162         * lyxlex.C: little cleanup
2163
2164 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
2165
2166         * BufferView_pimpl.C: fix insertAscii for insets
2167
2168 2001-12-05  Juergen Vigna  <jug@sad.it>
2169
2170         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
2171         set the right font on the "multi" paragraph paste!
2172
2173 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2174
2175         * trans_decl.h:
2176         * trans_mgr.[Ch]:
2177         * trans.[Ch]:
2178         * lyxgluelength.C:
2179         * lyxlength.C: remove out-commented code.
2180
2181         * BufferView_pimpl:
2182         * CutAndPaste.C:
2183         * DepTable.C:
2184         * buffer.C:
2185         * chset.C:
2186         * lastfiles.C:
2187         * lyxlex.C:
2188         * lyxlex_pimpl.C:
2189         * lyxserver.C:
2190         * screen.C:
2191         * tabular-old.C:
2192         * tabular.C:
2193         * text.C:
2194         * trans_mgr.C:
2195         * vc-backend.C: change "while(" to "while ("
2196
2197         * lyxlength.[Ch]: add zero function to check if length is zero or
2198         not
2199         * lyxgluelength.C: use it
2200
2201 2001-12-05  Allan Rae  <rae@lyx.org>
2202
2203         * lyxlength.C: Attempted a fix for the abs(int) header selection.
2204         Works for 2.95.3, from what I understand of Garst's reports this should
2205         work for other g++ versions.  We're screwed if the abs(int) definition
2206         changed between bugfix releases of gcc.
2207
2208 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
2209
2210         * text.C: fix chapter label offset !
2211
2212 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
2213
2214         * lyxtext.h:
2215         * text.C: fix hfill at end of line, clean up
2216
2217 2001-12-04  Juergen Vigna  <jug@sad.it>
2218
2219         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
2220         that we force an update of the inset and it's owners if neccessary.
2221
2222 2001-12-03  Juergen Vigna  <jug@sad.it>
2223
2224         * text.C (rowLast): simplified code
2225
2226 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
2227
2228         * lyxfunc.C: fix show options on timeout
2229
2230 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2231
2232         * screen.C (topCursorVisible): scroll half a page when the cursor
2233         reached top of bottom of screen
2234
2235 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
2236
2237         * minibuffer.C: deactivate on loss of focus
2238
2239 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2240
2241         * vspace.[Ch] (operator!=): add operator.
2242
2243 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
2244
2245         * BufferView_pimpl.C: refuse to open an inset when
2246         there's a selection.
2247
2248 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
2249
2250         * BufferView_pimpl.C: allow to click on RHS of full row insets
2251
2252 2001-11-30  Juergen Vigna  <jug@sad.it>
2253
2254         * tabular.C (LyXTabular): add a same_id to set the same id's in the
2255         insets for undo reasons.
2256
2257 2001-11-28  André Pönitz <poenitz@gmx.net>
2258
2259         * vspace.[Ch]: cosmetical changes
2260
2261 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
2262
2263         * LyXAction.h:
2264         * LyXAction.C:
2265         * lyxfunc.h:
2266         * lyxfunc.C:
2267         * kbmap.h:
2268         * kbmap.C:
2269         * lyxrc.C:
2270         * kbsequence.h:
2271         * kbsequence.C: part re-write of old kb code
2272
2273         * Painter.C:
2274         * WorkArea.C: remove Lgb_bug_find_hack
2275
2276 2001-11-30  José Matos <jamatos@fep.up.pt>
2277
2278         * buffer.C (makeDocBookFile): add a comment to point a hack.
2279         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
2280         Fixed a double write of labels.
2281
2282 2001-11-29 Ben Stanley <bds02@uow.edu.au>
2283
2284         * LaTeX.C:
2285         * LaTeX.h Fixed bug in LaTeX class where it would not
2286         re-run latex if no depfiles were changed, but the .dvi was removed.
2287
2288 2001-11-28  André Pönitz <poenitz@gmx.net>
2289
2290         * all the files from the change on 2001/11/26:
2291         use lyx::layout_type instead of LyXTextClass::size_type
2292         use lyx::textclass_type instead of LyXTextClassList::size_type
2293
2294 2001-11-29  Juergen Vigna  <jug@sad.it>
2295
2296         * text.C: added support for paragraph::isFreeSpacing()
2297
2298         * buffer.C: same as above
2299
2300         * paragraph.h: inserted isFreeSpacing() function to enable
2301         FreeSpacing inside InsetERT.
2302
2303         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
2304         of the paragraph's in the cut/copy buffer to 0!
2305
2306         * text2.C (removeRow): remove the assert as it can!
2307
2308         * lyxtext.h: added helper function firstRow returning firstrow and
2309         made firstrow private again.
2310
2311         * BufferView2.C (lockInset): don't relock if we're already locked!
2312
2313         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
2314         the only paragraph.
2315         (removeRow): added Assert::(firstrow)
2316
2317         * debug.C: forgot to add INSETTEXT here.
2318
2319 2001-11-28  Juergen Vigna  <jug@sad.it>
2320
2321         * sp_spell.C (initialize): changed error text to more general
2322         spellchecker command use (not only ispell!)
2323
2324         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
2325
2326         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
2327
2328 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
2329
2330         * vspace.C: initialise lyxgluelength on failure
2331
2332 2001-11-28  Allan Rae  <rae@lyx.org>
2333
2334         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
2335         declaration & definition that looks like a function declaration.
2336
2337 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2338
2339         * BufferView2.C (copy):
2340         (copyEnvironment): do not clear the selection when doing a copy.
2341
2342         * text.C (paintFirstRow): compilation fix
2343
2344 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
2345
2346         * tabular.C (Latex): correct line count when writing latex.
2347
2348 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
2349
2350         * paragraph_pimpl.h:
2351         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
2352           bug a bit
2353
2354 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
2355
2356         * text.C:
2357         * LColor.h:
2358         * LColor.C: change vfillline->added_space
2359
2360         * text.C: add markers and text for added space
2361
2362         * vspace.C: fix comment
2363
2364 2001-11-28  André Pönitz <poenitz@gmx.net>
2365
2366         * paragraph.C: whitespace changes
2367         * all the other files from the change on 2001/11/26:
2368         change *::pos_type into lyx::pos_type
2369
2370 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
2371
2372         * buffer.C (parseSingleLyXformat2Token): Set the language to the
2373         language of the document when inserting error insets.
2374
2375 2001-11-26  André Pönitz <poenitz@gmx.net>
2376
2377         * BufferView_pimpl.[Ch]:
2378         *       CutAndPaste.C:
2379         * buffer.[Ch]:
2380         * lyxcursor.[Ch]:
2381         * lyxfind.C:
2382         * lyxfunc.C:
2383         * lyxrow.[Ch]:
2384         * paragraph.[Ch]:
2385         * paragraph_pimpl.[Ch]:
2386         * sp_spell.C:
2387         * text.C:
2388         * text2.C: reduce header dependencies, introduce type for positions
2389
2390 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
2391
2392         * <various>: change to use Alert.h
2393
2394 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
2395
2396         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
2397         when encountering an unknown token.
2398         (readLyXformat2): Show an error message if there were unknown tokens.
2399
2400 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
2401
2402         * BufferView2.C:
2403         * BufferView_pimpl.C:
2404         * buffer.C:
2405         * paragraph.h:
2406         * text.C:
2407         * text2.C: use par->isInset()
2408
2409 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
2410
2411         * paragraph_pimpl.h:
2412         * paragraph_pimpl.C: cleanup
2413
2414 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2415
2416         * text2.C (removeRow):
2417         * text.C (setHeightOfRow): remove useless (and costly) call to
2418         getRow.
2419
2420 2001-11-20  Allan Rae  <rae@lyx.org>
2421
2422         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
2423         Now need Inset*::checkInsertChar() to return true for appropriate
2424         cases so that the characters in the minibuffer will actually be
2425         inserted.
2426
2427 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2428
2429         * text.C: change the order of the includes.
2430         (workWidth): initialize it at once.
2431         (workWidth): make maxw unsigned
2432         (setHeightOfRow): remove unused variable (inset)
2433         (selectSelectedWord): remove unused variable (inset)
2434         (paintRowText): fix drawing of hfill characters, and clean up a bit.
2435
2436 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2437
2438         * lyxserver.C (emergencyCleanup): do not try to close pipes if
2439         server is not running.
2440         (openConnection):
2441         (closeConnection): add debug info when server is disabled.
2442
2443         * ColorHandler.C (getGCForeground): send debug message to GUI
2444         channel.
2445
2446         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
2447
2448         * kbmap.C (bind): modify because return conventions of
2449         kb_sequence::parse have changed.
2450
2451         * kbsequence.C (parse): only ignore spaces and not any stupid
2452         control character. This avoids tests like s[i] <= ' ', which are
2453         guaranteed to fail with 8bit characters and signed chars.
2454         Change return code to string::npos when there have been no error
2455         (0 was a bad idea when error is at first character)
2456
2457 2001-11-14  José Matos  <jamatos@fep.up.pt>
2458
2459         * buffer.h:
2460         * buffer.C (simpleDocBookOnePar): removed unused argument.
2461
2462 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2463
2464         * text.C (selectNextWordToSpellcheck): do not test explicitely for
2465         insets which are part of a word. Paragraph::isLetter takes care of
2466         that now. Use Paragraph::isInset to identify insets.
2467         (selectSelectedWord): do not test for hyphenation break.
2468
2469         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
2470         that protected spaces are considered as spaces.
2471
2472         * paragraph.C (isLetter): cleanup the code for ispell extras; use
2473         Inset::isLetter.
2474
2475 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
2476
2477         * lyxserver.h:
2478         * lyxserver.C: fix it. and small cleanup.
2479
2480 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
2481
2482         * BufferView_pimpl.C: use inline helpers
2483
2484         * LaTeXFeatures.h:
2485         * LaTeXFeatures.C: fix typos
2486
2487         * Spacing.h:
2488         * Spacing.C: move spacing_string into class
2489
2490         * ToolbarDefaults.C: move stuff into namespace anon
2491
2492         * layout.h: update enum
2493
2494         * lyxfunc.C: use better debug
2495
2496         * minibuffer.h: fix typo
2497
2498         * debug.h:
2499         * debug.C:
2500         * WorkArea.C: add and use Debug::WORKAREA
2501
2502         * lyxtext.h:
2503         * text.C:
2504         * text2.C: code re-organisation, inline helpers
2505
2506 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
2507
2508         * Layout.C: replaced a few cases of std::vector.size() == 0 with
2509         std::vector.empty().
2510
2511 2001-11-09  Allan Rae  <rae@lyx.org>
2512
2513         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
2514         '\n's after tables.  Tabular and ERT inset work now makes this no
2515         longer necessary.
2516
2517 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
2518
2519         * minibuffer.h:
2520         * minibuffer.C: fix crash, improve drop-down completion
2521
2522 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
2523
2524         * lyxserver.h:
2525         * lyxserver.C: invalidate fd's when doing endPipe()
2526
2527 2001-11-08  José Matos  <jamatos@fep.up.pt>
2528
2529         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
2530         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
2531
2532         * paragraph.h:
2533         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
2534
2535 2001-11-07  José Matos  <jamatos@fep.up.pt>
2536
2537         * buffer.h:
2538         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
2539         const qualifier.
2540
2541         * buffer.C (sgmlOpenTag):
2542         * buffer.C (sgmlCloseTag): removed debug info.
2543
2544         * buffer.h (sgmlOpenTag):
2545         * buffer.h (sgmlCloseTag): made public.
2546
2547 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2548
2549         * buffer.C (saveParamsAsDefaults):
2550         * lyx_cb.C (MenuLayoutSave): remove
2551
2552         * LyXAction.C (init):
2553         * commandtags.h:
2554         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
2555
2556 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2557
2558         * buffer.C (setPaperStuff): removed from here...
2559
2560         * bufferparams.C (setPaperStuff): ... and moved there.
2561
2562 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
2563
2564         * minibuffer.h:
2565         * minibuffer.C:
2566         * XFormsView.C: add support for drop-down completion
2567
2568 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
2569
2570         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
2571         commands.
2572
2573 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2574
2575         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
2576         disabled.
2577
2578 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
2579
2580         * lyx_main.C: change ref to known bugs
2581
2582 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
2583
2584         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
2585         to work around older babel problems.
2586
2587 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
2588
2589         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
2590
2591 2001-10-24  Juergen Vigna  <jug@sad.it>
2592
2593         * tabular-old.C (ReadOld): below variable changes reflected.
2594
2595         * tabular.[Ch]: added ltType struct for longtable header/footer
2596         defines and changed all instances where they are used. Added
2597         future support for double top/bottom rows.
2598
2599 2001-10-24  José Matos  <jamatos@fep.up.pt>
2600
2601         * buffer.h (docbookHandleCaption):
2602         * buffer.C (docbookHandleCaption): removed unused function.
2603         (makeDocBookFile): moved docbook supported version to v4.1.
2604
2605 2001-10-24  José Matos  <jamatos@fep.up.pt>
2606
2607         * tabular.h:
2608         * tabular.C (docbookRow): new function to export docbook code of a row.
2609         (DocBook): now honors the longtable flags.
2610
2611 2001-10-23  José Matos  <jamatos@fep.up.pt>
2612
2613         * LaTeXFeatures.h:
2614         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
2615         of the lyx defined sgml entities used in a docbook/linuxdoc document.
2616
2617         * buffer.C (makeLinuxDocFile):
2618         (makeDocBookFile): reworked the preamble, more clean, and with
2619         support for lyx defined entities. Changed the document declaration
2620         to be more XML friendly.
2621
2622         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
2623         if we need to output XML that should be done with a filter.
2624
2625 2001-10-22  Juergen Vigna  <jug@sad.it>
2626
2627         * sp_pspell.h (class PSpell): add alive function needed in the
2628         controller to see if the spellchecker could be started.
2629
2630 2001-10-22  Juergen Vigna  <jug@sad.it>
2631
2632         * buffer.C (insertStringAsLines): modify the font for inserting
2633         chars in certain conditions by calling checkInsertChar(font).
2634
2635 2001-10-19  Juergen Vigna  <jug@sad.it>
2636
2637         * text.C (workWidth): use getRow instead of wrong algorithm.
2638         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
2639
2640 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
2641
2642         * lyxserver.h:
2643         * lyxserver.C:
2644         * lyx_main.h:
2645         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
2646
2647 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2648
2649         * text.C (workWidth): do not search for the exact row when
2650         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
2651         optimization for big documents.
2652
2653 2001-10-18  Juergen Vigna  <jug@sad.it>
2654
2655         * text.C (workWidth): new function with added Inset * parameter.
2656
2657 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2658
2659         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
2660
2661         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
2662         change return type of getColumnNearX.
2663
2664
2665         * text.C (changeRegionCase): use uppercase/lowercase instead of
2666         toupper/tolower.
2667         (leftMargin):
2668         (rightMargin): simplify code by factoring out the uses of
2669         textclasslist.
2670         (labelFill):
2671         (numberOfHfills):
2672         (setHeightOfRow):
2673         (appendParagraph): use Paragraph::size_type
2674
2675 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2676
2677         * vspace.C (asLatexString): add a missing break
2678
2679 2001-10-15  Herbert Voss  <voss@perce.de>
2680
2681         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
2682
2683 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2684
2685         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
2686         is not available.
2687
2688 2001-10-10  André Pönitz <poenitz@gmx.net>
2689
2690         * lyxfunc.C: removed greek_kb_flag.
2691
2692 2001-10-10  Herbert Voss  <voss@perce.de>
2693
2694         * lyx_main.C: delete global string help_lyxdir.
2695
2696 2001-10-09  Herbert Voss  <voss@perce.de>
2697
2698         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
2699
2700         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
2701
2702         * lyx_main.C: added global string help_lyxdir.
2703
2704         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
2705
2706 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
2707
2708         * lyxrc.C (set_font_norm_type): support iso8859-4
2709
2710 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
2711
2712         * LaTeX.C (deplog): add another regex for MikTeX
2713
2714 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
2715
2716         * lyxrc.C (set_font_norm_type): support iso8859-3
2717
2718 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2719
2720         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
2721
2722         * LaTeXFeatures.C: remove special case of french and index
2723
2724         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
2725         before \begin{document}). This solves several incompatibilities.
2726
2727 2001-10-03  Garst Reese  <reese@isn.net>
2728
2729         * lyx_cb.C: change CheckTex error msg.
2730
2731 2001-10-03  José Matos  <jamatos@fep.up.pt>
2732
2733         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
2734
2735 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2736
2737         * .cvsignore: update
2738
2739         * lyx_main.C (commandLineVersionInfo): use new style version info.
2740
2741         * buffer.C (writeFile):
2742         (makeLaTeXFile):
2743         (makeLinuxDocFile):
2744         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
2745
2746         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
2747
2748         * version.h: update to use stuff in version.C
2749
2750         * version.C.in: new file. Contains version information determined
2751         at compile time. This is a merging of version.h and
2752         version_info.h.in.
2753
2754 2001-10-03  Juergen Vigna  <jug@sad.it>
2755
2756         * BufferView_pimpl.C (update): don't change "dirty" status in
2757         updateInset call.
2758
2759 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
2760
2761         * WorkArea.C (c-tor): re-position version string slightly.
2762
2763 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
2764
2765         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
2766         revert to previous code.
2767
2768         WorkArea.[Ch]: (show, destroySplash): methods removed.
2769
2770         WorkArea.C: rework code so that it's an amalgam of the codes before and
2771         after the splash screen was moved to WorkArea.
2772
2773 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2774
2775         * lyxrc.C (read):
2776         * vspace.C (inPixels):
2777         (lyx_advance):
2778         * kbmap.C (bind):
2779         * buffer.C (insertStringAsLines):
2780         (asciiParagraph): fix types to be large enough
2781
2782         * lyxlex_pimpl.h: change member status from short to int
2783
2784         * layout.h: fix type of endlabeltype
2785
2786         * kbmap.C (bind):
2787         * kbsequence.C (parse): change return type to string::size_type
2788
2789         * LaTeX.C (updateBibtexDependencies): comment out unneeded
2790         variable
2791
2792         * Bullet.C (bulletSize):
2793         (bulletEntry): do not use short ints as parameters
2794
2795         * BufferView2.C (insertLyXFile): change a char to an int.
2796
2797         * WorkArea.C (WorkArea): remove unneeded floats in computation
2798
2799 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
2800
2801         * buffer.C (asciiParagraph): Treat '\\' as other chars.
2802
2803         * paragraph.C (asString): Do not ignore newline/hfill chars when
2804         copying to the clipboard.
2805
2806 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
2807
2808         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
2809         after a multi-line inset.
2810
2811 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
2812
2813         * paragraph.C (validate): Set NeedLyXFootnoteCode
2814
2815 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
2816
2817         * lyxfont.C (LyXSizeNames): changed increase-error to increase
2818         and decrease-error to decrease.
2819
2820 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2821
2822         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
2823         it more readable (should be equivalent)
2824
2825 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
2826
2827         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
2828
2829 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2830
2831         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
2832         of a cursor (row, etc.) after a character has been deleted
2833         (deleteEmptyParagraphMechanism): call the method above on _all_
2834         cursors held by the LyXText when a double space has been
2835         detected/deleted.
2836
2837 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
2838
2839         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
2840         pixmap.
2841         (resizeCurrentBuff): remove code to destroy the old splash dialog.
2842
2843         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
2844         background. Use greyOut() and the new show() methods to toggle between
2845         the foreground and background. Add code to remove the splash after
2846         its initial showing.
2847
2848         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
2849         (create_forms): no longer call Dialogs::showSplash.
2850
2851 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2852
2853         * .cvsignore: add version_info.h
2854
2855 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2856
2857         * version_info.h.in: new file
2858
2859         * Makefile.am: add version_info.h.in
2860
2861         * lyx_main.C (commandLineVersionInfo): use version_info defined in
2862         version_info.h instead of VERSION_INFO
2863
2864 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
2865
2866         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
2867         The ERT inset now returns string().
2868
2869 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
2870
2871         * lyxtext.h, text.C (selectNextWord): renamed as
2872         selectNextWordToSpellcheck.
2873
2874         * text.C (selectNextWordToSpellcheck): Modified to not select
2875         words inside an ERT inset.
2876
2877 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2878
2879         * lyx_cb.C (MenuLayoutSave): change a bit the question
2880
2881         * sp_base.h: include <sys/types.h>
2882
2883 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
2884
2885         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
2886
2887 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
2888
2889         * several files: fix typos in user-visible strings
2890
2891 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2892
2893         * text2.C (pasteSelection): do not set the selection, since it
2894         will be cleared later. Actually, the intent was to fix the way the
2895         selection was set, but I figured rmoving the code was just as good.
2896
2897 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
2898
2899         * FontLoader.C (available): Check if font is available without
2900         loading the font.
2901
2902 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2903
2904         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
2905
2906 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
2907
2908         * lyxrc.[Ch]: added display_graphics variable and associated code.
2909
2910 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2911
2912         * bufferparams.C (hasClassDefaults): new method. Returns true if
2913         the buffer parameters correspond to known class defaults
2914
2915 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
2916
2917         * XFormsView.C (show): set minimum size to the main window.
2918
2919 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2920
2921         * text2.C (copySelection):
2922         (cutSelection):
2923         * lyxfind.C (LyXReplace):
2924         * BufferView_pimpl.C (Dispatch): pass the correct flag to
2925         LyXText::selectionAsString.
2926
2927         * paragraph.C (asString): add "label" argument to the second form
2928
2929         * text2.C (selectionAsString): add "label" argument and pass it to
2930         Paragraph::asString.
2931
2932 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2933
2934         * lyx_main.C (commandLineHelp): remove version information
2935
2936 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
2937
2938         * lyx_main.C: add -version commandline option
2939
2940 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2941
2942         * paragraph.h: make the optional constructor arg required instead.
2943         some modifications to other files because of this.
2944
2945         * minibuffer.C (C_MiniBuffer_peek_event): make it static
2946
2947         * lyxserver.C (C_LyXComm_callback): make it static
2948
2949         * lyx_main.C (error_handler): make it static
2950
2951         * lyx_gui.C (LyX_XErrHandler): make it static
2952
2953         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
2954
2955         * WorkArea.C: make the extern "C" methods static.
2956
2957         * Makefile.am (lyx_LDADD): simplify
2958
2959 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
2960
2961         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
2962         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
2963
2964         * LyXAction.C (init):
2965         * lyxfunc.C (dispatch): associated code removal.
2966
2967 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2968
2969         * lyxfont.h (isSymbolFont): shut off warning
2970
2971         * text.C (setHeightOfRow):
2972         (getVisibleRow): fix crash with empty paragraphs which have a
2973         bottom line
2974
2975 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
2976
2977         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
2978         code.
2979
2980 2001-09-04  José Matos  <jamatos@fep.up.pt>
2981         * buffer.C
2982         * buffer.h
2983         * tabular.C (docbook): rename docBook method to docbook.
2984
2985 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
2986
2987         * Makefile.am: add dependencies to main.o.
2988
2989 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
2990
2991         * FontLoader.C (available): Return false if !lyxrc.use_gui
2992
2993 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
2994
2995         * FontInfo.C (query):
2996         * converter.C (view):
2997         * importer.C (Import):
2998         * exporter.C (Export): Can not -> cannot.
2999
3000 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
3001
3002         * BufferView_pimpl.C: allow to create index inset even if
3003           string is empty
3004
3005 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
3006
3007         * buffer.C (getLists): replace boost::tie code with an explicit pair
3008         as boost::tie can break some compilers.
3009
3010         * iterators.h: Added a std:: declaration to the return type of
3011         ParIterator::size.
3012
3013 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
3014
3015         * lyxrc.C: add help for view_dvi_paper_option, default to safe
3016           case.
3017
3018 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
3019
3020         * iterators.[Ch]: New files. Provide paragraph iterators.
3021
3022         * buffer.C (changeLanguage): Use paragraph iterators.
3023         (isMultiLingual): ditto
3024
3025         * BufferView2.C (ChangeInsets): Use paragraph iterators.
3026
3027 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
3028
3029         * FontLoader.C: Support for cmr font.
3030
3031 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
3032
3033         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
3034         (available): New method.
3035
3036         * FontInfo.C (getFontname): Use scalable fonts even when
3037         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
3038         found.
3039
3040 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
3041
3042         * converter.C (Formats::view): reverted! Incorrect fix.
3043
3044 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
3045
3046         * converter.C (Formats::view): only output the -paper option
3047         if the dvi viewer is xdvi, thereby fixing bug #233429.
3048
3049 2001-08-23  Herbert Voss  <voss@perce>
3050
3051         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
3052
3053 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
3054
3055         * Spacing.h (Spacing): Set space to Default on in the default
3056         constructor.
3057
3058 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3059
3060         * vc-backend.h (RCS::versionString): add RCS to version
3061         (CVS::versionString): add CVS to version
3062
3063         * vc-backend.C (scanMaster): do not add CVS to version.
3064         (scanMaster): do not add RCS to version
3065
3066         * lyxvc.C (versionString): new method
3067
3068         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
3069
3070 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3071
3072         * Spacing.C (set): initialize fval
3073
3074 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
3075
3076         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
3077         " or \.
3078
3079 2001-08-16  Juergen Vigna  <jug@sad.it>
3080
3081         * lyxfunc.C (dispatch): implemented the new FINISHED states.
3082
3083 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
3084
3085         * BufferView_pimpl.C:
3086         * figureForm.C:
3087         * lyxtext.h:
3088         * text2.C: setParagraph takes linespacing now
3089
3090 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
3091
3092         * LyxAction.C: add internal LFUN_CITATION_INSERT
3093
3094         * LyXView.C: actually apply fix
3095
3096         * bufferlist.C: fix open non-existent file
3097
3098         * lyxfind.C: fix indentation
3099
3100         * lyxfunc.C: remove unneeded assert, fix typo
3101
3102 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
3103
3104         * MenuBackend.C: use "Floatname List"
3105
3106 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
3107
3108         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
3109         when converting LaTeX layout to insetERT.
3110         Generate a non-collapsed float when reading old float
3111
3112 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
3113
3114         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
3115         ERT insets.
3116
3117 2001-08-13  Juergen Vigna  <jug@sad.it>
3118
3119         * text.C (fill): return 0 instead of 20 as this seems to be the more
3120         correct value.
3121
3122 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
3123
3124         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
3125         lyxrc.font_norm.
3126
3127 2001-08-13  Juergen Vigna  <jug@sad.it>
3128
3129         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
3130         casesensitive off.
3131         (SearchBackward): comment out the unlocking of the inset_owner this
3132         should not be needed!
3133
3134 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
3135
3136         * Many files: Remove inherit_language, and add latex_language
3137
3138         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
3139         collapsible insets.
3140
3141 2001-08-10  Juergen Vigna  <jug@sad.it>
3142
3143         * text.C (prepareToPrint): fixed hfill-width in draw!
3144
3145         * BufferView2.C (selectLastWord): save the selection cursor as this
3146         now is cleared in the function LyXText::clearSelection!
3147
3148 2001-08-08  Juergen Vigna  <jug@sad.it>
3149
3150         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
3151         BACKSPACE type functions.
3152
3153         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
3154         is only cutted from the document but not put in the cut-buffer, where
3155         still the old stuff should be.
3156
3157         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
3158
3159         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
3160
3161         * tabular.C (SetWidthOfCell): fixed special case where the width
3162         was not updated!
3163         (LeftLine): handle '|' in align_special.
3164         (RightLine): ditto
3165         (LeftAlreadyDrawed): ditto
3166         (SetWidthOfCell): ditto
3167
3168 2001-08-07  Juergen Vigna  <jug@sad.it>
3169
3170         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
3171
3172 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3173
3174         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
3175         * lyxlex.[hC]: ditto
3176
3177 2001-08-06  Juergen Vigna  <jug@sad.it>
3178
3179         * text.C (getVisibleRow): fix up row clearing a bit.
3180
3181 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3182
3183         * minibuffer.C: make sure the X server sees the changes in the input.
3184
3185 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3186
3187         * paragraph.C (getFont): split into...
3188         (getLabelFont): this
3189         (getLayoutFont): and this
3190         * paragraph_pimpl.C (realizeFont): calling this
3191
3192         * text2.C (getFont): split into...
3193         (getLayoutFont): this
3194         (getLabelFont): and this
3195         (realizeFont): all three calling this
3196
3197         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
3198         files where used.
3199
3200 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3201
3202         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
3203
3204 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
3205
3206         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
3207         layouts from the Quote inset insertion.
3208
3209 2001-08-03  Juergen Vigna  <jug@sad.it>
3210
3211         * BufferView_pimpl.C (update): do the fitCursor only at the end!
3212
3213         * screen.C (drawFromTo): don't call fitcursor here and do the loop
3214         only if status not is already CHANGED_IN_DRAW (second level).
3215
3216         * text.C (draw): don't set the need_break_row when inside an
3217         InsetText LyXText.
3218
3219 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3220
3221         * buffer.C (parseSingleLyXformat2Token): handle more latex
3222         conversion cases.
3223
3224         * bufferview_funcs.[hC]: change function names to
3225         begin with small char, adjust other files.
3226
3227 2001-08-02  André Pönitz <poenitz@gmx.net>
3228
3229         * lyxfunc.C:
3230         BufferView_pimpl.C: remove broken special code for math-greek
3231
3232 2001-08-02  Juergen Vigna  <jug@sad.it>
3233
3234         * BufferView_pimpl.C (update): redone this function so that we
3235         update the text again if there was a CHANGE_IN_DRAW.
3236
3237         * screen.C (cursorToggle): removed LyXText parameter and recoded.
3238         (drawFromTo): added a new internal bool which is used by draw() and
3239         redraw() function.
3240         (general): some cursor drawing problems fixed.
3241
3242 2001-08-01  Juergen Vigna  <jug@sad.it>
3243
3244         * lyxfind.C (LyXFind): fixed
3245         (SearchForward): ditto
3246         (SearchBackward): ditto
3247
3248         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
3249         spurius drawing of the cursor in the main area.
3250
3251         * text2.C (status): small fix which could lead to a segfault!
3252         (clearSelection): remove unneeded BufferView param.
3253
3254 2001-08-01  André Pönitz <poenitz@gmx.net>
3255
3256         * lyxfunc.C: small change due to changed mathed interface
3257
3258 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3259
3260         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
3261
3262 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
3263
3264         * lyxfunc.c: fail gracefully if file doesn't exist
3265
3266         * LyXSendto.C:
3267         * buffer.C:
3268         * lyxfunc.C:
3269         * BufferView_pimpl.C: IsDirWriteable() proto changed
3270
3271         * LyXView.C: fix updateWindowTitle() to store the last title
3272
3273 2001-07-31  Juergen Vigna  <jug@sad.it>
3274
3275         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
3276         the font (wrong since using of Paragraph::highestFontInRange).
3277
3278         * paragraph.C (highestFontInRange): added a default_size parameter.
3279
3280         * text.C (getVisibleRow): minor clear row changes (still not perfect).
3281         (setHeightOfRow): reformat
3282
3283 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3284
3285         * converter.[hC] + affected files: move to (inital-char)lowercase
3286         function names.
3287
3288         * ParagraphParameters.C (ParagraphParameters): remove commented code
3289
3290         * PainterBase.[Ch]: remove commented code
3291
3292         * LaTeXFeatures.h: add "bool floats" for float.sty
3293
3294         * LaTeXFeatures.C (LaTeXFeatures): init floats
3295         (require): handle float
3296         (getPackages): do it with floats
3297
3298 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3299
3300         * BufferView_pimpl.C (Dispatch): improve handling of
3301         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
3302
3303         * commandtags.h: #include lyxfont.h here temporarily to avoid
3304         keybinding bug.
3305
3306         * bufferlist.h: include LString.h here.
3307
3308 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3309
3310         * text2.C (getStringToIndex): new method.
3311
3312 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
3313
3314         * *: Reduced header file dependencies all over.
3315
3316 2001-07-30  Baruch Even  <baruch@lyx.org>
3317
3318         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
3319
3320 2001-07-29  Baruch Even  <baruch@lyx.org>
3321
3322         * buffer.C (readInset): Changed GRAPHICS to Graphics.
3323
3324 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3325
3326         * ParameterStruct.h (endif): add a default constructor to make
3327         sure that all variables is initialized.
3328
3329         * ParagraphParameters.C (ParagraphParameters): adjust
3330
3331 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3332
3333         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
3334         index; also, check that there is something to index, and that it
3335         does not span over several paragraphs.
3336         (doubleClick): use WHOLE_WORD_STRICT for double click.
3337
3338         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
3339
3340         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
3341         scheme.
3342
3343 2001-07-26  Baruch Even  <baruch@lyx.org>
3344
3345         * buffer.C (readInset): Changed to call up InsetGraphics when reading
3346         an InsetFig figure, backwards compatible reading of old figure code.
3347
3348 2001-07-27  Juergen Vigna  <jug@sad.it>
3349
3350         * text2.C: font.realize function adaption.
3351
3352         * text.C (draw): add a warnings lyxerr text if needed.
3353
3354         * layout.C: font.realize function adaption.
3355
3356         * language.C: add inherit_language and implement it's handlings
3357
3358         * bufferview_funcs.C (StyleReset): remove language parameter from
3359         font creation (should be language_inherit now).
3360
3361         * bufferparams.C (writeFile): handle ignore_language.
3362
3363         * paragraph.C (getFontSettings): the language has to be resolved
3364         otherwise we have problems in LyXFont!
3365
3366         * lyxfont.C (lyxWriteChanges): added document_language parameter
3367         (update): removed unneeded language parameter
3368
3369         * paragraph.C (validate): fixed wrong output of color-package when
3370         using interface colors for certain fonts in certain environments,
3371         which should not seen as that on the final output.
3372
3373 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
3374
3375         * BufferView_pimpl.C:
3376         * Thesaurus.h:
3377         * Thesaurus.C:
3378         * Makefile.am:
3379         * commandtags.h:
3380         * LyXAction.C: add thesaurus support
3381
3382         * lyxfind.h:
3383         * lyxfind.C: add "once" parameter, for thesaurus, to not
3384           move to the next match
3385
3386 2001-07-26  Juergen Vigna  <jug@sad.it>
3387
3388         * lyxfont.C (realize): honor ignore_language too!
3389         (resolved): ditto.
3390
3391         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
3392
3393         * text.C (draw): one place more for ignore_language to not draw
3394         itself!
3395
3396 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
3397
3398         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
3399
3400 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3401
3402         * buffer.C (parseSingleLyXformat2Token): a more general fix for
3403         the minipage conversion problem.
3404
3405 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3406
3407         * buffer.C (parseSingleLyXformat2Token): check minipage if we
3408         insert an inset.
3409
3410 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3411
3412         * BufferView.h: don't forward declare WorkArea
3413
3414         * BufferView.C: don't include WorkArea.h
3415
3416 2001-07-25  André Pönitz <poenitz@gmx.net>
3417
3418         * commandtags.h:
3419         * LyXAction.C:
3420         * lyxfunc.C:  new LFUN 'math-space'
3421
3422         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
3423
3424 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3425
3426         * text2.C (toggleInset): call open/close
3427
3428 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3429
3430         * lyxfunc.C (dispatch): add debug for the disabled case
3431
3432         * font.C (buttonText): make similar to rectText
3433
3434         * buffer.C (readInset): comment out parsing of insetlist and
3435         insttheorem
3436
3437         * PainterBase.C (rectText): small correction
3438
3439         * BufferView_pimpl.C: comment out insettheorem and insetlist
3440         * LyXAction.C: ditto
3441         * commandtags.h: ditto
3442
3443 2001-07-24  Juergen Vigna  <jug@sad.it>
3444
3445         * text.C (draw): honor the ignore_language.
3446
3447         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
3448
3449 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3450
3451         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
3452         char inset.
3453
3454 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3455
3456         * lyxtext.h: remove unused (and unimplemented) methods
3457
3458 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3459
3460         * text.C (getVisibleRow): honor background color
3461
3462         * PainterBase.h:
3463         * Painter.h: remove default color argument for fillRectangle
3464
3465         * text.C (backgroundColor): new method
3466
3467 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3468
3469         * text.C (getVisibleRow): adjust
3470
3471         * font.[Ch] (rectText): new method, metrics
3472         (buttonText): new method, metrics
3473
3474         * PainterBase.[hC]: make rectText and buttonText always draw and take
3475         fewer paramteres.
3476
3477 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3478
3479         * ToolbarDefaults.C (read):
3480         * MenuBackend.C (read): allow escaping in all strings
3481
3482         * BufferView_pimpl.C (insertAndEditInset): new method.
3483         (Dispatch): use insertAndEditInset whenever appropriate.
3484
3485         * BufferView_pimpl.C (insertNote): removed
3486
3487         * BufferView_pimpl.C (smartQuote): new method, moved from
3488         BufferView; if an insetquote cannot be inserted, insert a '"'
3489         character instead.
3490
3491         * BufferView2.C: remove insertCorrectQuote();
3492
3493         * lyxfunc.C (getStatus): Add support for all remaingin
3494         inset-insert lfuns.
3495
3496         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
3497
3498         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
3499         command (necessary to pass " as parameter of self-insert.
3500
3501         * text.C (selectWordWhenUnderCursor):
3502         (selectWord): add word_location parameter
3503         (selectWordWhenUnderCursor): same + remove special code for word
3504         boundary.
3505         (selectNextWord): use kind() to guess type of insetspecialchar,
3506         not latex().
3507
3508         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
3509         (insertErtContents): create ert insets as collapsed.
3510         (readInset): better compatibility code for Info inset.
3511
3512 2001-07-20  Juergen Vigna  <jug@sad.it>
3513
3514         * lyxfunc.C (dispatch): use always LyXFind now!
3515
3516         * text2.C (init): add a reinit flag so that the LyXText can be
3517         reinited instead of deleted and reallocated (used in InsetText).
3518
3519         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
3520
3521         * text.C: ditto
3522
3523         * text2.C: ditto
3524
3525 2001-07-18  Juergen Vigna  <jug@sad.it>
3526
3527         * text.C (selectNextWord): handle insets inside inset by calling
3528         always the bv->text functions so that we can go up the_locking_inset!
3529
3530         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
3531         in strange locations when inside an inset!
3532
3533         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
3534         handling to include insets.
3535
3536         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
3537
3538 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3539
3540         * LyXAction.C (init):
3541         * commandtags.h:
3542         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
3543         LIGATURE_BREAK, since the name is so stupid.
3544
3545 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
3546
3547         * buffer.C (readInset): enable reading of new InsetNotes as well as old
3548         InsetInfos.
3549
3550         * FontLoader.C: remove FORMS_H_LOCATION cruft.
3551
3552         * sp_form.[Ch]: remove.
3553
3554         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
3555
3556         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
3557         InsetInfo.
3558
3559         * src/buffer.C (readInset): ditto.
3560
3561 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3562
3563         * BufferView_pimpl.C (specialChar): new method. Obsoletes
3564         menuSeparator(), endOfSentenceDot(), ldots() and
3565         hyphenationPoint(), which are therefore removed.
3566         (Dispatch): handle LFUN_HYPHENATION_BREAK.
3567
3568         * LyXAction.C (init):
3569         * commandtags.h: add LFUN_HYPHENATION_BREAK.
3570
3571         * paragraph.C (getWord): removed.
3572
3573         * BufferView_pimpl.C (Dispatch): use last word or selection for
3574         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
3575
3576         * lyx_main.C (queryUserLyXDir): do not ask before creating
3577         user_dir, except if it has been named explicitely.
3578
3579 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
3580
3581         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
3582         a document of zero size.
3583
3584 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
3585
3586         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
3587         approriately in the c-tor and in require().
3588         (getPackages): output the appropriate LaTeX for natbib support.
3589
3590         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
3591         variables "use_natbib" and "use_numerical_citations" when reading the
3592         LyX file.
3593         (readInset): read the various natbib cite commands.
3594         (validate): white-space change.
3595
3596         * bufferparams.[Ch]: new variables "bool use_natbib" and
3597         "bool use_numerical_citations".
3598         (writeFile): output them in the LyX file.
3599
3600 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3601
3602         * lyxfunc.C (getStatus): add support for all the inset insertion
3603         commands.
3604
3605         * text2.C (insertInset):
3606         * paragraph.C (insetAllowed):
3607         * BufferView_pimpl.C (insertInset): update to take in account the
3608         renaming of insertInsetAllowed
3609
3610         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
3611
3612         * text2.C (getInset): new method. returns inset at cursor position.
3613
3614         * BufferView_pimpl.C (Dispatch): changes because of this.
3615
3616         * LyXAction.C (init): rename open-stuff to inset-toggle.
3617
3618         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
3619
3620         * text2.C (toggleInset): renamed from openStuff; use
3621         Inset::open().
3622
3623 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
3624
3625         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
3626
3627         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
3628
3629 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
3630
3631         * buffer.C (readLyXformat2): Add filename to the error dialog
3632
3633 2001-07-18  Juergen Vigna  <jug@sad.it>
3634
3635         * tabular.C (GetCellNumber): put an assert here instead of the check!
3636
3637 2001-07-17  Juergen Vigna  <jug@sad.it>
3638
3639         * BufferView_pimpl.C (toggleSelection): adapted too.
3640
3641         * text.C (selectNextWord): adapted for use with insets.
3642         (selectSelectedWord): ditto
3643
3644 2001-07-17  Juergen Vigna  <jug@sad.it>
3645
3646         * sp_spell.C (PSpell): fix initialitation order.
3647
3648 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3649
3650         * paragraph.C: spacing
3651
3652 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
3653
3654         * sp_spell.C: repair language selection for pspell
3655
3656 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3657
3658         * lyxfunc.h: change more methods to begin with lower char.
3659
3660 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
3661
3662         * buffer.C (parseSingleLyXformat2Token): Generate error insets
3663         for unknown layouts.
3664
3665 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
3666
3667         * buffer.C (readLyXformat2): Generate an error dialog if there are
3668         unknown layouts.
3669
3670 2001-07-16  Juergen Vigna  <jug@sad.it>
3671
3672         * sp_spell.C: always compile ISpell part.
3673
3674         * lyxrc.C: added use_pspell entry and it's handling.
3675
3676 2001-07-13  Juergen Vigna  <jug@sad.it>
3677
3678         * sp_spell.C: removed double includes.
3679
3680 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
3681
3682         Consistent use of Lsstream.h:
3683         * Lsstream.h: added using std::stringstream for consistencies sake.
3684
3685         * buffer.C: removed using std::stringstream
3686
3687         * lyxfont.C (stateText):
3688         * paragraph.C (asString):
3689         * text.C (selectNextWord, selectSelectedWord):
3690         * text2.C (setCounter):
3691         * vspace.C (asString, asLatexString):
3692         std::ostringstream -> ostringstream.
3693
3694 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
3695
3696         * LyXAction.C: add LFUN_HELP_ABOUTLYX
3697         * commandtags.h: add LFUN_HELP_ABOUTLYX
3698         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
3699
3700 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
3701
3702         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
3703         cursorToggle()
3704         * lyx_gui_misc.C: remove spellchecker
3705         * lyxfunc.C: showSpellchecker
3706         * sp_base.h: added
3707         * sp_ispell.h: added
3708         * sp_pspell.h: added
3709         * sp_spell.C: added
3710         * sp_form.[Ch]: removed
3711         * spellchecker.[Ch]: removed
3712
3713 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
3714
3715         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
3716         is set.
3717         (simpleTeXSpecialChars): Simply print the input character without
3718         any special translation if pass_thru is set.
3719
3720         * layout.h: Added bool pass_thru to layout class for being able to
3721         implement pass through of a paragraph for Literate Programming.
3722
3723         * layout.C: add LT_PASS_THRU to LayoutTags enum.
3724         * layout.C (LyXLayout): set pass_thru to flase in constructor.
3725         * layout.C (Read): add "passthru" to list of layout tags and add
3726         code to set the pass_thru boolean when it is read.
3727
3728 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3729
3730         * trans_decl.h: remove allowed from KmodInfo
3731
3732         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
3733         remove allowed code
3734         (Load): adjust
3735
3736         * paragraph_pimpl.C (erase): use boost::prior
3737
3738         * Painter.C (text): use data() instead of c_str() when length is
3739         also provided.
3740         * WorkArea.C (putClipboard): ditto
3741         * font.h (width): ditto
3742
3743         * BufferView2.C: use it-> instead of (*it). for iterators
3744         * texrow.C: ditto
3745         * paragraph_pimpl.C: ditto
3746         * paragraph.C: ditto
3747         * minibuffer.C: ditto
3748         * language.C: ditto
3749         * kbmap.C: ditto
3750         * encoding.C: ditto
3751         * counters.C: ditto
3752         * converter.C: ditto
3753         * chset.C: ditto
3754         * Variables.C: ditto
3755         * TextCache.C: ditto
3756         * MenuBackend.C: ditto
3757         * LyXAction.C: ditto
3758         * LColor.C: ditto
3759         * FloatList.C: ditto
3760         * DepTable.C: ditto
3761         * ColorHandler.C (LyXColorHandler): ditto
3762
3763 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3764
3765         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
3766
3767         * text2.C (openStuff): reintroduce this method (which had been
3768         nuked in NEW_INSETS frenzy).
3769
3770         * lyxfunc.C (Dispatch): when an action has not been handled, use
3771         its name in the error message, not its number.
3772
3773         * paragraph.C (inInset): change method name to begin with lowercase.
3774
3775         * undo_funcs.C:
3776         * text2.C: updates because of this.
3777
3778 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3779
3780         * ToolbarDefaults.C (add): add spaces in error message
3781
3782 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3783
3784         * buffer.C (readLyXformat2): initialize the ert comp. variables.
3785         (readLyXformat2): rename return_par to first_par, use lyxlex's
3786         pushToken and remove the manual push handling.
3787         (parseSingleLyXformat2Token): add another ert comp. variable:
3788         in_tabular, rename return_par to first_par. handle newlines better
3789
3790 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3791
3792         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
3793
3794 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3795
3796         * text2.C (getParFromID): removed
3797
3798         * buffer.C (getParFromID): new method moved form lyxtext.
3799         * BufferView2.C (insertErrors): adjust
3800         (setCursorFromRow): adjust
3801         * BufferView_pimpl.C (restorePosition): adjust
3802         * lyxfunc.C (Dispatch): adjust
3803         * undo_funcs.C (textUndo): adjust
3804         (textRedo): adjust
3805         (textHandleUndo): adjust
3806         (textHandleUndo): adjust
3807
3808 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3809
3810         * buffer.C: up' the LYX_FORMAT
3811
3812         * lyxfont.h: turn NO_LATEX on as default
3813
3814         * buffer.C (insertErtContents): new methods of tex style compability.
3815         (parseSingleLyXformat2Token): use it several places.
3816         * tabular.C (OldFormatRead): and here
3817
3818 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3819
3820         * text2.C: remove some commented code.
3821         reindent file.
3822
3823         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
3824         * trans.C: changes because of the above.
3825
3826 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
3827
3828         * text2.C (setCounter): Fix counters bug with bibliography layout.
3829
3830 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3831
3832         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
3833         own member functions
3834         (simpleTeXSpecialChars): ditto
3835
3836 2001-07-06  Juergen Vigna  <jug@sad.it>
3837
3838         * a lot of files: changed the access to LyXText::status and the
3839         call of undo-functions.
3840
3841         * undo.[Ch]: added a inset_id to the undo informations.
3842
3843         * undo_funcs.[Ch]: added and moved here all undo functions.
3844
3845         * lyxtext.h: give the status enum a weight, made status_ a private
3846         variable and made accessor functions for it, removed the whole bunch
3847         of undo-functions as they are now in their own file, make some
3848         functions publically available. Added function ownerParagraph with
3849         int parameter.
3850
3851         * paragraph.[Ch]: added "bool same_ids" to the constructor,
3852         made InInset() a const function, added getParFromID() function.
3853
3854         * buffer.[Ch]: added const version for inset_iterator functions,
3855         added getInsetFromID() function.
3856
3857         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
3858         changed undo functions for new version.
3859
3860 2001-07-05  Juergen Vigna  <jug@sad.it>
3861
3862         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
3863         unknow mechanism does not call the proper constructor but only this
3864         one also if I request the other!?
3865
3866 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3867
3868         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
3869
3870         * text2.C (LyXText): use initialization lists.
3871
3872         * lyxtext.h (Selection): initialize set_ and mark_
3873         (init): remove method
3874
3875 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
3876
3877         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
3878
3879 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3880
3881         * screen.[Ch]: change method names to begin with lowercase
3882
3883         * BufferView_pimpl.C (updateScrollbar): simplify further and
3884         hopefully make it a bit faster.
3885
3886 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3887
3888         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
3889         calling directly xforms functions.
3890
3891         * Painter.C (Painter):
3892         * lyx_cb.C (MenuWrite):
3893         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
3894         fl_display.
3895
3896         * lyx_gui.C: remove bogus guiruntime extern declaration.
3897
3898 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3899
3900         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
3901         in NEW_INSETS
3902         (redoDrawingOfParagraph): ditto
3903         (redoParagraphs): ditto
3904         (cutSelection): don't create a object for CutAndPaste use the
3905         static method directly
3906         (pasteSelection): ditto
3907
3908         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
3909         LyXview (+ rename)
3910
3911 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3912
3913         * modifications to some other files because of this.
3914
3915         * Makefile.am (lyx_SOURCES): add XFormsView
3916
3917         * XFormsView.[Ch]: new files
3918
3919         * LyXView.[Ch]: make LyXView a base class for the gui handling for
3920         the main window. Move the gui dependent stuff to XFormsView
3921
3922 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3923
3924         * tabular.C (GetCellInset): update cur_cell also in the row/col
3925         version of this function.
3926
3927         * lyxfunc.C: no need to include figure_form.h here.
3928
3929         * FontLoader.h:
3930         * lyxfunc.h:
3931         * lyxscreen.h:
3932         * text2.C:
3933         * lyxvc.C: no need to include forms.h here.
3934
3935 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3936
3937         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
3938
3939         * lyxfunc.C (Dispatch):
3940         * Spacing.C (set):
3941         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
3942         constructor argument.
3943
3944 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3945
3946         * paragraph.C (Paragraph): dont't clear, and just set layout.
3947         (makeSameLayout): use params's copy contructor.
3948
3949         * ParagraphParameters.[Ch] (makeSame): delete method
3950
3951 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
3952
3953         * Variables.[Ch]: fix indentation, rename set to isSet
3954
3955 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3956
3957         * lyxfunc.C (Dispatch): fix typo
3958
3959 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3960
3961         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
3962         upper_bound.
3963
3964         * bufferlist.C: include assert.h for emergencyWrite().
3965
3966 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
3967
3968         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
3969           give up at last (bug #425202) !
3970
3971 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
3972
3973         * lyx_gui_misc.C:
3974         * sp_form.h:
3975         * sp_form.C:
3976         * spellchecker.h:
3977         * spellchecker.C: strip spellchecker options and bring up
3978           preferences tab instead
3979
3980 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3981
3982         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
3983         the istringstream constructor
3984
3985 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3986
3987         * paragraph.C (getLayout): fix return value
3988
3989         * paragraph.h: do not declare getLayout as inline.
3990
3991         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
3992
3993 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3994
3995         * lyxcursor.h (operator<): new func
3996         (operator>): new func
3997         (operator>=): new func
3998         (operator<=): new func
3999
4000         * text.C (changeCase): use selection.start and selection.end
4001         (changeRegionCase): require from to be <= to. Require par to be a
4002         valid paragraph.
4003
4004         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
4005
4006 2001-06-27  Juergen Vigna  <jug@sad.it>
4007
4008         * text.C (cursorLeftOneWord): changed to return the cursor and added
4009         overlay with BufferView * parameter which calls this one.
4010         (getWord): added
4011         (selectWord): use new getWord function.
4012         (changeCase): renamed from changeWordCase as and extended to work
4013         also on selections.
4014
4015         * lyxtext.h: added enum word_location
4016
4017         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
4018         changeCase as this operates now also on selections.
4019
4020 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
4021
4022         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
4023
4024         * many files: send debug output to Debug::INFO instead of
4025         Debug::ANY.
4026
4027         * converter.C (View):
4028         (Convert):
4029         (Move): send debug output to Debug::FILES instead of console.
4030
4031 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
4032
4033         * lyxfunc.C (getStatus): use func_status
4034
4035         * func_status.h: new header, describing the results of
4036         LyXFunc::getStatus;
4037
4038         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
4039         LFUN_MATH_HALIGN.
4040
4041 2001-06-25  The LyX Project  <jug@sad.it>
4042
4043         * buffer.C (sgmlOpenTag):
4044         (sgmlCloseTag):
4045         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
4046
4047 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4048
4049         * text2.C: remove some dead code
4050
4051         * tabular.C (GetCellInset): store the last cell checked (gotten)
4052
4053         * tabular.h: add the helper for the speedup
4054
4055         * lyxtext.h: remove some dead code
4056
4057 2001-06-26  The LyX Project  <Asger>
4058
4059         * paragraph.C: Change export to LaTeX of alignment to
4060         \begin{center} and family for better roundtrip work with reLyX.
4061
4062         * Tune the math drawing a bit.
4063
4064 2001-06-25  The LyX Project  <Asger>
4065
4066         * LColor.C (LColor): New color for math background. New color
4067         for buttons.
4068
4069 2001-06-25  The LyX Project  <jug@sad.it>
4070
4071         * lyxfunc.C (MenuNew): remove extra check for .lyx file
4072
4073         * lyxfunc.C (Open):
4074         * bufferlist.C (newFile): do not restrict to files ending with
4075         .lyx
4076
4077         * BufferView_pimpl.C (MenuInsertLyXFile):
4078
4079 2001-06-24  The LyX Project  <jug@sad.it>
4080
4081         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
4082         of compare_no_case
4083
4084 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4085
4086         * lyxtext.h: rename most methods to begin with a small char.
4087         Lots of changes because of this.
4088
4089         * paragraph.C (Paragraph): do not call fitToSize
4090         (erase): call Pimpl::erase
4091         (insertChar): call Pimpl::insertChar
4092         (insertInset): call Pipl::insertInset
4093         (breakParagraph): do not call fitToSize
4094         (breakParagraphConservative): do not call fitToSize
4095         (fitToSize): remove method
4096
4097         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
4098
4099 2001-06-24  The LyX Project  <Asger>
4100
4101         * Fix Qt compilation^2
4102
4103 2001-06-24  The LyX Project  <jug@sad.it>
4104
4105         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
4106         depthHook(getDepth()-1).
4107
4108         * paragraph.h:
4109         * ParagraphParameters.h:
4110         * ParameterStruct.h: change type of depth to unsigned int ==
4111         depth_type. Many adaptations to other files before of that.
4112
4113 2001-06-24  The LyX Project  <Asger>
4114
4115         * Fix Qt compilation.
4116
4117 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4118
4119         * paragraph.h: renamed several methods to begin with small letter.
4120         several changes to many parts of the code because of this.
4121
4122 2001-06-23  The LyX Project  <jug@sad.it>
4123
4124         * text2.C (InsertStringAsLines): renamed from InsertStringA;
4125         rewritten to discard all double spaces when KeepEmpty is off
4126         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
4127         to only handle newlines but not fiddle with spaces and friends.
4128
4129         * lyxfunc.C (MenuNew): when doing 'new from template', use
4130         template_path as default directory
4131
4132 2001-06-23  The LyX Project  <Asger>
4133
4134         * Clean-up of header file includes all over
4135         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
4136
4137 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4138
4139         * paragraph.h: renamed from lyxparagraph.h
4140
4141 2001-06-23  Asger  <lyx@violet.home.sad.it>
4142
4143         * Buffer.h: Removed Buffer::resize
4144         * BufferList.h: Removed BufferList::resize
4145         * LyXView.h: Added LyXView::resize. This way, we will only reflow
4146         the document lazily when we change the width, or the font settings.
4147
4148 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
4149
4150         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
4151
4152 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
4153
4154         * buffer.h: remove out of date comment
4155
4156 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
4157
4158         * lyxscreen.h:
4159         * screen.C: fix "theoretical" GC leak
4160
4161 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4162
4163         * LaTeX.C (scanAuxFile):
4164         (deplog): remove trailing \r when reading stream (useful under
4165         win32)
4166
4167 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
4168
4169         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
4170         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
4171         and BufferView::theLockingInset(Inset*), so should use them and not
4172         access bv_->text->the_locking_inset directly.
4173
4174         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
4175
4176 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
4177
4178         * Makefile.am:
4179         * tex-defs.h: remove old unused file
4180
4181 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
4182
4183         * BufferView_pimpl.C: fix typo, remove minibuffer message
4184           when buffer has loaded
4185
4186 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4187
4188         * lyxfunc.C (Dispatch): use stringstream
4189         (MenuNew): use stringstream
4190         (Open): use stringstream
4191
4192         * importer.C (Import): use stringstream
4193
4194         * bufferview_funcs.C (CurrentState): use stringstream
4195
4196         * LaTeX.C (run): use stringstream
4197
4198         * BufferView_pimpl.C (savePosition): use stringstream
4199         (restorePosition): use stringstream
4200         (MenuInsertLyXFile): use stringstream
4201
4202 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
4203
4204         * BufferView.C:
4205         * Bullet.C:
4206         * ColorHandler.C:
4207         * FontInfo.C:
4208         * FontLoader.C:
4209         * LColor.C:
4210         * LaTeXFeatures.C:
4211         * Painter.C:
4212         * gettext.C:
4213         * lyx_gui_misc.C:
4214         * lyxserver.C:
4215         * vspace.C: removed // -*- C++ -*- as first line.
4216
4217         * lyxfind.h:
4218         * version.h: added // -*- C++ -*- as first line.
4219
4220 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4221
4222         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
4223
4224         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
4225         of string
4226
4227 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4228
4229         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
4230         of floats.
4231
4232 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4233
4234         * gettext.C: include LString.h even when --disable-nls is on.
4235
4236 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
4237
4238         * converter.h (Get): changed argument type from int to
4239         FormatList::size_type to avoid unnecessary conversion.
4240
4241         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
4242         before using it.
4243
4244 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4245
4246         * gettext.h: include LString.h even when --disable-nls is on.
4247
4248 2001-06-07  Juergen Vigna  <jug@sad.it>
4249
4250         * text.C (BreakAgain): subst spaces with tabs.
4251
4252         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
4253         (resizeInsetsLyXText): set force on resizeLyXText.
4254
4255 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4256
4257         * gettext.h (gettext_init):
4258         (locale_init): use a real definition instead of a macro
4259
4260 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
4261
4262         * Bufferview_pimpl.C:
4263         * LColor.h:
4264         * LColor.C: further lcolor tidies
4265
4266 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4267
4268         * BufferView_pimpl.C (updateScrollbar): simplify.
4269
4270         * BufferView2.C: don't include insets/insetinfo.h, change
4271         prototype for insertInset and call the Pimpl version. let
4272         updateInset call Pimpl version.
4273
4274         * BufferView.h: move inset_slept to BufferView::Pimpl, move
4275         gotoInset to BufferView::Pimpl
4276
4277 2001-06-01  Juergen Vigna  <jug@sad.it>
4278
4279         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
4280         inside a LockingInset (is the update needed at all?).
4281
4282 2001-05-31  Juergen Vigna  <jug@sad.it>
4283
4284         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
4285         here not the old one otherwise how should we compare it afterwards
4286         if it's the same!
4287
4288 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4289
4290         * lyxfont.C:
4291         * tabular.C:
4292         * tabular-old.C:
4293         * FontInfo.C: bring C functions into global namespace when
4294         necessary
4295
4296 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4297
4298         * LString.h: make sure config.h has been loaded before LString.h.
4299
4300         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
4301         (one for each char read by EatLine!).
4302
4303         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
4304         variables.
4305
4306 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4307
4308         * paragraph.C (BreakParagraph): set the inset_owner in the new par
4309         to the same as the par we break from
4310
4311 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4312
4313         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
4314
4315         * MenuBackend.C (expand): also create menu entries for wide
4316         versions of the floats.
4317
4318         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
4319
4320         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
4321
4322         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
4323         frontends/Makefile.am
4324
4325         * text2.C: adjust
4326         * text.C: adjust
4327
4328
4329         * tabular.C (getTokenValue): add std::
4330
4331         * tabular-old.C (getTokenValue): add std::
4332         (getTokenValue): ditto
4333         (getTokenValue): ditto
4334
4335         * screen.C (ToggleSelection): adjust
4336
4337         * lyxtext.h: put selection cursors inside a Selection struct.
4338
4339         * lyxfunc.C (moveCursorUpdate): adjust
4340
4341         * lyxfont.C (latexWriteStartChanges): add std::
4342
4343         * lyxfind.C: adjust
4344
4345         * font.h: delete with(char const *, LyXFont const &)
4346
4347         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
4348
4349         * FontInfo.C (getFontname): add std::
4350
4351         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
4352         (workAreaButtonPress): adjust
4353         (tripleClick): adjust
4354         (update): adjust
4355         (moveCursorUpdate): adjust
4356         (Dispatch): adjust
4357
4358         * BufferView2.C (gotoInset): adjust
4359
4360 2001-05-30  Juergen Vigna  <jug@sad.it>
4361
4362         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
4363         to check pspell I add this as default as I now have new pspell
4364         libraries and they seem to use this.
4365
4366 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4367
4368         * text2.C (CutSelection): make the cursor valid before the call to
4369         ClearSelection.
4370
4371 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4372
4373         * kbsequence.C (parse): de-uglify a bit the parsing code, which
4374         relied on 0 terminated strings and other horrors. Bug found due to
4375         the new assert in lyxstring!
4376
4377         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
4378         KP_ keys.
4379
4380 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4381
4382         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
4383         to latinkeys.bind.
4384
4385         * lyxfunc.C (processKeySym): change method of getting to the
4386         self-insert char.
4387
4388         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
4389         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
4390         * BufferView_pimpl.[Ch]: here as private methods.
4391
4392 2001-05-28  Juergen Vigna  <jug@sad.it>
4393
4394         * text.C (SetHeightOfRow): added the update() call again as it is
4395         needed to initialize inset dimensions!
4396
4397 2001-05-16  Juergen Vigna  <jug@sad.it>
4398
4399         * text2.C (SetCharFont): Add new function with BufferView * and
4400         bool toggleall parameters for setting insets internal fonts.
4401         (SetFont): Freeze the undo as we may change fonts in Insets and
4402         all this change should be inside only one Undo!
4403
4404         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
4405         setting font's in insets as for them we have the SetFont function!
4406
4407 2001-05-15  Juergen Vigna  <jug@sad.it>
4408
4409         * text2.C (ClearSelection): to be sure we REALLY don't have any
4410         selection anymore!
4411
4412         * tabular.C (TeXCellPreamble): fixed the left border problem for
4413         multicolumn cells.
4414
4415 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
4416
4417         * LaTeX.C (deplog): Make sure that the main .tex file is in the
4418         dependancy file
4419
4420 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4421
4422         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
4423         LFUN_BREAKPARAGRAPH.
4424
4425         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
4426         help test to "internal only", similar for LFUN_INSERT_URL
4427
4428         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
4429         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
4430         auto_region_delete and deadkeys.
4431
4432 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
4433
4434         * LColor.h:
4435         * LColor.C: remove some dead entries, tidy a little
4436
4437 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4438
4439         * lyxfunc.C (processKeySym): comment the Escape handling, remove
4440         commented code.
4441         (Dispatch): implement LFUN_ESCAPE
4442
4443         * commandtags.h: add LFUN_ESCAPE
4444
4445         * LyXAction.C (init): add entry for LFUN_ESCAPE
4446
4447         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
4448         Remove commented code.
4449         (insertNote): moved here
4450         (open_new_inset): moved here
4451
4452         * BufferView[2].[Ch]: move insertNote and open_new_inset to
4453         BufferView_pimpl
4454
4455 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4456
4457         * kbmap.C (findbinding): clean it up and make it work correctly.
4458
4459         * lyx_main.C (init): do not pass argc and argv as parameters
4460
4461 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
4462
4463         * buffer.C: fix path for OS/2 & Win32
4464
4465         * lyx_gui.C:
4466         * lyx_main:
4467         * lyx_main.C: Added os:: class.
4468
4469         * os2_defines.h: update
4470
4471 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4472
4473         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
4474         better by trying again with reduced state.
4475
4476 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4477
4478         * lyxrc.C (read): print error about invalid key sequence only when
4479         debugging (because not all latinX keysyms are known to some X
4480         servers)
4481
4482         * kbsequence.C (getiso): add a few std:: qualifiers
4483         (getiso): comment out extra return statement.
4484
4485 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4486
4487         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
4488         handling.
4489         (Dispatch): enhance the accent inset a bit. (not perfect)
4490
4491 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4492
4493         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
4494
4495 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4496
4497         * bufferlist.C (emergencyWrite): fix assert() call
4498
4499 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
4500
4501         * text.C (InsertChar): Added trivial patch to only send the "you
4502         can not do multiple spaces this way" message once during a
4503         session.
4504
4505 2001-05-08  Baruch Even  <baruch@lyx.org>
4506
4507         * Makefile.am: Changed order of libraries to get LyX to link properly
4508         with the gnome frontend.
4509
4510 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4511
4512         * LaTeXFeatures.h: add a std:: qualifier
4513
4514 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4515
4516         * paragraph.C (String): use stringstream
4517
4518 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4519
4520         * paragraph.C (writeFile): remove footflag arg
4521
4522         * buffer.C (makeLaTeXFile): use stringstream
4523         (latexParagraphs): remove footnot gurba
4524
4525         * LaTeXFeatures.C (getPackages): use stringstream
4526         (getMacros): likewise
4527         (getTClassPreamble): likewise
4528         (getFloatDefinitions): new method
4529
4530         * paragraph.C (writeFile): reindent
4531         (Erase): reindent
4532
4533         * WorkArea.h: revert the xpos + etc changes.
4534
4535         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
4536
4537         * lyxparagraph.[Ch]: add copy constructor, remove Clone
4538
4539         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
4540         (pasteSelection): likewise
4541         * text2.C (CreateUndo): likewise
4542
4543 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4544
4545         * minibuffer.C (peek_event): temporarily reduce the functionality
4546         of the minibuffer (to allow args on lfuns)
4547
4548         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
4549         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
4550
4551         * buffer.C (readInset): add compability reading of old float
4552         lists, add reading of new style float list.
4553         (readInset): avoid reevaluation of inscmd.getCmdName()
4554         (getLists): reindent
4555
4556         * MenuBackend.C (MenuItem): implement parsing of
4557         md_floatlistinsert and md_floatinsert.
4558         (expand::LastFiles): move initalizaton of iterators out of loop,
4559         avoid reevaluation.
4560         (expand::Documents): introduce typdedef vector<string> Strings,
4561         and use it.
4562         (expand::ExportFormats): introduce typedef vector<Format const *>
4563         Formats, and use it.
4564         (expand): implement FloatListInsert and FloatInsert.
4565
4566         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
4567         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
4568         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
4569
4570         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
4571         handling.
4572         (Dispatch::LFUN_FLOAT_LIST): implement
4573
4574 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
4575
4576         * LaTeX.C (run): Fix problem with --export code.
4577
4578 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
4579
4580         * BufferView.[Ch] (workarea): removed.
4581         (getClipboard) new method; wrapper for workarea()->getClipboard()
4582
4583         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
4584         bug.
4585
4586         * WorkArea.h (width, height, xpos, ypos): These methods all
4587         returned the dimensions of the work_area sub-area of WorkArea,
4588         resulting in a position error if the WorkArea were resized. Now
4589         return the dimensions of the entire WorkArea.
4590
4591         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
4592
4593 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4594
4595         * LaTeX.C (deplog): correct the syntax of regex reg1
4596
4597 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4598
4599         * undo.C: remove !NEW_INSETS cruft
4600
4601 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4602
4603         * text2.C: remove !NEW_INSETS cruft
4604
4605         * text.C: remove !NEW_INSETS cruft
4606
4607         * tabular.C: remove !NEW_INSETS cruft
4608
4609         * spellchecker.C: remove !NEW_INSETS cruft
4610
4611         * lyxtext.h: remove !NEW_INSETS cruft
4612
4613         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
4614
4615         * lyxfunc.C: remove !NEW_INSETS cruft
4616
4617         * lyxfind.C: remove !NEW_INSETS cruft
4618
4619         * lyx_cb.C: remove !NEW_INSETS cruft
4620
4621         * figureForm.C: remove  !NEW_INSETS cruft
4622
4623         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
4624
4625         * buffer.[Ch]: remove !NEW_INSETS cruft
4626
4627         * ToolbarDefaults.C: remove !NEW_INSETS cruft
4628
4629         * CutAndPaste.C: remove !NEW_INSETS cruft
4630
4631         * BufferView_pimpl.C: remove !NEW_INSETS cruft
4632
4633         * BufferView2.C: remove !NEW_INSETS cruft
4634
4635         * BufferView.h: remove !NEW_INSETS cruft
4636
4637 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4638
4639         * Lsstream.h: include LString.h before the sstream headers to
4640         fix problem with gcc 2.95.3 and lyxstring
4641
4642 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4643
4644         * lyx_main.C: add using directives when needed for C functions
4645         declared in std:: namespace.
4646
4647 2001-04-27  Juergen Vigna  <jug@sad.it>
4648
4649         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
4650         (SetHeightOfRow): comment out the update call should not be needed!
4651
4652 2001-04-13  Juergen Vigna  <jug@sad.it>
4653
4654         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
4655         (LyXTabular): tried to minimize operator= operations (and realized
4656         hopfully Lars wish).
4657
4658 2001-04-27  Juergen Vigna  <jug@sad.it>
4659
4660         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
4661
4662 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4663
4664         * lyxfunc.C (Dispatch): hack to make listof algorithm work
4665
4666         * buffer.C (readInset): hack to make listof algorithm work
4667
4668         * BufferView_pimpl.C: hack to make listof algorithm work
4669
4670 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4671
4672         * LyXAction.C: removed all !NEW_INSETS cruft
4673         (init): moved lfun_item in method
4674
4675         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
4676
4677 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
4678
4679         * BufferView2.C (theLockingInset): white space.
4680
4681 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4682
4683         * minibuffer.C: include <iostream>
4684
4685         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
4686
4687         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
4688
4689         * commandtags.h: add LFUN_TRANSPOSE_CHARS
4690
4691         * text.[Ch] (TransposeChars): new method
4692
4693 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4694
4695         * call message directly through LyXView instead of through LyXFunc
4696         * BufferView2.C: adjust
4697         * BufferView_pimpl.C: adjust
4698         * FontLoader.C: adjust
4699         * buffer.C: adjust
4700         * bufferview_funcs.C: adjust
4701         * converter.C: adjust
4702         * figureForm.C: adjust
4703         * importer.C: adjust
4704         * lyx_cb.C: adjust
4705         * lyx_gui_misc.C: adjust
4706         * lyxfunc.C: adjust
4707         * lyxvc.C: adjust
4708         * text2.C: adjust
4709         + more files in subdirs
4710
4711         * lyxparagraph.h (size): move up int file
4712         (GetLayout): ditto
4713
4714         * adjust all uses of Assert to lyx::Assert.
4715
4716         * BufferView2.C (ChangeCitationsIfUnique): adjust for
4717         lyxfunctional in namespace lyx
4718         * layout.C (hasLayout): ditto
4719         (GetLayout): ditto
4720         (GetLayout): ditto
4721         (delete_layout): ditto
4722         (NumberOfClass): ditto
4723         * converter.C (GetFormat): ditto
4724         (GetNumber): ditto
4725         (Add): ditto
4726         (Delete): ditto
4727         (SetViewer): ditto
4728         * bufferlist.C (getFileNames): ditto
4729         (emergencyWriteAll): ditto
4730         (exists): ditto
4731         (getBuffer): ditto
4732         * MenuBackend.C (hasSubmenu): ditto
4733         (hasMenu): ditto
4734         (getMenu): ditto
4735         * BufferView_pimpl.C (getInsetByCode): ditto
4736
4737 2001-04-18  Juergen Vigna  <jug@sad.it>
4738
4739         * vspace.C (asLatexString): fixed the 100% problem.
4740
4741 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4742
4743         * lyxfunc.C (Dispatch):
4744         * minibuffer.C:
4745         * minibuffer.h: add a few std:: qualifiers
4746
4747 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4748
4749         * minibuffer.[Ch]: reimplement so that commands is initiated and
4750         run from lyxfunc, simplified som handling, and made the completion
4751         and history code for complete. wip.
4752
4753         * lyxfunc.C (processKeySym): call message
4754         (miniDispatch): new temporary method
4755         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
4756         (LFUN_MESSAGE): implement
4757         (LFUN_MESSAGE_PUSH): implement
4758         (LFUN_MESSAGE_POP): implement
4759         (initMiniBuffer): the initial/defualt minibuffer message.
4760
4761         * lyxfont.[Ch]: inline some more getters
4762
4763         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
4764
4765         * lyx_gui_misc.[Ch] (WriteStatus): remove method
4766
4767         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
4768         (AutoSave): use LFUN_MESSAGE
4769         (Reconfigure): ditto
4770
4771         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
4772
4773         * figureForm.C: use LFUN_MESSAGE
4774
4775         * converter.C (runLaTeX): use LFUN_MESSAGE
4776
4777         * bufferview_funcs.C: use LFUN_MESSAGE
4778         (Melt): ditto
4779         (changeDepth): ditto
4780
4781         * bufferparams.h: use boost::
4782
4783         * bufferlist.h: inherit privately from noncopyable
4784
4785         * bufferlist.C (loadLyXFile): remove some commented code.
4786
4787         * buffer.C (runChktex): use LFUN_MESSAGE
4788
4789         * ShareContainer.h: inherit privately from noncopyable
4790
4791         * ParagraphParameters.[hC] (depth): inline it.
4792
4793         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
4794         methods.
4795         (message): new method
4796         (messagePush): ditto
4797         (messagePop): ditto
4798         (show): init minibuffer
4799         (showState): direct call
4800
4801         * LaTeX.[Ch]: inherit privately from noncopyable
4802         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
4803         instead of WriteStatus.
4804
4805         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
4806
4807         * BufferView_pimpl.C (buffer): don't init minibuffer
4808         (workAreaButtonPress): use LFUN_MESSAGE
4809         (workAreaButtonRelease): ditto
4810         (savePosition): ditto
4811         (restorePosition): ditto
4812         (MenuInsertLyXFile): ditto
4813         (workAreaExpose): don't init minibuffer
4814         (update): remove commented code, simplify
4815
4816         * BufferView2.C (openStuff): use LFUN_MESSAGE
4817         (toggleFloat): ditto
4818         (menuUndo): ditto
4819         (menuRedo): ditto
4820         (copyEnvironment): ditto
4821         (pasteEnvironment): ditto
4822         (copy): ditto
4823         (cut): ditto
4824         (paste): ditto
4825         (gotoInset): ditto
4826         (updateInset): remove some commented code
4827
4828         * lastfiles.h: inherit privately from noncopyable
4829         * layout.h: ditto
4830         * lyx_gui.h: ditto
4831         * lyx_main.h: ditto
4832         * lyxlex.h: ditto
4833         * lyxlex_pimpl.h: ditto
4834
4835         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
4836         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
4837         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
4838
4839         * LyXAction.h: inherit privately from noncopyable, add methods
4840         func_begin, func_end, returning iterators to the func map.
4841
4842         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
4843         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
4844         (func_begin): new method
4845         (func_end): new method
4846
4847         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
4848         and not)
4849         (copySelection): ditto
4850         (pasteSelection): ditto
4851
4852         * BufferView.C: whitespace change
4853         * BufferView.h: inherit privately from noncopyable
4854
4855 2001-04-16  Allan Rae  <rae@lyx.org>
4856
4857         * tabular-old.C (l_getline):
4858         * spellchecker.C (sc_check_word):
4859         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
4860         an unrecognised preprocessor directive.  So ensure they're wrapped.
4861
4862 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
4863
4864         * src/exporter.C (Export): Give an error message when path to file
4865         contains spaces.
4866
4867 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
4868
4869         * LaTeX.C (deplog): Always check that foundfile exists.
4870
4871 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4872
4873         * lyx_main.h:
4874         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
4875
4876 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4877
4878         * tabular.[Ch] (getLabelList): implement new method
4879
4880         * minibuffer.h: comment ouf setTiimer
4881
4882         * minibuffer.C (ExecutingCB): constify res
4883         (peek_event): constify s
4884         (Set): constify ntext
4885         (Init): constify nicename
4886
4887         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
4888
4889         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
4890         (savePosition): use two params to Minibuffer::Set
4891         (restorePosition): ditto
4892
4893 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4894
4895         * lyx_main.C: include language.h
4896
4897         * Makefile.am (lyx_main.o): add language.h
4898
4899 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4900
4901         * exporter.C:
4902         * paragraph.C:
4903         * screen.C:
4904         * tabular.C:
4905         * CutAndPaste.C: include gettext.h
4906
4907         * lyxfont.h: remove old hack with ON and OFF.
4908
4909         * lyxparagraph.h:
4910         * lyxfont.h: do not include language.h...
4911
4912         * BufferView2.C:
4913         * LaTeXFeatures.C:
4914         * Painter.C:
4915         * bufferview_funcs.C:
4916         * font.C:
4917         * lyxfont.C:
4918         * text.C:
4919         * text2.C:
4920         * trans_mgr.C:
4921         * paragraph.C: ... but do it here instead
4922
4923 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4924
4925         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
4926
4927         * tabular.C: small reformat
4928
4929         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
4930         NEW_INSETS version
4931         (GetChar): ditto
4932         (BreakParagraph): ditto
4933         (SetOnlyLayout): ditto
4934         (SetLayout): ditto
4935
4936         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
4937         with one arg less.
4938
4939         * lastfiles.C: removed most using decl, add std:: where needed
4940
4941         * buffer.C: ws changes
4942
4943         * MenuBackend.C (class compare_format): put into anon namespace
4944         (expand): constify label, names, action, action2
4945         (expand):
4946
4947         * text.C (SingleWidth): constify font
4948         (IsBoundary): constify rtl2
4949         (GetVisibleRow): constify ww
4950
4951         * LaTeX.C (deplog): constify logfile
4952
4953         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
4954         start_x, end_x
4955         (workAreaExpose): constify widthChange, heightChange
4956
4957         * lyxrow.C (par): moved
4958         (height): moved
4959         (next): moved
4960         * lyxrow.h: as inlines here
4961
4962         * lyxfont.h (shape): moved from lyxfont.C
4963         (emph): moved from lyxfont.C
4964
4965         * lyxfont.C (LyXFont): use initialization list for all
4966         constructors
4967         (shape): move to lyxfont.h as inline
4968         (emph): move to lyxfont.h as inline
4969
4970
4971 2001-04-04  Juergen Vigna  <jug@sad.it>
4972
4973         * vspace.C: had to include stdio.h for use of sscanf
4974
4975 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
4976
4977         * BufferView.h:
4978         * BufferView_pimpl.h: remove xforms cruft. Both classes are
4979         independent of xforms.
4980
4981 2001-04-02  Juergen Vigna  <jug@sad.it>
4982
4983         * spellchecker.C: fixed namespace placing!
4984
4985 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
4986
4987         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
4988         the LyXParagraph * is 0.
4989
4990 2001-03-29  Juergen Vigna  <jug@sad.it>
4991
4992         * vspace.C: added support for %, c%, p%, l%.
4993         (stringFromUnit): added helper function.
4994         (asLatexString): changed to give right results for the %-values.
4995
4996         * buffer.C: convert the widthp in a width%.
4997
4998 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
4999
5000         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
5001         figureForm.[Ch].
5002
5003         * figureForm.[Ch]: stripped the FD_from_figure manipulation
5004         code out of lux_cb.[Ch], ready for its (imminent?) removal.
5005
5006         * lyx_cb.[Ch]: see above.
5007
5008         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
5009         form1.[Ch].
5010
5011         * form1.[Ch]:
5012         * lyx.[Ch]: replaced by figure_form.[Ch].
5013
5014         * lyx_gui.C:
5015         * lyx_gui_misc.C:
5016         * lyxfunc.C: changed headers associated with above changes.
5017
5018 2001-03-27  Juergen Vigna  <jug@sad.it>
5019
5020         * BufferView_pimpl.C: set the temporary cursor right!
5021
5022 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
5023
5024         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
5025
5026 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
5027
5028         * LString.h: removed "using std::getline"!
5029
5030         * BufferView_pimpl.C (Dispatch): changes due to changes in
5031         InsetInclude::Params.
5032
5033         * buffer.C (tag_name): removed redundant break statements as they were
5034         producing lots of warnings with my compiler.
5035
5036 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5037
5038         * LString.h: add "using std::getline" when using the real <string>.
5039
5040 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
5041
5042         * buffer.C: removed bitset usage.
5043         PAR_TAG moved to an anonymous name space.
5044         (tag_name): new funtion, also in the anonymous namespace.
5045         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
5046         (makeDocBookFile): clean code. Completed transition from string arrays
5047         to string vectors.
5048         (SimpleDocBookOnePar): code clean.
5049
5050 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
5051
5052         * tabular.C: add some comments.
5053
5054 2001-03-22  Juergen Vigna  <jug@sad.it>
5055
5056         * buffer.C (parseSingleLyXformat2Token): redone the minipage
5057         compatibility read a bit and fixed bug with minipage in different
5058         depth.
5059
5060 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
5061
5062         * buffer.C (pop_tag): removed.
5063         (push_tag): removed.
5064         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
5065         array replaced with vector. Added support for CDATA sections.
5066         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
5067         at any nest level.
5068         (makeDocBookFile): XML conformant declaration of CDATA section,
5069         fixed bug related to <emphasis> in the first paragraph char.
5070         (sgmlOpenTag): exclude empty tags.
5071         (sgmlCloseTag): ditto.
5072
5073         * buffer.h (pop_tag): removed.
5074         (push_tag): removed.
5075
5076 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
5077
5078         * language.h (Languages): added size_type and size().
5079
5080 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
5081
5082         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
5083         response on compability reading of minipages. One probliem is that
5084         the old usage of minipages was «flertydig»
5085
5086         * several files here and in subdirs: don't use static at file
5087         scope use anon namespaces instead.
5088
5089 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
5090
5091         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
5092         LaTeX output. This is necessary for Literate document
5093         processing.
5094
5095 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
5096
5097         * buffer.C: insert hfill when needed.
5098
5099         * tabular.C (l_getline): use string::erase, small whitespace change.
5100
5101         * BufferView_pimpl.C: try the anon namespace.
5102         * WorkArea.C: ditto
5103
5104 2001-03-16  Juergen Vigna  <jug@sad.it>
5105
5106         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
5107         otherwise it won't open options-dialogs.
5108
5109         * buffer.C: honor pextraWidth(p) on converting minipages.
5110
5111         * tabular.C (l_getline): changed the functions to strip trailing \r.
5112
5113 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
5114
5115         * BufferView_pimpl.C:
5116         * minibuffer..C: added "using SigC::slot" declaration.
5117
5118 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
5119
5120         * lyxlex_pimpl.h: noncopyable is in namespace boost.
5121
5122         * text2.C: ditto
5123
5124         * text.C: ditto
5125
5126         * paragraph.C: ditto
5127
5128         * lyxtext.h: NO_PEXTRA
5129
5130         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
5131
5132         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
5133         * ParameterStruct.h: ditto
5134         * ParagraphParameters.h: ditto
5135         * lyxparagraph.h: ditto
5136
5137 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
5138
5139         * buffer.C: add compability for minipage alignment.
5140         (latexParagraphs): remove unwanted pextra check.
5141
5142         * several files: remove CXX_WORKING_NAMESPACES
5143
5144         * buffer.C (pop_tag): tie is in namespace boost
5145
5146         * BufferView.h: noncopyable is in namespace boost
5147         * lyxlex.h: ditto
5148         * lyx_main.h: ditto
5149         * lyx_gui.h: ditto
5150         * layout.h: ditto
5151         * lastfiles.h: ditto
5152         * bufferlist.h: ditto
5153         * ShareContainer.h: ditto
5154         * LyXView.h: ditto
5155         * LyXAction.h: ditto
5156         * LaTeX.h: ditto
5157
5158 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
5159
5160         * Merging changes from BRANCH_MVC back into HEAD.
5161
5162         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
5163
5164 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
5165
5166         * BufferView_pimpl.C: change from intl.C
5167
5168         * combox.h:
5169         * combox.C:
5170         * Makefile.am: move combox.*
5171
5172         * form1.h:
5173         * form1.C:
5174         * lyx_gui.C:
5175         * intl.h:
5176         * intl.C: remove dialog (covered by prefs)
5177
5178 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
5179
5180         * lyxfunc.C (Dispatch): removed redundant break statement.
5181
5182 2001-03-14  Juergen Vigna  <jug@sad.it>
5183
5184         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
5185
5186 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
5187
5188         * buffer.C: add hack to fix compability reading of minipages.
5189
5190 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
5191
5192         * buffer.C (getLists): Cleanup.
5193
5194 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5195
5196         * lyxfont.C (update): don't honor toggleall on font size.
5197
5198 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
5199
5200         * bmtable.c:
5201         * bmtable.h:
5202         * Makefile.am: moved to frontends/xforms/
5203
5204         * lyx_gui_misc.C:
5205         * lyxfunc.C:
5206         * BufferView_pimpl.C: changes for moved mathpanel
5207
5208 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
5209
5210         * gettext.h: fix gettext_init() in --disable-nls
5211
5212 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5213
5214         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
5215
5216 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
5217
5218         * lyx.C:
5219         * lyx.h: strip external form
5220
5221 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
5222
5223         * BufferView_pimpl.C: add comment, destroySplash()
5224
5225 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
5226
5227         * BufferView_pimpl.C:
5228         * LyXAction.C:
5229         * buffer.C:
5230         * commandtags.h:
5231         * lyxfunc.C: use re-worked insetinclude
5232
5233 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
5234
5235         * buffer.C: add using std::stringstream.
5236
5237         * lyx_cb.C: readd using std::ios.
5238
5239         * buffer.C: add using std::map.
5240
5241         * BufferView_pimpl.C: add using std::vector.
5242
5243         * ShareContainer.h: add std:: to swap.
5244
5245         * buffer.h: add some typedefs
5246         * buffer.C (getLists): use them
5247         (getLists): renamed from getTocList.
5248         add a counter for the different float types and use it in the
5249         generated string.
5250         (getLists): use the same counter for the NEW_INSETS and the "non"
5251         NEW_INSETS
5252
5253         * lyx_cb.h: remove unused items, includes, using etc.
5254
5255         * ShareContainer.h: remove some commented code, add more comments
5256         and "documentation".
5257
5258 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
5259
5260         * buffer.C (getTocList): make the list also when NEW_INSETS is
5261         defined.
5262
5263         * buffer.h: remove TocType
5264
5265         * buffer.C (getTocList): change to return a map<string,
5266         vector<TocItem> >, implement for dynamic number of list.
5267
5268         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
5269         * text2.C (PasteSelection): adjust
5270         * CutAndPaste.C (pasteSelection): adjust
5271
5272         * FloatList.C (FloatList): update from the new_insets branch.
5273         * Floating.[Ch]: ditto
5274         * LaTeXFeatures.C: ditto
5275         * buffer.C: ditto
5276         * lyxlex_pimpl.C: ditto
5277
5278         * paragraph.C (Last): remove when NEW_INSETS is defined.
5279
5280         * other file: changes because of the above.
5281
5282 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
5283
5284         * lyxparagraph.h: rename next to next_, previous to previous_,
5285         make them private for NEW_INSETS. Rename Next() to next(),
5286         Previous() to previous().
5287
5288         * other files: changes because of the above.
5289
5290 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
5291
5292         * BufferView.h:
5293         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
5294         problem.
5295
5296 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5297
5298         * main.C (main): pass lyx_localedir to gettext_init().
5299
5300         * gettext.h: remove locale_init and gettext_init macros
5301
5302         * gettext.C (locale_init): new function
5303         (gettext_init): new function
5304
5305         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
5306         setlocale().
5307
5308 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
5309
5310         * Moved credits to frontends:
5311         * credits.[Ch]: removed
5312         * credits_form.[Ch]: removed
5313         * lyx_gui_misc.C: remove credits stuff
5314         * Makefile.am:
5315
5316 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
5317
5318         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
5319
5320         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
5321         unneeded destructor.
5322
5323         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
5324         a standalone pointer again.
5325
5326         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
5327
5328 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
5329
5330         * Makefile.am:
5331         * filedlg.h:
5332         * filedlg.C:
5333         * LyXAction.C:
5334         * ToolbarDefaults.C:
5335         * bufferlist.C:
5336         * commandtags.h:
5337         * form1.C:
5338         * form1.h:
5339         * lyx_cb.C:
5340         * lyx_cb.h:
5341         * lyxfunc.h:
5342         * lyxfunc.C:
5343         * BufferView_pimpl.C: use new file dialog in GUII
5344
5345         * lyx_cb.h:
5346         * lyx_cb.C: remove LayoutsCB to Toolbar
5347
5348 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5349
5350         * ShareContainer.h (get): add std:: qualifier
5351
5352 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5353
5354         * ShareContainer.h: define a proper ShareContainer::value_type
5355         type (and use typename to please compaq cxx)
5356
5357 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
5358
5359         * lyxparagraph.h: move serveral local vars to
5360         ParameterStruct/ParagraphParameters., use ShareContainer in
5361         FontTable., make vars in FontTable private and add getter and
5362         setter.
5363
5364         * paragraph.C: changes because of the above.
5365
5366         * lyxfont.h: remove copy constructor and copy assignment. (the
5367         default ones is ok), move number inside FontBits. move inlines to
5368         lyxfont.C
5369
5370         * lyxfont.C: add number to initializaton of statics, move several
5371         inlines here. constify several local vars. some whitespace
5372         cleanup. Dont hide outerscope variables.
5373
5374         * Spacing.h: add two new constructors to match the set methods.
5375
5376         * ShareContainer.h: new file, will perhaps be moved to support
5377
5378         * ParameterStruct.h: new file
5379
5380         * ParagraphParameters.h: new file
5381
5382         * ParagraphParameters.C: new file
5383
5384         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
5385         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
5386
5387         * BufferView_pimpl.C: ParagraphParameter changes.
5388         * buffer.C: Likewise.
5389         * bufferview_funcs.C: Likewise.
5390         * text.C: Likewise.
5391         * text2.C: Likewise.
5392
5393 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5394
5395         * lyxfind.C (LyXReplace): do not redefine default argument in
5396         implementation.
5397         (IsStringInText): ditto
5398         (SearchForward): ditto
5399         (SearchBackward): ditto
5400
5401 2001-03-06  Juergen Vigna  <jug@sad.it>
5402
5403         * lyxfind.C (IsStringInText): put parentes around expressions.
5404
5405 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
5406
5407         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
5408
5409 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
5410
5411         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
5412
5413         * stl_string_fwd.h: add comment
5414
5415         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
5416
5417         * tabular.h:
5418         * tabular.C: remove unused DocBook methods
5419
5420         * intl.C:
5421         * language.C:
5422         * paragraph.C:
5423         * buffer.C:
5424         killed DO_USE_DEFAULT_LANGUAGE
5425
5426 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5427
5428         * lyx_gui.C: do not include language.h.
5429
5430         * bufferview_funcs.C (ToggleAndShow): do not provide optional
5431         arguments in function implementation.
5432
5433 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
5434
5435         * BufferView_pimpl.C: add <ctime>
5436
5437 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
5438
5439         * BufferView_pimpl.C: add using std::find_if
5440
5441 2001-02-27  José Matos  <jamatos@fep.up.pt>
5442
5443         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
5444         by OnlyPath.
5445
5446 2001-02-11  José Matos  <jamatos@fep.up.pt>
5447
5448         * buffer.C (makeDocBookFile): command styles now have a parameter as
5449         "title" by default.
5450
5451 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
5452
5453         * layout_forms.[Ch]: removed
5454         * lyx_cb.[Ch]: out character
5455         * lyx_gui.C: out character
5456         * lyx_gui_misc.C: out character
5457         * bufferview_funcs.C: : out character,
5458         added toggleall as parameter in ToggleAndShow
5459
5460 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
5461
5462         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
5463
5464         * text2.C (SetCurrentFont): Disable number property at boundary.
5465
5466 2001-02-26  Juergen Vigna  <jug@sad.it>
5467
5468         * lyxfunc.C (getStatus): added a string argument override function so
5469         that this is correctly called from LyXFunc::Dispatch if it contains a
5470         do_not_use_argument which is used!
5471         (Dispatch): added check for "custom" export and call appropriate func.
5472
5473 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
5474
5475         * lyxrc.C: Add language_command_local, language_use_babel and
5476         language_global_options.
5477
5478         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
5479
5480         * buffer.C (makeLaTeXFile): Use language_use_babel and
5481         language_global_options.
5482
5483 2001-02-23  Juergen Vigna  <jug@sad.it>
5484
5485         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
5486         which works with LyXText and putted it inside BufferView. Here now we
5487         only call for that part the BufferView::Dispatch() function.
5488
5489         * BufferView.C (Dispatch): added.
5490
5491         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
5492         functions which needs to use a LyXText over from LyXFunc.
5493         (MenuInsertLyXFile): added
5494         (getInsetByCode): added
5495         (moveCursorUpdate): added
5496         (static TEXT): added
5497
5498 2001-02-22  Juergen Vigna  <jug@sad.it>
5499
5500         * BufferView_pimpl.C (update): call a status update to see if LyXText
5501         needs it.
5502
5503 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
5504
5505         * vc-backend.C (revert): implement for CVS
5506         (getLog): implement for CVS
5507
5508 2001-02-20  Juergen Vigna  <jug@sad.it>
5509
5510         * text2.C (ClearSelection): added BufferView param for inset_owner call
5511
5512         * lyxfunc.C (TEXT): added this function and use it instead of
5513         directly owner->view()-text of getLyXText().
5514
5515 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
5516
5517         * src/layout_forms.C: out preamble
5518         * src/layout_forms.h: out preamble
5519         * src/lyx_cb.C: out preamble
5520         * src/lyx_cb.h: out preamble
5521         * src/lyx_gui.C: out preamble
5522         * src/lyx_gui_misc.C: out preamble
5523         * src/lyxfunc.C: connect with guii preamble
5524
5525 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
5526
5527         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
5528
5529 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
5530
5531         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
5532         whether to run bibtex.
5533
5534 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
5535
5536         * Makefile.am (lyx_SOURCES): Remove BackStack.h
5537
5538 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
5539
5540         * Makefile.am (lyx_SOURCES): removed bibforms.h
5541
5542         * vspace.h: doxygen
5543
5544         * text.C (GetVisibleRow): make several local vars const
5545
5546         * tabular.C: small cleanup.
5547
5548         * lyxserver.C (callback): use compare instead of strncmp
5549
5550         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
5551         inlines to after class or to paragraph.C
5552
5553         * lyxfont.h: remove friend operator!=
5554
5555         * converter.h: move friend bool operator< to non friend and after
5556         class def.
5557
5558         * combox.h: small cleanup
5559
5560         * buffer.h: doxygen, remove unused constructor, move inclas inlies
5561         to inlines after class def.
5562
5563         * buffer.C (pop_tag): use string operations instead of strcmp
5564
5565         * bmtable.c: doxygen, small cleanup
5566
5567         * LaTeX.h: remove friend operator==
5568
5569 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
5570
5571         * screen.C:
5572         * lyxrc.[Ch]:
5573         * lyxfunc.C:
5574         * lyxfont.[Ch]:
5575         * lyx_cb.C:
5576         * intl.[Ch]:
5577         * commandtags.h:
5578         * buffer.C:
5579         * WorkArea.[Ch]:
5580         * LyXAction.C:
5581         * BufferView_pimpl.C:
5582         * BufferView.[Ch]: remove cruft
5583
5584 2001-02-14  Juergen Vigna  <jug@sad.it>
5585
5586         * lyxfunc.C: removed #if 0 unused code
5587
5588         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
5589
5590         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
5591
5592         * text2.C (SetSelection): added a BufferView * parameter
5593
5594 2001-02-13  Juergen Vigna  <jug@sad.it>
5595
5596         * lyxfunc.C (Dispatch): fixed protected blank problem.
5597         * BufferView2.C (protectedBlank): added LyxText * parameter.
5598
5599         * tabular.C (AppendRow): forgot to set row_info of newly added row.
5600         (AppendColumn): same as above for column_info.
5601
5602         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
5603         (moveCursorUpdate): use a LyXText param for support of InsetText.
5604
5605         * BufferView_pimpl.C (doubleClick): added support for InsetText.
5606         (tripleClick): ditto
5607
5608         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
5609
5610         * BufferView_pimpl.C (update): added LyXText param to honor insets.
5611
5612         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
5613
5614         * text2.C (SetSelection): set correct update status if inset_owner
5615         (ToggleFree): ditto
5616
5617 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
5618
5619         * tabular.C: remove some commented code.
5620
5621 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
5622
5623         * BufferView_pimpl.C: call hideSplash()
5624
5625         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
5626
5627         * include_form.h:
5628         * bibforms.h: remove
5629
5630         * lyxfunc.C:
5631         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
5632           add LFUN_CHILD_CREATE
5633
5634         * counters.h: fix tiny typo
5635
5636         * lyx_cb.C:
5637         * lyx.h:
5638         * lyx_gui.C:
5639         * lyx.C: move splash to frontends/xforms/
5640
5641         * lyx_gui_misc.C: move Include and Bibform to frontends
5642
5643         * lyxvc.h: clarify comment
5644
5645         * vspace.C: tiny housekeeping
5646
5647 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
5648
5649         * text.C (PrepareToPrint): RTL Fix.
5650
5651         * paragraph.C (GetUChar): New method.
5652         (String):  Use GetUChar.
5653
5654         * buffer.C (asciiParagraph): Use GetUChar.
5655
5656 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
5657
5658         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
5659
5660 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
5661
5662         * buffer.h:
5663         * buffer.C: rename to getLogName(), handle
5664           build log / latex log nicely
5665
5666 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5667
5668         * MenuBackend.C:
5669         * MenuBackend.h: remove support for reference menuitem type.
5670
5671 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
5672
5673         * BufferView_pimpl.C: housekeeping
5674         * BufferView_pimpl.h:
5675         * LyXView.h:
5676         * Makefile.am:
5677         * Timeout.C:
5678         * Timeout.h:
5679         * minibuffer.h: move Timeout GUI-I
5680
5681 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
5682
5683         * lyxrc.C (read): Update converters data-structures.
5684
5685 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
5686
5687         * LaTeX.h (operator!=): add operator != for Aux_Info
5688
5689 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
5690
5691         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
5692
5693         * LaTeXLog.C: deleted, useful code moved to Buffer
5694
5695         * buffer.h:
5696         * buffer.C: new function getLatexLogName()
5697
5698         * lyx_gui_misc.C:
5699         * lyx_gui.C:
5700         * lyxvc.C:
5701         * lyxvc.h:
5702         * lyxfunc.C: use frontends for LaTeX and VC logs
5703
5704 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5705
5706         * LaTeX.h: yet another std:: that Allan forgot.
5707
5708         * Variables.C (set): renamed from isset(), because this clashes
5709         with some HP-UX macros (grr).
5710
5711 2001-02-06  Allan Rae  <rae@lyx.org>
5712
5713         * LaTeX.h: Another bug fix.  Missing std:: this time.
5714
5715 2001-02-04  Allan Rae  <rae@lyx.org>
5716
5717         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
5718         floats problem. I've left it commented out because it's not quite
5719         correct.  It should also test that the current object is a table or
5720         figure inset.  But I haven't gotten around to figuring out how to do
5721         that.  I *think* it'll be something like: "table" == inset.type()
5722
5723         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
5724         bool.
5725
5726 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
5727
5728         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
5729         all the citation/databases/styles in the auxilary file.
5730         (run): Rerun latex if there was a babel language error.
5731
5732 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
5733
5734         * text.C (Backspace): Preserve the font when changing newline char
5735         with a space.
5736         (BreakParagraph): If the cursor is before a space, delete the space.
5737
5738         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
5739
5740 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
5741
5742         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
5743         new argument (code).
5744         (ChangeCitationsIfUnique): New method.
5745
5746         * paragraph.C (GetPositionOfInset): Handle bibkey.
5747
5748 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5749
5750         * BufferView_pimpl.h: change type of Position::par_pos to
5751         LyXParagraph::size_type.
5752
5753 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
5754
5755         * BufferView_pimpl.C (savePosition, restorePosition): Write
5756         messages to minibuffer.
5757
5758 2001-01-28  José Matos  <jamatos@fep.up.pt>
5759
5760         * buffer.C (makeDocBookFile): adds support for document language.
5761         A silly restriction on the name of LatexCommand types where removed.
5762         Added support for CDATA sections, allows to chars unescaped, used
5763         among others in code, to avoid escape < and >.
5764
5765 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
5766
5767         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
5768         saved positions instrad of a stack. Furthermore, a position is
5769         stored using paragraph id/paragraph position.
5770
5771         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
5772         Remove LFUN_REF_BACK.
5773
5774 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
5775
5776         * converter.C (dvipdfm_options): New method.
5777
5778 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
5779
5780         * vspace.C (isValidLength): Fix for empty input string.
5781
5782 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5783
5784         * LyXAction.C (init): change description of LFUN_FIGURE to
5785         "Insert Graphics"
5786
5787 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5788
5789         * LaTeX.C: add using directive
5790
5791 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
5792
5793         * MenuBackend.C (expand): Fix the sorting of the formats.
5794
5795 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
5796
5797         * lyx_main.C: tiny error message fix
5798
5799 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5800
5801         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
5802         calling fl_initialize(). This fixes the problem with ',' as
5803         decimal separator in text files.
5804
5805 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
5806
5807         * trans.C (process): Fix the keymap bug.
5808
5809 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
5810
5811         * LaTeX.C (scanAuxFiles): New method. Provides support for
5812         multiple bibliographies (when using the bibtopic/bibunits pacakges).
5813         (scanLogFile) Scan for "run BibTeX" messages.
5814
5815         * buffer.C (makeLaTeXFile): Do not load the ae package when using
5816         OT1 font encoding. Also, load the aecompl package if the ae
5817         package is loaded.
5818
5819         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
5820
5821 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5822
5823         * texrow.C (increasePos): turn two error messages into debug
5824         messages.
5825
5826 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
5827
5828         * LaTeX.C (scanAux): Handle the \@input macro.
5829         (runBibTeX): Use scanAux().
5830
5831         * language.C (latex_options_): New field.
5832
5833         * LaTeXFeatures.C (getMacros): Add language macros.
5834
5835         * buffer.C (makeLaTeXFile): Small fix.
5836
5837 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5838
5839         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
5840
5841         * text2.C: add a using directive.
5842
5843 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
5844
5845         * BufferView2.C:
5846         * lyx_gui_misc.h:
5847         * lyxfr1.C:
5848         * lyxfunc.C: kill LyXBell.
5849
5850 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
5851
5852         * text.C (IsBoundary): Remove the error message
5853
5854         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
5855
5856         * lyxrc.C (setDefaults): Correct initialization value for
5857         font_norm_type.
5858
5859 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
5860
5861         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
5862         gotoError().
5863
5864         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
5865         and GotoNextNote().
5866
5867         * src/LyXAction.C: Added reference-next.
5868
5869         * text.C (InsertChar): Use contains instead of strchr.
5870
5871         * lyx_cb.C (MenuInsertLabel): Enable default value code.
5872
5873 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
5874
5875         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
5876         alignment commands (when needed).
5877
5878         * text.C (InsertChar): Add ':' to number separator chars.