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