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