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