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