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