]> git.lyx.org Git - lyx.git/blob - src/insets/ChangeLog
used pre-computed metrics a bit more...
[lyx.git] / src / insets / ChangeLog
1
2 2003-07-14  André Pönitz  <poenitz@gmx.net>
3
4         * insettext.[Ch]: used cached metrics a bit more
5
6 2003-07-10  Alfredo Brauntein  <abraunst@libero.it>
7
8         * insettabular.[Ch]: invalidate InsetTabular::view(), added buffer()
9
10 2003-07-10  André Pönitz  <poenitz@gmx.net>
11
12         * insettabular.C:
13         * insettext.[Ch]: remove InsetText::InnerCache, clean up consequences
14
15 2003-07-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
16
17         * introduce namespace lyx::graphics
18
19 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
20
21         * introduce namespace lyx::support
22
23 2003-06-30  André Pönitz  <poenitz@gmx.net>
24
25         * insetcite.C (localDispatch): fix case of missing return value
26
27         * insetcite.C (ascii): remove unneeded temporary
28
29 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
30
31         * insetspace.h: fix \file
32
33         * insetbibtex.C (fillWithBibKeys): use std:: on stdlib types
34         * insetinclude.C (fillWithBibKeys): ditto
35
36         * insetbibitem.C: fix type const order
37
38         * inset.C (getLyXText): add varname for arg
39
40         * ExternalTemplate.h: fix type const order
41
42 2003-06-27  André Pönitz  <poenitz@gmx.net>
43
44         * insettext.C: take care of removed LyXCursor::row_ member
45
46         * insettext.[Ch]: use new TextCursor struct for sstate
47
48 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
49
50         * inseterror.[Ch]: removed
51
52 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
53
54         * insetinclude.C (docbook): use parseError instead of sgmlError
55
56 2003-06-19  Alfredo Braunstein  <abraunst@libero.it>
57
58         * insetinclude.C (loadIfNeeded): call ::loadLyXFile instead
59         of BufferList::loadLyXFile
60
61 2003-06-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
62
63         * insettext.C (update): simplify
64         (updateLocal): remove commented code
65         (insetUnlock): simplify
66         (lockInset): simplify
67         (updateInsetInInset): simplify
68         (localDispatch): simplify
69         (setFont): simplify
70         (resizeLyXText): simplify
71         (collapseParagraphs): simplify
72
73         * insetert.C (get_new_label): simplify
74
75 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
76
77         * insettext.C (localDispatch): handle arg to LFUN_PASTE, call
78         pasteSelection with index
79
80 2003-06-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
81
82         * insettext.C (localDispatch): fix call to cutSelection for LFUN_CUT
83
84 2003-06-16  André Pönitz  <poenitz@gmx.net>
85
86         * insetbase.h: new virtual base function clone()
87
88         * *inset*.[Ch]: IU of clone() and getLabelList (i.e. essentially
89           Inset * clone()  ->  InsetBase * clone()
90
91 2003-06-13  André Pönitz  <poenitz@gmx.net>
92
93         * insettabular.[Ch]: make tabular a proper member
94
95 2003-06-12  André Pönitz  <poenitz@gmx.net>
96
97         * insettabular.[Ch]: some renaming plus whitespace
98
99 2003-06-11  Angus Leeming  <leeming@lyx.org>
100
101         * Makefile.am: remove graphicinset.[Ch], insetbutton.[Ch].
102         Add renderers.[Ch].
103
104         * insetbutton.[Ch]: removed.
105         * graphicinset.[Ch]: renamed as renderers.[Ch].
106
107         * renderers.[Ch]: new files. Rename GraphicsInset as GraphicsRenderer.
108         Create a new class ButtonRenderer using the InsetButton::metrics() and
109         draw() functions.
110         Derive both from a common RenderedInset base class.
111
112         * insetcommand.[Ch]:
113         * insetinclude.[Ch]: derive from Inset, not InsetButton.
114         Give it a ButtonRenderer member variable. Use it.
115         Give the classes working copy c-tors.
116         No longer derive from boost::noncopyable.
117
118         * insetexternal.[Ch]: enable the inset to choose dynamically whether to
119         display its contents as a button or as a graphic.
120
121         * insetgraphic.[Ch]: changes due to the change in name GraphicInset ->
122         GraphicRenderer.
123
124 2003-06-11  Angus Leeming  <leeming@lyx.org>
125
126         * insetcite.C (localDispatch): reformat.
127
128         * insetref.C (localDispatch): enable dialog to be lauched.
129
130 2003-06-11  John Levon  <levon@movementarian.org>
131
132         * insettabular.C: correctly mark all cells as erased
133
134 2003-06-11  Angus Leeming  <leeming@lyx.org>
135
136         * insetexternal.[Ch]: InsetExternal::Params no longer stores the
137         ExternalTemplate but its name, templatename. This means that a file
138         containing a reference to an External Template not installed on the
139         current machine will be saved retaining this info rather than inserting
140         the first "valid" template from the list of templates.
141
142         As a by product, the visual statement that the Template is missing is
143         now very clear!
144
145 2003-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
146
147         * insettext.C (appendParagraphs): remove some commented code.
148
149 2003-06-10  Angus Leeming  <leeming@lyx.org>
150
151         * graphicinset.[Ch] (view): removed the publicly accessible function to set
152         the cache.
153
154         * insetexternal.[Ch]: move tempname_ into the Params struct.
155         (Params d-tor): new function, to clean-up this temp file.
156         (localDispatch): dispatch LFUN_EXTERNAL_EDIT.
157         (cache): removed.
158         (editExternal, doSubstitution): move out of class.
159
160 2003-06-10  Angus Leeming  <leeming@lyx.org>
161
162         * graphicinset.[Ch] (params): removed.
163         * graphicinset.h (operator=): declared private but not defined.
164         (statusMessage): made private.
165
166         * insetexternal.[Ch]: graphic_ renamed as renderer_.
167
168 2003-06-07  John Levon  <levon@movementarian.org>
169
170         * insetert.C (latex): make a newline mean just that not
171         a new par
172
173 2003-06-07  José Matos  <jamatos@fep.up.pt>
174
175         * insethfill.[Ch] (linuxdoc, docbook): implement output
176         * insetspace.C (linuxdoc, docbook): remove coments as the code
177         is correct.
178
179 2003-06-06  José Matos  <jamatos@fep.up.pt>
180
181         * insetnewline.C (linuxdoc,docbook): return newline, fix bug 1148.
182
183 2003-06-06  André Pönitz  <poenitz@gmx.net>
184
185         * insetwrap.[Ch]: code compactification
186
187 2003-06-06  Alfredo Braunstein  <abraunst@libero.it>
188
189         * mailinset.C (updateDialog): use Dialogs::visible
190
191 2003-06-04  Angus Leeming  <leeming@lyx.org>
192
193         * graphicinset.C (draw): add a comment for the #if 0 block.
194
195         * insetexternal.h: remove Params::parameters variable.
196         * insetexternal.C (read, write): rewrite to output new ExternalInset format
197         and read it back making full use of LyXLex.
198
199 2003-06-04  André Pönitz  <poenitz@gmx.net>
200
201         * inset.[Ch]: change owner_ from Inset * to UpdatableInset *
202
203 2003-06-04  John Levon  <levon@movementarian.org>
204
205         * insettabular.C: back out tall table speed up. It was broken
206
207 2003-06-03  Angus Leeming  <leeming@lyx.org>
208
209         * ExternalTemplate.[Ch]: add inputFormat and UpdateFormat variables.
210         Remove ViewCommand and UpdateCommand.
211
212         * graphicinset.C (update): bug fix. Set the params before calling the
213         loader.
214         * graphicinset.[Ch] (view): new method. A bit of a fudge to set the
215         BufferView cache to enable the InsetExternal::editCommand to be invoked
216         from the frontends. Would not be needed if this were dispatched properly.
217         (old_ascent_): variable removed.
218
219         * insetexternal.[Ch]: large clean-up to use the converter mechanism to
220         do any necessary conversions of external material. Also use the
221         new GraphicsInset to display the inset within LyX.
222
223 2003-06-03  Angus Leeming  <leeming@lyx.org>
224
225         * graphicinset.[Ch]: new files. Clean up the InsetGraphics::Cache
226         and move it somewhere where InsetExternal can use it too.
227
228         * Makefile.am: add the new files.
229
230         * insetgraphics.[Ch]: make use of the new GraphicInset.
231
232 2003-06-03  John Levon  <levon@movementarian.org>
233
234         * inset.h:
235         * insetbibitem.[Ch]:
236         * insetbibtex.h:
237         * insetcite.h:
238         * insetcommand.[Ch]:
239         * insetenv.[Ch]:
240         * inseterror.h:
241         * insetert.[Ch]:
242         * insetexternal.[Ch]:
243         * insetfloat.[Ch]:
244         * insetfloatlist.h:
245         * insetfoot.[Ch]:
246         * insetgraphics.[Ch]:
247         * insethfill.h:
248         * insetinclude.[Ch]:
249         * insetindex.h:
250         * insetlabel.h:
251         * insetlatexaccent.[Ch]:
252         * insetmarginal.[Ch]:
253         * insetminipage.[Ch]:
254         * insetnewline.h:
255         * insetnote.[Ch]:
256         * insetoptarg.[Ch]:
257         * insetquotes.[Ch]:
258         * insetref.[Ch]:
259         * insetspace.[Ch]:
260         * insetspecialchar.[Ch]:
261         * insettabular.[Ch]:
262         * insettext.[Ch]:
263         * insetthereom.[Ch]:
264         * insettoc.h:
265         * inseturl.h:
266         * insetwrap.[Ch]: make clone() not take a Buffer * arg
267
268         * insetgraphics.[Ch]:
269         * insetgraphicsParams.[Ch]: always store an absolute
270         path at runtime
271
272 2003-06-02  André Pönitz  <poenitz@gmx.net>
273
274         * inseterror.C:
275         * insetgraphics.C:
276         * insetlatexaccent.C: remove duplicated call to metrics()
277
278 2003-06-02  John Levon  <levon@movementarian.org>
279
280         * insettabular.C: fix resize of column width
281
282 2003-06-02  John Levon  <levon@movementarian.org>
283
284         * Makefile.am:
285         * inset.h:
286         * insetparent.h:
287         * insetparent.C: remove insetparent
288
289 2003-06-02  André Pönitz  <poenitz@gmx.net>
290
291         * inset.[Ch]:
292         * insetbase.h:
293         * insetbibtex.[Ch]:
294         * insetbutton.[Ch]:
295         * insetcaption.C:
296         * insetcollapsable.[Ch]:
297         * inseterror.[Ch]:
298         * insetert.[Ch]:
299         * insetfootlike.C:
300         * insetgraphics.[Ch]:
301         * insetinclude.[Ch]:
302         * insetlatexaccent.[Ch]:
303         * insetminipage.[Ch]:
304         * insetnewline.[Ch]:
305         * insetquotes.[Ch]:
306         * insetspace.[Ch]:
307         * insetspecialchar.[Ch]:
308         * insettabular.[Ch]:
309         * insettext.[Ch]: unify first drawing phase
310
311         * inset.[Ch]:
312         * insetbase.h: move validate() to the base
313
314 2003-05-31  Angus Leeming  <leeming@lyx.org>
315
316         * Makefile.am: moved insetwrap.[Ch] into alphabetical order.
317
318 2003-05-30  André Pönitz  <poenitz@gmx.net>
319
320         * inset.h:
321         * insetbase.h:
322         * insetbutton.[Ch]:
323         * insetcaption.[Ch]:
324         * insetcollapsable.[Ch]:
325         * inseterror.[Ch]:
326         * insetert.[Ch]:
327         * insetgraphics.[Ch]:
328         * insetinclude.[Ch]:
329         * insetlatexaccent.[Ch]:
330         * insetnewline.[Ch]:
331         * insetquotes.[Ch]:
332         * insetspace.[Ch]:
333         * insetspecialchar.[Ch]:
334         * insettabular.[Ch]:
335         * insettext.[Ch]:
336         * updatableinset.[Ch]: unify second drawing phase
337
338 2003-05-30  John Levon  <levon@movementarian.org>
339
340         * insetgraphics.C: fix a bformat
341
342 2003-05-29  John Levon  <levon@movementarian.org>
343
344         * insettabular.C: remove unused bufferOwner()
345
346 2003-05-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
347
348         * insettext.C (lockInsetInInset): adjust
349         (getLabelList): use const_iterator, adjust
350         (getInsetFromID): use const_iterator, adjust
351         (addPreview): use const_iterator, adjust
352
353         * insetwrap.C (clone): remove const_cast
354
355         * insetnote.C (clone): remove const_cast
356
357         * insetminipage.C (clone): remove const_cast
358
359         * insetmarginal.C (clone): remove const_cast
360
361         * insetfoot.C (clone): remove const_cast
362
363         * insetfloat.C (clone): remove const_cast
364
365         * insetert.C (clone): remove const_cast
366
367         * delete commented same_id functions from a lot of files.
368
369 2003-05-28  John Levon  <levon@movementarian.org>
370
371         * insetcite.C:
372         * insetinclude.C:
373         * insetindex.C:
374         * insetparent.C:
375         * insettoc.C: fix dispatch of mouse release (bug 1143 and others)
376
377         * insetminipage.C: fix metrics (bug 1144)
378
379 2003-05-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
380
381         * insettext.C (saveLyXTextState): adjust
382         (restoreLyXTextState): adjust
383         (init): adjust
384         (lockInset): adjust
385         (unlockInsetInInset): adjust
386         (localDispatch): adjust
387         (getLyXText): adjust
388
389         * insettabular.C (insertAsciiString): adjust
390
391 2003-05-27  André Pönitz  <poenitz@gmx.net>
392
393         * insetbutton.C:
394         * insetcollapsable.C:
395         * inseterror.C:
396         * insetgraphics.C:
397         * insetlatexaccent.C:
398         * insetminipage.C:
399         * insetnewline.C:
400         * insetquotes.C:
401         * insetspace.C:
402         * insetspecialchar.C:
403         * insettabular.C:
404         * insettext.C: dim.w -> dim.wid
405
406 2003-05-26  John Levon  <levon@movementarian.org>
407
408         * insettabular.C: avoid drawing all of a long table
409         if it's not needed. A big speedup
410
411 2003-05-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
412
413         * remove same_id from function signatures, adjust
414
415 2003-05-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
416
417         * insettext.C (InsetText): adjust
418         (clear): adjust
419         (setParagraphData): separate same_id cases, adjust
420         (appendParagraphs): adjust
421         (appendParagraphs): adjust
422
423 2003-05-23  André Pönitz  <poenitz@gmx.net>
424
425         * insetbutton.h: whitespace
426
427         * insettabular.C: more compact code
428
429         * updatableinset.C: remove const_cast
430
431
432 2003-05-23  Angus Leeming  <leeming@lyx.org>
433
434         * insetexternal.C (write): check how many lines are output.
435         (latex): use the "PDFLaTeX" flavour if outputting to pfdlatex and
436         if the template has defined it.
437
438 2003-05-23  Angus Leeming  <leeming@lyx.org>
439
440         * insetquotes (validate): use the new LaTeXFeatures::useBabel() method.
441
442 2003-05-23  Angus Leeming  <leeming@lyx.org>
443
444         * insetfoot.C (latex):
445         * inseturl.C (latex): rename fragile as moving_arg.
446
447 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
448
449         * inseterror.C (localDispatch): comment out unused var.
450
451 2003-05-22  Angus Leeming  <leeming@lyx.org>
452
453         * inset*.[Ch] (latex): no longer has a free_spacing arg. Data is now
454         passed through the LatexRunParams arg.
455
456 2003-05-22  Angus Leeming  <leeming@lyx.org>
457
458         * inset*.[Ch] (latex): no longer has a fragile arg. Data is now passed
459         through the LatexRunParams arg.
460
461         * insetquotes.C (latex): accesses use_babel through the LatexRunParams
462         arg rather than through a global var.
463
464 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
465
466         * insetspecialchar.C (dimension): use a string.
467
468 2003-05-22  Angus Leeming  <leeming@lyx.org>
469
470         * insetbibtex.C (latex):
471         * insetgraphics.C (latex):
472         * insetinclude.C (latex): extract the buffer's 'nice'ness from
473         runparams rather than from the buffer itself.
474
475 2003-05-22  Angus Leeming  <leeming@lyx.org>
476
477         * inset*.[Ch] (latex):
478         passed a LatexRunParams parameter.
479
480         * insetgraphics.C (latex): actually use it ;-)
481
482 2003-05-22  Alfredo Braunstein  <abraunst@libero.it>
483
484         * insetfloat.C (addToToc): trivial compile fix
485
486 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
487
488         * insettext.[Ch] (paragraph): delete unused function
489
490         * insetfloat.C (addToToc): parlist simplfication
491
492 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
493
494         * insetspace.[Ch]: added (new space insets)
495         * Makefile.am:
496         * inset.h: handle new space insets
497
498 2003-05-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
499
500         * insetfloat.C (addToToc): adjust
501
502 2003-05-21  André Pönitz  <poenitz@gmx.net>
503
504         * insettext.[Ch]: fix drawing bug introduced earlier
505
506 2003-05-19  André Pönitz  <poenitz@gmx.net>
507
508         * insetspecialchar.C: fix bug introduced yesterday
509
510 2003-05-19  André Pönitz  <poenitz@gmx.net>
511
512         * inset.[Ch]:
513         * insetbutton.[Ch]:
514         * insetcollapsable.[Ch]:
515         * inseterror.[Ch]:
516         * insetert.[Ch]:
517         * insetfoot.[Ch]:
518         * insetgraphics.[Ch]:
519         * insetgraphicsParams.[Ch]:
520         * insetlatexaccent.[Ch]:
521         * insetminipage.[Ch]:
522         * insetnewline.[Ch]:
523         * insetquotes.[Ch]:
524         * insetspecialchar.[Ch]:
525         * insettabular.[Ch]:
526         * insettext.[Ch]: dimensions() instead of ascend/descend/width
527
528 2003-05-19  André Pönitz  <poenitz@gmx.net>
529
530         * insetenv.[Ch]:
531         * insettext.C: more insetenv
532
533 2003-05-16  André Pönitz  <poenitz@gmx.net>
534
535         * insetcommand.C:
536         * insetminimpage.[Ch]:
537         * insetcollapsable.[Ch]: fix #832
538
539 2003-05-16  André Pönitz  <poenitz@gmx.net>
540
541         * inset.[Ch]:
542         * insetbibitem.[Ch]:
543         * insetbibtex.[Ch]:
544         * insetbutton.[Ch]:
545         * insetcite.[Ch]:
546         * insetcollapsable.[Ch]:
547         * insetcommand.[Ch]:
548         * inseterror.[Ch]:
549         * insetert.[Ch]:
550         * insetexternal.[Ch]:
551         * insetfloatlist.[Ch]:
552         * insetgraphics.[Ch]:
553         * insetinclude.[Ch]:
554         * insetindex.[Ch]:
555         * insetlabel.[Ch]:
556         * insetlatexaccent.[Ch]:
557         * insetparent.[Ch]:
558         * insetref.[Ch]:
559         * insettabular.[Ch]:
560         * insettext.[Ch]:
561         * insettoc.[Ch]:
562         * inseturl.[Ch]:
563         * updatableinset.[Ch]: edit() -> LFUN_INSET_EDIT
564
565 2003-05-13  André Pönitz <poenitz@gmx.net>
566
567         * insetbibitem.C:
568         * insetcollapsable.C:
569         * insetert.C:
570         * insetfloat.C:
571         * insetinclude.C:
572         * insetwrap.C: tostr from own header
573
574         * insetcommand.C:
575         * insetexternal.C:
576         * insetfloat.C:
577         * insetfloat.h:
578         * insetgraphics.C:
579         * insetinclude.C:
580         * insetminipage.C:
581         * insetparent.C:
582         * insettabular.C:
583         * insettext.C:
584         * insetwrap.C: STRCONV
585
586
587 2003-05-12  André Pönitz <poenitz@gmx.net>
588
589         * insetcaption.C:
590         * insetexternal.C:
591         * insetfloat.C:
592         * insetfloatlist.C:
593         * insetgraphics.C:
594         * insetinclude.C:
595         * insetminipage.C:
596         * insetminipage.C:
597         * insettabular.C:
598         * insettext.C:
599         * insetwwrap.C:  boost::format -> bformat  all over the place
600
601 2003-05-05  André Pönitz <poenitz@gmx.net>
602
603         * insettext.h: add missing #include <map>
604
605 2003-05-07  Lars Gullik Bjønnes  <larsbj@gullik.net>
606
607         * insettext.C (InsetText): parlist cleanup
608         (clear): ditto
609         (edit): ditto
610         (insetUnlock): ditto
611         (lockInset): ditto
612         (lockInsetInInset): ditto
613         (cx): ditto
614         (cix): ditto
615         (getLyXText): ditto
616         (searchBackward): ditto
617         (collapseParagraphs): ditto
618
619 2003-05-06  John Levon  <levon@movementarian.org>
620
621         * insetcaption.C: don't cast wrap inset to InsetFloat
622
623         * insetfloat.h:
624         * insetfloat.C: remove unneeded type() function
625
626 2003-05-05  André Pönitz <poenitz@gmx.net>
627
628         * inset.h:
629         * insettext.[Ch]:
630         * insettabular.[Ch]:
631         * insetcollapsable.[Ch]: remove unused function firstParagraph()
632         replace getFirstParagraph() by getParagraphs()
633
634 2003-05-03  John Levon  <levon@movementarian.org>
635
636         * insetcollapsable.h:
637         * insetcollapsable.C:
638         * insettabular.h:
639         * insettabular.C:
640         * insettext.h:
641         * insettext.C:
642         * updatableinset.h:
643         * updatableinset.C: remove cursor_visible_, showInsetCursor(),
644         hideInsetCursor(), toggleInsetCursor(), isCursorVisible(). Add
645         getCursor(). Remove explicit cursor hides.
646
647 2003-05-02  André Pönitz <poenitz@gmx.net>
648
649         * insettext.C: remove unneeded &*
650
651 2003-04-30  John Levon  <levon@movementarian.org>
652
653         * insettabular.C: fix edit message
654
655 2003-04-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
656
657         * insettext.C (setFont): do not convert iterator -> pointer
658
659         * insettabular.C (localDispatch): do not convert iterator -> pointer
660         (setFont): ditto
661         (tabularFeatures): ditto
662
663 2003-04-29  André Pönitz <poenitz@gmx.net>
664
665         * inset.h: introduce "haveParagraph" from Lars' parlist-14-b.
666
667 2003-04-28  André Pönitz <poenitz@gmx.net>
668
669         * insettext.[Ch]: part of Lars' Paragraph * -> ParagraphList::iterator
670           Changes
671
672 2003-04-25 André Pönitz <poenitz@gmx.net>
673
674         * insetenv.C: derive from InsetText instead of InsetCollapsable
675
676 2003-04-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
677
678         * insetexternal.C (string2params): dont do anything if the string
679         is empty.
680         * insetgraphics.C (string2params): ditto
681         * insetcommand.C (string2params): ditto
682         * insetert.C (string2params): ditto
683         * insetfloat.C (string2params): ditto
684         * insetinclude.C (string2params): ditto
685         * insetminipage.C (string2params): ditto
686         * insettabular.C (string2params): ditto
687         * insetwrap.C (string2params): ditto
688
689 2003-04-24  André Pönitz <poenitz@gmx.net>
690
691         * insetref.C: support for eqref
692
693 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
694
695         * insetert.C (read): use ParagraphList::iterator.
696
697 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
698
699         * insetquotes.C (latex): comment some code and add warnings.
700
701 2003-04-14   Alfredo Braunstein  <abraunst@libero.it>
702
703         * insetexternal.C (localDispatch): added a missing DISPATCHED
704
705 2003-04-12  John Levon  <levon@movementarian.org>
706
707         * insetwrap.C (addToToc): fix a crash, conversion
708         from while to for loop forgot to remove the explicit
709         increment
710
711 2003-04-10  John Levon  <levon@movementarian.org>
712
713         * insettabular.C (tabularFeature): make sure
714         to update the dialog when we change something
715         (bug 1036).
716
717         (getStatus): don't disable some lfuns (bug 939)
718
719 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
720
721         * insettext.C (saveLyXTextState): adjust
722         (localDispatch): adjust
723         (setFont): adjust
724         (cx): adjust
725         (cix): adjust
726         (cpar): adjust
727
728         * insettabular.C (localDispatch): adjust
729         (setFont): adjust
730         (tabularFeatures): adjust
731
732 2003-04-05  Alfredo Braunstein  <abraunst@libero.it>
733
734         * insettabular.C (searchForward,searchBackward): fix bug 782
735
736 2003-04-07  John Levon  <levon@movementarian.org>
737
738         * insettabular.C:
739         * insettext.C: clear status message on inset exit
740
741 2003-04-03  John Levon  <levon@movementarian.org>
742
743         * insetcommand.C: return dispatched on DIALOG_UPDATE
744
745 2003-04-02  John Levon  <levon@movementarian.org>
746
747         * insettabular.C: tab lfuns renamed
748
749 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
750
751         * insettext.C (update): move towards ParagraphList
752         (updateLocal): ditto
753         (edit): ditto
754         (insetUnlock): ditto
755         (lockInset): ditto
756         (lockInsetInInset): ditto
757         (updateInsetInInset): ditto
758         (localDispatch): ditto
759         (docbook): ditto
760         (setFont): ditto
761         (resizeLyXText): ditto
762         (searchBackward): ditto
763         (collapseParagraphs): ditto
764         (addPreview): ditto
765
766         * insetwrap.C (InsetWrap): adjust
767         (addToToc): adjust and rewrite loop
768
769         * insettext.[Ch] (paragraph): delete function
770
771         * insettabular.C (moveNextCell): adjust
772         (movePrevCell): adjust
773         (insertAsciiString): adjust
774
775         * insetfloat.C (InsetFloat): adjust
776         (addToToc): adjust
777
778         * insetert.C (InsetERT): adjust
779         (write): adjust, and rewrite loop
780         (latex): adjust, and rewrite loop
781         (linuxdoc): adjust, and rewrite loop
782         (docbook): adjust, and rewrite loop
783         (localDispatch): adjust
784         (get_new_label): adjust
785
786 2003-04-01  John Levon  <levon@movementarian.org>
787
788         From Alfredo Braunstein
789
790         * insetbutton.h:
791         * insetbutton.C: add localDispatch()
792
793         * insetcommand.C: return DISPATCHED when edit() called
794
795         * insettext.C: fix bug 967
796
797 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
798
799         * insettext.C: adjust
800
801 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
802
803         * insettext.C (draw): adjust
804         (crow): return a RowList::iterator not a Row*
805
806         * insetminipage.C (localDispatch): adjust
807
808         * insetert.C (localDispatch): adjust
809
810 2003-03-31  John Levon  <levon@movementarian.org>
811
812         * insetgraphics.C:
813         * insetgraphicsParams.C: use_gui moved to lyx_gui
814
815 2003-03-31  John Levon  <levon@movementarian.org>
816
817         * insettext.C: Alert fix
818
819 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
820
821         * insettext.C (ascent): adjust for RowList
822         (descent): ditto
823         (draw): ditto
824         (getLyXText): adjust
825         (toggleSelection): adjust
826
827         * insetminipage.C (localDispatch): adjust for RowList
828
829         * insetert.C (localDispatch): adjust for RowList
830         (getMaxWidth): adjust for RowList
831
832 2003-03-29  John Levon  <levon@movementarian.org>
833
834         * insetert.C: Alert cleanup
835
836 2003-03-29  John Levon  <levon@movementarian.org>
837
838         * insettabular.C: Alert fix
839
840 2003-03-28  John Levon  <levon@movementarian.org>
841
842         * insetfloat.C: reset label on INSET_MODIFY
843
844 2003-03-28  John Levon  <levon@movementarian.org>
845
846         * insetgraphicsParams.C: read subcaptionText as a whole line
847         (bug 656)
848
849 2003-03-28  John Levon  <levon@movementarian.org>
850
851         * insettext.C: remove unused prototypes
852
853 2003-03-25  Angus Leeming  <leeming@lyx.org>
854
855         * insetbibitem.C (localDispatch): repaint the view after modifying
856         a bibitem inset in case the maximum InsetBibitem width has changed.
857
858 2003-03-25  John Levon  <levon@movementarian.org>
859
860         * insettext.C:
861         * insettabular.C: LyXText renamings
862
863 2003-03-24  John Levon  <levon@movementarian.org>
864
865         * insettext.C: remove some dead code. Fix bug 972 and
866           related by posting a repaint in updateLocal(), and making
867           the SEL functions set SELECTION.
868
869 2003-03-22  John Levon  <levon@movementarian.org>
870
871         * inset.h:
872         * inset.C: remove no-longer-needed topx_set
873
874         * insetcollapsable.h:
875         * insetcollapsable.C: remove dead code
876
877         * insetminipage.C:
878         * insetert.C: rebreak the rows when a possible
879           change in size is made, and reset the cursor
880           (bug 962, bug 965)
881
882         * insettabular.C: remove topx_set, CHANGED_IN_DRAW
883
884         * insettext.C: remove CHANGED_IN_DRAW noticing/handling,
885           topx_set. Fix drawing errors for clearInset(). Remove
886           some unnecessary uses of topx, which should die.
887
888         * updatableinset.C: fix getMaxWidth() so CHANGED_IN_DRAW
889           is no longer needed. Replace it with an ugly hack.
890
891 2003-03-20  John Levon  <levon@movementarian.org>
892
893         * inset.h:
894         * insetcollapsable.h:
895         * insetcollapsable.C:
896         * insetert.h:
897         * insetert.C:
898         * insetminipage.C:
899         * insetminipage.C:
900         * insettabular.h:
901         * insettabular.C:
902         * insettext.h:
903         * insettext.C: remove spurious font parameter
904         from update(). Fix drawing of ERT insets inside
905         insets (bug 966). Remove unused mark_dirty from
906         tabular's updateLocal()
907
908 2003-03-19  John Levon  <levon@movementarian.org>
909
910         * insetfloat.h:
911         * insetfloat.C:
912         * insetinclude.h:
913         * insetinclude.C:
914         * insetminipage.h:
915         * insetminipage.C:
916         * insetwrap.h:
917         * insetwrap.C: remove unused getter/setters
918
919 2003-03-19  John Levon  <levon@movementarian.org>
920
921         * several files: bv->updateInset() doesn't take
922         a bool mark_dirty any more
923
924 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
925
926         * adjust for BufferView* arg removal from lyxtext.
927
928 2003-03-17  John Levon  <levon@movementarian.org>
929
930         * most files: remove the "cleared" parameter
931         to draw in favour of always clearing. Associated
932         code removal.
933
934 2003-03-16  John Levon  <levon@movementarian.org>
935
936         * insettext.C: remove unused s.refresh
937
938 2003-03-13  Angus Leeming  <leeming@lyx.org>
939
940         * insettext.C (edit): replace Dialogs::updateParagraph with
941         BufferView::dispatch(LFUN_PARAGRAPH_UPDATE).
942
943 2003-03-13  André Pönitz <poenitz@gmx.net>
944
945         * Makefile.am: insert insetenv
946
947         * insethenv.[Ch]: new files, currently inactive
948
949 2003-03-12  John Levon  <levon@movementarian.org>
950
951         * Makefile.am:
952         * inset.h:
953         * inset.C:
954         * insetert.h:
955         * insetert.C:
956         * insetnewline.h:
957         * insetnewline.C:
958         * insetquotes.C:
959         * insettext.C: use new insetnewline
960
961 2003-03-12  John Levon  <levon@movementarian.org>
962
963         * insettext.C: readToken became readParagraph
964
965 2003-03-12  John Levon  <levon@movementarian.org>
966
967         * insettext.C: use parlist iterator for reading contents
968
969 2003-03-12  John Levon  <levon@movementarian.org>
970
971         * insettext.C: name change to readToken()
972
973 2003-03-11  André Pönitz <poenitz@gmx.net>
974
975         * Makefile.am: insert insethfill
976
977         * insethfill.[Ch]: new files
978
979 2003-03-10  Angus Leeming  <leeming@lyx.org>
980
981         * mailinset.[Ch] (showDialog, updateDialog): now take a mandatory
982         BufferView * arg.
983         (hideDialog): calls the new static Dialogs::hide() method.
984
985         * insetbibitem.C (edit):
986         * insetbibtex.C (edit):
987         * insetcite.C (edit):
988         * insetcommand.C (localDispatch):
989         * inseterror.C (d-tor):
990         * insetert.C (showInsetDialog):
991         * insetexternal.C (localDispatch, edit):
992         * insetfloat.C (localDispatch, showInsetDialog):
993         * insetfloatlist.C (edit):
994         * insetgraphics.C (localDispatch, edit):
995         * insetinclude.C (localDispatch, edit):
996         * insetindex.C (edit):
997         * insetlabel.C (edit):
998         * insetminipage.C (localDispatch, showInsetDialog):
999         * insetref.C (edit):
1000         * insettabular.C (unlockInsetInInset, lfunMouseRelease, localDispatch,
1001         resetPos, showInsetDialog, openLayoutDialog):
1002         * insettoc.C (edit):
1003         * inseturl.C (edit):
1004         * insetwrap.C (localDispatch, showInsetDialog):
1005         changes due to the changed MailInset interface.
1006
1007 2003-03-10  Dekel Tsur  <dekelts@tau.ac.il>
1008
1009         * insetfloat.h: Set default placement to an empty string.
1010
1011 2003-03-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1012
1013         * insettext.C (latex): adjust call to latexParagraphs.
1014
1015 2003-03-10  Angus Leeming  <leeming@lyx.org>
1016
1017         * mailinset.C: warn the user if the BufferView has not been cached.
1018
1019 2003-03-10  Angus Leeming  <leeming@lyx.org>
1020
1021         * inset.h, insetbase.h: move cache() and view() into InsetBase.
1022
1023         * insetcommand.h (inset):
1024         * insetert.h (inset):
1025         * insetexternal.h (inset):
1026         * insetfloat.h (inset):
1027         * insetgraphics.h (inset):
1028         * insetinclude.h (inset):
1029         * insetminipage.h (inset):
1030         * insettabular.h (inset):
1031         * insetwrap.h (inset):
1032         * mailinset.h (inset): return an InsetBase &, not an Inset &.
1033
1034 2003-03-10  Angus Leeming  <leeming@lyx.org>
1035
1036         * insetcommand.C (string2params):
1037         * insetexternal.C (string2params):
1038         * insetfloat.C (string2params):
1039         * insetgraphics.C (string2params):
1040         * insetinclude.C (string2params):
1041         * insetminipage.C (string2params):
1042         * insettabular.C (string2params):
1043         * insetwrap.C (string2params): cure warning message about missing
1044         '\end_inset'.
1045
1046 2003-03-09  Angus Leeming  <leeming@lyx.org>
1047
1048         * insettabular.[Ch]: define a new class InsetTabularMailer and use
1049         it to communicate with the frontend dialogs.
1050
1051         * mailinset.C (hideDialog): only hide the dialog if it is showing the
1052         contents of this inset!
1053
1054 2003-03-07  Angus Leeming  <leeming@lyx.org>
1055
1056         * inseterror.C (localDispatch): new method; calls edit() on
1057         LFUN_MOUSE_RELEASE.
1058
1059 2003-03-07  Angus Leeming  <leeming@lyx.org>
1060
1061         * insetbibitem.C (localDispatch):
1062         * insetbibtex.C (localDispatch):
1063         * insetlabel.C (localDispatch):
1064         rewrite as a switch.
1065
1066 2003-03-07  Angus Leeming  <leeming@lyx.org>
1067
1068         * insetgraphics.[Ch]: define a new class InsetGraphicsMailer and use
1069         it to communicate with the frontend dialogs.
1070
1071 2003-03-07  Angus Leeming  <leeming@lyx.org>
1072
1073         * insetexternal.C: remove operator== and operator!= for
1074         InsetExternal::Params. They were used only by the old controller
1075         scheme.
1076
1077 2003-03-07  Angus Leeming  <leeming@lyx.org>
1078
1079         * insetcommand.C (localDispatch):
1080         * insetexternal.C (localDispatch):
1081         * insetfloat.C (localDispatch):
1082         * insetinclude.C (localDispatch):
1083         * insetminipage.C (localDispatch):
1084         * insetwrap.C (localDispatch):
1085         add LFUN_INSET_DIALOG_UPDATE to the switch.
1086
1087 2003-03-07  Angus Leeming  <leeming@lyx.org>
1088
1089         * insetcommand.C (string2params):
1090         * insetexternal.C (string2params):
1091         * insetfloat.C (string2params):
1092         * insetinclude.C (string2params):
1093         * insetwrap.C (string2params): use LyXLeX more.
1094
1095         * insetert.[Ch]:
1096         * insetexternal.[Ch]:
1097         * insetfloat.[Ch]:
1098         * insetinclude.[Ch]:
1099         * insetwrap.[Ch]: change Mailer::name_ to be static.
1100
1101         * insetminipage.[Ch]: define a new class InsetMinipageMailer and use
1102         it to communicate with the frontend dialogs.
1103
1104 2003-03-06  Alfredo Braunstein  <abraunst@libero.it>
1105
1106         * insettext.C:
1107         * insettabular.C: use LyXText::top_y() instead of LyXText::first_y
1108
1109 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
1110
1111         * insettext.C (updateLocal): un-const function
1112         (updateLocal): adjust
1113         (collapseParagraphs): un-const function
1114         (collapseParagraphs): adjust
1115
1116 2003-03-05  Angus Leeming  <leeming@lyx.org>
1117
1118         * insetwrap.[Ch]: define a new class InsetWrapMailer and use
1119         it to communicate with the frontend dialogs.
1120
1121 2003-03-05  Angus Leeming  <leeming@lyx.org>
1122
1123         * insetcollapsable.C (draw): cache the BufferView.
1124
1125         * insetfloat.[Ch]: define a new class InsetFloatMailer and use
1126         it to communicate with the frontend dialogs.
1127
1128 2003-03-05  Angus Leeming  <leeming@lyx.org>
1129
1130         * insetfloat.[Ch]: move the params into a separate InsetFloatParams
1131         struct.
1132
1133 2003-03-05  Angus Leeming  <leeming@lyx.org>
1134
1135         * insetcommandparams.[Ch] (getAsString, setFromString): remove.
1136
1137         * insetinclude.[Ch]: define a new class InsetIncludeMailer and use
1138         it to communicate with the frontend dialogs.
1139
1140 2003-03-05  Angus Leeming  <leeming@lyx.org>
1141
1142         * insetexternal.[Ch]: define a new class InsetExternalMailer and use
1143         it to communicate with the frontend dialogs.
1144
1145 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
1146
1147         * insettext.C (collapseParagraphs): adjust
1148         (appendParagraphs): make it take a Buffer* instead of a
1149         BufferParams& as arg.
1150         (appendParagraphs): adjust
1151
1152 2003-03-04  Angus Leeming  <leeming@lyx.org>
1153
1154         * insetbibitem.C (localDispatch):
1155         * insetbibtex.C (localDispatch):
1156         * insetcommand.C (localDispatch):
1157         * insetert.C (localDispatch):
1158         * insetlabel.C (localDispatch):
1159         handle LFUN_INSET_MODIFY, not LFUN_INSET_APPLY.
1160
1161 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
1162
1163         * insettext.C (latex): adjust for ParagraphList::iterator
1164
1165 2003-03-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
1166
1167         * insetbutton.C (view): adjust for boost 1.30.0
1168         * insetcollapsable.C (view): ditto
1169         * insetgraphics.C (statusChanged): ditto
1170
1171         * insettext.h: move paragraphs to be public.
1172
1173 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
1174
1175         * insetnote.[Ch] (InsetNote): remove unused constructor
1176
1177 2003-02-28  Alfredo Braunstein  <abraunst@libero.it>
1178
1179         * insetgraphics.C: added include "format.h"
1180
1181 2003-02-27  Angus Leeming  <leeming@lyx.org>
1182
1183         * indexlabel.C: use a real, LyX dialog rather than that nasty Alert
1184         thingy.
1185
1186 2003-02-27  Angus Leeming  <leeming@lyx.org>
1187
1188         * insetbibitem.C (localDispatch):
1189         * insetbibtex.C (localDispatch):
1190         * insetcommand.C:
1191         * insetert:
1192         collapse LFUN_XYZ_APPLY to LFUN_INSET_APPLY.
1193
1194 2003-02-26  Angus Leeming  <leeming@lyx.org>
1195
1196         * insetbibitem.[Ch] (localDispatch):
1197         * insetbibtex.[Ch] (localDispatch):
1198         new method. Modify inset on receipt of LFUN_XYZ_APPLY.
1199
1200         * insetcommand.C (localDispatch):
1201         act only on receipt of LFUN_XYZ_APPLY.
1202
1203         * insetert.C (localDispatch): reformat.
1204         add LFUN_XYZ_APPLY to the switch.
1205
1206 2003-02-26  John Levon  <levon@movementarian.org>
1207
1208         * insettext.C: use RowPainter
1209
1210         * inset.h: make helpers take const *
1211
1212 2003-02-26  Angus Leeming  <leeming@lyx.org>
1213
1214         * insetcommand.[Ch] (localDispatch): new method.
1215
1216 2003-02-26  Angus Leeming  <leeming@lyx.org>
1217
1218         * insetinclude.C (draw): cache the BufferView* using cache not
1219         PreviewImpl::setView
1220
1221 2003-02-26  Alfredo Braunstein <abraunst@libero.it>
1222
1223         * insetgraphics.C (draw)
1224         * insetinclude.C (draw): Eliminate also the other argument (owner
1225         inset inset) in the call to PreviewImage::image
1226
1227 2003-02-25  Alfredo Braunstein <abraunst@libero.it>
1228
1229         * insetgraphics.C (draw)
1230         * insetinclude.C (draw): Eliminate Buferview argument in call to
1231         PreviewImage::image
1232
1233 2003-02-25  John Levon  <levon@movementarian.org>
1234
1235         * insetgraphicsParams.h:
1236         * insetgraphics.C: don't start a load process if
1237           the inset is set to NoDisplay (bug #920)
1238
1239 2003-02-22  John Levon  <levon@movementarian.org>
1240
1241         * insetfloat.C:
1242         * insetwrap.C: TocItem changed API (bug 913)
1243
1244 2003-02-21  Angus Leeming  <leeming@lyx.org>
1245
1246         * insetcollapsable.[Ch] (cache, edit):
1247         * insetbutton.[Ch] (cache, edit): new methods to cache the
1248         BufferView in the draw method.
1249
1250         * insetcommand.[Ch]: implement a new class, InsetCommandMailer, to
1251         simplify comunication between InsetCommand-derived classes and
1252         the Dialogs.
1253
1254         * insetbibitem.[Ch]:
1255         * insetbibtex.[Ch]:
1256         * insetcite.[Ch]:
1257         * inseterror.[Ch]:
1258         * insetfloatlist.[Ch]:
1259         * insetindex.[Ch]:
1260         * insetref.[Ch]:
1261         * insettoc.[Ch]:
1262         * inseturl.[Ch]: small changes to reflect the new interface to the
1263         Dialogs code.
1264
1265         * mailinset.[Ch]: new files. Base class to InsetCommandMailer and
1266         other, similar classes.
1267
1268         * Makefile.am: add new files.
1269
1270 2003-02-21  Angus Leeming  <leeming@lyx.org>
1271
1272         * updatableinset.h (setView, view): remove.
1273         * inset.h (view, cache): to be replaced by these.
1274
1275         * insetbib.[Ch]: removed, to be replaced by insetbibitem.[Ch] and
1276         insetbibtex.[Ch]:
1277
1278         * Makefile.am: replace insetbib.[Ch] with insetbibitem.[Ch] and
1279         insetbibtex.[Ch].
1280
1281         * inset.h: change BIBKEY_CODE to BIBITEM_CODE.
1282
1283 2003-02-21  Allan Rae  <rae@lyx.org>
1284
1285         * insetinclude.C (loadIfNeeded): ensure loading also works when
1286         child document is under version control.
1287
1288 2003-02-17  André Pönitz <poenitz@gmx.net>
1289
1290         * insetbib.[Ch]: Adjust access to bibkeys
1291
1292 2003-02-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1293
1294         * insetquotes.C (dispString): remove use of acute accent for "'"
1295         right quote.
1296
1297 2003-02-14  John Levon  <levon@movementarian.org>
1298
1299         * insettabular.C: changed method names in tabular.C
1300
1301 2003-02-14  John Levon  <levon@movementarian.org>
1302
1303         * inset.h:
1304         * inset.C:
1305         * insetcollapsable.h:
1306         * insetcollapsable.C:
1307         * insettabular.h:
1308         * insettabular.C:
1309         * insettext.h:
1310         * insettext.C: remove unused getParFromID()
1311
1312 2003-02-13  John Levon  <levon@movementarian.org>
1313
1314         * insettext.h:
1315         * insettext.C: remove unused beginningofMainBody()
1316
1317 2003-02-08  John Levon  <levon@movementarian.org>
1318
1319         * inset.h:
1320         * inset.C:
1321         * insetcollapsable.h:
1322         * insetcollapsable.C:
1323         * insettabular.h:
1324         * insettabular.C:
1325         * insettext.h:
1326         * insettext.C:
1327           add nextChange(). Make allowSpellcheck() const. Add markErased().
1328
1329         * insetert.C: ignore deleted text
1330
1331         * insettabular.C: make sure to keep change  tracking working
1332           properly.
1333
1334 2003-01-20  Michael Schmitt <michael.schmitt@teststep.org>
1335
1336         * insetert.C:
1337         * insetgraphics.C:
1338         * insettabular.C:
1339         * insettext.C: Use error messages with identical spelling and punctuation
1340
1341 2003-01-12  Michael Schmitt <michael.schmitt@teststep.org>
1342
1343         * insetgraphics.C (draw, width): Fix spacing around graphics inset
1344
1345 2002-12-17  Juergen Vigna  <jug@lyx.org>
1346
1347         * insettext.C (localDispatch): hopefully fixed cursor up down
1348         movement on leaving other insets.
1349
1350 2003-01-06  Michael Schmitt <Michael.Schmitt@teststep.org>
1351
1352         * insettext.C: fix inconsistent usage of spaces, colons, capitalization,
1353         and the like.
1354
1355 2002-12-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1356
1357         * insetgraphics.C (prepareFile): do not remove the extension of
1358         the file name if it is not the default extension for the given
1359         format (that is, in latex output, remove extension from foo.eps,
1360         but not from foo.epsi)
1361
1362 2002-12-17  Alfredo Braunstein <abraunst@libero.it>
1363
1364         * insettext.C (lfunMouseRelease): hackish solution to the "double
1365         menu open" bug
1366
1367 2002-12-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
1368
1369         * insetfloat.C (addToToc): use the floats name not its type
1370         * insetwrap.C (addToToc): ditto
1371
1372 2002-12-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1373
1374         * insetnote.C (init): make label font smaller
1375
1376 2002-12-04  John Levon  <levon@movementarian.org>
1377
1378         * insetinclude.C: ressurect setting of command name
1379
1380 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
1381
1382         * insetquotes.C (dispString): disambiguate insert call
1383
1384 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1385
1386         * several files: ws changes
1387
1388 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1389
1390         * insetquotes.C (dispString): use string::insert for prepending a
1391         char.
1392
1393 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1394
1395         * insetparent.C (getScreenLabel): use boost::format
1396
1397         * insetgraphics.C (prepareFile): use boost::format
1398         (ascii): ditto
1399
1400         * insetfloatlist.C (latex): use boost::format
1401
1402         * insetcaption.C (draw): use boost::format
1403
1404 2002-11-21  Dekel Tsur  <dekelts@tau.ac.il>
1405
1406         * insettabular.C (tabularFeatures): Support for block alignment in fixed width
1407         columns.
1408
1409 2002-11-20  Juergen Vigna  <jug@sad.it>
1410
1411         * insettabular.C (resetPos): temporary fix for endless loop in
1412         this function on a redraw.
1413
1414 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
1415
1416         * insettabular.C (copySelection): STRCONV
1417
1418         * insetinclude.C (uniqueID): STRCONV
1419         (latexString): ditto
1420
1421         * insetgraphics.C: put VersionNumber inside anon namespace
1422         (createLatexOptions): STRCONV
1423
1424         * insetcommandparams.C: include config.h
1425
1426 2002-10-31  Rob Lahaye  <lahaye@snu.ac.kr>
1427
1428         * insetgraphicsParams.C (Write): use lyx::float_equal.
1429         Write height data correctly.
1430         (Read): zero scale when reading height data.
1431
1432 2002-10-30  John Levon  <levon@movementarian.org>
1433
1434         * insetfloat.C (addToTOC): recursively traverse all
1435           contents looking for captions (fix #568)
1436
1437 2002-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1438
1439         * insetexternal.C (doSubstitution): do not try to replace
1440         environment variables, this is done when executing the command
1441
1442 2002-10-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1443
1444         * insetexternal.C (doSubstitution): change order of substitution
1445         to work around ReplaceEnvironmentPath brokenness
1446
1447 2002-10-24  Rob Lahaye  <lahaye@snu.ac.kr>
1448
1449         * insetgraphicsParams.h (scale): is now a float, not an unsigned int.
1450
1451         * insetgraphicsParams.C (init, Write): associated changes
1452         * insetgraphics.C (createLatexOptions): use lyx::float_equal with
1453         InsetGraphicsParams::scale.
1454
1455 2002-10-21  John Levon  <levon@movementarian.org>
1456
1457         * inset.h: remove unused DISPATCH_RESULT
1458
1459         * insettext.C: sgml open/close tag now in sgml namespace
1460
1461 2002-10-21  Angus Leeming  <leeming@lyx.org>
1462
1463         * insetgraphics.C (draw): Fix the drawing of an inset with a relative
1464         file path subdir/fig.eps when pasting it into a buffer in a different
1465         directory.
1466
1467 2002-10-16  John Levon  <levon@movementarian.org>
1468
1469         * insetspecialchar.C: remove \\protected_separator parsing
1470
1471 2002-09-25  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1472
1473         * insetquote.C: fix LaTeX output of quotation marks.
1474
1475 2002-10-14  Juergen Vigna  <jug@sad.it>
1476
1477         * insettext.C (localDispatch): remove double setUndo in Cut/Delete/
1478         Backspace functions which confused the Undo handling.
1479
1480 2002-10-09  Angus Leeming  <leeming@lyx.org>
1481
1482         * insetcite.[Ch] (setLoadingBuffer): new method, invoked by
1483         BufferView::dispatch that turns off this optimisation when a new inset
1484         is inserted.
1485
1486         * insetcite.C (getNatbibLabel): correct logic of when and when not to
1487         reload the BibTeX keys.
1488
1489 2002-10-11  André Pönitz <poenitz@gmx.net>
1490
1491         * insettext.h: handle LFUN_PRIOR/NEXT
1492
1493 2002-07-30  Juergen Spitzmueller <j.spitzmueller@gmx.de>
1494
1495         * insetfloat.C: fix bug with float settings
1496         (document default != float default).
1497
1498 2002-09-24  Dekel Tsur  <dekelts@tau.ac.il>
1499
1500         * insetwrap.C (addToToc): New method.
1501         (InsetWrap): Set layout to caption.
1502
1503 2002-09-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
1504
1505         * Makefile.am (INCLUDES): loose SIGC_INCLUDES
1506
1507 2002-09-16  John Levon  <levon@movementarian.org>
1508
1509         * insettabular.h: hasSelection() needs to be public
1510
1511 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
1512
1513         * insetgraphicsParams.C: use empty string as default for rotateOrigin
1514
1515 2002-09-10  Rob Lahaye  <lahaye@snu.ac.kr>
1516
1517         * insetgraphicsParams.C: use empty string as default for rotateOrigin
1518
1519 2002-09-11  André Pönitz <poenitz@gmx.net>
1520
1521         * insettabular.C: implement LFUN_WORDSEL
1522
1523 2002-09-10  John Levon  <levon@movementarian.org>
1524
1525         * insetinclude.h: remove unused param
1526
1527 2002-09-09  John Levon  <levon@movementarian.org>
1528
1529         * insetinclude.h:
1530         * insetinclude.C: remove noload, default to input
1531
1532 2002-09-29  Martin Vermeer  <martin.vermeer@hut.fi>
1533
1534         * insetgraphics.C: disfuscated use of ']' in built output string.
1535
1536 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
1537
1538         * remove all INHERIT_LANG and INHERIT_LANGUAGE commented code.
1539
1540 2002-08-29  Juergen Vigna  <jug@sad.it>
1541
1542         * insettabular.C (lfunMousePress): Pay attention where you set
1543         the x/y values as they depend on which inset in the tabular is
1544         actually locked. So you surely have to reset them if you (un)lock
1545         a inset!
1546
1547 2002-08-29  André Pönitz <poenitz@gmx.net>
1548
1549         * insetfootlike.h: rename include guard to ALL CAPS
1550
1551         * insettext.C: swap object and first parameter for checkInsetHit calls
1552           as this functions has moved from BufferView to LyXText
1553
1554
1555 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
1556
1557         * insetgraphicsParams.C: remove local displayTranslator and use
1558         the one from graphics/GraphicsTypes.h.
1559
1560 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1561
1562         * insetfloat.C (wide): add BufferParams parameter
1563
1564         * insetfloatlist.C (read):
1565         (latex):
1566         (getScreenLabel):
1567         * insetfloat.C (latex):
1568         (floatname):
1569         * insetcaption.C (draw): use LyXTextClass::floats()
1570
1571 2002-08-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1572
1573         * insetoptarg.h: add std:: qualifier.
1574
1575 2002-08-26  Juergen Vigna  <jug@sad.it>
1576
1577         * insettext.C (localDispatch): ditto.
1578
1579         * insettabular.C (localDispatch): fixed mouse pressing lfuns.
1580
1581 2002-08-25  John Levon  <levon@movementarian.org>
1582
1583         * inseturl.C: elide long URLs (bug 404)
1584
1585 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
1586
1587         * insetgraphics.[Ch]: remove InsetGraphics::readFigInset()
1588         remove "Format Version <version_no.>" string from inset header
1589
1590         * insetgraphics.C:
1591         * insetgraphicsParams.[Ch]: Implement new graphics dialog
1592
1593         * insetgraphicsParams.C: keepLyXAspectRatio, width and height are not
1594         a member of "grfx::Params" anymore.
1595
1596         * insetminipage.C: apply changes to "enum UNIT" in src/lyxlength.h
1597
1598 2002-08-24  John Levon  <levon@movementarian.org>
1599
1600         * insetoptarg.h:
1601         * insetoptarg.C: ws, pedantry ...
1602
1603 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1604
1605         * insettext.C (collapseParagraphs): pasteParagraph now in global
1606         scope
1607         (appendParagraphs): ditto
1608
1609 2002-08-21  Dekel Tsur  <dekelts@tau.ac.il>
1610
1611         * insetcite.C (latex): Remove spaces only after commmas.
1612
1613 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
1614
1615         * insettext.C: remove NO_COMPABILITY stuff
1616
1617 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
1618
1619         * insettext.C (edit): use ParagraphList iterators
1620
1621         * insetbib.C (bibitemMaxWidth): use ParagraphList iterators
1622         (bibitemWidest): ditto
1623
1624 2002-08-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
1625
1626         * insettext.C: include <boost/bind.hpp>
1627         add using std::for_each
1628         (saveLyXTextState): use ParagraphsList::iterator
1629         (init): use for_each on paragraphlist iterators
1630         (InsetText): remove superflous setting cached_bview to 0
1631         (latex): reformat a bit
1632         (ascii): use paragraphlist iterators
1633         (validate): use for_each + boost bind
1634         (getLabelList): use paragraphlist iterators
1635         (deleteLyXText): use for_each + boost::bind
1636         (resizeLyXText): ditto
1637         (reinitLyXText): ditto
1638         (removeNewlines): use paragraphlist iterators
1639         (getParFromID): ditto
1640         (paragraph): use for_each + boost::bind
1641         (getInsetFromID): use paragraphlist iterators
1642         (getLabelList): typo fix
1643
1644 2002-08-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
1645
1646         * insettext.C (read): assign tmp to paragraphs after return from
1647         call to parseSingleLyXformat2Token
1648
1649
1650 2002-08-13  Angus Leeming  <leeming@lyx.org>
1651
1652         * insetbib.C:
1653         * insetcite.C:
1654         * inseterror.C:
1655         * insetert.C:
1656         * insetexternal.C:
1657         * insetfloat.C:
1658         * insetfloatlist.C:
1659         * insetgraphics.C:
1660         * insetinclude.C:
1661         * insetindex.C:
1662         * insetminipage.C:
1663         * insetparent.C:
1664         * insetref.C:
1665         * insettabular.C:
1666         * insettext.C:
1667         * insettoc.C:
1668         * inseturl.C:
1669         changes due to the changed LyXView interface that now returns references
1670         to member variables not pointers.
1671
1672 2002-08-13  Angus Leeming  <leeming@lyx.org>
1673
1674         * inset.h:
1675         * insetcollapsable.h:
1676         * insetert.h:
1677         * insettabular.h:
1678         * insettext.h: forward-declare WordLangTuple
1679         (selectNextWordToSpellcheck) constify return type.
1680
1681         * inset.C:
1682         * insetcollapsable.C:
1683         * insetert.C:
1684         * insettabular.C:
1685         * insettext.C: #include "WordLangTuple.h" and rearrange included files.
1686
1687 2002-08-12  Angus Leeming  <leeming@lyx.org>
1688
1689         * insetgraphicsParams.C: fix reading of lyxsize_type in 1.2.0 documents.
1690
1691 2002-08-12  Juergen Vigna  <jug@sad.it>
1692
1693         * insetcollapsable.C (edit): ignore if entered when pressing mouse
1694         button 3.
1695
1696 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
1697
1698         * insetbib.C (bibitemMaxWidth): ParagraphList changes
1699         (bibitemWidest): ditto
1700         * insettext.[Ch]: ditto
1701
1702 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
1703
1704         * insettext.C, insetert.C: use Paragraph::empty where appropriate
1705
1706 2002-08-09  Angus Leeming  <leeming@lyx.org>
1707
1708         * insetinclude.C (latexString): remove fudge now that I've found out
1709         how to enable LaTeX to find the file using input@path.
1710
1711 2002-08-09  John Levon  <levon@movementarian.org>
1712
1713         * insettext.h:
1714         * insettext.C: remove unused xpos
1715
1716 2002-08-07  Juergen Vigna  <jug@lyx.org>
1717
1718         * insettabular.C (localDispatch): make delete not put the stuff
1719         in the clipboard only do this on a cut operation.
1720
1721         * insettext.C (localDispatch): make delete and backspace not put
1722         selected stuff to the clipboard.
1723
1724 2002-08-07  André Pönitz <poenitz@gmx.net>
1725
1726         * inset.[Ch]:
1727         * insetcollapsable.[Ch]:
1728         * insetert.[Ch]:
1729         * insetparent.[Ch]:
1730         * insetref.[Ch]:
1731         * insettabular.[Ch]:
1732         * insettext.[Ch]:  change (kb_action, arg) pair into a FuncRequest
1733
1734 2002-08-06  John Levon  <levon@movementarian.org>
1735
1736         * inset.h:
1737         * inset.C:
1738         * insetcollapsable.h:
1739         * insetcollapsable.C:
1740         * insetert.h:
1741         * insetert.C:
1742         * insettabular.h:
1743         * insettabular.C:
1744         * insettext.h:
1745         * insettext.C: use WordLangTuple for spellcheck
1746
1747 2002-08-06  Angus Leeming  <leeming@lyx.org>
1748
1749         * insetinclude.C: add a monitor to the previewed image, so that the
1750         image is refreshed if the \input-ed file changes.
1751
1752 2002-08-04  John Levon  <levon@movementarian.org>
1753
1754         * inset.h:
1755         * insetnote.h: s/IGNORE_CODE/NOTE_CODE/
1756
1757 2002-08-02  Angus Leeming  <leeming@lyx.org>
1758
1759         * insetcommandparams.[Ch] (preview): new methods returning and setting
1760         a new bool preview_ flag.
1761         (read): read this flag.
1762         (operator==): add flag to check.
1763
1764         * insetinclude.C (write): output new preview() flag.
1765         (previewWanted): use this flag.
1766
1767 2002-08-02  Angus Leeming  <leeming@lyx.org>
1768
1769         * insetcollapsable.[Ch] (addPreview):
1770         * insettabular.[Ch] (addPreview):
1771         * insettext.[Ch] (addPreview): new methods. Can now generate previews
1772         for insets in insets.
1773
1774 2002-08-02  Angus Leeming  <leeming@lyx.org>
1775
1776         * insetcite.C: fix typo.
1777
1778         * insetgraphics.C: kill current_view and instead cache the BufferView
1779         as a weak_ptr.
1780
1781         * insetinclude.C: kill current_view and pass the BufferView to the
1782         PreviewedInset so that it can cache it.
1783
1784 2002-08-01  Angus Leeming  <leeming@lyx.org>
1785
1786         * inset.h (generatePreview): renamed as addPreview.
1787         (generatePreview): new method. Allows code to be moved out of
1788         math_nestinset.C and into the new PreviewedInset class.
1789
1790         * insetinclude.[Ch] (ascent, descent, width, draw, addPreview):
1791         add previews to the inset when \input-ing LaTeX.
1792
1793 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1794
1795         * several files: strip,frontStrip -> trim,ltrim,rtrim
1796
1797 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1798
1799         * insetbib.C (latex): modify because of strip changes
1800         (getKeys): ditto
1801         * insetnote.C (InsetNote): ditto
1802
1803 2002-07-26  Juergen Vigna  <jug@sad.it>
1804
1805         * insettabular.C (searchForward): check for lastcell if we
1806         had a locking inset.
1807
1808 2002-07-25  Juergen Vigna  <jug@sad.it>
1809
1810         * insettabular.C (insetMotionNotify): Don't update the screen
1811         if we didn't do nothing.
1812         (searchForward): last cell was not checked.
1813
1814 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
1815
1816         * insetfloat.C (read, write): Allow default placement
1817         (floatPlacement_ is empty).
1818
1819 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1820
1821         * insetminipage.h (noFontChange):
1822         * insettabular.h (noFontChange):
1823         * insetfootlike.h (noFontChange):
1824         * insetfloat.h (noFontChange): return true
1825
1826         * inset.h (noFontChange): new method, defaulting to false
1827
1828 2002-07-22  Herbert Voss  <voss@lyx.org>
1829
1830         * insetgraphicsParams.[Ch]: support size_type for old docs
1831
1832 2002-07-22  Herbert Voss  <voss@lyx.org>
1833
1834         * insetgraphics.C:
1835         * insetgraphicsParams.[Ch]: change size_type to size_kind and
1836         other small changes
1837
1838 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1839
1840         * insettext.h: do not include "paragraph.h" and "lyxcursor.h"
1841
1842         * insetlatexaccent.h: do not include "lyxlex.h"
1843
1844         * insetgraphicsParams.h: do not include "lyxlex.h" and "buffer.h"
1845
1846         * insetquotes.C:
1847         * insetlatexaccent.C:
1848         * insetgraphics.C:
1849         * insetexternal.C:
1850         * insetert.C:
1851         * insetbib.C: #include "lyxlex.h"
1852
1853         * insetinclude.C:
1854         * insetfloat.C:
1855         * insetert.C:
1856         * insetbib.C:
1857         * insettext.C: use BufferParams::getLyXTextClass
1858
1859
1860         * insetfloat.C (addToToc): new method. Add to toclist the entries
1861         corresponding to Caption layouts
1862         (InsetFloat): when creating a new float, set the layout to "Caption"
1863
1864 2002-07-21  Herbert Voss  <voss@lyx.org>
1865
1866         * insetgraphicsParams.C: fet the keepLyXAspectRatio run. Move the
1867         image relevant part into graphics/GraphicsImgae.C
1868
1869 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1870
1871         * insettoc.C (ascii):
1872         * insetfloatlist.C (ascii): change to use the new Toc functions
1873         instead of stuff that was in Buffer
1874
1875 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1876
1877         * insettext.C (localDispatch): BufferView::Dispatch has been
1878         renamed to BufferView::dispatch
1879
1880 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1881
1882         * insetgraphicsParams.C (as_grfxParams): use the new
1883         keepLyXAspectRatio parameter. Note that this is an adaptation of a
1884         1.2.0 patch, and I do not really know how to adapt it to the new
1885         grfx::Cache world. Angus, please could you have a look?
1886
1887 2002-05-01  Herbert Voss  <voss@lyx.org>
1888
1889         * insetgraphicsParams.[Ch]: define a new keepLyXAspectRatio parameter.
1890
1891 2002-07-18  Angus Leeming  <leeming@lyx.org>
1892
1893         * insetgraphics.C: clean-up comments (from Herbert).
1894         add a new checksum variable to the cache. Use it in PrepareFile.
1895         (draw): start monitoring the file for a change.
1896         (prepareFile): re-arrange a little to avoid unnecessary steps.
1897
1898 2002-07-17  Angus Leeming  <leeming@lyx.org>
1899
1900         * insetgraphics.C (Cache c-tor): bind to the GraphicsLoader through
1901         a method rather than to the signal directly.
1902
1903 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
1904
1905         * insettext.C: use view_state_changed, switchKeyMap
1906
1907 2002-07-17  Herbert Voss  <voss@perce.de>
1908
1909         * insetgraphics.C (prepareFile): keep the extension when
1910         exporting to nice file
1911
1912 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1913
1914         * insetcite.C (getNatbibLabel):
1915         * insetbib.C (getKeys): use ascii_lowercase instead of lowercase
1916
1917 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
1918
1919         * insetgraphics.C: use ->isDrawable()
1920
1921 2002-07-12  Angus Leeming  <leeming@lyx.org>
1922
1923         * insetgraphics.C: use the new smart loading capabilities of the image
1924         loader.
1925
1926 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
1927
1928         * insettabular.C (edit): Move into correct cell when entering a
1929         tabular in
1930
1931         * insettext.C (unlockInsetInInset): Correct cursor behaviour for
1932         RTL paragraphs.
1933
1934 2002-07-05  Angus Leeming  <leeming@lyx.org>
1935
1936         * inset.h (generatePreview): new virtual method.
1937
1938 2002-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1939
1940         * insetcommandparams.[Ch] (operator=): move out of class
1941         (operator!): move out of class
1942
1943 2002-07-04  André Pönitz <poenitz@gmx.net>
1944
1945         * insetcommandparams.[Ch]: new files
1946
1947         * insetcommand.[Ch]: move code to insetcommandparams.[Ch]
1948
1949 2002-06-15  Herbert Voss  <voss@perce.de>
1950
1951         * insetgraphics.C (prepareFile): bugfix; return always
1952         files without extension
1953
1954 2002-06-28  Angus Leeming  <leeming@lyx.org>
1955
1956         * insetgraphicsParams.[Ch]: forward declare grfx::Params.
1957         rename asGParams -> as_grfxParams.
1958
1959         * insetgraphics.C: reflect above change.
1960
1961 2002-06-26  Angus Leeming  <leeming@lyx.org>
1962
1963         * insetgraphics.h: use boost::scoped_ptr in preference to
1964         std::auto_ptr.
1965
1966 2002-06-26  Angus Leeming  <leeming@lyx.org>
1967
1968         * insetgraphics.C: moved the image loading stuff into a new class
1969         grfx::Loader. Simplifies this file enormously.
1970
1971         * insetgraphics.h: no longer #include "graphics/GraphicsTypes.h".
1972
1973         * insetgraphicsParams.C: changes aassociated with moving
1974         grfx::DisplayType out of grfx::GParams.
1975
1976 2002-06-26  André Pönitz <poenitz@gmx.net>
1977
1978         * insetgraphics.C: use os::external_path where necesaary according to a
1979         patch from Claus Hentschel)
1980
1981 2002-06-25  Angus Leeming  <leeming@lyx.org>
1982
1983         * insetgraphics.[Ch]: The inset now assumes the responsibility for
1984         generating a pixmap once the graphics file is loaded into memory.
1985         The current_view ugliness that was in grfx::ModifiedImage has been
1986         moved here now that grfx::ModifiedImage is no more.
1987
1988 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1989
1990         * insettext.C: layout as layout
1991
1992 2002-05-28  André Pönitz <poenitz@gmx.net>
1993
1994         * insetfloatlist.h: remove source of compiler warning
1995
1996         * insetref.C: tiny whitespace
1997
1998 2002-06-15  Herbert Voss  <voss@perce.de>
1999
2000         * insetgraphics.C: (prepareFile) fix bug with zipped eps-files
2001         and take always convert when no userdefined converter was
2002         found
2003         (latex) small changes in the lyxerr output
2004
2005 2002-06-15  LyX Development team <lyx@rilke>
2006
2007         * inset*.[Ch] (docbook): Added new argument to take the pernicious
2008         mixed content. Small white spaces clean.
2009
2010 2002-06-14  Angus Leeming  <leeming@lyx.org>
2011
2012         * inseetexternal.C: remove the using std::difftime declaration.
2013
2014 2002-06-13  Edwin Leuven  <leuven@fee.uva.nl>
2015
2016         * insetquotes.C: change lyxfont::draw to font_metrics::draw
2017
2018 2002-06-12  Vitaly Lipatov  <LAV@VL3143.spb.edu>
2019
2020         * insetquotes.C (draw): fix drawing of double quotes
2021
2022 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
2023
2024         * insettabular.C: s/scrollCB/scrollDocView/
2025
2026 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
2027
2028         * insettext.C: change of topCursorVisible()
2029           prototype
2030
2031 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
2032
2033         * insettext.h:
2034         * insettext.C: rename/change of LyXScreen
2035
2036 2002-06-07  Angus Leeming  <leeming@lyx.org>
2037
2038         Fixes needed to compile with Compaq cxx 6.5.
2039         * insetexternal.C:
2040         all c-library variables have been moved into namespace std.
2041         Wrap using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
2042
2043 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2044
2045         * insetinclude.C (uniqueID):
2046         * insetgraphics.C (uniqueID): renamed from unique_id, since this
2047         conflicted with some AIX headers.
2048
2049 2002-05-31  Juergen Vigna  <jug@sad.it>
2050
2051         * insetert.C (get_new_label): add '...' for multi-paragraph ert
2052         insets too
2053         (update) new method
2054
2055 2002-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2056
2057         * insetexternal.C (clone): fix () bug when using new
2058         (updateExternal): don't only look for difftime in global scope
2059
2060 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
2061
2062         * insettabular.C: add const
2063
2064 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2065
2066         * insetgraphicsParams.C (Read): use lyxlex::eatLine to read the
2067         file name, in case there are weird characters like ',' in there.
2068         (bug #407)
2069
2070 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2071
2072         * switch from SigC signals to boost::signals.
2073
2074 2002-05-28  André Pönitz <poenitz@gmx.net>
2075
2076         * insets/insetgraphicsParams.[Ch]:
2077           put in inset related stuff from src/graphic
2078
2079 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
2080
2081         * inset.C:
2082         * inset.h:
2083         * insetbib.C:
2084         * insetbib.h:
2085         * insetcite.h:
2086         * insetcite.C:
2087         * insetcollapsable.C:
2088         * insetcollapsable.h:
2089         * inseterror.C:
2090         * inseterror.h:
2091         * insetert.C:
2092         * insetert.h:
2093         * insetexternal.C:
2094         * insetexternal.h:
2095         * insetfloatlist.C:
2096         * insetfloatlist.h:
2097         * insetgraphics.C:
2098         * insetgraphics.h:
2099         * insetinclude.C:
2100         * insetinclude.h:
2101         * insetindex.C:
2102         * insetindex.h:
2103         * insetlabel.C:
2104         * insetlabel.h:
2105         * insetparent.C:
2106         * insetparent.h:
2107         * insetref.C:
2108         * insetref.h:
2109         * insettabular.C:
2110         * insettabular.h:
2111         * insettext.C:
2112         * insettext.h:
2113         * insettoc.C:
2114         * insettoc.h:
2115         * inseturl.C:
2116         * inseturl.h: use mouse_state. Kill insetKeyPress
2117
2118 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
2119
2120         * insetbib.C:
2121         * insetbutton.C:
2122         * insetcaption.C:
2123         * insetcollapsable.C:
2124         * inseterror.C:
2125         * insetgraphics.C:
2126         * insetlatexaccent.C:
2127         * insetquotes.C:
2128         * insetspecialchar.C:
2129         * insettabular.C:
2130         * insettext.C: name change for font metrics
2131
2132 2002-05-24  Juergen Vigna  <jug@sad.it>
2133
2134         * insetgraphics.h: include inset.h first (for LString.h)
2135
2136 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
2137
2138         * insettext.C: screen moved
2139
2140 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
2141
2142         * insetbib.C:
2143         * insetcite.C:
2144         * inseterror.C:
2145         * insetert.C:
2146         * insetexternal.C:
2147         * insetfloat.C:
2148         * insetfloatlist.C:
2149         * insetgraphics.C:
2150         * insetinclude.C:
2151         * insetindex.C:
2152         * insetminipage.C:
2153         * insetparent.C:
2154         * insetref.C:
2155         * insettabular.C:
2156         * insettext.C:
2157         * insettoc.C:
2158         * inseturl.C: LyXView moved into frontends/
2159
2160 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
2161
2162         * inset.C:
2163         * insetbutton.C:
2164         * insetcaption.C:
2165         * insetcollapsable.C:
2166         * insetcommand.C:
2167         * inseterror.C:
2168         * insetgraphics.C:
2169         * insetgraphicsParams.C:
2170         * insetlatexaccent.C:
2171         * insetquotes.C:
2172         * insetspecialchar.C:
2173         * insettabular.C:
2174         * insettext.C: move Painter to frontends/
2175
2176 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2177
2178         * insettabular.h: use more specific smart_ptr header.
2179         * insettext.h: ditto
2180
2181         * insetgraphics.C (InsetGraphics): change call of shared_ptr::reset
2182         (draw): ditto
2183
2184 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
2185
2186         * insettext.C: clear selection on paste (bug 393)
2187
2188 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
2189
2190         * insettext.C (latex): Honor the moving_arg argument.
2191
2192 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2193
2194         * insetfoot.C (latex): if a footnote is in a title layout, then it
2195         is a \thanks. And then, its contents is a moving argument.
2196
2197 2002-05-14  Juergen Vigna  <jug@sad.it>
2198
2199         * insetcollapsable.C (InsetCollapsable): forgot to initialize
2200         first_after_edit.
2201
2202 2002-05-09  Angus Leeming  <a.leeming@ic.ac.uk>
2203
2204         * Insetcite.C (getNatbibLabel): don't disable natbib label support
2205         when using options "Full author list" or "Upper case".
2206
2207 2002-05-14  Herbert Voss  <voss@perce.de>
2208
2209         * insetgraphics.C (prepareFile): allow files with same name
2210         in different dirs
2211         (readFigInset): set the flags from old figinset in the right
2212         manner
2213         (findTargetFormat): more comments
2214
2215 2002-05-14  Juergen Vigna  <jug@sad.it>
2216
2217         * insettext.C (edit): tell checkAndActivateInset() that we don't
2218         have a button press.
2219         (checkAndActivateInset): if button < 0 we don't have a button press
2220         on the inset and os we won't call edit on it if it's not a Highly
2221         editable inset (then we have to enter it).
2222
2223 2002-05-13  Juergen Vigna  <jug@sad.it>
2224
2225         * insetcollapsable.C (insetButtonRelease): returned wrong return
2226         value.
2227
2228 2002-05-09  Juergen Vigna  <jug@sad.it>
2229
2230         * insetcollapsable.C (edit): first_after_edit should only be
2231         set to true if we enter this inset and it was collapsed so we
2232         open it up. This is needed to reclose it after a search/replace
2233         or spellcheck function opened it and was negative.
2234
2235 2002-05-09  Dekel Tsur  <dekelts@tau.ac.il>
2236
2237         * insetfloat.C (latex): Return correct value.
2238
2239 2002-05-04  Herbert Voss  <voss@perce.de>
2240
2241         * InsetgraphicsParams.C (read): fix bug with WH
2242
2243 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
2244
2245         * insetfloat.C (latex): More sensible latex output
2246         (fix the problem with endfloat).
2247
2248 2002-05-02  José Matos  <jamatos@fep.up.pt>
2249
2250         * insetgraphics.C (validate): acess params as everyone else.
2251
2252 2002-05-03  Juergen Vigna  <jug@sad.it>
2253
2254         * insettabular.C (fitInsetCursor): recalculate the cursor position
2255         if I request it.
2256
2257 2002-05-01  Angus Leeming  <a.leeming@ic.ac.uk>
2258
2259         * InsetgraphicsParams.[Ch]: whitespace.
2260
2261 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
2262
2263         * insetfloatlist.C (getScreenLabel): Fix crash in the case where
2264         float type do not exist.
2265
2266 2002-04-28  Herbert Voss  <voss@perce.de>
2267
2268         * insetgraphics.C (latex): fix bug with missing file-extension.
2269         LaTeX still allows a missing "eps" or "ps".
2270
2271 2002-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
2272
2273         * insetfloat.C (c-tor, wide): translate the name of the float.
2274
2275 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
2276
2277         * insetcite.[Ch]: take Herbert's patch to give WYSIWYG citation labels
2278         when using natbib and make it work efficiently. Must emphasise that the
2279         real work is Herbert's.
2280
2281 2002-04-23  Herbert Voss  <voss@perce.de>
2282
2283         * insetgraphic.C (prepareFile): fix bug with overwriting and
2284         deleting an existing *.eps-file in the doc-dir
2285
2286 2002-04-23  Juergen Vigna  <jug@sad.it>
2287
2288         * insettabular.C (drawCellSelection): fix off by 1 error.
2289
2290 2002-04-22  Juergen Vigna  <jug@sad.it>
2291
2292         * insettabular.C (setFont): rewoke full selection if it was asked,
2293         after we changed all we had to change.
2294
2295         * insettext.C (insetUnlock): code was uninitialized in some situations.
2296
2297 2002-04-19  Herbert Voss  <voss@perce.de>
2298
2299         * insetgraphic.C (prepareFile): return filename without
2300         extension if we only export without compiling
2301
2302 2002-04-19  Juergen Vigna  <jug@sad.it>
2303
2304         * insettext.C (draw): call a fullRebreak on the row where we had a
2305         change and reset the cursor and selection-cursors.
2306
2307         * insettabular.C (insetUnlock):
2308         (insetButtonPress): call an update before setting the_locking_inset = 0
2309         as otherwise we don't repaint!
2310         (update): reset the cursor position when we changed dimensions as
2311         otherwise our cursor may be on the wrong spot.
2312
2313 2002-04-18  Juergen Vigna  <jug@sad.it>
2314
2315         * insettabular.C (localDispatch): repaint the cell if it was unlocked.
2316         (unlockInsetInInset): set the_locking_inset to 0 only AFTER we made the
2317         redraw otherwise we won't redraw.
2318
2319         * insettext.C (draw): fixed the setting of LyXText::first_y it was
2320         not really right before, but I only discovered this with the last
2321         changes to Page up/down.
2322
2323 2002-04-17  Juergen Vigna  <jug@sad.it>
2324
2325         * insettext.C (checkAndActivateInset): simplified as we now have the
2326         edit(bv, bool) call.
2327
2328         * insettext.h: changed behind variables to front variables to be
2329         equal to the one in the edit call (as it is for that they are used).
2330
2331 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
2332
2333         * insetnote.h (ascii): overide the InsetCollapsable::ascii method to
2334         not output anything at all!
2335
2336 2002-04-16  Juergen Vigna  <jug@sad.it>
2337
2338         * insettabular.C (insetButtonPress):
2339         (insetUnlock): call a redraw on unlocking the cell inset.
2340
2341         * insettext.C (insetButtonPress): same as below.
2342         (lockInset): new function to set initial values when inset should
2343         be locked.
2344         (insetButtonPress): use above function.
2345         (insetUnlock): don't force a repaint only set the updateStatus. The
2346         outside world should repaint if it thinks it should be done!
2347
2348         * insettabular.C (insetButtonPress): init values if not set as locked
2349         as we are locked if someone presses on us and don't call the edit()
2350         call of the InsetText to lock it do it as BufferView does it!
2351
2352         * inset.h (insetInInsetY): make func const and return an int.
2353         * insettext.C:
2354         * insettabular.C:
2355         * insetcollapsable.C: adapt the above changed function.
2356
2357 2002-04-15  Juergen Vigna  <jug@sad.it>
2358
2359         * insettext.C (getCursorPos): return relative position as to be able
2360         to give them directly to the edit() call.
2361         (edit): we have to set also x_fix as it is not set inside the
2362         setCursorFromCoordinates call!
2363         (insetMotionNotify): ditto.
2364
2365 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
2366
2367         * insetbib.C (getKeys): strip leading '\t's from the line too.
2368         With thanks to Henry Pfister <hpfister@ucsd.edu>.
2369
2370 2002-04-12  Juergen Vigna  <jug@sad.it>
2371
2372         * insettext.h: added cix() helper function and use it where appropriate
2373
2374 2002-04-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2375
2376         * insetgraphics.C (prepareFile): fix bug when graphics is a
2377         relative path
2378
2379 2002-04-12  Juergen Vigna  <jug@sad.it>
2380
2381         * insettext.C (insertInset): remove unneeded code!
2382         (updateLocal): fitCursor() fixes.
2383         (collapseParagraphs): fix a possible problem when having a selection
2384         and collapsing the paragraphs.
2385
2386 2002-04-08  Herbert Voss  <voss@perce.de>
2387
2388         * insetgraphic.C (write): write the rotating angle as
2389         a float as is. test only for != 0.0
2390
2391 2002-04-11  Juergen Vigna  <jug@sad.it>
2392
2393         * insettext.C: new function ciy() and use it for setting inset_y.
2394
2395         * insetert.C (draw): fix the x return for collapsed version.
2396
2397 2002-04-07  Herbert Voss  <voss@perce.de>
2398
2399         * insetgraphic.C (readFigInset): fix bug with subcaption and
2400         rotating
2401
2402 2002-04-08  Herbert Voss  <voss@lyx.org>
2403
2404         * insetgraphicsparam.C: forgot special option and delete old
2405         1.2.0 stuff
2406
2407 2002-04-05  Juergen Vigna  <jug@sad.it>
2408
2409         * insettext.C (localDispatch): make a CURSOR update if we inserted
2410         a character.
2411
2412 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2413
2414         * insetfloatlist.C (getScreenLabel):
2415         (latex): use Floating::listName
2416         (validate): new method
2417
2418 2002-04-03  José Matos  <jamatos@fep.up.pt>
2419
2420         * insetlabel.C (docbook): the anchor is an empty element in docbook.
2421
2422         * insetfoot.[Ch] (docbook): added forgotten method.
2423
2424 2002-04-03  Juergen Vigna  <jug@sad.it>
2425
2426         * insettext.C (insetButtonPress): fix insetButtonPress events the same
2427         way as in Bufferview_pimpl.
2428
2429 2002-04-03  Allan Rae  <rae@lyx.org>
2430
2431         * insetgraphics.C (latex): one % too many makes living on the bleeding
2432         edge fun with less than 30 minutes to a meeting with a PhD supervisor.
2433
2434 2002-03-28  Herbert Voss  <voss@lyx.org>
2435
2436         * insetgraphic.C (latex): simplify the code for the latex
2437         output when the file doesn't exist
2438
2439 2002-03-29  Juergen Vigna  <jug@sad.it>
2440
2441         * insettext.C (updateLocal): fixes to fitCursor calls when locking/
2442         unlocking inset.
2443
2444         * insettabular.C (edit): call fitCursor().
2445
2446         * insettext.C (insetButtonPress): change behaviour of no_selection
2447         to the one in the BufferView selection_possible and fix the spurious
2448         selection bug with it.
2449         (localDispatch): revoke selection on BREAK... functions.
2450
2451 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2452
2453         * insetfloatlist.C (getScreenLabel): translate the GUI label.
2454
2455 2002-03-28  Juergen Vigna  <jug@sad.it>
2456
2457         * insettabular.C (insetAllowed): return true as default value otherwise
2458         we're not able to insert insets inside paragraphs of an not locked
2459         insettext!
2460
2461 2002-03-27  Herbert Voss  <voss@lyx.org>
2462
2463         * insetgraphicsparam.C: change c%, p% to col%, page%
2464
2465 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2466
2467         * insetspecialchar.C (isLineSeparator): disable the nice code to
2468         allow linebreaks after hyphenation and menu separators.
2469
2470 2002-03-26  Herbert Voss  <voss@lyx.org>
2471
2472         * insetgraphics.C (figinsetRead): set the right lyxview
2473
2474 2002-03-26  Angus Leeming  <a.leeming@ic.ac.uk>
2475
2476         * insetgraphicsParams.C (latexify): use \textbackslash in preference to
2477         $\backslash$ and pass a "string const &" to the function.
2478         (prepareFile, latex): use Path rather than MakeAbsPath.
2479
2480 2002-03-26  Angus Leeming  <a.leeming@ic.ac.uk>
2481
2482         * insetgraphicsParams.C (Read): revert Herbert's fix and apply the
2483         proper fix to the graphics cache.
2484         (latex): "really" nice output if the file is not found ;-)
2485
2486 2002-03-26  Juergen Vigna  <jug@sad.it>
2487
2488         * insettext.C (setText): added a LyXFont param and call reinitLyXText()
2489         (collapseParagraphs): fixed inserting of separator ' '
2490
2491         * insettabular.C (insertAsciiString): only check for buffer lenght
2492         not if we have \t or \n inside the buffer as if we don't have we only
2493         have 1 cell and that's it!
2494
2495         * insetert.C (close): don't collapse if inlined.
2496
2497 2002-03-25  Herbert Voss  <voss@lyx.org>
2498
2499         * insetgraphicsParams.C (Read): prevent LyX from hanging if the
2500         graphics file does not exist.
2501
2502 2002-03-25  Angus Leeming  <a.leeming@ic.ac.uk>
2503
2504         * insetgraphics.C (prepareFile): ensure that the file has an absolute
2505         path when preparing export.
2506
2507         * insetgraphicsParams.[Ch] (Write): no longer passed Buffer *, as we
2508         no longer MakeRelPath.
2509
2510 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
2511
2512         * insetgraphics.[Ch] (c-tor, setParams, updateInset): passed filepath.
2513         Used to determine the absolute path to the graphics file in the
2514         graphics cache and only in the graphics cache.
2515         (readInsetGraphics, readFigInset) : no longer passed buffer. Do not
2516         make graphics file name absolute if it is stored as a relative path.
2517
2518         * insetgraphicsParams.[Ch] (Read): no longer passed buffer. Do not
2519         make graphics file name absolute if it is stored as a relative path.
2520
2521         * insettext.C (edit): emit an updateParagraph signal on entering a text
2522         inset. Needs to be emitted when leaving the inset also.
2523
2524 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2525
2526         * all files: ws cleanup
2527
2528         * Makefile.am: remove ld -r stuff
2529
2530 2002-03-21  Juergen Vigna  <jug@sad.it>
2531
2532         * insettext.C (appendParagraphs): new function added to append
2533         the paragraphs to this insets paragraphs.
2534
2535 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2536
2537         * Makefile.am: special rules if partial linking
2538
2539 2002-03-19  Juergen Vigna  <jug@sad.it>
2540
2541         * insetgraphics.C (draw): fixed the setting of CHANGED_IN_DRAW!
2542
2543 2002-03-18  Angus Leeming  <a.leeming@ic.ac.uk>
2544
2545         * insetgraphics.C: Clean up Baruch's comments a little.
2546         (c-tor): remove code setting id_, as it's set in the Inset c-tor.
2547
2548 2002-03-14  John Levon  <moz@compsoc.man.ac.uk>
2549
2550         * insettabular.C:
2551         * insettheorem.C: wrap warnings
2552
2553         * insetgraphics.C: improve messages, move cached_status_
2554           setting to safer place
2555
2556 2002-03-18  Juergen Vigna  <jug@sad.it>
2557
2558         * insettabular.C (unlockInsetInInset): removed unneeded showCursor
2559         calls.
2560         (localDispatch): ditto
2561
2562         * insettext.C (edit): removed unneeded showCursor calls.
2563         (localDispatch): ditto.
2564
2565 2002-03-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2566
2567         * insetgraphics.h: remove display() method.
2568
2569 2002-03-11  Juergen Vigna  <jug@sad.it>
2570
2571         * insetgraphics.C (draw): hack to fix the redrawing bug.
2572         (draw): seems this fixes #268 (force redraw of row if we changed).
2573
2574         * insettext.C (updateInsetInInset): fixed for updates in insets inside
2575         this inset text (don't know why I missed this earlier).
2576
2577 2002-03-08  Juergen Vigna  <jug@sad.it>
2578
2579         * insettabular.C (updateLocal): do a FULL update if we're not locked
2580         and only a CELL update is asked.
2581
2582         * insettext.C (updateInsetInInset): update insets inside inset also
2583         if it isn't inside the_locking_inset.
2584
2585         * insettabular.C (updateInsetInInset): ditto.
2586
2587 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2588
2589         * insetexternal.C (doSubstitution): check whether we are using a
2590         temp dir for defining $$FPath
2591
2592 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
2593
2594         * insettabular.C:
2595         * insettext.C: remove #include "WorkArea.h".
2596
2597 2002-03-06  Juergen Vigna  <jug@sad.it>
2598
2599         * insettext.C (draw): fixed frame redrawing.
2600         (clear): forgot to set the inset_owner of the paragraph.
2601
2602         * insetert.C (status): pay attention the bv can be 0 here!
2603         (getMaxWidth): add the default leftMargin
2604
2605 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2606
2607         * insetert.C (getMaxWidth): make w unsigned int.
2608
2609 2002-03-05  Juergen Vigna  <jug@sad.it>
2610
2611         * insetert.C (status): change behaviour of Inlined.
2612         (getMaxWidth): added for new inlined behaviour.
2613
2614 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
2615
2616         * insetnote.h (linuxdoc, docbook): add empty methods.
2617         * insetinclude.C (validate): fix a case where buffer->niceFile was used
2618         before being initialized.
2619
2620 2002-03-05  Juergen Vigna  <jug@sad.it>
2621
2622         * insettext.C (insetButtonPress): don't call exit on a InsetButtonPress
2623         only that one in the inset. Should be enough.
2624         (updateLocal): set the selection cursor always if we don't have a
2625         selection to be sure it's set!
2626
2627         * insettabular.C (insetButtonPress): don't hit a sub inset 2 times.
2628
2629 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2630
2631         * insettext.C (clear): a gross hack to set layout on a newly
2632         created paragraph.
2633
2634 2002-03-04  Juergen Vigna  <jug@sad.it>
2635
2636         * insettabular.C (localDispatch): inserted handling of
2637         LFUN_FILE_INSERT_ASCII_PARA and LFUN_FILE_INSERT_ASCII.
2638         (insertAsciiString): new helper function.
2639
2640 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
2641
2642         * insetinclude.C (linuxdoc, docbook): deal correctly with the niceFile
2643         argument.
2644
2645 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2646
2647         * insettext.C (InsetText): initalize newly created par with
2648         default layout. add bufferparams parameter
2649         first -> first_y
2650
2651         * insetcaption.[Ch] (InsetCaption): add BufferParams parameter
2652         * insetcollapsable.[Ch] (InsetCollapsable): ditto
2653         * insetert.[Ch] (InsetERT): ditto
2654         * insetfloat.[Ch] (InsetFloat): ditto
2655         * insetfoot.[Ch] (InsetFoot): ditto
2656         * insetfootlike.[Ch] (InsetFootLike): ditto
2657         * insetmarginal.[Ch] (InsetMarginal): ditto
2658         * insetminipage.[Ch] (InsetMinipage): ditto
2659         * insetnote.[Ch] (InsetNote): ditto
2660         * insettabular.[Ch] (InsetTabular): ditto + adjust for tabular changes
2661
2662 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2663
2664         * insettext.C: layout as string
2665
2666         * insetinclude.C: layout as string
2667
2668         * insetert.C: layout as string
2669
2670         * insetbib.C: layout as string
2671
2672 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
2673
2674         * insetert.C:
2675         * insettabular.C: remove #include "lyx_gui_misc.h".
2676
2677 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
2678
2679         * Makefile.am:
2680         * figinset.h:
2681         * figinset.C:
2682         * inset.h: remove figinset, yahoo !
2683
2684 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
2685
2686         * insetgraphics.C (c-tors): initialise parent classes explicitly in
2687         copy c-tor and initialise member variables in the correct order.
2688
2689 2002-02-28  Juergen Vigna  <jug@sad.it>
2690
2691         * insettabular.C (localDispatch): clear selection on PgUp/Down.
2692
2693 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2694
2695         * inset.h: ... and add a better one here.
2696
2697         * insetcommand.C (insetButtonRelease): remove that one which was a
2698         bit broken...
2699
2700 2002-02-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2701
2702         * insetcommand.C (insetButtonRelease): ... and move it here.
2703
2704         * inseturl.h: remove insetButtonRelease from there...
2705
2706 2002-02-26  Juergen Vigna  <jug@sad.it>
2707
2708         * inseturl.h: Added a insetButtonRelease call returning true as
2709         prove of concept.
2710
2711         * insetlabel.C (edit): Fixed wrong update handling after change I
2712         leave in the wrong code for the one who wrote it to remove and have
2713         a look what he did wrong.
2714
2715         * insettabular.C (localDispatch): force a SELECTION update if we
2716         had a selection and we passed the event down to the inset (fix #213)
2717         (localDispatch): handle font changing stuff when we have a cell
2718         selection so that the selection is not rewoked. I don't really like
2719         this fix, but it's the only way I see to do it right now.
2720
2721 2002-02-22  Juergen Vigna  <jug@sad.it>
2722
2723         * insettext.C (insetUnlock): set the cursor to the second paragraph
2724         if available and if the first one is empty (fix #191).
2725
2726 2002-02-20  Juergen Vigna  <jug@sad.it>
2727
2728         * insettext.C (getDrawFont): implemented this function to call the
2729         one of the owner if present as the owner normally knows what to do
2730         with us.
2731
2732         * insetert.C: implement getDrawFont() function and comment out all
2733         the crap for setting a special latex font inside this inset.
2734         (InsetERT): added a Lanugage parameter to this constructor.
2735
2736         * inset.h: added function getDrawFont(LyXFont & font) to be able to
2737         change the font for being drawn on screen (used only in InsetERT for
2738         now).
2739
2740         * insettabular.C (draw): clear the parts around a cellinset ALWAYS
2741         and also above (was missing).
2742         (updateLocal): don't remove the cell selection if we have one this
2743         should be done where we really want to remove it.
2744
2745 2002-02-20  José Matos  <jamatos@fep.up.pt>
2746
2747         * insetinclude.h: include_label made string const.
2748
2749         * insetinclude.C (InsetInclude): moved include_label initialization.
2750         (linuxdoc):
2751         (docbook):
2752         (validate): fix support for temporary directory, for docbook and
2753         linuxdoc.
2754
2755         * insetgraphics.h : new private member, graphic_label, that holds
2756         the entity name that defines the graphics location (SGML).
2757
2758         * insetgraphics.C (unique_id): new function to give a unique label
2759         for graphic.
2760         (docbook):
2761         (validate): the file locatation is given by an entity reference.
2762
2763 2002-02-18  Herbert Voss  <voss@lyx.org>
2764
2765         * insetgraphics.C: use [Debug::GRAPHICS] for lyxerr
2766
2767 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
2768
2769         * insetexternal.C Changes due to the renaming of support/syscall.[Ch]
2770         as support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
2771
2772 2002-02-18  José Matos  <jamatos@fep.up.pt>
2773
2774         * insetinclude.C (validate): some code only applies to latex buffers,
2775         it was made conditional.
2776
2777 2002-02-12  Herbert Voss  <voss@lyx.org>
2778
2779         * insetgraphics.C: (prepareFile) do not check at this time
2780         if the file is present.
2781
2782 2002-02-12  Herbert Voss  <voss@lyx.org>
2783
2784         * insetgraphics.C: latex(), return the correct newlines
2785
2786 2002-02-13  José Matos  <jamatos@fep.up.pt>
2787
2788         * inseturl.C (docbook): escape & in url.
2789
2790 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2791
2792         * insetspecialchar.C (isLineSeparator): line breaking is allowed
2793         after HYPHENATION and MENU_SEPARATOR
2794
2795         * inset.h (isLineSeparator): new method, returns false by default.
2796
2797 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2798
2799         * insetert.C (status): do not update the text inset, but the ERT
2800         inset.
2801
2802 2002-02-11  John Levon  <moz@compsoc.man.ac.uk>
2803
2804         * insetnote.C: use notebg for background
2805
2806 2002-02-08  Herbert Voss  <voss@lyx.org>
2807
2808         * insetgraphic.C:
2809         * insetgraphicsParams.[Ch]: adding new Option noUnzip to
2810         prevent LyX from unzipping when this should be handled
2811         by latex vis the graphic.cfg.
2812         clean up the code
2813
2814 2002-02-08  Herbert Voss  <voss@lyx.org>
2815
2816         * insetgraphic.C: prepareFile(): fix bug when file doesn't
2817         exists, than return filename with extension
2818
2819 2002-02-06  Herbert Voss  <voss@lyx.org>
2820
2821         * insetgraphic.C: prepareFile(): don't convert the file, when
2822         it's not viewed in LyX. Saves a lot of time when opening a
2823         document!
2824
2825 2002-02-05  Herbert Voss  <voss@lyx.org>
2826
2827         * insetgraphic.C:
2828         * insetgraphicsParams.[Ch]: some cosmetic changes to latex output
2829         and adding a rotate bool similiar to subcaption
2830
2831 2002-02-04  Herbert Voss  <voss@lyx.org>
2832
2833         * insetgraphic.C:
2834         * insetgraphicsParams.[Ch]: add a LyXView-scale to have a
2835         similiar view to the LaTeX one. Get zipped files work.
2836
2837 2002-02-04  Angus Leeming  <a.leeming@ic.ac.uk>
2838
2839         * insetgraphicsParams.C (init): set display to DEFAULT.
2840         No longer #include "lyxrc.h".
2841
2842 2002-02-04  Angus Leeming  <a.leeming@ic.ac.uk>
2843
2844         * insetgraphics.C (readFigInset): comment out the "zippedFile" stuff
2845         for now (so that the code compiles).
2846
2847 2002-02-02  Herbert Voss  <voss@lyx.org>
2848
2849         * insetgraphic.C: delete inVariant() and some minor changes
2850         * insetgraphicsParams.[C]:
2851
2852 2002-02-01  Angus Leeming  <a.leeming@ic.ac.uk>
2853
2854         * insetgraphics.C (updateInset): if params.display == DEFAULT,
2855         interogate lyxrc.display_graphics before diaplaying the graphic.
2856
2857         * insetgraphicsParams.[Ch]: respect the new DEFAULT state of
2858         InsetGraphicsParams::DisplayType.
2859
2860 2002-01-31  Herbert Voss  <voss@lyx.org>
2861
2862         * insetgraphic.C: (readfigInset) set display to pref-default
2863
2864 2002-01-30  Herbert Voss  <voss@lyx.org>
2865
2866         * insetgraphic.C: get the filetyp from it's contents
2867         * insetgraphicparams.C: add token scale and lyxrc.display when
2868         creating a new inset
2869
2870 2002-01-30  Angus Leeming  <a.leeming@ic.ac.uk>
2871
2872         * figinset.C: added using std::ios directive.
2873
2874 2002-01-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2875
2876         * figinset.C (runqueue): open translation file in binary mode (for
2877         cygwin).
2878
2879 2002-01-27  Herbert Voss  <voss@lyx.org>
2880
2881         * insetgraphic.[Ch]: mostly newritten to support graphicx with
2882         all options and to be sure that the old figinsets are correct
2883         converted.
2884         * insetgraphicParams.[Ch]: a lot of chamges to have a clean data-
2885         structure and to support all lengths as LyXLength. The Parameter
2886         structure changed again, but reading of "old" 1.2 graphic insets
2887         is no problem.
2888
2889 2002-01-20  Dekel Tsur  <dekelts@tau.ac.il>
2890
2891         * insetert.h (forceDefaultParagraphs): Added
2892
2893 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2894
2895         * insettabular.C (getMaxWidth):
2896         (forceDefaultParagraphs): use Tabular::GetCellFromInset
2897
2898 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2899
2900         * insettabular.C (getMaxWidthOfCell): adapt to the new definition
2901         of LyXLength::inPixels
2902
2903         * inset.C (latexTextWidth):
2904         * insetminipage.C (latexTextWidth): new method, which implements
2905         the equivalent of the LaTeX macro \textwidth
2906
2907         * insetminipage.C (getMaxWidth): use latexTextWidth
2908
2909 2002-01-18  Juergen Vigna  <jug@sad.it>
2910
2911         * inset.C (getMaxWidth): try to fix fluctuation of collapsable insets.
2912
2913 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2914
2915         * insettabular.C (getMaxWidthOfCell): use LyXLength::inPixels
2916
2917         * insetminipage.[Ch]: change width_ and height_ to be LyXLength
2918         instead of string
2919
2920 2002-01-17  Juergen Vigna  <jug@sad.it>
2921
2922         * insettabular.C (lockInsetInInset): same change as in insettext.
2923
2924         * insettext.C (draw): width() function was called without setting
2925         the right top_x which could lead to wrong insetWidth setting!
2926         (lockInsetInInset): call edit instead of calling lockInset if we
2927         have to lock an inset inside!
2928         (edit): we have to also tell the inset that we have to redraw the
2929         frame on an edit call if this inset draws a frame only if locked.
2930
2931 2002-01-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2932
2933         * insetbib.C (getFiles): uncomment Path variable.
2934
2935 2002-01-16  Juergen Vigna  <jug@sad.it>
2936
2937         * insettabular.C (forceDefaultParagraphs): fixed bug returning value
2938         of wrong cell.
2939
2940 2002-01-16  Allan Rae  <rae@lyx.org>
2941
2942         * insetinclude.C (docbook): someone forgot a ";"
2943
2944 2002-01-16  José Matos  <jamatos@fep.up.pt>
2945
2946         * figinset.C (docbook): removed a old place holder "@".
2947         * insetgraphics.C (docbook): remove the file sufix if graphic is eps.
2948         * insetinclude.C (linuxdoc): if include is verbatim, then export the
2949         ascii text version, clearly guarded inside a CDATA section.
2950         (docbook): in docbook 4, inlinegraphics is empty.
2951         * insettabular.C (linuxdoc): export the ascii version of the table
2952         inside a CDATA section.
2953
2954 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2955
2956         * insetparent.C (InsetParent):
2957         * insetgraphicsParams.C (Write):
2958         (Read):
2959         * insetgraphics.C (prepareFile):
2960         (readFigInset):
2961         (docbook):
2962         * insetexternal.C (executeCommand):
2963         (doSubstitution): use Buffer::filePath
2964
2965         * insetbib.C (getFiles): add a #warning for Angus
2966
2967         * insetgraphics.C: Add a remark about how filenames should be
2968         considered to be relative to buffer (but absolute is still allowed)
2969         (draw): do not try to get status if lyxrc.use_gui is false
2970
2971 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
2972
2973         * inset.[Ch]:
2974         * insetcollapsable.[Ch]:
2975         * insettabular.[Ch] (searchForward, searchBackward): change the
2976         bool const & params to bool.
2977
2978         * insetminipage.[Ch] (width, height): renamed as pageWidth, pageHeight
2979         to avoid the name clash with InsetCollapsable's methods of the same
2980         names but different functionality.
2981
2982 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
2983
2984         * insettext.C (ascii): use lyx::count rather than countChar.
2985
2986 2002-01-14  John Levon  <moz@compsoc.man.ac.uk>
2987
2988         * insettabular.C: return early for the LFUN_*BUF[SEL] funcs too
2989
2990 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2991
2992         * insetgraphics.C (updateInset): do not try to render image if
2993         lyxrc.use_gui is false (bug #104)
2994
2995         * insetinclude.C (loadIfNeeded): do not call bufferlist.readFile
2996         if file does not exist
2997
2998         * figinset.C (browseFile): add shortcuts to directory buttons
2999
3000         * insettext.C (updateLocal): update menubar and toolbar here too.
3001
3002 2002-01-13  Allan Rae  <rae@lyx.org>
3003
3004         * insettabular.C (InsetTabular): Both constructors now initialise
3005         all class variables.
3006
3007 2002-01-11  Juergen Vigna  <jug@sad.it>
3008
3009         * insettext.C (insetButtonPress): set the_locking_inset to 0.
3010
3011 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3012
3013         * insettabular.C (getStatus): add forgotten brace around multiline
3014         if statement.
3015
3016 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3017
3018         * insetfloat.C (validate): require "float" instead of "floats".
3019
3020 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
3021
3022         * insettabular.C (getStatus): use FuncStatus
3023
3024 2002-01-08  Juergen Vigna  <jug@sad.it>
3025
3026         * insettabular.C (insetButtonRelease): now this should work too
3027         correctly.
3028
3029         * insetminipage.C (getMaxWidth): fixed for minipage inside insets and
3030         if the width is a percentage.
3031
3032         * inset.h: added isChar() function and implemented this for
3033         insetspecialchar insetquotes and insetlatexaccent.
3034         added forceDefaultParagraphs() and implemented it for insettabular.
3035
3036 2002-01-07  Juergen Vigna  <jug@sad.it>
3037
3038         * insettext.C (getLyXText): Fixed this function. An insert into the
3039         map is only done if we REALLY have a new BufferView.
3040
3041 2002-01-07  Martin Vermeer  <martin.vermeer@hut.fi>
3042
3043         * insettext.C: fix bug illustrated by attachment #37 of bug #59
3044
3045 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
3046
3047         * insetinclude.C: fix use of FileInfo
3048
3049 2002-01-07  Juergen Vigna  <jug@sad.it>
3050
3051         * insettabular.C (draw): fixed clearing of cell around inset.
3052
3053 2002-01-05  Juergen Vigna  <jug@sad.it>
3054
3055         * insettext.C (draw): move the calls so that insetWidth/Asc/Desc
3056         variables are updated.
3057
3058         * insettabular.C (resetPos): set always the inset_y as it may be
3059         needed in another function.
3060         (searchBackward): don't draw while searching.
3061
3062 2002-01-04  Juergen Vigna  <jug@sad.it>
3063
3064         * insettext.C (lockInsetInInset): forgot to set a cursor.
3065
3066 2002-01-02  Juergen Vigna  <jug@sad.it>
3067
3068         * insettext.C (insertInset): make the correct undo informations on
3069         inserting new insets.
3070
3071 2001-12-31  John Levon  <moz@compsoc.man.ac.uk>
3072
3073         * insettabular.C: correct single-cell select vertically
3074
3075 2001-12-27  Juergen Vigna  <jug@sad.it>
3076
3077         * insettabular.C (ascii): export as tab-separated-values if the
3078         function was not called from export (f.ex.: clipboard).
3079
3080         * insetcollapsable.h: added default support for ascii, linuxdoc and
3081         docbook export (the insettext is exported by default!)
3082
3083         * insettabular.C (copySelection): suff the clipboard with the tabular
3084         data in a tab separated format, seems more naturals then with all the
3085         formating.
3086
3087 2001-12-24  Juergen Vigna  <jug@sad.it>
3088
3089         * insettext.C (insetMotionNotify): added a mouse_x & mouse_y position
3090         to check for REAL mouseMotion.
3091
3092 2001-12-20  Juergen Vigna  <jug@sad.it>
3093
3094         * inset.C (cursor): return the owners cursor if available instead of
3095         always only the bv->text->cursor.
3096
3097         * insettabular.C (checkLongtableSpecial): works now.
3098
3099 2001-12-19  Juergen Vigna  <jug@sad.it>
3100
3101         * insettabular.C (tabularFeatures): fix the row setting of ltt as
3102         this has to be always row + 1 as 0 means not selected!
3103         (checkLongtableSpecial): added
3104         (tabularFeatures): better longtable options support
3105
3106         * insettext.C (resizeLyXText): reinit the text always also on a
3107         empty insettext!
3108
3109 2001-12-18  Juergen Vigna  <jug@sad.it>
3110
3111         * insettext.C (updateInsetInInset): look if we have to autocollapse
3112         paragraps and return if the update is requested for ourself.
3113
3114         * insetert.C (status): update the insettext not myself as that is what
3115         we need.
3116
3117         * insetcollapsable.C (updateInsetInInset): always call the InsetText's
3118         function only return if the update was requested with myself.
3119
3120         * insettext.C (insetButtonPress): fixed stupid bug.
3121         (various functions): pay attention that lt is cleared BEFORE calling
3122         updateLocal() and try to use it in the right manner (don't use it
3123         if it's not really neccessary!)
3124         (collapseParagraphs): insert a blank between collapsing paragraphs
3125         if neccessary (not already there!).
3126
3127 2001-12-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3128
3129         * insettabular.C: move includes around a bit, add a couple of
3130         consts.
3131
3132         * insettext.[Ch]: move includes around a bit, other ws changes and
3133         small stuff.
3134
3135 2001-12-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3136
3137         * insettext.C (insetButtonRelease): fix compile problem
3138
3139 2001-12-17  Juergen Vigna  <jug@sad.it>
3140
3141         * insettext.C (insetButtonPress): set the selection cursor!
3142         (insetButtonPress): clear the selection (and set with that the
3143         selection.cursor) if we only hit an inset!
3144
3145         * insetert.C (read): removed piece of compatibility code only needed
3146         for 1.2.0.
3147
3148         * insettabular.C (insetButtonRelease): fixed so that sub-dialogs
3149         can be opened.
3150
3151         * insetcollapsable.C (insetButtonRelease): changed so that it can
3152         open eventual existing popup dialogs on mousebutton==3.
3153
3154         * insetfloat.C (insetButtonRelease): removed not needed anymore!
3155
3156         * insetminipage.C (insetButtonRelease): removed not needed anymore!
3157
3158         * inset.C (insetButtonRelease): return a bool for telling the outer
3159         world that we opened a dialog.
3160
3161 2001-12-07  Juergen Vigna  <jug@sad.it>
3162
3163         * insettext.C (paragraph): remove the deleteing of paragraphs as
3164         it was a WRONG move!
3165
3166 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
3167
3168         * insettabular.h:
3169         * insettabular.C: use new setSelection(). Allow
3170           selection of single cells.
3171
3172 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3173
3174         * insetquotes.C (latex): fix to use the local language setting at
3175         the point where the inset is inserted (different macros for
3176         different french packages)
3177
3178 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3179
3180         * inset.h: add par_owner_ member variable and parOwner
3181         setter/accessor.
3182
3183 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3184
3185         * insettabular.C (everywhere): adapt because widths are now real
3186         widths and not strings
3187
3188         * insettext.C (draw): re-introduce the calls to width(), ascent()
3189         and descent() to initialize the caching variables.
3190
3191 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3192
3193         * insettext.C (draw):
3194         (drawFrame): use insetWidth instead of last_width
3195
3196         * insettext.h: remove variable last_width (insetWidth is exactly
3197         the same) and last_height (computed but never used!)
3198
3199 2001-12-10  Allan Rae  <rae@lyx.org>
3200
3201         * insettabular.C (localDispatch): cleanup unlockInsetInInset calls
3202
3203 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
3204
3205         * insettext.C (insetAllowed): add comment
3206
3207 2001-12-05  Juergen Vigna  <jug@sad.it>
3208
3209         * insettext.C (insetAllowed): fixed for the case that we directly
3210         ask the insettext from its LyXText.
3211         (paragraph): fixed the crash when assigning the par->next() from
3212         the EmptyParagraphMechanism!
3213
3214 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3215
3216         * insetbib.C:
3217         * insettabular.C:
3218         * insettext.C: change "while(" to "while ("
3219
3220 2001-12-04  Juergen Vigna  <jug@sad.it>
3221
3222         * insetert.C (edit): handle Inlined status.
3223
3224         * insettext.C (insertInset): trying John's fix for the trailing cursor
3225
3226         * insetert.C (insetButtonPress): added to handle inlined status
3227         (insetMotionNotify): ditto.
3228
3229         * insettext.C (clearInset): changed Painter & in BufferView * param,
3230         to be able to call ascent,descent methods.
3231
3232 2001-12-03  Juergen Vigna  <jug@sad.it>
3233
3234         * insettext.C (updateInsetInInset): use lt variable to forbid
3235         changes of LyXText in an update call.
3236         (updateInsetInInset): fixed updating of non locked insets!
3237
3238 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
3239
3240         * insettabular.C: capture some more functions to prevent
3241         selection drawing problems. Bug #451274
3242
3243 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
3244
3245         * insetgraphics.C:
3246         * insetgraphicsParams.C: fix inverted sense of float_equal
3247
3248 2001-11-30  Juergen Vigna  <jug@sad.it>
3249
3250         * insettabular.C (InsetTabular): use the save_id flag to create also
3251         the tabular with the same id's.
3252
3253         * insettext.C (setParagraphData): added a same_id function for undo
3254         to set the same paragraph id's as of the paragraph we are setting.
3255
3256 2001-11-30  José Matos <jamatos@fep.up.pt>
3257
3258         * inseturl.[Ch]:
3259         * insettoc.[Ch]: DocBook -> docbook.
3260
3261 2001-11-29  André Pönitz <poenitz@gmx.net>
3262
3263         * inseterror.C:
3264         * insettext.C: further reduction of header dependencies by using
3265         lyx::layout_type and lyx::textclass_type from support/types.h
3266
3267 2001-11-29  Juergen Vigna  <jug@sad.it>
3268
3269         * insettext.C: inserted a reinitLyXText function everywhere I delete
3270         the paragraphs! This should fixe the crashes we had.
3271         Also use the new function firstRow() instead of getRowNearY(dummy_y)
3272         (paragraph): set the InsetOwner() of the new paragraphs!
3273
3274 2001-11-28  André Pönitz <poenitz@gmx.net>
3275
3276         * insetnote.C: add pos initialization that I removed without
3277           knowing what I did.
3278
3279 2001-11-28  Juergen Vigna  <jug@sad.it>
3280
3281         * insettabular.C (resetPos): hack to not crash with infinite paints.
3282
3283         * insettabular.h: insert missing function allowSpellcheck()!
3284
3285         * insetcollapsable.C (draw): fixed wrong width of collapsed inset!
3286
3287 2001-11-04  John Levon  <moz@compsoc.man.ac.uk>
3288
3289         * insetfloatlist.h:
3290         * insetfloatlist.C: derive from InsetCommand so gui can use it
3291           easily
3292
3293 2001-11-26  André Pönitz <poenitz@gmx.net>
3294
3295         * insettext.[Ch]:
3296         * insetert.C:
3297         * insetnote.C: reduce header dependencies, introduce type for
3298         positions
3299
3300 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
3301
3302         * various: update for Alert.h
3303
3304 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
3305
3306         * inset.h: fix comment
3307
3308         * insettext.C: use par->isInset()
3309
3310 2001-11-22  Allan Rae  <rae@lyx.org>
3311
3312         * insetcollapsable.h:
3313         * inset.h: Changes to checkInsertChar() behaviour.
3314         Now return value indicates whether chars can be inserted.
3315
3316 2001-11-11  Michael A. Koziarski <michael@koziarski.org>
3317
3318         * various:  updated to use the new LaTeXFeatures
3319
3320 2001-11-14  José Matos  <jamatos@fep.up.pt>
3321
3322         * insetspecialchar.C (linuxdoc):
3323         (docbook): don't give a name to a unused variable.
3324
3325         * insettext.C (docbook): removed unused variable.
3326
3327 2001-11-13  Herbert Voss  <voss@perce.de>
3328
3329         * insetgraphic.C: fix scale bug
3330
3331 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3332
3333         * inset.h (isSpace):
3334         (isLetter): new virtual methods.
3335
3336         * insetspecialchar.C (isSpace):
3337         (isLetter): implement here.
3338
3339 2001-11-04  John Levon  <moz@compsoc.man.ac.uk>
3340
3341         * inset.h: new inline helpers
3342
3343         * insettext.C: use new helpers
3344
3345 2001-11-07  José Matos  <jamatos@fep.up.pt>
3346
3347         * insettext.C (docbook): full support for paragraphs inside insettext.
3348
3349 2001-11-06  José Matos  <jamatos@novalis.fc.up.pt>
3350
3351         * insetindex.C: added header file for std::ostream.
3352
3353 2001-11-03  José Matos  <jamatos@fep.up.pt>
3354
3355         * insetindex.C: added using std::ostream that I forgot yesterday.
3356
3357 2001-11-02  Ben Guillon  <nicolas.marsgui@libertysurf.fr>
3358
3359         * insetindex.h (docbook):
3360         * insetindex.C (docbook): added support for docbook export.
3361
3362 2001-11-02  José Matos  <jamatos@fep.up.pt>
3363
3364         * insetcaption.C(docbook): added support for docbook export.
3365
3366 2001-11-02  Dekel Tsur  <dekelts@tau.ac.il>
3367
3368         * insetexternal.C (updateExternal): Do not run update command if
3369         result file exists and is up to date.
3370
3371         * ExternalTemplate.C (readFormat): Support the updateresult token.
3372
3373 2001-10-31  Kayvan A. Sylvan  <kayvan@sylvan.com>
3374
3375         * insetexternal.C (doSubstitution): Fix filepath ($$FPath in
3376         external_templates) to use the buffer->fileName() but only if
3377         previewing. Generating a TeX file should make FPath return
3378         "".
3379
3380 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
3381
3382         * insetert.h:
3383         * insetert.C: fix some problems
3384
3385 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
3386
3387         * insetexternal.C (doSubstitution): Added $$FPath token
3388         to list of usable substitutions in external inset templates.
3389
3390 2001-10-24  Juergen Vigna  <jug@sad.it>
3391
3392         * insettabular.C: use new ltType struct for setting longtable
3393         header and footers also new UNSET enums.
3394
3395 2001-10-24  José Matos  <jamatos@fep.up.pt>
3396
3397         * insettabular.C (linuxdoc): Now exports the ascii's table version.
3398         (docbook): If the table is not inside a float then wrap it inside
3399         <informaltable>...</informaltable>.
3400
3401 2001-10-23  José Matos  <jamatos@fep.up.pt>
3402
3403         * insetref.C (docbook): removed / terminator to conform SGML.
3404
3405         * insetspecialchar.C (linuxdoc):
3406         (docbook): Added support for special chars, more than ascii export.
3407
3408 2001-10-22  Juergen Vigna  <jug@sad.it>
3409
3410         * insettext.C (checkInsertChar): added for REALLY checking the
3411         font of the inserted char in the right inset!
3412
3413 2001-10-19  Juergen Vigna  <jug@sad.it>
3414
3415         * inset.h: added method allowSpellcheck() so that insets who do
3416         not have anything to spellcheck can tell and so they are over-jumped.
3417         Implemented for InsetText and co.
3418
3419 2001-10-18  Juergen Vigna  <jug@sad.it>
3420
3421         * inset.C (getMaxWidth): use LyXText::workWidth(BufferView, Inset *).
3422
3423 2001-10-15  José Matos  <jamatos@fep.up.pt>
3424
3425         * insetert.C: allow export for docbook and linuxdoc
3426
3427 2001-10-07  Adrien Rebollo <adrien.rebollo@gmx.fr>
3428
3429         * insetquotes.C (dispString): handles latin3 and latin4 quotes
3430
3431 2001-10-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3432
3433         * insetquotes.C (dispString): fix handling of latin9 quotes
3434
3435 2001-10-03  Juergen Vigna  <jug@sad.it>
3436
3437         * insetert.C: ditto
3438
3439         * insetcollapsable.C: change updateInset calls to not tell BV that
3440         we have changed status.
3441
3442 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3443
3444         * insettabular.C (deletable): make const
3445
3446 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
3447
3448         * insetert.C (latex): Fix the returned value
3449
3450 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
3451
3452         * insetert.[Ch] (selectNextWordToSpellcheck): new method.
3453         Returns string(), so nothing in an ERT inset is spellchecked.
3454
3455         * insetgraphics.C (draw): print the filename if not displaying the
3456         image.
3457         (width): make sure that the width and draw methods are consistent.
3458         (updateInset): don't even load the image into cache if not displaying
3459         it.
3460
3461 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
3462
3463         * various files (selectNextWord): renamed as
3464         selectNextWordToSpellcheck.
3465
3466         * insetgraphics.C (draw): remove the previous change. Right place
3467         is in imageLoaderXPM.C.
3468         (draw): don't display the image if params.display == NONE.
3469
3470 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
3471
3472         * figinset.C (runqueue):
3473         * insetgraphics.C (draw): set background colour of inset from
3474         background to the user-configurable graphicsbg.
3475
3476 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3477
3478         * insetquotes.C (InsetQuotes): when trying to decide the side of
3479         the quote, choose `left' only after a space or '('
3480
3481 2001-09-04  José Matos  <jamatos@fep.up.pt>
3482         * figinset.C
3483         * figinset.h
3484         * insetcaption.C
3485         * insetcaption.h
3486         * insetcollapsable.h
3487         * insetcommand.C
3488         * insetcommand.h
3489         * inseterror.h
3490         * insetert.C
3491         * insetert.h
3492         * insetexternal.C
3493         * insetexternal.h
3494         * insetfloat.C
3495         * insetfloat.h
3496         * insetfloatlist.h
3497         * insetgraphics.C
3498         * insetgraphics.h
3499         * inset.h
3500         * insetinclude.C
3501         * insetinclude.h
3502         * insetlabel.C
3503         * insetlabel.h
3504         * insetlatexaccent.C
3505         * insetlatexaccent.h
3506         * insetquotes.C
3507         * insetquotes.h
3508         * insetref.C
3509         * insetref.h
3510         * insetspecialchar.C
3511         * insetspecialchar.h
3512         * insettabular.C
3513         * insettabular.h
3514         * insettext.C
3515         * insettext.C (docbook): rename docBook method to docbook.
3516
3517 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
3518
3519         * inset.h (getFirstParagraph): New virtual method.
3520
3521 2001-08-20  Herbert Voss  <voss@perce.de>
3522         * insetbib.C: added a option bibtotoc which is from "BIB to TOC"
3523         in the the bibtex-database-gui for inserting a line
3524         \addcontentsline...
3525
3526         If no style is given than there is no tex-output.
3527
3528 2001-08-18  Angus Leeming  <a.leeming@ic.ac.uk>
3529
3530         * insetbib.[Ch] (getFiles): new method, returning the BibTeX database
3531         files as a vector.
3532         (getKeys): use it.
3533
3534 2001-08-18  Dekel Tsur  <dekelts@tau.ac.il>
3535
3536         * insetert.C (latex): Fix output for multiple paragraphs.
3537         (write): New code for writing paragraph data.
3538         (read): Set font after reading the inset.
3539         (localDispatch): Call set_latex_font() for more cases.
3540
3541         * insetnote.h: Add empty validate method.
3542         * insetert.h: Ditto
3543
3544         * insetnote.C (InsetNote): Set language to the language of the
3545         document.
3546
3547 2001-08-16  Juergen Vigna  <jug@sad.it>
3548
3549         * insettext.C: implemented the new FINISHED states.
3550
3551         * insettabular.C: ditto
3552
3553         * inset.h: added more FINISHED states for cursor right,up,down
3554
3555 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
3556
3557         * insetfloatlist.C: use "FloatName List"
3558
3559 2001-08-14  Juergen Vigna  <jug@sad.it>
3560
3561         * insetert.C (edit): forgot to set status_ in edit calls!
3562
3563 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
3564
3565         * insettext.C: Compilation fix
3566
3567 2001-08-13  Juergen Vigna  <jug@sad.it>
3568
3569         * inset.C (getMaxWidth): fixed bug of returning the wrong max width.
3570
3571         * insetcollapsable.C (edit): don't recollapse an already open inset.
3572
3573         * insettext.C: fixed problem when reinitializing LyXText by not doing
3574         it while lt is in use and post this to the next possible time in
3575         getLyXText().
3576         (searchForward): fixed not unlocking of inset if nothing found.
3577         (edit): set cursor behind right (was set -1 pos).
3578
3579         * insetert.C (InsetERT): init status_ also in the 3rd constructor.
3580
3581         * insettabular.C (tabularFeatures): fixed fix where deleting the
3582         last row didn't get the right actcell!
3583
3584 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
3585
3586         * insettext.C (localDispatch): Change language only when the inset
3587         becomes empty.
3588
3589 2001-08-10  Juergen Vigna  <jug@sad.it>
3590
3591         * insettabular.C (selectNextWordInt): use the front using edit call.
3592
3593         * insetcollapsable.C (getMaxWidth): rename inset to in to not have
3594         the parameter overwrite class variable inset.
3595
3596         * inset.C (getMaxWidth): fix the setting of the minwidth = 10.
3597
3598         * insettext.C (saveLyXTextState): check for invalid cursor-par.
3599         (reinitLyXText): remove wrong_cursor bool as not needed anymore!
3600
3601         * insettabular.C (calculate_dimensions_of_cells): let's try to call
3602         update only for fixed with cells.
3603         (resetPos): try to fix the lockup on spellchecking or s&r.
3604
3605         * insettext.C (update): comment this out as it seems first wrong
3606         and second not needed anymore!
3607         (some functions): call reinitLyXText() only in update() in all other
3608         positions set only need_update = INIT.
3609
3610 2001-08-08  Juergen Vigna  <jug@sad.it>
3611
3612         * insettabular.C (setPos): fixed wrong actrow < rows() check.
3613
3614         * insettext.C (insetUnlock): remove double-space on inset unlock.
3615
3616         * insetcollapsable.C (draw): fix returned x when label > inset-width.
3617
3618         * insettabular.C (update): fixed cursor positon after an insert.
3619         (insetAllowed): do not allow to insert insets when not inside the
3620         inset!
3621         (draw): clear below an inset too as it could have changed height.
3622
3623         * inset.C (getMaxWidth): fixed width for inset in inset.
3624
3625         * insettext.C (update): small fix.
3626
3627         * insettabular.C (tabularFeatures): added selection support to
3628         DELETE_ROW/DELETE_COLUMN.
3629
3630 2001-08-07  Juergen Vigna  <jug@sad.it>
3631
3632         * inset.C (getMaxWidth): recoded and all it's implementations!
3633
3634         * insettext.C (init,setParagraph+constructors): cleanups
3635         (reinitLyXText): fixed problem with wrong cursor when all paragraphs
3636         are new and I want do a save/restore of the cursor position which is
3637         not possible anymore.
3638
3639         * insetcollapsable.C (searchBackward): recollapse inset if not found.
3640         (searchBackward): ditto
3641         (selectNextWord): ditto
3642
3643 2001-08-07  Angus Leeming  <a.leeming@ic.ac.uk>
3644
3645         * insetlatexaccent.C (checkContents): Add some debug messages
3646
3647 2001-08-07  Juergen Vigna  <jug@sad.it>
3648
3649         * insetert.C (read): don't use InsetCollapsable::read as we don't
3650         write the collapsed status anymore only the status.
3651         (write): ditto.
3652
3653 2001-08-06  Juergen Vigna  <jug@sad.it>
3654
3655         * insetert.C (set_latex_font): use LyXText's setFont directly.
3656
3657         * insettext.C (drawFrame): fixed one time more the right position
3658         and size of the frame!
3659
3660         * insetert.C (~InsetERT): hide the dialog.
3661         (showInsetDialog): added implementation
3662         (open): ditto
3663         (close): ditto
3664         (status): new function for the status of the ERT inset (3-state).
3665         (write): output also the status of the inset for readback!
3666         (read): readback the status if available otherwise use collapsed_.
3667
3668         * insettext.C (edit): small fix of setting the position, which could
3669         have gone < 0.
3670
3671         * insetert.C (width): implement this function for inlined viewing.
3672         Added minimum width of 10 pixels!
3673
3674         * insetminipage.C (InsetMinipage): just change the colors a bit so
3675         that border/background is a bit more visible. We will remove this
3676         anyway for 1.2.0!
3677
3678         * insettext.C (textWidth): add a 'bool fordraw' parameter and use this
3679         function for getting the important widths for drawing in various
3680         functions and in LyXText.
3681         (draw): fixed up a bit (frame drawing/clearing)
3682
3683 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3684
3685         * inset.C (convertFont): delete method. not used.
3686
3687 2001-08-03  Juergen Vigna  <jug@sad.it>
3688
3689         * insettext.C (setFont): don't call for a draw update if we're just
3690         changing the cursor font!
3691
3692 2001-08-02  Juergen Vigna  <jug@sad.it>
3693
3694         * insettext.C (draw): clear the background with the right color if
3695         needed. Update myself if x&max-width changed and return without doing
3696         anything. Let the update code handle the right stuff.
3697
3698         * insetminipage.C (getMaxWidth): fixed returning of maxwidth when
3699         inside another inset.
3700
3701 2001-08-01  Juergen Vigna  <jug@sad.it>
3702
3703         * insetcollapsable.C (update): added an in_update bool so we avoid
3704         reentering.
3705
3706         * insettabular.C (update): added an in_update bool so we avoid
3707         reentering.
3708
3709         * insettext.C (insetButtonPress): hopefully fixed setselection/clear
3710         selection problem.
3711         (update): added an in_update bool so we avoid reentering.
3712
3713         * insettabular.C (localDispatch): clear col/row selection when doing
3714         something else inside an inset.
3715
3716         * insettext.C (getLyXText): fixed bug when requesting a recursive
3717         insettext!
3718
3719 2001-08-01  Angus Leeming  <a.leeming@ic.ac.uk>
3720
3721         * insetcite.C (latex): Paranoia check. Make sure that there is no
3722         whitespace between the citation keys.
3723
3724 2001-07-31  Juergen Vigna  <jug@sad.it>
3725
3726         * inset.h (nodraw): make the set function also const so that this
3727         can be called from inside other const functions.
3728
3729         * insetcollapsable.h: removed inline variable and moved it over
3730         to the only user InsetERT.
3731
3732         * insetcollapsable.C (insetButtonRelease): fixed uncollpasing the
3733         inset opening immediately therein lying insets dialogs!
3734
3735         * insetert.C (localDispatch): set the font also if we don't have any
3736         chars in this paragraph, otherwise if we delete all of em and start
3737         writing we have the wrong font.
3738         (inlined): added
3739         (draw): implemented for inline support
3740         (insetButtonRelease): ditto.
3741
3742 2001-07-30  Juergen Vigna  <jug@sad.it>
3743
3744         * insettext.C (reinitLyXText): new function to reinit the insets
3745         text after lot's of paragraph changes. Use this instead of the
3746         cache.clear() which is VERY dangerous.
3747
3748         * insetfloat.C (insetButtonRelease): we should only show the dialog
3749         if we press on the label otherwise we have problems to open mouse
3750         button 3 dialogs inside this float (f.ex. of a tabular!)
3751
3752 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3753
3754         * insetert.C: change back to "ERT"
3755
3756         * insetfloat.C: handliign of RMB on label added.
3757
3758 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3759
3760         * insetgraphicsParams.C: #include LOstream.h here.
3761
3762         * insetfoot.h: remove InsetFoot:: qualifier.
3763
3764 2001-07-29  Baruch Even  <baruch@lyx.org>
3765
3766         * ChangeLog: Hiding time travel evidence.
3767
3768         * insetgraphicsParams.h:
3769         * insetgraphicsParams.C:
3770         * insetgraphics.C: Added horizontal scale option, it actually scales both
3771         directions since it keeps image proportions.
3772
3773         * insetgraphics.C: Fixed EPS detection to be non-hacky.
3774
3775 2001-07-29  Baruch Even  <baruch@lyx.org>
3776
3777         * insetgraphics.C (decideOutputImageFormat): when doing postscript output
3778         convert PNG/GIF/JPG to EPS, assume the rest are EPS already.
3779
3780         HACKY! Will need to add an EPS detection routine like old InsetFig does!
3781
3782 2001-07-29  Baruch Even  <baruch@lyx.org>
3783
3784         * insetgraphics.C: Added EPSI to be an alias of EPS.
3785
3786 2001-07-29  Baruch Even  <baruch@lyx.org>
3787
3788         * insetgraphics.C: Change GRAPHICS to Graphics.
3789         Changed image conversion rules (documented at the beginning of file).
3790
3791 2001-07-28  Angus Leeming  <a.leeming@ic.ac.uk>
3792
3793         * insetert.C (get_new_label): int -> Paragraph::size_type to get
3794         std::min working.
3795
3796         * insetgraphics.C: added a using std::endl directive.
3797
3798         * insetcommand.h (getScreenLabel): removed pure virtual function,
3799         as it duplicates that in InsetButton.
3800
3801         * insetbib.[Ch] (getScreenLabel):
3802         * insetbutton.[Ch] (getScreenLabel):
3803         * insetcite.[Ch] (getScreenLabel):
3804         * insetert.[Ch] (getScreenLabel):
3805         * insetexternal.[Ch] (getScreenLabel):
3806         * insetfloatlist.[Ch] (getScreenLabel):
3807         * insetinclude.[Ch] (getScreenLabel):
3808         * insetindex.[Ch] (getScreenLabel):
3809         * insetlabel.h (getScreenLabel):
3810         * insetparent.[Ch] (getScreenLabel):
3811         * insetref.[Ch] (getScreenLabel):
3812         * insettoc.[Ch] (getScreenLabel):
3813         * inseturl.[Ch] (getScreenLabel): passed a Buffer const * parameter.
3814
3815         * insetcite.C (getScreenLabel): use this Buffer parameter in creating
3816         the label.
3817         (validate): remove check on "cite" when using natbib.
3818
3819 2001-07-26  Baruch Even  <baruch@lyx.org>
3820
3821         * insetgraphics.C (draw): changed casting to be in one place rather than
3822         all over the function.
3823
3824         * insetgraphics.h:
3825         * insetgraphics.C (read): Added compatibility reads of InsetFig.
3826
3827         * insetgraphicsParams.h:
3828         * insetgraphicsParams.C:
3829         * insetgraphics.C: Removed inline option and changed rotateAngle to float.
3830
3831 2001-07-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
3832
3833         * insetfoot.C (validate): Added method to ensure that the
3834         right bit of LaTeX is emitted.
3835
3836         * insetfoot.h: Added validate method to set the correct
3837         LaTeXFeatures bit for the special footnote code.
3838
3839 2001-07-26  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
3840
3841         * insetquotes.C (dispString): display the right ISO8859-{1,9,15}
3842         quotes
3843
3844 2001-07-27  Juergen Vigna  <jug@sad.it>
3845
3846         * inset.h: remove not used font variable in parameter.
3847         removed checkInsertChar in UpdatableInset as it was equal to
3848         the one in Inset and so not needed.
3849
3850         * insetert.C (checkInsertChar): implementation of function
3851         checkInsertChar.
3852
3853         * inset.h: added new function checkInsertChar.
3854
3855         * various files: added c-tor and clone() function.
3856
3857         * insetcollapsable.h: removed clone function here as this should
3858         be only realized in REAL insets and added it to all collapsable
3859         insets! (with the copy-constructor).
3860
3861 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3862
3863         * insetminipage.C (read): handle missing parameters more gracefully
3864
3865         * insetcollapsable.C (read): handel missing collapsed more gracefully
3866
3867 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3868
3869         * insetfloat.C (read): handle missing parameters.
3870
3871         * insettext.C (read): handle old latex end_inset
3872
3873         * insetert.C (setButtonLabel): new method
3874         (init): use it, to set the dynamic label correctly
3875         (read): use it
3876
3877         * Makefile.am (EXTRA_DIST): add files that is not part or the
3878         binary here.
3879
3880         * insetcollapsable.h: remove autocollapsable (no users), remove
3881         draw_label, change_label_with_text and companion code. Remove args
3882         from some methods.
3883         * insetert.[Ch]: move here instead (only user)
3884
3885         * inset.h: rename private variable name to name_, make
3886         selectNextWord return a const string. make getInsetName return a
3887         string const &. Remove bool from open, add close.
3888
3889         * Makefile.am: don't compile insetlist, insetsection
3890         and insettheorem
3891
3892 2001-07-24  Juergen Vigna  <jug@sad.it>
3893
3894         * insetert.C (InsetERT): put init after the paragraph initialization,
3895         as otherwise we don't set the draw_label right.
3896
3897         * insetcollapsable.C (insetMotionNotify): fixed opening/closing the
3898         insets with the mouse without having strange selections.
3899         (edit): if the inset was collapsed and we open it here then put the
3900         cursor always at the beginning of the inset.
3901         (get_new_label): 15 instead of 10 max chars in the label.
3902
3903         * insetert.C (localDispatch): added and handle various stuff we
3904         need to handle here (font setting on paragraph break, not permitted
3905         layout setting, etc.).
3906
3907         * inset.h: added default copy-consturctor and implemented this in
3908         various insets with the change to use this in the clone function!
3909
3910 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3911
3912         * insetminipage.C (InsetMinipage): set background color to red :)
3913
3914 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3915
3916         * insettext.C (insetUnlock): only set update to CLEAR_FRAME if
3917         draw frame mode is LOCKED.
3918
3919         * insetcollapsable.C (edit):
3920         (insetButtonRelease): set update status to full when
3921         opening inset.
3922
3923         * insettext.C (clearInset):
3924         * insettabular.C (draw):
3925         * insetlatexaccent.C (draw): honor background color.
3926
3927         * inset.h: new member background_color_, initialized to
3928         LColor::inherit.
3929
3930         * inset.C (backgroundColor): new method.
3931         (setBackgroundColor): new method.
3932
3933         * insetert.C (init): new method, called by the ctors.
3934         (InsetERT): when inserting contents, make sure the font is
3935         ALL_INHERIT.
3936
3937         * insetnote.C (InsetNote): when inserting content, remove trailing
3938         newline
3939         (init): set background color to LColor::note
3940
3941 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3942
3943         * insetcollapsable.C: adjust
3944
3945         * insetbutton.C: adjust
3946
3947 2001-07-23  Juergen Vigna  <jug@sad.it>
3948
3949         * insetcollapsable.h: removed widthCollapsed variable, LyXFont
3950         parameter on the _collapsed function (was not needed) and call
3951         always width_collapsed().
3952
3953         * insetert.C (InsetERT): use setLabel with "true" flag.
3954
3955         * insetcollapsable.C: modified various functions to set the draw_label
3956         string right in any condition.
3957         (setLabel): added a bool parameter to set change_label_with_text.
3958
3959         * insetcollapsable.h: added draw_label string which is set to the
3960         actual drawn label-string, while label is the original static label
3961         of this collapsable inset. Added bool change_label_with_text to set
3962         if we want that the label changes to the start of the InsetText's
3963         text when collabpsed. You can set this flag with the setLabel funciton.
3964         Added bool inlined for inlined collapsable insets, but not handled
3965         yet.
3966
3967         * insetcollapsable.C (get_new_label): added should get a new label
3968         from the InsetText beginning (for now 10 chars).
3969
3970 2001-07-21  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
3971
3972         * insetquotes.C (latex): fix the handling of french double quotes
3973         when not using the french pachage.
3974
3975 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3976
3977         * insetcollapsable.h: make WidthCollapsed mutable.
3978
3979         * insetindex.C (lyxCode): InsetIndex returns INDEX_CODE,
3980         InsetPrintIndex returns INDEX_PRINT_CODE.
3981
3982         * inset.h: add INDEX_PRINT_CODE
3983
3984         * insetcollapsable.C (draw): init widthCollapsed if necessary
3985         (width): ditto.
3986
3987         * insetquotes.C (width): use the local language, not the document
3988         language.
3989         (draw): ditto.
3990         (dispString): add additional spacing for all french languages,
3991         like fr_CA.
3992         (validate): make it work when there is no default language
3993
3994         * insetspecialchar.h: rename kind to kind_; add kind() accessor.
3995
3996         * insetnote.C (init): new method, called by the constructors
3997         (InsetNote): new constructor with contents passed as a string
3998
3999 2001-07-21  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4000
4001         * insetfootlike.C (insetAllowed): disallow float in footlike.
4002
4003         * insetert.C (InsetERT): add collapsed argument to the constrctor
4004         with contents.
4005
4006 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4007
4008         * insetindex.h: shut off warning
4009
4010 2001-07-20  Juergen Vigna  <jug@sad.it>
4011
4012         * insetcollapsable.C (update): recoded hopefully works now!
4013
4014 2001-07-19  Juergen Vigna  <jug@sad.it>
4015
4016         * most files: implemented the below new introduced function.
4017
4018         * inset.h: added new edit(BufferView *, bool front) method to be able
4019         to enter an inset from the front/back without knowing x/y positions
4020         and baselines inside the inset. So I just can tell the inset activate
4021         me and set the cursor on the front/back of yourself.
4022
4023 2001-07-18  Juergen Vigna  <jug@sad.it>
4024
4025         * insetcollapsable.C (edit): fixed hopefully the y parameter which
4026         is given to the InsetText.
4027         (insetButtonPress): ditto
4028         (insetButtonRelease): ditto
4029         (insetMotionNotify): ditto
4030
4031 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4032
4033         * insetspecialchar.[Ch]: change HYPHENATION_BREAK to
4034         LIGATURE_BREAK, since the name is so stupid.
4035
4036 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
4037
4038         * insetnote.[Ch]: (insertInset, insetAllowed): removed. Note now uses
4039         the default InsetCollapsable methods. I.e., it can insert anything.
4040         (write) output the name of the inset, not some silly hack for
4041         compatability with the old InsetInfo.
4042
4043         * insetinfo.[Ch]: removed.
4044         * insetnote.[Ch]: new files. InsetNote replaces InsetInfo. The inset is
4045         now collapsable, but functionality is otherwise identical to InsetInfo.
4046
4047         * Makefile.am: removed insetinfo.[Ch]. Added insetnote.[Ch].
4048
4049 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4050
4051         * insetspecialchar.[Ch]: add support for HYPHENATION_BREAK. some
4052         reformatting
4053
4054         * insetquotes.C: general cleanup
4055         (dispString): add spaces inside french double quotes.
4056         (latex): ditto. Moreover, treat first the case where the frenchb
4057         or french options have been given.
4058
4059 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
4060
4061         * insetcite.[Ch] (latex, validate): new methods, required for natbib
4062         support.
4063
4064 2001-07-19  Dekel Tsur  <dekelts@tau.ac.il>
4065
4066         * figinset.C (RegisterFigure): Print debug message only when
4067         current_view is available.
4068
4069 2001-07-18  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4070
4071         * many files: update to match the change below
4072
4073         * inset.h (insetAllowed): renamed from insertInsetAllowed;
4074         implement the version which takes an inset here.
4075
4076         * insetcollapsable.[Ch]: implement open and isOpen
4077
4078         * inset.h: remove insertInsetAllowed from Inset
4079         (open): new method, to open or close an inset
4080         (isOpen): returns the status of an inset
4081         (isCollapsable, colapse): removed
4082
4083 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
4084
4085         * insetquotes.C (dispString): display french guillemets when using
4086         ISO8859-15.
4087
4088 2001-07-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4089
4090         * insetcollapsable.h: remove bogus return statements
4091
4092 2001-07-18  Juergen Vigna  <jug@sad.it>
4093
4094         * insettabular.C (selectNextWord): fixed spellchecking for the
4095         first cell of a tabular (wasn't entered!)
4096         (getLyXText): changed to enter automatically insettext and return
4097         it's LyXText if we're locked.
4098
4099 2001-07-17  Juergen Vigna  <jug@sad.it>
4100
4101         * various files: implemented the below functions.
4102
4103         * inset.h: added functions
4104         - virtual string selectNextWord(BufferView *, float & value) const;
4105         - virtual void selectSelectedWord(BufferView *) { return; }
4106         - virtual void toggleSelection(BufferView *, bool /*kill_selection*/)
4107         needed for spellchecking correctly!
4108
4109 2001-07-16  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4110
4111         * insetert.C (latex): write out all paragraphs.
4112
4113 2001-07-17  Baruch Even  <baruch@lyx.org>
4114
4115         * insetgraphics.C (draw): Removed unneeded casts.
4116
4117 2001-07-16  Juergen Vigna  <jug@sad.it>
4118
4119         * insettext.C (update): fixed small oversight (reset lt to 0).
4120
4121 2001-07-14  Baruch Even  <baruch@lyx.org>
4122
4123         * insetgraphics.h:
4124         * insetgraphics.C: Added a copy c-tor and handled the same_id case.
4125
4126 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
4127
4128         Consistent use of Lsstream.h:
4129         * figinset.C: removed using std::ostringstream directive.
4130
4131         * insetgraphics.C (createLatexOptions):
4132         * insetinclude.C (unique_id):
4133         std::ostringstream -> ostringstream.
4134         * insettext.C (localDispatch): std::istringstream -> istringstream.
4135
4136 2001-07-13  Juergen Vigna  <jug@sad.it>
4137
4138         * insetfloat.C (insertInsetAllowed): added missing const_cast.
4139
4140         * insetcollapsable.C (getLockingInset): ditto.
4141
4142 2001-07-12  Juergen Vigna  <jug@sad.it>
4143
4144         * insetcollapsable.h: added implementation of new function for
4145         collapsable status.
4146
4147         * various files: added implementation of new insertInsetAllowed-func
4148         and redone the function a bit more.
4149
4150         * inset.h: added isCollapsable(), bool collapsed(),
4151         collapsed(BufferView *, bool) and insertInsetAllowed(Inset::Code).
4152
4153         * insetfloat.C (insertInsetAllowed): make a bit more checks.
4154
4155         * insettext.C (getLyXText): use 'lt' to assure we're not erasing the
4156         LyXText which is marked for removal while we're using it!
4157
4158         * insettext.h: added private LyXText * lt to use it to assure we are
4159         not deleting our LyXText while we're using it!
4160
4161 2001-07-11  Juergen Vigna  <jug@sad.it>
4162
4163         * insettext.C (insertInset): check if we are before the inset after
4164         inserting it! This check IS needed. Remove the Undo-Call as it is
4165         called in LyXText::insertInset!
4166
4167         * insettext.h: added struct InnerCache.
4168
4169         * insettext.C (deleteLyXText): insert a new InnerCache mechanism so
4170         that we ONLY delete the LyXText in the getLyXText() routine. So we
4171         are sure we don't delete LyXText while someone is working with it!
4172
4173 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4174
4175         * insetexternal.C: (*it). -> it->
4176         * insettext.C: ditto
4177
4178 2001-07-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4179
4180         * insetcollapsable.C (edit): always open collapsed insets (even if
4181         they are not autocollapsable)
4182
4183         * insetcommand.C (operator=): simplify.
4184
4185 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4186
4187         * insetert.C (latex): handle META_NEWLINE
4188
4189 2001-07-09  Juergen Vigna  <jug@sad.it>
4190
4191         * insetert.h: a normal InsetText can insert insets, but we won't.
4192
4193         * inset.h: return default "false" on insertInsetAllowed and implement
4194         this function where a returnvalue != "false" is needed.
4195
4196 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4197
4198         * insetert.C (InsetERT): new contructor
4199
4200 2001-07-06  Juergen Vigna  <jug@sad.it>
4201
4202         * a lot of files: added implementation of the below new functions
4203         and the change to clone(). Also the call of the new undo-functions
4204         where needed.
4205
4206         * inset.h: added an inset_id, added functions getParFromID,
4207         getInsetFromID, firstParagraph, cursor and id functions, added
4208         bool same_ids to clone function.
4209
4210 2001-07-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4211
4212         * insettext.[hC]: make cached_text a shared_ptr, make Cache be a map
4213         of BufferView * and shared_ptr<LyXText>
4214
4215 2001-07-05  Juergen Vigna  <jug@sad.it>
4216
4217         * insettext.C (clear): deleted also the cache not only LyXText.
4218         (setParagraphData): ditto.
4219
4220 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4221
4222         * insetfloat.C (latex): let the specific placement take presedence
4223         if set, otherwise choose document placement if set, otherwise just
4224         use float default placement.
4225
4226 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4227
4228         * insettext.C (localDispatch): call CutAndPaste::'s static method
4229         directly.
4230
4231 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4232
4233         * insetbib.C: no meed to include forms.h here.
4234
4235 2001-07-03  Angus Leeming  <a.leeming@ic.ac.uk>
4236
4237         * insettext.C: added using std::make_pair directive.
4238
4239 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4240
4241         * insettext.C (getLyXText): avoid multiple lookups, and simplify
4242         slightly
4243         (deleteLyXText): ditto
4244         (resizeLyXText): ditto
4245
4246 2001-07-02  Juergen Vigna  <jug@sad.it>
4247
4248         * insettext.C (getLyXText): introduce a cache in getLyXText so that
4249         following calls are only returned the right pointer without the over
4250         head to search in the map.
4251         (various funcs): reset the cached_bview variable as this signs that
4252         the cache is not valid anymore.
4253
4254 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4255
4256         * insettabular.C (clone): do not copy the LyXTabular twice
4257
4258 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4259
4260         * insettext.h (TEXT): delete method
4261
4262 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4263
4264         * insetmarginal.C (latex):
4265         * insetfoot.C (latex): fix spacing of notes in LaTeX
4266
4267         * insettext.C (localDispatch): use .c_str() on istringstream
4268         constructor argument.
4269
4270 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
4271
4272         * insettoc.h:
4273         * insettoc.C:
4274         * inseturl.h:
4275         * inseturl.C: fix method names in these to begin
4276           with small char too, so they inherit
4277
4278 2001-06-28  Juergen Vigna  <jug@sad.it>
4279
4280         * insettext.C (setFont): fixed font settings using toggleFree()
4281         instead of setFont().
4282
4283 2001-06-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4284
4285         * Change a lot of method names to begin with a small char.
4286         Changes to a lot of files because of this.
4287
4288 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4289
4290         * insetfloatlist.C (Write): std:: qualify ostream
4291         (Latex): ditto
4292
4293 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
4294
4295         * figinset.C:
4296         * inset.C:
4297         * insetgraphics.C: send debug output to Debug::INFO instead of
4298         Debug::ANY.
4299
4300 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
4301
4302         * insettabular.h:
4303         * insettabular.C (getStatus): update to use func_status
4304
4305 2001-06-26  ben <nicolas.marsgui@libertysurf.fr>
4306
4307         * insetref.C (DocBook): added support for cross-references without
4308         a name.
4309
4310 2001-06-26  The LyX Project  <jug@sad.it>
4311
4312         * insetref.C:
4313         * insetref.h:
4314         * insetlabel.C:
4315         * insetlabel.h: removed escape method and moved it to
4316         support/lstrings.h.
4317
4318 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4319
4320         * insettabular.C (getMaxWidth): do the speedup in a different way,
4321         remove dead code
4322
4323 2001-06-24  The LyX Project  <Asger>
4324
4325         * insettabular.C (getMaxWidth): We cache a mapping from
4326         inset to cell in order to speed this method up.
4327
4328 2001-06-24  The LyX Project  <Asger>
4329
4330         * insettext.C: Optimized InsetText::draw or something.
4331
4332 2001-06-23  The LyX Project  <lyx@rose.home.sad.it>
4333
4334         * insettext.C (LocalDispatch): fixed inserting of 'normal chars'
4335
4336 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4337
4338         * inset.h: name change from lyxinset.h
4339
4340 2001-06-22  Dekel Tsur  <dekelts@tau.ac.il>
4341
4342         * insetfloat.C (Validate): Add a call to InsetCollapsable::Validate
4343
4344 2001-06-14  Juergen Vigna  <jug@sad.it>
4345
4346         * insettext.C (draw): removed warnings.
4347
4348 2001-06-13  Juergen Vigna  <jug@sad.it>
4349
4350         * insettabular.C (nodraw): only go down the tree if we don't have
4351         that flag set otherwise it's obvious that we don't want to draw.
4352         (LocalDispatch): do also an update if we have an undispached result.
4353
4354 2001-06-19  Angus Leeming  <a.leeming@ic.ac.uk>
4355
4356         * insetcite.C:
4357         * insetgraphicsParams.C:
4358         * insettext.C: removed // -*- C++ -*- as first line.
4359
4360 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4361
4362         * lyxinset.h (resizeLyXText): shut off warning about unused
4363         parameter "force"
4364
4365 2001-06-07  Juergen Vigna  <jug@sad.it>
4366
4367         * insettext.C (resizeLyXText): honor the new force flag.
4368
4369         * lyxinset.h: add 'bool force' parameter to resizeLyXText(...)
4370
4371         * insettabular.C (deleteLyXText): new function
4372
4373 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
4374
4375         * insettheorem.C:
4376         * insetminipage.C:
4377         * insetlist.C:
4378         * insetfootlike.C:
4379         * insetfloat.C:
4380         * insetert.C:
4381         * insetcollapsable.C:
4382         * insetcaption.C: LColor tidy
4383
4384 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4385
4386         * figinset.C: fix typo
4387
4388 2001-06-01  Juergen Vigna  <jug@sad.it>
4389
4390         * insettabular.C (resetPos): small hack so that scroll is not set to
4391         0 when we are in the last column of a tabular. This is a problem we
4392         have because of constats 20 offset on both directions, so this can
4393         cause on the limit an endless loop.
4394
4395         * insettext.C (SetFont): forgot that we can have locking insets ;)
4396
4397 2001-05-31  Juergen Vigna  <jug@sad.it>
4398
4399         * insettabular.C (LocalDispatch): small fix for LFUN_TAB.
4400
4401 2001-05-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4402
4403         * figinset.C: add using std:: directive for the C functions which
4404         need that.
4405
4406 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4407
4408         * insetfloat.C (Write): write out wide info
4409         (Read): read the wide info
4410         (Latex): use the wide info when creating latex.
4411
4412         * insettext.C: adjust
4413
4414         * insetgraphics.[Ch] (statusMessage): change to return string
4415         (width): adjust
4416         (draw): adjust
4417
4418         * figinset.C (runqueue): add std::
4419         (Recompute): ditto
4420
4421 2001-05-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4422
4423         * insetcite.C (Ascii): add std:: qualifier
4424
4425 2001-05-28  Juergen Vigna  <jug@sad.it>
4426
4427         * insettext.C (resizeLyXText): clear LyXText ONLY if we don't have
4428         a endless-width inset (maxWidth < 0).
4429         (Edit): change language only if not equal.
4430
4431         * insettabular.C (resetPos): call UpdateLocal only on REAL scroll!
4432
4433         * insettext.C (draw): fixed draw/clear of InsetText-Frame
4434
4435 2001-05-16  Juergen Vigna  <jug@sad.it>
4436
4437         * insettext.C (selectAll): added
4438         (clearSelection): added
4439
4440         * insettabular.C (SetFont): now we may set a font on a whole selection!
4441         (getSelection): added helper function.
4442
4443 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
4444
4445         * insetcite.C (Ascii): Add method.
4446
4447 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
4448
4449         * figinset.C:
4450         * insetbib.C: fix path for OS/2 & Win32
4451
4452 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4453
4454         * insetfoot.C (Latex): don't use % after footnote.
4455
4456 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4457
4458         * insettext.C (Read): use clear
4459         (SetParagraphData): use LyXParagraph copy constructor instead of clone
4460
4461 2001-05-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4462
4463         * insetfloatlist.h: add a bunch of std:: qualifiers.
4464
4465 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4466
4467         * lyxinset.h: remve LOF_CODE, LOT_CODE, LOA_CODE, add
4468         FLOAT_LIST_CODE, renumber code list.
4469
4470         * insettoc.C (getScreenLabel): remove support for float lists
4471         (LyxCode): ditto
4472         (Ascii): ditto
4473
4474         * insetfloatlist.[Ch]: new files
4475
4476         * Makefile.am (libinsets_la_SOURCES): add insetfloatlist.[Ch]
4477
4478 2001-04-27  Angus Leeming  <a.leeming@ic.ac.uk>
4479
4480         * insettabular.C (LocalDispatch):
4481         * insettext.C (LocalDispatch): getClipboard() is now a BufferView
4482         method
4483
4484 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4485
4486         * insettext.C: remvoe !NEW_INSETS cruft
4487
4488         * insettabular.C: remove !NEW_INSETS cruft
4489
4490         * insetcollapsable.h: remove !NEW_INSETS cruft
4491
4492         * insetbib.C: remove !NEW_INSETS cruft
4493
4494 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4495
4496         * insettoc.C: hack to make listof algorithm work
4497
4498 2001-04-20  Juergen Vigna  <jug@sad.it>
4499
4500         * insettext.C (Edit): call checkAndActivateInset with y=0 if y < 0.
4501
4502 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4503
4504         * insetquotes.C (Latex): improve the guard against
4505         unwanted !` and ?` ligatures. This should really be done in
4506         another place (to catch all this ligatures at low-level).
4507
4508 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4509
4510         * insettext.C (init): remvoe leftovers from cursor_visible change
4511         (draw): use c++ cast
4512         (LocalDispatch): dispatch LFUN_MESSAGE
4513
4514         * insettabular.C (InsetTabular): remove leftovers from
4515         cursor_visible, and scoped_ptr changes
4516         (draw): use c++ cast
4517
4518         * insetcollapsable.C (draw): use c++ cast
4519
4520         * ExternalTemplate.h: inherit privaely from noncopyable
4521         * insetcommand.h: ditto
4522         * insetinclude.h: ditto
4523
4524 2001-04-16  Allan Rae  <rae@lyx.org>
4525
4526         * insettoc.C (Ascii):
4527         * insettext.C (draw):
4528         * insettabular.C (setPos):
4529         * insetminipage.C (Read):
4530         * insetfloat.C (placement):
4531         * insetcaption.C (Ascii, DocBook):
4532         * figinset.C (runqueue): #warning triggers an error on Sun CC 6.0 as
4533         an unrecognised preprocessor directive.  So ensure they're wrapped.
4534
4535 2001-04-06  John Levon  <moz@compsoc.man.ac.uk>
4536
4537         * insetexternal.h:
4538         * insetexternal.C: set view on Clone. Add _ to private members.
4539
4540 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4541
4542         * insettext.C (InsetText): fix new
4543         (InsetText): reindent some, simplify deletion of par list
4544         (clear): simplify deletion of par list, fix new
4545         (SetParagraphData): simplify deletion of par list
4546
4547         * insettabular.[Ch] (getLabelList): implement new method
4548
4549 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4550
4551         * lyxinset.h: do not include gettext.h...
4552
4553         * inset.C:
4554         * insetcaption.C:
4555         * insetexternal.C:
4556         * insetgraphics.C:
4557         * insetindex.C:
4558         * insetlabel.C:
4559         * insetlatexaccent.C:
4560         * insetminipage.C:
4561         * insetquotes.C:
4562         * insettabular.C:
4563         * inseturl.C: ... and do it here instead
4564
4565 2001-04-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4566
4567         * insetcollapsable.[Ch] (getLabelList): add std:: on vector<string>
4568
4569         * insettext.[Ch] (getLabelList): add std:: on vector<string>
4570
4571         * insetcollapsable.[Ch] (getLabelList): implement
4572
4573         * insettext.[Ch] (getLabelList): implement
4574
4575         * insettext.h: reindent
4576
4577         * insettabular.h: make tabular a scoped_ptr
4578
4579         * insettext.C (init): adjust for cursor_visible
4580         (ToggleInsetCursor): constify asc and desc, font, adjust for
4581         cursor_visible
4582         (ShowInsetCursor): constify asc and desc, font, adjust for
4583         cursor_visible
4584         (HideInsetCursor): adjust for cursor_visible
4585
4586         * insettabular.C: reindent some
4587         (InsetTabular): adjust for scoped_ptr and cursor_visible
4588         (InsetTabular): ditto
4589         (~InsetTabular): delete delete
4590         (Clone): adjust for scoped_ptr
4591         (Read): constify old_format, adjust for scoped_ptr, move init of
4592         token
4593         (draw): constify tx, localize loop vars.
4594         some other localization of variables, remove double initilizatons.
4595
4596         * insetfoot.C: remove using std::ostream, add ostream where needed
4597
4598 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4599
4600         * lyxinset.h: some reindentaion, use initializer list for
4601         constructro.
4602         UpdatableInset: make cursor_visible a private var add
4603         public isCursorVisible(), add protected toggleCursorVisible() and
4604         proctected setCursorVisible(bool), make scroll call the Inset::scroll
4605
4606         * insettoc.C: remvoe using decl
4607         (getScreenLabel): make cmdname donst
4608         (LyxCode): ditto
4609         (Ascii): ditto
4610         (Ascii): don't use endl
4611
4612         * insetfootlike.C: remove using decl at file scope and add std::
4613         where needed
4614         * insetmarginal.C: ditto
4615
4616         * insetfoot.C: some reformatting
4617
4618         * insetfloat.C (InsetButtonRelease): adjust the hit area
4619
4620         * insetert.C (SetFont): some reformatting
4621
4622         * insetcollapsable.C: some reformatting and constification
4623         (Clone): comment out.
4624         * insetcollapsable.h: some reformatting
4625         (Clone): comment out.
4626
4627         * inset.C: reindent
4628         (scroll): simplify
4629
4630 2001-03-30  Juergen Vigna  <jug@sad.it>
4631
4632         * insetcollapsable.h: changen *inset to be a InsetText inset.
4633
4634         * some files: changed to reflect the above change.
4635
4636 2001-03-29  Angus Leeming  <a.leeming@ic.ac.uk>
4637
4638         * insetexternal.[Ch]: renamed InsetExternal::InsetExternalParams as
4639         InsetExternal::Params.
4640         Added operator==() and operator!=() for the Params struct.
4641
4642 2001-03-29  Juergen Vigna  <jug@sad.it>
4643
4644         * lyxinset.h: changed parameter of getMaxWidth from Painter & to
4645         BufferView *.
4646
4647         * insetminipage.C: removed widthp_ and all it's functions and changed
4648         to use new %-lengths of LyXLength.
4649
4650 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
4651
4652         * figinset.[Ch]: changed headers lyx.h, form1.h -> figure_form.h.
4653
4654 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
4655
4656         * insetgraphicsParams.C (operator!=): new function, needed by the
4657         ControlGraphics class.
4658
4659 2001-03-28  Juergen Vigna  <jug@sad.it>
4660
4661         * insettext.C (InsetButtonPress): only enter !inset if button == 2
4662         (checkAndActivateInset): don't use the values returned from
4663         call to bv->checkInsetHit.
4664
4665         * insetminipage.C (Clone): set special minipage values.
4666
4667         * insetcollapsable.C (draw): changed to draw the button in the
4668         upper left corner outside the textinset.
4669         (ascent): changed because of different drawing
4670         (descent): ditto
4671         (width): ditto
4672         (Edit): ditto
4673         (InsetButtonPress): ditto
4674         (InsetButtonRelease): ditto
4675         (InsetMotionNotify): ditto
4676
4677 2001-03-27  Dekel Tsur  <dekelts@tau.ac.il>
4678
4679         * figinset.C (GetPSSizes): Fix for the case when filename doesn't
4680         contain a suffix.
4681         (Clone): ditto
4682
4683 2001-03-26  Juergen Vigna  <jug@sad.it>
4684
4685         * lyxinset.h: added ShowInsetDialog() function in UpdatableInset.
4686
4687         * insettext.C (ShowInsetDialog): implemented above function.
4688
4689         * insettabular.C (ShowInsetDialog): ditto
4690
4691         * insetminipage.C (ShowInsetDialog): ditto
4692
4693 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
4694
4695         * insetinclude.[Ch]: rename InsetInclude::InsetIncludeParams as
4696         InsetInclude::Params. Don't store a buffer * in Params. Store the
4697         master file name instead.
4698
4699 2001-03-23  Juergen Vigna  <jug@sad.it>
4700
4701         * insetcollapsable.C (InsetMotionNotify):
4702         (InsetButtonRelease):
4703         (InsetButtonPress): fixed y-offset (minipages).
4704
4705         * insettext.C (draw): force a FULL update if cleared == true.
4706
4707         * insetcollapsable.C (draw): Lars forgotten entry for changing this
4708         routine to draw the minipages on its position-flag.
4709         (InsetInInsetY): give back the right y position, because of minipage
4710         position-flag.
4711
4712 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
4713
4714         * insetfloat.h
4715         * insetfloat.C (DocBook): docbook export code.
4716
4717 2001-03-22  Juergen Vigna  <jug@sad.it>
4718
4719         * insetminipage.C (getMaxWidth): added function to set the drawing
4720         width!
4721         (Read): should work now!
4722
4723         * insetcollapsable.C (InsetCollapsable): default is now NOT collapsed
4724         if we create a new inset.
4725
4726 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
4727
4728         * figinset.C (fl_set_preemptive_callback): moved definition outside
4729         of namespace anon.
4730
4731 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
4732
4733         * insetminipage.C (Read): prepare for reading of minipage arguments.
4734
4735 2001-03-18  Baruch Even  <baruch@lyx.org>
4736
4737         * insetgraphics.C: Minor cleanups of the comments and code.
4738
4739 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
4740
4741         * insetminipage.C (InsetMinipage): default to not collapsed
4742
4743 2001-03-16  Juergen Vigna  <jug@sad.it>
4744
4745         * insetminipage.C (width): modified with to be a string
4746         (widthp): added widthp (for % width) support functions.
4747         (InsetButtonRelease): added to open the options dialog on button==3.
4748         (~InsetMinipage): added to hide the dialog.
4749
4750         * insetminipage.h: added hideDialog signal
4751
4752 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
4753
4754         * insetminipage.h: change the order or Position to match
4755         LyXParagraph::MINIPAGE_ALIGNMENT
4756
4757         * several files: remvoe CXX_WORKING_NAMESPACES
4758
4759         * ExternalTemplate.h: noncopyable is in namespace boost
4760         * insetinclude.h: ditto
4761         * insetcommand.h: ditto
4762
4763 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
4764
4765         * insettext.C (Edit): #else# -> #else.
4766         * insettoc.C: added using directive.
4767
4768 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
4769
4770         * insetminipage.h: add pos, inner_pos, width and height. + getters
4771         and setters for all of them.
4772
4773 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
4774
4775         * insetinclude.C (Latex): Do not exit when the textclass of the
4776         included file differ from the textclass of the parent file.
4777
4778 2001-03-12  Angus Leeming  <a.leeming@ic.ac.uk>
4779
4780         * ExternalTemplate.C (read): the reading of external insets now checks
4781         for \end_inset and removes it form the input stream.
4782
4783 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
4784
4785         * ExternalTemplate.h:
4786         * ExternalTemplate.C:
4787         * insetexternal.h:
4788         * insetexternal.C: move form to GUII
4789
4790 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
4791
4792         * insetinclude.h:
4793         * insetinclude.C: add InsetIncludeParams, use
4794         composition rather than derivation of InsetCommand
4795
4796 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
4797
4798         * insettoc.C (Ascii): use the Buffer typedefs
4799
4800 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
4801
4802         * insettoc.C (Ascii): implement for dynamic number of lists
4803
4804         * insetcaption.[Ch]: update from new_insets branch
4805         * insetfloat.[Ch]: ditto
4806
4807 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
4808
4809         * insetexternal.C:
4810         * figinset.C: use new File Dialog
4811
4812 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
4813
4814         * insettext.C: changes becuase of ParagraphParameters.
4815
4816 2001-02-28  Baruch Even  <baruch@ev-en.org>
4817
4818         * insetgraphics.C (updateInset): Changed due to the change in
4819         GraphicsCache.
4820
4821 2001-02-26  Juergen Vigna  <jug@sad.it>
4822
4823         * insettext.C (SetFont): Set Undo only if we have selection (as it is
4824         handled in LyXText).
4825
4826 2001-02-23  Juergen Vigna  <jug@sad.it>
4827
4828         * insettext.C (draw): some small repainting fixes.
4829         (LocalDispatch): put the sel_cursor stuff after the insert of chars.
4830
4831         * inset.C (LocalDispatch): changed action to be a kb_action (as it
4832         should be) and not an int.
4833
4834         * insettabular.C (LocalDispatch): ditto
4835
4836         * insettext.C (LocalDispatch): ditto
4837
4838         * insetcollapsable.C (LocalDispatch): ditto
4839
4840 2001-02-22  Juergen Vigna  <jug@sad.it>
4841
4842         * insettabular.C (LocalDispatch): return DISPATCHED if we cannot
4843         DISPATCH it and we don't have a locking_inset.
4844
4845 2001-02-21  Baruch Even  <baruch@ev-en.org>
4846
4847         * insetgraphics.[Ch]: Changed to use boost::shared_ptr<GraphicsCacheItem>
4848         instead of GraphicsCacheItem *.
4849
4850 2001-02-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4851
4852         * insetcollapsable.C (getLyXText): add const qualifier to second
4853         parameter.
4854
4855 2001-02-22  Juergen Vigna  <jug@sad.it>
4856
4857         * insettext.C (getLyXText): honor the recursive parameter.
4858         (SetUpdateStatus): set need_update to CURSOR_PAR if LyXText needs it.
4859
4860         * inset.C (getLyXText): added bool recursive parameter.
4861
4862         * insettext.C (SetUpdateStatus): or the update codes.
4863         (draw): check need_update with &.
4864         (InsetButtonPress): set no_selection to not put a selection when
4865         entering an inset and it is redraws in another spot.
4866
4867         * insettext.h: made need_update an int.
4868
4869 2001-02-20  Baruch Even  <baruch@ev-en.org>
4870
4871         * insetgraphics.h:
4872         * insetgraphisc.C: Changed to use better semantics when loading images
4873         for inline view. Now it doesn't keep the pixmap itself but it's holder.
4874
4875 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
4876
4877         * insetcommand.h:
4878         * inseterror.h:
4879         * insetgraphics.C: change name of "hide" signal to "hideDialog",
4880         consistent with InsetTabular.
4881
4882 2001-02-19  Juergen Vigna  <jug@sad.it>
4883
4884         * insettabular.C (LocalDispatch): implement PAGE up/down.
4885
4886         * insettext.C (draw): clear all of it on need_update==INIT too!
4887
4888         * insettabular.C (InsetUnlock): always clear the selection.
4889
4890         * inset.C (scroll): normally we only want to scroll the inset until
4891         it is fully visible so if top_x + offset > 20 then just set scx to 0.
4892
4893 2001-02-14  Juergen Vigna  <jug@sad.it>
4894
4895         * insettabular.C (LocalDispatch): remove x_fix as it is not used.
4896         (resetPos): fixed scroll behaviour.
4897         (LocalDispatch): do an update if moving cursor inside a table cell
4898         requests a scroll of the tabular.
4899
4900 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
4901
4902         * insettext.C (textWidth): constify local var
4903
4904         * insettabular.C: small cleanup.
4905
4906         * insetfoot.C (Latex): constify local var
4907
4908         * insetcollapsable.C: small cleanup.
4909
4910         * figinset.C (runqueue): use compare instead of strcmp
4911
4912 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
4913
4914         * insettext.C:
4915         * insetinfo.C: remove cruft
4916
4917 2001-02-14  Juergen Vigna  <jug@sad.it>
4918
4919         * insettext.C (SetUpdateStatus): added a BufferView * parameter.
4920
4921 2001-02-13  Juergen Vigna  <jug@sad.it>
4922
4923         * insettext.C (InsertInset): don't move left (is this right?)
4924
4925         * insettabular.C (LocalDispatch): use of the no_draw variable
4926
4927         * insettabular.h: new no_draw variable to stop redraw
4928
4929         * insettabular.C (TabularFeatures): fixed update for alignment change
4930
4931 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
4932
4933         * insetinclude.C:
4934         * insetbib.h:
4935         * insetbib.C: move dialogs to frontends/
4936
4937 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
4938
4939         * insettext.C (LocalDispatch): Restore the language if the inset
4940         becomes empty.
4941
4942 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
4943
4944         * insettext.C (moveRightIntern): Update the selection cursor.
4945         (moveLeftIntern): Ditto.
4946
4947 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4948
4949         * Makefile.am: remove BoundingBox.h
4950
4951         * BoundingBox.h: removed
4952
4953 2001-02-08  Dekel Tsur  <dekelts@tau.ac.il>
4954
4955         * insettext.C (LocalDispatch): Update selection cursor when moving
4956         cursor to the right.
4957         (moveRightIntern): Call to CursorRight with 2 argument eqaul to false.
4958         (moveLeftIntern): Ditto.
4959
4960 2001-02-05  Baruch Even  <baruch.even@writeme.com>
4961
4962         * insetgraphics.C: Updated automatic image conversion, it now goes into
4963         temporary directory instead of with the image itself.
4964
4965 2001-01-21  Baruch Even  <baruch@ev-en.org>
4966
4967         * insetgraphics.C: Added Docbook support. Added Automatic image conversion
4968         to EPS or PNG when needed (support bitmap graphics).
4969
4970 2000-11-02  Baruch Even  <baruch@ev-en.org>
4971
4972         * insetgraphics.C:
4973         * insetgraphiscParams.C: Some cleaning up, changing from std::endl to '\n'
4974         and removal of commented out code.
4975
4976 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
4977
4978         * insetbib.C (callback): Update citations if the key has changed.
4979
4980 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
4981
4982         * insetbib.C (InsetBibKey): Better computation of default key.
4983         (getScreenLabel) Show both the key and the label.
4984         (getBibLabel): New method.
4985         (callback): Force a redraw if the inset have been changed.
4986
4987 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
4988
4989         * insetref.C (getType, getName): Move methods from
4990         src/frontends/xforms/FormRef.C.
4991
4992 2001-01-12  Dekel Tsur  <dekelts@tau.ac.il>
4993
4994         * insettabular.C: Various improvements (use only one dummy position).
4995
4996 2001-01-25  Dekel Tsur  <dekelts@tau.ac.il>
4997
4998         * insetbib.C (bibitemWidest): Use lyxfont::width instead of
4999         par->bibkey->width. This fixes the crashes when running without
5000         gui or when having included documents.
5001
5002 2001-01-22  Dekel Tsur  <dekelts@tau.ac.il>
5003
5004         * insetcommand.C (getAsString, setFromString): Cleanup.
5005
5006 2001-01-21  Dekel Tsur  <dekelts@tau.ac.il>
5007
5008         * insetref.C: Add the array InsetRef::types that contains
5009         information about all supported reference types.
5010
5011 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5012
5013         * lyxinset.h: remove trailing comma in enum.
5014
5015 2001-01-17  John Levon  <moz@compsoc.man.ac.uk>
5016
5017         * insettext.C: kill LyXBell.