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