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