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