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