]> git.lyx.org Git - lyx.git/blob - src/ChangeLog
move counters to the layout files
[lyx.git] / src / ChangeLog
1 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
2
3         * text2.C (init): update counters after init
4         (insertParagraph): no need to set counter on idividual paragraphs.
5         (setCounter): access the counters object in the textclass object
6         on in the buffer object.
7         (updateCounters): ditto
8
9         * lyxtextclass.C: include counters.h, add variable ctrs_ as
10         shared_ptr<Counters> to avoid loading counters.h in all
11         compilation units.
12         (LyXTextClass): initialize ctrs_
13         (TextClassTags): add TC_COUNTER, and ...
14         (Read): use it here.
15         (CounterTags): new tags
16         (readCounter): new function
17         (counters): new funtion
18         (defaultLayoutName): return a const reference
19
20         * counters.C (Counters): remove contructor
21         (newCounter): remove a couple of unneeded statements.
22         (newCounter): simplify a bit.
23         (numberLabel): some small formatting changes.
24
25         * buffer.[Ch]: remove all traces of counters, move the Counters
26         object to the LyXTextClass.
27
28 2002-09-06  Alain Castera  <castera@in2p3.fr>
29
30         * tabular.C: uses \tabularnewline; uses >{...} construct from array
31         package to set the horizontal alignment on fixed width columns.
32
33         * lyx_sty.C:
34         * lyx_sty.h: added tabularnewline macro def.
35
36         * LaTeXFeatures.C: added NeedTabularnewline macro feature
37
38 2002-09-06  John Levon  <levon@movementarian.org>
39
40         * LyXAction.C: tooltips for sub/superscript
41
42         * MenuBackend.C: a bit more verbose
43
44         * lyxfunc.C: tiny clean
45
46         * undo_funcs.C: document undo_frozen
47
48 2002-09-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
49
50         * counters.C (Counters): add missing algorithm counter.
51
52         * text2.C (setCounter): lookup the counter with layouts latexname
53         instead of by section number.
54         (setCounter): use a hackish way to lookup the correct enum
55         counter.
56         a float name->type change
57         reset enum couners with counter name directly instead of depth value.
58
59         * counters.C (Counters): remove the push_backs, change to use the
60         float type not the float name.
61         (labelItem): remove unused string, float name->type change
62
63         * counters.h: don't include vector, loose the enums and sects vectors
64
65 2002-09-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
66
67         * lyxtextclass.C (TextClassTags): add TC_FLOAT
68         (Read): add float->TC_FLOAT to textclassTags
69         (Read): and handle it in the switch
70         (readFloat): new function
71
72         * FloatList.C (FloatList): comment out the hardcoded float
73         definitions.
74
75         * lyxlayout.h: ws change.
76
77 2002-08-29  Dekel Tsur  <dekelts@tau.ac.il>
78
79         * buffer.C (readFile): Look for lyx2lyx in LYXDIR/lyx2lyx/
80
81 2002-09-03  Angus Leeming  <leeming@lyx.org>
82
83         * BufferView_pimpl.h: qualified name is not allowed in member
84         declaration: WorkArea & Pimpl::workarea() const;
85
86         * factory.C: added using std::endl directive.
87
88         * text3.C: added using std::find and std::vector directives.
89
90 2002-08-29  André Pönitz <poenitz@gmx.net>
91
92         * lyxtext.h:
93         * text2.C: remove unused member number_of_rows
94
95         * Makefile.am:
96         * BufferView2.C: remove file, move contents to...
97         * BufferView.C: ... here
98
99         * BufferView_pimpl.C:
100         * factory.C: move more inset creation to factory
101
102         * vspace.C: avoid direct usage of LyXText, ws changes
103
104         * BufferView.[Ch]:
105                 don't provide direct access to WorkArea, use two simple
106                 acessors haveSelction() and workHeight() instead
107
108
109 2002-08-29  John Levon  <levon@movementarian.org>
110
111         * BufferView_pimpl.C (dispatch): do not continue when
112           no buffer
113
114 2002-08-28  André Pönitz <poenitz@gmx.net>
115
116         * commandtags.h: new LFUN_MOUSE_DOUBLE, LFUN_MOUSE_TRIPLE
117
118         * BufferView.h:
119         * BufferView_pimpl.[Ch] move work area mouse event to LFUNs
120
121 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
122
123         * buffer.C: increment LYX_FORMAT to 221
124
125         * lyxrc.[Ch]: declare display_graphics as grfx::DisplayType and use
126         grfx::displayTranslator.find(foo); include graphics/GraphicsTypes.h.
127
128         * lyxrc.C: use more "if (...) { } else { }" style (John's advice).
129
130         * lyx_main.C: call once the setDisplayTranslator(); is that okay here?
131
132 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
133
134         * factory.C (createInset): use LyXTextClass::floats
135
136         * MenuBackend.C (expandFloatListInsert):
137         (expandFloatInsert):
138         (expandToc):
139
140         * text2.C (setCounter):
141
142         * LaTeXFeatures.C (useFloat):
143         (getFloatDefinitions):
144
145         * BufferView_pimpl.C (dispatch): use LyXTextClass::floats()
146
147         * lyxtextclass.[Ch]: rename layoutlist to layoutlist_; add
148         floatlist_, with accessor floats().
149
150         * FloatList.h: remove global FloatList
151
152 2002-08-26  André Pönitz <poenitz@gmx.net>
153
154         * paragraph.[Ch]: Martin's patch for the \end_deeper bug
155
156         * BufferView.h:
157         * BufferView2.C:
158         * BufferView_pimpl.C:
159         * text3.C: mun hanfling of LFUN_CUT/COPY/PASTE to LyXText
160
161 2002-08-25  John Levon  <levon@movementarian.org>
162
163         * LyXAction.C: fix margin note description
164
165 2002-08-24  John Levon  <levon@movementarian.org>
166
167         * buffer.C:
168         * bufferlist.C:
169         * bufferview_funcs.C:
170         * lyxfont.C:
171         * undo_funcs.C: cleanups
172
173         * lyxfunc.C: disable CUT/COPY when no selection
174
175 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
176
177         * lyxlength.[Ch]: use better (three letters) mnemonics for percentage units
178         in "enum UNIT"; e.g. PTW for Percent of TextWidth
179
180         * lyxrc.C: graphics display is now monochrome|grayscale|color|none.
181         Add backward compatibility to "mono", "gray" and "no".
182
183 2002-08-24  Dekel Tsur  <dekelts@tau.ac.il>
184
185         * buffer.C (readFile): Always run lyx2lyx if file_format < LYX_FORMAT
186         (and file_format >= 200).
187
188 2002-08-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
189
190         * lyxlayout.C (Read): treat LT_OPTARGS as an integer, not a bool
191
192 2002-08-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
193
194         * lyxfunc.C (getStatus): handle LFUN_INSET_OPTARG
195
196 2002-08-20  Martin Vermeer  <martin.vermeer@hut.fi>
197
198         * BufferView_pimpl.C:
199         * LyXAction.C:
200         * buffer.C:
201         * commandtags.h:
202         * lyxfunc.C:
203         * paragraph.[Ch]:
204         * text2.C:
205         * insets/insetoptarg.[Ch]: Added "optional argument" collapsible
206         inset and code to make it  work with the paragraph code. The inset
207         can be anywhere in the paragraph, but will only do the expected
208         thing in LaTeX if the layout file contains the parameter line
209                         OptionalArgs    1
210         (or more generally, a nonzero value) for that layout.
211
212 2002-08-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
213
214         * paragraph.h: remove the declaration of undefined counters class
215         function.
216
217 2002-08-22  Martin Vermeer <martin.vermeer@hut.fi>
218
219         * text2.C (setCounter):  fixed enumeration mis-count as reported by
220         Dr. Richard Hawkins.
221
222 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
223
224         * paragraph_funcs.h: remove some unneeded includes
225
226         * text.C (backspace): pasteParagraph now in global scipe
227
228         * CutAndPaste.C (cutSelection): pasteParagraph now in global scope
229         (pasteSelection): ditto
230
231         * paragraph.[Ch] (pasteParagraph): move function to global scope ...
232         * paragraph_funcs.C (pasteParagraph): ... here
233
234 2002-08-20  André Pönitz <poenitz@gmx.net>
235
236         * commandtags.h: new LFUNs for swapping/copying table row/colums
237
238         * LyXAction.C:
239         * lyxfunc.C: support for new lfuns
240
241 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
242
243         * tabular.C:
244         * buffer.[Ch]: remove NO_COMPABILITY stuff
245
246 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
247
248         * boost.C (throw_exception): new file, with helper function for
249         boost compiled without exceptions.
250
251         * paragraph.h:
252         * lyxlength.C:
253         * buffer.C:
254         * ParameterStruct.h:
255         * ParagraphParameters.[Ch]: remove NO_PEXTRA_REALLY stuff
256
257         * bufferlist.C (emergencyWriteAll): use boost bind
258
259         * BufferView_pimpl.C (moveCursorUpdate): remove inline
260
261         * text.C: include paragraph_funcs.h
262         (breakParagraph): breakParagraph is now in global scope
263
264         * paragraph_funcs.[Ch]: new files
265
266         * paragraph.C (breakParagraph,breakParagraphConservative): move to
267         global scope
268
269         * buffer.C: include paragraph_funcs.h
270         (insertStringAsLines): breakParagraph is now in global scope
271
272         * Makefile.am (lyx_SOURCES): add paragraph_funcs.h and
273         paragraph_funcs.C
274
275         * CutAndPaste.C: include paragraph_funcs.h
276         (cutSelection): breakParagraphConservative is now in global scope
277         (pasteSelection): ditto
278
279         * buffer.h: declare oprator== and operator!= for
280         Buffer::inset_iterator
281
282         * bufferlist.C (emergencyWrite): don't use fmt(...)
283
284         * text3.C: add using std::endl
285
286         * BufferView.C (moveCursorUpdate): remove default arg
287
288 2002-08-20  André Pönitz <poenitz@gmx.net>
289
290         * buffer.[Ch]: move inline functions to .C
291
292         * BufferView2.C:
293         * BufferView_pimpl.C:
294         * text.C:
295         * buffer.[Ch]: use improved inset_iterator
296
297         * buffer.C:
298         * paragraph.[Ch]: write one paragraph at a time
299
300 2002-08-20  Dekel Tsur  <dekelts@tau.ac.il>
301
302         * BufferView_pimpl.C (dispatch): Insert insetbibtex with "plain"
303         style if style is not specified.
304
305 2002-08-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
306
307         * text2.C (setCounter): when searching for right label for a
308         caption, make sure to recurse to parent insets (so that a caption
309         in a minipage in a figure float works) (bug #568)
310
311 2002-08-20  André Pönitz <poenitz@gmx.net>
312
313         * text3.C: new file for LyXText::dispatch() and helpers
314
315         * BufferView.[Ch]: move text related stuff to LyXText::dispatch()
316
317         * funcrequest.[Ch]: add message() do avoid direct access to LyXFunc
318
319 2002-08-19  André Pönitz <poenitz@gmx.net>
320
321         * lyxtext.h:
322         * text.C: new LyXText::dispatch()
323
324         * BufferView_pimpl.C: move handling of LFUN_APPENDIX to LyXText
325
326 2002-08-18  Dekel Tsur  <dekelts@tau.ac.il>
327
328         * text.C (paintRowSelection): Fix code for rows with both RTL & LTR text.
329
330         * BufferView_pimpl.C (smartQuote): Insert typewriter quotes in
331         Hebrew text.
332
333 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
334
335         * Makefile.am: use $(variables) instead of @substitutions@
336
337 2002-08-15  André Pönitz <poenitz@gmx.net>
338
339         * lyxfunc.C:
340         * BufferView_pimpl.C: streamlining mathed <-> outer world
341         interaction
342
343         * commandtags.h:
344         * LyXAction.C: remove unused LFUN_MATH
345
346 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
347
348         * paragraph.[Ch]: add some NO_NEXT ifdefs.
349
350 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
351
352         * paragraph.C (Paragraph): reformat a bit
353         (cutIntoMinibuffer): use builtin InsetList function instad of
354         doing it manually.
355         (getInset): ditto
356
357         * buffer.C: include boost/bind.hpp, add using std::for_each
358         (writeFileAscii): use ParagraphList iterators
359         (validate): use for_each for validate traversal of paragraphs
360         (getBibkeyList): use ParagraphList iterators
361         (resizeInsets): use for_each to resizeInsetsLyXText for all
362         paragraphs.
363         (getParFromID): use ParagraphList iterators
364
365         * BufferView2.C (lockInset): use paragraph list and iterators
366
367 2002-08-14  John Levon  <levon@movementarian.org>
368
369         * lyxserver.C: remove spurious xforms include
370
371 2002-08-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
372
373         * lyxfunc.C (getStatus): disable math-extern outside of math mode
374
375 2002-08-13  André Pönitz <poenitz@gmx.net>
376
377         * LyXAction.[Ch]:
378         * lyxfunc.C: further cleaning
379
380 2002-08-13  André Pönitz <poenitz@gmx.net>
381
382         * funcrequest.h: new constructor
383
384         * funcrequest.C: move stuff here from .h
385
386         * Makefile.am:
387         * BufferView_pimpl.C:
388         * LyXAction.C:
389         * toc.C:
390         * lyxfunc.C: subsequent changes
391
392         * lyxfunc.h: new view() member function
393
394         * lyxfunc.C: subsequent changes
395
396 2002-08-13  Angus Leeming  <leeming@lyx.org>
397
398         * BufferView2.C:
399         * BufferView_pimpl.C:
400         * buffer.C:
401         * converter.C:
402         * importer.C:
403         * lyxfunc.C:
404         * lyxvc.C:
405         * toc.C:
406         * vc-backend.C:
407         changes due to the changed LyXView interface that now returns references
408         to member variables not pointers.
409
410 2002-08-13  Angus Leeming  <leeming@lyx.org>
411
412         * WordLangTuple (word, lang_code): return references to strings,
413         not strings.
414
415         * BufferView.h:
416         * SpellBase.h:
417         * lyxtext.h: forward-declare WordLangTuple.
418
419         * BufferView2.C:
420         * ispell.C:
421         * pspell.C:
422         * text.C: #include "WordLangTuple.h".
423
424         * lyxtext.h:
425         * text.C: (selectNextWordToSpellcheck): constify return type.
426
427 2002-08-12  Martin Vermeer <martin.vermeer@hut.fi>
428
429         * buffer.C:
430         * buffer.h:
431         * lyxtext.h:
432         * paragraph.C:
433         * paragraph_pimpl.h:
434         * text.C:
435         * text2.C:
436         * undo_funcs.C: replaced per-paragraph counter logic by per-buffer, as
437         suggested by Angus.
438         Made updateCounter always count from start of buffer, and removed
439         second argument (par).
440         Reverted floats number display to '#'. Perhaps I'll try again when the
441         code base is sanitized a bit.
442
443 2002-08-12  Angus Leeming  <leeming@lyx.org>
444
445         * buffer.[Ch] (getLabelList): constify.
446
447 2002-08-07  André Pönitz <poenitz@gmx.net>
448
449         * commandtags.h: new LFUN_MOUSE_(PRESS|MOTION|RELEASE)
450
451         * funcrequest.h: extension to keep mouse (x,y) position
452
453 2002-08-12  Juergen Vigna  <jug@sad.it>
454
455         * BufferView2.C (insertErrors): forbid undo when inserting error
456         insets.
457
458         * CutAndPaste.C (SwitchLayoutsBetweenClasses): ditto
459
460 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
461
462         * ParagraphList.[Ch]: new files
463
464         * Makefile.am (lyx_SOURCES): add ParagraphList.[Ch]
465
466         * BufferView2.C (lockInset): ParagraphList changes
467         * toc.C: ditto
468         * text2.C: ditto
469         * bufferlist.C: ditto
470         * buffer.h: ditto
471         * buffer.C: ditto
472
473 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
474
475         * paragraph_pimpl.h: remove inclusion of boost/array.hpp, remove
476         unused class variable counter_,
477
478         * paragraph.[Ch] (getFirstCounter): delete unused function
479
480         * counters.C: include LAssert.h
481         (reset): add a new function with no arg, change other version to
482         not have def. arg and to not allow empty arg.
483
484         * text2.C (setCounter): remove empty arg from call to Counters::reset
485
486 2002-08-11  John Levon  <levon@movementarian.org>
487
488         * Makefile.am: add WordLangTuple.h
489
490 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
491
492         * paragraph.C, ToolbarDefaults.h, kbsequence.h, lyx_main.C,
493         lyxfunc.C lyxlex_pimpl.C: ws changes only.
494
495         * insets/insettext.C: InsetList changes
496
497         * graphics/GraphicsSupport.C (operator()): InsetList changes
498
499         * toc.C (getTocList): InsetList changes
500
501         * paragraph_pimpl.[Ch]: InsetList changes
502
503         * paragraph.[Ch]: InsetList changes
504
505         * buffer.C (inset_iterator): InsetList changes
506         (setParagraph): ditto
507         * buffer.h (inset_iterator): ditto
508         * iterators.C (operator++): ditto
509         * iterators.h: ditto
510
511         * Makefile.am (lyx_SOURCES): add InsetList.C and InsetList.h
512
513         * InsetList.[Ch]: new files, most InsetList handling moved out of
514         paragraph.C.
515
516         * BufferView2.C (removeAutoInsets): InsetList changes
517         (lockInset): ditto
518         (ChangeInsets): ditto
519
520 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
521
522         * paragraph_pimpl.h (empty): new function
523
524         * paragraph.[Ch] (empty): new function
525
526         * other files: use the new Paragraph::empty function
527
528 2002-08-09  John Levon  <levon@movementarian.org>
529
530         * lyxtext.h: remove unused refresh_height
531
532 2002-08-09  John Levon  <levon@movementarian.org>
533
534         * Makefile.am:
535         * sgml.h:
536         * sgml.C:
537         * buffer.C:
538         * paragraph.h:
539         * paragraph.C: move sgml char escaping out of paragraph
540
541         * paragraph.h:
542         * paragraph.C: remove id setter
543
544         * buffer.C:
545         * paragraph.C:
546         * paragraph_pimpl.C: remove dead tex_code_break_column
547
548         * bufferview_funcs.C: small cleanup
549
550         * lyxfunc.C: remove dead proto
551
552         * lyxtext.h: make some stuff private. Remove some dead stuff.
553
554         * lyxgluelength.C: make as[LyX]String() readable
555
556 2002-08-08  John Levon  <levon@movementarian.org>
557
558         * LyXAction.h:
559         * LyXAction.C:
560         * MenuBackend.C:
561         * ToolbarDefaults.C:
562         * lyxfunc.C:
563         * lyxrc.C:
564         * toc.C: lyxaction cleanup
565
566 2002-08-08  John Levon  <levon@movementarian.org>
567
568         * BufferView2.C: small cleanup
569
570         * lyxfind.h:
571         * lyxfind.C: move unnecessary header into the .C
572
573 2002-08-08  John Levon  <levon@movementarian.org>
574
575         * funcrequest.h: just tedious nonsense
576
577         * lyx_main.h:
578         * lyx_main.C: cleanups
579
580         * buffer.C:
581         * vspace.C: remove dead header lyx_main.h
582
583 2002-08-07  Angus Leeming  <leeming@lyx.org>
584
585         * Paragraph.[Ch]:
586         * paragraph_pimpl.h:
587         Forward declare class Counters in paragraph.h by moving the ctrs member
588         variable into Paragraph::Pimpl.
589         (counters): new method, returning a reference to pimpl_->ctrs.
590
591         * text2.C: ensuing changes.
592
593 2002-08-07  John Levon  <levon@movementarian.org>
594
595         * BufferView_pimpl.C (resizeCurrentBuffer): update scrollbar
596
597         * BufferView_pimpl.C: announce X selection on double/triple
598           click
599
600         * lyx_main.C: use correct bool in batch dispatch
601
602         * counters.h: srcdocs (from Martin Vermeer and Angus Leeming)
603
604 2002-08-07  André Pönitz <poenitz@gmx.net>
605
606         * funcrequest.h: new class to wrap a kb_action and its argument
607
608         * BufferView.[Ch]:
609         * BufferView_pimpl[Ch]:
610         * LaTeX.C:
611         * LyXAction.[Ch]:
612         * lyxfunc.[Ch]:
613         * lyxrc.C: subsequent changes
614
615
616 2002-08-07  John Levon  <levon@movementarian.org>
617
618         * BufferView_pimpl.C (redoCurrentBuffer): fix screen update when
619           document options change.
620
621 2002-08-06  Martin Vermeer  <martin.vermeer@hut.fi>
622
623         * counters.[Ch]
624         * text2.C
625         * paragraph.[Ch]
626         * makefile.am: move counters functionality over from
627         text2.C/paragraph.[Ch] to counters.[Ch], and make proper C++.
628
629 2002-08-06  John Levon  <levon@movementarian.org>
630
631         * WordLangTuple.h: new file for word + language code tuple
632
633         * SpellBase.h:
634         * pspell.h:
635         * pspell.C:
636         * ispell.h:
637         * ispell.C:
638         * lyxtext.h:
639         * text.C:
640         * text2.C:
641         * BufferView.h:
642         * BufferView2.C: use WordLangTuple
643
644         * layout.h:
645         * buffer.C: remove very dead LYX_LAYOUT_DEFAULT
646
647 2002-08-06  John Levon  <levon@movementarian.org>
648
649         * lyx_main.C: fix cmdline batch handling
650
651 2002-08-06  André Pönitz <poenitz@gmx.net>
652
653         * lyxrc.C: set default for show_banner to true
654
655 2002-08-06  John Levon  <levon@movementarian.org>
656
657         * pspell.C: fix a crash, and allow new aspell to work
658
659 2002-08-06  John Levon  <levon@movementarian.org>
660
661         * lyxfunc.C:
662         * kbmap.C: small cleanup
663
664         * vspace.h:
665         * vspace.C: add const
666
667 2002-08-05  John Levon  <levon@movementarian.org>
668
669         * LyXAction.C: back to tabular-insert
670
671 2002-08-04  John Levon  <levon@movementarian.org>
672
673         * BufferView.h:
674         * BufferView.C: cosmetic change
675
676         * BufferView_pimpl.C: s/IGNORE_CODE/NOTE_CODE/
677
678         * bufferlist.C:
679         * buffer.h:
680         * buffer.C:
681         * lyxcb.h:
682         * lyxcb.C:
683         * lyxserver.C:
684         * lyxvc.C:
685         * vc-backend.C:
686         * BufferView2.C: purge all "Lyx" not "LyX" strings
687
688         * lyxcursor.h:
689         * lyxcursor.C: attempt to add some documentation
690
691         * lyxfunc.C:
692         * commandtags.h:
693         * LyXAction.C:
694         * ToolbarDefaults.C:
695         * BufferView_pimpl.C: remove LFUN_DIALOG_TABULAR_INSERT and
696           merge with LFUN_TABULAR_INSERT
697
698         * Makefile.am:
699         * SpellBase.h:
700         * ispell.h:
701         * ispell.C:
702         * pspell.h:
703         * pspell.C: split up i/pspell implementations into separate
704           files, many cleanups
705
706         * lyxlex.C: unrevert, with a proper fix for prefix.length() == 0
707
708         * text2.C: some cleanup
709
710         * lyxfunc.C: don't check for isp_command == "none" any more, it
711           didn't make any sense
712
713 2002-08-06      Martin Vermeer <martin.vermeer@hut.fi>
714
715         * counters.[Ch]
716         * text2.C
717         * paragraph.[Ch]
718         * makefile.am: move counters functionality over
719         from text2.C/paragraph.[Ch] to counters.[Ch], and
720         make proper C++.
721 2002-08-02  John Levon  <levon@movementarian.org>
722
723         * buffer.C: s/lyxconvert/lyx2lyx/
724
725 2002-08-02  Angus Leeming  <leeming@lyx.org>
726
727         * lyxlex.C: revert John's change as it breaks reading of the user
728         preamble.
729
730 2002-08-02  Angus Leeming  <leeming@lyx.org>
731
732         * importer.C (Import):
733         * lyxfunc.C (moveCursorUpdate, dispatch, view_status_message):
734         changes due to LyXView::view() now returning a boost::shared_ptr.
735
736 2002-08-02  John Levon  <levon@movementarian.org>
737
738         * lyxlex.C: small cleanup
739
740 2002-08-02  John Levon  <levon@movementarian.org>
741
742         * text2.C (status): small cleanup, no logic change
743
744 2002-08-01  John Levon  <levon@movementarian.org>
745
746         * buffer.h:
747         * buffer.C (writeFile): don't output alerts, caller
748           handles this
749
750         * bufferlist.C:
751         * lyx_cb.C: from above
752
753         * lyxfunc.C: allow to open non-existent files
754
755 2002-07-31  John Levon  <levon@movementarian.org>
756
757         * lyxserver.C: don't let incidental errors get
758           in the way (errno)
759
760 2002-07-30  John Levon  <levon@movementarian.org>
761
762         * lyxfunc.C: disable character dialog in ERT inset (partial fix)
763
764 2002-07-30  John Levon  <levon@movementarian.org>
765
766         * lyxserver.h:
767         * lyxserver.C: remove I/O callback too
768
769 2002-07-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
770
771         * lyxfunc.C (getStatus): disable LFUN_LATEX_LOG when there is no
772         log.
773
774 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
775
776         * many files: strip,frontStrip -> trim,ltrim,rtrim
777
778 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
779
780         * PrinterParams.h: remove extern containsOnly, and include
781         support/lstrings.h instead.
782
783         * LaTeX.C (scanAuxFile): modify because of strip changes
784         (deplog): ditto
785         * buffer.C (makeLaTeXFile): ditto
786         * bufferparams.C (writeFile): ditt
787         * lyxfont.C (stateText): ditto
788         * lyxserver.C (read_ready): ditto
789         * vc-backend.C (scanMaster): ditto
790
791         * BufferView_pimpl.h: ws changes
792
793         * BufferView_pimpl.C: inlude boost/signals/connection.hpp
794
795 2002-07-26  André Pönitz <poenitz@gmx.net>
796
797         * kb_sequence.C: remove unnedred usings
798
799 2002-07-26  Juergen Vigna  <jug@sad.it>
800
801         * lyxfind.C (LyXReplace): we have to check better if the returned
802         text is not of theLockingInset()->getLockingInset().
803
804 2002-07-25  Juergen Vigna  <jug@sad.it>
805
806         * lyxfind.C (LyXReplace): don't replace if we don't get the
807         right LyXText.
808
809         * undo_funcs.C (createUndo): remove debugging code.
810
811 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
812
813         * buffer.C (parseSingleLyXformat2Token): Use default placement
814         when reading old floats.
815
816         * FloatList.C (FloatList): Change the default placement of figure
817         and tables to "tbp".
818
819 2002-07-25  John Levon  <moz@compsoc.man.ac.uk>
820
821         * MenuBackend.C: using std::max
822
823 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
824
825         * MenuBackend.C (expandToc):
826         (expandToc2): code moved from xforms menu frontend. It is now
827         generic and TOCs are transparent to menu frontends.
828
829 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
830
831         * toc.C (getTocList): protect against buf=0
832
833         * MenuBackend.C (expand): move from Menu to MenuBackend; pass a
834         Menu as first parameter. Now, this calls itself recursively to
835         expand a whole tree (this will be useful for TOC handling)
836         (expandFloatInsert): remove 'wide' version of floats
837
838         * MenuBackend.h (submenuname): returns the name of the submenu.
839         (submenu): returns the submenu itself, provided it has been
840         created by MenuBackend::expand
841
842 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
843
844         * paragraph_pimpl.C (simpleTeXSpecialChars): close fonts before
845         insets which have noFontChange == true. (bug #172)
846
847 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
848
849         * BufferView_pimpl.C: add connection objects and use them...
850         (Pimpl): here.
851
852 2002-07-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
853
854         * MenuBackend.C (expandLastfiles):
855         (expandDocuments):
856         (expandFormats):
857         (expandFloatListInsert):
858         (expandFloatInsert):
859         (expand): split expand in parts
860
861 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
862
863         * lyx_gui.C: use lyx_gui::exit()
864
865 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
866
867         * LyXAction.C: show the failing pseudo action
868
869 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
870
871         * buffer.C (readFile): Run the lyxconvert script in order to read
872         old files.
873
874 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
875
876         * LyXAction.C:
877         * commandtags.h:
878         * lyxfunc.C: remove LFUN_ADD_TO_TOOLBAR
879
880 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
881
882         * LyXAction.C:
883         * commandtags.h:
884         * lyxfunc.C: remove LFUN_TOOLBAR_PUSH
885
886 2002-07-22  Herbert Voss  <voss@lyx.org>
887
888         * lengthcommon.C:
889         * lyxlength.[Ch]: add support for the vertical lengths
890
891 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
892
893         * toc.[Ch]: std:: fixes
894
895 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
896
897         * lyxrc.C: do not include lyx_main.h
898
899         * LaTeXFeatures.h: use a list<string> instead of a vector<string>
900         for layouts
901
902         * lyxrc.C:
903         * encoding.C:
904         * bufferlist.C:
905         * BufferView2.C: include "lyxlex.h"
906
907         * tabular.h:
908         * bufferparams.h: do not #include "lyxlex.h"
909
910         * lyxtextclasslist.C (Add): remove method
911         (classlist): renamed to classlist_
912
913         * paragraph_pimpl.C:
914         * paragraph.C:
915         * text2.C:
916         * CutAndPaste.C:
917         * bufferview_funcs.C:
918         * bufferlist.C:
919         * text.C:
920         * LaTeXFeatures.C:
921         * buffer.C:
922         * toc.C (getTocList): use BufferParams::getLyXTextClass
923
924         * toc.C (getTocList): use InsetFloat::addToToc
925
926         * toc.[Ch]: new files, containing helper functions to handle table
927         of contents
928
929         * lyxfunc.C (dispatch): no need to remove spaces around command
930         given as a string
931         (getStatus): handle LFUN_SEQUENCE by returning the status of the
932         first command of the sequence; it is not very clever, but I do not
933         have a better idea, actually
934
935         * LyXAction.C (LookupFunc): make sure to remove space at the
936         beginning and end of the command
937
938 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
939
940         * MenuBackend.C (getMenubar): new method: return the menubar of
941         this menu set
942         (read): treat differently reading of menu and menubar (in
943         particular, the menubar has no name now)
944         (Menu::menubar): remove
945
946         * lyxfunc.C (dispatch): add 'done' message to minibuffer when
947         saving is finished
948
949 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
950
951         * BufferView_pimpl.C (workAreaButtonRelease): Fix opening of
952         a bibitem inset in a RTL paragraph.
953
954 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
955
956         * paragraph_pimpl.C: constify
957
958         * BufferView_pimpl.C:
959         * LaTeX.C:
960         * lyxfunc.C: fix dispatch in a nicer way
961
962 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
963
964         * lyxfunc.C (dispatch):
965         * BufferView_pimpl.C:
966         * BufferView_pimpl.h:
967         * BufferView.C:
968         * BufferView.h: rename Dispatch() to dispatch()
969
970         * LaTeXFeatures.C (useLayout): honor LyXLayout::depends_on()
971
972         * lyxlayout.C (Read): honor DependsOn tag
973
974         * lyxlayout.[Ch] (depends_on): new method
975
976         * version.C.in: update lyx_docversion
977
978         * LaTeXFeatures.C (getMacros): only define \LyX when needed
979
980         * paragraph.C (validate): remove from here...
981         * paragraph_pimpl.C (validate): ... and move here
982         (isTextAt): make it const
983
984         * buffer.C (getLists): ws cleanup
985
986 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
987
988         * language.C (read): Use iso8859-1 encoding in latex_lang
989         (this prevents LyX from crashing when using iso10646-1 encoding).
990
991 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
992
993         * text2.C (toggleInset): if cursor is inside an inset, close the
994         inset and leave cursor _after_ it
995
996 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
997
998         * lyxfunc.C: move minibuffer completion handling out of here
999
1000 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
1001
1002         * BufferView_pimpl.C:
1003         * LaTeX.C: fix dispatch calls
1004
1005 2002-07-19  Dekel Tsur  <dekelts@tau.ac.il>
1006
1007         * text.C (drawChars): Fix Arabic text rendering.
1008
1009 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
1010
1011         * LyXAction.C:
1012         * commandtags.h:
1013         * lyxfunc.C: remove message-push/pop
1014
1015         * lyxserver.C:
1016         * lyxfunc.h:
1017         * lyxfunc.C: rationalise some code by removing verboseDispatch
1018           in favour of a bool argument to dispatch()
1019
1020 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1021
1022         * lyx_main.C (init): make sure to read symlinks as absolute paths
1023
1024 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
1025
1026         * lyxfunc.h:
1027         * lyxfunc.C: no need for commandshortcut to be a member
1028
1029 2002-07-15  André Pönitz <poenitz@gmx.net>
1030
1031         * converter.C: add support for $$s (scripts from lib/scripts dir)
1032         * lyx_main.C: white space
1033
1034
1035 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
1036
1037         * bufferlist.C:
1038         * lyxrc.h:
1039         * lyxrc.C: remove second exit confirmation
1040
1041 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
1042
1043         * BufferView.h:
1044         * BufferView.C:
1045         * BufferView2.C:
1046         * BufferView_pimpl.h:
1047         * BufferView_pimpl.C:
1048         * lyxfunc.C: s/setState/switchKeyMap/, s/showState/view_state_changed/
1049
1050 2002-07-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1051
1052         * MenuBackend.C (expand): add numeric shortcuts to document menu
1053
1054         * lyxrc.C (getDescription): remove RC_NEW_ASK_FILENAME
1055
1056 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1057
1058         * lyxfont.C (setLyXFamily):
1059         (setLyXSeries):
1060         (setLyXShape):
1061         (setLyXSize):
1062         (setLyXMisc):
1063         (lyxRead):
1064         * debug.C (value):
1065         * buffer.C (asciiParagraph): use ascii_lowercase
1066
1067 2002-07-15  Mike Fabian  <mfabian@suse.de>
1068
1069         * lyxlex_pimpl.C (search_kw):
1070         * lyxlex.C (getLongString):
1071         * converter.h (operator<):
1072         * converter.C (operator<):
1073         * buffer.C (parseSingleLyXformat2Token):
1074         (asciiParagraph):
1075         * ToolbarDefaults.C (read):
1076         * MenuBackend.C (checkShortcuts):
1077         (read):
1078         * LColor.C (getFromGUIName):
1079         (getFromLyXName): use the compare_ascii_no_case instead of
1080         compare_no_case, because in turkish, 'i' is not the lowercase
1081         version of 'I', and thus turkish locale breaks parsing of tags.
1082
1083 2002-07-16  Angus Leeming  <leeming@lyx.org>
1084
1085         * BufferView_pimpl.C (buffer): Previews::generateBufferPreviews
1086         now takes a Buffer const & argument.
1087
1088 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
1089
1090         * BufferView.C (resize): check there's a buffer to resize
1091
1092 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
1093
1094         * lyxfunc.C: remove dead code
1095
1096         * lyxserver.h:
1097         * lyxserver.C: use lyx_guii::set_read_callback
1098
1099 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
1100
1101         * lyxfunc.C (dispatch): Correct cursor behaviour when exiting
1102         an inset in a RTL paragraph.
1103
1104 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
1105
1106         * lyxfunc.C: repaint after a font size update
1107
1108 2002-07-15  André Pönitz <poenitz@gmx.net>
1109
1110         * lyxlength.C: inBP should be able to return negative values
1111
1112 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
1113
1114         * lyxfunc.C: use lyx_gui::update_fonts()
1115
1116 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
1117
1118         * lyxfunc.C: use lyx_gui::update_color()
1119
1120 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
1121
1122         * bufferlist.C:
1123         * lyxfunc.h:
1124         * lyxfunc.C:
1125         * lyxrc.h:
1126         * lyxrc.C: remove file->new asks for name option, and let
1127           buffer-new take an argument
1128
1129 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
1130
1131         * BufferView_pimpl.C: remove unneeded extra repaint()
1132
1133 2002-07-10  John Levon  <moz@compsoc.man.ac.uk>
1134
1135         * LyXAction.C: allow command-sequence with NoBuffer
1136
1137         * lyxfunc.C: don't insist on trailing ';' for command-sequence
1138
1139 2002-07-10  Angus Leeming  <leeming@lyx.org>
1140
1141         * lyxrc.[Ch]: preview_scale_factor should be a float not an int.
1142
1143 2002-07-09  Angus Leeming  <leeming@lyx.org>
1144
1145         * lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
1146
1147 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
1148
1149         * lengthcommon.h: whitespace
1150
1151         * lyxfunc.C: update scrollbar after goto paragraph
1152
1153         * lyxtext.h: factor out page break drawing, and fix it so
1154           page break/added space paints as selected nicely
1155
1156 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
1157
1158         * BufferView_pimpl.C: add FIXMEs, clean up a little
1159
1160 2002-07-09  André Pönitz <poenitz@gmx.net>
1161
1162         * lyxfont.[Ch]: support for wasy symbols
1163
1164 2002-07-08  André Pönitz <poenitz@gmx.net>
1165
1166         * BufferView_pimpl.C: apply John's patch for #93.
1167
1168 2002-07-05  Angus Leeming  <leeming@lyx.org>
1169
1170         * BufferView_pimpl.C (buffer): generate previews if desired.
1171
1172         * LColor.h: add "preview" to the color enum.
1173
1174         * LColor.C (LColor): add a corresponding entry to the items array.
1175
1176         * buffer.C (~Buffer): remove any previewed LaTeX snippets associated
1177         with this buffer.
1178
1179 2002-07-05  Angus Leeming  <leeming@lyx.org>
1180
1181         * buffer.[Ch] (makeLaTeXFile): create two methods where there was one.
1182         The body of the code is now in the method that is passed an ostream &
1183         rather than a file name.
1184         Pass an additional only_preamble parameter, useful for the forthcoming
1185         preview stuff.
1186
1187 2002-07-03  André Pönitz <poenitz@gmx.net>
1188
1189         * lyxfunc.C: simplify getStatus() a bit for math stuff
1190
1191 2002-07-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1192
1193         * BufferView_pimpl.C (workAreaResize): add an unconditional repaint.
1194
1195 2002-06-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1196
1197         * text.C (changeRegionCase): do not change case of all the
1198         document when region ends at paragraph end (bug #461)
1199
1200 2002-07-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1201
1202         * paragraph.C (startTeXParParams):
1203         (endTeXParParams): add \protect when necessary
1204
1205 2002-06-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1206
1207         * BufferView_pimpl.C (workAreaExpose): remove warning
1208
1209 2002-06-27  Angus Leeming  <leeming@lyx.org>
1210
1211         * Makefile.am: add lyxlayout_ptr_fwd.h.
1212
1213 2002-06-26  André Pönitz <poenitz@gmx.net>
1214
1215         * lyxrc.[Ch]: introduce \preview, revive half-dead \show_banner
1216
1217 2002-06-25  Angus Leeming  <leeming@lyx.org>
1218
1219         * lyxfunc.C (dispatch): Comment out the call to
1220         grfx::GCache::changeDisplay. The method no longer exists now that the
1221         pixmap generation part of the graphics loader has been moved into
1222         InsetGraphics.
1223
1224 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1225
1226         * text2.C: layout as layout
1227
1228         * text.C: layout as layout
1229
1230         * tabular.C (OldFormatRead): layout as layout
1231
1232         * paragraph_pimpl.C (TeXDeeper): layout as layout
1233         (realizeFont): layout as layout
1234
1235         * paragraph.C (writeFile): layout as layout
1236         (validate): layout as layout
1237         (getFont): layout as layout
1238         (getLabelFont): layout as layout
1239         (getLayoutFont): layout as layout
1240         (breakParagraph): layout as layout
1241         (stripLeadingSpaces): layout as layout
1242         (getEndLabel): layout as layout
1243         (getMaxDepthAfter): layout as layout
1244         (applyLayout): layout as layout
1245         (TeXOnePar): layout as layout
1246         (simpleTeXOnePar): layout as layout
1247         (TeXEnvironment): layout as layout
1248         (layout): layout as layout
1249         (layout): layout as layout
1250
1251         * lyxtextclass.C (compare_name): new functor to work with
1252         shared_ptr, layout as layout
1253         (Read): layout as layout
1254         (hasLayout): layout as layout
1255         (operator): layout as layout
1256         (delete_layout): layout as layout
1257         (defaultLayout): layout as layout
1258
1259         * lyxlayout_ptr_fwd.h: new file
1260
1261         * lyxlayout.C (Read): layout as layout
1262
1263         * lyx_cb.C (MenuInsertLabel): layout as layout
1264
1265         * bufferlist.C (newFile): layout as layout
1266
1267         * buffer.C (readLyXformat2): layout as layout
1268         (parseSingleLyXformat2Token): layout as layout
1269         (insertStringAsLines): layout as layout
1270         (asciiParagraph): layout as layout
1271         (latexParagraphs): layout as layout
1272         (makeLinuxDocFile): layout as layout
1273         (simpleLinuxDocOnePar): layout as layout
1274         (makeDocBookFile): layout as layout
1275         (simpleDocBookOnePar): layout as layout
1276         (getLists): layout as layout
1277
1278         * LaTeXFeatures.C (getTClassPreamble): layout as layout
1279
1280         * CutAndPaste.C (cutSelection): layout as layout
1281         (pasteSelection): layout as layout
1282         (SwitchLayoutsBetweenClasses): layout as layout
1283
1284         * BufferView_pimpl.C (Dispatch): layout as layout
1285         (smartQuote): layout as layout
1286
1287         * BufferView2.C (unlockInset): layout as layout
1288
1289 2002-06-24  André Pönitz <poenitz@gmx.net>
1290
1291         * lyxfunc.C: fix #487
1292
1293 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
1294
1295         * lyxrc.h:
1296         * lyxrc.C:
1297         * lyxfunc.C: remove display_shortcuts, show_banner
1298
1299 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
1300
1301         * Buffer_pimpl.C: oops, update on resize
1302
1303 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
1304
1305         * buffer.C:
1306         * converter.C:
1307         * exporter.C:
1308         * lyxfunc.C:
1309         * BufferView.h:
1310         * BufferView.C: use repaint()
1311
1312         * BufferView_pimpl.h:
1313         * BufferView_pimpl.C: s/updateScreen()/repaint()/
1314           as it's a clearer description. Remove superfluous
1315           redraws.
1316
1317 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
1318
1319         * text.C: fix bug 488. Not ideal, but getting
1320           getWord() to work properly for the insets that
1321           matter is more difficult ...
1322
1323 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
1324
1325         * BufferView_pimpl.C:
1326         * LyXAction.C:
1327         * commandtags.h:
1328         * lyxfunc.C: remove the six million index lyxfuncs to just
1329           one, and DTRT (bug 458)
1330
1331 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
1332
1333         * BufferView.h:
1334         * BufferView.C:
1335         * BufferView_pimpl.h:
1336         * BufferView_pimpl.C: clean up resize() stuff,
1337           and unnecessary updateScreen()s
1338
1339 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
1340
1341         * BufferView.h:
1342         * BufferView.C:
1343         * BufferView_pimpl.h:
1344         * BufferView_pimpl.C:
1345         * lyxfind.h:
1346         * lyxfind.C:
1347         * minibuffer.C: remove focus management of workarea,
1348           not needed. Use screen's greyOut()
1349
1350 2002-06-17  Herbert Voss  <voss@lyx.org>
1351
1352         * converter.C: (convert) do not post a message, when converting
1353         fails, let the calling function decide what to do in this case
1354
1355 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
1356
1357         * lyxfunc.C: tidy up a little
1358
1359 2002-06-16    <alstrup@diku.dk>
1360
1361         * BufferView_pimpl.C (Pimpl): Use WorkAreaFactory.
1362         Got rid of FORMS_H_LOCATION include. Now we are
1363         GUII.
1364
1365 2002-06-15  LyX Development team  <lyx@rilke>
1366
1367         * buffer.[Ch] (sgmlOpenTag):
1368         (sgmlCloseTag): Added support for avoiding pernicious mixed
1369         content. Return number of lines written.
1370
1371         (makeLinuxDocFile):
1372         (makeDocBookFile): Fixed calls to sgml*Tag.
1373         Simple white space clean.
1374
1375         (simpleDocBookOnePar): Simple white space clean.
1376
1377         * tabular.[Ch] (docBook): Renamed to docbook and got another
1378         argument to related with the pernicious mixed content.
1379
1380         (docbookRow): Fixed calls for docbook inset method.
1381
1382 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
1383
1384         * lyxfunc.[Ch]: Use LyXKeySym instead of KeySym,
1385         so it's X11 independent.
1386
1387         * kb*.[Ch]: ditto.
1388
1389         * BufferView_pimpl.[Ch] (workAreaKeyPress): ditto.
1390
1391 2002-06-15  Lyx Development team  <lyx@electronia>
1392
1393         * intl.h: Renamed getTrans to getTransManager.
1394
1395 2002-06-14  Angus Leeming  <leeming@lyx.org>
1396
1397         * Makefile.am: nuke forgotten stl_string_fwd.h.
1398
1399 2002-06-12  Angus Leeming  <leeming@lyx.org>
1400
1401         * stl_string_fwd.h: unused and non-compliant anyway. Nuked.
1402
1403 2002-06-13  Angus Leeming  <leeming@lyx.org>
1404
1405         * LaTeX.C:
1406         * vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
1407
1408 2002-06-12  Andrew Zabolotny  <zap@cobra.ru>
1409
1410         * kbmap.C (getiso): add support for cyrillic and greek
1411
1412 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
1413
1414         * BufferView.h:
1415         * BufferView.C:
1416         * BufferView_pimpl.h:
1417         * BufferView_pimpl.C: move bogus scrolling logic
1418           to xforms
1419
1420 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
1421
1422         * lyxfunc.C:
1423         * BufferView_pimpl.C: view->resize() change
1424
1425 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
1426
1427         * BufferView_pimpl.C: topCursorVisible
1428           prototype change
1429
1430 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
1431
1432         * Makefile.am:
1433         * lyx_gui.h:
1434         * lyx_gui.C: move to frontends/
1435
1436         * main.C:
1437         * lyx_main.h:
1438         * lyx_main.C: changes from above
1439
1440 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
1441
1442         * intl.C:
1443         * intl.h:
1444         * kbmap.C:
1445         * kbsequence.C:
1446         * lyx_cb.C:
1447         * lyx_main.C: minor tidy
1448
1449 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
1450
1451         * BufferView_pimpl.h:
1452         * BufferView_pimpl.C:
1453         * BufferView.h:
1454         * BufferView.C: make painter() const,
1455           remove dead code
1456
1457         * BufferView2.C: use screen() accessor
1458
1459         * lyx_main.h:
1460         * lyx_main.C: some minor cleanup
1461
1462 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
1463
1464         * BufferView_pimpl.h:
1465         * BufferView_pimpl.C: remove enter/leaveView,
1466           use workHeight()
1467
1468 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
1469
1470         * BufferView.h:
1471         * BufferView.C:
1472         * BufferView2.C:
1473         * BufferView_pimpl.h:
1474         * BufferView_pimpl.C: only construct screen once,
1475           rename
1476
1477         * lyxrc.C: remove pointless comment
1478
1479 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
1480
1481         * BufferView.h:
1482         * BufferView.C: remove active() and belowMouse()
1483
1484         * BufferView_pimpl.h:
1485         * BufferView_pimpl.C: use workarea() not workarea_,
1486           and make it use a scoped_ptr instead
1487
1488 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
1489
1490         * lyx_gui.C: add debug message on BadWindow
1491
1492 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1493
1494         * sp_spell.C: fdopen is not part of the C++ standard.
1495
1496         * paragraph.C (InsetIterator): use >= instead of ==
1497
1498 2002-06-07  Angus Leeming  <leeming@lyx.org>
1499
1500         Fixes needed to compile with Compaq cxx 6.5.
1501         * BufferView_pimpl.C:
1502         * DepTable.C:
1503         * buffer.C:
1504         * converter.C:
1505         * encoding.C:
1506         * lyx_gui.C:
1507         * lyx_main.C:
1508         * lyxtextclasslist.C:
1509         * minibuffer.C:
1510         * sp_spell.C:
1511         * tabular_funcs.C:
1512         * vc-backend.C:
1513         all c-library variables have been moved into namespace std. Wrap
1514         using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
1515
1516         * lyxlength.C:
1517         * tabular-old.C:
1518         * tabular.C:
1519         Add a using std::abs declaration.
1520
1521         * kbmap.h (modifier_pair):
1522         * paragraph.h (InsetTable, InsetList):
1523         * lyxfont.h (FontBits):
1524         type definition made public.
1525
1526         * bufferlist.C (emergencyWriteAll): the compiler complains that
1527         there is more than one possible lyx::class_fun template to choose from.
1528         I re-named the void specialisation as lyx::void_class_fun.
1529
1530         * lyxfont.C (FontBits' operator==, operator!=): taken out of class.
1531
1532         * tabular_funcs.C: lstrings.h must come before tabular_funcs.h or
1533         the compiler is is unable to find tostr in write_attribute.
1534
1535 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1536
1537         * buffer.C (sgmlError): hide #warning
1538
1539 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1540
1541         * xtl/*: get rid of xtl, which is not in use anyway
1542
1543         * LyXAction.C (init):
1544         * commandtags.h: remove BUFFER_PRINT and BUFFER_PARAMS_GET, which
1545         were unimplemented xtl experimentation
1546
1547 2002-06-04  André Pönitz <poenitz@gmx.net>
1548
1549         * lyxfunc.C: disable array operation on simple formulae
1550
1551 2002-06-03  John Levon  <moz@compsoc.man.ac.uk>
1552
1553         * converter.C: constify a bit
1554
1555 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
1556
1557         * lyx_gui.C: check xforms version correctly
1558
1559 2002-04-30  Herbert Voss  <voss@lyx.org>
1560
1561         * buffer.C (parseSingleLyXformat2Token): fix bug with ignored
1562         "keep" option
1563
1564 2002-05-31  John Levon  <moz@compsoc.man.ac.uk>
1565
1566         * lyxvc.C: fix bug 416 (make sure buffer is saved before
1567           attempt to register it with a VCS)
1568
1569 2002-05-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1570
1571         * lyx_main.C (init): honor variables LYX_DIR_13x and
1572         LYX_USERDIR_13x
1573
1574 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
1575
1576         * buffer.h:
1577         * buffer.C:
1578         * lyx_main.C: fix a crash on bad command line,
1579           and give a useful exit status on error
1580
1581         * lyxfunc.C (doImport): allow -i lyx to work
1582
1583 2002-03-30  André Pönitz <poenitz@gmx.net>
1584
1585         * lyxfunc.C: mathed font changes
1586
1587 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
1588
1589         * LaTeX.C:
1590         * importer.h:
1591         * importer.C:
1592         * lyx_sty.h:
1593         * lyx_sty.C:
1594         * lyxlex.C:
1595         * lyxrow.h:
1596         * lyxtext.h:
1597         * paragraph.h:
1598         * paragraph.C:
1599         * texrow.h:
1600         * texrow.C:
1601         * text.C:
1602         * trans_mgr.h: srcdocs, and some minor cleanups
1603
1604 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1605
1606         * paragraph_pimpl.C (isTextAt): rewrite to be much faster (do not
1607         call getFont all the time)
1608
1609 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1610
1611         * switch from SigC signals to boost::signals
1612
1613 2002-05-29  André Pönitz <poenitz@gmx.net>
1614
1615         * paragraph_pimpl.C (getChar): don't call size() too often...
1616
1617 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1618
1619         * paragraph_pimpl.C (insertChar): do not try to update tables when
1620         appending (pos == size())
1621
1622         * buffer.C (parseSingleLyXformat2Token): reorder a bit the tests
1623         in order to reduce drastically the number of comparisons needed to
1624         parse a large document
1625
1626 2002-05-29  André Pönitz <poenitz@gmx.net>
1627
1628         * text.C:
1629         * text2.C:
1630         * lyxtextclass.C:
1631         * sp_pspell.h:
1632         * textclasslist.[Ch]:
1633         * sp_ispell.h: whitespace change
1634
1635 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1636
1637         * lyxserver.C (callback): tentative fix of lyxserver. Does not use
1638         lyxaction directly now.
1639
1640 2002-05-27  John Levon  <moz@compsoc.man.ac.uk>
1641
1642         * trans.C:
1643         * lyxfont.C:
1644         * lyxvc.C: remove unused headers
1645
1646 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
1647
1648         * Makefile.am:
1649         * buffer.h:
1650         * undostack.h:
1651         * undostack.C:
1652         * undo_funcs.h:
1653         * undo_funcs.C: some cleanups. Use shared_ptr
1654           and a template for the undo stacks.
1655
1656 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
1657
1658         * BufferView_pimpl.h:
1659         * BufferView_pimpl.C:
1660         * kbmap.h:
1661         * kbmap.C:
1662         * kbsequence.h:
1663         * kbsequence.C:
1664         * lyxfunc.h:
1665         * lyxfunc.C:
1666         * text2.C: use key_state/mouse_state
1667
1668 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1669
1670         * vc-backend.C (scanMaster): use boost regex and get rid of LRegex
1671         and LSubstring
1672
1673         * chset.C: change include order
1674         (loadFile): use boost regex and get rid of LRegex and LSubstring
1675
1676         * Makefile.am (BOOST_LIBS): new variable
1677         (lyx_LDADD): use it
1678
1679         * LaTeX.C: change include order.
1680         (scanAuxFile): use boost regex and get rid of LRegex and
1681         LSubstring
1682         (deplog): ditto
1683
1684 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
1685
1686         * ColorHandler.h:
1687         * ColorHandler.C:
1688         * FontInfo.h:
1689         * FontInfo.C: moved to frontends/xforms/
1690
1691         * FontLoader.h:
1692         * FontLoader.C: moved into frontends for GUIIzation
1693
1694         * Makefile.am:
1695         * lyx_gui.C:
1696         * lyxfont.C:
1697         * lyxfunc.C: changes from above
1698
1699 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
1700
1701         * LColor.C: remove spurious X include
1702
1703         * BufferView_pimpl.C:
1704         * Makefile.am:
1705         * font.h:
1706         * font.C:
1707         * text.C:
1708         * text2.C: move font metrics to frontends/
1709
1710 2002-05-24  Juergen Vigna  <jug@sad.it>
1711
1712         * undo_funcs.C (textHandleUndo): fix the cursor selection after
1713         setting the undo_cursor.
1714
1715         * ParagraphParameters.h: include local includes first.
1716
1717 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
1718
1719         * BufferView_pimpl.C:
1720         * BufferView_pimpl.h:
1721         * Makefile.am:
1722         * WorkArea.h:
1723         * WorkArea.C:
1724         * screen.C: move WorkArea into frontends/
1725
1726         * lyxscreen.h:
1727         * screen.C:
1728         * text.C:
1729         * BufferView.C:
1730         * BufferView2.C: move LyXScreen into frontends/
1731
1732         * lyxlookup.h:
1733         * lyxlookup.C:
1734         * lyx_gui.C: move lyxlookup into frontends/xforms/
1735
1736 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
1737
1738         * BufferView2.C:
1739         * BufferView_pimpl.C:
1740         * FontLoader.C:
1741         * LyXView.h:
1742         * LyXView.C:
1743         * Makefile.am:
1744         * WorkArea.C:
1745         * XFormsView.h:
1746         * XFormsView.C:
1747         * buffer.C:
1748         * bufferlist.C:
1749         * bufferview_funcs.C:
1750         * converter.C:
1751         * importer.C:
1752         * lyx_cb.C:
1753         * lyx_gui.C:
1754         * lyx_main.C:
1755         * lyx_find.C:
1756         * lyxfunc.C:
1757         * lyxvc.C:
1758         * minibuffer.C:
1759         * text.C:
1760         * text2.C:
1761         * trans.C:
1762         * vc-backend.C: move LyX/XFormsView into frontends/
1763
1764 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
1765
1766         * Makefile.am:
1767         * PainterBase.C:
1768         * PainterBase.h:
1769         * Painter.C:
1770         * Painter.h:
1771         * WorkArea.C:
1772         * WorkArea.h:
1773         * screen.C:
1774         * tabular.C:
1775         * text.C:
1776         * text2.C: move Painter to frontends/
1777
1778 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1779
1780         * buffer.C: comment out some some code that depend upon lyx_format
1781         < 220
1782
1783         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
1784         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
1785
1786         * buffer.h (NO_COMPABILITY): turn off compability
1787
1788         * ColorHandler.C: include scoped_array.hpp
1789
1790         * font.C: Use more specific smart_ptr header.
1791         * Painter.C: ditto
1792         * gettext.C: ditto
1793         * ShareContainer.h: ditto
1794         * lyx_main.h: ditto
1795         * kbmap.h: ditto
1796         * FontInfo.h: ditto
1797         * BufferView_pimpl.h: ditto
1798         * ColorHandler.h: ditto
1799
1800         * kbmap.C (defkey): change call to shared_ptr::reset
1801
1802 2002-05-21  Juergen Vigna  <jug@sad.it>
1803
1804         * buffer.C (insertErtContents): fix to insert ert asis if it is
1805         non empty. Skip it completely if it contains only whitespaces.
1806
1807 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
1808
1809         * BufferView_pimpl.C:
1810         * BufferView2.C: clear selection on paste (bug 393)
1811
1812 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1813
1814         * DepTable.C: include ctime
1815
1816 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
1817
1818         * buffer.C (latexParagraphs): Add new argument (moving_arg).
1819
1820 2002-05-14  Juergen Vigna  <jug@sad.it>
1821
1822         * text.C (breakParagraph): fixed function to honor the keepempty
1823         layout in the right maner and also to permit the right breaking
1824         algorithm on empty or non empyt keepempty paragraphs.
1825
1826         * paragraph.C (breakParagraph): we have to check also if the par
1827         is really empty (!size()) for isempty otherwise we do the wrong
1828         paragraph break.
1829
1830 2002-05-10  Juergen Vigna  <jug@sad.it>
1831
1832         * buffer.[Ch] : The following are only changes to the ert
1833         compatibility read reading old LaTeX layout and font stuff and
1834         convert it to ERTInsets.
1835
1836         * buffer.h: added isErtInset().
1837
1838         * buffer.C (struct ErtComp): add a fromlayout bool to check
1839         if we're inside a LaTeX layout.
1840         (isErtInset): new helper function.
1841         (insertErtContents): look for other ert insets before this one
1842         and insert the contents there, so that we don't have subsequent
1843         ERT insets with nothing between them. This way we create only one
1844         inset with multiple paragraphs. Also check if we don't insert only
1845         spaces ' ' as they are ignored anyway afterwards in the .tex file
1846         so if we have only spaces we will ignore this latex part in the
1847         new file.
1848         (parseSingleLyXformat2Token \\layout): better compatibility when
1849         reading layout-latex stuff.
1850         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
1851         language tag.
1852         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
1853         stuff after reading the inset only get the information back from
1854         the stack.
1855
1856 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
1857
1858         * buffer.C (makeLaTeXFile): Put language options after loading babel.
1859
1860         * LaTeXFeatures.C (getBabelOptions): New method.
1861
1862 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1863
1864         * BufferView_pimpl.C (Dispatch): work around missing argument for
1865         'layout'
1866
1867 2002-05-08  Juergen Vigna  <jug@sad.it>
1868
1869         * text.C (leftMargin): handle paragraph leftindent.
1870
1871         * paragraph.C (writeFile): write the new \\leftindent tag.
1872         (validate): handle leftindent code.
1873         (TeXEnvironment): handle paragraphleftindent code again.
1874
1875         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
1876
1877         * buffer.C (parseSingleLyXformat2Token): added compatibility code
1878         for paragrap_extra indent code and new token \\leftindent.
1879         (latexParagraphs): handle the leftindent as environment.
1880
1881         * ParameterStruct.h: added leftindent support.
1882
1883         * ParagraphParameters.C (leftIndent): added support functions for
1884         the paragraph left indent.
1885
1886         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
1887         more appropriate.
1888
1889 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
1890
1891         * paragraph.C (isRightToLeftPar): Return false for a paragraph
1892         inside insetERT.
1893
1894         * text.C (computeBidiTables): No bidi in insetERT.
1895
1896         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
1897         in RTL documents.
1898
1899 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1900
1901         * version.C.in: pre 5
1902
1903 2002-05-02  José Matos  <jamatos@fep.up.pt>
1904         * buffer.C (makeDocBookFile): white space changes, add newline to
1905         command styles.
1906         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
1907
1908         * tabular.C (docBook): fix typo.
1909
1910 2002-05-03  Juergen Vigna  <jug@sad.it>
1911
1912         * screen.C (drawFromTo): recalculate the rowpointer if we had a
1913         change in LyXText as we can not be sure it was not freed.
1914         (drawOneRow): remove unused code.
1915
1916         * text.C (drawInset): redo the calculation of the need_break_row as
1917         it could have a row which was already freed.
1918         (draw): look at the return value of drawInset and return false if
1919         it also returned false.
1920         (paintRowText): look at the return value of draw and return false if
1921         it also returned false.
1922
1923         * lyxtext.h: added bool return type to drawInset() and draw() so that
1924         if we have a change in the row so that the rowbreak has to be redone
1925         we abort drawing as it will be called again.
1926
1927 2002-05-02  Juergen Vigna  <jug@sad.it>
1928
1929         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
1930         a change in the maintext also if we're inside an inset.
1931         (Dispatch): set the cursor again after a break line and after the
1932         screen has been updated as it could be we're in a different row.
1933
1934         * text2.C (fixCursorAfterDelete): check to make sure we don't request
1935         to set the cursor behind the pargraph with > size().
1936         (setCursor): check also for the same paragraph when checking where
1937         to put the cursor if we have a NFR inset.
1938
1939         * buffer.C (parseSingleLyXformat2Token): move the compatibility
1940         parts of layout read further up as it still was in the wrong
1941         position.
1942
1943 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1944
1945         * screen.C (drawFromTo): change sine fullRebreak always return
1946         true.
1947
1948         * buffer.C (parseSingleLyXformat2Token): reindent some
1949
1950         * BufferView_pimpl.C (update): change since fullRebreak always
1951         return true.
1952         (Dispatch): git rid of the last hardcoded "Standard"s.
1953
1954 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1955
1956         * text2.[Ch] (fullRebreak): make it return void now that we always
1957         returned true.
1958
1959 2002-04-30  Juergen Vigna  <jug@sad.it>
1960
1961         * buffer.C (parseSingleLyXformat2Token): reset the font before the
1962         ert compatibility check for "latex" layout.
1963
1964 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
1965
1966         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
1967         minipages: use col% instead of p%, and also use the current font.
1968         (makeLaTeXFile): Fix use babel condition.
1969         (parseSingleLyXformat2Token): Correct font when reading old floats.
1970
1971 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
1972
1973         * BufferView_pimpl.C (Dispatch): Check that float type exists when
1974         inserting list of floats.
1975
1976 2002-04-25  Herbert Voss  <voss@lyx.org>
1977
1978         * MenuBackend.C (expand): don't add the graphics extensions to the
1979         export menu
1980
1981 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1982
1983         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
1984         non-existing layout, do not complain if it was the default layout
1985         of the original class (bug #342)
1986
1987 2002-04-24  Juergen Vigna  <jug@sad.it>
1988
1989         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
1990         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
1991
1992 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
1993
1994         * buffer.C (getBibkeyList): If using \bibliography, return the
1995         option field with the reference itself. Enables us to provide natbib
1996         support when using \bibliography.
1997
1998 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
1999
2000         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
2001
2002         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
2003         natbib is provided by the LaTeX class.
2004
2005 2002-04-23  Juergen Vigna  <jug@sad.it>
2006
2007         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
2008         Wakeup functions.
2009
2010         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
2011
2012 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2013
2014         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
2015
2016         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
2017         ensuremath around textordmasculine, textordfeminine and
2018         textdegree.
2019
2020 2002-04-19  Juergen Vigna  <jug@sad.it>
2021
2022         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
2023         reinitializing the buffer otherwise row-dimensions may be wrong.
2024         (update): reset also the selection cursors if they do exits otherwise
2025         their x/y positions may be wrong.
2026
2027         * text2.C (cursorDown): don't enter the inset if we came from a row
2028         above and are one row over the inset.
2029
2030         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
2031         really leaving an inset.
2032
2033 2002-04-18  Juergen Vigna  <jug@sad.it>
2034
2035         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
2036         of the selected paragraph does not have the selected layout also if
2037         the last one had!
2038
2039         * text2.C (setLayout): fixed bug which did not change last selected
2040         paragraph.
2041
2042         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
2043         changed the read and substituted \\end_float with \\end_inset!
2044
2045         * BufferView_pimpl.C (cursorPrevious):
2046         (cursorNext): fixed to make it work with rows heigher than the work
2047         area without moving the cursor only the draw of the row.
2048         (workAreaMotionNotify): fix jumping over high rows.
2049
2050 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2051
2052         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
2053         Ressler.
2054
2055 2002-04-16  Juergen Vigna  <jug@sad.it>
2056
2057         * text2.C (setCursor): set also the irow().
2058         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
2059         (cursorUp):
2060         (cursorDown): support for locking an inset if the x_fix value goes
2061         inside it. That way I can transverse insets too with cursor up/down.
2062
2063         * lyxrow.h: added irow helper function same as other (i) functions.
2064
2065         * BufferView_pimpl.C (cursorPrevious):
2066         (cursorNext): fixed for insets!
2067
2068 2002-04-15  Juergen Vigna  <jug@sad.it>
2069
2070         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
2071         position otherwise it is wrong in some cases.
2072
2073         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
2074         inside the inset before the call.
2075
2076 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
2077
2078         * buffer.[Ch] (getBibkeyList): make it const.
2079
2080 2002-04-12  Juergen Vigna  <jug@sad.it>
2081
2082         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
2083
2084         * text2.C (getCursorX): new helper function
2085         (setCursor): compute also ix_
2086         (setCursorFromCoordinates): set also ix.
2087
2088         * lyxcursor.h: added ix_ and helper functions.
2089
2090         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
2091
2092         * buffer.C (insertStringAsLines): dont break paragraph if the this
2093         paragraph is inside an inset which does not permit it!
2094
2095         * text.C (breakParagraph): honor keepempty flag and break the paragraph
2096         also with no chars on this paragraph.
2097         (paintRowText): only paint stuff if it's inside the workarea!
2098
2099         * paragraph.C (breakParagraph): honor keepempty flag and break the
2100         paragraph always below not above.
2101
2102         * BufferView2.C (unlockInset): update the paragraph layout on inset
2103         unlock as we changed paragraph in such a case.
2104
2105         * lyxfind.C (LyXFind): clear the former selection if not found!
2106
2107         * text2.C (insertInset): freeze Undo after setUndo so that it is not
2108         again called in insertChar().
2109
2110         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
2111         an inset which uses the whole row!
2112         (rightMargin): ditto.
2113         (insertChar): force a rebreak if we inserted an inset!
2114
2115 2002-03-28  Herbert Voss  <voss@lyx.org>
2116
2117         * lyxlength.[Ch]: add inBP() to get the right PS-point
2118         units (BigPoint). With inPixels we have rounding errors
2119
2120 2002-04-11  Juergen Vigna  <jug@sad.it>
2121
2122         * text2.C (setCursorFromCoordinates): set iy to the right value.
2123         (setCursor): add check if row->previous exists!
2124
2125         * buffer.C (parseSingleLyXformat2Token): reset font after read of
2126         an old float_type as this was the case in the old code!
2127
2128         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
2129
2130         * BufferView2.C (showLockedInsetCursor): use iy
2131         (fitLockedInsetCursor): ditto
2132
2133         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
2134         locked insets as there we have the right value now.
2135
2136         * lyxcursor.C: added iy_ variable and iy functions to set to the
2137         baseline of cursor-y of the locked inset.
2138
2139         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
2140         (setCursor): fixed for insets which need a full row.
2141
2142         * text.C (rowLastPrintable): don't ignore the last space when before
2143         an inset which needs a full row.
2144         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
2145         as last character of a row when before a inset which needs a full row.
2146
2147 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2148
2149         * version.C.in: update date
2150
2151         * text2.C (fullRebreak): try to always return true and see what
2152         happens...
2153
2154 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2155
2156         * MenuBackend.C (expand): use Floating::listName
2157
2158         * FloatList.C (FloatList): add listName argument to the built-in
2159         floats
2160
2161         * Floating.[Ch]: add listName member, which is the 'List of XXX'
2162         text associated with the float.
2163
2164 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2165
2166         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
2167
2168 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2169
2170         * ShareContainer.h: add a couple of missing typenames.
2171
2172 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
2173
2174         * lyxrc.C (getDescription): use _() correctly rather than N_().
2175
2176 2002-03-28  Herbert Voss  <voss@lyx.org>
2177
2178         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
2179         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
2180
2181 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2182
2183         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
2184         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
2185
2186 2002-03-29  Juergen Vigna  <jug@sad.it>
2187
2188         * lyxfunc.C (dispatch): add a missing fitCursor call.
2189
2190         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
2191         it was scrolled by a cursor move, so return the bool status.
2192
2193         * BufferView.C (fitCursor): return the bool flag also to the outside
2194         world as this is needed.
2195
2196         * screen.C (toggleToggle): don't subtract the offset if it's positive.
2197
2198         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
2199         call the edit() as it is not needed (and wrong) IMO.
2200         (workAreaButtonPress): set the screen_first variable before evt.
2201         unlock the inset as this may change screen_first and then we have
2202         a wrong y position for the click!
2203
2204 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2205
2206         * MenuBackend.C (expand): another translation that I missed
2207
2208 2002-03-28  Juergen Vigna  <jug@sad.it>
2209
2210         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
2211
2212         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
2213
2214 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2215
2216         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
2217
2218         * MenuBackend.C (expand): fix export/view/update when there is no
2219         document open.
2220
2221 2002-03-27  Herbert Voss  <voss@lyx.org>
2222
2223         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
2224         and text%
2225
2226 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2227
2228         * bufferview_funcs.C (currentState): only show paragraph number
2229         for is DEVEL_VERSION is set.
2230
2231         * lyxfunc.C (dispatch): put warning in INFO channel
2232
2233         * MenuBackend.C (expand): translate the name of floats
2234
2235         * FloatList.C (FloatList): mark the float names for translation
2236
2237         * converter.C (convert): use LibScriptSearch
2238
2239 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2240
2241         * MenuBackend.C (defaults): fix default menu (we might as well get
2242         rid of it...)
2243
2244 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2245
2246         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
2247         directory.
2248
2249 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2250
2251         * lyxvc.C: reorder includes.
2252
2253 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
2254
2255         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
2256           properly
2257
2258 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
2259
2260         * CutAndPaste.C: change layouts earlier on paste
2261           to avoid crashing when calling getFont()
2262
2263 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
2264
2265         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
2266         irritating #error.
2267
2268 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2269
2270         * WorkArea.C: remove 'Pending' debug message.
2271
2272         * most files: ws cleanup
2273
2274         * buffer.[Ch]: ws changes
2275
2276         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
2277
2278 2002-03-21  Juergen Vigna  <jug@sad.it>
2279
2280         * tabular.C (SetMultiColumn): collapse also the contents of the
2281         cells and set the last border right. Added a Buffer const * param.
2282
2283 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2284
2285         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
2286         linking or not.
2287
2288 2002-03-19  Juergen Vigna  <jug@sad.it>
2289
2290         * text2.C (clearSelection): reset also xsel_cache.
2291
2292         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
2293         where it needs to be called (John tells us to do so too :)
2294         (selectionLost): reset sel_cache.
2295
2296         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
2297
2298 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2299
2300         * text2.C (setCursorIntern): put debuging code in INSETS channel
2301
2302 2002-03-19  André Pönitz <poenitz@gmx.net>
2303
2304         * lyxfunc.C: tiny whitespace change
2305
2306 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2307
2308         * ToolbarDefaults.C (init):
2309         * LyXAction.C (init):
2310         * commandtags.h:
2311         * BufferView_pimpl.C (Dispatch):
2312         * lyxfunc.C (dispatch): remove LFUN_DEPTH
2313
2314 2002-03-19  Allan Rae  <rae@lyx.org>
2315
2316         * exporter.C (Export): removeAutoInsets before doing anything else.
2317         While I've just introduced a dependency on BufferView this really is
2318         the best place to clean the buffer otherwise you need to cleanup in
2319         a dozen places before calling export or cleanup in a dozen functions
2320         that export calls.
2321
2322         * converter.C (runLaTeX):
2323         (scanLog): Better handling of removeAutoInsets and screen updates.
2324
2325         * lyxfunc.C (dispatch): small whitespace changes
2326
2327 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2328
2329         * WorkArea.C (C_WorkAreaEvent): return a value.
2330         (event_cb): return 1 if we handled the event, 0 otherwise.
2331
2332         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
2333
2334 2002-03-18  Juergen Vigna  <jug@sad.it>
2335
2336         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
2337         (GetAdditionalWidth): ditto.
2338         (RightLine): ditto.
2339         (LeftLine): ditto.
2340
2341         * BufferView2.C (copy): use getLyXText() so that we do it inside an
2342         inset if we're there actually (probably not used right now but this
2343         is the direction to go for unifying code).
2344         (paste): disable code to clear the selection.
2345
2346         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
2347         inside an InsetText and move the check further up as it is in the
2348         wrong place.
2349
2350         * text2.C (pasteSelection): set a selection over the pasted text.
2351
2352 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
2353
2354         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
2355         and libgraphics to build on Cygwin.
2356
2357 2002-03-15  Juergen Vigna  <jug@sad.it>
2358
2359         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
2360         inserting an Inset into the paragraph. I know this is not the best
2361         fix but we already use current_view in CutAndPaste so we will remove
2362         all of it's using at the same time.
2363
2364         * buffer.C (sgmlError): deactivated function till it is rewritten in
2365         the right mode, now it can create problems.
2366
2367         * paragraph.C (isLineSeparator): check if getInset returns != 0,
2368         before accessing it.
2369
2370 2002-03-14  Juergen Vigna  <jug@sad.it>
2371
2372         * undo_funcs.C (textHandleUndo): do the right thing when updating
2373         the inset after the undo/redo.
2374
2375         * text2.C (setCursor): just some testcode for #44 not ready yet.
2376
2377         * undo_funcs.C (textHandleUndo): set the next() and previous()
2378         pointers of the paragraph to 0 before deleting otherwise we have
2379         problems with the Paragraph::[destructor].
2380
2381         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
2382         on a paragraph insertion.
2383
2384 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2385
2386         * buffer.C (asciiParagraph): use += operator for char append to
2387         string.
2388
2389         * paragraph.C (getFontSettings): compare >= not just >
2390         (highestFontInRange): ditto
2391         (setFont): ditto
2392
2393 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2394
2395         * paragraph.C: change several algorithm to be more appripriate for
2396         the problem domain. This is lookip in FontList and in the InsetList.
2397
2398 2002-03-13  André Pönitz <poenitz@gmx.net>
2399
2400         * commandtags.h:
2401         * LyXAction.C: remove unused LFUN_MATH_MACROARG
2402
2403 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
2404
2405         * commandtags.h:
2406         * LyXAction.C:
2407         * lyxfunc.C:
2408         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
2409
2410 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2411
2412         * Painter.C (display): anon helper function, adjust code for this
2413         change.
2414         (pixmap): remove function.
2415
2416         * Painter.h: remove private display variable.
2417
2418         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
2419
2420 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
2421
2422         * WorkArea.[Ch]: remove figinset_canvas cruft.
2423
2424 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2425
2426         * lyxtextclass.C (operator): add one item cache optimization.
2427
2428         * bufferlist.h: doxy changes
2429
2430         * bufferlist.C: ws changes
2431
2432         * DepTable.[Ch] (ext_exist): place const in the right spot.
2433
2434         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
2435         call resizeInsets.
2436         (workAreaExpose): call resizeInsets when the with BufferView changes.
2437         (Dispatch): adjust for protectedBlank removal
2438         (specialChar): call updateInset if the insert went ok.
2439
2440         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
2441         specialChar instead.
2442
2443         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
2444
2445         * BufferView.h: doxy change
2446
2447         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
2448
2449         * lyxtextclass.C (operator[]): remove non-const version
2450         (defaultLayout): remove non-const version
2451
2452 2002-03-12  Juergen Vigna  <jug@sad.it>
2453
2454         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
2455         did resize the LyXText too.
2456
2457         * buffer.C (readLyXformat2): set layout information on newly allocated
2458         paragraphs.
2459
2460         * tabular.C (OldFormatRead): set layout information on the paragraph.
2461
2462 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
2463
2464         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
2465
2466 2002-03-11  Juergen Vigna  <jug@sad.it>
2467
2468         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
2469         plainly wrong.
2470         (resizeCurrentBuffer): force also the insets to resize themselfes.
2471         (moveCursorUpdate): fixed up for InsetText.
2472
2473 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
2474
2475         * commandtags.h:
2476         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
2477         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
2478         value of Dialogs::tooltipsEnabled().
2479         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
2480
2481 2002-03-08  Juergen Vigna  <jug@sad.it>
2482
2483         * BufferView_pimpl.C (updateInset): update inset inside inset also
2484         if it isn't inside theLockingInset().
2485
2486 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2487
2488         * buffer.C (asciiParagraph): redo some of the word and line length
2489         handling.
2490         (getLists): look for Caption instead of caption.
2491
2492 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2493
2494         * buffer.C (Buffer): initialize niceFile to true
2495         (makeLaTeXFile):
2496         (makeLinuxDocFile):
2497         (makeDocBookFile): make sure niceFile is true on exit
2498
2499 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2500
2501         * buffer.C (makeLaTeXFile): escape ~ in \input@path
2502
2503 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
2504
2505         * LyXSendto.C: remove.
2506         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
2507         * lyx_gui.C: remove now-redundant comment.
2508         * ColorHandler.h: remove forward declaration of class WorkArea.
2509         * lyxfunc.C: remove #include "WorkArea.h".
2510
2511 2002-03-07  Juergen Vigna  <jug@sad.it>
2512
2513         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
2514         got moved away with the DEPM and also set the inset_owner always
2515         right which before could have been omitted.
2516
2517 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2518
2519         * buffer.C (parseSingleLyXformat2Token): use default layout is the
2520         wanted layout is not found.
2521
2522 2002-03-07  Juergen Vigna  <jug@sad.it>
2523
2524         * CutAndPaste.C (cutSelection): another layout settings forgotten.
2525
2526 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2527
2528         * paragraph.C (breakParagraph): use default layout not layout of
2529         prev paragraph.
2530         (Paragraph): clear ParagraphParameters.
2531
2532 2002-03-06  Juergen Vigna  <jug@sad.it>
2533
2534         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
2535         otherwise it would not be a valid lenght. Fixed a special case in
2536         the minipage compatibility read where we end the document with a
2537         minipage.
2538
2539         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
2540         was set as it could be 0 for InsetTexts first entry.
2541
2542 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2543
2544         * paragraph.C (writeFile): if layout is empty write out
2545         defaultLayoutName().
2546
2547         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
2548         file without named layout we set layout to defaultLayoutName().
2549
2550 2002-03-06  Juergen Vigna  <jug@sad.it>
2551
2552         * CutAndPaste.C (copySelection): set layout for new paragraph.
2553
2554         * text.C (prepareToPrint): leave ERT inset left aligned
2555         (leftMargin): don't indent paragraphs inside ERT insets
2556
2557 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2558
2559         * paragraph.C (breakParagraph): dont call clear do the work manually
2560
2561         * paragraph.[Ch] (clear): remove function
2562
2563 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2564
2565         * paragraph.C (Paragraph): dont call clear, the work has already
2566         been done.
2567
2568         * lyxtextclass.C (operator): assert if n is empty
2569
2570         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
2571         work manually instead.
2572
2573 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
2574
2575         * BufferView_pimpl.C: protect selectionLost against text == 0
2576
2577 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2578
2579         * text.C (breakParagraph): fix a setting layout to '0' problem.
2580
2581 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
2582
2583         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
2584         final location of file, for the included files, and graphics.
2585
2586 2002-03-05  Juergen Vigna  <jug@sad.it>
2587
2588         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
2589
2590 2002-03-04  Juergen Vigna  <jug@sad.it>
2591
2592         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
2593
2594         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
2595         last column of multicolumn cells.
2596         (SetWidthOfMulticolCell): recalculate NMC and real columns.
2597
2598 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
2599
2600         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
2601         file if it doesn't go to a temporary file.
2602
2603         * buffer.C (sgmlOpenTag):
2604         (sgmlCloseTag):  remove extra newline insertion.
2605
2606 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2607
2608         * text.C (getRowNearY): comment out debug msg
2609
2610 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2611
2612         * text2.C: first -> first_y
2613
2614         * text.C (getRowNearY): add some attemts at a possible
2615         optimization, not working.
2616
2617         * tabular.[Ch]: add BufferParams to several function so that newly
2618         created paragraph can be initialized to he default layotu for the
2619         buffers textclass.
2620
2621         * tabular-old.C (ReadOld): add buf->params to call of Init
2622
2623         * screen.C: rename text->first to text->first_y
2624
2625         * paragraph.C (breakParagraph): always set layout in the broken
2626         paragraph
2627
2628         * lyxtextclass.C (Read): remove lowercase
2629         (hasLayout): ditto
2630         (operator): ditto
2631         (delete_layout): ditto
2632
2633         * lyxtext.h: rename first -> first_y
2634
2635         * lyxlayout.C (Read): remove lowercase
2636         (name): ditto
2637         (setName): ditto
2638         (obsoleted_by): ditto
2639
2640         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
2641
2642         * buffer.C (insertErtContents): add params are to InsetERT
2643         (parseSingleLyXformat2Token): add code to check if a paragraphs
2644         layout really exist.
2645         (parseSingleLyXformat2Token): add params to several inset
2646         constructors
2647         (asciiParagraph): remove lowercase, do the layout comparisons with
2648         no_case
2649
2650         * BufferView_pimpl.C (cursorNext): first -> first_y
2651         (resizeCurrentBuffer): first -> first_y
2652         (updateScrollbar): first -> first_y
2653         (scrollCB): first -> first_y
2654         (workAreaMotionNotify): first -> first_y
2655         (workAreaButtonPress): first -> first_y
2656         (checkInsetHit): first -> first_y
2657         (cursorPrevious): first -> first_y
2658         (cursorNext): first -> first_y
2659         (Dispatch): add buffer_->params to severl inset contructors
2660
2661 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2662
2663         * lyxlayout.C (Read): remove some debug info that I forgot.
2664
2665         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
2666         clean up the code slightly.
2667         (makeLinuxDocFile): ditto
2668         (makeDocBookFile): ditto
2669
2670         * text2.C: layout as string
2671
2672         * text.C: layout as string
2673
2674         * paragraph_pimpl.C: layout as string
2675
2676         * paragraph.[Ch]: layout as string
2677
2678         * lyxtextclasslist.[Ch]: layout as string
2679
2680         * lyxtextclass.[Ch]: layout as string
2681
2682         * lyxtext.h: layout as string
2683
2684         * lyxlayout.[Ch]: layout as string
2685
2686         * lyx_cb.C: layout as string
2687
2688         * bufferview_funcs.C: layout as string
2689
2690         * bufferparams.C: layout as string
2691
2692         * buffer.C: layout as string
2693
2694         * LyXView.[Ch]: layout as string
2695
2696         * LaTeXFeatures.[Ch]: layout as string
2697
2698         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
2699
2700         * BufferView_pimpl.C: change current_layout to string, remove
2701         lyx::layout_type.
2702         (Dispatch):
2703         (smartQuote):
2704         (insertInset):
2705         (workAreaButtonRelease): layout as string
2706
2707         * BufferView2.C (unlockInset): adjust
2708
2709         * vspace.C (asLatexCommand): use an explict temp variable.
2710
2711 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
2712
2713         * Makefile.am: use FRONTEND_*
2714
2715 2002-03-01  Juergen Vigna  <jug@sad.it>
2716
2717         * tabular.C (SetWidthOfMulticolCell): changed to something better
2718         I hope but still work in progress.
2719         (recalculateMulticolumnsOfColumn): renamed function from
2720         recalculateMulticolCells as it is more appropriate now.
2721         (SetWidthOfCell): calculate multicols better.
2722
2723 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2724
2725         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
2726
2727         * lyxfunc.C (processKeySym): print sequence also if it is
2728         `deleted' (complete)
2729
2730         * kbsequence.C (print): print sequence even if it is deleted
2731         (complete would be a better word, actually).
2732
2733         * lyxfunc.C (dispatch): print complete options after a prefix key
2734
2735         * vspace.C (asLatexCommand): rewrite in a slightly different form.
2736
2737 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
2738
2739         * text2.C (setCharFont): eliminate setCharFont code duplication.
2740
2741 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2742
2743         * BufferView_pimpl.C (Dispatch): remove bogus handling of
2744         LFUN_TABULAR_FEATURE (bug #177)
2745
2746 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
2747
2748         * Makefile.am: remove figure.h
2749
2750 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
2751
2752         * Bufferview_pimpl.C:
2753         * CutAndPasteC:
2754         * LaTeX.C:
2755         * LyXSendto.C:
2756         * buffer.C:
2757         * bufferlist.C:
2758         * converter.C:
2759         * language.C:
2760         * lyxfunc.C:
2761         * lyxvc.C:
2762         * paragraph.C:
2763         * text.C:
2764         * text2.C: remove #include "lyx_gui_misc.h".
2765
2766         * LaTeX.C: added #include <cstdio>
2767
2768 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2769
2770         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
2771         that the paragraph following this one can have.
2772
2773         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
2774
2775         * vspace.C (asLatexCommand): fix bogus gcc warning
2776
2777         * Makefile.am (lyx_SOURCES): remove vms_defines.h
2778
2779 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
2780
2781         * text2.C (setLayout): get rid of redundant code
2782
2783 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
2784
2785         * text2.C (incDepth): make sure depth cannot be increased beyond
2786         reasonable values.
2787
2788 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
2789
2790         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
2791         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
2792
2793         * PainterBase.h (image):
2794         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
2795         a LyXImage const *.
2796
2797 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
2798
2799         * BufferView.C:
2800         * BufferView.h:
2801         * BufferView_pimpl.C:
2802         * BufferView_pimpl.h:
2803         * LaTeXFeatures.C:
2804         * LyXAction.C:
2805         * LyXView.C:
2806         * Makefile.am:
2807         * UpdateList.h:
2808         * UpdateList.C:
2809         * buffer.C:
2810         * figure.h:
2811         * figureForm.C:
2812         * figureForm.h:
2813         * figure_form.C:
2814         * figure_form.h:
2815         * lyx_cb.C:
2816         * lyx_gui.C:
2817         * lyx_gui_misc.C:
2818         * lyxfunc.C:
2819         * sp_base.h:
2820         * sp_ispell.h:
2821         * sp_pspell.h:
2822         * sp_spell.C: remove fig inset, and the crap house of
2823           cards that follows it
2824
2825 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
2826
2827         * Makefile.am:
2828         * lyxserver.C:
2829         * os2_defines.h:
2830         * os2_errortable.h:
2831         * nt_defines.h: move .h into support/
2832
2833         * vms_defines.h: remove
2834
2835         * WorkArea.C: add space in debug output
2836
2837         * text2.C:
2838         * paragraph.C:
2839         * buffer.C: add WITH_WARNINGS
2840
2841         * vc-backend.h:
2842         * vc-backend.C:
2843         * bufferlist.C: s/retrive/retrieve/, add docs
2844
2845         * vspace.h:
2846         * vspace.C:
2847         * kbmap.h:
2848         * lyxlength.h:
2849         * lyxgluelength.h:
2850         * length_common.h:
2851         * chset.h:
2852         * chset.C: add docs
2853
2854         * lyxgui.C: add ID to X error handler
2855
2856         * lyxtestclass.c: fix typo
2857
2858 2002-02-26  Juergen Vigna  <jug@sad.it>
2859
2860         * tabular_funcs.C (write_attribute): changed so that some default
2861         attributes are not written at all.
2862         (getTokenValue): set default values before trying to read the
2863         value so we have the return value always set as default if we don't
2864         find the token we search for.
2865
2866         * tabular.C (Write): write bools as bools not as strings!
2867
2868 2002-02-22  Juergen Vigna  <jug@sad.it>
2869
2870         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
2871         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
2872
2873         * text.C (leftMargin): don't add an indent for paragraphs inside
2874         tabular cells (fix #208).
2875
2876 2002-02-21  José Matos  <jamatos@fep.up.pt>
2877
2878         * tabular.C (docBook): fixed support for long tables.
2879
2880 2002-02-20  Juergen Vigna  <jug@sad.it>
2881
2882         * text2.C (getFont): get the drawing font of the Inset if this
2883         paragraph is inside an inset (only important for InsetERT for now).
2884
2885         * buffer.C (insertErtContents): use new lanugage params in ERT
2886         constructor.
2887
2888         * CutAndPaste.C: commenting out seemingly uneeded code.
2889
2890 2002-02-19  Allan Rae  <rae@lyx.org>
2891
2892         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
2893         Iterators might be simple to use but they also get invalidated.
2894         (removeAutoInsets): renamed saved cursor tracking variables and added
2895         some comments to clarify what everything does.
2896
2897 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
2898
2899         * Chktex.C:
2900         * LaTeX.C:
2901         * LyXSendto.C:
2902         * converter.C:
2903         * lyx_cb.C:
2904         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
2905         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
2906
2907         * lyxfunc.C:
2908         * vc-backend.h: remove #include "support/syscall.h"
2909
2910         * LaTeX.C:
2911         * LyXSendto.C:
2912         * converter.C: rearrange #includes in Lars' approved fashion.
2913
2914         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
2915         forward declare class Timeout in the header file.
2916
2917         * XFormsView.C: changes due to the above.
2918
2919         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
2920         similar to LyXView.
2921
2922         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
2923         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
2924
2925 2002-02-18  José Matos  <jamatos@fep.up.pt>
2926
2927         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
2928         insets contents.
2929
2930 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
2931
2932         * a lot of small ws changes
2933         * add a lot of using std::XXX
2934         * use std construcs some places where approp.
2935         * use some exisint stuff from lyxfunctional where approp.
2936         * Make file changes to use partial linking (lets test this now...)
2937
2938 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
2939
2940         * Chktex.C:
2941         * buffer.C:
2942         remove #include "support/syscontr.h" as it's redundant. Always has been.
2943
2944         * Chktex.C:
2945         * LaTeX.C:
2946         * LyXSendto.C:
2947         * converter.C:
2948         * lyx_cb.C:
2949         * vc-backend.C:
2950         change Systemcalls::System to Systemcalls::Wait and
2951         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
2952         No change of functionality, just reflects the stripped down Systemcalls
2953         class.
2954
2955 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
2956
2957         * debug.[Ch]: add a GRAPHICS type to the enum.
2958
2959 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2960
2961         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
2962
2963         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
2964         there is an inset.
2965
2966 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2967
2968         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
2969         match the changes below.
2970
2971         * text2.C (toggleInset): if there is not editable inset at cursor
2972         position, try to see if cursor is _inside_ a collapsable inset
2973         and close it.
2974
2975 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2976
2977         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
2978         document menu has a nice checkbox
2979
2980 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2981
2982         * lyxlength.C (asLatexString): change PW to output as percent of
2983         \textwidth.
2984
2985         * lengthcommon.C: change '%' to 't%'
2986
2987         * lyxfunc.C (dispatch): a few comments from Martin
2988
2989 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
2990
2991         * WorkArea.h:
2992         * WorkArea.C:
2993         * BufferView_pimpl.h:
2994         * BufferView_pimpl.C: clear our selection when X tells us we've lost
2995           the X selection.
2996
2997 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2998
2999         * vspace.C (inPixels): fix compiler warning
3000
3001 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3002
3003         * lyxfunc.C (getStatus): fix status message for disabled commands.
3004
3005 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
3006
3007         * BufferView_pimpl.C: fix crash on close buffer
3008         during selection (#227)
3009
3010 2002-01-27  Herbert Voss  <voss@lyx.org>
3011
3012         * buffer.C: link old Figure to new graphic inset
3013
3014 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
3015
3016         * FontLoader.C (getFontinfo): Change the latex font names in order
3017         to match the names of type1inst.
3018
3019 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3020
3021         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
3022
3023         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
3024         (extchanged): ditto
3025         (ext_exist): ditto
3026         (remove_files_with_extension): ditto
3027         (remove_file): ditto
3028         (write): ditto
3029
3030         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
3031         document is smaller than the work area height. Do not initialize
3032         static variables to 0.
3033
3034 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3035
3036         * lyx_gui.C (init): give the toolbar tooltips a normal font.
3037
3038         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
3039         LFUN_LAYOUT_PARAGRAPHS.
3040
3041         * tabular.C (GetCellFromInset): new method. Finds an inset in a
3042         tabular. It is possible to provide a possible cell, which will
3043         typically be the actcell from the corresponding insettabular
3044
3045         * lyxfunc.C (getStatus): small cleanup; disable
3046         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
3047         true
3048
3049 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3050
3051         * tabular.C (Validate): remove broken optimization (fixes bug #201)
3052
3053         * paragraph.C (startTeXParParams):
3054         (endTeXParParams): new methods. The LaTeX code to
3055         start/end paragraph formatting
3056         (simpleTeXOnePar): call startTeXParParams also when paragraph is
3057         empty (fixes bug #200)
3058
3059         * vspace.C (inPixels): adapt to the change below
3060         (inPixels): [later] more cleanups (remove unused variables)
3061
3062         * lyxlength.C (inPixels): change to use a width and a height as
3063         parameter.
3064
3065 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3066
3067         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
3068         Replaced with \paperwidth
3069
3070         * DepTable.C (insert): add std:: qualifier
3071
3072 2002-01-18  Allan Rae  <rae@lyx.org>
3073
3074         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
3075         updated also?
3076
3077         * text.C (drawInset): Turned out I didn't know enough about how
3078         rebreaking worked.  This fixes most of the redraw problems.  I see
3079         an occasional cursor trail when a line is broken now and the cursor
3080         placement can seem out by a few pixels also after a rebreak.
3081
3082 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3083
3084         * buffer.C (parseSingleLyXformat2Token): update because minipage
3085         width is now a LyXLength
3086
3087         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
3088
3089         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
3090         math insets
3091
3092 2002-01-17  Juergen Vigna  <jug@sad.it>
3093
3094         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
3095
3096         * BufferView2.C (lockInset): call edit() so that theLockingInset()
3097         is set correctly and the inset is updated correctly.
3098
3099 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3100
3101         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
3102         the beginning of the loop.
3103
3104 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
3105
3106         * lyxrc.C: improve help for use_scalable_fonts
3107
3108 2002-01-17  Allan Rae  <rae@lyx.org>
3109
3110         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
3111
3112 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3113
3114         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
3115         make sure to set their inset_owner to the right value (bug #171)
3116
3117 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
3118
3119         * DepTable.h
3120         * DepTable.C: Implement mtime checking to reduce time spent doing
3121         CRCs.
3122
3123 2002-01-16  Juergen Vigna  <jug@sad.it>
3124
3125         * tabular.C (GetAdditionalHeight): one of error fixed.
3126
3127         * lyxrc.C (output): small fix in writing use_pspell.
3128
3129 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
3130
3131         * sp_base.h: #include LString.h
3132
3133 2002-01-16  Allan Rae  <rae@lyx.org>
3134
3135         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
3136         Can someone check this please?
3137
3138         * text.C (drawInset): It was possible that p.row would be removed by
3139         breakAgainOneRow upsetting a few other settings.  There may be another
3140         small tweak possible by setting need_break_row = 0 when p.row has been
3141         removed but I don't know enough about the logic here.
3142
3143 2002-01-15  Allan Rae  <rae@lyx.org>
3144
3145         * text.C (insertChar): removed conditional truism.
3146
3147         * BufferView2.C (removeAutoInsets): More tweaks.
3148         cur_par_prev could be a stray pointer.  Check for trailing empty line
3149         in case last line was cur_par and only had an error inset on it.
3150
3151 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3152
3153         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
3154         absolute
3155
3156         * vc-backend.C (most methods):
3157         * exporter.C (Export):
3158         * converter.C (convert):
3159         (runLaTeX):
3160         * LyXSendto.C (SendtoApplyCB):
3161         * lyxfunc.C (dispatch):
3162         (menuNew):
3163         (open):
3164         (doImport):
3165         * lyx_cb.C (AutoSave):
3166         (InsertAsciiFile):
3167         * BufferView_pimpl.C (MenuInsertLyXFile):
3168         * buffer.C (runChktex): use Buffer::filePath().
3169
3170         * buffer.h: rename filename to filename_; rename filepath to
3171         filepath_ and make it private
3172         (filePath): new method
3173
3174         * buffer.C (writeFile): use fileName()
3175         (getLatexName):
3176
3177         * lyx_main.C (init): fix starting  of LyX when the binary is a
3178         link from so,ewhere else.
3179
3180         * minibuffer.C: include <cctype> for isprint
3181
3182 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
3183
3184         * buffer.C (parseSingleLyXformat2Token): changes associated with the
3185         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
3186         name clash with InsetCollapsable's width function.
3187
3188 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3189
3190         * lastfiles.C: include <iterator>
3191
3192 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
3193
3194         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
3195         std::count.
3196
3197         * buffer.C (makeLaTeXFile): ditto.
3198         Also make loop operation more transparent.
3199
3200 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
3201
3202         * ToolbarDefaults.C: remove trailing comma closing namespace.
3203
3204         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
3205
3206         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
3207         as in WorkArea.
3208
3209         * trans.C (Load): comment out unused variable, allowed.
3210
3211 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
3212
3213         * minibuffer.[Ch] (append_char): new method to recieve input from the
3214         drop-down completion browser. If a key was pressed, then recieve this
3215         char and append it to the existing string.
3216         (peek_event): modify the positioning data passed to the completion
3217         browser so that it can be placed above the minibuffer rather than below.
3218 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3219
3220         * LyXAction.C (init): alloe error-next for readonly documents.
3221
3222         * BufferView2.C (ChangeRefsIfUnique): use standard version of
3223         count.
3224
3225 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3226
3227         * bufferlist.C (readFile): create the buffer _after_ checking that
3228         the file exists.
3229
3230         * lyxfunc.C (verboseDispatch): fix handling of arguments
3231
3232         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
3233
3234         * lyxrc.C: use string::erase() instead of initializing to "".
3235
3236
3237 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
3238
3239         * BufferView_pimpl.h:
3240         * BufferView_pimpl.C:
3241         * WorkArea.h:
3242         * WorkArea.C:
3243         * text2.C: tell X when we have made a selection for copying
3244
3245 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3246
3247         * BufferView_pimpl.C (MenuInsertLyXFile):
3248         * lyxfunc.C (menuNew):
3249         (open):
3250         (doImport): add shortcuts to directory buttons
3251
3252         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
3253         open a float)
3254
3255         * lyxfunc.C (setStatusMessage):
3256         (getStatusMessage): new methods
3257         (getStatus):use setStatusMessage instead of setErrorMessage
3258         (dispatch): when function is disabled, set error message here
3259         [instead of in getStatus previously]
3260
3261         * BufferView_pimpl.C (workAreaButtonRelease): update
3262         toolbar/menubar here too.
3263
3264 2002-01-13  Allan Rae  <rae@lyx.org>
3265
3266         * BufferView2.C (removeAutoInsets): finished off earlier fix.
3267         Now seems indestructible.  Remaining task is to audit all other
3268         code affected by deleteEmptyParagraphMechanism.  One small quirk
3269         left is that an empty document with an error in the preamble can
3270         be made to report an error but no error box appears.  I don't know
3271         where it goes.
3272         (removeAutoInsets): Improved comments.
3273
3274 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
3275
3276         * Thesaurus.h:
3277         * Thesaurus.C: update for Aiksaurus 0.14
3278
3279 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3280
3281         * text2.C (firstParagraph): removed member function, all uses
3282         replaces with ownerParagraph
3283         (redoParagraphs): here
3284         (updateInset): here
3285         (toggleAppendix): here
3286         * BufferView2.C (insertErrors): here
3287         (setCursorFromRow): here
3288
3289 2002-01-13  Allan Rae  <rae@lyx.org>
3290
3291         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
3292         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
3293         There is still a way to segfault this although you may have to do this
3294         multiple times: Have an InsetERT with an unknown command in it.
3295         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
3296         <down-arrow>, <Enter> again, View->DVI, BANG!
3297
3298         * text2.C (setCursor):
3299         (deleteEmptyParagraphMechanism):
3300         * lyxtext.h (setCursor):
3301         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
3302         Making use of the return value may help fix other bugs.
3303
3304 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3305
3306         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
3307
3308         * LyXView.C (updateMenubar): call MenuBar::update here
3309         (updateToolbar): but not here
3310         (showState): do not update toolbar/menubar
3311
3312         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
3313         should need to care about that.
3314
3315         * lyxfunc.C (verboseDispatch): simplify a bit
3316         (getStatus): have a version which takes a pseudoaction, and
3317         another which requires a (kb_action,string).
3318
3319         * LyXAction.C (retrieveActionArg): make it work also when action
3320         is not a pseudo-action.
3321         (getActionName): simplify a bit
3322         (helpText):
3323
3324 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3325
3326         * lyxfunc.C (verboseDispatch): new families of methods with
3327         several ways to specify a command and a bool to indicate whether
3328         the command name and shortcut should be displayed in minibuffer
3329         (eventually, we could extend that to a finer bitmask like
3330         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
3331         (dispatch): the pristine dispatch command which just, well,
3332         dispatchs! Note it still sets its result to minibuffer; I'm not
3333         sure we want that.
3334
3335         * lyxfunc.h: remove setHintMessage
3336
3337         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
3338
3339 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3340
3341         * BufferView_pimpl.C (specialChar): delete new inset if we have
3342         not been able to insert it.
3343
3344         * kbmap.C: revert to using int instead of kb_action, since all we
3345         are dealing with is pseudo-actions.
3346
3347         * LyXAction.C (searchActionArg): change to return int instead of
3348         kb_action, since the result is a pseudoaction.
3349
3350 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
3351
3352         * buffer.C (insertErtContents): Fix (partially) the font bug.
3353
3354 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
3355
3356         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
3357         as the other one is broken on my machine!
3358
3359 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
3360
3361         * commandtags.h:
3362         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
3363
3364 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
3365
3366         * lyxrc.[Ch]: change names and descriptions of popup font variables to
3367         reflect their actual use. Provide compatibility code for older lyxrc
3368         files.
3369
3370         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
3371         FL_NORMAL_STYLE.
3372         change names of popup font variables in line with the changes to lyxrc.C
3373
3374 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3375
3376         * buffer.C (asciiParagraph): avoid outputing a word twice after
3377         an inset.
3378
3379         * lyxrc.C (getDescription): document that document_path and
3380         template_path can be empty.
3381
3382 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3383
3384         * LaTeXFeatures.C (getMacros):
3385         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
3386
3387         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
3388
3389         * LaTeXFeatures.C (useFloat): require "float" here instead of in
3390         getPackages.
3391         (getPackages): rename feature "floats" to "float". Use an array to
3392         iterate over 'simple' features (i.e. just a \usepackage). Add
3393         handling of "amsmath" (renamed from "amsstyle").
3394
3395 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
3396
3397         * LaTeXFeatures.C (require): Prevent duplicate entries in the
3398         features list.
3399
3400 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
3401
3402         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
3403         FuncStaus::FuncStatus & FuncStaus::some_method().
3404
3405 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
3406
3407         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
3408         of the func_satus stuff. Edited and massaged in various ways by
3409         JMarc.
3410
3411         * lyxfunc.C (getStatus): use FuncStatus
3412
3413 2002-01-08  Juergen Vigna  <jug@sad.it>
3414
3415         * text.C (nextBreakPoint): use function Inset::isChar().
3416
3417         * paragraph.C (TeXOnePar): use function
3418         Inset::forceDefaultParagraphs.
3419
3420         * buffer.C (latexParagraphs): use function
3421         Inset::forceDefaultParagraphs.
3422
3423 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
3424
3425         * lyx_gui.C (init): set the style of the menu popups to
3426         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
3427
3428 2002-01-07  Juergen Vigna  <jug@sad.it>
3429
3430         * text.C (setHeightOfRow): small fix
3431         (prepareToPrint): don't look at alignment if we don't have the place
3432         for doing it.
3433
3434 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
3435
3436         * box.C: New file. Move the Box methods and functions out of box.h,
3437         following Lars' suggestion.
3438
3439 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
3440
3441         * box.h: #include "support/LOstream.h", needed for inlined function.
3442
3443         * lyxtextclass.C:
3444         * lyxtextclasslist.C: added some using std declarations.
3445
3446 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
3447
3448         * box.h: make signed dimensions to allow insets wider than
3449           the screen (bug #162)
3450
3451         * BufferView_pimpl.C: add some insetHit debug
3452
3453 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
3454
3455         * vc-backend.C: add FIXME
3456
3457 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3458
3459         * lyxfunc.C (getStatus): enable code for showing math font status
3460         in toolbar/menu.
3461
3462 2002-01-07  Juergen Vigna  <jug@sad.it>
3463
3464         * text.C (nextBreakPoint): removed debug output not needed anymore.
3465
3466 2002-01-06  Juergen Vigna  <jug@sad.it>
3467
3468         * text.C (nextBreakPoint): fixed up this function we had this bug
3469         since ever but now hopefully we break row better.
3470         (insertChar): we have to check if an inset is the next char as it
3471         could now happen that a large inset is causing a break.
3472
3473 2002-01-05  Juergen Vigna  <jug@sad.it>
3474
3475         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
3476         if it doesn't like to be drawed.
3477
3478 2002-01-04  Juergen Vigna  <jug@sad.it>
3479
3480         * BufferView2.C (lockInset): forgot to set a cursor.
3481
3482         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
3483
3484 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
3485
3486         * FormMathsPanel.C:
3487         * FormMathsPanel.h
3488         * MathsSymbols.C:
3489         * form_maths_panel.C:
3490         * form_maths_panel.h:
3491         * form_maths_panel.fd: implemented sub- and super- buttons in math
3492         panel.
3493
3494         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
3495         (or ^ space) to be used as in TeX (req'd by André).
3496
3497         * lyxfunc.C: Allow ^ and _ again to be used both as
3498         super/subscript (mathed) and as themselves (in text).
3499
3500 2002-01-03  Allan Rae  <rae@lyx.org>
3501
3502         * LyXView.C (updateWindowTitle): Setup a short icon title of either
3503         "LyX" or the filename of the current buffer if it has one.  This is a
3504         modified form of John Levon's patch.
3505
3506         * XFormsView.C (setWindowTitle): also set icon title.
3507
3508         * LyXView.h (setWindowTitle): signature changed.
3509         * XFormsView.h (setWindowTitle): ditto.
3510
3511 2002-01-02  Juergen Vigna  <jug@sad.it>
3512
3513         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
3514
3515 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3516
3517         * screen.C (topCursorVisible): introduce a temp var for
3518         text->cursor.row(), handle the case where this row is null. (kindo
3519         hachish)
3520
3521         * text2.C (setCursor): add a couple of asserts.
3522
3523         * paragraph.h (inset_iterator): add -> operator
3524
3525         * paragraph.[Ch] (autoDeleteInsets): remove member function
3526
3527         * BufferView2.C (removeAutoInsets): rewrite to handle the old
3528         cursor pos correctly and handle inset deletion by itself.
3529         (insertErrors): move iterator declaration out of for expression
3530
3531         * lyxtextclass.C: add <algorithm>
3532
3533         * Makefile.am: added the new files to sources, removed layout.C
3534
3535         * layout.C: removed file
3536
3537         * layout.h: remove LYX_DUMMY_LAYOUT
3538
3539         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
3540         layout.
3541
3542         * lyxlayout.[Ch]:
3543         * lyxtextclass.[Ch]:
3544         * lyxtextclasslist.[Ch]: new files
3545
3546         * include order changes to a lot of files, also changes because of
3547         the six new files.
3548
3549 2001-12-27  Juergen Vigna  <jug@sad.it>
3550
3551         * buffer.C (asciiParagraph): more fixes.
3552
3553         * tabular.C (ascii): make ascii export support export of only the
3554         data separated by a column-delimiter.
3555         (ascii): better support for ascii export.
3556
3557         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
3558
3559 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3560
3561         * tabular_funcs.C: use a "using std::getline" instead of the
3562         previous fix from Angus (necessary for cxx + lyxstring)
3563
3564 2001-12-24  Juergen Vigna  <jug@sad.it>
3565
3566         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
3567
3568         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
3569         problems. First check a minipage also if we have some ert-contents
3570         (not only on par->size(), second set the right depth of the paragraph
3571         on the relink to the root-paragraph-list!
3572
3573         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
3574         which then did not anymore update the main paragraphs on undo/redo!
3575
3576 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3577
3578         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
3579         code. Support all font-changing funcs (even those which are not in
3580         menu currently). Support for reporting font settings in
3581         mathed (disabled until Andre provides a function on mathed's side).
3582
3583         * func_status.h (toggle): small helper function to set toggle
3584         state on a flag.
3585
3586 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
3587
3588         * tabular_funcs.C: getline -> std::getline
3589
3590 2001-12-21  Juergen Vigna  <jug@sad.it>
3591
3592         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
3593         accessed and could be 0 (I couldn't generate this but it seems
3594         Michael could!).
3595
3596 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3597
3598         * tabular_funcs.C: add LIstream.h, move write_attribute to..
3599         * tabular_funcs.h: here and include iosfwd
3600
3601 2001-12-20  Juergen Vigna  <jug@sad.it>
3602
3603         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
3604         inside inset but undo_par was.
3605
3606 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3607
3608         * Thesaurus.C: always include <config.h> in sources.
3609
3610         * Painter.h:
3611         * lyxlookup.h:
3612         * box.h: do not include <config.h> in header files
3613
3614         * text.C (paintLastRow): remove unused variable
3615
3616         * text.C (transformChar):
3617         (insertChar):
3618         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
3619
3620         * Painter.C (text):
3621         * font.C (width): rewrite to use uppercase() instead of
3622         islower/toupper.
3623
3624         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
3625
3626 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
3627
3628         * lyxfind.C: clean up of find failure position change
3629
3630 2001-12-20  Juergen Vigna  <jug@sad.it>
3631
3632         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
3633
3634         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
3635         (TeXRow): added to LaTeX a single tabular row.
3636         (TeXLongtableHeaderFooter): added to output LT-h/f data.
3637         (Latex): simplified and finally good LT-h/f support.
3638         (various_functions): just small adaptions for LT-h/f support.
3639
3640         * tabular_funcs.[hC]: added and moved here all not classfunctions
3641         of LyXTabular.
3642
3643 2001-12-19  Juergen Vigna  <jug@sad.it>
3644
3645         * tabular.[Ch]: better support for longtabular options (not finished
3646         yet!)
3647
3648 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3649
3650         * text.C (paintLastRow): use the label font instead of the font of
3651         the last character to compute the size of *_BOX. This makes more
3652         sense and avoids a crash with empty paragraphs.
3653         Use Painter::rectangle to draw EMPTY_BOX.
3654
3655 2001-12-19  Juergen Vigna  <jug@sad.it>
3656
3657         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
3658         the paragraphs if the replaced paragraph is not the first one!
3659         Tried to delete not used paragraphs but does not work yet so for
3660         now it's inside #ifdef's and by default off!
3661
3662 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3663
3664         * MenuBackend.C: include "lyx_main.h" instead of declaring
3665         lastfiles (actually was declared as LastFiles* instead of a
3666         scoped_ptr).
3667
3668 2001-12-17  Juergen Vigna  <jug@sad.it>
3669
3670         * tabular.C (AppendColumn): applied John's fix
3671
3672 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
3673
3674         * BufferView.h:
3675         * BufferView.C:
3676         * BufferView_pimpl.h:
3677         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
3678
3679         * Makefile.am:
3680         * box.h: new start of class for above
3681
3682         * lyxfunc.C: ignore space-only minibuffer dispatches.
3683           Show the command name when it doesn't exist
3684
3685         * minibuffer.C: don't add empty lines to the history
3686
3687         * minibuffer.C: add a space on dropdown completion
3688
3689 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
3690
3691         * text.C: fix line above/below drawing in insets
3692
3693 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3694
3695         * lyxlength.C (LyXLength): Initialize private variables.
3696
3697 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
3698
3699         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
3700         when inserting error insets.
3701
3702 2001-12-13  Juergen Vigna  <jug@sad.it>
3703
3704         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
3705         actually sometimes the before-paragraph.
3706         (setUndo): don't clear the redostack if we're not actually undoing!
3707
3708 2001-12-06  Juergen Vigna  <jug@sad.it>
3709
3710         * undo_funcs.C (textHandleUndo): well after John's hint I got here
3711         and fixed redoing of main paragraph, so we can use it now ;)
3712
3713         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
3714
3715 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3716
3717         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
3718         Juergen's request
3719
3720 2001-12-13  André Pönitz <poenitz@gmx.net>
3721
3722         * undostack.[Ch]:
3723         * undo_func.C: minor cleanup
3724
3725 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3726
3727         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
3728         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
3729         font in urw-fonts package which is marked as -urw-fontspecific and
3730         does not work (incidentally, changing the encoding in the
3731         fonts.dir of this package to -adobe-fontspecific fixes the
3732         problem).
3733
3734         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
3735         is a crash when undoing first paragraph (Juergen, please take a
3736         look). THis does not mean the undo fix is wrong, just that it
3737         uncovers problems.
3738
3739         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
3740         the (Paragraph*) version when needed instead of duplicating the
3741         code.
3742
3743         * text.C (workWidth): use Inset::parOwner to find out where the
3744         inset has been inserted. This is a huge performance gain for large
3745         documents with lots of insets. If Inset::parOwner is not set, fall
3746         back on the brute force method
3747
3748         * paragraph_pimpl.C (insertInset):
3749         * paragraph.C (Paragraph):
3750         (cutIntoMinibuffer): set parOwner of insets when
3751         inserting/removing them
3752
3753         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
3754
3755 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
3756
3757         * commandtags.h:
3758         * LyXAction.C:
3759         * lyx_main.C:
3760         * lyxfunc.C:
3761         * mathed/formulabase.C:
3762         * mathed/math_cursor.[Ch]:
3763         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
3764
3765
3766 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3767
3768         * lyxlength.[Ch] (operator!=): new function
3769
3770 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3771
3772         * text.C (workWidth): use Inset::parOwner to find out where the
3773         inset has been inserted. This is a huge performance gain for large
3774         documents with lots of insets. If Inset::parOwner is not set, fall
3775         back on the brute force method
3776
3777         * paragraph_pimpl.C (insertInset):
3778         * paragraph.C (Paragraph):
3779         (cutIntoMinibuffer): set parOwner of insets when
3780         inserting/removing them
3781
3782         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
3783
3784 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3785
3786         * tabular-old.C (getTokenValue):
3787         * tabular.C (getTokenValue):
3788         (write_attribute): new versions for LyXLength
3789         (everywhere): adjust the use of widths
3790
3791         * tabular.h: change the type of widths from string to LyXLength
3792
3793 2001-12-11  Ben Stanley <bds02@uow.edu.au>
3794
3795         * paragraph.C: fixed missing line number count when exporting
3796         Environments to LaTeX file
3797
3798         * buffer.C: added informational message for checking line numbers.
3799
3800 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3801
3802         * text2.C (deleteEmptyParagraphMechanism): if there is only one
3803         paragraph, do the 'double space' part, but not the 'empty
3804         paragraph' one.
3805
3806         * text.C (workWidth): small optimization
3807         (getLengthMarkerHeight): use minimal size for negative lengths.
3808
3809 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
3810
3811         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
3812
3813         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
3814
3815 2001-12-11  André Pönitz <poenitz@gmx.net>
3816
3817         * FontLoader.C:
3818         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
3819
3820 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
3821
3822         * text2.C: keep selection on a setFont()
3823
3824 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
3825
3826         * lyx_cb.C: another bv->text misuse, from insert label
3827
3828 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
3829
3830         * kbsequence.h:
3831         * kbsequence.C: re-instate nmodifier mask
3832
3833 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
3834
3835         * lyx_main.h: make lyxGUI private.
3836
3837 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
3838
3839         * lyxfind.C: place the cursor correctly on failed search
3840
3841 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3842
3843         * text.C (getLengthMarkerHeight): for small heights, the arrows
3844         are not always on top/bottom of the text
3845         (drawLengthMarker): smaller arrows; take the left margin in
3846         account; draw also vfills.
3847         (paintFirstRow):
3848         (paintLastRow): remove special code for vfill and standard spaces,
3849         since everything is handled in drawLengthMarker now.
3850
3851 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3852
3853         * buffer.C (insertErtContents): try to handle font and language
3854         interaction a bit better.g
3855
3856         * ColorHandler.C (updateColor): change the hash to cover the whole
3857         LColor enum, ws cleanup
3858         (getGCLinepars): ditto
3859         (getGCLinepars): only lookup in the linecache once.
3860
3861 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
3862
3863         * iterators.C (operator++): Make the iterator more robust
3864
3865         * BufferView2.C (removeAutoInsets): Use paragraph iterators
3866         (John's patch)
3867         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
3868
3869 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
3870
3871         * lyxtext.h:
3872         * text.C: better added space drawing
3873
3874 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
3875
3876         * LyXView.C:
3877         * BufferView2.C: fix layout combo update on inset unlock
3878
3879 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
3880
3881         * Makefile.am: don't compile unused files
3882
3883 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
3884
3885         * lyxfunc.C:
3886         * commandtags.h:
3887         * LyXAction.C: remove old LFUN_LAYOUTNO
3888
3889 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
3890
3891         * paragraph_pimpl.h:
3892         * paragraph_pimpl.C: isTextAt() doesn't need font param
3893
3894 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
3895
3896         * lyxlex.h:
3897         * lyxlex.C: little cleanup
3898
3899 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
3900
3901         * BufferView_pimpl.C: fix insertAscii for insets
3902
3903 2001-12-05  Juergen Vigna  <jug@sad.it>
3904
3905         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
3906         set the right font on the "multi" paragraph paste!
3907
3908 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3909
3910         * trans_decl.h:
3911         * trans_mgr.[Ch]:
3912         * trans.[Ch]:
3913         * lyxgluelength.C:
3914         * lyxlength.C: remove out-commented code.
3915
3916         * BufferView_pimpl:
3917         * CutAndPaste.C:
3918         * DepTable.C:
3919         * buffer.C:
3920         * chset.C:
3921         * lastfiles.C:
3922         * lyxlex.C:
3923         * lyxlex_pimpl.C:
3924         * lyxserver.C:
3925         * screen.C:
3926         * tabular-old.C:
3927         * tabular.C:
3928         * text.C:
3929         * trans_mgr.C:
3930         * vc-backend.C: change "while(" to "while ("
3931
3932         * lyxlength.[Ch]: add zero function to check if length is zero or
3933         not
3934         * lyxgluelength.C: use it
3935
3936 2001-12-05  Allan Rae  <rae@lyx.org>
3937
3938         * lyxlength.C: Attempted a fix for the abs(int) header selection.
3939         Works for 2.95.3, from what I understand of Garst's reports this should
3940         work for other g++ versions.  We're screwed if the abs(int) definition
3941         changed between bugfix releases of gcc.
3942
3943 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
3944
3945         * text.C: fix chapter label offset !
3946
3947 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
3948
3949         * lyxtext.h:
3950         * text.C: fix hfill at end of line, clean up
3951
3952 2001-12-04  Juergen Vigna  <jug@sad.it>
3953
3954         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
3955         that we force an update of the inset and it's owners if neccessary.
3956
3957 2001-12-03  Juergen Vigna  <jug@sad.it>
3958
3959         * text.C (rowLast): simplified code
3960
3961 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
3962
3963         * lyxfunc.C: fix show options on timeout
3964
3965 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3966
3967         * screen.C (topCursorVisible): scroll half a page when the cursor
3968         reached top of bottom of screen
3969
3970 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
3971
3972         * minibuffer.C: deactivate on loss of focus
3973
3974 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3975
3976         * vspace.[Ch] (operator!=): add operator.
3977
3978 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
3979
3980         * BufferView_pimpl.C: refuse to open an inset when
3981         there's a selection.
3982
3983 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
3984
3985         * BufferView_pimpl.C: allow to click on RHS of full row insets
3986
3987 2001-11-30  Juergen Vigna  <jug@sad.it>
3988
3989         * tabular.C (LyXTabular): add a same_id to set the same id's in the
3990         insets for undo reasons.
3991
3992 2001-11-28  André Pönitz <poenitz@gmx.net>
3993
3994         * vspace.[Ch]: cosmetical changes
3995
3996 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
3997
3998         * LyXAction.h:
3999         * LyXAction.C:
4000         * lyxfunc.h:
4001         * lyxfunc.C:
4002         * kbmap.h:
4003         * kbmap.C:
4004         * lyxrc.C:
4005         * kbsequence.h:
4006         * kbsequence.C: part re-write of old kb code
4007
4008         * Painter.C:
4009         * WorkArea.C: remove Lgb_bug_find_hack
4010
4011 2001-11-30  José Matos <jamatos@fep.up.pt>
4012
4013         * buffer.C (makeDocBookFile): add a comment to point a hack.
4014         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
4015         Fixed a double write of labels.
4016
4017 2001-11-29 Ben Stanley <bds02@uow.edu.au>
4018
4019         * LaTeX.C:
4020         * LaTeX.h Fixed bug in LaTeX class where it would not
4021         re-run latex if no depfiles were changed, but the .dvi was removed.
4022
4023 2001-11-28  André Pönitz <poenitz@gmx.net>
4024
4025         * all the files from the change on 2001/11/26:
4026         use lyx::layout_type instead of LyXTextClass::size_type
4027         use lyx::textclass_type instead of LyXTextClassList::size_type
4028
4029 2001-11-29  Juergen Vigna  <jug@sad.it>
4030
4031         * text.C: added support for paragraph::isFreeSpacing()
4032
4033         * buffer.C: same as above
4034
4035         * paragraph.h: inserted isFreeSpacing() function to enable
4036         FreeSpacing inside InsetERT.
4037
4038         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
4039         of the paragraph's in the cut/copy buffer to 0!
4040
4041         * text2.C (removeRow): remove the assert as it can!
4042
4043         * lyxtext.h: added helper function firstRow returning firstrow and
4044         made firstrow private again.
4045
4046         * BufferView2.C (lockInset): don't relock if we're already locked!
4047
4048         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
4049         the only paragraph.
4050         (removeRow): added Assert::(firstrow)
4051
4052         * debug.C: forgot to add INSETTEXT here.
4053
4054 2001-11-28  Juergen Vigna  <jug@sad.it>
4055
4056         * sp_spell.C (initialize): changed error text to more general
4057         spellchecker command use (not only ispell!)
4058
4059         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
4060
4061         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
4062
4063 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
4064
4065         * vspace.C: initialise lyxgluelength on failure
4066
4067 2001-11-28  Allan Rae  <rae@lyx.org>
4068
4069         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
4070         declaration & definition that looks like a function declaration.
4071
4072 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4073
4074         * BufferView2.C (copy):
4075         (copyEnvironment): do not clear the selection when doing a copy.
4076
4077         * text.C (paintFirstRow): compilation fix
4078
4079 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
4080
4081         * tabular.C (Latex): correct line count when writing latex.
4082
4083 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
4084
4085         * paragraph_pimpl.h:
4086         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
4087           bug a bit
4088
4089 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
4090
4091         * text.C:
4092         * LColor.h:
4093         * LColor.C: change vfillline->added_space
4094
4095         * text.C: add markers and text for added space
4096
4097         * vspace.C: fix comment
4098
4099 2001-11-28  André Pönitz <poenitz@gmx.net>
4100
4101         * paragraph.C: whitespace changes
4102         * all the other files from the change on 2001/11/26:
4103         change *::pos_type into lyx::pos_type
4104
4105 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
4106
4107         * buffer.C (parseSingleLyXformat2Token): Set the language to the
4108         language of the document when inserting error insets.
4109
4110 2001-11-26  André Pönitz <poenitz@gmx.net>
4111
4112         * BufferView_pimpl.[Ch]:
4113         *       CutAndPaste.C:
4114         * buffer.[Ch]:
4115         * lyxcursor.[Ch]:
4116         * lyxfind.C:
4117         * lyxfunc.C:
4118         * lyxrow.[Ch]:
4119         * paragraph.[Ch]:
4120         * paragraph_pimpl.[Ch]:
4121         * sp_spell.C:
4122         * text.C:
4123         * text2.C: reduce header dependencies, introduce type for positions
4124
4125 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
4126
4127         * <various>: change to use Alert.h
4128
4129 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
4130
4131         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
4132         when encountering an unknown token.
4133         (readLyXformat2): Show an error message if there were unknown tokens.
4134
4135 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
4136
4137         * BufferView2.C:
4138         * BufferView_pimpl.C:
4139         * buffer.C:
4140         * paragraph.h:
4141         * text.C:
4142         * text2.C: use par->isInset()
4143
4144 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
4145
4146         * paragraph_pimpl.h:
4147         * paragraph_pimpl.C: cleanup
4148
4149 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4150
4151         * text2.C (removeRow):
4152         * text.C (setHeightOfRow): remove useless (and costly) call to
4153         getRow.
4154
4155 2001-11-20  Allan Rae  <rae@lyx.org>
4156
4157         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
4158         Now need Inset*::checkInsertChar() to return true for appropriate
4159         cases so that the characters in the minibuffer will actually be
4160         inserted.
4161
4162 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4163
4164         * text.C: change the order of the includes.
4165         (workWidth): initialize it at once.
4166         (workWidth): make maxw unsigned
4167         (setHeightOfRow): remove unused variable (inset)
4168         (selectSelectedWord): remove unused variable (inset)
4169         (paintRowText): fix drawing of hfill characters, and clean up a bit.
4170
4171 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4172
4173         * lyxserver.C (emergencyCleanup): do not try to close pipes if
4174         server is not running.
4175         (openConnection):
4176         (closeConnection): add debug info when server is disabled.
4177
4178         * ColorHandler.C (getGCForeground): send debug message to GUI
4179         channel.
4180
4181         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
4182
4183         * kbmap.C (bind): modify because return conventions of
4184         kb_sequence::parse have changed.
4185
4186         * kbsequence.C (parse): only ignore spaces and not any stupid
4187         control character. This avoids tests like s[i] <= ' ', which are
4188         guaranteed to fail with 8bit characters and signed chars.
4189         Change return code to string::npos when there have been no error
4190         (0 was a bad idea when error is at first character)
4191
4192 2001-11-14  José Matos  <jamatos@fep.up.pt>
4193
4194         * buffer.h:
4195         * buffer.C (simpleDocBookOnePar): removed unused argument.
4196
4197 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4198
4199         * text.C (selectNextWordToSpellcheck): do not test explicitely for
4200         insets which are part of a word. Paragraph::isLetter takes care of
4201         that now. Use Paragraph::isInset to identify insets.
4202         (selectSelectedWord): do not test for hyphenation break.
4203
4204         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
4205         that protected spaces are considered as spaces.
4206
4207         * paragraph.C (isLetter): cleanup the code for ispell extras; use
4208         Inset::isLetter.
4209
4210 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
4211
4212         * lyxserver.h:
4213         * lyxserver.C: fix it. and small cleanup.
4214
4215 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
4216
4217         * BufferView_pimpl.C: use inline helpers
4218
4219         * LaTeXFeatures.h:
4220         * LaTeXFeatures.C: fix typos
4221
4222         * Spacing.h:
4223         * Spacing.C: move spacing_string into class
4224
4225         * ToolbarDefaults.C: move stuff into namespace anon
4226
4227         * layout.h: update enum
4228
4229         * lyxfunc.C: use better debug
4230
4231         * minibuffer.h: fix typo
4232
4233         * debug.h:
4234         * debug.C:
4235         * WorkArea.C: add and use Debug::WORKAREA
4236
4237         * lyxtext.h:
4238         * text.C:
4239         * text2.C: code re-organisation, inline helpers
4240
4241 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
4242
4243         * Layout.C: replaced a few cases of std::vector.size() == 0 with
4244         std::vector.empty().
4245
4246 2001-11-09  Allan Rae  <rae@lyx.org>
4247
4248         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
4249         '\n's after tables.  Tabular and ERT inset work now makes this no
4250         longer necessary.
4251
4252 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
4253
4254         * minibuffer.h:
4255         * minibuffer.C: fix crash, improve drop-down completion
4256
4257 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
4258
4259         * lyxserver.h:
4260         * lyxserver.C: invalidate fd's when doing endPipe()
4261
4262 2001-11-08  José Matos  <jamatos@fep.up.pt>
4263
4264         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
4265         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
4266
4267         * paragraph.h:
4268         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
4269
4270 2001-11-07  José Matos  <jamatos@fep.up.pt>
4271
4272         * buffer.h:
4273         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
4274         const qualifier.
4275
4276         * buffer.C (sgmlOpenTag):
4277         * buffer.C (sgmlCloseTag): removed debug info.
4278
4279         * buffer.h (sgmlOpenTag):
4280         * buffer.h (sgmlCloseTag): made public.
4281
4282 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4283
4284         * buffer.C (saveParamsAsDefaults):
4285         * lyx_cb.C (MenuLayoutSave): remove
4286
4287         * LyXAction.C (init):
4288         * commandtags.h:
4289         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
4290
4291 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4292
4293         * buffer.C (setPaperStuff): removed from here...
4294
4295         * bufferparams.C (setPaperStuff): ... and moved there.
4296
4297 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
4298
4299         * minibuffer.h:
4300         * minibuffer.C:
4301         * XFormsView.C: add support for drop-down completion
4302
4303 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
4304
4305         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
4306         commands.
4307
4308 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4309
4310         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
4311         disabled.
4312
4313 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
4314
4315         * lyx_main.C: change ref to known bugs
4316
4317 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
4318
4319         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
4320         to work around older babel problems.
4321
4322 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
4323
4324         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
4325
4326 2001-10-24  Juergen Vigna  <jug@sad.it>
4327
4328         * tabular-old.C (ReadOld): below variable changes reflected.
4329
4330         * tabular.[Ch]: added ltType struct for longtable header/footer
4331         defines and changed all instances where they are used. Added
4332         future support for double top/bottom rows.
4333
4334 2001-10-24  José Matos  <jamatos@fep.up.pt>
4335
4336         * buffer.h (docbookHandleCaption):
4337         * buffer.C (docbookHandleCaption): removed unused function.
4338         (makeDocBookFile): moved docbook supported version to v4.1.
4339
4340 2001-10-24  José Matos  <jamatos@fep.up.pt>
4341
4342         * tabular.h:
4343         * tabular.C (docbookRow): new function to export docbook code of a row.
4344         (DocBook): now honors the longtable flags.
4345
4346 2001-10-23  José Matos  <jamatos@fep.up.pt>
4347
4348         * LaTeXFeatures.h:
4349         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
4350         of the lyx defined sgml entities used in a docbook/linuxdoc document.
4351
4352         * buffer.C (makeLinuxDocFile):
4353         (makeDocBookFile): reworked the preamble, more clean, and with
4354         support for lyx defined entities. Changed the document declaration
4355         to be more XML friendly.
4356
4357         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
4358         if we need to output XML that should be done with a filter.
4359
4360 2001-10-22  Juergen Vigna  <jug@sad.it>
4361
4362         * sp_pspell.h (class PSpell): add alive function needed in the
4363         controller to see if the spellchecker could be started.
4364
4365 2001-10-22  Juergen Vigna  <jug@sad.it>
4366
4367         * buffer.C (insertStringAsLines): modify the font for inserting
4368         chars in certain conditions by calling checkInsertChar(font).
4369
4370 2001-10-19  Juergen Vigna  <jug@sad.it>
4371
4372         * text.C (workWidth): use getRow instead of wrong algorithm.
4373         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
4374
4375 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
4376
4377         * lyxserver.h:
4378         * lyxserver.C:
4379         * lyx_main.h:
4380         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
4381
4382 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4383
4384         * text.C (workWidth): do not search for the exact row when
4385         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
4386         optimization for big documents.
4387
4388 2001-10-18  Juergen Vigna  <jug@sad.it>
4389
4390         * text.C (workWidth): new function with added Inset * parameter.
4391
4392 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4393
4394         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
4395
4396         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
4397         change return type of getColumnNearX.
4398
4399
4400         * text.C (changeRegionCase): use uppercase/lowercase instead of
4401         toupper/tolower.
4402         (leftMargin):
4403         (rightMargin): simplify code by factoring out the uses of
4404         textclasslist.
4405         (labelFill):
4406         (numberOfHfills):
4407         (setHeightOfRow):
4408         (appendParagraph): use Paragraph::size_type
4409
4410 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4411
4412         * vspace.C (asLatexString): add a missing break
4413
4414 2001-10-15  Herbert Voss  <voss@perce.de>
4415
4416         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
4417
4418 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4419
4420         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
4421         is not available.
4422
4423 2001-10-10  André Pönitz <poenitz@gmx.net>
4424
4425         * lyxfunc.C: removed greek_kb_flag.
4426
4427 2001-10-10  Herbert Voss  <voss@perce.de>
4428
4429         * lyx_main.C: delete global string help_lyxdir.
4430
4431 2001-10-09  Herbert Voss  <voss@perce.de>
4432
4433         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
4434
4435         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
4436
4437         * lyx_main.C: added global string help_lyxdir.
4438
4439         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
4440
4441 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
4442
4443         * lyxrc.C (set_font_norm_type): support iso8859-4
4444
4445 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
4446
4447         * LaTeX.C (deplog): add another regex for MikTeX
4448
4449 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
4450
4451         * lyxrc.C (set_font_norm_type): support iso8859-3
4452
4453 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4454
4455         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
4456
4457         * LaTeXFeatures.C: remove special case of french and index
4458
4459         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
4460         before \begin{document}). This solves several incompatibilities.
4461
4462 2001-10-03  Garst Reese  <reese@isn.net>
4463
4464         * lyx_cb.C: change CheckTex error msg.
4465
4466 2001-10-03  José Matos  <jamatos@fep.up.pt>
4467
4468         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
4469
4470 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4471
4472         * .cvsignore: update
4473
4474         * lyx_main.C (commandLineVersionInfo): use new style version info.
4475
4476         * buffer.C (writeFile):
4477         (makeLaTeXFile):
4478         (makeLinuxDocFile):
4479         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
4480
4481         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
4482
4483         * version.h: update to use stuff in version.C
4484
4485         * version.C.in: new file. Contains version information determined
4486         at compile time. This is a merging of version.h and
4487         version_info.h.in.
4488
4489 2001-10-03  Juergen Vigna  <jug@sad.it>
4490
4491         * BufferView_pimpl.C (update): don't change "dirty" status in
4492         updateInset call.
4493
4494 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
4495
4496         * WorkArea.C (c-tor): re-position version string slightly.
4497
4498 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
4499
4500         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
4501         revert to previous code.
4502
4503         WorkArea.[Ch]: (show, destroySplash): methods removed.
4504
4505         WorkArea.C: rework code so that it's an amalgam of the codes before and
4506         after the splash screen was moved to WorkArea.
4507
4508 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4509
4510         * lyxrc.C (read):
4511         * vspace.C (inPixels):
4512         (lyx_advance):
4513         * kbmap.C (bind):
4514         * buffer.C (insertStringAsLines):
4515         (asciiParagraph): fix types to be large enough
4516
4517         * lyxlex_pimpl.h: change member status from short to int
4518
4519         * layout.h: fix type of endlabeltype
4520
4521         * kbmap.C (bind):
4522         * kbsequence.C (parse): change return type to string::size_type
4523
4524         * LaTeX.C (updateBibtexDependencies): comment out unneeded
4525         variable
4526
4527         * Bullet.C (bulletSize):
4528         (bulletEntry): do not use short ints as parameters
4529
4530         * BufferView2.C (insertLyXFile): change a char to an int.
4531
4532         * WorkArea.C (WorkArea): remove unneeded floats in computation
4533
4534 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
4535
4536         * buffer.C (asciiParagraph): Treat '\\' as other chars.
4537
4538         * paragraph.C (asString): Do not ignore newline/hfill chars when
4539         copying to the clipboard.
4540
4541 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
4542
4543         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
4544         after a multi-line inset.
4545
4546 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
4547
4548         * paragraph.C (validate): Set NeedLyXFootnoteCode
4549
4550 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
4551
4552         * lyxfont.C (LyXSizeNames): changed increase-error to increase
4553         and decrease-error to decrease.
4554
4555 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4556
4557         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
4558         it more readable (should be equivalent)
4559
4560 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
4561
4562         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
4563
4564 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4565
4566         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
4567         of a cursor (row, etc.) after a character has been deleted
4568         (deleteEmptyParagraphMechanism): call the method above on _all_
4569         cursors held by the LyXText when a double space has been
4570         detected/deleted.
4571
4572 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
4573
4574         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
4575         pixmap.
4576         (resizeCurrentBuff): remove code to destroy the old splash dialog.
4577
4578         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
4579         background. Use greyOut() and the new show() methods to toggle between
4580         the foreground and background. Add code to remove the splash after
4581         its initial showing.
4582
4583         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
4584         (create_forms): no longer call Dialogs::showSplash.
4585
4586 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4587
4588         * .cvsignore: add version_info.h
4589
4590 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4591
4592         * version_info.h.in: new file
4593
4594         * Makefile.am: add version_info.h.in
4595
4596         * lyx_main.C (commandLineVersionInfo): use version_info defined in
4597         version_info.h instead of VERSION_INFO
4598
4599 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
4600
4601         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
4602         The ERT inset now returns string().
4603
4604 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
4605
4606         * lyxtext.h, text.C (selectNextWord): renamed as
4607         selectNextWordToSpellcheck.
4608
4609         * text.C (selectNextWordToSpellcheck): Modified to not select
4610         words inside an ERT inset.
4611
4612 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4613
4614         * lyx_cb.C (MenuLayoutSave): change a bit the question
4615
4616         * sp_base.h: include <sys/types.h>
4617
4618 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
4619
4620         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
4621
4622 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
4623
4624         * several files: fix typos in user-visible strings
4625
4626 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4627
4628         * text2.C (pasteSelection): do not set the selection, since it
4629         will be cleared later. Actually, the intent was to fix the way the
4630         selection was set, but I figured rmoving the code was just as good.
4631
4632 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
4633
4634         * FontLoader.C (available): Check if font is available without
4635         loading the font.
4636
4637 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
4638
4639         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
4640
4641 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
4642
4643         * lyxrc.[Ch]: added display_graphics variable and associated code.
4644
4645 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4646
4647         * bufferparams.C (hasClassDefaults): new method. Returns true if
4648         the buffer parameters correspond to known class defaults
4649
4650 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
4651
4652         * XFormsView.C (show): set minimum size to the main window.
4653
4654 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4655
4656         * text2.C (copySelection):
4657         (cutSelection):
4658         * lyxfind.C (LyXReplace):
4659         * BufferView_pimpl.C (Dispatch): pass the correct flag to
4660         LyXText::selectionAsString.
4661
4662         * paragraph.C (asString): add "label" argument to the second form
4663
4664         * text2.C (selectionAsString): add "label" argument and pass it to
4665         Paragraph::asString.
4666
4667 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4668
4669         * lyx_main.C (commandLineHelp): remove version information
4670
4671 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
4672
4673         * lyx_main.C: add -version commandline option
4674
4675 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4676
4677         * paragraph.h: make the optional constructor arg required instead.
4678         some modifications to other files because of this.
4679
4680         * minibuffer.C (C_MiniBuffer_peek_event): make it static
4681
4682         * lyxserver.C (C_LyXComm_callback): make it static
4683
4684         * lyx_main.C (error_handler): make it static
4685
4686         * lyx_gui.C (LyX_XErrHandler): make it static
4687
4688         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
4689
4690         * WorkArea.C: make the extern "C" methods static.
4691
4692         * Makefile.am (lyx_LDADD): simplify
4693
4694 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
4695
4696         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
4697         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
4698
4699         * LyXAction.C (init):
4700         * lyxfunc.C (dispatch): associated code removal.
4701
4702 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4703
4704         * lyxfont.h (isSymbolFont): shut off warning
4705
4706         * text.C (setHeightOfRow):
4707         (getVisibleRow): fix crash with empty paragraphs which have a
4708         bottom line
4709
4710 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
4711
4712         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
4713         code.
4714
4715 2001-09-04  José Matos  <jamatos@fep.up.pt>
4716         * buffer.C
4717         * buffer.h
4718         * tabular.C (docbook): rename docBook method to docbook.
4719
4720 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
4721
4722         * Makefile.am: add dependencies to main.o.
4723
4724 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
4725
4726         * FontLoader.C (available): Return false if !lyxrc.use_gui
4727
4728 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
4729
4730         * FontInfo.C (query):
4731         * converter.C (view):
4732         * importer.C (Import):
4733         * exporter.C (Export): Can not -> cannot.
4734
4735 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
4736
4737         * BufferView_pimpl.C: allow to create index inset even if
4738           string is empty
4739
4740 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
4741
4742         * buffer.C (getLists): replace boost::tie code with an explicit pair
4743         as boost::tie can break some compilers.
4744
4745         * iterators.h: Added a std:: declaration to the return type of
4746         ParIterator::size.
4747
4748 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
4749
4750         * lyxrc.C: add help for view_dvi_paper_option, default to safe
4751           case.
4752
4753 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
4754
4755         * iterators.[Ch]: New files. Provide paragraph iterators.
4756
4757         * buffer.C (changeLanguage): Use paragraph iterators.
4758         (isMultiLingual): ditto
4759
4760         * BufferView2.C (ChangeInsets): Use paragraph iterators.
4761
4762 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
4763
4764         * FontLoader.C: Support for cmr font.
4765
4766 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
4767
4768         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
4769         (available): New method.
4770
4771         * FontInfo.C (getFontname): Use scalable fonts even when
4772         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
4773         found.
4774
4775 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
4776
4777         * converter.C (Formats::view): reverted! Incorrect fix.
4778
4779 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
4780
4781         * converter.C (Formats::view): only output the -paper option
4782         if the dvi viewer is xdvi, thereby fixing bug #233429.
4783
4784 2001-08-23  Herbert Voss  <voss@perce>
4785
4786         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
4787
4788 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
4789
4790         * Spacing.h (Spacing): Set space to Default on in the default
4791         constructor.
4792
4793 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4794
4795         * vc-backend.h (RCS::versionString): add RCS to version
4796         (CVS::versionString): add CVS to version
4797
4798         * vc-backend.C (scanMaster): do not add CVS to version.
4799         (scanMaster): do not add RCS to version
4800
4801         * lyxvc.C (versionString): new method
4802
4803         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
4804
4805 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4806
4807         * Spacing.C (set): initialize fval
4808
4809 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
4810
4811         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
4812         " or \.
4813
4814 2001-08-16  Juergen Vigna  <jug@sad.it>
4815
4816         * lyxfunc.C (dispatch): implemented the new FINISHED states.
4817
4818 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
4819
4820         * BufferView_pimpl.C:
4821         * figureForm.C:
4822         * lyxtext.h:
4823         * text2.C: setParagraph takes linespacing now
4824
4825 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
4826
4827         * LyxAction.C: add internal LFUN_CITATION_INSERT
4828
4829         * LyXView.C: actually apply fix
4830
4831         * bufferlist.C: fix open non-existent file
4832
4833         * lyxfind.C: fix indentation
4834
4835         * lyxfunc.C: remove unneeded assert, fix typo
4836
4837 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
4838
4839         * MenuBackend.C: use "Floatname List"
4840
4841 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
4842
4843         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
4844         when converting LaTeX layout to insetERT.
4845         Generate a non-collapsed float when reading old float
4846
4847 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
4848
4849         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
4850         ERT insets.
4851
4852 2001-08-13  Juergen Vigna  <jug@sad.it>
4853
4854         * text.C (fill): return 0 instead of 20 as this seems to be the more
4855         correct value.
4856
4857 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
4858
4859         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
4860         lyxrc.font_norm.
4861
4862 2001-08-13  Juergen Vigna  <jug@sad.it>
4863
4864         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
4865         casesensitive off.
4866         (SearchBackward): comment out the unlocking of the inset_owner this
4867         should not be needed!
4868
4869 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
4870
4871         * Many files: Remove inherit_language, and add latex_language
4872
4873         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
4874         collapsible insets.
4875
4876 2001-08-10  Juergen Vigna  <jug@sad.it>
4877
4878         * text.C (prepareToPrint): fixed hfill-width in draw!
4879
4880         * BufferView2.C (selectLastWord): save the selection cursor as this
4881         now is cleared in the function LyXText::clearSelection!
4882
4883 2001-08-08  Juergen Vigna  <jug@sad.it>
4884
4885         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
4886         BACKSPACE type functions.
4887
4888         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
4889         is only cutted from the document but not put in the cut-buffer, where
4890         still the old stuff should be.
4891
4892         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
4893
4894         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
4895
4896         * tabular.C (SetWidthOfCell): fixed special case where the width
4897         was not updated!
4898         (LeftLine): handle '|' in align_special.
4899         (RightLine): ditto
4900         (LeftAlreadyDrawed): ditto
4901         (SetWidthOfCell): ditto
4902
4903 2001-08-07  Juergen Vigna  <jug@sad.it>
4904
4905         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
4906
4907 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4908
4909         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
4910         * lyxlex.[hC]: ditto
4911
4912 2001-08-06  Juergen Vigna  <jug@sad.it>
4913
4914         * text.C (getVisibleRow): fix up row clearing a bit.
4915
4916 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4917
4918         * minibuffer.C: make sure the X server sees the changes in the input.
4919
4920 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4921
4922         * paragraph.C (getFont): split into...
4923         (getLabelFont): this
4924         (getLayoutFont): and this
4925         * paragraph_pimpl.C (realizeFont): calling this
4926
4927         * text2.C (getFont): split into...
4928         (getLayoutFont): this
4929         (getLabelFont): and this
4930         (realizeFont): all three calling this
4931
4932         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
4933         files where used.
4934
4935 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4936
4937         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
4938
4939 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
4940
4941         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
4942         layouts from the Quote inset insertion.
4943
4944 2001-08-03  Juergen Vigna  <jug@sad.it>
4945
4946         * BufferView_pimpl.C (update): do the fitCursor only at the end!
4947
4948         * screen.C (drawFromTo): don't call fitcursor here and do the loop
4949         only if status not is already CHANGED_IN_DRAW (second level).
4950
4951         * text.C (draw): don't set the need_break_row when inside an
4952         InsetText LyXText.
4953
4954 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4955
4956         * buffer.C (parseSingleLyXformat2Token): handle more latex
4957         conversion cases.
4958
4959         * bufferview_funcs.[hC]: change function names to
4960         begin with small char, adjust other files.
4961
4962 2001-08-02  André Pönitz <poenitz@gmx.net>
4963
4964         * lyxfunc.C:
4965         BufferView_pimpl.C: remove broken special code for math-greek
4966
4967 2001-08-02  Juergen Vigna  <jug@sad.it>
4968
4969         * BufferView_pimpl.C (update): redone this function so that we
4970         update the text again if there was a CHANGE_IN_DRAW.
4971
4972         * screen.C (cursorToggle): removed LyXText parameter and recoded.
4973         (drawFromTo): added a new internal bool which is used by draw() and
4974         redraw() function.
4975         (general): some cursor drawing problems fixed.
4976
4977 2001-08-01  Juergen Vigna  <jug@sad.it>
4978
4979         * lyxfind.C (LyXFind): fixed
4980         (SearchForward): ditto
4981         (SearchBackward): ditto
4982
4983         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
4984         spurius drawing of the cursor in the main area.
4985
4986         * text2.C (status): small fix which could lead to a segfault!
4987         (clearSelection): remove unneeded BufferView param.
4988
4989 2001-08-01  André Pönitz <poenitz@gmx.net>
4990
4991         * lyxfunc.C: small change due to changed mathed interface
4992
4993 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4994
4995         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
4996
4997 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
4998
4999         * lyxfunc.c: fail gracefully if file doesn't exist
5000
5001         * LyXSendto.C:
5002         * buffer.C:
5003         * lyxfunc.C:
5004         * BufferView_pimpl.C: IsDirWriteable() proto changed
5005
5006         * LyXView.C: fix updateWindowTitle() to store the last title
5007
5008 2001-07-31  Juergen Vigna  <jug@sad.it>
5009
5010         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
5011         the font (wrong since using of Paragraph::highestFontInRange).
5012
5013         * paragraph.C (highestFontInRange): added a default_size parameter.
5014
5015         * text.C (getVisibleRow): minor clear row changes (still not perfect).
5016         (setHeightOfRow): reformat
5017
5018 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5019
5020         * converter.[hC] + affected files: move to (inital-char)lowercase
5021         function names.
5022
5023         * ParagraphParameters.C (ParagraphParameters): remove commented code
5024
5025         * PainterBase.[Ch]: remove commented code
5026
5027         * LaTeXFeatures.h: add "bool floats" for float.sty
5028
5029         * LaTeXFeatures.C (LaTeXFeatures): init floats
5030         (require): handle float
5031         (getPackages): do it with floats
5032
5033 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5034
5035         * BufferView_pimpl.C (Dispatch): improve handling of
5036         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
5037
5038         * commandtags.h: #include lyxfont.h here temporarily to avoid
5039         keybinding bug.
5040
5041         * bufferlist.h: include LString.h here.
5042
5043 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5044
5045         * text2.C (getStringToIndex): new method.
5046
5047 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
5048
5049         * *: Reduced header file dependencies all over.
5050
5051 2001-07-30  Baruch Even  <baruch@lyx.org>
5052
5053         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
5054
5055 2001-07-29  Baruch Even  <baruch@lyx.org>
5056
5057         * buffer.C (readInset): Changed GRAPHICS to Graphics.
5058
5059 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5060
5061         * ParameterStruct.h (endif): add a default constructor to make
5062         sure that all variables is initialized.
5063
5064         * ParagraphParameters.C (ParagraphParameters): adjust
5065
5066 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5067
5068         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
5069         index; also, check that there is something to index, and that it
5070         does not span over several paragraphs.
5071         (doubleClick): use WHOLE_WORD_STRICT for double click.
5072
5073         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
5074
5075         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
5076         scheme.
5077
5078 2001-07-26  Baruch Even  <baruch@lyx.org>
5079
5080         * buffer.C (readInset): Changed to call up InsetGraphics when reading
5081         an InsetFig figure, backwards compatible reading of old figure code.
5082
5083 2001-07-27  Juergen Vigna  <jug@sad.it>
5084
5085         * text2.C: font.realize function adaption.
5086
5087         * text.C (draw): add a warnings lyxerr text if needed.
5088
5089         * layout.C: font.realize function adaption.
5090
5091         * language.C: add inherit_language and implement it's handlings
5092
5093         * bufferview_funcs.C (StyleReset): remove language parameter from
5094         font creation (should be language_inherit now).
5095
5096         * bufferparams.C (writeFile): handle ignore_language.
5097
5098         * paragraph.C (getFontSettings): the language has to be resolved
5099         otherwise we have problems in LyXFont!
5100
5101         * lyxfont.C (lyxWriteChanges): added document_language parameter
5102         (update): removed unneeded language parameter
5103
5104         * paragraph.C (validate): fixed wrong output of color-package when
5105         using interface colors for certain fonts in certain environments,
5106         which should not seen as that on the final output.
5107
5108 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
5109
5110         * BufferView_pimpl.C:
5111         * Thesaurus.h:
5112         * Thesaurus.C:
5113         * Makefile.am:
5114         * commandtags.h:
5115         * LyXAction.C: add thesaurus support
5116
5117         * lyxfind.h:
5118         * lyxfind.C: add "once" parameter, for thesaurus, to not
5119           move to the next match
5120
5121 2001-07-26  Juergen Vigna  <jug@sad.it>
5122
5123         * lyxfont.C (realize): honor ignore_language too!
5124         (resolved): ditto.
5125
5126         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
5127
5128         * text.C (draw): one place more for ignore_language to not draw
5129         itself!
5130
5131 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
5132
5133         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
5134
5135 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5136
5137         * buffer.C (parseSingleLyXformat2Token): a more general fix for
5138         the minipage conversion problem.
5139
5140 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5141
5142         * buffer.C (parseSingleLyXformat2Token): check minipage if we
5143         insert an inset.
5144
5145 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5146
5147         * BufferView.h: don't forward declare WorkArea
5148
5149         * BufferView.C: don't include WorkArea.h
5150
5151 2001-07-25  André Pönitz <poenitz@gmx.net>
5152
5153         * commandtags.h:
5154         * LyXAction.C:
5155         * lyxfunc.C:  new LFUN 'math-space'
5156
5157         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
5158
5159 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5160
5161         * text2.C (toggleInset): call open/close
5162
5163 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5164
5165         * lyxfunc.C (dispatch): add debug for the disabled case
5166
5167         * font.C (buttonText): make similar to rectText
5168
5169         * buffer.C (readInset): comment out parsing of insetlist and
5170         insttheorem
5171
5172         * PainterBase.C (rectText): small correction
5173
5174         * BufferView_pimpl.C: comment out insettheorem and insetlist
5175         * LyXAction.C: ditto
5176         * commandtags.h: ditto
5177
5178 2001-07-24  Juergen Vigna  <jug@sad.it>
5179
5180         * text.C (draw): honor the ignore_language.
5181
5182         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
5183
5184 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5185
5186         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
5187         char inset.
5188
5189 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
5190
5191         * lyxtext.h: remove unused (and unimplemented) methods
5192
5193 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
5194
5195         * text.C (getVisibleRow): honor background color
5196
5197         * PainterBase.h:
5198         * Painter.h: remove default color argument for fillRectangle
5199
5200         * text.C (backgroundColor): new method
5201
5202 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5203
5204         * text.C (getVisibleRow): adjust
5205
5206         * font.[Ch] (rectText): new method, metrics
5207         (buttonText): new method, metrics
5208
5209         * PainterBase.[hC]: make rectText and buttonText always draw and take
5210         fewer paramteres.
5211
5212 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
5213
5214         * ToolbarDefaults.C (read):
5215         * MenuBackend.C (read): allow escaping in all strings
5216
5217         * BufferView_pimpl.C (insertAndEditInset): new method.
5218         (Dispatch): use insertAndEditInset whenever appropriate.
5219
5220         * BufferView_pimpl.C (insertNote): removed
5221
5222         * BufferView_pimpl.C (smartQuote): new method, moved from
5223         BufferView; if an insetquote cannot be inserted, insert a '"'
5224         character instead.
5225
5226         * BufferView2.C: remove insertCorrectQuote();
5227
5228         * lyxfunc.C (getStatus): Add support for all remaingin
5229         inset-insert lfuns.
5230
5231         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
5232
5233         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
5234         command (necessary to pass " as parameter of self-insert.
5235
5236         * text.C (selectWordWhenUnderCursor):
5237         (selectWord): add word_location parameter
5238         (selectWordWhenUnderCursor): same + remove special code for word
5239         boundary.
5240         (selectNextWord): use kind() to guess type of insetspecialchar,
5241         not latex().
5242
5243         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
5244         (insertErtContents): create ert insets as collapsed.
5245         (readInset): better compatibility code for Info inset.
5246
5247 2001-07-20  Juergen Vigna  <jug@sad.it>
5248
5249         * lyxfunc.C (dispatch): use always LyXFind now!
5250
5251         * text2.C (init): add a reinit flag so that the LyXText can be
5252         reinited instead of deleted and reallocated (used in InsetText).
5253
5254         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
5255
5256         * text.C: ditto
5257
5258         * text2.C: ditto
5259
5260 2001-07-18  Juergen Vigna  <jug@sad.it>
5261
5262         * text.C (selectNextWord): handle insets inside inset by calling
5263         always the bv->text functions so that we can go up the_locking_inset!
5264
5265         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
5266         in strange locations when inside an inset!
5267
5268         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
5269         handling to include insets.
5270
5271         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
5272
5273 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5274
5275         * LyXAction.C (init):
5276         * commandtags.h:
5277         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
5278         LIGATURE_BREAK, since the name is so stupid.
5279
5280 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
5281
5282         * buffer.C (readInset): enable reading of new InsetNotes as well as old
5283         InsetInfos.
5284
5285         * FontLoader.C: remove FORMS_H_LOCATION cruft.
5286
5287         * sp_form.[Ch]: remove.
5288
5289         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
5290
5291         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
5292         InsetInfo.
5293
5294         * src/buffer.C (readInset): ditto.
5295
5296 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
5297
5298         * BufferView_pimpl.C (specialChar): new method. Obsoletes
5299         menuSeparator(), endOfSentenceDot(), ldots() and
5300         hyphenationPoint(), which are therefore removed.
5301         (Dispatch): handle LFUN_HYPHENATION_BREAK.
5302
5303         * LyXAction.C (init):
5304         * commandtags.h: add LFUN_HYPHENATION_BREAK.
5305
5306         * paragraph.C (getWord): removed.
5307
5308         * BufferView_pimpl.C (Dispatch): use last word or selection for
5309         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
5310
5311         * lyx_main.C (queryUserLyXDir): do not ask before creating
5312         user_dir, except if it has been named explicitely.
5313
5314 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
5315
5316         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
5317         a document of zero size.
5318
5319 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
5320
5321         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
5322         approriately in the c-tor and in require().
5323         (getPackages): output the appropriate LaTeX for natbib support.
5324
5325         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
5326         variables "use_natbib" and "use_numerical_citations" when reading the
5327         LyX file.
5328         (readInset): read the various natbib cite commands.
5329         (validate): white-space change.
5330
5331         * bufferparams.[Ch]: new variables "bool use_natbib" and
5332         "bool use_numerical_citations".
5333         (writeFile): output them in the LyX file.
5334
5335 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
5336
5337         * lyxfunc.C (getStatus): add support for all the inset insertion
5338         commands.
5339
5340         * text2.C (insertInset):
5341         * paragraph.C (insetAllowed):
5342         * BufferView_pimpl.C (insertInset): update to take in account the
5343         renaming of insertInsetAllowed
5344
5345         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
5346
5347         * text2.C (getInset): new method. returns inset at cursor position.
5348
5349         * BufferView_pimpl.C (Dispatch): changes because of this.
5350
5351         * LyXAction.C (init): rename open-stuff to inset-toggle.
5352
5353         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
5354
5355         * text2.C (toggleInset): renamed from openStuff; use
5356         Inset::open().
5357
5358 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
5359
5360         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
5361
5362         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
5363
5364 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
5365
5366         * buffer.C (readLyXformat2): Add filename to the error dialog
5367
5368 2001-07-18  Juergen Vigna  <jug@sad.it>
5369
5370         * tabular.C (GetCellNumber): put an assert here instead of the check!
5371
5372 2001-07-17  Juergen Vigna  <jug@sad.it>
5373
5374         * BufferView_pimpl.C (toggleSelection): adapted too.
5375
5376         * text.C (selectNextWord): adapted for use with insets.
5377         (selectSelectedWord): ditto
5378
5379 2001-07-17  Juergen Vigna  <jug@sad.it>
5380
5381         * sp_spell.C (PSpell): fix initialitation order.
5382
5383 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5384
5385         * paragraph.C: spacing
5386
5387 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
5388
5389         * sp_spell.C: repair language selection for pspell
5390
5391 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5392
5393         * lyxfunc.h: change more methods to begin with lower char.
5394
5395 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
5396
5397         * buffer.C (parseSingleLyXformat2Token): Generate error insets
5398         for unknown layouts.
5399
5400 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
5401
5402         * buffer.C (readLyXformat2): Generate an error dialog if there are
5403         unknown layouts.
5404
5405 2001-07-16  Juergen Vigna  <jug@sad.it>
5406
5407         * sp_spell.C: always compile ISpell part.
5408
5409         * lyxrc.C: added use_pspell entry and it's handling.
5410
5411 2001-07-13  Juergen Vigna  <jug@sad.it>
5412
5413         * sp_spell.C: removed double includes.
5414
5415 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
5416
5417         Consistent use of Lsstream.h:
5418         * Lsstream.h: added using std::stringstream for consistencies sake.
5419
5420         * buffer.C: removed using std::stringstream
5421
5422         * lyxfont.C (stateText):
5423         * paragraph.C (asString):
5424         * text.C (selectNextWord, selectSelectedWord):
5425         * text2.C (setCounter):
5426         * vspace.C (asString, asLatexString):
5427         std::ostringstream -> ostringstream.
5428
5429 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
5430
5431         * LyXAction.C: add LFUN_HELP_ABOUTLYX
5432         * commandtags.h: add LFUN_HELP_ABOUTLYX
5433         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
5434
5435 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
5436
5437         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
5438         cursorToggle()
5439         * lyx_gui_misc.C: remove spellchecker
5440         * lyxfunc.C: showSpellchecker
5441         * sp_base.h: added
5442         * sp_ispell.h: added
5443         * sp_pspell.h: added
5444         * sp_spell.C: added
5445         * sp_form.[Ch]: removed
5446         * spellchecker.[Ch]: removed
5447
5448 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
5449
5450         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
5451         is set.
5452         (simpleTeXSpecialChars): Simply print the input character without
5453         any special translation if pass_thru is set.
5454
5455         * layout.h: Added bool pass_thru to layout class for being able to
5456         implement pass through of a paragraph for Literate Programming.
5457
5458         * layout.C: add LT_PASS_THRU to LayoutTags enum.
5459         * layout.C (LyXLayout): set pass_thru to flase in constructor.
5460         * layout.C (Read): add "passthru" to list of layout tags and add
5461         code to set the pass_thru boolean when it is read.
5462
5463 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5464
5465         * trans_decl.h: remove allowed from KmodInfo
5466
5467         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
5468         remove allowed code
5469         (Load): adjust
5470
5471         * paragraph_pimpl.C (erase): use boost::prior
5472
5473         * Painter.C (text): use data() instead of c_str() when length is
5474         also provided.
5475         * WorkArea.C (putClipboard): ditto
5476         * font.h (width): ditto
5477
5478         * BufferView2.C: use it-> instead of (*it). for iterators
5479         * texrow.C: ditto
5480         * paragraph_pimpl.C: ditto
5481         * paragraph.C: ditto
5482         * minibuffer.C: ditto
5483         * language.C: ditto
5484         * kbmap.C: ditto
5485         * encoding.C: ditto
5486         * counters.C: ditto
5487         * converter.C: ditto
5488         * chset.C: ditto
5489         * Variables.C: ditto
5490         * TextCache.C: ditto
5491         * MenuBackend.C: ditto
5492         * LyXAction.C: ditto
5493         * LColor.C: ditto
5494         * FloatList.C: ditto
5495         * DepTable.C: ditto
5496         * ColorHandler.C (LyXColorHandler): ditto
5497
5498 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5499
5500         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
5501
5502         * text2.C (openStuff): reintroduce this method (which had been
5503         nuked in NEW_INSETS frenzy).
5504
5505         * lyxfunc.C (Dispatch): when an action has not been handled, use
5506         its name in the error message, not its number.
5507
5508         * paragraph.C (inInset): change method name to begin with lowercase.
5509
5510         * undo_funcs.C:
5511         * text2.C: updates because of this.
5512
5513 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5514
5515         * ToolbarDefaults.C (add): add spaces in error message
5516
5517 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5518
5519         * buffer.C (readLyXformat2): initialize the ert comp. variables.
5520         (readLyXformat2): rename return_par to first_par, use lyxlex's
5521         pushToken and remove the manual push handling.
5522         (parseSingleLyXformat2Token): add another ert comp. variable:
5523         in_tabular, rename return_par to first_par. handle newlines better
5524
5525 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5526
5527         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
5528
5529 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5530
5531         * text2.C (getParFromID): removed
5532
5533         * buffer.C (getParFromID): new method moved form lyxtext.
5534         * BufferView2.C (insertErrors): adjust
5535         (setCursorFromRow): adjust
5536         * BufferView_pimpl.C (restorePosition): adjust
5537         * lyxfunc.C (Dispatch): adjust
5538         * undo_funcs.C (textUndo): adjust
5539         (textRedo): adjust
5540         (textHandleUndo): adjust
5541         (textHandleUndo): adjust
5542
5543 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5544
5545         * buffer.C: up' the LYX_FORMAT
5546
5547         * lyxfont.h: turn NO_LATEX on as default
5548
5549         * buffer.C (insertErtContents): new methods of tex style compability.
5550         (parseSingleLyXformat2Token): use it several places.
5551         * tabular.C (OldFormatRead): and here
5552
5553 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5554
5555         * text2.C: remove some commented code.
5556         reindent file.
5557
5558         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
5559         * trans.C: changes because of the above.
5560
5561 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
5562
5563         * text2.C (setCounter): Fix counters bug with bibliography layout.
5564
5565 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5566
5567         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
5568         own member functions
5569         (simpleTeXSpecialChars): ditto
5570
5571 2001-07-06  Juergen Vigna  <jug@sad.it>
5572
5573         * a lot of files: changed the access to LyXText::status and the
5574         call of undo-functions.
5575
5576         * undo.[Ch]: added a inset_id to the undo informations.
5577
5578         * undo_funcs.[Ch]: added and moved here all undo functions.
5579
5580         * lyxtext.h: give the status enum a weight, made status_ a private
5581         variable and made accessor functions for it, removed the whole bunch
5582         of undo-functions as they are now in their own file, make some
5583         functions publically available. Added function ownerParagraph with
5584         int parameter.
5585
5586         * paragraph.[Ch]: added "bool same_ids" to the constructor,
5587         made InInset() a const function, added getParFromID() function.
5588
5589         * buffer.[Ch]: added const version for inset_iterator functions,
5590         added getInsetFromID() function.
5591
5592         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
5593         changed undo functions for new version.
5594
5595 2001-07-05  Juergen Vigna  <jug@sad.it>
5596
5597         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
5598         unknow mechanism does not call the proper constructor but only this
5599         one also if I request the other!?
5600
5601 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5602
5603         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
5604
5605         * text2.C (LyXText): use initialization lists.
5606
5607         * lyxtext.h (Selection): initialize set_ and mark_
5608         (init): remove method
5609
5610 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
5611
5612         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
5613
5614 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5615
5616         * screen.[Ch]: change method names to begin with lowercase
5617
5618         * BufferView_pimpl.C (updateScrollbar): simplify further and
5619         hopefully make it a bit faster.
5620
5621 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5622
5623         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
5624         calling directly xforms functions.
5625
5626         * Painter.C (Painter):
5627         * lyx_cb.C (MenuWrite):
5628         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
5629         fl_display.
5630
5631         * lyx_gui.C: remove bogus guiruntime extern declaration.
5632
5633 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5634
5635         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
5636         in NEW_INSETS
5637         (redoDrawingOfParagraph): ditto
5638         (redoParagraphs): ditto
5639         (cutSelection): don't create a object for CutAndPaste use the
5640         static method directly
5641         (pasteSelection): ditto
5642
5643         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
5644         LyXview (+ rename)
5645
5646 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5647
5648         * modifications to some other files because of this.
5649
5650         * Makefile.am (lyx_SOURCES): add XFormsView
5651
5652         * XFormsView.[Ch]: new files
5653
5654         * LyXView.[Ch]: make LyXView a base class for the gui handling for
5655         the main window. Move the gui dependent stuff to XFormsView
5656
5657 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5658
5659         * tabular.C (GetCellInset): update cur_cell also in the row/col
5660         version of this function.
5661
5662         * lyxfunc.C: no need to include figure_form.h here.
5663
5664         * FontLoader.h:
5665         * lyxfunc.h:
5666         * lyxscreen.h:
5667         * text2.C:
5668         * lyxvc.C: no need to include forms.h here.
5669
5670 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5671
5672         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
5673
5674         * lyxfunc.C (Dispatch):
5675         * Spacing.C (set):
5676         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
5677         constructor argument.
5678
5679 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5680
5681         * paragraph.C (Paragraph): dont't clear, and just set layout.
5682         (makeSameLayout): use params's copy contructor.
5683
5684         * ParagraphParameters.[Ch] (makeSame): delete method
5685
5686 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
5687
5688         * Variables.[Ch]: fix indentation, rename set to isSet
5689
5690 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5691
5692         * lyxfunc.C (Dispatch): fix typo
5693
5694 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5695
5696         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
5697         upper_bound.
5698
5699         * bufferlist.C: include assert.h for emergencyWrite().
5700
5701 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
5702
5703         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
5704           give up at last (bug #425202) !
5705
5706 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
5707
5708         * lyx_gui_misc.C:
5709         * sp_form.h:
5710         * sp_form.C:
5711         * spellchecker.h:
5712         * spellchecker.C: strip spellchecker options and bring up
5713           preferences tab instead
5714
5715 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5716
5717         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
5718         the istringstream constructor
5719
5720 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5721
5722         * paragraph.C (getLayout): fix return value
5723
5724         * paragraph.h: do not declare getLayout as inline.
5725
5726         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
5727
5728 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5729
5730         * lyxcursor.h (operator<): new func
5731         (operator>): new func
5732         (operator>=): new func
5733         (operator<=): new func
5734
5735         * text.C (changeCase): use selection.start and selection.end
5736         (changeRegionCase): require from to be <= to. Require par to be a
5737         valid paragraph.
5738
5739         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
5740
5741 2001-06-27  Juergen Vigna  <jug@sad.it>
5742
5743         * text.C (cursorLeftOneWord): changed to return the cursor and added
5744         overlay with BufferView * parameter which calls this one.
5745         (getWord): added
5746         (selectWord): use new getWord function.
5747         (changeCase): renamed from changeWordCase as and extended to work
5748         also on selections.
5749
5750         * lyxtext.h: added enum word_location
5751
5752         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
5753         changeCase as this operates now also on selections.
5754
5755 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
5756
5757         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
5758
5759         * many files: send debug output to Debug::INFO instead of
5760         Debug::ANY.
5761
5762         * converter.C (View):
5763         (Convert):
5764         (Move): send debug output to Debug::FILES instead of console.
5765
5766 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
5767
5768         * lyxfunc.C (getStatus): use func_status
5769
5770         * func_status.h: new header, describing the results of
5771         LyXFunc::getStatus;
5772
5773         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
5774         LFUN_MATH_HALIGN.
5775
5776 2001-06-25  The LyX Project  <jug@sad.it>
5777
5778         * buffer.C (sgmlOpenTag):
5779         (sgmlCloseTag):
5780         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
5781
5782 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5783
5784         * text2.C: remove some dead code
5785
5786         * tabular.C (GetCellInset): store the last cell checked (gotten)
5787
5788         * tabular.h: add the helper for the speedup
5789
5790         * lyxtext.h: remove some dead code
5791
5792 2001-06-26  The LyX Project  <Asger>
5793
5794         * paragraph.C: Change export to LaTeX of alignment to
5795         \begin{center} and family for better roundtrip work with reLyX.
5796
5797         * Tune the math drawing a bit.
5798
5799 2001-06-25  The LyX Project  <Asger>
5800
5801         * LColor.C (LColor): New color for math background. New color
5802         for buttons.
5803
5804 2001-06-25  The LyX Project  <jug@sad.it>
5805
5806         * lyxfunc.C (MenuNew): remove extra check for .lyx file
5807
5808         * lyxfunc.C (Open):
5809         * bufferlist.C (newFile): do not restrict to files ending with
5810         .lyx
5811
5812         * BufferView_pimpl.C (MenuInsertLyXFile):
5813
5814 2001-06-24  The LyX Project  <jug@sad.it>
5815
5816         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
5817         of compare_no_case
5818
5819 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5820
5821         * lyxtext.h: rename most methods to begin with a small char.
5822         Lots of changes because of this.
5823
5824         * paragraph.C (Paragraph): do not call fitToSize
5825         (erase): call Pimpl::erase
5826         (insertChar): call Pimpl::insertChar
5827         (insertInset): call Pipl::insertInset
5828         (breakParagraph): do not call fitToSize
5829         (breakParagraphConservative): do not call fitToSize
5830         (fitToSize): remove method
5831
5832         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
5833
5834 2001-06-24  The LyX Project  <Asger>
5835
5836         * Fix Qt compilation^2
5837
5838 2001-06-24  The LyX Project  <jug@sad.it>
5839
5840         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
5841         depthHook(getDepth()-1).
5842
5843         * paragraph.h:
5844         * ParagraphParameters.h:
5845         * ParameterStruct.h: change type of depth to unsigned int ==
5846         depth_type. Many adaptations to other files before of that.
5847
5848 2001-06-24  The LyX Project  <Asger>
5849
5850         * Fix Qt compilation.
5851
5852 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5853
5854         * paragraph.h: renamed several methods to begin with small letter.
5855         several changes to many parts of the code because of this.
5856
5857 2001-06-23  The LyX Project  <jug@sad.it>
5858
5859         * text2.C (InsertStringAsLines): renamed from InsertStringA;
5860         rewritten to discard all double spaces when KeepEmpty is off
5861         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
5862         to only handle newlines but not fiddle with spaces and friends.
5863
5864         * lyxfunc.C (MenuNew): when doing 'new from template', use
5865         template_path as default directory
5866
5867 2001-06-23  The LyX Project  <Asger>
5868
5869         * Clean-up of header file includes all over
5870         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
5871
5872 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5873
5874         * paragraph.h: renamed from lyxparagraph.h
5875
5876 2001-06-23  Asger  <lyx@violet.home.sad.it>
5877
5878         * Buffer.h: Removed Buffer::resize
5879         * BufferList.h: Removed BufferList::resize
5880         * LyXView.h: Added LyXView::resize. This way, we will only reflow
5881         the document lazily when we change the width, or the font settings.
5882
5883 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
5884
5885         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
5886
5887 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
5888
5889         * buffer.h: remove out of date comment
5890
5891 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
5892
5893         * lyxscreen.h:
5894         * screen.C: fix "theoretical" GC leak
5895
5896 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5897
5898         * LaTeX.C (scanAuxFile):
5899         (deplog): remove trailing \r when reading stream (useful under
5900         win32)
5901
5902 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
5903
5904         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
5905         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
5906         and BufferView::theLockingInset(Inset*), so should use them and not
5907         access bv_->text->the_locking_inset directly.
5908
5909         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
5910
5911 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
5912
5913         * Makefile.am:
5914         * tex-defs.h: remove old unused file
5915
5916 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
5917
5918         * BufferView_pimpl.C: fix typo, remove minibuffer message
5919           when buffer has loaded
5920
5921 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5922
5923         * lyxfunc.C (Dispatch): use stringstream
5924         (MenuNew): use stringstream
5925         (Open): use stringstream
5926
5927         * importer.C (Import): use stringstream
5928
5929         * bufferview_funcs.C (CurrentState): use stringstream
5930
5931         * LaTeX.C (run): use stringstream
5932
5933         * BufferView_pimpl.C (savePosition): use stringstream
5934         (restorePosition): use stringstream
5935         (MenuInsertLyXFile): use stringstream
5936
5937 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
5938
5939         * BufferView.C:
5940         * Bullet.C:
5941         * ColorHandler.C:
5942         * FontInfo.C:
5943         * FontLoader.C:
5944         * LColor.C:
5945         * LaTeXFeatures.C:
5946         * Painter.C:
5947         * gettext.C:
5948         * lyx_gui_misc.C:
5949         * lyxserver.C:
5950         * vspace.C: removed // -*- C++ -*- as first line.
5951
5952         * lyxfind.h:
5953         * version.h: added // -*- C++ -*- as first line.
5954
5955 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5956
5957         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
5958
5959         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
5960         of string
5961
5962 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5963
5964         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
5965         of floats.
5966
5967 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5968
5969         * gettext.C: include LString.h even when --disable-nls is on.
5970
5971 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
5972
5973         * converter.h (Get): changed argument type from int to
5974         FormatList::size_type to avoid unnecessary conversion.
5975
5976         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
5977         before using it.
5978
5979 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5980
5981         * gettext.h: include LString.h even when --disable-nls is on.
5982
5983 2001-06-07  Juergen Vigna  <jug@sad.it>
5984
5985         * text.C (BreakAgain): subst spaces with tabs.
5986
5987         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
5988         (resizeInsetsLyXText): set force on resizeLyXText.
5989
5990 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5991
5992         * gettext.h (gettext_init):
5993         (locale_init): use a real definition instead of a macro
5994
5995 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
5996
5997         * Bufferview_pimpl.C:
5998         * LColor.h:
5999         * LColor.C: further lcolor tidies
6000
6001 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6002
6003         * BufferView_pimpl.C (updateScrollbar): simplify.
6004
6005         * BufferView2.C: don't include insets/insetinfo.h, change
6006         prototype for insertInset and call the Pimpl version. let
6007         updateInset call Pimpl version.
6008
6009         * BufferView.h: move inset_slept to BufferView::Pimpl, move
6010         gotoInset to BufferView::Pimpl
6011
6012 2001-06-01  Juergen Vigna  <jug@sad.it>
6013
6014         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
6015         inside a LockingInset (is the update needed at all?).
6016
6017 2001-05-31  Juergen Vigna  <jug@sad.it>
6018
6019         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
6020         here not the old one otherwise how should we compare it afterwards
6021         if it's the same!
6022
6023 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6024
6025         * lyxfont.C:
6026         * tabular.C:
6027         * tabular-old.C:
6028         * FontInfo.C: bring C functions into global namespace when
6029         necessary
6030
6031 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6032
6033         * LString.h: make sure config.h has been loaded before LString.h.
6034
6035         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
6036         (one for each char read by EatLine!).
6037
6038         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
6039         variables.
6040
6041 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6042
6043         * paragraph.C (BreakParagraph): set the inset_owner in the new par
6044         to the same as the par we break from
6045
6046 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6047
6048         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
6049
6050         * MenuBackend.C (expand): also create menu entries for wide
6051         versions of the floats.
6052
6053         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
6054
6055         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
6056
6057         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
6058         frontends/Makefile.am
6059
6060         * text2.C: adjust
6061         * text.C: adjust
6062
6063
6064         * tabular.C (getTokenValue): add std::
6065
6066         * tabular-old.C (getTokenValue): add std::
6067         (getTokenValue): ditto
6068         (getTokenValue): ditto
6069
6070         * screen.C (ToggleSelection): adjust
6071
6072         * lyxtext.h: put selection cursors inside a Selection struct.
6073
6074         * lyxfunc.C (moveCursorUpdate): adjust
6075
6076         * lyxfont.C (latexWriteStartChanges): add std::
6077
6078         * lyxfind.C: adjust
6079
6080         * font.h: delete with(char const *, LyXFont const &)
6081
6082         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
6083
6084         * FontInfo.C (getFontname): add std::
6085
6086         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
6087         (workAreaButtonPress): adjust
6088         (tripleClick): adjust
6089         (update): adjust
6090         (moveCursorUpdate): adjust
6091         (Dispatch): adjust
6092
6093         * BufferView2.C (gotoInset): adjust
6094
6095 2001-05-30  Juergen Vigna  <jug@sad.it>
6096
6097         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
6098         to check pspell I add this as default as I now have new pspell
6099         libraries and they seem to use this.
6100
6101 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6102
6103         * text2.C (CutSelection): make the cursor valid before the call to
6104         ClearSelection.
6105
6106 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6107
6108         * kbsequence.C (parse): de-uglify a bit the parsing code, which
6109         relied on 0 terminated strings and other horrors. Bug found due to
6110         the new assert in lyxstring!
6111
6112         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
6113         KP_ keys.
6114
6115 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6116
6117         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
6118         to latinkeys.bind.
6119
6120         * lyxfunc.C (processKeySym): change method of getting to the
6121         self-insert char.
6122
6123         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
6124         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
6125         * BufferView_pimpl.[Ch]: here as private methods.
6126
6127 2001-05-28  Juergen Vigna  <jug@sad.it>
6128
6129         * text.C (SetHeightOfRow): added the update() call again as it is
6130         needed to initialize inset dimensions!
6131
6132 2001-05-16  Juergen Vigna  <jug@sad.it>
6133
6134         * text2.C (SetCharFont): Add new function with BufferView * and
6135         bool toggleall parameters for setting insets internal fonts.
6136         (SetFont): Freeze the undo as we may change fonts in Insets and
6137         all this change should be inside only one Undo!
6138
6139         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
6140         setting font's in insets as for them we have the SetFont function!
6141
6142 2001-05-15  Juergen Vigna  <jug@sad.it>
6143
6144         * text2.C (ClearSelection): to be sure we REALLY don't have any
6145         selection anymore!
6146
6147         * tabular.C (TeXCellPreamble): fixed the left border problem for
6148         multicolumn cells.
6149
6150 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
6151
6152         * LaTeX.C (deplog): Make sure that the main .tex file is in the
6153         dependancy file
6154
6155 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6156
6157         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
6158         LFUN_BREAKPARAGRAPH.
6159
6160         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
6161         help test to "internal only", similar for LFUN_INSERT_URL
6162
6163         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
6164         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
6165         auto_region_delete and deadkeys.
6166
6167 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
6168
6169         * LColor.h:
6170         * LColor.C: remove some dead entries, tidy a little
6171
6172 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6173
6174         * lyxfunc.C (processKeySym): comment the Escape handling, remove
6175         commented code.
6176         (Dispatch): implement LFUN_ESCAPE
6177
6178         * commandtags.h: add LFUN_ESCAPE
6179
6180         * LyXAction.C (init): add entry for LFUN_ESCAPE
6181
6182         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
6183         Remove commented code.
6184         (insertNote): moved here
6185         (open_new_inset): moved here
6186
6187         * BufferView[2].[Ch]: move insertNote and open_new_inset to
6188         BufferView_pimpl
6189
6190 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6191
6192         * kbmap.C (findbinding): clean it up and make it work correctly.
6193
6194         * lyx_main.C (init): do not pass argc and argv as parameters
6195
6196 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
6197
6198         * buffer.C: fix path for OS/2 & Win32
6199
6200         * lyx_gui.C:
6201         * lyx_main:
6202         * lyx_main.C: Added os:: class.
6203
6204         * os2_defines.h: update
6205
6206 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6207
6208         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
6209         better by trying again with reduced state.
6210
6211 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6212
6213         * lyxrc.C (read): print error about invalid key sequence only when
6214         debugging (because not all latinX keysyms are known to some X
6215         servers)
6216
6217         * kbsequence.C (getiso): add a few std:: qualifiers
6218         (getiso): comment out extra return statement.
6219
6220 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6221
6222         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
6223         handling.
6224         (Dispatch): enhance the accent inset a bit. (not perfect)
6225
6226 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6227
6228         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
6229
6230 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6231
6232         * bufferlist.C (emergencyWrite): fix assert() call
6233
6234 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
6235
6236         * text.C (InsertChar): Added trivial patch to only send the "you
6237         can not do multiple spaces this way" message once during a
6238         session.
6239
6240 2001-05-08  Baruch Even  <baruch@lyx.org>
6241
6242         * Makefile.am: Changed order of libraries to get LyX to link properly
6243         with the gnome frontend.
6244
6245 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6246
6247         * LaTeXFeatures.h: add a std:: qualifier
6248
6249 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6250
6251         * paragraph.C (String): use stringstream
6252
6253 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6254
6255         * paragraph.C (writeFile): remove footflag arg
6256
6257         * buffer.C (makeLaTeXFile): use stringstream
6258         (latexParagraphs): remove footnot gurba
6259
6260         * LaTeXFeatures.C (getPackages): use stringstream
6261         (getMacros): likewise
6262         (getTClassPreamble): likewise
6263         (getFloatDefinitions): new method
6264
6265         * paragraph.C (writeFile): reindent
6266         (Erase): reindent
6267
6268         * WorkArea.h: revert the xpos + etc changes.
6269
6270         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
6271
6272         * lyxparagraph.[Ch]: add copy constructor, remove Clone
6273
6274         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
6275         (pasteSelection): likewise
6276         * text2.C (CreateUndo): likewise
6277
6278 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6279
6280         * minibuffer.C (peek_event): temporarily reduce the functionality
6281         of the minibuffer (to allow args on lfuns)
6282
6283         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
6284         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
6285
6286         * buffer.C (readInset): add compability reading of old float
6287         lists, add reading of new style float list.
6288         (readInset): avoid reevaluation of inscmd.getCmdName()
6289         (getLists): reindent
6290
6291         * MenuBackend.C (MenuItem): implement parsing of
6292         md_floatlistinsert and md_floatinsert.
6293         (expand::LastFiles): move initalizaton of iterators out of loop,
6294         avoid reevaluation.
6295         (expand::Documents): introduce typdedef vector<string> Strings,
6296         and use it.
6297         (expand::ExportFormats): introduce typedef vector<Format const *>
6298         Formats, and use it.
6299         (expand): implement FloatListInsert and FloatInsert.
6300
6301         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
6302         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
6303         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
6304
6305         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
6306         handling.
6307         (Dispatch::LFUN_FLOAT_LIST): implement
6308
6309 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
6310
6311         * LaTeX.C (run): Fix problem with --export code.
6312
6313 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
6314
6315         * BufferView.[Ch] (workarea): removed.
6316         (getClipboard) new method; wrapper for workarea()->getClipboard()
6317
6318         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
6319         bug.
6320
6321         * WorkArea.h (width, height, xpos, ypos): These methods all
6322         returned the dimensions of the work_area sub-area of WorkArea,
6323         resulting in a position error if the WorkArea were resized. Now
6324         return the dimensions of the entire WorkArea.
6325
6326         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
6327
6328 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6329
6330         * LaTeX.C (deplog): correct the syntax of regex reg1
6331
6332 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6333
6334         * undo.C: remove !NEW_INSETS cruft
6335
6336 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6337
6338         * text2.C: remove !NEW_INSETS cruft
6339
6340         * text.C: remove !NEW_INSETS cruft
6341
6342         * tabular.C: remove !NEW_INSETS cruft
6343
6344         * spellchecker.C: remove !NEW_INSETS cruft
6345
6346         * lyxtext.h: remove !NEW_INSETS cruft
6347
6348         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
6349
6350         * lyxfunc.C: remove !NEW_INSETS cruft
6351
6352         * lyxfind.C: remove !NEW_INSETS cruft
6353
6354         * lyx_cb.C: remove !NEW_INSETS cruft
6355
6356         * figureForm.C: remove  !NEW_INSETS cruft
6357
6358         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
6359
6360         * buffer.[Ch]: remove !NEW_INSETS cruft
6361
6362         * ToolbarDefaults.C: remove !NEW_INSETS cruft
6363
6364         * CutAndPaste.C: remove !NEW_INSETS cruft
6365
6366         * BufferView_pimpl.C: remove !NEW_INSETS cruft
6367
6368         * BufferView2.C: remove !NEW_INSETS cruft
6369
6370         * BufferView.h: remove !NEW_INSETS cruft
6371
6372 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6373
6374         * Lsstream.h: include LString.h before the sstream headers to
6375         fix problem with gcc 2.95.3 and lyxstring
6376
6377 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6378
6379         * lyx_main.C: add using directives when needed for C functions
6380         declared in std:: namespace.
6381
6382 2001-04-27  Juergen Vigna  <jug@sad.it>
6383
6384         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
6385         (SetHeightOfRow): comment out the update call should not be needed!
6386
6387 2001-04-13  Juergen Vigna  <jug@sad.it>
6388
6389         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
6390         (LyXTabular): tried to minimize operator= operations (and realized
6391         hopfully Lars wish).
6392
6393 2001-04-27  Juergen Vigna  <jug@sad.it>
6394
6395         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
6396
6397 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6398
6399         * lyxfunc.C (Dispatch): hack to make listof algorithm work
6400
6401         * buffer.C (readInset): hack to make listof algorithm work
6402
6403         * BufferView_pimpl.C: hack to make listof algorithm work
6404
6405 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6406
6407         * LyXAction.C: removed all !NEW_INSETS cruft
6408         (init): moved lfun_item in method
6409
6410         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
6411
6412 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
6413
6414         * BufferView2.C (theLockingInset): white space.
6415
6416 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6417
6418         * minibuffer.C: include <iostream>
6419
6420         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
6421
6422         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
6423
6424         * commandtags.h: add LFUN_TRANSPOSE_CHARS
6425
6426         * text.[Ch] (TransposeChars): new method
6427
6428 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6429
6430         * call message directly through LyXView instead of through LyXFunc
6431         * BufferView2.C: adjust
6432         * BufferView_pimpl.C: adjust
6433         * FontLoader.C: adjust
6434         * buffer.C: adjust
6435         * bufferview_funcs.C: adjust
6436         * converter.C: adjust
6437         * figureForm.C: adjust
6438         * importer.C: adjust
6439         * lyx_cb.C: adjust
6440         * lyx_gui_misc.C: adjust
6441         * lyxfunc.C: adjust
6442         * lyxvc.C: adjust
6443         * text2.C: adjust
6444         + more files in subdirs
6445
6446         * lyxparagraph.h (size): move up int file
6447         (GetLayout): ditto
6448
6449         * adjust all uses of Assert to lyx::Assert.
6450
6451         * BufferView2.C (ChangeCitationsIfUnique): adjust for
6452         lyxfunctional in namespace lyx
6453         * layout.C (hasLayout): ditto
6454         (GetLayout): ditto
6455         (GetLayout): ditto
6456         (delete_layout): ditto
6457         (NumberOfClass): ditto
6458         * converter.C (GetFormat): ditto
6459         (GetNumber): ditto
6460         (Add): ditto
6461         (Delete): ditto
6462         (SetViewer): ditto
6463         * bufferlist.C (getFileNames): ditto
6464         (emergencyWriteAll): ditto
6465         (exists): ditto
6466         (getBuffer): ditto
6467         * MenuBackend.C (hasSubmenu): ditto
6468         (hasMenu): ditto
6469         (getMenu): ditto
6470         * BufferView_pimpl.C (getInsetByCode): ditto
6471
6472 2001-04-18  Juergen Vigna  <jug@sad.it>
6473
6474         * vspace.C (asLatexString): fixed the 100% problem.
6475
6476 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6477
6478         * lyxfunc.C (Dispatch):
6479         * minibuffer.C:
6480         * minibuffer.h: add a few std:: qualifiers
6481
6482 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6483
6484         * minibuffer.[Ch]: reimplement so that commands is initiated and
6485         run from lyxfunc, simplified som handling, and made the completion
6486         and history code for complete. wip.
6487
6488         * lyxfunc.C (processKeySym): call message
6489         (miniDispatch): new temporary method
6490         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
6491         (LFUN_MESSAGE): implement
6492         (LFUN_MESSAGE_PUSH): implement
6493         (LFUN_MESSAGE_POP): implement
6494         (initMiniBuffer): the initial/defualt minibuffer message.
6495
6496         * lyxfont.[Ch]: inline some more getters
6497
6498         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
6499
6500         * lyx_gui_misc.[Ch] (WriteStatus): remove method
6501
6502         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
6503         (AutoSave): use LFUN_MESSAGE
6504         (Reconfigure): ditto
6505
6506         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
6507
6508         * figureForm.C: use LFUN_MESSAGE
6509
6510         * converter.C (runLaTeX): use LFUN_MESSAGE
6511
6512         * bufferview_funcs.C: use LFUN_MESSAGE
6513         (Melt): ditto
6514         (changeDepth): ditto
6515
6516         * bufferparams.h: use boost::
6517
6518         * bufferlist.h: inherit privately from noncopyable
6519
6520         * bufferlist.C (loadLyXFile): remove some commented code.
6521
6522         * buffer.C (runChktex): use LFUN_MESSAGE
6523
6524         * ShareContainer.h: inherit privately from noncopyable
6525
6526         * ParagraphParameters.[hC] (depth): inline it.
6527
6528         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
6529         methods.
6530         (message): new method
6531         (messagePush): ditto
6532         (messagePop): ditto
6533         (show): init minibuffer
6534         (showState): direct call
6535
6536         * LaTeX.[Ch]: inherit privately from noncopyable
6537         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
6538         instead of WriteStatus.
6539
6540         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
6541
6542         * BufferView_pimpl.C (buffer): don't init minibuffer
6543         (workAreaButtonPress): use LFUN_MESSAGE
6544         (workAreaButtonRelease): ditto
6545         (savePosition): ditto
6546         (restorePosition): ditto
6547         (MenuInsertLyXFile): ditto
6548         (workAreaExpose): don't init minibuffer
6549         (update): remove commented code, simplify
6550
6551         * BufferView2.C (openStuff): use LFUN_MESSAGE
6552         (toggleFloat): ditto
6553         (menuUndo): ditto
6554         (menuRedo): ditto
6555         (copyEnvironment): ditto
6556         (pasteEnvironment): ditto
6557         (copy): ditto
6558         (cut): ditto
6559         (paste): ditto
6560         (gotoInset): ditto
6561         (updateInset): remove some commented code
6562
6563         * lastfiles.h: inherit privately from noncopyable
6564         * layout.h: ditto
6565         * lyx_gui.h: ditto
6566         * lyx_main.h: ditto
6567         * lyxlex.h: ditto
6568         * lyxlex_pimpl.h: ditto
6569
6570         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
6571         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
6572         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
6573
6574         * LyXAction.h: inherit privately from noncopyable, add methods
6575         func_begin, func_end, returning iterators to the func map.
6576
6577         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
6578         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
6579         (func_begin): new method
6580         (func_end): new method
6581
6582         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
6583         and not)
6584         (copySelection): ditto
6585         (pasteSelection): ditto
6586
6587         * BufferView.C: whitespace change
6588         * BufferView.h: inherit privately from noncopyable
6589
6590 2001-04-16  Allan Rae  <rae@lyx.org>
6591
6592         * tabular-old.C (l_getline):
6593         * spellchecker.C (sc_check_word):
6594         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
6595         an unrecognised preprocessor directive.  So ensure they're wrapped.
6596
6597 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
6598
6599         * src/exporter.C (Export): Give an error message when path to file
6600         contains spaces.
6601
6602 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
6603
6604         * LaTeX.C (deplog): Always check that foundfile exists.
6605
6606 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6607
6608         * lyx_main.h:
6609         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
6610
6611 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6612
6613         * tabular.[Ch] (getLabelList): implement new method
6614
6615         * minibuffer.h: comment ouf setTiimer
6616
6617         * minibuffer.C (ExecutingCB): constify res
6618         (peek_event): constify s
6619         (Set): constify ntext
6620         (Init): constify nicename
6621
6622         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
6623
6624         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
6625         (savePosition): use two params to Minibuffer::Set
6626         (restorePosition): ditto
6627
6628 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6629
6630         * lyx_main.C: include language.h
6631
6632         * Makefile.am (lyx_main.o): add language.h
6633
6634 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6635
6636         * exporter.C:
6637         * paragraph.C:
6638         * screen.C:
6639         * tabular.C:
6640         * CutAndPaste.C: include gettext.h
6641
6642         * lyxfont.h: remove old hack with ON and OFF.
6643
6644         * lyxparagraph.h:
6645         * lyxfont.h: do not include language.h...
6646
6647         * BufferView2.C:
6648         * LaTeXFeatures.C:
6649         * Painter.C:
6650         * bufferview_funcs.C:
6651         * font.C:
6652         * lyxfont.C:
6653         * text.C:
6654         * text2.C:
6655         * trans_mgr.C:
6656         * paragraph.C: ... but do it here instead
6657
6658 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6659
6660         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
6661
6662         * tabular.C: small reformat
6663
6664         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
6665         NEW_INSETS version
6666         (GetChar): ditto
6667         (BreakParagraph): ditto
6668         (SetOnlyLayout): ditto
6669         (SetLayout): ditto
6670
6671         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
6672         with one arg less.
6673
6674         * lastfiles.C: removed most using decl, add std:: where needed
6675
6676         * buffer.C: ws changes
6677
6678         * MenuBackend.C (class compare_format): put into anon namespace
6679         (expand): constify label, names, action, action2
6680         (expand):
6681
6682         * text.C (SingleWidth): constify font
6683         (IsBoundary): constify rtl2
6684         (GetVisibleRow): constify ww
6685
6686         * LaTeX.C (deplog): constify logfile
6687
6688         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
6689         start_x, end_x
6690         (workAreaExpose): constify widthChange, heightChange
6691
6692         * lyxrow.C (par): moved
6693         (height): moved
6694         (next): moved
6695         * lyxrow.h: as inlines here
6696
6697         * lyxfont.h (shape): moved from lyxfont.C
6698         (emph): moved from lyxfont.C
6699
6700         * lyxfont.C (LyXFont): use initialization list for all
6701         constructors
6702         (shape): move to lyxfont.h as inline
6703         (emph): move to lyxfont.h as inline
6704
6705
6706 2001-04-04  Juergen Vigna  <jug@sad.it>
6707
6708         * vspace.C: had to include stdio.h for use of sscanf
6709
6710 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
6711
6712         * BufferView.h:
6713         * BufferView_pimpl.h: remove xforms cruft. Both classes are
6714         independent of xforms.
6715
6716 2001-04-02  Juergen Vigna  <jug@sad.it>
6717
6718         * spellchecker.C: fixed namespace placing!
6719
6720 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
6721
6722         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
6723         the LyXParagraph * is 0.
6724
6725 2001-03-29  Juergen Vigna  <jug@sad.it>
6726
6727         * vspace.C: added support for %, c%, p%, l%.
6728         (stringFromUnit): added helper function.
6729         (asLatexString): changed to give right results for the %-values.
6730
6731         * buffer.C: convert the widthp in a width%.
6732
6733 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
6734
6735         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
6736         figureForm.[Ch].
6737
6738         * figureForm.[Ch]: stripped the FD_from_figure manipulation
6739         code out of lux_cb.[Ch], ready for its (imminent?) removal.
6740
6741         * lyx_cb.[Ch]: see above.
6742
6743         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
6744         form1.[Ch].
6745
6746         * form1.[Ch]:
6747         * lyx.[Ch]: replaced by figure_form.[Ch].
6748
6749         * lyx_gui.C:
6750         * lyx_gui_misc.C:
6751         * lyxfunc.C: changed headers associated with above changes.
6752
6753 2001-03-27  Juergen Vigna  <jug@sad.it>
6754
6755         * BufferView_pimpl.C: set the temporary cursor right!
6756
6757 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
6758
6759         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
6760
6761 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
6762
6763         * LString.h: removed "using std::getline"!
6764
6765         * BufferView_pimpl.C (Dispatch): changes due to changes in
6766         InsetInclude::Params.
6767
6768         * buffer.C (tag_name): removed redundant break statements as they were
6769         producing lots of warnings with my compiler.
6770
6771 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6772
6773         * LString.h: add "using std::getline" when using the real <string>.
6774
6775 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
6776
6777         * buffer.C: removed bitset usage.
6778         PAR_TAG moved to an anonymous name space.
6779         (tag_name): new funtion, also in the anonymous namespace.
6780         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
6781         (makeDocBookFile): clean code. Completed transition from string arrays
6782         to string vectors.
6783         (SimpleDocBookOnePar): code clean.
6784
6785 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
6786
6787         * tabular.C: add some comments.
6788
6789 2001-03-22  Juergen Vigna  <jug@sad.it>
6790
6791         * buffer.C (parseSingleLyXformat2Token): redone the minipage
6792         compatibility read a bit and fixed bug with minipage in different
6793         depth.
6794
6795 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
6796
6797         * buffer.C (pop_tag): removed.
6798         (push_tag): removed.
6799         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
6800         array replaced with vector. Added support for CDATA sections.
6801         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
6802         at any nest level.
6803         (makeDocBookFile): XML conformant declaration of CDATA section,
6804         fixed bug related to <emphasis> in the first paragraph char.
6805         (sgmlOpenTag): exclude empty tags.
6806         (sgmlCloseTag): ditto.
6807
6808         * buffer.h (pop_tag): removed.
6809         (push_tag): removed.
6810
6811 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
6812
6813         * language.h (Languages): added size_type and size().
6814
6815 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
6816
6817         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
6818         response on compability reading of minipages. One probliem is that
6819         the old usage of minipages was «flertydig»
6820
6821         * several files here and in subdirs: don't use static at file
6822         scope use anon namespaces instead.
6823
6824 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
6825
6826         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
6827         LaTeX output. This is necessary for Literate document
6828         processing.
6829
6830 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
6831
6832         * buffer.C: insert hfill when needed.
6833
6834         * tabular.C (l_getline): use string::erase, small whitespace change.
6835
6836         * BufferView_pimpl.C: try the anon namespace.
6837         * WorkArea.C: ditto
6838
6839 2001-03-16  Juergen Vigna  <jug@sad.it>
6840
6841         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
6842         otherwise it won't open options-dialogs.
6843
6844         * buffer.C: honor pextraWidth(p) on converting minipages.
6845
6846         * tabular.C (l_getline): changed the functions to strip trailing \r.
6847
6848 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
6849
6850         * BufferView_pimpl.C:
6851         * minibuffer..C: added "using SigC::slot" declaration.
6852
6853 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
6854
6855         * lyxlex_pimpl.h: noncopyable is in namespace boost.
6856
6857         * text2.C: ditto
6858
6859         * text.C: ditto
6860
6861         * paragraph.C: ditto
6862
6863         * lyxtext.h: NO_PEXTRA
6864
6865         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
6866
6867         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
6868         * ParameterStruct.h: ditto
6869         * ParagraphParameters.h: ditto
6870         * lyxparagraph.h: ditto
6871
6872 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
6873
6874         * buffer.C: add compability for minipage alignment.
6875         (latexParagraphs): remove unwanted pextra check.
6876
6877         * several files: remove CXX_WORKING_NAMESPACES
6878
6879         * buffer.C (pop_tag): tie is in namespace boost
6880
6881         * BufferView.h: noncopyable is in namespace boost
6882         * lyxlex.h: ditto
6883         * lyx_main.h: ditto
6884         * lyx_gui.h: ditto
6885         * layout.h: ditto
6886         * lastfiles.h: ditto
6887         * bufferlist.h: ditto
6888         * ShareContainer.h: ditto
6889         * LyXView.h: ditto
6890         * LyXAction.h: ditto
6891         * LaTeX.h: ditto
6892
6893 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
6894
6895         * Merging changes from BRANCH_MVC back into HEAD.
6896
6897         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
6898
6899 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
6900
6901         * BufferView_pimpl.C: change from intl.C
6902
6903         * combox.h:
6904         * combox.C:
6905         * Makefile.am: move combox.*
6906
6907         * form1.h:
6908         * form1.C:
6909         * lyx_gui.C:
6910         * intl.h:
6911         * intl.C: remove dialog (covered by prefs)
6912
6913 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
6914
6915         * lyxfunc.C (Dispatch): removed redundant break statement.
6916
6917 2001-03-14  Juergen Vigna  <jug@sad.it>
6918
6919         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
6920
6921 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
6922
6923         * buffer.C: add hack to fix compability reading of minipages.
6924
6925 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
6926
6927         * buffer.C (getLists): Cleanup.
6928
6929 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6930
6931         * lyxfont.C (update): don't honor toggleall on font size.
6932
6933 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
6934
6935         * bmtable.c:
6936         * bmtable.h:
6937         * Makefile.am: moved to frontends/xforms/
6938
6939         * lyx_gui_misc.C:
6940         * lyxfunc.C:
6941         * BufferView_pimpl.C: changes for moved mathpanel
6942
6943 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
6944
6945         * gettext.h: fix gettext_init() in --disable-nls
6946
6947 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6948
6949         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
6950
6951 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
6952
6953         * lyx.C:
6954         * lyx.h: strip external form
6955
6956 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
6957
6958         * BufferView_pimpl.C: add comment, destroySplash()
6959
6960 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
6961
6962         * BufferView_pimpl.C:
6963         * LyXAction.C:
6964         * buffer.C:
6965         * commandtags.h:
6966         * lyxfunc.C: use re-worked insetinclude
6967
6968 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
6969
6970         * buffer.C: add using std::stringstream.
6971
6972         * lyx_cb.C: readd using std::ios.
6973
6974         * buffer.C: add using std::map.
6975
6976         * BufferView_pimpl.C: add using std::vector.
6977
6978         * ShareContainer.h: add std:: to swap.
6979
6980         * buffer.h: add some typedefs
6981         * buffer.C (getLists): use them
6982         (getLists): renamed from getTocList.
6983         add a counter for the different float types and use it in the
6984         generated string.
6985         (getLists): use the same counter for the NEW_INSETS and the "non"
6986         NEW_INSETS
6987
6988         * lyx_cb.h: remove unused items, includes, using etc.
6989
6990         * ShareContainer.h: remove some commented code, add more comments
6991         and "documentation".
6992
6993 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
6994
6995         * buffer.C (getTocList): make the list also when NEW_INSETS is
6996         defined.
6997
6998         * buffer.h: remove TocType
6999
7000         * buffer.C (getTocList): change to return a map<string,
7001         vector<TocItem> >, implement for dynamic number of list.
7002
7003         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
7004         * text2.C (PasteSelection): adjust
7005         * CutAndPaste.C (pasteSelection): adjust
7006
7007         * FloatList.C (FloatList): update from the new_insets branch.
7008         * Floating.[Ch]: ditto
7009         * LaTeXFeatures.C: ditto
7010         * buffer.C: ditto
7011         * lyxlex_pimpl.C: ditto
7012
7013         * paragraph.C (Last): remove when NEW_INSETS is defined.
7014
7015         * other file: changes because of the above.
7016
7017 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
7018
7019         * lyxparagraph.h: rename next to next_, previous to previous_,
7020         make them private for NEW_INSETS. Rename Next() to next(),
7021         Previous() to previous().
7022
7023         * other files: changes because of the above.
7024
7025 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
7026
7027         * BufferView.h:
7028         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
7029         problem.
7030
7031 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7032
7033         * main.C (main): pass lyx_localedir to gettext_init().
7034
7035         * gettext.h: remove locale_init and gettext_init macros
7036
7037         * gettext.C (locale_init): new function
7038         (gettext_init): new function
7039
7040         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
7041         setlocale().
7042
7043 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
7044
7045         * Moved credits to frontends:
7046         * credits.[Ch]: removed
7047         * credits_form.[Ch]: removed
7048         * lyx_gui_misc.C: remove credits stuff
7049         * Makefile.am:
7050
7051 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
7052
7053         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
7054
7055         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
7056         unneeded destructor.
7057
7058         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
7059         a standalone pointer again.
7060
7061         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
7062
7063 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
7064
7065         * Makefile.am:
7066         * filedlg.h:
7067         * filedlg.C:
7068         * LyXAction.C:
7069         * ToolbarDefaults.C:
7070         * bufferlist.C:
7071         * commandtags.h:
7072         * form1.C:
7073         * form1.h:
7074         * lyx_cb.C:
7075         * lyx_cb.h:
7076         * lyxfunc.h:
7077         * lyxfunc.C:
7078         * BufferView_pimpl.C: use new file dialog in GUII
7079
7080         * lyx_cb.h:
7081         * lyx_cb.C: remove LayoutsCB to Toolbar
7082
7083 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7084
7085         * ShareContainer.h (get): add std:: qualifier
7086
7087 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7088
7089         * ShareContainer.h: define a proper ShareContainer::value_type
7090         type (and use typename to please compaq cxx)
7091
7092 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
7093
7094         * lyxparagraph.h: move serveral local vars to
7095         ParameterStruct/ParagraphParameters., use ShareContainer in
7096         FontTable., make vars in FontTable private and add getter and
7097         setter.
7098
7099         * paragraph.C: changes because of the above.
7100
7101         * lyxfont.h: remove copy constructor and copy assignment. (the
7102         default ones is ok), move number inside FontBits. move inlines to
7103         lyxfont.C
7104
7105         * lyxfont.C: add number to initializaton of statics, move several
7106         inlines here. constify several local vars. some whitespace
7107         cleanup. Dont hide outerscope variables.
7108
7109         * Spacing.h: add two new constructors to match the set methods.
7110
7111         * ShareContainer.h: new file, will perhaps be moved to support
7112
7113         * ParameterStruct.h: new file
7114
7115         * ParagraphParameters.h: new file
7116
7117         * ParagraphParameters.C: new file
7118
7119         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
7120         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
7121
7122         * BufferView_pimpl.C: ParagraphParameter changes.
7123         * buffer.C: Likewise.
7124         * bufferview_funcs.C: Likewise.
7125         * text.C: Likewise.
7126         * text2.C: Likewise.
7127
7128 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7129
7130         * lyxfind.C (LyXReplace): do not redefine default argument in
7131         implementation.
7132         (IsStringInText): ditto
7133         (SearchForward): ditto
7134         (SearchBackward): ditto
7135
7136 2001-03-06  Juergen Vigna  <jug@sad.it>
7137
7138         * lyxfind.C (IsStringInText): put parentes around expressions.
7139
7140 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
7141
7142         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
7143
7144 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
7145
7146         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
7147
7148         * stl_string_fwd.h: add comment
7149
7150         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
7151
7152         * tabular.h:
7153         * tabular.C: remove unused DocBook methods
7154
7155         * intl.C:
7156         * language.C:
7157         * paragraph.C:
7158         * buffer.C:
7159         killed DO_USE_DEFAULT_LANGUAGE
7160
7161 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7162
7163         * lyx_gui.C: do not include language.h.
7164
7165         * bufferview_funcs.C (ToggleAndShow): do not provide optional
7166         arguments in function implementation.
7167
7168 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
7169
7170         * BufferView_pimpl.C: add <ctime>
7171
7172 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
7173
7174         * BufferView_pimpl.C: add using std::find_if
7175
7176 2001-02-27  José Matos  <jamatos@fep.up.pt>
7177
7178         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
7179         by OnlyPath.
7180
7181 2001-02-11  José Matos  <jamatos@fep.up.pt>
7182
7183         * buffer.C (makeDocBookFile): command styles now have a parameter as
7184         "title" by default.
7185
7186 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
7187
7188         * layout_forms.[Ch]: removed
7189         * lyx_cb.[Ch]: out character
7190         * lyx_gui.C: out character
7191         * lyx_gui_misc.C: out character
7192         * bufferview_funcs.C: : out character,
7193         added toggleall as parameter in ToggleAndShow
7194
7195 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
7196
7197         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
7198
7199         * text2.C (SetCurrentFont): Disable number property at boundary.
7200
7201 2001-02-26  Juergen Vigna  <jug@sad.it>
7202
7203         * lyxfunc.C (getStatus): added a string argument override function so
7204         that this is correctly called from LyXFunc::Dispatch if it contains a
7205         do_not_use_argument which is used!
7206         (Dispatch): added check for "custom" export and call appropriate func.
7207
7208 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
7209
7210         * lyxrc.C: Add language_command_local, language_use_babel and
7211         language_global_options.
7212
7213         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
7214
7215         * buffer.C (makeLaTeXFile): Use language_use_babel and
7216         language_global_options.
7217
7218 2001-02-23  Juergen Vigna  <jug@sad.it>
7219
7220         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
7221         which works with LyXText and putted it inside BufferView. Here now we
7222         only call for that part the BufferView::Dispatch() function.
7223
7224         * BufferView.C (Dispatch): added.
7225
7226         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
7227         functions which needs to use a LyXText over from LyXFunc.
7228         (MenuInsertLyXFile): added
7229         (getInsetByCode): added
7230         (moveCursorUpdate): added
7231         (static TEXT): added
7232
7233 2001-02-22  Juergen Vigna  <jug@sad.it>
7234
7235         * BufferView_pimpl.C (update): call a status update to see if LyXText
7236         needs it.
7237
7238 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
7239
7240         * vc-backend.C (revert): implement for CVS
7241         (getLog): implement for CVS
7242
7243 2001-02-20  Juergen Vigna  <jug@sad.it>
7244
7245         * text2.C (ClearSelection): added BufferView param for inset_owner call
7246
7247         * lyxfunc.C (TEXT): added this function and use it instead of
7248         directly owner->view()-text of getLyXText().
7249
7250 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
7251
7252         * src/layout_forms.C: out preamble
7253         * src/layout_forms.h: out preamble
7254         * src/lyx_cb.C: out preamble
7255         * src/lyx_cb.h: out preamble
7256         * src/lyx_gui.C: out preamble
7257         * src/lyx_gui_misc.C: out preamble
7258         * src/lyxfunc.C: connect with guii preamble
7259
7260 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
7261
7262         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
7263
7264 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
7265
7266         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
7267         whether to run bibtex.
7268
7269 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
7270
7271         * Makefile.am (lyx_SOURCES): Remove BackStack.h
7272
7273 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
7274
7275         * Makefile.am (lyx_SOURCES): removed bibforms.h
7276
7277         * vspace.h: doxygen
7278
7279         * text.C (GetVisibleRow): make several local vars const
7280
7281         * tabular.C: small cleanup.
7282
7283         * lyxserver.C (callback): use compare instead of strncmp
7284
7285         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
7286         inlines to after class or to paragraph.C
7287
7288         * lyxfont.h: remove friend operator!=
7289
7290         * converter.h: move friend bool operator< to non friend and after
7291         class def.
7292
7293         * combox.h: small cleanup
7294
7295         * buffer.h: doxygen, remove unused constructor, move inclas inlies
7296         to inlines after class def.
7297
7298         * buffer.C (pop_tag): use string operations instead of strcmp
7299
7300         * bmtable.c: doxygen, small cleanup
7301
7302         * LaTeX.h: remove friend operator==
7303
7304 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
7305
7306         * screen.C:
7307         * lyxrc.[Ch]:
7308         * lyxfunc.C:
7309         * lyxfont.[Ch]:
7310         * lyx_cb.C:
7311         * intl.[Ch]:
7312         * commandtags.h:
7313         * buffer.C:
7314         * WorkArea.[Ch]:
7315         * LyXAction.C:
7316         * BufferView_pimpl.C:
7317         * BufferView.[Ch]: remove cruft
7318
7319 2001-02-14  Juergen Vigna  <jug@sad.it>
7320
7321         * lyxfunc.C: removed #if 0 unused code
7322
7323         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
7324
7325         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
7326
7327         * text2.C (SetSelection): added a BufferView * parameter
7328
7329 2001-02-13  Juergen Vigna  <jug@sad.it>
7330
7331         * lyxfunc.C (Dispatch): fixed protected blank problem.
7332         * BufferView2.C (protectedBlank): added LyxText * parameter.
7333
7334         * tabular.C (AppendRow): forgot to set row_info of newly added row.
7335         (AppendColumn): same as above for column_info.
7336
7337         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
7338         (moveCursorUpdate): use a LyXText param for support of InsetText.
7339
7340         * BufferView_pimpl.C (doubleClick): added support for InsetText.
7341         (tripleClick): ditto
7342
7343         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
7344
7345         * BufferView_pimpl.C (update): added LyXText param to honor insets.
7346
7347         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
7348
7349         * text2.C (SetSelection): set correct update status if inset_owner
7350         (ToggleFree): ditto
7351
7352 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
7353
7354         * tabular.C: remove some commented code.
7355
7356 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
7357
7358         * BufferView_pimpl.C: call hideSplash()
7359
7360         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
7361
7362         * include_form.h:
7363         * bibforms.h: remove
7364
7365         * lyxfunc.C:
7366         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
7367           add LFUN_CHILD_CREATE
7368
7369         * counters.h: fix tiny typo
7370
7371         * lyx_cb.C:
7372         * lyx.h:
7373         * lyx_gui.C:
7374         * lyx.C: move splash to frontends/xforms/
7375
7376         * lyx_gui_misc.C: move Include and Bibform to frontends
7377
7378         * lyxvc.h: clarify comment
7379
7380         * vspace.C: tiny housekeeping
7381
7382 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
7383
7384         * text.C (PrepareToPrint): RTL Fix.
7385
7386         * paragraph.C (GetUChar): New method.
7387         (String):  Use GetUChar.
7388
7389         * buffer.C (asciiParagraph): Use GetUChar.
7390
7391 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
7392
7393         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
7394
7395 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
7396
7397         * buffer.h:
7398         * buffer.C: rename to getLogName(), handle
7399           build log / latex log nicely
7400
7401 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7402
7403         * MenuBackend.C:
7404         * MenuBackend.h: remove support for reference menuitem type.
7405
7406 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
7407
7408         * BufferView_pimpl.C: housekeeping
7409         * BufferView_pimpl.h:
7410         * LyXView.h:
7411         * Makefile.am:
7412         * Timeout.C:
7413         * Timeout.h:
7414         * minibuffer.h: move Timeout GUI-I
7415
7416 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
7417
7418         * lyxrc.C (read): Update converters data-structures.
7419
7420 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
7421
7422         * LaTeX.h (operator!=): add operator != for Aux_Info
7423
7424 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
7425
7426         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
7427
7428         * LaTeXLog.C: deleted, useful code moved to Buffer
7429
7430         * buffer.h:
7431         * buffer.C: new function getLatexLogName()
7432
7433         * lyx_gui_misc.C:
7434         * lyx_gui.C:
7435         * lyxvc.C:
7436         * lyxvc.h:
7437         * lyxfunc.C: use frontends for LaTeX and VC logs
7438
7439 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7440
7441         * LaTeX.h: yet another std:: that Allan forgot.
7442
7443         * Variables.C (set): renamed from isset(), because this clashes
7444         with some HP-UX macros (grr).
7445
7446 2001-02-06  Allan Rae  <rae@lyx.org>
7447
7448         * LaTeX.h: Another bug fix.  Missing std:: this time.
7449
7450 2001-02-04  Allan Rae  <rae@lyx.org>
7451
7452         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
7453         floats problem. I've left it commented out because it's not quite
7454         correct.  It should also test that the current object is a table or
7455         figure inset.  But I haven't gotten around to figuring out how to do
7456         that.  I *think* it'll be something like: "table" == inset.type()
7457
7458         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
7459         bool.
7460
7461 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
7462
7463         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
7464         all the citation/databases/styles in the auxilary file.
7465         (run): Rerun latex if there was a babel language error.
7466
7467 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
7468
7469         * text.C (Backspace): Preserve the font when changing newline char
7470         with a space.
7471         (BreakParagraph): If the cursor is before a space, delete the space.
7472
7473         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
7474
7475 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
7476
7477         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
7478         new argument (code).
7479         (ChangeCitationsIfUnique): New method.
7480
7481         * paragraph.C (GetPositionOfInset): Handle bibkey.
7482
7483 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7484
7485         * BufferView_pimpl.h: change type of Position::par_pos to
7486         LyXParagraph::size_type.
7487
7488 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
7489
7490         * BufferView_pimpl.C (savePosition, restorePosition): Write
7491         messages to minibuffer.
7492
7493 2001-01-28  José Matos  <jamatos@fep.up.pt>
7494
7495         * buffer.C (makeDocBookFile): adds support for document language.
7496         A silly restriction on the name of LatexCommand types where removed.
7497         Added support for CDATA sections, allows to chars unescaped, used
7498         among others in code, to avoid escape < and >.
7499
7500 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
7501
7502         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
7503         saved positions instrad of a stack. Furthermore, a position is
7504         stored using paragraph id/paragraph position.
7505
7506         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
7507         Remove LFUN_REF_BACK.
7508
7509 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
7510
7511         * converter.C (dvipdfm_options): New method.
7512
7513 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
7514
7515         * vspace.C (isValidLength): Fix for empty input string.
7516
7517 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7518
7519         * LyXAction.C (init): change description of LFUN_FIGURE to
7520         "Insert Graphics"
7521
7522 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7523
7524         * LaTeX.C: add using directive
7525
7526 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
7527
7528         * MenuBackend.C (expand): Fix the sorting of the formats.
7529
7530 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
7531
7532         * lyx_main.C: tiny error message fix
7533
7534 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7535
7536         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
7537         calling fl_initialize(). This fixes the problem with ',' as
7538         decimal separator in text files.
7539
7540 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
7541
7542         * trans.C (process): Fix the keymap bug.
7543
7544 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
7545
7546         * LaTeX.C (scanAuxFiles): New method. Provides support for
7547         multiple bibliographies (when using the bibtopic/bibunits pacakges).
7548         (scanLogFile) Scan for "run BibTeX" messages.
7549
7550         * buffer.C (makeLaTeXFile): Do not load the ae package when using
7551         OT1 font encoding. Also, load the aecompl package if the ae
7552         package is loaded.
7553
7554         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
7555
7556 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7557
7558         * texrow.C (increasePos): turn two error messages into debug
7559         messages.
7560
7561 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
7562
7563         * LaTeX.C (scanAux): Handle the \@input macro.
7564         (runBibTeX): Use scanAux().
7565
7566         * language.C (latex_options_): New field.
7567
7568         * LaTeXFeatures.C (getMacros): Add language macros.
7569
7570         * buffer.C (makeLaTeXFile): Small fix.
7571
7572 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7573
7574         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
7575
7576         * text2.C: add a using directive.
7577
7578 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
7579
7580         * BufferView2.C:
7581         * lyx_gui_misc.h:
7582         * lyxfr1.C:
7583         * lyxfunc.C: kill LyXBell.
7584
7585 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
7586
7587         * text.C (IsBoundary): Remove the error message
7588
7589         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
7590
7591         * lyxrc.C (setDefaults): Correct initialization value for
7592         font_norm_type.
7593
7594 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
7595
7596         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
7597         gotoError().
7598
7599         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
7600         and GotoNextNote().
7601
7602         * src/LyXAction.C: Added reference-next.
7603
7604         * text.C (InsertChar): Use contains instead of strchr.
7605
7606         * lyx_cb.C (MenuInsertLabel): Enable default value code.
7607
7608 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
7609
7610         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
7611         alignment commands (when needed).
7612
7613         * text.C (InsertChar): Add ':' to number separator chars.