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