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