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