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