]> git.lyx.org Git - features.git/blob - ChangeLog
Dekel language/encoding patch + a few fixes
[features.git] / ChangeLog
1 2000-10-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2
3         * lib/Makefile.am (pkgdata_DATA): add encoding and languages
4
5         * src/tabular.h: add a few std:: qualifiers.
6
7         * src/encoding.C: add using directive.
8         * src/language.C: ditto.
9
10         * src/insets/insetquotes.C (Validate): use languages->lang()
11         instead of only language.
12
13 2000-10-07  Dekel Tsur  <dekelts@tau.ac.il>
14
15         * lib/languages: New file.
16
17         * lib/encodings: New file.
18
19         * src/language.C (Languages): New class.
20         (read): New method. Reads the languages from the 'languages' file.
21
22         * src/encoding.C (Encodings): New class.
23         (read): New method. Reads the encodings from the 'encodings' file.
24
25         * src/lyx_main.C (init): Call to LyXSetStyle() after languages
26         initialization.
27
28         * src/bufferparams.h and a lot of files: Deleted the member language,
29         and renamed language_info to language
30
31         * src/buffer.C (makeLaTeXFile): Use babel() instead of lang()
32         * src/lyxfont.C (latexWriteStartChanges): ditto.
33         * src/paragraph.C (validate,TeXOnePar): ditto.
34         
35         * src/lyxfont.C (update): Restored deleted code.
36
37         * src/frontends/xforms/FormDocument.C (build): Made the combox taller
38
39 2000-10-10  Angus Leeming <a.leeming@ic.ac.uk>
40
41        * src/BufferView_pimpl.C (buffer): cleaned up a little.
42
43        * src/insets/figinset.[Ch]:
44        * src/insets/insetinclude.[Ch]:
45        * src/insets/insetinclude.[Ch]:
46        * src/insets/insetparent.[Ch]:
47        * src/insets/insetref.[Ch]:
48        * src/insets/insettabular.[Ch] (c-tor): Buffer passed as const &.
49
50        * src/insets/*.[Ch]:
51        * src/mathed/formula.[Ch]:
52        * src/mathed/formulamacro.C (Clone): passed Buffer const &.
53
54        * src/buffer.C (parseSingleLyXformat2Token, readInset):
55        * src/lyx_cb.C (FigureApplyCB):
56        * src/lyxfunc.C (getStatus, Dispatch):
57        * src/frontends/xforms/FormTabular.C:  use modified c-tors to some
58        insets.
59
60        * src/lyxfunc.C (Dispatch): string "ref" not used. Removed.
61
62        * src/converter.[Ch] (Formats::View):
63        * src/lyx_cb.[Ch] (ShowMessage): constify Buffer * parameter.
64
65        * src/paragraph.C (CopyIntoMinibuffer, Clone): Insets::Clone() passed
66        *current_view->buffer(). This will change later, but this patch is way
67        big enough already!
68
69 >>>>>>> 1.592
70 2000-10-09  Juergen Vigna  <jug@sad.it>
71
72         * src/text.C (GetRow): small fix.
73
74         * src/BufferView_pimpl.C (cursorPrevious): 
75         (cursorNext): added LyXText parameter to function.
76
77         * src/insets/insettabular.C (LocalDispatch): activate cell inset on
78         keypress depending on cursor position.
79
80 2000-10-06  Juergen Vigna  <jug@sad.it>
81
82         * src/insets/insettabular.C (Ascii): finally call right ascii-function.
83         (copySelection): redone this function and also copy ascii representa-
84         tion to clipboard.
85
86         * src/tabular.C (Ascii): 
87         (AsciiPrintCell): 
88         (AsciiBottomHLine): 
89         (AsciiTopHLine): 
90         (print_n_chars): new functions to realize the ascii export of tabulars.
91
92 2000-10-05  Juergen Vigna  <jug@sad.it>
93
94         * src/lyx_gui_misc.C (updateAllVisibleBufferRelatedDialogs): small fix
95         if we don't have a buffer.
96
97 2000-10-10  Allan Rae  <rae@lyx.org>
98
99         * src/frontends/xforms/FormPreferences.[Ch] (hide): Fix the problem
100         with closing dialog.  It seems that nested tabfolders require hiding
101         of inner tabfolders before hiding the dialog itself.  Actually all I
102         did was hide the active outer folder.
103
104         * src/BufferView_pimpl.C (buffer): don't call updateBufferDependent
105         unless there really is a buffer.  hideBufferDependent is called
106         instead.
107
108         * po/Makefile.in.in (POTFILES.in): one little tweak to ensure
109         POTFILES.in stays in $(srcdir).
110
111 2000-10-09  Dekel Tsur  <dekelts@tau.ac.il>
112
113         * lib/lyxrc.example: Few changes.
114
115 2000-10-05  Angus Leeming <a.leeming@ic.ac.uk>
116
117         * src/BufferView_pimpl.C (buffer): only need one the
118         updateBufferDependent signal to be emitted once! Moved to the end of
119         the method to allow bv_->text to be updated first.
120
121         * src/frontends/xforms/FormBase.[Ch]: replaced the two signals uSignal_
122         and hSignal_ with Dialogs * and BufferDependency variables.
123         New Buffer * parent_, initialised when the dialog is launched. Used to
124         check whether to update() or hide() dialog in the new, private
125         updateOrHide() method that is connected to the updateBufferDependent
126         signal. Daughter classes dictate what to do using the
127         ChangedBufferAction enum, passed to the c-tor.
128
129         * src/frontends/xforms/FormCitation.C:
130         * src/frontends/xforms/FormCommand.C:
131         * src/frontends/xforms/FormCopyright.C:
132         * src/frontends/xforms/FormDocument.C:
133         * src/frontends/xforms/FormError.C:
134         * src/frontends/xforms/FormIndex.C:
135         * src/frontends/xforms/FormPreferences.C:
136         * src/frontends/xforms/FormPrint.C:
137         * src/frontends/xforms/FormRef.C:
138         * src/frontends/xforms/FormToc.C:
139         * src/frontends/xforms/FormUrl.C (c-tor): modified call to FormBase
140         c-tor.
141
142         * src/frontends/xforms/FormCommand.[Ch] (c-tor) passed a
143         ChangedBufferAction enum.
144
145         * src/frontends/xforms/FormParagraph.[Ch]
146         * src/frontends/xforms/forms/form_paragraph.fd: now derived from
147         FormBase.
148         
149         * src/frontends/xforms/FormToc.h (updateOrHide): override default
150         behaviour. Calls update() only.
151
152 2000-10-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
153
154         * lib/bind/cua.bind: fix a bit.
155         * lib/bind/emacs.bind: ditto.
156
157         * lib/bind/menus.bind: remove real menu entries from there.
158
159         * src/spellchecker.C: make sure we only include strings.h when
160         _AIX is defined.        
161
162 2000-10-05  Dekel Tsur  <dekelts@tau.ac.il>
163
164         * src/frontends/xforms/Menubar_pimpl.C (get_new_submenu): New
165         function. It enlarges the maximum number of pup when needed.
166         (add_toc2): Open a new menu if maximum number of items per menu has 
167         reached.
168         
169 2000-10-05  John Levon  <moz@compsoc.man.ac.uk>
170
171         * src/frontends/kde/FormPrint.C: fix error reporting
172
173         * src/frontends/xforms/FormDocument.C: fix compiler
174         warnings
175
176         * lib/.cvsignore: add Literate.nw
177
178 2000-10-05  Dekel Tsur  <dekelts@tau.ac.il>
179
180         * buffer.C
181         * bufferview_funcs.[Ch]
182         * lyxfont.[Ch]
183         * text.C
184         * text2.C: Add support for numbers in RTL text.
185
186 2000-10-06  Allan Rae  <rae@lyx.org>
187
188         * po/Makefile.in.in (POTFILES.in, POTFILES): Fixed
189         to be gettext.m4 friendly again.  ext_l10n.h is now
190         generated into $top_srcdir instead of $top_builddir
191         so that lyx.pot will be built correctly -- without
192         duplicate parsing of ext_l10n.h.
193
194 2000-10-04  John Levon  <moz@compsoc.man.ac.uk>
195
196         * src/frontends/kde/FormCitation.C: make the dialog
197         behave more sensibly
198
199 2000-10-03  John Levon  <moz@compsoc.man.ac.uk>
200
201         * config/kde.m4: fix consecutive ./configure runs,
202         look for qtarch, fix library order
203
204         * src/frontends/kde/Makefile.am: tidy up,
205         add Print dialog, add .dlg dependencies
206
207         * src/frontends/kde/FormPrint.C:
208         * src/frontends/kde/FormPrint.h:
209         * src/frontends/kde/formprintdialog.C:
210         * src/frontends/kde/formprintdialog.h:
211         * src/frontends/kde/formprintdialogdata.C:
212         * src/frontends/kde/formprintdialogdata.h:
213         * src/frontends/kde/dlg/formprintdialog.dlg: add
214         print dialog
215
216         * src/frontends/kde/dlg/README: Added explanatory readme
217         
218         * src/frontends/kde/dlg/checkinitorder.pl: small perl
219         script to double-check qtarch's output
220
221         * src/frontends/kde/formindexdialog.C:
222         * src/frontends/kde/formindexdialogdata.C:
223         * src/frontends/kde/formindexdialogdata.h:
224         * src/frontends/kde/dlg/formindexdialog.dlg: update
225         for qtarch, minor fixes
226
227 2000-10-05  Allan Rae  <rae@lyx.org>
228
229         * src/BufferView_pimpl.C (buffer): don't hide all buffer dependent
230         dialogs when switching buffers update them instead.  It's up to each
231         dialog to decide if it should still be visible or not.
232         update() should return a bool to control visiblity within show().
233         Or perhaps better to set a member variable and use that to control
234         visibility.
235
236         * lib/build-listerrors: create an empty "listerrors" file just to stop
237         make trying to regenerate it all the time if you don't have noweb
238         installed.
239
240         * .cvsignore: ignore distdir and dist.tar.gz using rule lyx-*
241
242         * po/Makefile.in.in (ext_l10n.h): added a rule to build
243         $(top_builddir)/src/ext_l10n.h.  The rule has to go here because po/
244         is built before src/ and ext_l10n.h isn't actually needed to build lyx.
245         (POTFILES.in): added a rule to build POTFILES.in.  It is also now safe
246         to rebuild POTFILES.in with scrap *.[hC] files in xforms/forms/.
247
248         * autogen.sh: po/POTFILES.in and src/ext_l10n.h now generated by make.
249
250 2000-10-04  Angus Leeming <a.leeming@ic.ac.uk>
251
252         * src/BufferView_pimpl.C (buffer): emit hideBufferDependent when
253         deleting buffer. Closes all buffer-dependent dialogs.
254
255         * src/frontends/xforms/FormBase.[Ch] (input): modified to pass
256         FL_OBJECT * also.
257         * src/frontends/xforms/FormCitation.[Ch]:
258         * src/frontends/xforms/FormPreferences.[Ch]:
259         * src/frontends/xforms/FormPrint.[Ch]:
260         * src/frontends/xforms/FormRef.[Ch]:
261         * src/frontends/xforms/FormUrl.[Ch]: ditto
262
263         * src/frontends/xforms/FormDocument.[Ch]:
264         * src/frontends/xforms/forms/form_document.C.patch:
265         * src/frontends/xforms/forms/form_document.fd: all input callbacks now
266         pass through a single input() function.
267
268 2000-10-04  John Levon  <moz@compsoc.man.ac.uk>
269
270         * lib/build-listerrors: return status as OK
271
272 2000-10-04  Dekel Tsur  <dekelts@tau.ac.il>
273
274         * lib/lyxrc.example: Updated to new export code
275
276 2000-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
277
278         * src/mathed/math_parser.C (LexInitCodes): set lexcode of "@" to
279         LexAlpha. 
280
281         * src/mathed/formula.C (LocalDispatch): add '@' as an LM_TC_VAR
282         character. 
283
284         * lib/layouts/amsart.layout: include lyxmacros.inc, so that
285         LyX-Code is defined.
286         * lib/layouts/amsbook.layout: ditto.
287
288         * boost/Makefile.am: fix typo. 
289
290         * src/frontends/xforms/Menubar_pimpl.C (create_submenu): use
291         Menu::expand. 
292         (add_lastfiles): removed.
293         (add_documents): removed.
294         (add_formats): removed.
295
296         * src/frontends/Menubar.C: remove useless "using" directive.
297
298         * src/MenuBackend.h: add a new MenuItem constructor.
299
300         * src/MenuBackend.[Ch] (Menu::expand): new method. Used in the
301         xforms frontend.
302
303 2000-10-04  Allan Rae  <rae@lyx.org>
304
305         * lib/Makefile.am (listerrors):
306         * lib/build-listerrors: make $builddir != $srcdir compiles work again.
307         I haven't got notangle installed so Kayvan please test. The output
308         should end up in $builddir.  This also allows people who don't have
309         noweb installed to complete the make process without error.
310
311         * src/frontends/xforms/FormCommand.[Ch] (showInset):
312         * src/frontends/xforms/FormError.[Ch] (showInset): fix warnings found
313         by JMarc's picky compiler.
314
315 2000-10-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
316
317
318         * src/insets/insettabular.C (setPos): change for loop to not use
319         sequencing operator. Please check this Jürgen.
320
321         * src/frontends/xforms/Menubar_pimpl.C (makeMenubar): use "c"
322         instead of 'c'
323         * src/insets/insetcite.C (getScreenLabel): ditto
324         * src/support/filetools.C (QuoteName): ditto
325         (ChangeExtension): ditto
326
327         * src/BufferView_pimpl.C (scrollCB): make heigt int
328
329         * src/BufferView2.C (insertInset): comment out unused arg
330
331         * boost/Makefile.am (EXTRADIST): new variable
332
333 2000-10-03  Dekel Tsur  <dekelts@tau.ac.il>
334
335         * src/exporter.C (IsExportable): Fixed
336         
337         * lib/configure.m4: Small fix
338
339 2000-10-03  Dekel Tsur  <dekelts@tau.ac.il>
340
341         * src/insets/insetbutton.C (width): Changed to work with no GUI.
342         * src/insets/insetbib.C (bibitemWidest): ditto.
343         * src/lyx_gui_misc.C (AskQuestion,AskConfirmation,askForText): ditto.
344             
345 2000-10-03  Juergen Vigna  <jug@sad.it>
346
347         * src/BufferView2.C (theLockingInset): removed const because of
348         Agnus's compile problems.
349
350         * src/insets/insettext.C (LocalDispatch): set the language of the
351         surronding paragraph on inserting the first character.
352
353         * various files: changed use of BufferView::the_locking_inset.
354         
355         * src/BufferView2.C (theLockingInset): 
356         (theLockingInset): new functions.
357
358         * src/BufferView.h: removed the_locking_inset.
359
360         * src/lyxtext.h: added the_locking_inset
361
362         * src/BufferView_pimpl.C (checkInsetHit): y_tmp form uint to int.
363
364         * src/insets/lyxinset.h: added bool to ShowInsetCursor definition.
365
366 2000-10-02  Angus Leeming <a.leeming@ic.ac.uk>
367
368         * src/mathed/formula.C (IsMacro): declared but not referenced; removed.
369         * src/mathed/math_cursor.C (IsAlpha): ditto.
370         * src/mathed/math_inset.C (strnew): ditto.
371         * src/mathed/math_iter.C: SizeFont declared but not referenced;removed.
372         (IMetrics): cxp set but never used; removed.
373         * src/insets/figinset.C (InitFigures): removed redundant for loop, now
374         that the variable in question has been removed also!
375
376
377         * src/insets/insetbib.[Ch]: remove need to store Buffer * owner by
378         using the Buffer * passed to Latex(), using the BufferView * passed to
379         bibitemMaxWidth() bibitemWidest() and by passing a Buffer* to getKeys()
380
381         * src/insets/insetinclude.C: use the Buffer * passed to Latex(),
382         Linuxdoc() and DocBook() rather than the stored Buffer * master.
383
384         * src/lyxfunc.C (Dispatch): used new InsetBibtex c-tor
385         * src/buffer.C (readInset): used new InsetBibtex c-tor
386         * (getBibkeyList): used new InsetBibtex::getKeys
387
388 2000-10-01  Dekel Tsur  <dekelts@tau.ac.il>
389
390         * lib/configure.m4
391         * lib/build-listerrors
392         * src/converter.C
393         * src/exporter.C: Add literate programming support to the export code
394
395         * src/buffer.C
396         * src/lyx_cb.C: Remove old literate code.
397
398         * src/lyxrc.[Ch]: Remove many obsolete (due to new export code)
399         variables.
400
401         * src/lyxfunc.C (getStatus): Use Exporter::IsExportable
402         * src/converter.C (View, Convert): Use QuoteName.
403
404         * src/insets/figinset.C (Preview): Use Formats::View.
405
406         * lib/configure.m4: Add sgml->dvi converter to lyxrc.default
407         
408 2000-10-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
409
410         * src/lyxfunc.C (Dispatch): move declaration of text variable at
411         the top of the function, because compaq cxx complains that the
412         "goto exit_with_message" when the function is disabled bypasses
413         its initialization.
414         (MenuNew): try a better fix for the generation of new file names.
415         This time, I used AddName() instead of AddPath(), hoping Juergen
416         will be happier :)
417
418 2000-10-03  Allan Rae  <rae@lyx.org>
419
420         * src/frontends/xforms/forms/form_preferences.fd:
421         * src/frontends/xforms/FormPreferences.[Ch]: redesign of dialog using
422         nested tabfolders has begun.  The old "Miscellaneous" was renamed as
423         "Look and Feel"->"General" but will need to be split up further into
424         general output and general input tabs.  Current plan is for four outer
425         tabfolders: "Look and Feel" for colours, bindings, fonts and other HCI
426         stuff; "Inputs" for input and import configuration; "Outputs" for
427         output and export configuration; and one more whatever is left over
428         called "General".  The leftovers at present look like being which
429         viewers to use, spellchecker, language support and might be better
430         named "Support".  I've put "Paths" in "Inputs" for the moment as this
431         seems reasonable for now at least.
432         One problem remains: X error kills LyX when you close Preferences.
433
434 2000-10-02  Angus Leeming <a.leeming@ic.ac.uk>
435
436         * src/frontends/xforms/FormBase.[Ch]: removed "meaningless" const.
437         qualifier from form()
438         * src/frontends/xforms/FormCitation.[Ch]:
439         * src/frontends/xforms/FormCopyright.[Ch]:
440         * src/frontends/xforms/FormDocument.[Ch]:
441         * src/frontends/xforms/FormError.[Ch]:
442         * src/frontends/xforms/FormIndex.[Ch]:
443         * src/frontends/xforms/FormPreferences.[Ch]:
444         * src/frontends/xforms/FormPrint.[Ch]:
445         * src/frontends/xforms/FormRef.[Ch]:
446         * src/frontends/xforms/FormToc.[Ch]:
447         * src/frontends/xforms/FormUrl.[Ch]: ditto.
448
449         * src/frontends/xforms/FormCitation.[Ch]:
450         * src/frontends/xforms/FormIndex.[Ch]:
451         * src/frontends/xforms/FormRef.[Ch]:
452         * src/frontends/xforms/FormUrl.[Ch]: Renamed a few buttons, consistent
453         with Allan's naming policy
454         
455         * src/frontends/xforms/FormCitation.C: some static casts to remove
456         compiler warnings.
457
458 2000-10-02  Juergen Vigna  <jug@sad.it>
459
460         * src/insets/insettabular.C (LocalDispatch): fixed selection code,
461         now you can type or do stuff inside the table-cell also when in dummy
462         position, fixed visible cursor.
463
464         * src/insets/insettext.C (Edit): fixing cursor-view position.
465
466         * src/lyxfunc.C (Dispatch): use * text variable so that it can
467         be used for equal functions in lyxfunc and insettext.
468
469         * src/text.C (GetVisibleRow): fixed a small clear_area bug.
470
471 2000-10-02  John Levon  <moz@compsoc.man.ac.uk>
472
473         * src/frontends/gnome/FormCitation.h:
474         * src/frontends/gnome/FormCopyright.h:
475         * src/frontends/gnome/FormIndex.h:
476         * src/frontends/gnome/FormPrint.h:
477         * src/frontends/gnome/FormToc.h:
478         * src/frontends/gnome/FormUrl.h:
479         * src/frontends/kde/FormCitation.h:
480         * src/frontends/kde/FormCopyright.h:
481         * src/frontends/kde/FormIndex.h:
482         * src/frontends/kde/FormRef.h:
483         * src/frontends/kde/FormToc.h:
484         * src/frontends/kde/FormUrl.h: fix remaining users of
485         support/utility.hpp 
486
487 2000-10-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
488
489         * src/buffer.C (linuxDocHandleFootnote): remove const modifier
490         from depth argument.
491         (DocBookHandleCaption): ditto.
492         (DocBookHandleFootnote): ditto.
493         (SimpleDocBookOnePar): ditto.
494
495         * src/frontends/xforms/FormDocument.h (form): remove extra
496         FormDocument:: qualifier.
497
498         * sigc++/macros/basic_signal.h.m4: remove erroneous virtual
499         destructor. 
500         * sigc++/handle.h: ditto.
501
502         * src/lyx_gui_misc.C: add "using" directive.
503
504         * src/cheaders/cstddef: new file, needed by the boost library (for
505         compaq cxx).
506
507 2000-10-02  Juergen Vigna  <jug@sad.it>
508
509         * src/insets/insettext.C (SetFont): better support.
510
511         * src/insets/insettabular.C (draw): fixed drawing of single cell.
512
513         * src/screen.C (DrawOneRow): some uint refixes!
514
515 2000-10-02  Allan Rae  <rae@lyx.org>
516
517         * boost/.cvsignore: ignore Makefile as well
518
519         * src/lyxfunc.C (Dispatch): missing break; and moved the '}' for
520         LFUN_UNKNOWN_ACTION: so it doesn't wrap around default:.
521
522         * src/frontends/xforms/FormPreferences.[Ch] (restore): D'oh.
523         Left this one out by accident.
524
525         * src/frontends/xforms/FormBase.h (restore): default to calling
526         update() since that will restore the original/currently-applied values.
527         Any input() triggered error messages will require the derived classes
528         to redefine restore().
529
530         * src/frontends/xforms/FormDocument.C: initialize a few variables to
531         avoid a segfault.  combo_doc_class is the main concern.
532
533 2000-10-01  Kayvan A. Sylvan  <kayvan@camel.internal.sylvan.com>
534
535         * Simplify build-listerrors in view of GUI-less export ability!
536
537 2000-10-01  Dekel Tsur  <dekelts@tau.ac.il>
538
539         * src/lyx_main.C (easyParse): Disable gui when exporting
540
541         * src/insets/figinset.C: 
542         * src/LaTeX.C
543         * src/converter.C
544         * src/lyx_gui_misc.C
545         * src/tabular.C: Changes to allow no-gui.
546
547 2000-10-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
548
549         * src/support/utility.hpp: removed file
550         * src/support/block.h: removed file
551
552         * src/support/Makefile.am (libsupport_la_SOURCES): remove block.h
553         and utility.hpp
554
555         * src/mathed/formula.C: add support/lyxlib.h
556         * src/mathed/formulamacro.C: ditto
557
558         * src/bufferparams.h: use boost/array.hpp instead of support/block.h
559         * src/lyxparagraph.h: ditto
560
561         * src/Makefile.am (BOOST_INCLUDES): the boost include dir
562         * src/frontends/Makefile.am (INCLUDES): ditto
563         * src/frontends/gnome/Makefile.am (BOOST_INCLUDES): ditto
564         * src/frontends/kde/Makefile.am (BOOST_INCLUDES): ditto
565         * src/frontends/xforms/Makefile.am (BOOST_INCLUDES): ditto
566         * src/graphics/Makefile.am (BOOST_INCLUDES): ditto
567         * src/insets/Makefile.am (BOOST_INCLUDES): ditto
568         * src/mathed/Makefile.am (BOOST_INCLUDES): ditto
569
570         * src/BufferView.h: use boost/utility.hpp
571         * src/LColor.h: ditto
572         * src/LaTeX.h: ditto
573         * src/LyXAction.h: ditto
574         * src/LyXView.h: ditto
575         * src/bufferlist.h: ditto
576         * src/lastfiles.h: ditto
577         * src/layout.h: ditto
578         * src/lyx_gui.h: ditto
579         * src/lyx_main.h: ditto
580         * src/lyxlex.h: ditto
581         * src/lyxrc.h: ditto
582         * src/frontends/ButtonPolicies.h: ditto
583         * src/frontends/Dialogs.h: ditto
584         * src/frontends/xforms/FormBase.h: ditto
585         * src/frontends/xforms/FormGraphics.h: ditto
586         * src/frontends/xforms/FormParagraph.h: ditto
587         * src/frontends/xforms/FormTabular.h: ditto
588         * src/graphics/GraphicsCache.h: ditto
589         * src/graphics/Renderer.h: ditto
590         * src/insets/ExternalTemplate.h: ditto
591         * src/insets/insetcommand.h: ditto
592         * src/support/path.h: ditto
593
594         * config/lyxinclude.m4 (LYX_PROG_CXX): change clause for 2.96
595         and introduce clause for 2.97.
596
597         * boost/libs/README: new file
598
599         * boost/boost/utility.hpp: new file
600
601         * boost/boost/config.hpp: new file
602
603         * boost/boost/array.hpp: new file
604
605         * boost/Makefile.am: new file
606
607         * boost/.cvsignore: new file
608
609         * configure.in (AC_OUTPUT): add boost/Makefile
610
611         * Makefile.am (SUBDIRS): add boost
612
613 2000-10-01  Dekel Tsur  <dekelts@tau.ac.il>
614
615         * src/support/lstrings.C (suffixIs): Fixed.
616
617 2000-10-01  Allan Rae  <rae@lyx.org>
618
619         * src/PrinterParams.h: moved things around to avoid the "can't
620         inline call" warning.
621
622         * src/frontends/xforms/RadioButtonGroup.h: turned a comment
623         into doc++ documentation.
624
625         * src/frontends/xforms/FormCommand.[Ch]: support button policy
626
627         * src/frontends/xforms/FormRef.C: make use of button controller
628         * src/frontends/xforms/FormDocument.[Ch]: convert to use FormBase
629         cleaned up button controller usage.
630         * src/frontends/xforms/FormPreferences.[Ch]: convert to use FormBase
631         * src/frontends/xforms/FormPrint.[Ch]: convert to use FormBase and
632         use the button controller
633
634         * src/frontends/xforms/forms/*.fd: and associated generated files
635         updated to reflect changes to FormBase.  Some other FormXxxx files
636         also got minor updates to reflect changes to FormBase.
637
638         * src/frontends/xforms/FormBase.[Ch]: (ok, cancel): new
639         (hide): made virtual.
640         (input): return a bool. true == valid input
641         (RestoreCB, restore): new
642         (CancelCB, OKCB): renamed from HideCB and ApplyHideCB.
643         Changes to allow derived dialogs to use a ButtonController and
644         make sense when doing so: OK button calls ok() and so on.
645
646         * src/frontends/xforms/ButtonController.h (class ButtonController):
647         Switch from template implementation to taking Policy parameter.
648         Allows FormBase to provide a ButtonController for any dialog.
649
650         * src/frontends/xforms/FormPrint.C (connect): setup sizing at show-time
651         Probably should rename connect and disconnect.
652         (apply): use the radio button groups
653         (form): needed by FormBase
654         (build): setup the radio button groups
655
656 2000-09-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
657
658         * several files: type changes to reduce the number of warnings and
659         to unify type hangling a bit. Still much to do. 
660
661 2000-09-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
662
663         * lib/images/*: rename a bunch of icons to match Dekel converter
664         changes. 
665
666         * src/buffer.h (SimpleLinuxDocOnePar): remove const qualifier to
667         last parameter.
668
669         * src/frontends/xforms/FormBase.C (disconnect): remove bogus test. 
670
671         * sigc++/macros/basic_signal.h.m4: fix class Signal_ to have a
672         virtual destructor
673         * sigc++/handle.h: ditto for class Handle. 
674
675 2000-09-27  John Levon  <moz@compsoc.man.ac.uk>
676
677         * config/kde.m4: make Qt fail immediately if Qt2 is picked up
678
679 2000-09-28  Dekel Tsur  <dekelts@tau.ac.il>
680
681         * src/intl.C (InitKeyMapper): Correct the value of n due to the
682         removal of the "default" language.
683
684         * src/combox.h (getline): Check that sel > 0
685
686 2000-09-29  José Abílio Matos <jamatos@fep.up.pt>
687
688         * lib/examples/docbook_example.lyx
689         * lib/examples/docbook_article.lyx: file renamed to avoid confusion.
690
691         * lib/layouts/docbook-book.layout: new docbook book layout.
692
693         * lib/layouts/linuxdoc.layout: LatexName of Style SGML is now dummy.
694         
695         * lib/layouts/manpage.layout: Same as above. Style SubSection removed.
696
697         * src/insets/figinset.C (DocBook):fixed small typo.
698
699         * src/insets/insetinclude.C (DocBook): new export for verbatim type.
700
701         * src/insets/insetinclude.h: string include_label doesn't need to be
702         mutable.
703         
704 2000-09-29  Allan Rae  <rae@lyx.org>
705
706         * src/frontends/xforms/FormBase.[Ch] (connect, disconnect): new.
707         Allow derived type to control connection and disconnection from signals
708         of its choice if desired.
709
710 2000-09-28  Juergen Vigna  <jug@sad.it>
711
712         * src/insets/insettabular.C (update): fixed cursor setting when
713         the_locking_inset changed.
714         (draw): made this a bit cleaner.
715         (InsetButtonPress): fixed!
716
717         * various files: added LyXText Parameter to fitCursor call.
718         
719         * src/BufferView.C (fitCursor): added LyXText parameter.
720
721         * src/insets/insettabular.C (draw): small draw fix.
722
723         * src/tabular.C: right setting of left/right celllines.
724
725         * src/tabular.[Ch]: fixed various types in funcions and structures. 
726         * src/insets/insettabular.C: ditto
727         * src/frontends/xforms/FormTabular.C: ditto
728
729 2000-09-28  Allan Rae  <rae@lyx.org>
730
731         * src/paragraph.C (TeXOnePar): fixed output of '\n'.  The problem was
732         that the #ifdef's had been applied to part of what should have been
733         a complete condition.  It's possible there are other tests that
734         were specific to tables that are also wrong now that InsetTabular is
735         being used. Now we need to fix the output of '\n' after a table in a
736         float for the same reason as the original condition:
737         "don't insert this if we would be adding it before or after a table
738         in a float.  This little trick is needed in order to allow use of
739         tables in \subfigures or \subtables."
740         Juergen can you check this?
741
742 2000-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
743
744         * src/insets/insettext.C (Ascii): return numer of '\n' in the text
745         outputed to the ostream.
746
747         * several files: fixed types based on warnings from cxx 
748
749 2000-09-26  John Levon  <moz@compsoc.man.ac.uk>
750
751         * src/frontends/kde/Makefile.am: fix rule for
752         formindexdialogdata_moc.C
753
754         * src/.cvsignore: add ext_l10n.h to ignore
755
756         * acconfig.h: stop messing with __STRICT_ANSI__ 
757         * config/gnome.m4: remove option to set -ansi
758         * config/kde.m4: remove option to set -ansi
759         * config/lyxinclude.m4: don't set -ansi 
760
761 2000-09-27  Juergen Vigna  <jug@sad.it>
762
763         * various files: remove "default" language check.
764         
765         * src/insets/insetquotes.C: removed use of current_view.
766
767         * src/lyxfunc.C (MenuNew): I don't know how put the AddPath here but
768         the one should have red ears by now!
769
770         * src/insets/insettext.C (LocalDispatch): fixed setting of same layouts
771         in more then one paragraph. Fixed cursor-movement/selection.
772
773         * src/frontends/xforms/FormParagraph.C: disable pagebreaks for
774         paragraphs inside a text inset.
775
776         * src/text.C (GetVisibleRow): paint top/bottom line only as wide as the
777         text-inset if this owner is an inset.
778
779 2000-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
780
781         * src/Bullet.h: changed type of font, character and size to int
782
783         * src/buffer.C (asciiParagraph): remove actcell and fname1.
784
785         * src/insets/inseturl.[Ch]: 
786         * src/insets/insetref.[Ch]:
787         * src/insets/insetlabel.[Ch]: add linelen to Ascii
788
789 2000-09-26  Angus Leeming <a.leeming@ic.ac.uk>
790
791         * src/buffer.C (readFile): block-if statement rearranged to minimise
792         bloat. Patch does not reverse Jean-Marc's change ;-)
793
794         * src/frontends/xforms/FormBase.[Ch]: Renamed some of the callbacks.
795         Class rewritten to store pointers to hide/update signals directly,
796         rather than Dialogs *. Also defined an enum to ease use. All xforms
797         forms can now be derived from this class.
798
799         * src/frontends/xforms/FormCommand.[Ch]
800         * src/frontends/xforms/FormCopyright.[Ch]: now derived from FormBase.
801
802         * src/frontends/xforms/FormError.[Ch]: moved inclusion of inseterror.h
803         out of header file.
804
805         * src/frontends/xforms/forms/form_citation.fd
806         * src/frontends/xforms/forms/form_copyright.fd
807         * src/frontends/xforms/forms/form_error.fd
808         * src/frontends/xforms/forms/form_index.fd
809         * src/frontends/xforms/forms/form_ref.fd
810         * src/frontends/xforms/forms/form_toc.fd
811         * src/frontends/xforms/forms/form_url.fd: remamed callbacks
812
813         * src/frontends/xforms/forms/makefile: small change to work with DEC sh.
814
815         * src/insets/insetfoot.C: removed redundent using directive.
816
817 2000-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
818
819         * lib/layouts/siamltex.layout: new textclass for SIAM journals,
820         from Kornelia Pietsch <pietsch@mathematik.tu-chemnitz.de>
821
822         * src/frontends/xforms/Menubar_pimpl.C: menu buttons are now
823         created in the constructors in different groups. Then set() just
824         have to show the groups as needed. This fixes the redraw problems
825         (and is how the old menu code worked).
826
827         * src/support/lyxlib.h: declare the methods as static when we do
828         not have namespaces.
829
830 2000-09-26  Juergen Vigna  <jug@sad.it>
831
832         * src/buffer.C (asciiParagraph): new function.
833         (writeFileAscii): new function with parameter ostream.
834         (writeFileAscii): use now asciiParagraph.
835
836         * various inset files: added the linelen parameter to the Ascii-func.
837         
838         * src/tabular.C (Write): fixed error in writing file introduced by
839         the last changes from Lars.
840
841         * lib/bind/menus.bind: removed not supported functions.
842
843         * src/insets/insettext.C (Ascii): implemented this function.
844
845         * src/insets/lyxinset.h (Ascii): added linelen parameter.
846
847         * src/tabular.C (write_attribute[int,string,bool]): new functions.
848         (Write): use of the write_attribute functions.
849
850         * src/bufferlist.C (close): fixed reasking question!
851
852 2000-09-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
853
854         * src/support/unlink.C src/support/remove.C src/support/mkdir.C:
855         new files use the everwhere possible.
856         
857         * several files: 
858         * src/form1.C src/form1.h src/layout_forms.C src/layout_forms.h
859         src/log_form.C src/lyx.C:
860         regenerated
861         
862         * src/buffer.C (runLaTeX): remove func
863         
864         * src/PaperLayout.C: removed file
865         * src/ParagraphExtra.C: likewise
866         * src/bullet_forms.C: likewise
867         * src/bullet_forms.h: likewise
868         * src/bullet_forms_cb.C: likewise
869         
870         * src/Makefile.am (lyx_SOURCES): remove PaperLayout.C,
871         ParagraphExtra.C, bullet_forms.C, bullet_forms.h and
872         bullet_forms_cb.C 
873
874         * several files: remove all traces of the old fd_form_paragraph,
875         and functions belonging to that.
876         
877         * several files: remove all traces of the old fd_form_document,
878         and functions belonging to that.
879         
880         * several files: constify local variables were possible.
881         
882         * several files: remove all code that was dead when NEW_EXPORT was
883         defined 
884         
885         * several files: removed string::c_str in as many places as
886         possible.
887         
888         * forms/makefile (SRCS,OBJS,COBJS): removed bullet_forms.[fd,c,C]
889         (e): be a bit more outspoken when patching
890         (updatesrc): only move files if changed.
891
892         * forms/layout_forms.h.patch: regenerated
893         
894         * forms/layout_forms.fd: remove form_document and form_paragraph
895         and form_quotes and form_paper and form_table_options and
896         form_paragraph_extra 
897
898         * forms/form1.fd: remove form_table
899
900         * forms/fdfix.sh: remove sed rules for fl_set_object_lcolor and
901         the fdui->... rewrite. Update some comments to xforms 0.88
902
903         * forms/bullet_forms.C.patch: removed file
904         * forms/bullet_forms.fd: likewise
905         * forms/bullet_forms.h.patch: likewise
906         
907         * development/Code_rules/Rules: added a section on switch
908         statements. Updated some comment to xforms 0.88.
909
910 2000-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
911
912         * src/buffer.C (readFile): make sure that the whole version number
913         is read after \lyxformat (even when it contains a comma)
914
915         * lib/ui/default.ui: change shortcut of math menu to M-a.
916
917 2000-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
918
919         * src/vspace.C (nextToken): use isStrDbl() to check for proper
920         double values.
921
922         * src/LyXView.C (updateWindowTitle): show the full files name in
923         window title, limited to 30 characters.
924
925         * src/support/lyxstring.C (lyxstring): fix it correctly this time.
926         When a number of characters has been given, we should not assume
927         that the string is 0-terminated.
928
929         * src/intl.C (InitKeyMapper): remove a bunch of string::c_str()
930         calls (fixes some memory leaks)
931         
932         * src/intl.[Ch]: add a destructor for Intl, in order to delete the
933         trans member on exit.
934
935 2000-09-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
936
937         * src/converter.C (GetReachable): fix typo.
938
939         * src/lyxlex.C (GetFloat): rewrite to use strToDbl() and
940         understand ',' instead of '.'.
941         (GetInteger): rewrite to use strToInt().
942
943 2000-09-26  Juergen Vigna  <jug@sad.it>
944
945         * src/frontends/xforms/FormParagraph.C: fixed de/activation of fields,
946         better visibility and error-message on wrong VSpace input.
947
948         * src/language.C (initL): added english again.
949
950 2000-09-25  Juergen Vigna  <jug@sad.it>
951
952         * src/frontends/kde/Dialogs.C (Dialogs): 
953         * src/frontends/gnome/Dialogs.C (Dialogs): 
954         * src/frontends/kde/Makefile.am: 
955         * src/frontends/gnome/Makefile.am: added FormParagraph from xforms.
956
957         * src/frontends/xforms/forms/makefile: added form_paragraph.fd.
958
959         * src/frontends/xforms/Dialogs.C (Dialogs): added FormParagraph.
960
961         * src/frontends/xforms/Makefile.am: added files for FormParagraph.
962
963         * src/frontends/xforms/FormParagraph.C: 
964         * src/frontends/xforms/FormParagraph.h:
965         * src/frontends/xforms/form_paragraph.C:
966         * src/frontends/xforms/form_paragraph.h:
967         * src/frontends/xforms/forms/form_paragraph.fd: new files for the new
968         paragraph layout.
969
970         * src/lyxfunc.C (Dispatch): call the new layout paragraph.
971
972         * src/tabular.C (OldFormatRead): forgot to delete the temporary
973         Paragraph-Data after use.
974
975         * src/insets/insettext.C (LocalDispatch): don't set the layout on
976         non breakable paragraphs.
977
978 2000-09-25  Garst R. Reese <reese@isn.net>
979
980         * src/language.C (initL): added missing language_country codes.
981
982 2000-09-25  Juergen Vigna  <jug@sad.it>
983
984         * src/insets/insettext.C (InsetText):
985         (deleteLyXText): remove the not released LyXText structure!
986
987 2000-09-24  Marko Vendelin <markov@ioc.ee>
988
989         * src/frontends/gnome/mainapp.C
990         * src/frontends/gnome/mainapp.h: added support for keyboard 
991         accelerators
992
993         * src/frontends/gnome/FormCitation.C
994         * src/frontends/gnome/FormCitation.h
995         * src/frontends/gnome/Makefile.am
996         * src/frontends/gnome/pixbutton.h: completed the rewrite of 
997         FormCitation to use "action area" in mainapp window
998
999         * src/frontends/gnome/Menubar_pimpl.C   
1000         * src/frontends/gnome/Menubar_pimpl.h: Gnome menu can handle
1001         large TOC.
1002
1003 2000-09-23  Dekel Tsur  <dekel@math.tau.ac.il>
1004
1005         * src/mathed/formula.C (MathFuncInset::Metrics): Use default 
1006         width/descent/ascent values if name is empty.
1007         (mathed_string_height): Use std::max.
1008
1009 2000-09-25  Allan Rae  <rae@lyx.org>
1010
1011         * src/frontends/xforms/forms/form_preferences.fd: resize to stop
1012         segfault.  This will be completely redesigned soon.
1013
1014         * sigc++: updated libsigc++.  Fixes struct timespec bug.
1015
1016         * development/tools/makeLyXsigc.sh:  .cvsignore addition
1017
1018 2000-09-23  Lars Gullik Bjønnes  <larsbj@lyx.org>
1019
1020         * several files: removed almost all traces of the old table
1021         (tabular) code.
1022
1023         * src/TableLayout.C: removed file
1024         
1025 2000-09-22  Juergen Vigna  <jug@sad.it>
1026
1027         * src/frontends/kde/Dialogs.C: added credits forms.
1028
1029         * src/frontends/gnome/Makefile.am (libgnome_la_OBJADD): added forms.
1030
1031         * src/frontends/gnome/Dialogs.C: added some forms.
1032
1033         * src/spellchecker.C (init_spell_checker): set language in pspell code
1034         (RunSpellChecker): some modifications for setting language string.
1035
1036         * src/language.[Ch]: added language_country code.
1037
1038 2000-09-21  Angus Leeming <a.leeming@ic.ac.uk>
1039
1040         * src/frontends/Dialogs.h: added new signal showError.
1041         Rearranged existing signals in some sort of alphabetical order.
1042
1043         * src/frontends/xforms/Makefile.am: added new files, FormBase.[Ch],
1044         FormError.[Ch], form_error.[Ch]
1045         * src/frontends/xforms/forms/makefile: added new file form_error.fd
1046         * src/frontends/xforms/Dialogs.C: added new xforms dialog FormError.
1047
1048         * src/frontends/xforms/FormBase.[Ch]: new base class for xforms
1049         dialogs. I think that this can be used as the base to all these
1050         dialogs.
1051
1052         * src/frontends/xforms/FormError.[Ch]
1053         * src/frontends/xforms/forms/form_error.fd: new files. Xforms
1054         implementation of InsetError dialog.
1055         
1056         * src/insets/inseterror.[Ch]: rendered GUI-independent.
1057
1058         * src/frontends/kde/Dialogs.C: added new xforms dialog FormError.
1059         * src/frontends/kde/Makefile.am: ditto
1060
1061 2000-09-21  Dekel Tsur  <dekel@math.tau.ac.il>
1062
1063         * src/mathed/math_cursor.[Ch]: Removed class members macroln and
1064         macrobf. This fixes a bug of invisible text.
1065
1066 2000-09-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1067
1068         * lib/doc/LaTeXConfig.lyx.in: updated.
1069
1070         * src/language.C (initL): remove language "francais" and change a
1071         bit the names of the two other french variations.
1072
1073         * src/support/lyxstring.C (lyxstring): do not apply strlen() on a
1074         string that may not be 0-terminated.
1075
1076 2000-09-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
1077
1078         * src/Makefile.am (lyx_SOURCES): remove table.C and Table.h
1079
1080 2000-09-20  Marko Vendelin <markov@ioc.ee>
1081
1082         * src/frontends/gnome/FormCitation.C
1083         * src/frontends/gnome/FormIndex.C
1084         * src/frontends/gnome/FormToc.C
1085         * src/frontends/gnome/FormUrl.C: cleanup the loops, reordering
1086         the variable initialization to shut up the warnings
1087
1088 2000-09-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
1089
1090         * src/table.[Ch]: deleted files
1091         
1092         * src/lyxfunc.C (Dispatch): Don't pass 0 as argument to Dispatch
1093         second arg.
1094
1095 2000-09-18  Juergen Vigna  <jug@sad.it>
1096
1097         * src/insets/insettext.C (LocalDispatch): fixed Backspace/Delete
1098         problems with selection. Inserted new LFUN_PASTESELECTION.
1099         (InsetButtonPress): inserted handling of middle mouse-button paste.
1100
1101         * src/spellchecker.C: changed word to word.c_str().
1102
1103 2000-09-16  Kayvan A. Sylvan  <kayvan@sylvan.com>
1104
1105         * src/Makefile.am: Add sources to lyx_SOURCES so they will be
1106           included in the ``make dist'' tarball.
1107
1108 2000-09-15  Juergen Vigna  <jug@sad.it>
1109
1110         * src/CutAndPaste.C (cutSelection): small fix return the right
1111         end position after cut inside one paragraph only.
1112
1113         * src/insets/insettext.C (resizeLyXText): only reset the cursor if
1114         we are locked as otherwise we don't have a valid cursor position!
1115
1116         * src/insets/figinset.C (draw): small bugfix but why is this needed???
1117
1118 2000-09-19  Angus Leeming <a.leeming@ic.ac.uk>
1119
1120         * src/frontends/kde/FormRef.C: added using directive.
1121         * src/frontends/kde/FormToc.C: ditto
1122
1123         * src/frontends/kde/formtocdialog.h: changed endl to std::endl.
1124
1125         * src/frontends/kde/FormRef.h: removed trailing comma from enums.
1126
1127 2000-09-19  Marko Vendelin <markov@ioc.ee>
1128         
1129         * src/frontends/gnome/Menubar_pimpl.C
1130         * src/frontends/gnome/Menubar_pimpl.h: Gnome menus show now
1131         Toc, ViewFormats, UpdateFormats, and ExportFormats.
1132
1133         * src/frontends/gnome/mainapp.C
1134         * src/frontends/gnome/mainapp.h: support for menu update used 
1135         by Toc menu.
1136
1137         * src/frontends/gnome/mainapp.C
1138         * src/frontends/gnome/mainapp.h: support for "action" area in the
1139         main window. This area is used by small simple dialogs, such as
1140         FormUrl.
1141
1142         * src/frontends/gnome/FormIndex.C
1143         * src/frontends/gnome/FormIndex.h
1144         * src/frontends/gnome/FormUrl.C
1145         * src/frontends/gnome/FormUrl.h: rewrite to use main window action
1146         area
1147
1148         * src/frontends/gnome/FormCitation.C
1149         * src/frontends/gnome/FormCitation.h: rewrite to use main window
1150         action area. Only "Insert new citation" is implemented.
1151
1152 2000-09-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
1153
1154         * src/buffer.C (Dispatch): fix call to Dispatch
1155         * src/insets/insetref.C (Edit): likewise
1156         * src/insets/insetparent.C (Edit): likewise
1157         * src/insets/insetinclude.C (include_cb): likewise
1158         * src/frontends/xforms/FormUrl.C (apply): likewise
1159         * src/frontends/xforms/FormToc.C (apply): likewise
1160         * src/frontends/xforms/FormRef.C (apply): likewise
1161         * src/frontends/xforms/FormIndex.C (apply): likewise
1162         * src/frontends/xforms/FormCitation.C (apply): likewise
1163         * src/lyxserver.C (callback): likewise
1164         * src/lyxfunc.C (processKeySym): likewise
1165         (Dispatch): likewise
1166         (Dispatch): likewise
1167         * src/lyx_cb.C (LayoutsCB): likewise
1168
1169         * Makefile.am (sourcedoc): small change
1170
1171 2000-09-18  Lars Gullik Bjønnes  <larsbj@lyx.org>
1172
1173         * src/main.C (main): Don't make an empty GUIRunTime object. all
1174         methods are static. constify a bit remove unneded using + headers.
1175
1176         * src/tabular.C: some more const to local vars move some loop vars
1177         
1178         * src/spellchecker.C: added some c_str after some word for pspell
1179
1180         * src/frontends/GUIRunTime.h: add new static method setDefaults
1181         * src/frontends/xforms/GUIRunTime.C (setDefaults): 
1182         * src/frontends/kde/GUIRunTime.C (setDefaults): 
1183         * src/frontends/gnome/GUIRunTime.C (setDefaults): new method
1184
1185         * src/mathed/math_cursor.C (MacroModeClose): don't call SetName
1186         with strnew in arg, use correct emptystring when calling SetName.
1187
1188         * several files: remove all commented code with relation to
1189         HAVE_SSTREAM beeing false. We now only support stringstream and
1190         not strstream. 
1191
1192 2000-09-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1193
1194         * src/lyxfunc.C: construct correctly the automatic new file
1195         names. 
1196
1197         * src/text2.C (IsStringInText): change type of variable i to shut
1198         off a warning.
1199
1200         * src/support/sstream.h: do not use namespaces if the compiler
1201         does not support them.
1202
1203 2000-09-15  Marko Vendelin <markov@ioc.ee>
1204         * src/frontends/gnome/FormCitation.C
1205         * src/frontends/gnome/FormCitation.h
1206         * src/frontends/gnome/diainsertcitation_interface.c
1207         * src/frontends/gnome/dialogs/diainsertcitation.glade: adds
1208         regexp support to FormCitation [Gnome].
1209             
1210 2000-09-15  John Levon  <moz@compsoc.man.ac.uk>
1211
1212         * acconfig.h
1213         * configure.in: remove unused KDE/GTKGUI define
1214
1215         * src/frontends/kde/FormRef.C
1216         * src/frontends/kde/FormRef.h
1217         * src/frontends/kde/formrefdialog.C
1218         * src/frontends/kde/formrefdialog.h: double click will
1219         go to reference, now it is possible to change a cross-ref
1220         after the fact
1221
1222         * src/frontends/kde/FormToc.C
1223         * src/frontends/kde/FormToc.h
1224         * src/frontends/kde/formtocdialog.C
1225         * src/frontends/kde/formtocdialog.h: add a depth
1226         slider
1227
1228         * src/frontends/kde/Makefile.am: add QtLyXView.h
1229         to the sources list
1230
1231 2000-09-15  Angus Leeming  <a.leeming@ic.ac.uk>
1232
1233         * src/frontends/kde/FormCitation.h: added some using directives.
1234
1235         * src/frontends/kde/FormToc.h: corrected definition of doTree.
1236
1237         * src/frontends/kde/GUIRunTime.C (initApplication): use lyxerr not
1238         cerr. 
1239
1240         * src/mathed/math_defs.h: redefine SetAlign to use string rather
1241         than char *.
1242         
1243 2000-09-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1244
1245         * src/buffer.C (pop_tag): revert for the second time a change by
1246         Lars, who seems to really hate having non-local loop variables :)
1247
1248         * src/Lsstream.h: add "using" statements.
1249
1250         * src/support/copy.C (copy): add a bunch of std:: qualifiers
1251         * src/buffer.C (writeFile): ditto
1252
1253 2000-09-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
1254
1255         * src/buffer.C (writeFile): try to fix the locale modified format
1256         number to always be as we want it.
1257
1258         * src/WorkArea.C (work_area_handler): try to workaround the bugs
1259         in XForms 0.89. C-space is now working again.
1260
1261         * src/Lsstream.h src/support/sstream.h: new files.
1262
1263         * also commented out all cases where strstream were used.
1264         
1265         * src/Bullet.h (c_str): remove method.
1266         
1267         * remove all stuff that is irrelevant when NEW_MENUBAR is defined
1268         
1269         * a lot of files: get rid of "char const *" and "char *" is as
1270         many places as possible. We only want to use them in interaction
1271         with system of other libraries, not inside lyx.
1272         
1273         * a lot of files: return const object is not of pod type. This
1274         helps ensure that temporary objects is not modified. And fits well
1275         with "programming by contract".
1276
1277         * configure.in: check for the locale header too 
1278
1279         * Makefile.am (sourcedoc): new tag for generation of doc++
1280         documentation 
1281
1282 2000-09-14  Juergen Vigna  <jug@sad.it>
1283
1284         * src/frontends/xforms/FormDocument.C (ComboInputCB): fixed the
1285         callback to check which combo called it and do the right action.
1286
1287         * src/combox.C (combo_cb): added combo * to the callbacks.
1288         (Hide): moved call of callback after Ungrab of the pointer.
1289
1290         * src/intl.h: removed LCombo2 function.
1291
1292         * src/intl.C (LCombo): added Combox * to call and removed LCombo2
1293         function as this can now be handled in one function.
1294
1295         * src/combox.h: added Combox * to callback prototype.
1296
1297         * src/frontends/xforms/Toolbar_pimpl.C: 
1298         * src/lyx_cb.C (LayoutsCB): added Combox * to function call.
1299
1300 2000-09-14  Garst Reese    <reese@isn.net>
1301
1302         * lib/tex/hollywood.cls changed length of parenthicals to 1.5in
1303         moved usepackage{xxx}'s to beginning of file. Changed left margin
1304         to 1.5in, right margin to 1in. Forced headrulewidth to 0, removed
1305         underlining from title. Thanks to John Culleton for useful suggestions.
1306
1307 2000-09-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1308
1309         * src/lyxlex_pimpl.C (setFile): change error message to debug
1310         message. 
1311
1312 2000-09-13  Juergen Vigna  <jug@sad.it>
1313
1314         * src/frontends/xforms/FormDocument.C: implemented choice_class
1315         as combox and give callback to combo_language so OK/Apply is activated
1316         on change.
1317
1318         * src/bufferlist.C (newFile): small fix so already named files
1319         (via an open call) are not requested to be named again on the
1320         first save!
1321
1322 2000-09-13  John Levon  <moz@compsoc.man.ac.uk>
1323
1324         * src/frontends/kde/Makefile.am
1325         * src/frontends/kde/FormRef.C
1326         * src/frontends/kde/FormRef.h
1327         * src/frontends/kde/formrefdialog.C
1328         * src/frontends/kde/formrefdialog.h: implement
1329         cross-ref dialog
1330
1331 2000-09-13  John Levon  <moz@compsoc.man.ac.uk>
1332
1333         * src/frontends/kde/formtocdialog.C
1334         * src/frontends/kde/formtocdialog.h
1335         * src/frontends/kde/FormToc.C
1336         * src/frontends/kde/FormToc.h: change to make TOC hierarchical properly
1337
1338 2000-09-11  John Levon  <moz@compsoc.man.ac.uk>
1339
1340         * src/frontends/kde/FormCitation.C: fix thinko
1341         where we didn't always display the reference text
1342         properly
1343
1344         * src/frontends/kde/formurldialog.C
1345         * src/frontends/kde/formurldialog.h
1346         * src/frontends/kde/FormUrl.C
1347         * src/frontends/kde/FormUrl.h: minor cleanups
1348
1349         * src/frontends/kde/QtLyXView: wrapper to avoid Qt namespace mangling
1350
1351         * src/frontends/kde/Makefile.am
1352         * src/frontends/kde/FormToc.C
1353         * src/frontends/kde/FormToc.h
1354         * src/frontends/kde/FormCitation.C
1355         * src/frontends/kde/FormCitation.h
1356         * src/frontends/kde/FormIndex.C
1357         * src/frontends/kde/FormIndex.h
1358         * src/frontends/kde/formtocdialog.C
1359         * src/frontends/kde/formtocdialog.h
1360         * src/frontends/kde/formcitationdialog.C
1361         * src/frontends/kde/formcitationdialog.h
1362         * src/frontends/kde/formindexdialog.C
1363         * src/frontends/kde/formindexdialog.h: new Toc,Citation,Index dialogs
1364
1365 2000-09-12  Juergen Vigna  <jug@sad.it>
1366
1367         * src/frontends/gnome/GUIRunTime.C (initApplication): make id + version
1368         static strings.
1369
1370 2000-09-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1371
1372         * src/frontends/xforms/GUIRunTime.C (initApplication): use lyxerr,
1373         not cerr.
1374
1375 2000-09-09  Dekel Tsur  <dekel@math.tau.ac.il>
1376
1377         * src/converter.C (Add, Convert): Added support for converter flags:
1378         needaux, resultdir, resultfile.
1379         (Convert): Added new parameter view_file.
1380         (dvips_options): Fixed letter paper option.
1381
1382         * src/exporter.C (Export, BufferExtension): Added support for Docbook.
1383         (Export, GetExportableFormats, GetViewableFormats): Added support
1384         for Ascii.
1385
1386         * src/lyx_main.C (LyX): Call to QuitLyX() to remove temporary
1387         directory!
1388         (easyParse): Fixed to work with new export code.
1389         
1390         * src/support/filetools.C (DeleteAllFilesInDir) Fixed to delete
1391         directories.
1392
1393         * lyx-devel-export/lib/configure.m4: Changed flags of tth.
1394
1395         * lib/bind/*.bind: Replaced
1396         buffer-view,buffer-view-ps,buffer-typeset,buffer-typeset-ps by
1397         buffer-view dvi,buffer-view ps,buffer-update dvi,buffer-update ps
1398
1399 2000-09-11  Juergen Vigna  <jug@sad.it>
1400
1401         * src/lyx_gui.C (runTime): uses global guiruntime variable.
1402
1403         * src/main.C (main): now GUII defines global guiruntime!
1404
1405         * src/frontends/gnome/GUIRunTime.C (initApplication): 
1406         * src/frontends/kde/GUIRunTime.C (initApplication): 
1407         * src/frontends/xforms/GUIRunTime.C (initApplication): 
1408         * src/frontends/GUIRunTime.h: added new function initApplication.
1409
1410         * src/spellchecker.C (sc_accept_word): change to add_to_session.
1411
1412         * src/vspace.C (nextToken): fixed error with number 0cm as unvalid.
1413
1414 2000-09-08  Juergen Vigna  <jug@sad.it>
1415
1416         * src/lyx_gui.C (create_forms): don't display the "default" entry as
1417         we have already "Reset".
1418
1419         * src/language.C (initL): inserted "default" language and made this
1420         THE default language (and not american!)
1421
1422         * src/paragraph.C: inserted handling of "default" language!
1423
1424         * src/lyxfont.C: ditto
1425
1426         * src/text.C: ditto
1427
1428         * src/paragraph.C: output the \\par only if we have a following
1429         paragraph otherwise it's not needed.
1430
1431 2000-09-05  Juergen Vigna  <jug@sad.it>
1432
1433         * config/pspell.m4: added entry to lyx-flags
1434
1435         * src/spellchecker.C: modified version from Kevin for using pspell
1436
1437 2000-09-01  Marko Vendelin <markov@ioc.ee>
1438         * src/frontends/gnome/Makefile.am
1439         * src/frontends/gnome/FormCitation.C
1440         * src/frontends/gnome/FormCitation.h
1441         * src/frontends/gnome/diainsertcitation_callbacks.c
1442         * src/frontends/gnome/diainsertcitation_callbacks.h
1443         * src/frontends/gnome/diainsertcitation_interface.c
1444         * src/frontends/gnome/diainsertcitation_interface.h
1445         * src/frontends/gnome/dialogs/diainsertcitation.glade: Insert Citation 
1446         dialog for Gnome frontend
1447
1448         * src/main.C: Gnome libraries require keeping application name
1449         and its version as strings
1450
1451         * src/frontends/gnome/mainapp.C: Change the name of the main window
1452         from GnomeLyX to PACKAGE
1453
1454 2000-09-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1455
1456         * src/frontends/Liason.C: add "using: declaration.
1457
1458 2000-08-31  Dekel Tsur  <dekel@math.tau.ac.il>
1459
1460         * src/mathed/math_macro.C (Metrics): Set the size of the template
1461
1462         * src/mathed/formulamacro.C (Latex): Fixed the returned value
1463
1464 2000-09-04  Dekel Tsur  <dekel@math.tau.ac.il>
1465
1466         * src/converter.C (add_options): New function.
1467         (SetViewer): Change $$FName into '$$FName'.
1468         (View): Add options when running xdvi
1469         (Add): Change $$FName into '$$FName'. Same for $$BaseName/$$OutName.
1470         (Convert): The 3rd parameter is now the desired filename. Converts
1471         calls to lyx::rename if necessary.
1472         Add options when running dvips.
1473         (dvi_papersize,dvips_options): New methods.
1474
1475         * src/exporter.C (Export): Use getLatexName() instead of fileName().
1476
1477         * src/frontends/Liason.C (printBuffer): Removed duplicate code by
1478         using a call to Converter::dvips_options.
1479         Fixed to work with nex export code.
1480
1481         * src/support/copy.C
1482         * src/support/rename.C: New files
1483
1484         * src/support/syscall.h
1485         * src/support/syscall.C: Added Starttype SystemDontWait.
1486
1487         * lib/ui/default.ui: Changed to work with new export code
1488
1489         * lib/configure.m4: Changed to work with new export code
1490
1491         * src/encoding.C: Changed latex name for iso8859_7 encoding.
1492
1493 2000-09-04  Angus Leeming  <a.leeming@ic.ac.uk> +
1494
1495         * src/frontends/xforms/Menubar_pimpl.C: added two using directives
1496         so that code compiles with DEC cxx.
1497         
1498         * src/frontends/xforms/FormCitation.C (setSize): code re-writtenn
1499         to work correctly! Also now supports the additional elements
1500         neeeded by natbib.
1501         
1502 2000-09-01  Allan Rae  <rae@lyx.org>
1503
1504         * src/frontends/ButtonPolicies.C: renamed all the references to
1505         PreferencesPolicy::{AllButtons,BOGUS} to be ButtonPolicy.
1506
1507         * src/frontends/ButtonPolicies.h: rename AllButtons to ALL_BUTTONS
1508         since it's a const not a type.
1509
1510         * src/frontends/xforms/ButtonController.h: cleanup before Lars does.
1511
1512 2000-08-31  Juergen Vigna  <jug@sad.it>
1513
1514         * src/insets/figinset.C: Various changes to look if the filename has
1515         an extension and if not add it for inline previewing.
1516
1517 2000-08-31  Lars Gullik Bjønnes  <larsbj@lyx.org>
1518
1519         * src/frontends/ButtonPolicies.h: add a Button AllButtons.
1520         make buttonStatus and isReadOnly be const methods. (also reflect
1521         this in derived classes.)
1522
1523         * src/frontends/ButtonPolicies.C: remove sum_ and bogus_
1524         (nextState): change to be static inline, pass the StateMachine as
1525         a const reference
1526         (PreferencesPolicy): remove casts
1527         (OkCancelPolicy): remvoe casts
1528         (OkCancelReadOnlyPolicy): remove casts
1529         (NoRepeatedApplyReadOnlyPolicy): remove casts
1530         (OkApplyCancelReadOnlyPolicy): remove casts
1531         (OkApplyCancelPolicy): remove casts
1532         (NoRepeatedApplyPolicy): remove casts
1533
1534 2000-08-31  Angus Leeming  <a.leeming@ic.ac.uk>
1535
1536         * src/converter.C: added some using directives
1537
1538         * src/frontends/ButtonPolicies.C: changes to overcome
1539         "need lvalue" error with DEC c++
1540
1541         * src/frontends/xforms/FormDocument.C (c-tor): use C callback
1542         to WMHideCB for DEC c++
1543
1544         * src/frontends/xforms/Menubar_pimpl.C: added using directive
1545
1546         * src/frontends/xforms/forms/form_document.C.patch: use C callback
1547         to BulletBMTableCB for DEC c++
1548
1549 2000-08-31  Allan Rae  <rae@lyx.org>
1550
1551         * src/lyx_gui.C (create_forms): build combo_language2 which is part of
1552         character dialog separately from old document dialogs combo_language.
1553         Stops a segfault.
1554
1555 2000-08-30  Dekel Tsur  <dekel@math.tau.ac.il>
1556
1557         * src/commandtags.h: Added LFUN_GOTO_PARAGRAPH.
1558         Removed LFUN_REF_CREATE.
1559
1560         * src/MenuBackend.C: Added new tags: toc and references
1561
1562         * src/frontends/xforms/Menubar_pimpl.C: Removed the use of StrPool
1563         (add_lastfiles, add_documents, add_formats): Removed the unused smn
1564         parameter.
1565         (add_toc, add_references): New methods.
1566         (create_submenu): Handle correctly the case when there is a
1567         seperator after optional menu items.
1568
1569         * src/lyxfunc.C (getStatus): Handle LFUN_REF_BACK.
1570         (dispatch): Combined the code for LFUN_REF_CREATE and LFUN_REF_INSERT.
1571         (dispatch): New code for LFUN_GOTO_PARAGRAPH.
1572
1573         * src/frontends/xforms/FormToc.C (apply): Use Dispatch.
1574
1575 2000-08-30  Dekel Tsur  <dekel@math.tau.ac.il>
1576
1577         * src/converter.[Ch]: New file for converting between different
1578         formats.
1579         
1580         * src/export.[Ch]: New file for exporting a LyX file to different
1581         formats.
1582         
1583         * src/lyx_cb.C: Remove many functions when NEW_EXPORT is defined:
1584         MenuRunLaTeX, MakeLaTeXOutput, RunScript, CreatePostscript,
1585         PreviewPostscript, PreviewDVI, AskOverwrite, MenuMakeLaTeX,
1586         MenuMakeLinuxDoc, MenuMakeDocBook, MenuMakeHTML,
1587         MenuMakeHTML_LinuxDoc, MenuMakeHTML_DocBook, RunLinuxDoc,
1588         RunDocBook, MenuExport.
1589         
1590         * src/lyxfunc.C (Dispatch): Use the Exporter::Export and
1591         Exporter::Preview methods if NEW_EXPORT is defined.     
1592         
1593         * src/buffer.C (Dispatch): Use Exporter::Export.
1594         
1595         * src/lyxrc.C: Added new tags: \converter and \viewer.
1596         
1597         * src/commandtags.h
1598         * src/LyXAction.C: Define new lyx-function: buffer-update.
1599         Remove obsolete buffer-typeset,buffer-typeset-ps & buffer-view-ps
1600         when NEW_EXPORT is defined.
1601         
1602         * src/MenuBackend.C: Added new tags: updateformats and viewformats.
1603         
1604         * src/frontends/xforms/Menubar_pimpl.C (add_formats) New method.
1605         
1606         * lib/ui/default.ui: Added submenus "view" and "update" to the 
1607         "file" menu.
1608         
1609         * src/filetools.C (GetExtension): New function.
1610         
1611         * src/LaTeX.C (LaTeX): Add "-pdf" to depfile if pdflatex is used.
1612
1613 2000-08-29  Allan Rae  <rae@lyx.org>
1614
1615         * lib/bind/xemacs.bind: update a binding due to Juergen's recent work
1616
1617         * src/frontends/xforms/FormDocument.C (checkReadOnly): new function
1618         (EnableDocumentLayout): removed
1619         (DisableDocumentLayout): removed
1620         (build): make use of ButtonController's read-only handling to
1621         de/activate various objects. Replaces both of the above functions.
1622
1623         * src/frontends/xforms/ButtonController.h (readWrite): was read_write
1624         (readOnly): was read_only
1625         (refresh): fixed dumb mistakes with read_only_ handling
1626
1627         * src/frontends/xforms/forms/form_document.fd:
1628         * src/frontends/xforms/forms/form_tabular.fd: Use FL_FLAT_BOX for the
1629         tabbed dialogs so the tabs look more like tabs and so its easier to
1630         work out which is the current tab.
1631
1632         * src/lyx_gui_misc.C (updateAllVisibleBufferRelatedDialogs): fix
1633         segfault with form_table
1634
1635         * src/frontends/ButtonPolicies.C: All policies now support UNDO_ALL.
1636
1637 2000-08-28  Juergen Vigna  <jug@sad.it>
1638
1639         * acconfig.h: added USE_PSPELL.
1640
1641         * src/config.h.in: added USE_PSPELL.
1642
1643         * autogen.sh: added pspell.m4
1644
1645         * config/pspell.m4: new file.
1646
1647         * src/spellchecker.C: implemented support for pspell libary.
1648
1649 2000-08-25  Juergen Vigna  <jug@sad.it>
1650
1651         * src/LyXAction.C (init): renamed LFUN_TABLE to
1652         LFUN_DIALOG_TABULAR_INSERT and fixed all it's occurences.
1653
1654         * src/lyxfunc.C (getStatus): fix for disabled Edit->Table entries.
1655
1656         * src/lyxscreen.h: add force_clear variable and fuction to force
1657         a clear area when redrawing in LyXText.
1658
1659         * src/text.C (GetVisibleRow): look if the screen forces a redraw.
1660
1661 2000-08-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
1662
1663         * some whitespace and comment changes.
1664         
1665         * src/lyx_gui.C (LyXGUI): use C++ style casts instead of C ones.
1666
1667         * src/buffer.C: up te LYX_FORMAT to 2.17
1668
1669 2000-08-23  Juergen Vigna  <jug@sad.it>
1670
1671         * src/BufferView_pimpl.C (tripleClick): disable this when in a
1672         locking_inset.
1673
1674         * src/insets/insettabular.C (pasteSelection): delete the insets
1675         LyXText as it is not valid anymore.
1676         (copySelection): new function.
1677         (pasteSelection): new function.
1678         (cutSelection): new function.
1679         (LocalDispatch): implemented cut/copy/paste of cell selections.
1680
1681         * src/insets/insettext.C (resizeLyXText): don't need resize if I still
1682         don't have a LyXText.
1683
1684         * src/LyXAction.C (init): a NEW_TABULAR define too much.
1685
1686         * src/lyx_gui_misc.C (CloseAllBufferRelatedDialogs): another missing
1687         NEW_TABULAR define.
1688
1689 2000-08-22  Juergen Vigna  <jug@sad.it>
1690
1691         * src/lyx_gui_misc.C (updateAllVisibleBufferRelatedDialogs): 
1692         ifdef form_table out if NEW_TABULAR.
1693
1694 2000-08-21  Juergen Vigna  <jug@sad.it>
1695
1696         * src/insets/insettabular.C (TabularFeatures): BoxType is enum now.
1697         (draw): fixed draw position so that the cursor is positioned in the
1698         right place.
1699         (InsetMotionNotify): hide/show cursor so the position is updated.
1700         (GENERAL): fixed cursor_pos to show only 0/1 (begin/end of cell),
1701         using cellstart() function where it should be used.
1702
1703         * src/insets/insettext.C (draw): ditto.
1704
1705         * src/tabular.C: fixed initialization of some missing variables and
1706         made BoxType into an enum.
1707
1708 2000-08-22  Marko Vendelin <markov@ioc.ee>
1709         * src/frontends/gnome/Menubar_pimpl.C: Mathces LyX action with Gnome 
1710         stock menu item using action numerical value, not its string
1711         representation.
1712
1713
1714 2000-08-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
1715
1716         * src/frontends/xforms/Makefile.am (libxforms_la_SOURCES): add
1717         GUIRunTime.C remove GUIRunTime_pimpl.[Ch]
1718
1719         * src/frontends/xforms/GUIRunTime_pimpl.[Ch]: removed file
1720
1721         * src/frontends/xforms/GUIRunTime.C: new file
1722
1723         * src/frontends/kde/Makefile.am (libkde_la_SOURCES): add
1724         GUIRunTime.C and remove GUIRunTime_pimpl.[Ch]
1725
1726         * src/frontends/kde/GUIRunTime_pimpl.[Ch]: removed file
1727
1728         * src/frontends/kde/GUIRunTime.C: new file
1729
1730         * src/frontends/gnome/Makefile.am (libgnome_la_SOURCES): add
1731         GUIRunTime.C and remove GUIRunTime_pimpl.[Ch]
1732
1733         * src/frontends/gnome/GUIRunTime_pimpl.[Ch]: removed file
1734
1735         * src/frontends/gnome/GUIRunTime.C: new file
1736
1737         * src/frontends/Makefile.am (libfrontends_la_SOURCES): removed
1738         GUIRunTime.C 
1739
1740         * src/frontends/GUIRunTime.h: removed constructor and destructor,
1741         small change to documetentation.
1742
1743         * src/frontends/GUIRunTime.C: removed file
1744
1745         * src/text2.C (MeltFootnoteEnvironment): add some NEW_TABULAR
1746
1747         * src/lyxparagraph.h: enable NEW_TABULAR as default
1748
1749         * src/lyxfunc.C (processKeySym): remove some commented code
1750
1751         * src/lyx_gui_misc.C (updateAllVisibleBufferRelatedDialogs): add
1752         NEW_TABULAR around the fd_form_table_options.
1753
1754         * src/lyx_gui.C (runTime): call the static member function as
1755         GUIRunTime::runTime().
1756
1757 2000-08-21  Allan Rae  <rae@lyx.org>
1758
1759         * src/frontends/xforms/FormDocument.h: D'oh.  Forgot to change the
1760         policy here also.
1761
1762 2000-08-21  Dekel Tsur  <dekel@math.tau.ac.il>
1763
1764         * src/Spacing.C (writeEnvirBegin): Small fix when sstream not present
1765
1766 2000-08-21  Allan Rae  <rae@lyx.org>
1767
1768         * src/frontends/xforms/ButtonController.h (setOK): renamed from setOk to
1769         keep Garst happy ;-)
1770         * src/frontends/xforms/FormPreferences.C (build): use setOK
1771         * src/frontends/xforms/FormDocument.C (build): use setOK
1772         (FormDocument): use the appropriate policy.
1773
1774 2000-08-21  Allan Rae  <rae@lyx.org>
1775
1776         * src/frontends/xforms/ButtonController.h (class ButtonController): Allow
1777         automatic [de]activation of arbitrary objects when in a read-only state.
1778
1779         * src/frontends/ButtonPolicies.h: More documentation
1780         (isReadOnly): added to support the above.
1781
1782         * src/frontends/xforms/forms/form_preferences.fd: Changed Ok -> Save
1783
1784 2000-08-18  Juergen Vigna  <jug@sad.it>
1785
1786         * src/insets/insettabular.C (getStatus): changed to return func_status.
1787
1788         * src/lyxfunc.C (getStatus): fixed TabularFeatures menu to always
1789         display toggle menu entries if they are.
1790
1791         * src/lyx_cb.C: #ifdef'ed out layout stuff which is in the
1792         new document layout now.
1793
1794         * src/lyxfunc.C: ditto
1795
1796         * src/lyx_gui_misc.C: ditto
1797
1798         * src/lyx_gui.C: ditto
1799
1800         * lib/ui/default.ui: removed paper and quotes layout as they are now
1801         all in the document layout tabbed folder.
1802
1803         * src/frontends/xforms/forms/form_document.fd: added Restore
1804         button and callbacks for all inputs for Allan's ButtonPolicy.
1805
1806         * src/frontends/xforms/FormDocument.C (ChoiceClassCB): added.
1807         (CheckChoiceClass): added missing params setting on class change.
1808         (UpdateLayoutDocument): added for updating the layout on params.
1809         (build): forgot to RETURN_ALWAYS input_doc_spacing.
1810         (FormDocument): Implemented Allan's ButtonPolicy with the
1811         PreferencesPolicy.
1812
1813 2000-08-17  Allan Rae  <rae@lyx.org>
1814
1815         * src/frontends/xforms/Dialogs.C (Dialogs): Make a temporary connection
1816         so we can at least see the credits again.
1817
1818         * src/frontends/xforms/FormPreferences.C: Used the appropriate button
1819         controller calls for the appropriate callbacks.  Note that since Ok
1820         calls apply followed by cancel, and apply isn't a valid input for the
1821         APPLIED state, the bc_ calls have to be made in the static callback not
1822         within each of the real callbacks.
1823
1824         * src/frontends/xforms/ButtonController.h (Ok): renamed from Okay()
1825         (setOk): renamed from setOkay()
1826
1827 2000-08-17  Juergen Vigna  <jug@sad.it>
1828
1829         * src/frontends/gnome/Menubar_pimpl.C (openByName): put this function
1830         in the implementation part.
1831         (composeUIInfo): don't show optional menu-items.
1832
1833         * src/lyxfunc.C (getStatus): use insets LyXText if the_locking_inset.
1834
1835         * src/insets/insettext.C (UpdateLocal): call to LyXView::showState()
1836
1837         * src/bufferview_funcs.C (CurrentState): fixed to show also the
1838         text-state when in a text-inset.
1839
1840         * src/frontends/kde/GUIRunTime_pimpl.C: include xforms for now.
1841
1842 2000-08-17  Marko Vendelin <markov@ioc.ee>
1843         * src/frontends/gnome/FormIndex.C
1844         * src/frontends/gnome/FormIndex.h
1845         * src/frontends/gnome/FormToc.C
1846         * src/frontends/gnome/FormToc.h
1847         * src/frontends/gnome/dialogs
1848         * src/frontends/gnome/diatoc_callbacks.c
1849         * src/frontends/gnome/diatoc_callbacks.h
1850         * src/frontends/gnome/diainsertindex_callbacks.h
1851         * src/frontends/gnome/diainsertindex_callbacks.c
1852         * src/frontends/gnome/diainsertindex_interface.c
1853         * src/frontends/gnome/diainsertindex_interface.h
1854         * src/frontends/gnome/diatoc_interface.h
1855         * src/frontends/gnome/diatoc_interface.c
1856         * src/frontends/gnome/Makefile.am: Table of Contents and 
1857         Insert Index dialogs implementation for Gnome frontend
1858
1859         * src/frontends/gnome/GUIRunTime_pimpl.C: fix some small bugs
1860
1861         * src/frontends/gnome/Menubar_pimpl.C: remove historical comments
1862
1863         * src/frontends/gnome/diainserturl_interface.c: make the dialog
1864         resizable
1865
1866 2000-08-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
1867
1868         * src/frontends/xforms/GUIRunTime_pimpl.C: constructor and
1869         destructor. Don't definde if you don't need it
1870         (processEvents): made static, non-blocking events processing for
1871         xforms.
1872         (runTime): static method. event loop for xforms
1873         * similar as above for kde and gnome.
1874         
1875         * src/frontends/GUIRunTime.C (GUIRunTime): new Pimpl() is wrong
1876         new Pimpl is correct
1877         (runTime): new method calss the real frontends runtime func.
1878
1879         * src/lyx_gui.C (runTime): change to use the GUIRunTime::runTime
1880
1881 2000-08-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
1882
1883         * src/lyx_gui.C (create_forms): fix the "No change" gettext missing
1884
1885 2000-08-16  Juergen Vigna  <jug@sad.it>
1886
1887         * src/lyx_gui.C (runTime): added GUII RunTime support.
1888
1889         * src/frontends/Makefile.am: 
1890         * src/frontends/GUIRunTime.[Ch]:
1891         * src/frontends/xforms/GUIRunTime_pimpl.[Ch]:
1892         * src/frontends/kde/GUIRunTime_pimpl.[Ch]:
1893         * src/frontends/gnome/GUIRunTime_pimpl.[Ch]: added GUII runtime support
1894
1895         * src/LyXAction.C (init): added dummy LFUN_INSERT_URL.
1896
1897         * src/frontends/Makefile.am (INCLUDES): don't set the FRONTENDS include
1898         as this is already set in ${FRONTEND_INCLUDE} if needed.
1899
1900         * configure.in (CPPFLAGS): setting the include dir for the frontend
1901         directory and don't set FRONTEND=xforms for now as this is executed
1902         always.
1903
1904 2000-08-16 John Levon (moz@compsoc.man.ac.uk)
1905  
1906         * src/frontends/kde/Makefile.am:
1907         * src/frontends/kde/FormUrl.C:
1908         * src/frontends/kde/FormUrl.h:
1909         * src/frontends/kde/formurldialog.h:
1910         * src/frontends/kde/formurldialog.C: Add KDE URL dialog
1911
1912 2000-08-15  Kayvan A. Sylvan <kayvan@sylvan.com>
1913
1914         * src/frontend/Makefile.am: Add gnome and kde to dist tar file.
1915
1916 2000-08-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
1917
1918         * src/BufferView_pimpl.C (workAreaKeyPress): enable the
1919         processKeySym
1920         
1921 2000-08-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
1922
1923         * src/WorkArea.C (work_area_handler): more work to get te
1924         FL_KEYBOARD to work with xforms 0.88 too, please test.
1925
1926         * src/BufferView_pimpl.C (workAreaKeyPress): add XForms 0.88 guard.
1927
1928 2000-08-15  Dekel Tsur  <dekel@math.tau.ac.il>
1929
1930         * src/frontends/ButtonPolicies.C: make gcc happy when compiling with
1931         -pedantic
1932
1933 2000-08-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
1934
1935         * src/Timeout.h: remove Qt::emit hack.
1936
1937         * several files: changes to allo doc++ compilation
1938         
1939         * src/lyxfunc.C (processKeySym): new method
1940         (processKeyEvent): comment out if FL_REVISION < 89
1941
1942         * src/WorkArea.C: change some debugging levels.
1943         (WorkArea): set wantkey to FL_KEY_ALL
1944         (work_area_handler): enable the FL_KEYBOARD clause, this enables
1945         clearer code and the use of compose with XForms 0.89. Change to
1946         use signals instead of calling methods in bufferview directly.
1947
1948         * src/Painter.C: change some debugging levels.
1949
1950         * src/LyXView.C: don't setup of use the KeyPressMask_raw_callback
1951         if FL_REVISION < 89
1952
1953         * src/BufferView_pimpl.C (Pimpl): Connect to the WorkArea signals.
1954         (workAreaKeyPress): new method
1955
1956 2000-08-14  Juergen Vigna  <jug@sad.it>
1957
1958         * src/frontends/kde/Dialogs.C (Dialogs): added missing dialogs.
1959
1960         * config/kde.m4: addes some features
1961
1962         * src/frontends/kde/Makefile.am (libkde_la_OBJADD): modified to 
1963         include missing xforms dialogs.
1964
1965         * src/Timeout.h: a hack to be able to compile with qt/kde.
1966
1967         * sigc++/.cvsignore: added acinclude.m4
1968
1969         * lib/.cvsignore: added listerros
1970
1971         * src/frontends/Makefile.am: modified for now to ALWAYS compile the
1972         xforms tree as objects are needed for other frontends.
1973
1974         * src/frontends/gnome/Makefile.am (libgnome_la_OBJADD): added for
1975         linking with not yet implemented xforms objects.
1976
1977         * src/frontends/gnome/Dialogs.C (Dialogs): added FormDocument.
1978
1979 2000-08-14  Baruch Even  <baruch.even@writeme.com>
1980
1981         * src/frontends/xforms/FormGraphics.h:
1982         * src/frontends/xforms/FormGraphics.C:
1983         * src/frontends/xforms/RadioButtonGroup.h:
1984         * src/frontends/xforms/RadioButtonGroup.C:
1985         * src/insets/insetgraphics.h:
1986         * src/insets/insetgraphics.C:
1987         * src/insets/insetgraphicsParams.h:
1988         * src/insets/insetgraphicsParams.C: Changed indentation to use tabs
1989         instead of spaces, and various other indentation issues to make the
1990         sources more consistent.
1991
1992 2000-08-14  Marko Vendelin <markov@ioc.ee>
1993
1994         * src/frontends/gnome/dialogs/diaprint.glade
1995         * src/frontends/gnome/FormPrint.C
1996         * src/frontends/gnome/FormPrint.h
1997         * src/frontends/gnome/diaprint_callbacks.c
1998         * src/frontends/gnome/diaprint_callbacks.h
1999         * src/frontends/gnome/diaprint_interface.c
2000         * src/frontends/gnome/diaprint_interface.h: Print dialog Gnome 
2001         implementation
2002         
2003         * src/frontends/gnome/dialogs/diainserturl.glade
2004         * src/frontends/gnome/FormUrl.C
2005         * src/frontends/gnome/FormUrl.h
2006         * src/frontends/gnome/diainserturl_callbacks.c
2007         * src/frontends/gnome/diainserturl_callbacks.h
2008         * src/frontends/gnome/diainserturl_interface.c
2009         * src/frontends/gnome/diainserturl_interface.h: Insert Url dialog
2010         Gnome implementation
2011
2012         * src/frontends/gnome/Dialogs.C
2013         * src/frontends/gnome/Makefile.am: added Print, Insert Url  and
2014         all other dialogs. Copy all unimplemented dialogs from Xforms
2015         frontend
2016         
2017         * src/frontends/gnome/support.c
2018         * src/frontends/gnome/support.h: support files generated by Glade
2019
2020         * autogen.sh
2021         * configure.in
2022         * config/gnome.m4: Gnome configuration scripts
2023
2024         * config/lyxinclude.m4: cleanup: frontend renamed from gtk to gnome in
2025         configure --help message
2026
2027         * src/lyx_gui.C: Gnome/Gtk releases control in LyXGUI::runTime()
2028         only if there are no events pendling in Gnome/Gtk. This enhances
2029         the performance of menus.
2030
2031
2032 2000-08-14  Allan Rae  <rae@lyx.org>
2033
2034         * lib/Makefile.am: listerrors cleaning
2035
2036         * lib/listerrors: removed -- generated file
2037         * acinclude.m4: ditto
2038         * sigc++/acinclude.m4: ditto
2039
2040         * src/frontends/xforms/forms/form_citation.fd:
2041         * src/frontends/xforms/FormCitation.C (setSize): Made the form a more
2042         manageable size.
2043
2044         * src/frontends/xforms/forms/makefile: I renamed the `install` target
2045         `updatesrc` and now we have a `test` target that does what `updatesrc`
2046         used to do. I didn't like having an install target that wasn't related
2047         to the dist.
2048
2049         * src/frontends/xforms/Form*.[hC]: Removed the free() member functions
2050         on all except FormGraphics.  This may yet happen. Followed by a major
2051         cleanup including using FL_TRANSIENT for most of the dialogs.  More
2052         changes to come when the ButtonController below is introduced.
2053
2054         * src/frontends/xforms/ButtonController.h: New file for managing up to
2055         four buttons on a dialog according to an externally defined policy.
2056         * src/frontends/xforms/Makefile.am: added above
2057
2058         * src/frontends/ButtonPolicies.[hC]: New files full of policies for Ok,
2059         Apply and Cancel/Close buttons and everything in between and beyond.
2060         * src/frontends/Makefile.am: added above.
2061
2062         * src/frontends/xforms/forms/form_preferences.fd:
2063         * src/frontends/xforms/FormPreferences.[hC]: Uses the ButtonController
2064         and removed variable 'status' as a result. Fixed the set_minsize thing.
2065         Use the new screen-font-update after checking screen fonts were changed
2066         Added a "Restore" button to restore the original lyxrc values while
2067         editing.  This restores everything not just the last input changed.
2068         That's still a tricky one.  As is the "LyX: this shouldn't happen..."
2069
2070         * src/LyXAction.C: screen-font-update added for updating buffers after
2071         screen font settings have been changed.
2072         * src/commandtags.h: ditto
2073         * src/lyxfunc.C: ditto
2074
2075         * forms/lyx.fd: removed screen fonts dialog.
2076         * src/lyx_gui.C: ditto
2077         * src/menus.[Ch]: ditto
2078         * src/lyx.[Ch]: ditto
2079         * src/lyx_cb.C: ditto + code from here moved to make
2080         screen-font-update. And people wonder why progress on GUII is
2081         slow.  Look at how scattered this stuff was!  It takes forever
2082         just find it all. 
2083
2084         * forms/fdfix.sh: Fixup the spacing after commas.
2085         * forms/makefile: Remove date from generated files. Fewer clashes now.
2086         * forms/bullet_forms.C.patch: included someones handwritten changes
2087
2088         * src/lyxrc.[Ch]: Added a commented out system_lyxrc.  Will use it RSN
2089         once I've discovered why LyXRC was made noncopyable.
2090         * src/lyx_main.C: ditto
2091
2092 2000-08-14  Angus Leeming  <a.leeming@ic.ac.uk>
2093
2094         * src/frontends/xforms/forms/fdfix.sh:
2095         * src/frontends/xforms/forms/fdfixh.sed:
2096         * src/frontends/xforms/forms/fdfixc.sed: New file from Angus
2097         * src/frontends/xforms/Form*.[hC]:
2098         * src/frontends/xforms/form_*.[hC]: Massive rewrite of the generation
2099         scripts to rename all the "FL_OBJECT * form_xxxx" to "form" and to
2100         provide a destructor for the struct FD_form_xxxx. Another version of
2101         the set_[max|min]size workaround and a few other cleanups. Actually,
2102         Angus' patch from 20000809.
2103
2104 2000-08-13      Baruch Even  <baruch.even@writeme.com>
2105
2106         * src/insets/insetgraphics.C (Clone): Added several fields that needed
2107         copying.
2108
2109 2000-08-11  Juergen Vigna  <jug@sad.it>
2110
2111         * src/insets/insetgraphics.C (InsetGraphics): changing init
2112         order because of warnings.
2113
2114         * src/frontends/xforms/forms/makefile: adding patching .C with
2115         .C.patch files.
2116
2117         * src/frontends/xforms/forms/fdfix.sh: changing patching file .c
2118         from .C.patch to .c.patch
2119
2120         * src/frontends/xforms/FormCommand.C (FormCommand): changing init
2121         order because of warning.
2122
2123         * src/frontends/xforms/Dialogs.C (Dialogs): added FormDialog
2124
2125         * src/frontends/Liason.C (setMinibuffer): new helper function
2126
2127         * src/frontends/Dialogs.h (class Dialogs): inserting showLayoutDocument
2128
2129         * src/lyxfunc.C (Dispatch): calling new Document-Layout
2130
2131         * lib/ui/default.ui: commented out PaperLayout entry
2132
2133         * src/frontends/xforms/form_document.[Ch]: new added files 
2134         
2135         * src/frontends/xforms/FormDocument.[Ch]: ditto
2136
2137         * src/frontends/xforms/forms/form_document.fd: ditto
2138
2139         * src/frontends/xforms/forms/form_document.C.patch: ditto
2140
2141 2000-08-10  Juergen Vigna  <jug@sad.it>
2142
2143         * src/insets/insetgraphics.C (draw): fixed access to 0 cacheHandle.
2144         (InsetGraphics): initialized cacheHandle to 0.
2145         (draw): changed call to updateInset to status=CHANGE_IN_DRAW.
2146
2147 2000-08-10      Baruch Even  <baruch.even@writeme.com>
2148
2149         * src/graphics/GraphicsCache.h:
2150         * src/graphics/GraphicsCache.C (addFile, removeFile): Changed to work 
2151         correctly as a cache.
2152
2153         * src/graphics/GraphicsCacheItem.h:
2154         * src/graphics/GraphicsCacheItem.C: Changed to the pimpl idiom to allow
2155         reference counting.
2156
2157         * src/graphics/GraphicsCacheItem_pimpl.h:
2158         * src/graphics/GraphicsCacheItem_pimpl.C: The implementation of the
2159         GraphicsCacheItem.
2160
2161         * src/insets/insetgraphics.h: 
2162         * src/insets/insetgraphics.C: Changed from using a signal notification
2163         to polling when image is not loaded.
2164
2165 2000-08-10  Allan Rae  <rae@lyx.org>
2166
2167         * development/tools/makeLyXsigc.sh: Updated to allow Signal3.  Note
2168         that there are two functions that have to been taken out of line by
2169         hand and aren't taken care of in the script.  (Just a reminder note)
2170
2171         * sigc++/macros/*.h.m4: Updated as above.
2172
2173 2000-08-09  Juergen Vigna  <jug@sad.it>
2174
2175         * src/insets/insettext.C (draw): small fix for clearing rectangle.
2176
2177         * src/insets/insettabular.C: make drawing of single cell smarter.
2178
2179 2000-08-09  Marko Vendelin <markov@ioc.ee>
2180         * src/frontends/gnome/Menubar_pimpl.C
2181         * src/frontends/gnome/Menubar_pimpl.h: Gnome frontend Menubar
2182         implementation: new files
2183         
2184         * src/frontends/gnome/mainapp.C
2185         * src/frontends/gnome/mainapp.h: Gnome main window (temporary
2186         implementation)
2187
2188         * src/main.C: create Gnome main window
2189
2190         * src/frontends/xforms/Menubar_pimpl.h
2191         * src/frontends/Menubar.C
2192         * src/frontends/Menubar.h: added method Menubar::update that calls 
2193         Menubar_pimpl::update and xforms/Menubar_pimpl::update (empty one)
2194
2195         * src/LyXView.C: calls Menubar::update to update the state
2196         of menu items
2197
2198         * src/frontends/gnome/Makefile.am: added new files
2199         
2200         * src/frontends/Makefile.am: added frontend compiler options
2201
2202 2000-08-08  Juergen Vigna  <jug@sad.it>
2203
2204         * src/lyx_cb.C (AutoSave): autosave for unnamed files enabled!
2205
2206         * src/bufferlist.C (close): 
2207         * src/bufferlist.C (QwriteAll): remove Autosave-files for Unnamed()
2208         documents if exiting without saving.
2209
2210         * src/buffer.C (save): use removeAutosaveFile()
2211
2212         * src/support/filetools.C (removeAutosaveFile): new function.
2213
2214         * src/lyx_cb.C (MenuWrite): returns a bool now.
2215         (MenuWriteAs): check if file could really be saved and revert to the
2216         old name if not.
2217         (MenuWriteAs): removing old autosavefile if existant.
2218
2219         * src/frontends/xforms/FormRef.h: puting FD_form_ref declaration
2220         before Goto toggle declaration, because of compiler warning.
2221
2222         * src/frontends/xforms/FormRef.C: forgot include of <algorithm>
2223
2224         * src/lyxfunc.C (MenuNew): small fix.
2225
2226         * src/lyxrc.C (output): added RC_NEW_ASK_FILENAME tag.
2227
2228         * src/bufferlist.C (newFile):
2229         * src/lyxfunc.C (MenuNew): use the new_ask_filename tag from lyxrc.
2230
2231         * src/lyxrc.C: added new_ask_filename tag
2232
2233 2000-08-07  Angus Leeming  <a.leeming@ic.ac.uk>
2234
2235         * src/lyx.fd: removed code pertaining to form_ref
2236         * src/lyx.[Ch]: ditto
2237         * src/lyx_cb.C: ditto
2238         * src/lyx_gui.C: ditto
2239         * src/lyx_gui_misc.C: ditto
2240
2241         * src/BufferView_pimpl.C (restorePosition): update buffer only
2242         if file has changed
2243
2244         * src/commandtags.h (LFUN_REFTOGGLE): removed
2245         (LFUN_INSERT_REF): renamed LFUN_REF_INSERT
2246         (LFUN_REFGOTO): renamed LFUN_REF_GOTO
2247         (LFUN_REFBACK): renamed LFUN_REF_BACK
2248
2249         * src/LyXAction.C: removed code pertaining to LFUN_REFTOGGLE
2250         * src/menus.C: ditto
2251         * src/lyxfunc.C (Dispatch): ditto.
2252         InsertRef dialog is now GUI-independent.
2253
2254         * src/texrow.C: added using std::endl;
2255
2256         * src/insets/insetref.[Ch]: strip out large amounts of code.
2257         The inset is now a container and this functionality is now
2258         managed by a new FormRef dialog
2259         
2260         * src/frontends/Dialogs.h (showRef, createRef): new signals
2261
2262         * src/frontends/xforms/FormIndex.[Ch],
2263         src/frontends/xforms/FormUrl.[Ch]: workaround an xforms bug
2264         when setting dialog's min/max size
2265         * src/frontends/xforms/FormIndex.[Ch]: ditto
2266
2267         * src/frontends/xforms/FormRef.[Ch],
2268         src/frontends/xforms/forms/form_ref.fd: new xforms
2269         implementation of an InsetRef dialog
2270
2271         * src/graphics/GraphicsCache.[Ch]: small changes to compile with
2272         DEC cxx
2273
2274         * src/graphics/XPM_Renderer.C (isImageFormatOK):
2275         ios::nocreate is not part of the standard. Removed.
2276
2277 2000-08-07  Baruch Even  <baruch.even@writeme.com>
2278
2279         * src/graphics/Renderer.h:
2280         * src/graphics/Renderer.C: Added base class for rendering of different
2281         image formats into Pixmaps.
2282
2283         * src/graphics/XPM_Renderer.h:
2284         * src/graphics/XPM_Renderer.C: Taken from GraphicsCacheItem and placed
2285         in a different class.
2286
2287         * src/graphics/GraphicsCacheItem.C: factored out the rendering in order to
2288         easily add support for other formats.
2289
2290         * src/insets/figinset.C: plugged a leak of an X resource.
2291
2292 2000-08-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
2293
2294         * src/CutAndPaste.[Ch]: make all metods static. 
2295
2296         * development/Code_rules/Rules: more work, added section on
2297         Exceptions, and a References section.
2298
2299         * a lot of header files: work to make doc++ able to generate the
2300         source documentation, some workarounds of doc++ problems. Doc++ is
2301         now able to generate the documentation.
2302
2303 2000-08-07  Juergen Vigna  <jug@sad.it>
2304
2305         * src/insets/insettabular.C (recomputeTextInsets): removed function
2306
2307         * src/tabular.C (SetWidthOfMulticolCell): 
2308         (SetWidthOfCell): 
2309         (calculate_width_of_column_NMC): fixed return value so that it really
2310         only returns true if the column-width has changed (there where
2311         problems with muliticolumn-cells in this column).
2312
2313 2000-08-04  Juergen Vigna  <jug@sad.it>
2314
2315         * src/BufferView_pimpl.C (checkInsetHit): changed so that it looks
2316         also on the scrollstatus of the inset.
2317         (workAreaMotionNotify): ditto.
2318
2319         * src/texrow.C (getIdFromRow): fixed compile problem on egcs-1.1.2.
2320
2321 2000-08-01  Juergen Vigna  <jug@sad.it>
2322
2323         * src/insets/insettabular.C (resetPos): scroll tabular automatically.
2324
2325         * src/commandtags.h: 
2326         * src/LyXAction.C (init): 
2327         * src/insets/inset.C (LocalDispatch): added support for
2328         LFUN_SCROLL_INSET.
2329
2330         * src/insets/inset.C (scroll): new functions.
2331
2332         * src/insets/insettext.C (removeNewlines): new function.
2333         (SetAutoBreakRows): removes forced newlines in the text of the
2334         paragraph if autoBreakRows is set to false.
2335
2336         * src/tabular.C (Latex): generates a parbox around the cell contents
2337         if needed.
2338
2339         * src/frontends/xforms/FormTabular.C (local_update): removed
2340         the radio_useparbox button.
2341
2342         * src/tabular.C (UseParbox): new function
2343
2344 2000-08-06  Baruch Even  <baruch.even@writeme.com>
2345
2346         * src/graphics/GraphicsCache.h:
2347         * src/graphics/GraphicsCache.C:
2348         * src/graphics/GraphicsCacheItem.h:
2349         * src/graphics/GraphicsCacheItem.C: Made them to actually do something
2350         usefull.
2351
2352         * src/insets/insetgraphics.h:
2353         * src/insets/insetgraphics.C: Added the use of the GraphicsCache and the
2354         drawing of the inline image.
2355
2356         * src/buffer.C: Fixed a bug where a loaded InsetGraphics would be loaded 
2357         into the wrong position.
2358
2359         * src/lyxfunc.C: When adding an InsetGraphics the edit dialog is now
2360         launched.
2361
2362 2000-08-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
2363
2364         * src/support/translator.h: move all typedefs to public section
2365
2366         * src/support/filetools.C (MakeLatexName): return string const
2367         (QuoteName): ditto
2368         (TmpFileName): ditto
2369         (FileOpenSearch): ditto
2370         (FileSearch): ditto
2371         (LibFileSearch): ditto
2372         (i18nLibFileSearch): ditto
2373         (GetEnv): ditto
2374         (GetEnvPath): ditto
2375         (CreateTmpDir): ditto
2376         (CreateBufferTmpDir): ditto
2377         (CreateLyXTmpDir): ditto
2378         (GetCWD): ditto
2379         (OnlyPath): ditto
2380         (MakeAbsPath): ditto
2381         (AddName): ditto
2382         (OnlyFilename): ditto
2383         (ExpandPath): ditto
2384         (NormalizePath): ditto
2385         (CleanupPath): ditto
2386         (GetFileContents): ditto
2387         (ReplaceEnvironmentPath): ditto
2388         (MakeRelPath): ditto
2389         (AddPath): ditto
2390         (ChangeExtension): ditto
2391         (MakeDisplayPath): ditto
2392         (do_popen): return cmdret const
2393         (findtexfile): return string const
2394
2395         * src/support/DebugStream.h: add some /// to please doc++
2396
2397         * src/frontends/DialogBase.h (endif): add some /// to please doc++
2398
2399         * src/texrow.C (same_rownumber): functor to use with find_if
2400         (getIdFromRow): rewritten to use find_if and to not update the
2401         positions. return true if row is found
2402         (increasePos): new method, use to update positions
2403
2404         * src/lyxlex_pimpl.h: make LyXLex::Pimpl noncopyable
2405
2406         * src/lyxlex_pimpl.C (verifyTable): new method
2407         (pushTable): use it
2408         (Pimpl): use it
2409         (GetString): return string const
2410         (pushTable): rewrite to use std::stack
2411         (popTable): ditto
2412         (setFile): better check
2413         (setStream): ditto
2414
2415         * src/lyxlex.h: make LyXLex noncopyable
2416
2417         * src/lyxlex.C (text): return char const * const
2418         (GetString): return string const
2419         (getLongString): return string const
2420
2421         * src/lyx_gui_misc.C (askForText): return pair<...> const
2422
2423         * src/lastfiles.[Ch] (operator): return string const
2424
2425         * src/buffer.C (parseSingleLyXformat2Token): pass string to
2426         istringstream not char const *. 
2427         move token.end() out of loop.
2428         (readFile): move initializaton of token
2429
2430         * src/BufferView2.C (insertErrors): run texrow.increasePos if
2431         getIdFromRow is successful.
2432
2433         * lib/bind/emacs.bind: don't include menus bind
2434
2435         * development/Code_rules/Rules: the beginnings of making this
2436         better and covering more of the unwritten rules that we have.
2437
2438         * development/Code_rules/Recommendations: a couple of wording
2439         changes. 
2440
2441 2000-08-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2442
2443         * src/support/strerror.c: remove C++ comment.
2444
2445 2000-08-04  Angus Leeming  <a.leeming@ic.ac.uk>
2446
2447         * src/commandtags.h: LFUN_INDEX_CREATE_LAST reverts to
2448         LFUN_INDEX_INSERT_LAST
2449
2450         * src/texrow.C (getIdFromRow): changed from const_iterator to
2451         iterator, allowing code to compile with DEC cxx
2452
2453         * src/frontends/xforms/FormCitation.[Ch]: made vector<string>
2454         stores part of the class, as suggested by Allan. Will allow
2455         multiple LyXViews.
2456         (apply): test to apply uses InsetCommandParams operator!=
2457
2458         * src/frontends/xforms/FormIndex.C: moved set_minsize into build
2459         (apply): test to apply uses InsetCommandParams operator!=
2460
2461         * src/frontends/xforms/FormToc.[Ch]: made vector<string>
2462         stores part of the class.
2463         (update): removed limits on min/max size.
2464
2465         * src/frontends/xforms/FormUrl.C: moved set_minsize into build
2466         (apply): test to apply uses InsetCommandParams operator!=
2467
2468         * src/insets/insetcommand.[Ch] InsetCommand made noncopyable
2469         (Read, Write, scanCommand, getCommand): moved functionality
2470         into InsetCommandParams.
2471         (Clone): removed
2472         (getScreenLabel): made pure virtual
2473         new InsetCommandParams operators== and !=
2474         
2475         * src/insets/insetbib.[Ch] (InsetBibKey, InsetBibtex): new
2476         c-tors based on InsetCommandParams. Removed others.
2477         * src/insets/insetinclude.[Ch]: ditto
2478         * src/insets/insetlabel.[Ch]: ditto
2479         * src/insets/insetparent.[Ch]: ditto
2480         * src/insets/insetref.[Ch]: ditto. Also moved gotoLabel into .C
2481         
2482         * src/buffer.C (parseSingleLyXformat2Token, readInset): all
2483         insets derived from InsetCommand created using similar c-tors
2484         based on InsetCommandParams
2485         * src/lyx_cb.C (MenuInsertLabel, RefSelectCB): ditto
2486         * src/menus.C (ShowRefsMenu): ditto
2487         * src/paragraph.C (Clone): ditto
2488         * src/text2.C (SetCounter): ditto
2489         * src/lyxfunc.C (Dispatch) ditto
2490         Also recreated old InsetIndex behaviour exactly. Can now
2491         index-insert at the start of a paragraph and index-insert-last
2492         without launching the pop-up.
2493
2494 2000-08-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
2495
2496         * lib/lyxrc.example: mark te pdf options as non functional.
2497
2498         * src/support/lstrings.C (strToInt): move initalization of tmpstr
2499         (isStrDbl): move tmpstr.end() out of loop.
2500         (strToDbl): move intialization of tmpstr
2501         (lowercase): return string const and move tmp.end() out of loop.
2502         (uppercase): return string const and move tmp.edn() out of loop.
2503         (prefixIs): add assertion
2504         (suffixIs): ditto
2505         (contains): ditto
2506         (contains): ditto
2507         (contains): ditto
2508         (containsOnly): ditto
2509         (containsOnly): ditto
2510         (containsOnly): ditto
2511         (countChar): make last arg char not char const
2512         (token): return string const
2513         (subst): return string const, move tmp.end() out of loop.
2514         (subst): return string const, add assertion
2515         (strip): return string const
2516         (frontStrip): return string const, add assertion
2517         (frontStrip): return string const
2518         (split): ditto
2519         (split): ditto
2520         (rsplit): ditto
2521
2522         * src/support/lstrings.C: add inclde "LAssert.h"
2523         (isStrInt): move tmpstr.end() out of loop.
2524
2525         * src/frontends/xforms/Toolbar_pimpl.C (activate): move
2526         toollist.end() out of loop.
2527         (deactivate): move toollist.end() out of loop.
2528         (update): move toollist.end() out of loop.
2529         (updateLayoutList): move tc.end() out of loop.
2530         (add): move toollist.end() out of loop.
2531
2532         * src/frontends/xforms/Menubar_pimpl.C (create_submenu): move
2533         md.end() out of loop.
2534
2535         * src/texrow.h: make getIdFromRow const, make rowlist mutable.
2536
2537         * src/texrow.C (getIdFromRow): make const, more rowlist.end() out
2538         of loop.
2539
2540         * src/paragraph.C (Erase): move fontlist.end() out of loop.
2541         (Erase): move insetlist.end() out of loop.
2542
2543         * src/lyx_sendfax_main.C: make show_logfile static and to take a
2544         ref to const string as first arg. Move initialization of some
2545         variables, whitespace changes.
2546
2547         * src/kbmap.C (defkey): move table.end() out of loop.
2548         (kb_keymap): move table.end() out of loop.
2549         (findbinding): move table.end() out of loop.
2550
2551         * src/MenuBackend.C (hasMenu): move end() out of loop.
2552         (getMenu): move end() out of loop.
2553         (getMenu): move menulist_.end() out of loop.
2554
2555         * src/Makefile.am (#lyx_LDFLAGS): interesting option commented out.
2556
2557         * src/LaTeXFeatures.C (getIncludedFiles): move IncludedFiles.end()
2558         out of loop.
2559
2560         * src/LColor.C (getFromGUIName): move infotab.end() out of loop.
2561         (getFromLyXName): move infotab.end() out of loop.
2562
2563         * config/lyxinclude.m4 (CXXFLAGS): change for 2.96 add
2564         -fvtable-thunks -ffunction-sections -fdata-sections 
2565
2566 2000-08-03  Dekel Tsur  <dekel@math.tau.ac.il>
2567
2568         * src/frontends/xforms/RadioButtonGroup.h: Changed <forms.h> to
2569         FORMS_H_LOCATION.
2570
2571 2000-08-03  Angus Leeming  <a.leeming@ic.ac.uk>
2572
2573         * src/frontends/xforms/FormCommand.[Ch] (d-tor): removed
2574
2575         * src/frontends/xforms/FormCitation.[Ch],
2576         src/frontends/xforms/FormIndex.[Ch],
2577         src/frontends/xforms/FormToc.[Ch],
2578         src/frontends/xforms/FormUrl.[Ch] (d-tors): call free()
2579
2580 2000-08-03  Angus Leeming  <a.leeming@ic.ac.uk>
2581
2582         * src/commandtags.h: renamed, created some flags for citation
2583         and index
2584
2585         * src/lyx_gui_misc.C: stripped out old FD_index_form code
2586
2587         * src/lyxfunc.C (dispatch): use signals to insert index entry
2588         
2589         * src/frontends/Dialogs.h: new signal createIndex
2590
2591         * src/frontends/xforms/FormCommand.[Ch],
2592         src/frontends/xforms/FormCitation.[Ch],
2593         src/frontends/xforms/FormToc.[Ch],
2594         src/frontends/xforms/FormUrl.[Ch]: clean up and comment better
2595
2596         * src/insets/insetindex.[Ch]: GUI-independent
2597
2598         * src/frontends/xforms/FormIndex.[Ch],
2599         * src/frontends/xforms/forms/form_index.fd: xforms implementation
2600         of the Index dialog
2601         
2602 2000-08-01  Dekel Tsur  <dekel@math.tau.ac.il>
2603
2604         * src/mathed/math_write.C (MathDecorationInset::Write) Put \protect 
2605         before \overbrace, \underbrace, \overleftarrow, or \overrightarrow.
2606         
2607 2000-08-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
2608
2609         * src/insets/insetref.C (Latex): rewrite so that there is now
2610         question that a initialization is requested.
2611
2612         * src/insets/insetcommand.h: reenable the hide signal
2613
2614 2000-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2615
2616         * src/frontends/xforms/Menubar_pimpl.C (create_submenu): try to
2617         fix handling of shortcuts (many bugs :)
2618         (add_lastfiles): ditto.
2619
2620         * lib/ui/default.ui: fix a few shortcuts.
2621
2622 2000-07-27  Kayvan A. Sylvan  <kayvan@sylvan.com>
2623
2624         * Makefile.am: Fix ``rpmdist'' target to return the exit
2625         status of the ``rpm'' command, instead of the last command in
2626         the chain (the ``rm lyx.xpm'' command, which always returns
2627         success).
2628
2629 2000-08-02  Allan Rae  <rae@lyx.org>
2630
2631         * src/frontends/xforms/FormUrl.C (FormUrl): Initialise ALL variables.
2632         * src/frontends/xforms/FormCitation.C (FormCitation): ditto
2633         * src/frontends/xforms/FormToc.C (FormToc): ditto
2634
2635         * src/frontends/xforms/Makefile.am: A few forgotten files
2636
2637         * src/frontends/xforms/FormCommand.C (showInset): The rest of the
2638         Signals-not-copyable-problem Lars' started commenting out.
2639
2640         * src/frontends/xforms/form_toc.[hC]: new files.  TOC crashes lyx.
2641
2642 2000-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
2643
2644         * src/insets/insetcommand.h: Signals is not copyable so anoter
2645         scheme for automatic hiding of forms must be used.
2646
2647         * src/frontends/xforms/FormCitation.h: don't inerit from
2648         noncopyable, FormCommand already does that.
2649         * src/frontends/xforms/FormToc.h: ditto
2650         * src/frontends/xforms/FormUrl.h: ditto
2651
2652         * src/frontends/xforms/FormCitation.C: add include <algorithm>
2653
2654 2000-08-01  Angus Leeming  <a.leeming@ic.ac.uk>
2655
2656         * src/insets/insetcommand.h (hide): new SigC::Signal0
2657         (d-tor) new virtual destructor emits hide signal
2658
2659         * src/insets/insetcite.[Ch] (hide, d-tor, EditMessage): removed
2660         * src/insets/inseturl.[Ch]  (hide, d-tor): ditto
2661
2662         * src/insets/insettoc.[Ch]: one inset now deals with TOC, LOA,
2663         LOF and LOT. Inset is now GUI-independent
2664
2665         * src/insets/insetloa.[Ch]: redundant
2666         * src/insets/insetlof.[Ch]: ditto
2667         * src/insets/insetlot.[Ch]: ditto
2668         
2669         * src/frontends/xforms/forms/form_url.fd: tweaked!
2670         * src/frontends/xforms/forms/form_citation.fd: ditto
2671
2672         * src/frontends/xforms/FormCommand.[Ch]: new base class to those
2673         dialogs dealing with InsetCommand insets
2674
2675         * src/frontends/xforms/FormCitation.[Ch]: now makes use of
2676         FormCommand base class
2677         * src/frontends/xforms/FormUrl.[Ch]: ditto
2678
2679         * src/frontends/xforms/forms/form_toc.fd: Xforms implementation
2680         of the TOC dialog
2681         * src/frontends/xforms/FormToc.[Ch]: ditto
2682
2683         * src/frontends/Dialogs.h (showCitation, showTOC, showUrl): all
2684         passed a generic InsetCommand pointer
2685         * src/frontends/xforms/Dialogs.C (c-tor): create instance of FormToc
2686
2687         * src/lyxfunc.C (Dispatch) : modified to accomodate new FormToc class
2688         and modified InsetTOC class
2689         * src/buffer.C: ditto
2690
2691         * forms/lyx.fd: strip out old FD_form_toc code
2692         * src/lyx_gui_misc.C: ditto
2693         * src/lyx_gui.C: ditto
2694         * src/lyx_cb.C: ditto
2695         * src/lyx.[Ch]: ditto
2696  
2697 2000-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
2698
2699         * src/support/utility.hpp: tr -d '\r'
2700
2701 2000-08-01  Juergen Vigna  <jug@sad.it>
2702
2703         * src/insets/insettabular.h: removed initFeatures() as it's not needed.
2704
2705         * src/commandtags.h: 
2706         * src/LyXAction.C (init): added LFUN_LAYOUT_TABULAR and
2707         LFUN_TABULAR_FEATURES.
2708
2709         * src/lyxfunc.C (getStatus): implemented LFUN_TABULAR_FEATURES and
2710         LFUN_LAYOUT_TABULAR.
2711
2712         * src/insets/insettabular.C (getStatus): implemented helper function.
2713
2714         * lib/ui/default.ui: implemented edit-table-menu and layout-tabular.
2715
2716 2000-07-31  Juergen Vigna  <jug@sad.it>
2717
2718         * src/text.C (draw): fixed screen update problem for text-insets.
2719
2720         * src/text2.C (SetParagrpah): call an update of the inset-owner when
2721         something changed probably this has to be added in various other
2722         functions too.
2723
2724         * src/insets/insettext.C (cy): fixed to give back the right cursor.y().
2725
2726 2000-07-31  Baruch Even <baruch.even@writeme.com>
2727
2728         * src/frontends/xforms/RadioButtonGroup.C: Changed to use home-brew
2729         templates to satisfy compaq cxx.
2730
2731
2732 2000-07-31  Lars Gullik Bjønnes  <larsbj@lyx.org>
2733
2734         * src/support/translator.h (equal_1st_in_pair::operator()): take
2735         const ref pair_type as arg. 
2736         (equal_2nd_in_pair::operator()): ditto
2737         (Translator::~Translator): remove empty d-tor.
2738
2739         * src/graphics/GraphicsCache.C: move include config.h to top, also
2740         put initialization of GraphicsCache::singleton here.
2741         (~GraphicsCache): move here
2742         (addFile): take const ref as arg
2743         (removeFile): ditto
2744
2745         * src/lyxlex_pimpl.C (setFile): comment in old behaviour
2746
2747         * src/BufferView2.C (insertLyXFile): change te with/without header
2748         check slightly.
2749
2750 2000-07-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2751
2752         * src/frontends/xforms/FormGraphics.C (apply): add some
2753         static_cast. Not very nice, but required by compaq cxx.
2754
2755         * src/frontends/xforms/RadioButtonGroup.h: include header
2756         <utility> instead of <pair.h>
2757
2758         * src/insets/insetgraphicsParams.C: add using directive. 
2759         (readResize): change return type to void. 
2760         (readOrigin): ditto.
2761
2762         * src/lyxfunc.C (getStatus): add missing break for build-program
2763         function; add test for Literate for export functions.
2764
2765         * lib/ui/default.ui: fix Insert->TOC->TOC; comment out invalid
2766         entries in Options menu.
2767
2768 2000-07-31  Baruch Even <baruch.even@writeme.com>
2769
2770         * src/frontends/xforms/Toolbar_pimpl.C (toolbarItem::operator=):
2771         protect against auto-allocation; release icon when needed.
2772
2773 2000-07-31  Matej Cepl <CeplM@seznam.cz>
2774
2775         * lib/kbd/czech.kmap: new file. standard Czech keyboard as found
2776         on usual typewriter.
2777
2778         * lib/kbd/czech-prg.kmap: simpler czech kmap (which was the
2779         earlier czech.kmap), useful only for programming.
2780
2781 2000-07-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2782
2783         * src/frontends/xforms/FormCitation.h: fix conditioning around
2784         #pragma. 
2785
2786 2000-07-31  Juergen Vigna  <jug@sad.it>
2787
2788         * src/frontends/xforms/FormTabular.C (local_update): changed
2789         radio_linebreaks to radio_useparbox and added radio_useminipage.
2790
2791         * src/tabular.C: made support for using minipages/parboxes.
2792
2793         * src/bufferlist.C (QwriteAll): small fix for asking for save.
2794
2795         * src/insets/insetgraphics.C (draw): just draw the inset so that the
2796         cursor is visible.
2797         (descent): so the cursor is in the middle.
2798         (width): bit smaller box.
2799
2800         * src/insets/insetgraphics.h: added display() function.
2801
2802 2000-07-31  Baruch Even <baruch.even@writeme.com>
2803
2804         * src/frontends/Dialogs.h: Added showGraphics signals.
2805
2806         * src/frontends/xforms/forms/form_graphics.fd: Added file, the
2807         xforms form definition of the graphics dialog.
2808
2809         * src/frontends/xforms/FormGraphics.h: 
2810         * src/frontends/xforms/FormGraphics.C: Added files, the
2811         GUIndependent code of InsetGraphics
2812
2813         * src/insets/insetgraphics.h: 
2814         * src/insets/insetgraphics.C: Major writing to make it work.
2815
2816         * src/insets/insetgraphicsParams.h:     
2817         * src/insets/insetgraphicsParams.C: Added files, parameter passing
2818         struct between InsetGraphics and GUI.
2819
2820         * src/LaTeXFeatures.h:
2821         * src/LaTeXFeatures.C (c-tor, require, getPackages): Enabled
2822         support for graphicx package. 
2823
2824         * src/buffer.C (parseSingleLyXformat2Token): Fixed read support
2825         for the graphics inset.
2826
2827         * src/support/translator.h: Added file, used in
2828         InsetGraphicsParams. this is a template to translate between two
2829         types.
2830
2831         * src/frontends/xforms/RadioButtonGroup.h: 
2832         * src/frontends/xforms/RadioButtonGroup.C: Added files, Comprise a
2833         way to easily control a radio button group.
2834
2835 2000-07-28  Juergen Vigna  <jug@sad.it>
2836
2837         * src/insets/insettabular.C (LocalDispatch): 
2838         (TabularFeatures): added support for lyx-functions of tabular features.
2839         (cellstart): refixed this function after someone wrongly changed it.
2840
2841         * src/commandtags.h:
2842         * src/LyXAction.C (init): added support for tabular-features
2843
2844 2000-07-28  Allan Rae  <rae@lyx.org>
2845
2846         * src/frontends/xforms/FormPreferences.C (build): Setup input return
2847         checking.  NOTE: It seems that pressing ESC to cancel the dialog also
2848         triggers the callback for input checking. As a result we sometimes get
2849         "LyX: This shouldn't happen..." printed to cerr.
2850         (input): Started using status variable since I only free() on 
2851         destruction.  Some input checking for paths and font sizes.
2852
2853         * src/frontends/xforms/FormPreferences.h: Use status to control 
2854         activation of Ok and Apply
2855
2856         * src/frontends/xforms/forms/form_preferences.fd: Setup input return
2857         callback.  Also resized to stop segfaults with 0.88.  The problem is
2858         that xforms-0.88 requires the folder to be wide enough to fit all the
2859         tabs.  If it isn't it causes all sorts of problems.
2860
2861         * src/frontends/xforms/FormCopyright.[hC]: forward declare FD_form...
2862
2863         * src/frontends/xforms/forms/README: Reflect reality.
2864
2865         * src/frontends/xforms/forms/fdfix.sh: Clean up comments
2866         * src/frontends/xforms/forms/makefile: ditto.
2867
2868         * src/commandtags.h: Get access to new Preferences dialog
2869         * src/LyXAction.C: ditto
2870         * src/lyxfunc.C: ditto
2871         * lib/ui/default.ui: ditto
2872
2873 2000-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2874
2875         * src/frontends/xforms/forms/makefile (.c.C): change call to fdfix.sh.
2876
2877         * src/frontends/xforms/Makefile.am (libxforms_la_SOURCES): add a
2878         few files.
2879
2880         * src/frontends/xforms/form_url.[Ch]: added.
2881
2882 2000-07-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
2883
2884         * src/insets/insetbib.h: fixed bug in previous commit
2885
2886         * src/frontends/xforms/FormUrl.h: ditto
2887
2888         * src/frontends/xforms/FormPrint.h: ditto
2889
2890         * src/frontends/xforms/FormPreferences.h: ditto
2891
2892         * src/frontends/xforms/FormCopyright.h: ditto
2893
2894         * src/frontends/xforms/FormCitation.C: ditto
2895
2896         * src/frontends/Dialogs.h (class Dialogs): use noncopyable, remove
2897         private copyconstructor and private default contructor
2898
2899         * src/support/Makefile.am: add utility.hpp
2900
2901         * src/support/utility.hpp: new file from boost
2902
2903         * src/insets/insetbib.h: set owner in clone
2904
2905         * src/frontends/xforms/FormCitation.C: added missing include
2906         algorithm
2907
2908         * src/insets/form_url.[Ch]: removed
2909
2910 2000-07-26  Kayvan A. Sylvan <kayvan@sylvan.com>
2911
2912         * development/lyx.spec.in
2913         * Makefile.am: Fix buglet for LyX RPM generation resulting from
2914         file/directory re-organization.
2915
2916 2000-07-26  Angus Leeming  <a.leeming@ic.ac.uk>
2917
2918         * src/insets/insetcommand.[Ch]: moved the string data and
2919         associated manipulation methods into a new stand-alone class
2920         InsetCommandParams. This class has two additional methods
2921         getAsString() and setFromString() allowing the contents to be
2922         moved around as a single string.
2923         (addContents) method removed.
2924         (setContents) method no longer virtual.
2925
2926         * src/buffer.C (readInset): made use of new InsetCitation,
2927         InsetUrl constructors based on InsetCommandParams.
2928
2929         * src/commandtags.h: add LFUN_INSERT_URL
2930
2931         * src/lyxfunc.C (Dispatch): changed to accomadate GUI-
2932         independent InsetUrl and use InsetCommandParams to extract
2933         string info and create new Insets.
2934
2935         * src/frontends/Dialogs.h: add signals showUrl, createUrl.
2936
2937         * src/frontends/xforms/FormCitation.C (apply): uses 
2938         InsetCommandParams.
2939
2940         * src/frontends/xforms/form_url.C
2941         * src/frontends/xforms/form_url.h
2942         * src/frontends/xforms/FormUrl.h
2943         * src/frontends/xforms/FormUrl.C
2944         * src/frontends/xforms/forms/form_url.fd: new files
2945
2946         * src/insets/insetcite.[Ch]: removed unused constructors.
2947
2948         * src/insets/insetinclude.[Ch]: no longer store filename
2949
2950         * src/insets/inseturl.[Ch]: GUI-independent.
2951
2952 2000-07-26  Juergen Vigna  <jug@sad.it>
2953         * renamed frontend from gtk to gnome as it is that what is realized
2954         and did the necessary changes in the files.
2955         
2956 2000-07-26  Marko Vendelin <markov@ioc.ee>
2957         * autogen.sh
2958         * configure.in: cleaning up gnome configuration scripts
2959
2960 2000-07-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2961
2962         * src/frontends/xforms/Menubar_pimpl.C (set): fix the disappearing
2963         shortcuts syndrom by redrawing them explicitely (a better solution
2964         would be appreciated).
2965
2966         * src/lyxfunc.C (getStatus): fix crash when functions are disabled.
2967
2968         * src/frontends/xforms/Menubar_pimpl.C (set): fix the shortcut of
2969         the button.
2970
2971         * src/lyx_cb.C (MenuExport): change html export to do the right
2972         thing depending of the document type (instead of having
2973         html-linuxdoc and html-docbook).
2974         * src/lyxfunc.C (getStatus): update for html
2975         * lib/ui/default.ui: simplify due to the above change.
2976         * src/menus.C (ShowFileMenu): update too (in case we need it).
2977
2978         * src/MenuBackend.C (read): if a menu is defined twice, add the
2979         new entries to the exiting one.
2980
2981 2000-07-26  Juergen Vigna  <jug@sad.it>
2982
2983         * src/buffer.h: added functions setUnnamed(bool) and isUnnamed().
2984
2985         * src/lyx_cb.C (MenuWriteAs): Changed to react right for unnamed docs
2986         and return a bool if it did actual save the file.
2987         (AutoSave): don't autosave a unnamed doc.
2988
2989         * src/bufferlist.C (close) (QwriteAll) (emergencyWriteAll):
2990         check if this is an UNNAMED new file and react to it.
2991         (newFile): set buffer to unnamed and change to not mark a new
2992         buffer dirty if I didn't do anything with it.
2993
2994         * src/lyxfunc.C (MenuNew): Changed to not ask for filename on new.
2995
2996 2000-07-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
2997
2998         * src/frontends/Menubar.h: make "struct Pimpl;" public + the
2999         friend as per Angus's patch posted to lyx-devel.
3000
3001         * src/ext_l10n.h: updated
3002
3003         * src/frontends/xforms/Toolbar_pimpl.C (updateLayoutList): run
3004         gettext on the style string right before inserting them into the
3005         combox. 
3006
3007         * autogen.sh: add code to extract style strings form layout files,
3008         not good enough yet. 
3009
3010         * src/frontends/gtk/.cvsignore: add MAKEFILE
3011
3012         * src/MenuBackend.C (read): run the label strings through gettext
3013         before storing them in the containers.
3014
3015         * src/ext_l10n.h: new file 
3016
3017         * autogen.sh : generate the ext_l10n.h file here
3018
3019 2000-07-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3020
3021         * src/lyxrc.C (read): do not use LyXLex::lex() to parse set_color
3022         arguments. 
3023
3024         * lib/ui/default.ui: fix a couple of typos.
3025
3026         * config/gnome/gtk.m4: added (and added to the list of files in 
3027         autogen.sh).
3028
3029         * src/insets/insetinclude.C (unique_id): fix when we are using
3030         lyxstring instead of basic_string<>. 
3031         * src/insets/insettext.C (LocalDispatch): ditto.
3032         * src/support/filetools.C: ditto.
3033
3034         * lib/configure.m4: create the ui/ directory if necessary.
3035
3036         * src/LyXView.[Ch] (updateToolbar): new method.
3037
3038         * src/BufferView_pimpl.C (buffer): update the toolbar when
3039         opening/closing buffer.
3040
3041 2000-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3042
3043         * src/LyXAction.C (getActionName): enhance to return also the name
3044         and options of pseudo-actions.
3045         (init): New lyxfunc LFUN_MATH_PANEL=="math-panel".
3046
3047         * lib/ui/default.ui: use OptItem in the vc submenu (intented just
3048         as an example of what is possible). Used in File->Build too (more
3049         useful) and in the import/export menus (to mimick the complicated
3050         handling of linuxdoc and friends). Try to update all the entries.
3051
3052         * src/frontends/xforms/Menubar_pimpl.C (create_submenu): handle
3053         optional entries.
3054
3055         * src/MenuBackend.C (read): Parse the new OptItem tag.
3056
3057         * src/MenuBackend.h: Add a new optional_ data member (used if the
3058         entry should be omitted when the lyxfunc is disabled).
3059
3060         * src/frontends/xforms/Menubar_pimpl.C (string_width): new
3061         function, used as a shortcut.
3062         (create_submenu): align correctly the shortcuts on the widest
3063         entry.
3064         
3065         * src/MenuBackend.h: MenuItem.label() only returns the label of
3066         the menu without shortcut; new method shortcut().
3067         
3068 2000-07-14  Marko Vendelin <markov@ioc.ee>
3069
3070         * src/frontends/gtk/Dialogs.C:
3071         * src/frontends/gtk/FormCopyright.C:
3072         * src/frontends/gtk/FormCopyright.h:
3073         * src/frontends/gtk/Makefile.am: added these source-files for the
3074         Gtk/Gnome support of the Copyright-Dialog.
3075
3076         * src/main.C: added Gnome::Main initialization if using
3077         Gtk/Gnome frontend-GUI.
3078
3079         * src/lyx_gui.C: added Gnome event loop if using Gtk/Gnome
3080         frontend-GUI.
3081         * config/gnome/aclocal-include.m4
3082         * config/gnome/compiler-flags.m4
3083         * config/gnome/curses.m4
3084         * config/gnome/gnome--.m4
3085         * config/gnome/gnome-bonobo-check.m4
3086         * config/gnome/gnome-common.m4
3087         * config/gnome/gnome-fileutils.m4
3088         * config/gnome/gnome-ghttp-check.m4
3089         * config/gnome/gnome-gnorba-check.m4
3090         * config/gnome/gnome-guile-checks.m4
3091         * config/gnome/gnome-libgtop-check.m4
3092         * config/gnome/gnome-objc-checks.m4
3093         * config/gnome/gnome-orbit-check.m4
3094         * config/gnome/gnome-print-check.m4
3095         * config/gnome/gnome-pthread-check.m4
3096         * config/gnome/gnome-support.m4
3097         * config/gnome/gnome-undelfs.m4
3098         * config/gnome/gnome-vfs.m4
3099         * config/gnome/gnome-x-checks.m4
3100         * config/gnome/gnome-xml-check.m4
3101         * config/gnome/gnome.m4
3102         * config/gnome/gperf-check.m4
3103         * config/gnome/gtk--.m4
3104         * config/gnome/linger.m4
3105         * config/gnome/need-declaration.m4: added configuration scripts
3106         for Gtk/Gnome frontend-GUI
3107
3108         * configure.in: added support for the --with-frontend=gtk option
3109
3110         * autogen.sh: added config/gnome/* to list of config-files
3111
3112         * acconfig.h: added define for GTKGUI-support
3113
3114         * config/lyxinclude.m4: added --with-frontend[=value] option value
3115         for Gtk/Gnome frontend-GUI support.
3116
3117 2000-07-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
3118
3119         * src/support/lstrings.C (prefixIs): rewrite so that gcc bastring
3120         can be used.
3121         (suffixIs): ditto
3122
3123         * src/paragraph.C (GetChar): remove non-const version
3124
3125         * src/lyxlex_pimpl.C (compare_tags): rewritten to suit cvs gcc 2.96
3126         (search_kw): use it.
3127
3128         * src/lyx_main.C (init): if "preferences" exist, read that instead
3129         of "lyxrc".
3130         (ReadRcFile): return bool if the file could be read ok.
3131         (ReadUIFile): add a check to see if lex file is set ok.
3132
3133         * src/lyx_cb.C (InsertAsciiFile): rewrite a bit so that gcc
3134         bastring can be used instead of lyxstring (still uses the old code
3135         if std::string is good enough or if lyxstring is used.)
3136
3137         * src/encoding.C: make the arrays static, move ininle functions
3138         here
3139         * src/encoding.h: from here.
3140
3141         * src/buffer.C: have last_isnet_read as a file scope variable for now.
3142         (parseSingleLyXformat2Token): move inset parsing to separate method
3143         (readInset): new private method
3144
3145         * src/Variables.h: remove virtual from get().
3146
3147         * src/ToolbarDefaults.C: include lyxparagraph.h temporary to get
3148         access to NEW_INSETS and NEW_TABULAR
3149
3150         * src/MenuBackend.h: remove superfluous forward declaration of
3151         MenuItem. Add documentations tags "///", remove empty MenuItem
3152         destructor, remove private default contructor.
3153
3154         * src/MenuBackend.C (MenuItem): remove unneeded copy contructor 
3155         (add): return *this
3156         (read): more string mlabel and mname to where they are used
3157         (read): remove unused variables mlabel and mname
3158         (defaults): unconditional clear, make menusetup take advantage of
3159         add returning Menu &.
3160
3161         * src/LyXView.h: define NEW_MENUBAR as default
3162
3163         * src/LyXAction.C: include lyxparagraph.h temporary to get access
3164         to NEW_INSETS and NEW_TABULAR.
3165         (init): commetn out some funcs that is obsolete when NEW_INSETS is
3166         defined. Change some of the "xxxx-inset-insert" functions names to
3167         "xxxx-insert".
3168
3169         * several files: more enahncements to NEW_INSETS and the resulting
3170         LyXParagraph code.
3171         
3172         * lib/lyxrc.example (\date_insert_format): move to misc section 
3173
3174         * config/lyxinclude.m4 (LYX_CXX_STL_STRING): allow to use the gcc
3175         bastring and use AC_CACHE_CHECK. 
3176         (LYX_CXX_GOOD_STD_STRING): new check. Checks if the std::string of
3177         the system have the newest methods. uses AC_CACHE_CHECK 
3178         (LYX_CXX_MUTABLE): use AC_CACHE_CHECK 
3179         (LYX_CXX_PARTIAL): use AC_CACHE_CHECK 
3180         (LYX_CXX_NAMESPACES): use AC_CACHE_CHECK
3181
3182         * configure.in: add LYX_CXX_GOOD_STD_STRING
3183
3184         * acinclude.m4: recreated
3185
3186 2000-07-24  Amir Karger
3187
3188         * README: add Hebrew, Arabic kmaps
3189         * ANNOUNCE: typo
3190
3191 2000-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3192
3193         * src/buffer.C (writeFileAscii): Define actcell as an int instead
3194         of int*.
3195
3196 2000-07-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3197
3198         * Lot of files: add pragma interface/implementation.
3199         
3200         * src/lyx_main.C (ReadUFile): new method. Read the UI file.
3201
3202         * lib/ui/default.ui: new file (ans new directory). Contains the
3203         default menu and toolbar.
3204
3205         * src/lyxrc.[Ch]: new variable ui_file. Move toolbardefaults to
3206         global space. Toolbars are now read (as menus) in ui files. 
3207
3208         * src/debug.C: change Debug::TOOLBAR to Debug::GUI.
3209
3210         * src/lyxfunc.C (getStatus): do not exit immediately if a command
3211         is disabled because the document is read-only. We want to have the
3212         toggle state of the function anyway.
3213         (getStatus): add code for LFUN_VC* functions (mimicking what is
3214         done in old-style menus)
3215         
3216         * src/lyxfunc.C (Dispatch): news functions LFUN_SWITCHBUFFER,
3217         LFUN_HELP_CREDITS, LFUN_HELP_VERSION, LFUN_HELP_OPEN.
3218
3219         * src/LyXView.[Ch]: add code for the NEW_MENUBAR define.
3220         * src/BufferView_pimpl.C: ditto. 
3221         * src/lyxfunc.C: ditto.         
3222
3223         * src/LyXView.h: add a define NEW_MENUBAR (commented out by
3224         default). This replaces old-style menus by new ones.
3225         
3226         * src/MenuBackend.[Ch]: new classes MenuBackend, Menu and
3227         MenuItem. Contain the data structure of a menu.
3228
3229         * src/insets/insettext.C: use LyXView::setLayout instead of
3230         accessing directly the toolbar combox.
3231         * src/lyxfunc.C (Dispatch): ditto.
3232
3233         * src/LyXView.C (setLayout): new method, which just calls
3234         Toolbar::setLayout(). 
3235         (updateLayoutChoice): move part of this method in Toolbar.
3236
3237         * src/toolbar.[Ch]: removed.
3238         
3239         * src/frontend/xforms/Toolbar_pimpl.[Ch]: new files. The xforms
3240         implementation the toolbar. 
3241
3242         * src/frontend/Toolbar.[Ch]: new files. The abstract interface of
3243         the toolbar. It might make sense to merge it with ToolbarDefaults
3244         later. 
3245         (setLayout): new function. 
3246         (updateLayoutList): ditto.
3247         (openLayoutList): ditto.
3248         
3249         * src/frontend/xforms/Toolbar_pimpl.[Ch]: new files. Contain the
3250         xforms implementation of the toolbar.
3251         (get_toolbar_func): comment out, since I do not
3252         know what it is good for. 
3253         
3254         * src/ToolbarDefaults.h: Add the ItemType enum.
3255
3256         * src/support/StrPool.[Ch]: new class. Acts as a reference holder
3257         for a list of allocated C strings. Used in Menubar xforms
3258         implementation to avoid memory leaks.
3259
3260         * src/support/lstrings.[Ch] (uppercase): new version taking and
3261         returning a char.
3262         (lowercase): ditto.
3263
3264         * lib/bind/xemacs.bind: remove bogus binding for lyx-quit.
3265         * lib/bind/emacs.bind: ditto.
3266
3267 2000-07-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
3268
3269         * src/toolbar.h: include commandtags.h instead of lyxfunc.h,
3270         forward decl of LyXView.
3271
3272         * src/toolbar.C (toolbarItem): moved from toolbar.h
3273         (toolbarItem::clean): ditto
3274         (toolbarItem::~toolbarItem): ditto
3275         (toolbarItem::operator): ditto
3276
3277         * src/text2.C (SetLayout): commetn out USE_OLD_SETUP_LAYOUT stuff
3278
3279         * src/paragraph.h: control the NEW_TABULAR define from here
3280
3281         * src/buffer.C: remove define USE_PARSE_FUNCTION, change
3282         USE_TABULAR_INSETS to NEW_TABULAR
3283
3284         * src/ToolbarDefaults.C: add include "lyxlex.h"
3285
3286         * files using the old table/tabular: use NEW_TABULAR to control
3287         compilation of old tabular stuff. 
3288
3289         * src/paragraph.C (SimpleTeXOnePar): NEW_INSETS: move some #ifdef
3290         to correct place.
3291
3292         * src/buffer.C (parseSingleLyXformat2Token): NEW_INSETS: fix the
3293         planemet in reading of old style floats, fix the \end_deeper
3294         problem when reading old style floats. 
3295
3296 2000-07-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
3297
3298         * src/paragraph.C (writeFile): NEW_INSETS: move a misplaced #endif
3299
3300 2000-07-20  Serge Winitzki <winitzki@erebus.phys.cwru.edu>
3301
3302         * lib/bind/sciword.bind: updated.
3303
3304 2000-07-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
3305
3306         * src/paragraph.C (writeFile): NEW_INSETS: possible fix to the
3307         layout write problem
3308
3309 2000-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3310
3311         * src/Makefile.am (INCLUDES): remove image directory from include
3312         path. 
3313
3314         * src/bullet_forms.C (create_form_form_bullet): small cleanup.
3315         * src/bullet_forms_cb.C (BulletPanelCB): ditto.
3316
3317         * src/LyXView.C (create_form_form_main): read the application icon
3318         from the disk.
3319
3320         * lib/images/*.xpm: change the icons to use transparent color for
3321         background. 
3322
3323         * src/toolbar.C (update): change the color of the button when it
3324         is toggled on.
3325
3326 2000-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3327
3328         * src/lyxfunc.C (Dispatch): use LyXView::ShowState instead of
3329         setting explicitely the minibuffer.
3330         * src/BufferView_pimpl.C (workAreaButtonRelease): ditto.
3331
3332         * src/LyXView.C (showState): new function. Shows font information
3333         in minibuffer and update toolbar state.
3334         (LyXView): call Toolbar::update after creating the
3335         view. 
3336
3337         * src/toolbar.C: change toollist to be a vector instead of a
3338         linked list.
3339         (BubbleTimerCB): get help string directly from the callback
3340         argument of the corresponding icon (which is the action) 
3341         (set): remove unnecessary ugliness.
3342         (update): new function. update the icons (depressed, disabled)
3343         depending of the status of the corresponding action.
3344         
3345         * src/toolbar.h: remove help in toolbarItem
3346
3347 2000-07-19  Dekel Tsur  <dekel@math.tau.ac.il>
3348
3349         * src/Painter.C (text): Added code for using symbol glyphs from
3350         iso10646 fonts. Currently diabled.
3351
3352         * src/encoding.C: Added new encodings: iso8859_3,iso8859_9 and
3353         symbol_encoding.
3354
3355         * src/language.C (initL): Fixed encodings for esperanto,lsorbian,
3356         magyar,turkish and usorbian.
3357
3358         * src/paragraph.C (isMultiLingual): Made more efficient.
3359
3360         * src/mathed/formula.C (LocalDispatch): Fixed behavior of greek
3361         keyboard.
3362
3363         * src/mathed/math_symbols.C (math_insert_greek): Changed to use
3364         LocalDispatch(..,LFUN_SELFINSERT,..) instead of math_insert_symbol().
3365         Also changed the prototype to "bool math_insert_greek(char)".
3366    
3367 2000-07-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
3368
3369         * lots of files: apply the NEW_INSETS on all code that will not be
3370         needed when we move to use the new insets. Enable the define in
3371         lyxparagrah.h to try it.
3372         
3373         * src/insets/insettabular.C (cellstart): change to be a static
3374         inline function
3375         (InsetTabular): initialize buffer in the initializer list.
3376
3377 2000-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
3378
3379         * src/frontends/xforms/FormPrint.[Ch] : moved #include
3380         form_print.h out of the header file. Replaced with forward
3381         declarations of the relevant struct.
3382
3383         * src/frontends/xforms/FormPreferences.[Ch] : ditto for
3384         form_preferences.h.
3385
3386         * src/commandtags.h: do not include "debug.h" which does not
3387         belong there. #include it in some other places because of this
3388         change. 
3389
3390 2000-07-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3391
3392         * src/insets/insetcaption.C: add a couple "using" directives.
3393
3394         * src/toolbar.C (add): get the help text directly from lyxaction.
3395         (getPixmap): nuked.
3396         (setPixmap): new function. Loads from disk and sets a pixmap on a
3397         botton; the name of the pixmap file is derived from the command
3398         name. 
3399
3400         * src/toolbar.h: remove members isBitmap and pixmap from
3401         toobarItem struct. 
3402
3403         * lib/images/*.xbm *_bw.xpm: remove (not used any more).
3404         * lib/images/: move many files from images/banner.xpm.
3405
3406         * src/lyx_gui.C (create_forms): read banner pixmap from file.
3407
3408         * src/lyx_gui.C (create_forms): remove TWO_COLORS_ICONS support.
3409         * src/toolbar.C: ditto.
3410         * configure.in: ditto.
3411         * INSTALL: document. 
3412
3413         * src/spellchecker.C (ShowSpellChecker): use CancelCloseCB when
3414         the spellchecker popup is closed from the WM.
3415
3416 2000-07-19  Juergen Vigna  <jug@sad.it>
3417
3418         * src/insets/insetfloat.C (Write): small fix because we use the
3419         insetname for the type now!
3420
3421 2000-07-18  Angus Leeming  <a.leeming@ic.ac.uk>
3422
3423         * src/frontends/xforms/forms/form_citation.fd: object sizes are
3424         now set here
3425
3426         * src/frontends/Dialogs.h: removed hideCitation signal
3427
3428         * src/insets/insetcite.h: added hide signal
3429
3430         * src/insets/insetcite.C (~InsetCitation): emits new signal
3431         (getScreenLabel): "intelligent" label should now fit on the screen!
3432
3433         * src/frontends/xforms/FormCitation.[Ch] (hideInset): removed
3434
3435         * src/frontends/xforms/FormCitation.C (showInset): connects
3436         hide() to the inset's hide signal
3437         (show): modified to use fl_set_object_position rather than
3438         fl_set_object_geometry wherever possible
3439         
3440 2000-07-18  Lars Gullik Bjønnes  <larsbj@lyx.org>
3441
3442         * src/insets/lyxinset.h: add caption code
3443
3444         * src/insets/insetfloat.C (type): new method
3445
3446         * src/insets/insetcaption.C (Write): new method
3447         (Read): new method
3448         (LyxCode): new method
3449
3450         * src/text2.C (SetCounter): revert Jürgens code, but use his idea
3451         to get it right together with using the FloatList.
3452
3453         * src/commandtags.h: add LFUN_INSET_CAPTION
3454         * src/lyxfunc.C (Dispatch): handle it
3455
3456         * src/buffer.C (parseSingleLyXformat2Token): add code to read a
3457         caption inset.
3458
3459         * src/Variables.[Ch]: make expand take a const reference, remove
3460         the destructor, some whitespace changes.
3461
3462         * src/LyXAction.C (init): add caption-inset-insert
3463
3464         * src/FloatList.C (FloatList): update the default floats a bit.
3465
3466 2000-07-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3467
3468         * src/Variables.[Ch]: new files. Intended to be used for language
3469         specific strings (like \chaptername) and filename substitution in
3470         commands. 
3471
3472         * src/trans.C (AddDeadkey): replace keyword "all" with "native" in
3473         kmap files.
3474         * lib/kbd/american.kmap: update
3475
3476         * src/trans_mgr.C (normalkey): do not test allowAccent anymore.
3477
3478         * src/bufferparams.[Ch]: remove member allowAccents.
3479
3480         * src/menus.C (ShowOptionsMenu): remove the LaTeX entry.
3481
3482         * src/LaTeXLog.C: use the log_form.h header.
3483         * src/lyx_gui.C: ditto.
3484         * src/lyx_gui_misc.C: ditto.
3485         * src/lyxvc.h: ditto.
3486
3487         * forms/log_form.fd: new file, created from latexoptions.fd. I
3488         kept the log popup and nuked the options form.
3489
3490         * src/{la,}texoptions.[Ch]: removed.
3491         * src/lyx_cb.C (LaTeXOptions): ditto
3492
3493         * src/lyx_gui.C (create_forms): do not handle the
3494         fd_latex_options form. 
3495
3496 2000-07-18  Juergen Vigna  <jug@sad.it>
3497
3498         * src/insets/insetfloat.C (InsetFloat): use setInsetName to set the
3499         name of the inset so that it can be requested outside (text2.C).
3500
3501         * src/text2.C (SetCounter): modified so it sees insetfloat for caption
3502         labels.
3503
3504 2000-07-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
3505
3506         * src/mathed/formula.h (ConvertFont): constify
3507
3508         * src/mathed/formula.C (Read): add warning if \end_inset is not
3509         found on expected place.
3510
3511         * src/insets/lyxinset.h (ConvertFont): consify
3512
3513         * src/insets/insetquotes.C (ConvertFont): constify
3514         * src/insets/insetquotes.h: ditto
3515
3516         * src/insets/insetinfo.h: add labelfont
3517
3518         * src/insets/insetinfo.C (InsetInfo): set the labelfont
3519         (ascent): use labelfont
3520         (descent): likewise
3521         (width): likewise
3522         (draw): likewise
3523         (Write): make .lyx file a bit nicer
3524
3525         * src/insets/insetfloat.C (Write): simplify somewhat...
3526         (Read): add warning if arg is not found
3527
3528         * src/insets/insetcollapsable.C: add using std::max
3529         (Read): move string token and add warning in arg is not found
3530         (draw): use std::max to get the right ty
3531         (getMaxWidth): simplify by using std::max
3532
3533         * src/insets/insetsection.h: new file
3534         * src/insets/insetsection.C: new file
3535         * src/insets/insetcaption.h: new file
3536         * src/insets/insetcaption.C: new file
3537
3538         * src/insets/inset.C (ConvertFont): constify signature
3539
3540         * src/insets/Makefile.am (libinsets_la_SOURCES): add
3541         insetcaption.[Ch] and insetsection.[Ch]
3542
3543         * src/layout.h: remove LABEL_FIRST_COUNTER from enum, change all
3544         uses to use LABEL_COUNTER_CHAPTER instead.
3545         * src/text2.C (SetCounter): here
3546
3547         * src/counters.h: new file
3548         * src/counters.C: new file
3549         * src/Sectioning.h: new file
3550         * src/Sectioning.C: new file
3551
3552         * src/Makefile.am (lyx_SOURCES): add Sectioning.[hC] and counters.[Ch]
3553
3554 2000-07-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3555
3556         * lib/Makefile.am (listerrors): build-listerrors is in ${srcdir},
3557         not always in "."!
3558
3559         * src/paragraph.[Ch] (SimpleTeXSpecialChars): fix the definition of
3560         the last argument.
3561
3562 2000-07-17  Juergen Vigna  <jug@sad.it>
3563
3564         * src/tabular.C (Validate): check if array-package is needed.
3565         (SetVAlignment): added support for vertical alignment.
3566         (SetLTFoot): better support for longtable header/footers
3567         (Latex): modified to support added features.
3568
3569         * src/LaTeXFeatures.[Ch]: added array-package.
3570
3571 2000-07-17  R. Lahaye  <lahaye@postech.ac.kr>
3572
3573         * src/lyx_gui.C (LyXGUI): make sure that the height is large
3574         enough. 
3575
3576 2000-07-17  Kayvan Sylvan <ksylvan@synopsys.com>
3577
3578         * configure.in: do not forget to put a space after -isystem.
3579
3580 2000-07-10  Dekel Tsur  <dekel@math.tau.ac.il>
3581
3582         * lib/kbd/arabic.kmap: a few fixes.
3583
3584 2000-07-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
3585
3586         * some whitespace chagnes to a number of files.
3587         
3588         * src/support/DebugStream.h: change to make it easier for
3589         doc++ to parse correctly.
3590         * src/support/lyxstring.h: ditto
3591
3592         * src/mathed/math_utils.C (compara): change to have only one
3593         operator()
3594         (MathedLookupBOP): change because of the above.
3595
3596         * src/mathed/math_delim.C (math_deco_compare): change to have only
3597         one operator()
3598         (search_deco): change becasue of the above.
3599
3600         * src/insets/insettabular.C (DrawCellSelection): use std::swap
3601         instead of manually coded one.
3602
3603         * src/insets/insetquotes.C (Read): read the \end_inset too
3604
3605         * src/insets/insetlatex.h: remove file
3606         * src/insets/insetlatex.C: remove file
3607         
3608         * src/insets/insetindex.[Ch] (InsetPrintIndex): remove default
3609         constructor 
3610         (InsetPrintIndex): remove destructor
3611
3612         * src/insets/insetinclude.h: remove default constructor
3613
3614         * src/insets/insetfloat.C: work to make it work better
3615
3616         * src/insets/inseterror.[Ch] (InsetError): remove default constructor
3617
3618         * src/insets/insetcite.h (InsetCitation): remove default constructor
3619
3620         * src/insets/insetbutton.[Ch] (InsetButton): remove default constructor
3621
3622         * src/text.C (GetColumnNearX): comment out some currently unused code.
3623
3624         * src/paragraph.C (writeFile): move some initializations closer to
3625         first use.
3626         (CutIntoMinibuffer): small change to use new matchIT operator
3627         (Erase): ditto
3628         (Erase): ditto
3629         (InsertChar): ditto
3630         (InsertInset): ditto
3631         (GetInset): ditto
3632         (GetInset): ditto
3633         (InsetIterator): ditto
3634         (Erase): small change to use new matchFT operator
3635         (InsertChar): ditto
3636         (GetFontSettings): ditto
3637         (HighestFontInRange): ditto
3638         (SetFont): ditto
3639
3640         * src/lyxparagraph.h: some chars changed to value_type
3641         (matchIT): because of some stronger checking (perhaps too strong)
3642         in SGI STL, the two operator() unified to one.
3643         (matchFT): ditto
3644
3645         * src/lyxfunc.C (Dispatch): code to insert InsetFloat improved
3646
3647         * src/buffer.C (parseSingleLyXformat2Token): static string to hold
3648         the last inset read added
3649         (parseSingleLyXformat2Token): some more (future) compability code added
3650         (parseSingleLyXformat2Token): warning about solitary \end_inset added
3651         (parseSingleLyXformat2Token): set last_inset_read
3652         (parseSingleLyXformat2Token): more code to read new "Float" correctly
3653         (parseSingleLyXformat2Token): don't double intializw string next_token
3654
3655         * src/TextCache.C (text_fits::operator()): add const's to the signature
3656         (has_buffer::operator()): ditto
3657
3658         * src/Floating.h: add some comments on the class
3659
3660         * src/FloatList.[Ch] (typeExist): new method
3661         (getType): ditto
3662
3663         * src/BackStack.h: added default constructor, wanted by Gcc.
3664
3665 2000-07-14  Juergen Vigna  <jug@sad.it>
3666
3667         * src/insets/insettext.C (clear): fixed for multiple paragraps/layouts.
3668
3669         * src/frontends/xforms/forms/form_tabular.fd: updated a bit.
3670
3671         * src/insets/insettabular.C (resizeLyXText): need this to be able to
3672         do a redraw when the window is resized!
3673         (LocalDispatch): small fix so LFUN_TAB works only with locked_inset.
3674
3675         * src/insets/insettext.C (resizeLyXText): added function to correctly
3676         being able to resize the LyXWindow.
3677
3678         * src/table.C (Read): fixed read on DOS-lyx-file (lf-lr)
3679
3680 2000-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
3681
3682         * src/frontends/Dialogs.h (hideCitation) : new signal to prevent
3683         crashes when closing dialog to a deleted inset.
3684
3685         * src/insets/insetcite.[Ch] (Edit) : the return of this former
3686         method! Now similar to other insets.
3687
3688 2000-07-13  Juergen Vigna  <jug@sad.it>
3689
3690         * src/text.C (GetVisibleRow): fixed clearing of rows with insets!
3691
3692         * lib/examples/Literate.lyx: small patch!
3693
3694         * src/insets/insetbib.C (Read): added this function because of wrong
3695         Write (without [begin|end]_inset).
3696
3697 2000-07-11  Juergen Vigna  <jug@sad.it>
3698
3699         * src/BufferView2.C (open_new_inset): changed to a bool returnvalue
3700         as the insertInset could not be good!
3701
3702         * src/screen.C (ToggleSelection): fixed toggle selection bug as
3703         the bool param should not be last.
3704
3705 2000-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3706
3707         * sigc++/configure.in: fix bug in threading-related code (Yes, I
3708         did submit that to Karl).
3709
3710         * configure.in: use -isystem instead of -I for X headers. This
3711         fixes a problem on solaris with a recent gcc; 
3712         put the front-end code after the X detection code;
3713         configure in sigc++ before lib/
3714
3715         * src/lyx_main.C (commandLineHelp): remove -display from command
3716         line help.
3717
3718 2000-07-09  Kayvan A. Sylvan  <kayvan@sylvan.com>
3719
3720         * lib/Makefile.am: added lib/build-listerrors to DIST tarfile.
3721         Also put in Makefile rules for building the ``listerrors''
3722         program for parsing errors from literate programs written in LyX.
3723
3724         * lib/build-listerrors: Added small shell script as part of compile
3725         process. This builds a working ``listerrors'' binary if noweb is
3726         installed and either 1) the VNC X server is installed on the machine,
3727         or 2) the user is compiling from within a GUI. The existence of a GUI
3728         is necessary to use the ``lyx --export'' feature for now. This
3729         hack can be removed once ``lyx --export'' no longer requires a GUI to
3730         function.
3731
3732 2000-07-09  Bernard Michael Hurley <bernardh@westherts.ac.uk>
3733
3734         * lib/examples/Literate.lyx, src/Literate.[Ch]: Error messages are
3735         now passed back correctly from gcc and placed "under" error
3736         buttons in a Literate LyX source.
3737
3738 2000-07-08  Dekel Tsur  <dekel@math.tau.ac.il>
3739
3740         * src/text.C (GetColumnNearX): Better behavior when a RTL
3741         paragraph is ended by LTR text.
3742
3743         * src/text2.C (SetCurrentFont,CursorLeftIntern,CursorRightIntern):
3744         Ditto
3745
3746 2000-07-08  Dekel Tsur  <dekel@math.tau.ac.il>
3747
3748         * src/WorkArea.C  (request_clipboard_cb): Set clipboard_read to
3749         true when clipboard is empty.
3750
3751 2000-07-08  Dekel Tsur  <dekel@math.tau.ac.il>
3752
3753         * text.C (Backspace): Prevent rebreaking of a row if it is the last
3754         row of the paragraph.
3755         (SetHeightOfRow): Call to PrepareToPrint with 7th argument = false 
3756         to prevent calculation of bidi tables
3757
3758 2000-07-07  Juergen Vigna  <jug@sad.it>
3759
3760         * src/screen.C (ToggleSelection): added y_offset and x_offset
3761         parameters.
3762
3763         * src/insets/insettext.C (InsetMotionNotify): fixed selection with
3764         mouse.
3765
3766         * src/text.C (GetVisibleRow): fixed selection drawing in insets.
3767
3768         * src/insets/insettext.C: fixed Layout-Display!
3769
3770 2000-07-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3771
3772         * configure.in: add check for strings.h header.
3773
3774         * src/spellchecker.C: include <strings.h> in order to have a
3775         definition for bzero().
3776
3777 2000-07-07  Juergen Vigna  <jug@sad.it>
3778
3779         * src/insets/insettext.C (draw): set the status of the bv->text to
3780         CHANGED_IN_DRAW if top_x changed and so a reinit is necessary.
3781
3782         * src/screen.C (DrawOneRow): 
3783         (DrawFromTo): redraw the actual row if something has changed in it
3784         while drawing.
3785
3786         * src/text.C (draw): call an update of the toplevel-inset if something
3787         has changed inside while drawing.
3788
3789         * src/lyxtext.h: added CHANGED_IN_DRAW status.
3790
3791 2000-07-06  Angus Leeming  <a.leeming@ic.ac.uk>
3792
3793         * src/insets/insetbib.[Ch] (callback) new method, moving callback
3794         processing inside class.
3795
3796         * src/insets/insetindex.[Ch] (callback) new method, moving callback
3797         processing inside class.
3798
3799         * src/insets/insetindex.h new struct Holder, consistent with other
3800         insets.
3801
3802         * src/insets/insetcite.[Ch] and elsewhere: stripped out xforms
3803         citation dialog from main code and placed it in src/frontends/xforms.
3804         Dialog launched through signals instead of callbacks
3805         
3806 2000-07-06  R. Lahaye  <lahaye@postech.ac.kr>
3807
3808         * lyx.man: update the options description.
3809
3810 2000-07-05  R. Lahaye  <lahaye@postech.ac.kr>
3811
3812         * src/lyx_gui.C src/lyx_main.C: improve the -geometry support,
3813         handle neg values, set min width to 590, add doc about -display  
3814
3815 2000-07-05  Juergen Vigna  <jug@sad.it>
3816
3817         * src/insets/lyxinset.h: changed Painter & in ascent(), descent()
3818         calls to BufferView *.
3819
3820         * src/insets/insettext.C (checkAndActivateInset): small fix non
3821         HIGHLY_EDITABLE insets should not be entered by cursor-move-over!
3822
3823         * src/insets/insetcommand.C (Read): Fixed as insets should read till
3824         their \end_inset token!
3825
3826 2000-07-04  edscott  <edscott@imp.mx>
3827
3828         * src/lyxrc.C, src/lyxrc.h, src/BufferView_pimpl.C,
3829         lib/lyxrc.example: added option \wheel_jump
3830
3831 2000-07-04   R. Lahaye  <lahaye@postech.ac.kr>
3832
3833         * src/lyx_gui.C src/lyx_main.C: add support for -geometry, and
3834         remove support for -width,-height,-xpos and -ypos.
3835
3836 2000-07-01  Dekel Tsur  <dekel@math.tau.ac.il>
3837
3838         * src/encoding.[Ch]: New files.
3839
3840         * src/painter.C (text(int,int,XChar2b const *,...)): New method.
3841         (text): Call to the underline() method only when needed.
3842
3843         * src/font.C (XTextWidth16,width(XChar2b const *,...)): New methods.
3844
3845         * src/buffer.C (makeLaTeXFile): Compute automatically the input
3846           encoding(s) for the document.
3847
3848         * src/bufferparams.C (BufferParams): Changed default value of
3849         inputenc to "auto".
3850
3851         * src/language.C (newLang): Removed.
3852         (items[]): Added encoding information for all defined languages.
3853
3854         * src/lyx_gui.C (create_forms): Added "auto" option to the input
3855         encoding choice button.
3856
3857         * src/lyxrc.h (font_norm_type): New member variable.
3858         (set_font_norm_type): New method.
3859
3860         * src/paragraph.C (TeXOnePar): Put "\inputencoding{}" between
3861         paragraphs with different encodings.  
3862
3863         * src/text.C (is_arabic, is_nikud, TransformChar): Moved to encoding.C
3864         (TransformChar): Changed to work correctly with Arabic points.
3865         (draw): Added support for drawing Arabic points.
3866         (draw): Removed code for drawing underbars (this is done by
3867         the Painter!)
3868
3869         * src/support/textutils.h (IsPrintableNonspace): New function.
3870
3871         * src/BufferView_pimpl.h: Added "using SigC::Object".
3872         * src/LyXView.h: ditto.
3873
3874         * src/insets/insetinclude.h (include_label): Changed to mutable.
3875
3876 2000-07-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3877
3878         * src/mathed/math_iter.h: remove empty destructor
3879
3880         * src/mathed/math_cursor.h: remove empty destructor
3881
3882         * src/insets/lyxinset.h: add THEOREM_CODE
3883
3884         * src/insets/insettheorem.[Ch]: new files 
3885
3886         * src/insets/insetminipage.C: (InsertInset): remove
3887
3888         * src/insets/insetmarginal.C: inherit from InsetFootLike instead
3889         of InsetCollapsable
3890         (InsertInset): remove
3891
3892         * src/insets/insetlist.C: (InsertList): remove
3893
3894         * src/insets/insetfootlike.[Ch]: new files 
3895
3896         * src/insets/insetfoot.C: inherit from InsetFootLike instead of
3897         InsetCollapsable.
3898         (Write): remove
3899         (InsertInset): ditto
3900
3901         * src/insets/insetert.C: remove include Painter.h, reindent
3902         (InsertInset): move to header
3903
3904         * src/insets/insetcollapsable.h: remove explicit from default
3905         contructor, remove empty destructor, add InsertInset
3906
3907         * src/insets/insetcollapsable.C (InsertInset): new func
3908
3909         * src/insets/Makefile.am (libinsets_la_SOURCES): add new files
3910
3911         * src/vspace.h: add explicit to constructor
3912
3913         * src/paragraph.C (SimpleTeXSpecialChars): use \, instead of
3914         \textcompwordmark, please test this.
3915
3916         * src/lyxrc.C: set ascii_linelen to 65 by default
3917
3918         * src/lyxfunc.C (Dispatch): handle LFUN_INSET_THEOREM
3919
3920         * src/commandtags.h: add LFUN_INSET_THEOREM
3921
3922         * src/buffer.C (parseSingleLyXformat2Token): handle insettheorem
3923         (makeLinuxDocFile): remove _some_ of the nice logic
3924         (makeDocBookFile): ditto
3925
3926         * src/Painter.[Ch]: (~Painter): removed
3927
3928         * src/LyXAction.C (init): entry for insettheorem added
3929
3930         * src/LaTeX.C: get rid of the all_files array, and the TEX_FILES
3931         enum
3932         (deplog): code to detect files generated by LaTeX, needs testing
3933         (deptex): removed
3934
3935 2000-07-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
3936
3937         * src/FloatList.[Ch]: moved inlines out of line to FloatList.C
3938
3939 2000-07-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
3940
3941         * src/LaTeX.C (deplog): Add a check for files that are going to be
3942         created by the first latex run, part of the project to remove the
3943         all_files array.
3944
3945         * src/LaTeX.[Ch]: Patch from Baruch to add hebrew table of
3946         contents to the extension list.
3947
3948 2000-07-04  Juergen Vigna  <jug@sad.it>
3949
3950         * src/text.C (NextBreakPoint): added support for needFullRow()
3951
3952         * src/insets/lyxinset.h: added needFullRow()
3953
3954         * src/insets/insetcollapsable.C: redone now this uses a text-inset
3955         and isn't one.
3956
3957         * src/insets/insettext.C: lots of changes for update!
3958
3959 2000-07-03 Angus Leeming <a.leeming@ic.ac.uk>
3960
3961         * src/LaTeXFeatures.h: add a missing std:: qualifier.
3962
3963 2000-07-02 José Abílio Matos <jamatos@fep.up.pt>
3964
3965         *  src/insets/insetinclude.C (InsetInclude): fixed
3966         initialization of include_label.
3967         (unique_id): now returns a string.
3968
3969 2000-07-01 José Abílio Matos <jamatos@fep.up.pt>
3970
3971         * src/LaTeXFeatures.h: new member IncludedFiles, for
3972         a map of key, included file name.
3973
3974         * src/LaTeXFeatures.C (getIncludedFiles): returns a string
3975         with the included files for inclusion in SGML preamble,
3976         i. e., linuxdoc and docbook.
3977
3978         * src/buffer.h:
3979         * src/buffer.C (makeLinuxDocFile): takes two new arguments,
3980         nice (is the generated linuxdoc code to be exported?), that
3981         allows to remove column, and only_body that will be true for
3982         slave documents. Insets are allowed inside SGML font type.
3983         New handling of the SGML preamble for included files.
3984         (makeDocBookFile): the same for docbook.
3985
3986         * src/insets/insetinclude.h:
3987         * src/insets/insetinclude.C (Validate): keeps a list of included files.
3988         (Linuxdoc): 
3989         (DocBook): new export methods.
3990
3991         * src/lyx_cb.C: adjust to the new calling sequence for makeLinuxDocFile
3992         and makeDocBookFile.
3993
3994         * src/lyx_main.C (easyParse): accept linuxdoc and docbook as
3995         formats to export with command line argument -x.
3996
3997 2000-06-29  Juergen Vigna  <jug@sad.it>
3998
3999         * src/mathed/formula.C (LocalDispatch): changed only-cursor-movements
4000         to return DISPATCHED_NOUPDATE so that a it does not redraw the inset!
4001
4002         * src/text.C (GetVisibleRow): added 'bool cleared' parameter as the
4003         region could already been cleared by an inset!
4004
4005 2000-06-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
4006
4007         * src/BufferView_pimpl.h: remove member variables lyx_focus and
4008         work_area_focus
4009
4010         * src/BufferView_pimpl.C (Pimpl): delete init of work_area_focus
4011         and lyx_focus
4012         (cursorToggle): remove special handling of lyx focus.
4013
4014 2000-06-28  Juergen Vigna  <jug@sad.it>
4015
4016         * src/text.C (GetVisibleRow): fixed clearing of text if rowHeight >
4017         insetHeight.
4018
4019 2000-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4020
4021         * src/insets/insetindex.C (Edit): add a callback when popup is
4022         closed by the WM.
4023
4024         * src/insets/insettext.C (LocalDispatch): 
4025         * src/insets/insetmarginal.h: 
4026         * src/insets/insetlist.h: 
4027         * src/insets/insetfoot.h: 
4028         * src/insets/insetfloat.h: 
4029         * src/insets/insetert.h: add a missing std:: qualifier.
4030
4031 2000-06-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
4032
4033         * src/support/lyxsum.C (sum): '\0' teminate file read when using
4034         strstream. 
4035
4036         * src/insets/lyxinset.h: add FLOAT_CODE and MINIPAGE_CODE
4037
4038         * src/insets/insettext.C (Read): remove tmptok unused variable
4039         (LocalDispatch): add not working LFUN_PARAGRAPH_SPACING
4040         (InsertInset): change for new InsetInset code
4041
4042         * src/insets/insettext.h: add TEXT inline method
4043
4044         * src/insets/insettext.C: remove TEXT macro
4045
4046         * src/insets/insetmarginal.C (Write): new method
4047         (Latex): change output slightly
4048
4049         * src/insets/insetfoot.C (Write): new method
4050         (Latex): change output slightly (don't use endl when no need)
4051
4052         * src/insets/insetert.C (Write): new method
4053
4054         * src/insets/insetcollapsable.h: make button_length, button_top_y
4055         and button_bottm_y protected.
4056
4057         * src/insets/insetcollapsable.C (Write): simplify code by using
4058         tostr. Also do not output the float name, the children class
4059         should to that to get control over own arguments
4060
4061         * src/insets/insetfloat.[Ch] src/insets/insetlist.[Ch]
4062         src/insets/insetminipage.[Ch]:
4063         new files
4064
4065         * src/insets/Makefile.am (libinsets_la_SOURCES): add new files
4066         
4067         * src/lyxfunc.C (Dispatch): cases for new insets/commands
4068
4069         * src/Makefile.am (lyx_SOURCES): add the new files
4070
4071         * src/LyXAction.C (init): add LFUN_INSET_MARGINAL,
4072         LFUN_INSET_MINIPAGE, LFUN_INSET_FLOAT, LFUN_INSET_LIST
4073         * src/commandtags.h: ditto
4074         
4075         * src/LaTeXFeatures.h: add a std::set of used floattypes
4076
4077         * src/LaTeXFeatures.C (getPackages): add basic support for float.sty
4078
4079         * src/FloatList.[Ch] src/Floating.h: new files
4080
4081         * src/CutAndPaste.C (SwitchLayoutsBetweenClasses): change call to
4082         InsertInset. 
4083         * src/lyx_cb.C (TableApplyCB): ditto
4084         * src/text.C: ditto
4085         * src/text2.C: ditto
4086         * src/buffer.C (SimpleLinuxDocOnePar): ditto
4087         (parseSingleLyXformat2Token): ditto + add code for
4088         backwards compability for old float styles + add code for new insets
4089         
4090         * src/lyxparagraph.[Ch] (InsertChar(size_type, char, LyXFont)): new
4091         method
4092         (InsertInset(size_type, Inset *, LyXFont)): new method
4093         (InsetChar(size_type, char)): changed to use the other InsetChar
4094         with a LyXFont(ALL_INHERIT).
4095         (InsetInset(size_type, Inset*)): changed to use InsetChar to
4096         insert the META_INSET.
4097         
4098         * sigc++/thread.cc (Privete<int>::operator int&): move definition
4099         out of line. 
4100         * sigc++/thread.h (Threads): from here
4101
4102         * sigc++/scope.cc (ScopeIterator_::ScopeIterator_): move
4103         definition out of line
4104         * sigc++/scope.h: from here
4105
4106 2000-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4107
4108         * src/lyxrc.C (read): make sure the .kmap files exist when a keymap
4109         is specified (adapted from a patch from edscott <edscott@imp.mx>).
4110
4111         * Makefile.am (bindist): new target.
4112
4113         * INSTALL: add instructions for doing a binary distribution.
4114
4115         * development/tools/README.bin.example: update a bit. 
4116
4117 2000-06-26  Lior Silberman <slior@math.huji.ac.il>
4118
4119         * src/lyxrc.C: 
4120         * lib/lyxrc.example: new lyxrc tag \set_color.
4121
4122         * src/lyxfunc.C (Dispatch): 
4123         * src/commandtags.h: 
4124         * src/LyXAction.C: new lyxfunc "set-color".
4125
4126         * src/LColor.[Ch] (setColor): new method to set colors from a lyxname
4127         and an x11name given as strings.
4128
4129         * src/ColorHandler.[Ch] (updateColor): new method. Updates the GC
4130         cache when a color is changed.
4131
4132 2000-06-26  Juergen Vigna  <jug@sad.it>
4133
4134         * src/lyxrow.C (width): added this functions and variable.
4135
4136         * src/insets/insetcite.C (create_form_citation_form): some Gravity
4137         changes.
4138
4139         * src/text.C (SetHeightOfRow): fixed calcualting of width.
4140
4141 2000-06-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4142
4143         * images/undo_bw.xpm: new icon.
4144         * images/redo_bw.xpm: ditto.
4145
4146         * configure.in (INSTALL_SCRIPT): change value to
4147         ${INSTALL} to avoid failures of install-script target.
4148         * lib/reLyX/configure.in (INSTALL_SCRIPT): ditto
4149
4150         * src/BufferView.h: add a magic "friend" declaration to please
4151         compaq cxx.
4152
4153 2000-06-23  Angus Leeming <a.leeming@ic.ac.uk>
4154
4155         * forms/cite.fd: modified to allow resizing without messing
4156         up the dialog.
4157
4158         * src/insetcite.C: Uses code from cite.fd almost without
4159         tweaking. ;-)
4160         User can now resize dialog in the x-direction.
4161         Resizing the dialog in the y-direction is prevented, as the
4162         code does this intelligently already.
4163
4164 2000-06-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4165
4166         * INSTALL: remove obsolete entry in "problems" section.
4167
4168         * lib/examples/sl_*.lyx: update of the slovenian examples.
4169
4170         * src/support/FileInfo.[Ch] (getBlockSize): remove.
4171
4172 2000-06-23  Juergen Vigna  <jug@sad.it>
4173
4174         * src/lyxtext.h: added a 'cleared' flag to draw() function.
4175
4176         * src/buffer.C (resize): delete the LyXText of textinsets.
4177
4178         * src/paragraph.C (SetInsetOwner): set the owner in the insets too.
4179
4180         * src/insets/lyxinset.h: added another parameter 'cleared' to
4181         the draw() function.
4182
4183         * src/lyxfunc.C (processKeyEvent): move cursor to the right of the
4184         unlocking inset in inset.
4185
4186 2000-06-22  Juergen Vigna  <jug@sad.it>
4187
4188         * src/lyxscreen.h: added some y_offset/x_offset parameters for drawings
4189         of insets and moved first to LyXText.
4190
4191         * src/mathed/formulamacro.[Ch]:
4192         * src/mathed/formula.[Ch]: changed prototype of draw() and GetCursorPos
4193
4194 2000-06-21  Juergen Vigna  <jug@sad.it>
4195
4196         * src/text.C (GetVisibleRow): look if I should clear the area or not
4197         using Inset::doClearArea() function.
4198
4199         * src/insets/lyxinset.h: added doClearArea() function and
4200         modified draw(Painter &, ...) to draw(BufferView *, ...)
4201
4202         * src/text2.C (UpdateInset): return bool insted of int
4203
4204 2000-06-20  Dekel Tsur  <dekel@math.tau.ac.il>
4205
4206         * src/lyx_gui.C (create_forms): Add "Reset" option to the language 
4207         combox in the character popup
4208
4209         * src/lyx_cb.C (UserFreeFont): Add argument to the method:
4210         BufferParams const & params
4211
4212 2000-06-20  Juergen Vigna  <jug@sad.it>
4213
4214         * src/insets/insettext.C (SetParagraphData): set insetowner on
4215         2- paragraphs.
4216
4217 2000-06-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
4218
4219         * src/Timeout.[Ch]: Change to use signals instead of callbacks.
4220         * src/LyXView.h (struct FD_form_main): remove, LyXView inherits
4221         from SigC::Object
4222         (form_main_): remove
4223         
4224         * src/LyXView.C (LyXView_AutosaveTimerCB): remove 
4225         (create_form_form_main): remove FD_form_main stuff, connect to
4226         autosave_timeout signal
4227
4228         * src/LyXView.[Ch] (getMainForm): remove 
4229         (UpdateTimerCB): remove
4230         * src/BufferView_pimpl.h: inherit from SigC::Object
4231
4232         * src/BufferView_pimpl.C (Pimpl): connect to cursor_timeout with
4233         signal instead of callback
4234
4235         * src/BufferView.[Ch] (cursorToggleCB): remove 
4236
4237 2000-06-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
4238
4239         * src/BufferView_pimpl.C: changes because of the one below
4240
4241         * src/screen.[Ch]: Made the lyxscreen take LyXText as argument
4242         instead of storing a pointer to a LyXText. 
4243
4244         * src/buffer.[Ch]: apply Baruch's remove isdviclean patch. 
4245
4246 2000-06-10  Dekel Tsur  <dekel@math.tau.ac.il>
4247
4248         * src/lyxparagraph.h
4249
4250         * src/paragraph.C: Changed fontlist to a sorted vector.
4251  
4252 2000-06-19  Juergen Vigna  <jug@sad.it>
4253
4254         * src/BufferView.h: added screen() function.
4255
4256         * src/insets/insettext.C (LocalDispatch): some selection code
4257         fixed.
4258
4259         * src/vspace.C (nextToken): use stringfunctions instead of sscanf.
4260
4261         * src/insets/insettext.C (SetParagraphData):
4262         (Read): 
4263         (InsetText):  fixes for multiple paragraphs.
4264
4265 2000-06-17  Kayvan A. Sylvan  <kayvan@sylvan.com>
4266
4267         * development/lyx.spec.in: Call configure with ``--without-warnings''
4268         to work around a bug with the Makefiles when doing ``make lyxrpm''.
4269         This should be fine, however, since we generally don't want to be
4270         verbose when making an RPM.
4271         
4272 2000-06-16  Dekel Tsur  <dekel@math.tau.ac.il>
4273
4274         * lib/scripts/fig2pstex.py: New file
4275
4276 2000-06-16  Juergen Vigna  <jug@sad.it>
4277
4278         * src/insets/insettabular.C (UpdateLocal): 
4279         * src/insets/insettext.C (UpdateLocal): fixed mark_dirty problem.
4280         (LocalDispatch): Changed all functions to use LyXText.
4281
4282 2000-06-15  Juergen Vigna  <jug@sad.it>
4283
4284         * src/text.C (SetHeightOfRow): call inset::update before requesting
4285         any width/height.
4286
4287         * src/insets/insettext.C (update): 
4288         * src/insets/insettabular.C (update): added implementation
4289
4290         * src/insets/lyxinset.h: added update function
4291
4292 2000-06-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4293
4294         * src/text.C (SelectNextWord): protect against null pointers with
4295         old-style string streams. (fix from Paul Theo Gonciari
4296         <gptheo@yahoo.com>) 
4297
4298         * src/cite.[Ch]: remove erroneous files.
4299
4300         * lib/configure.m4: update the list of created directories.
4301
4302         * src/lyxrow.C: include <config.h>
4303         * src/lyxcursor.C: ditto.
4304
4305 2000-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4306
4307         * lib/examples/decimal.lyx: new example file from Mike.
4308
4309         * src/insets/ExternalTemplate.C (readTemplates): Use LibFileSearch()
4310         to find template definitions (from Dekel)
4311
4312         * src/frontends/.cvsignore: add a few things.
4313
4314         * src/frontends/xforms/input_validators.[ch]: remove C++ comments.
4315
4316         * src/Timeout.C (TimeOut): remove default argument.
4317
4318         * src/LyXView.C (LyXView_AutosaveTimerCB): this should not have
4319         "C" linkage.
4320
4321         * src/insets/ExternalTemplate.C: add a "using" directive.
4322
4323         * src/lyx_main.h: remove the act_ struct, which seems unused
4324         anyway. 
4325
4326 2000-06-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
4327
4328         * LyX Developers Meeting: All files changed, due to random C++ (by
4329         coincidence) code generator script.
4330
4331         - external inset (cool!)
4332         - initial online editing of preferences
4333         - insettabular breaks insettext(s contents)
4334         - cleanup
4335         - some DocBook fixes
4336         - example files update
4337         - other cool stuff, create a diff and look for yourself.
4338
4339 2000-06-09  The Great LyX Application  <lyx@localhost.localdomain>
4340
4341         * src/insets/insettext.C (computeTextRows): if the maxWidth is
4342         -1 this is a non-line-breaking textinset.
4343
4344         * src/insets/insettabular.C (GetMaxWidthOfCell): returns now -1
4345         if there is no width set.
4346
4347 2000-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
4348
4349         * Lots of files: Merged the dialogbase branch.
4350
4351 2000-06-09  Allan Rae  <rae@lyx.org>
4352
4353         * src/xtl/, src/lyxfunc.[Ch], src/buffer.[Ch]:  Removed XTL and
4354         and the Dispatch methods that used it.
4355
4356         * src/frontends/Liason.[Ch]: replaced with a Liason namespace for 
4357         access to functions formerly kept in Dispatch.
4358
4359 2000-05-19  Allan Rae  <rae@lyx.org>
4360
4361         * src/PrinterParams.h, src/buffer.C, src/frontends/xforms/FormPrint.C:
4362         made to_page and count_copies integers again.  from_page remains a
4363         string however because I want to allow entry of a print range like
4364         "1,4,22-25" using this field.
4365
4366         * src/LyXAction.C: added action info and commands for buffer-print-xtl
4367         and printer-params-get.  These aren't useful from the minibuffer but
4368         could be used by a script/LyXServer app provided it passes a suitable
4369         auto_mem_buffer.  I guess I should take a look at how the LyXServer
4370         works and make it support xtl buffers.
4371
4372         * sigc++/: updated to libsigc++-1.0.1
4373
4374         * src/xtl/: updated to xtl-1.3.pl.11
4375
4376         * forms/makefile, forms/fdfix.sh, forms/layout_forms.fd: Made sure
4377         those changes done to the files in src/ are actually recreated when
4378         they  get regenerated. Please don't ever accept a patch that changes a
4379         dialog unless that patch includes the changes to the corresponding *.fd
4380         file.
4381
4382         * src/lyx_cb.C, src/support/lstrings.[hC]: Moved Stephen Witt's
4383         stringOnlyContains, renamed it and generalised it.
4384
4385         * lots-of-files: Rolled the "rae" branch over into the "dialogbase"
4386         branch.  Removed the remaining old form_print code.
4387
4388 2000-04-26  Allan Rae  <rae@lyx.org>
4389
4390         * ChangeLog, development/tools/lxtl.sh: D'oh! Got caught in the same
4391         trap I was trying to fix with the ID: fields in src/xtl/  :-)
4392
4393 2000-04-25  Allan Rae  <rae@lyx.org>
4394
4395         * src/xtl/: Updated to incorporate Angus's two patches as well as mine
4396         against a base of xtl-1.3.pl.4
4397
4398         * development/tools/lxtl.sh: fixed a couple of silly typos and now
4399         filter the Id: entries so they still show the xtl version number
4400         they are based on.
4401
4402         * src/support/lxtl.h: removed auto_mem_buffer which is now incorporated
4403         into the src/xtl code.  Patch still pending with José (XTL)
4404
4405 2000-04-24  Allan Rae  <rae@lyx.org>
4406
4407         * src/lyxfunc.[Ch] (Dispatch): Use a mem buffer as a parameter. This is
4408         both more generic and much safer. Use the new template functions.
4409         * src/buffer.[Ch] (Dispatch): ditto.
4410
4411         * src/frontends/xforms/FormPrint.C (update): Use new template functions
4412         and mem buffer more intelligently. Also a little general cleanup.
4413         (apply): ditto.
4414
4415         * configure.in (AC_OUTPUT): Extra stuff for xtl that I forgot.
4416         * development/tools/lxtl.sh: Ditto.  Makefile.am + .cvsignore
4417         * src/xtl/Makefile.am: ditto.
4418         * src/xtl/.cvsignore: ditto.
4419         * src/Makefile.am: ditto.
4420
4421         * src/PrinterParams.h: Removed the macros member functions. Added a
4422         testInvariant member function.  A bit of tidying up and commenting.
4423         Included Angus's idea for fixing operation with egcs-1.1.2.
4424
4425         * src/support/lxtl.h: Many changes.  Added auto_mem_buffer -- a really
4426         cool expansion of XTL's mem_buffer to support automatic memory
4427         management within the buffer itself.  Removed the various macros and
4428         replaced them with template functions that use either auto_mem_buffer
4429         or mem_buffer depending on a #define.  The mem_buffer support will
4430         disappear as soon as the auto_mem_buffer is confirmed to be good on
4431         other platforms/compilers.  That is, it's there so you've got something
4432         to compare against.
4433
4434         * src/xtl/objio.h: Changes to support auto_mem_buffer.  This has
4435         effectively forked XTL.  However I expect José will include my code
4436         into the next major release.  Also fixed a memory leak.
4437         * src/xtl/text.h: ditto.
4438         * src/xtl/xdr.h: ditto.
4439         * src/xtl/giop.h: ditto.
4440
4441 2000-04-16  Allan Rae  <rae@lyx.org>
4442
4443         * acinclude.m4, sigc++/acinclude.m4:  Removed -- they're generated
4444         by autogen.sh and removed by maintainer-clean anyway.
4445         * .cvsignore, sigc++/.cvsignore:  Support the above.
4446
4447         * sigc++/.cvsignore: Forgot that retbind.h was generated.
4448
4449         * src/buffer.C (Dispatch): Couldn't print a single page. Fixed.
4450
4451         * src/frontends/xforms/FormPrint.[Ch]: Switched to C callbacks using
4452         macros, renamed static callback-target member functions to suit new
4453         scheme and made them public.
4454         * src/frontends/xforms/forms/form_print.fd: ditto.
4455         * src/frontends/xforms/forms/form_copyright.fd: ditto.
4456
4457         * src/support/lxtl.h: small cleanup to use typedef instead of #define
4458         for gui_format.
4459
4460         * src/xtl/: New directory containing a minimal distribution of XTL.
4461         This is XTL-1.3.pl.4.
4462
4463         * development/tools/lxtl.sh: A script to generate the above mini-dist.
4464
4465 2000-04-15  Allan Rae  <rae@lyx.org>
4466
4467         * development/tools/makeLyXsigc.sh: Remove the library version numbers
4468
4469         * sigc++/:  Updated to libsigc++-1.0.0
4470
4471 2000-04-14  Allan Rae  <rae@lyx.org>
4472
4473         * src/frontends/xforms/xform_macros.h: Remove specific macros and just
4474         use the generic ones in future.  I'll modify my conversion script.
4475
4476         * src/frontends/xforms/FormCopyright.C: Reverse the earlier change.
4477
4478         * src/lyx_gui_misc.[Ch]: Removed references to form_print.
4479         (CloseAllBufferRelatedDialogs): Renamed.
4480         (updateAllVisibleBufferRelatedDialogs): ditto. Added LaTeXLog
4481
4482         * src/frontends/xforms/FormCopyright.C: Use the specific macros instead
4483         of the generic ones.  These are the same ones my conversion script
4484         generates.
4485
4486         * src/PrinterParams.h: Allow you to print a range of odd or even pages.
4487         * src/frontends/xforms/FormPrint.C (apply, update): ditto+small cleanup
4488         * src/buffer.C (Dispatch): ditto
4489
4490         * src/LyXView.C (LyXView): Use new signals instead of old hard coded
4491         functions for updating and hiding buffer dependent dialogs.
4492         * src/BufferView.C (buffer): ditto
4493         * src/buffer.C (setReadonly): ditto
4494         * src/lyxfunc.C (CloseBuffer): ditto
4495
4496         * src/buffer.h: Take setReadonly() out of line so I don't have to include
4497         Dialogs.h, and hence all the SigC stuff, into every file that includes
4498         buffer.h.  We also don't need to include lyx_gui_misc.h in everything.
4499
4500         * src/BufferView2.C: reduce the number of headers included by buffer.h
4501
4502 2000-04-11  Allan Rae  <rae@lyx.org>
4503
4504         * src/frontends/xforms/xform_macros.h:  A small collection of macros
4505         for building C callbacks.
4506
4507         * src/frontends/xforms/Makefile.am: Added above file.
4508
4509         * src/frontends/xforms/FormCopyright.[Ch]: Revised the C callback
4510         scheme again.  This time it should work for JMarc.  If this is
4511         successful I'll revise my conversion script to automate some of this.
4512         The static member functions in the class also have to be public for
4513         this scheme will work.  If the scheme works (it's almost identical to
4514         the way BufferView::cursorToggleCB is handled so it should work) then
4515         FormCopyright and FormPrint will be ready for inclusion into the main
4516         trunk immediately after 1.1.5 is released -- provided we're prepared
4517         for complaints about lame compilers not handling XTL.
4518
4519         * src/support/lxtl.h: Switched to XDR_format instead of raw_format.
4520
4521 2000-04-07  Allan Rae  <rae@lyx.org>
4522
4523         * config/lyxinclude.m4:  A bit more tidying up (Angus)
4524
4525         * src/LString.h: JMarc's <string> header fix
4526
4527         * src/PrinterParams.h: Used string for most data to remove some
4528         ugly code in the Print dialog and avoid even uglier code when 
4529         appending the ints to a string for output.
4530
4531         * src/buffer.C (Dispatch): Added a couple of braces to fix an error
4532         and moved "default:" back to the end of switch statement.  Cleaned
4533         up the printing so it uses the right function calls and so the
4534         "print to file" option actually puts the file in the right directory.
4535
4536         * src/frontends/xforms/Dialogs.C: Added FormPrint (Angus).
4537
4538         * src/frontends/xforms/FormPrint.C (PrintInputCB): moved input checking
4539         and Ok+Apply button control into a separate method: input (Angus).
4540         (input) Cleaned it up and improved it to be very thorough now.
4541         (All CB) static_cast used instead of C style cast (Angus).  This will
4542         probably change again once we've worked out how to keep gcc-2.8.1 happy
4543         with real C callbacks.
4544         (update) add a few "default:" labels to switches. Egcs-1.1.2 seems to
4545         ignore some of the bool settings and has random numbers instead. Needs
4546         some more investigation.  Added other input length checks and checking
4547         of file and printer names.
4548
4549         * src/frontends/xforms/FormPrint.h: Removed pragma statement so it
4550         would link (Angus).  Seems the old code doesn't compile with the pragma
4551         statement either.  Separated callback entries from internal methods.
4552
4553         * src/lyxfunc.C (Dispatch): LFUN_MENUPRINT calls new dialog (Angus).
4554
4555 2000-03-17  Allan Rae  <rae@lyx.org>
4556
4557         * src/lyxfunc.[Ch] (isAvailable): This is only temporary.  Do we really
4558         need it?  Maybe it could go in Dialogs instead?  I could make it a
4559         LFUN but you'd have to call Dispatch(int, int, char*) with dummy
4560         values to get the bool return value.
4561         (Dispatch): New overloaded method for xtl support.
4562
4563         * src/frontends/xforms/FormCopyright.[Ch]: Modified to use a friendly
4564         extern "C" callback instead of static member functions.  Hopefully,
4565         JMarc will be able to compile this.  I haven't changed 
4566         forms/form_copyright.fd yet. Breaking one of my own rules already.
4567
4568         * src/commandtags.h: New xtl-based LFUN's no description in LyXAction
4569         because they aren't useful from the minibuffer.  Maybe a LyXServer
4570         might want a help message though?
4571
4572         * src/buffer.[Ch] (Dispatch): New overloaded method for xtl support.
4573
4574         * config/lyxinclude.m4: Changes to g++ flags to suit compiling with
4575         xtl which needs both rtti and exceptions.
4576
4577         * src/support/Makefile.am:
4578         * src/support/lxtl.h: New file.  Some helper macros for using XTL.
4579
4580         * src/frontends/xforms/input_validators.[ch]: input filters and
4581         validators.  These conrol what keys are valid in input boxes.
4582         Use them and write some more.  Much better idea than waiting till
4583         after the user has pressed Ok to say that the input fields don't make
4584         sense.
4585
4586         * src/frontends/xforms/Makefile.am:
4587         * src/frontends/xforms/forms/form_print.fd:
4588         * src/frontends/xforms/forms/makefile:
4589         * src/frontends/xforms/FormPrint.[Ch]: Ported previous print form to
4590         new scheme.  Still have to make sure I haven't missed anything from
4591         the current implementation.
4592
4593         * src/Makefile.am, src/PrinterParams.h: New data store.
4594
4595         * other files: Added a couple of copyright notices.
4596
4597 2000-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4598
4599         * src/insets/insetbib.h: move Holder struct in public space.
4600
4601         * src/frontends/include/DialogBase.h: use SigC:: only when
4602         SIGC_CXX_NAMESPACES is defined.
4603         * src/frontends/include/Dialogs.h: ditto.
4604
4605         * sigc++/Makefile.am (%.h): use the autodected GNU m4.
4606
4607         * src/frontends/xforms/FormCopyright.[Ch]: do not
4608         mention SigC:: explicitely.
4609
4610 2000-03-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4611
4612         * config/lyxinclude.m4 (LYX_USE_FRONTEND): move the code which
4613         deals with testing KDE in main configure.in
4614         * configure.in: ditto.
4615
4616 2000-02-22  Allan Rae  <rae@lyx.org>
4617
4618         * Lots of files: Merged from HEAD
4619
4620         * All Makefile.am (ETAGS_ARGS): use parameter that is also compatible
4621         with the etags shipped with SuSE-6.3 (fancier than gnu-etags).
4622
4623         * autogen.sh: Fix JMarcs complaints by building a sigc++/acinclude.m4
4624
4625         * sigc++/: new minidist.
4626
4627 2000-02-14  Allan Rae  <rae@lyx.org>
4628
4629         * development/tools/makeLyXsigc.sh:  Small fix for Makefile.am
4630
4631 2000-02-08  Juergen Vigna  <jug@sad.it>
4632
4633         * src/frontends/kde/dlg/formcopyrightdialog.kdevdlg: the dialog data
4634         file for the buildin GUI builder of KDevelop of the copyright-dialog.
4635
4636         * src/frontends/kde/lyxgui.kdevprj: I added this as I use KDevelop
4637         for this port and so it is much easier for other people to port
4638         dialogs in a common development environment.
4639
4640         * src/frontends/kde/formcopyrightdialog_moc.C: needed MOC file for
4641         the QT/KDE implementation.
4642
4643         * src/frontends/kde/Dialogs.C:
4644         * src/frontends/kde/FormCopyright.C:
4645         * src/frontends/kde/FormCopyright.h:
4646         * src/frontends/kde/Makefile.am:
4647         * src/frontends/kde/formcopyrightdialog.C:
4648         * src/frontends/kde/formcopyrightdialog.h:
4649         * src/frontends/kde/formcopyrightdialogdata.C: added this source-files
4650         for the kde support of the Copyright-Dialog.
4651
4652         * src/frontends/Makefile.am (AUTOMAKE_OPTIONS): now uses @FRONTEND@
4653         subdir-substitution instead of hardcoded 'xforms' as we now have also
4654         the kde subdir.
4655
4656         * src/frontends/include/DialogBase.h (Object): just commented the
4657         label after #endif (nasty warning and I don't like warnings ;)
4658
4659         * src/main.C (main): added KApplication initialization if using
4660         KDE frontend-GUI.
4661
4662         * src/lyx_gui.C (runTime): added support for multiple toolkit support.
4663         For now only the KDE event-loop is added if frontend==kde.
4664
4665         * src/Makefile.am (lyx_DEPENDENCIES): added @FRONTEND_xxx@ support
4666
4667         * configure.in: added support for the --with-frontend[=value] option
4668
4669         * autogen.sh: added kde.m4 file to list of config-files
4670
4671         * acconfig.h: added define for KDEGUI-support
4672
4673         * config/kde.m4: added configuration functions for KDE-port
4674
4675         * config/lyxinclude.m4: added --with-frontend[=value] option with
4676         support for xforms and KDE.
4677
4678 2000-02-08  Allan Rae <rae@lyx.org>
4679
4680         * all Makefile.am:  Fixed up so the make targets dist, distclean, 
4681         install and uninstall all work even if builddir != srcdir.  Still
4682         have a new sigc++ minidist update to come.
4683
4684         * config/lyxinclude.m4: Some more builddir!=srcdir fixes.
4685
4686 2000-02-01  Allan Rae <rae@lyx.org>
4687
4688         * config/lyxinclude.m4, development/tools/makeLyXsigc.sh:
4689         Many mods to get builddir != srcdir working.
4690         
4691         * sigc++/: Upgraded to 0.8.7.  This includes many needed fixes both
4692         for building on NT and so we can do the builddir != srcdir stuff.
4693
4694 2000-01-30  Allan Rae <rae@lyx.org>
4695
4696         * sigc++/doc/*: Selected documentation for the libsigc++ mini dist.
4697         This will stay in "rae" branch.  We probably don't really need it in
4698         the main trunk as anyone who wants to help programming it should get
4699         a full library installed also.  So they can check both included and
4700         system supplied library compilation.
4701
4702         * sigc++/*, sigc++/macros/*, config/sigc++.m4, config/lyxinclude.m4:
4703         Added a 'mini' distribution of libsigc++.  If you feel the urge to 
4704         change something in these directories - Resist it.  If you can't 
4705         resist the urge then you should modify the following script and rebuild
4706         the dist.  LYX_WITH_SIGC in lyxinclude.m4 is the wrapper to make it
4707         all happen.  Still uses a hacked version of libsigc++'s configure.in.
4708         I'm quite happy with the results.  I'm not sure the extra work to turn
4709         the sigc++/configure.in into a few extra AC_DEFUNs in sigc++.m4 is
4710         worth the trouble and would probably lead to extra maintenance 
4711         headaches.
4712         I haven't tested the following important make targets: install, dist.
4713         Not ready for prime time but very close.  Maybe 1.1.5.
4714
4715         * development/tools/makeLyXsigc.sh:  A shell script to automatically
4716         generate our mini-dist of libsigc++.  It can only be used with a CVS
4717         checkout of libsigc++ not a tarball distribution.  It's well commented.
4718         This will end up as part of the libsigc++ distribution so other apps
4719         can easily have an included mini-dist.  If someone makes mods to the
4720         sigc++ subpackage without modifying this script to generate those
4721         changes I'll be very upset!
4722
4723         * src/frontends/:  Started the gui/system indep structure.
4724
4725         * src/frontends/include/Dialogs.h: Dialog container. All the Signal<>s
4726         to access the gui-indep dialogs are in this class.  Much improved
4727         design compared to previous revision.  Lars,  please refrain from
4728         moving this header into src/ like you did with Popups.h last time.
4729
4730         * src/frontends/include/DialogBase.h: Abstract base class for dialogs.
4731
4732         * src/frontends/xforms/:  Started the gui-indep system with a single
4733         dialog: FormCopyright.  Initial testing of use of libsigc++ was very
4734         successful.
4735
4736         * src/frontends/xforms/forms: Repository for the xforms .fd files.
4737         Here you'll find a very useful makefile and automated fdfix.sh that
4738         makes updating dailogs a no-brainer -- provided you follow the rules
4739         set out in the README.  I'm thinking about adding another script to
4740         automatically generate skeleton code for a new dialog given just the
4741         name of the dialog.
4742
4743         * src/commandtags.h, src/lyxfunc.C, src/menus.C:
4744         * src/credits.{Ch}, src/credits_form.{Ch}, forms/credits_form.fd:
4745         Made FormCopyright gui-indep and added a lyxfunc to get to it.
4746
4747 2000-06-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
4748
4749         * src/support/LSubstring.C (operator): simplify
4750
4751         * src/lyxtext.h: removed bparams, use buffer_->params instead
4752         
4753         * src/lyxrow.h: make Row a real class, move all variables to
4754         private and use accessors.
4755
4756         * src/lyxparagraph.h (getParLanguage): add BufferParamas as
4757         arguament.
4758         (isRightToLeftPar): ditto
4759         (ChangeLanguage): ditto
4760         (isMultiLingual): ditto
4761         (String): ditto
4762         (TeXOnePar): ditto
4763         (SimpleTeXOnePar): ditto
4764         (TeXEnvironment): ditto
4765         (GetEndLabel): ditto
4766         (SetLayout): ditto
4767         (SetOnlyLayout): ditto
4768         (BreakParagraph): ditto
4769         (BreakParagraphConservative): ditto
4770         (GetFontSettings): ditto
4771         (getFont): ditto
4772         (CopyIntoMinibuffer): ditto
4773         (CutIntoMinibuffer): ditto
4774         (PasteParagraph): ditto
4775         (SetPExtraType): ditto
4776         (UnsetPExtraType): ditto
4777         (DocBookContTableRows): ditto
4778         (SimpleDocBookOneTablePar): ditto
4779         (TeXDeeper): ditto
4780         (TeXFootnote): ditto
4781         (SimpleTeXOneTablePar): ditto
4782         (TeXContTableRows): ditto
4783         (SimpleTeXSpecialChars): ditto
4784         
4785
4786         * src/lyxcursor.h: make LyXCursor a real class, move all variables
4787         to private and use accessors.
4788
4789         * src/lyx_cb.C: remove char updatetimer, and all code that uses
4790         this, we did not use it anymore and has not been for ages. Just a
4791         waste of cpu cycles.
4792
4793         * src/language.h: make Language a real class, move all variables
4794         to private and use accessors.
4795
4796         * src/BufferView_pimpl.C (Pimpl): use new timer code.
4797         (create_view): remove
4798         (update): some changes for new timer
4799         (cursorToggle): use new timer
4800         (beforeChange): change for new timer
4801
4802         * src/BufferView.h (cursorToggleCB): removed last paramter because
4803         of new timer code. 
4804
4805         * src/BufferView.C (C_BufferView_CursorToggleCB): removed 
4806         (cursorToggleCB): change because of new timer code
4807
4808         * lib/CREDITS: updated own mailaddress
4809
4810 2000-06-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4811
4812         * src/support/filetools.C (PutEnv): fix the code in case neither
4813         putenv() nor setenv() have been found.
4814
4815         * INSTALL: mention the install-strip Makefile target.
4816
4817         * src/LyXAction.C (init): make LFUN_BUILDPROG available in
4818         read-only documents.
4819
4820 2000-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4821
4822         * lib/reLyX/configure.in (VERSION): avoid using a previously
4823         generated reLyX wrapper to find out $prefix.
4824
4825         * lib/examples/eu_adibide_lyx-atua.lyx: 
4826         * lib/examples/eu_adibide_gordina.lyx: new examples for the Basque
4827         translation of the Tutorial (Dooteo)
4828
4829 2000-06-06  Angus Leeming <a.leeming@ic.ac.uk>
4830
4831         * forms/cite.fd: new citation dialog
4832
4833         * src/insetcite.[Ch]: the new citation dialog is moved into
4834         its own files.
4835
4836         * src/insetbib.C: InsetBibtex::getKeys() uses STL containers
4837         (Dekel).
4838
4839         * src/insets/insetcommand.h: data members made private. 
4840
4841 2000-06-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
4842
4843         * LyX 1.1.5 released
4844
4845 2000-06-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
4846
4847         * src/version.h (LYX_RELEASE): to 1.1.5
4848
4849         * src/spellchecker.C (RunSpellChecker): return false if the
4850         spellchecker dies upon creation.
4851
4852 2000-06-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4853
4854         * lib/reLyX/reLyXmain.pl, lib/reLyX/LastLyX.pm: fix suffix of file
4855         in \include{} (from Tomasz Motylewski <motyl@stan.chemie.unibas.ch>) 
4856         
4857         * NEWS: update.
4858
4859         * lib/CREDITS: update entry for Martin Vermeer.
4860
4861 2000-06-06  Dekel Tsur  <dekel@math.tau.ac.il>
4862
4863         * src/text.C (draw): Draw foreign language bars at the bottom of
4864         the row instead of at the baseline.
4865
4866         * lib/examples/Minipage.lyx: Use the new multi-lingual support.
4867
4868 2000-06-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
4869
4870         * lib/bind/de_menus.bind: updated
4871
4872 2000-06-05  Dekel Tsur  <dekel@math.tau.ac.il>
4873
4874         * forms/lyx.fd: Correct gravity for objects in form_toc and form_ref
4875
4876 2000-06-05  Dekel Tsur  <dekel@math.tau.ac.il>
4877
4878         * src/menus.C (Limit_string_length): New function
4879         (ShowTocMenu): Limit the number of items/length of items in the
4880         LOT/LOF/LOA menus.
4881
4882         * src/paragraph.C (String): Correct result for a paragraph inside
4883         a footnote.
4884
4885 2000-06-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
4886
4887         * src/bufferlist.C (close): test of buf->getuser() == NULL
4888
4889 2000-06-02  Dekel Tsur  <dekel@math.tau.ac.il>
4890
4891         * src/BufferView2.C (removeAutoInsets): Fix a bug: 
4892         Do not call to SetCursor when the paragraph is a closed footnote!
4893
4894 2000-06-01  Dekel Tsur  <dekel@math.tau.ac.il>
4895
4896         * src/insets/insetlabel.C (Edit): Mark buffer as dirty when a
4897         label is changed.
4898
4899         * src/text.C (SetCursor): Made the computation of cursor_vpos safer.
4900
4901 2000-05-31 Dekel Tsur  <dekel@math.tau.ac.il>
4902
4903         * forms/lyx.fd
4904         * src/lyx_cb.C (RefSelectCB): Added "Go Back" button in the insert
4905         reference popup, that activates the reference-back action
4906
4907         * src/menus.C (ShowRefsMenu): Added "Go Back" menu item.
4908
4909         * src/menus.C (Add_to_refs_menu): Limit the size of each item in
4910         the menus. Also fixed a bug.
4911
4912         * src/lyx_cb.C (updateAllVisibleBufferRelatedPopups): Do not close 
4913         the math panels when switching buffers (unless new buffer is readonly).
4914
4915         * src/BufferView.C (NoSavedPositions)
4916         * src/BufferView_pimpl.C (NoSavedPositions): New methods
4917
4918 2000-06-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
4919
4920         * src/lyx_cb.C (MakeLaTeXOutput): we run MakeLaTeXOutput regard
4921         less of dvi dirty or not.
4922
4923         * src/trans_mgr.[Ch] (insert): change first parameter to string
4924         const &.  
4925
4926         * src/chset.[Ch] (encodeString): add const to first parameter
4927
4928 2000-05-31  Lars Gullik Bjønnes  <larsbj@lyx.org>
4929
4930         * src/support/lyxstring.C (begin): fix a "shared" string bug. use
4931         rep->get_own_copy()
4932         (end): ditto
4933
4934         * src/LaTeX.C (deplog): better searching for dependency files in
4935         the latex log. Uses now regexps.
4936
4937         * lib/layouts/stdlists.inc (lyxlist): fix the label to use \hfil
4938         instead of the box hack or \hfill. 
4939
4940 2000-05-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4941
4942         * src/lyxfunc.C (doImportHelper): do not create the file before
4943         doing the actual import. 
4944         (doImportASCIIasLines): create a new file before doing the insert.
4945         (doImportASCIIasParagraphs): ditto.
4946
4947         * lib/lyxrc.example: remove mention of non-existing commands
4948
4949         * lyx.man: remove mention of color-related switches.
4950
4951         * src/lyxrc.C: remove RC_SELECTIONCOLOR and RC_BACKGROUNDCOLOR. 
4952
4953         * src/lyx_gui.C: remove all the color-related ressources, which
4954         are not used anymore.
4955
4956         * src/lyx_gui_misc.C (WarnReadonly): use MakeDisplayPath on file
4957         name. 
4958
4959 2000-05-31 Dekel Tsur  <dekel@math.tau.ac.il>
4960
4961         * src/lyxrc.C (read): Add a missing break in the switch
4962
4963 2000-05-30 Dekel Tsur  <dekel@math.tau.ac.il>
4964
4965         * src/text2.C (InsertStringA): Fix a bug with insertion into table
4966         
4967         * src/trans_mgr.C (insertVerbatim): Do not use insetquote when the
4968         text is Hebrew.
4969  
4970 2000-05-27  Dekel Tsur  <dekel@math.tau.ac.il>
4971
4972         * src/text.C (draw): draw bars under foreign language words.
4973         
4974         * src/LColor.[Ch]: add LColor::language
4975
4976 2000-05-27 Dekel Tsur  <dekel@math.tau.ac.il>
4977
4978         * src/lyxcursor.h (boundary): New member variable
4979
4980         * src/text.C (IsBoundary): New methods
4981
4982         * src/text.C: Use the above for currect cursor movement when there
4983         is both RTL & LTR text.
4984         
4985         * src/text2.C: ditto
4986         
4987         * src/bufferview_funcs.C (ToggleAndShow): ditto
4988
4989 2000-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4990
4991         * src/text.C (DeleteLineForward): set selection to true to avoid
4992         that DeleteEmptyParagraphMechanism does some magic. This is how it
4993         is done in all other functions, and seems reasonable.
4994         (DeleteWordForward): do not jump over non-word stuff, since
4995         CursorRightOneWord() already does it.
4996         
4997         Remove the CHECK tag from DeleteLineForward, DeleteWordForward and
4998         DeleteWordBackward, since they seem safe to me (since selection is
4999         set to "true") DeleteEmptyParagraphMechanism does nothing.
5000
5001 2000-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5002
5003         * src/lyx_main.C (easyParse): simplify the code by factoring the
5004         part that removes parameters from the command line.
5005         (LyX): check wether wrong command line options have been given.
5006
5007 2000-05-29  Lior Silberman <slior@math.huji.ac.il>
5008
5009         * src/lyx_main.C : add support for specifying user LyX
5010         directory via command line option -userdir.
5011
5012 2000-05-26 Dekel Tsur  <dekel@math.tau.ac.il>
5013
5014         * src/menus.C (Add_to_toc_menu): Limit the number of popups, and
5015         the number of items per popup.
5016         (Add_to_refs_menu): Ditto.
5017         
5018 2000-05-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5019
5020         * src/lyxparagraph.h: renamed ClearParagraph() to
5021         StripLeadingSpaces() and moved it to paragraph.C. We pass the
5022         textclass as parameter, and do nothing if free_spacing is
5023         true. This fixes part of the line-delete-forward problems.
5024
5025         * src/CutAndPaste.C (cutSelection): use StripLeadingSpaces.
5026         (pasteSelection): ditto.
5027         (SwitchLayoutsBetweenClasses): more translatable strings.
5028
5029         * src/text2.C (CutSelection): use StripLeadingSpaces.
5030         (PasteSelection): ditto.
5031         (DeleteEmptyParagraphMechanism): ditto.
5032
5033 2000-05-26  Juergen Vigna  <jug@sad.it>
5034
5035         * src/TabularLayout.C (TabularOptionsCB): removed delete-table as this
5036         is not needed in tabular insets.
5037
5038         * src/insets/insettabular.C (TabularFeatures): added missing features.
5039
5040         * src/tabular.C (DeleteColumn):
5041         (AppendColumn): 
5042         (AppendRow): implemented this functions
5043         (cellsturct::operator=): clone the inset too; 
5044
5045 2000-05-23  Juergen Vigna  <jug@sad.it>
5046
5047         * src/insets/insettabular.C (LocalDispatch): better selection support
5048         when having multicolumn-cells.
5049
5050 2000-05-26  Jose Abilio Oliveira Matos <jamatos@novalis.fc.up.pt>
5051
5052         * lib/layouts/linuxdoc.layout: fix indentation of paragraphs.
5053
5054 2000-05-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5055
5056         * src/ColorHandler.C (getGCForeground): put more test into _()
5057
5058         * lib/examples/eu_splash.lyx: new file (Basque translation) from
5059         Dooteo. 
5060
5061         * config/lyxinclude.m4 (LYX_PROG_CXX): use ${CXX} and not g++ to
5062         get the version.
5063
5064 2000-05-25 Dekel Tsur  <dekel@math.tau.ac.il>
5065
5066         * src/lyx_cb.C (RefUpdateCB): disable appropriate buttons when
5067         there are no labels, or when buffer is readonly.
5068
5069         * src/menus.C (ShowRefsMenu) disable appropriate menu items when
5070         there are no labels, buffer is SGML, or when buffer is readonly.
5071
5072 2000-05-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
5073
5074         * src/LColor.C (LColor): change a couple of grey40 to grey60
5075         (LColor): rewore initalization to make compiles go some magnitude
5076         faster.
5077         (getGUIName): don't use gettext until we need the string.
5078
5079 2000-05-09  Dekel Tsur  <dekel@math.tau.ac.il>
5080
5081         * src/Bullet.[Ch]: Fixed a small bug.
5082
5083 2000-05-21  Dekel Tsur  <dekel@math.tau.ac.il>
5084
5085         * src/paragraph.C (String): Several fixes/improvements
5086
5087         * src/insets/insetbib.[Ch] (InsetCitation::Ascii) New method
5088
5089 2000-05-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
5090
5091         * src/paragraph.C (String): give more correct output.
5092
5093 2000-05-20  Dekel Tsur  <dekel@math.tau.ac.il>
5094
5095         * src/lyxfont.C (stateText) Do not output the language if it is
5096         eqaul to the language of the document.
5097
5098         * src/paragraph.C (TeXOnePar): Do not put language switch commands
5099         between two paragraphs with the same language.
5100
5101         * src/paragraph.C (getParLanguage) Return a correct answer for an
5102         empty dummy paragraph.
5103
5104         * src/menus.C (ShowTocMenu): Do not draw lines between LOF/LOT/LOA
5105         menus.
5106
5107         * src/menus.C (ShowLayoutMenu) Add "Start of Appendix" item to the
5108         layout menu.
5109
5110         * src/lyx_gui.C (init): Try to use helvetica (or fixed) fonts for
5111         the menus/popup, if requested fonts are unavailable.
5112
5113 2000-05-22  Juergen Vigna  <jug@sad.it>
5114
5115         * src/insets/insettabular.C (LocalDispatch): added some more cursor
5116         movement support (Up/Down/Tab/Shift-Tab).
5117         (LocalDispatch): added also preliminari cursor-selection.
5118
5119         * src/LyXAction.C (init): added SHIFT-Tab as tab-backward.
5120
5121         * src/paragraph.C (PasteParagraph): Hopefully now right!
5122
5123 2000-05-22  Garst R. Reese  <reese@isn.net>
5124
5125         * layouts/hollywood.layout, broadway.layout : move Dialogue to top
5126          of list, change all references to Environment to Command
5127         * tex/hollywood.cls : rewrite environments as commands, add 
5128         \uppercase to interiorshot and exteriorshot to force uppecase.
5129         * tex/broadway.cls : rewrite environments as commands. Tweak
5130         whitespace.
5131
5132 2000-05-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5133
5134         * src/menus.C (Add_to_toc_menu): fix the code which limits the
5135         size of items: use a constant intead of the hardcoded 40, and more
5136         importantly do not remove the %m and %x tags added at the end.
5137         (Add_to_refs_menu): use vector::size_type instead of
5138         unsigned int as basic types for the variables. _Please_ do not
5139         assume that size_t is equal to unsigned int. On an alpha, this is
5140         unsigned long, which is _not_ the same.
5141
5142         * src/language.C (initL): remove language "hungarian", since it
5143         seems that "magyar" is better.
5144
5145 2000-05-22  Juergen Vigna  <jug@sad.it>
5146
5147         * src/CutAndPaste.C: hopefully fixed memory the problem defenitively!
5148
5149         * src/tabular.C (OldFormatRead): added \end_deeper to the end LyXTable
5150         end markers!
5151
5152         * src/paragraph.C (PasteParagraph): Possibly a memory leak as
5153         next was deleted but not set to 0.
5154
5155 2000-05-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
5156
5157         * src/language.C (initL): change the initialization of languages
5158         so that compiles goes _fast_.
5159
5160         * src/menus.C (Add_to_toc_menu): limit the line length in TOC to
5161         40 chars.
5162
5163         * src/lyxfunc.C (processKeyEvent): initalize keysym_return to 0.
5164
5165 2000-05-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
5166
5167         * release 1.1.5pre3
5168
5169 2000-05-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
5170
5171         * src/WorkArea.C (request_clipboard_cb): give "C" linkage.
5172
5173 2000-05-19  Dekel Tsur  <dekel@math.tau.ac.il>
5174
5175         * src/commandtags.h
5176         * src/LyXAction.C
5177         * src/lyxfunc.C (Dispatch): Added LFUN_LOFVIEW, LFUN_LOTVIEW
5178         and LFUN_LOAVIEW
5179         
5180         * src/insets/insetlo*.[Ch]: Made editable
5181
5182 2000-05-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
5183
5184         * src/text2.C (SetSelection): call BufferView::stuffClipboard with
5185         the current selection.
5186
5187         * src/BufferView_pimpl.C (stuffClipboard): new method
5188
5189         * src/BufferView.C (stuffClipboard): new method
5190
5191         * src/paragraph.C (String): new method
5192
5193         * src/LColor.C (getFromLyXName): return LColor::inherit instead of
5194         LColor::ignore when lyxname is not found.
5195
5196         * src/BufferView.C (pasteSelection): new method
5197
5198         * src/BufferView_pimpl.C (pasteSelection): new method
5199
5200         * src/lyxfunc.C (Dispatch): use the new clipboard functions.
5201
5202         * src/WorkArea.C (request_clipboard_cb): new static function
5203         (getClipboard): new method
5204         (putClipboard): new method
5205
5206 2000-05-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
5207
5208         * LyX 1.1.5pre2 released
5209
5210 2000-05-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
5211
5212         * src/vspace.C (operator=): removed
5213         (operator=): removed
5214
5215         * src/lyx_gui_misc.C (askForText): manually set the type in make_pair
5216
5217         * src/layout.C (NumberOfClass): manually set the type in make_pair
5218         (NumberOfLayout): ditto
5219
5220         * src/language.C: use the Language constructor for ignore_lang
5221
5222         * src/language.h: add constructors to struct Language
5223
5224         * src/BufferView_pimpl.C (scrollDown): change to pair<float, float>
5225
5226         * src/text2.C (SetCursorIntern): comment out #warning
5227
5228         * src/mathed/math_symbols.C (pixmapFromBitmapData): add const_cast
5229
5230         * src/mathed/math_iter.h: initialize sx and sw to 0
5231
5232 2000-05-10  Dekel Tsur  <dekel@math.tau.ac.il>
5233
5234         * forms/lyx.fd: Redesign of form_ref
5235
5236         * src/LaTeXFeatures.[Ch]
5237         * src/buffer.C
5238         * src/lyx_cb.C
5239         * src/menus.C   
5240         * src/insets/insetref.[Ch]: Added support for varioref and prettyref.
5241
5242         * src/buffer.h
5243         * src/lyxparagraph.h: Added new classes: LyXParagraph::inset_iterator
5244         and Buffer::inset_iterator.
5245
5246         * src/menus.C: Added new menus: TOC and Refs.
5247
5248         * src/insets/insetlabel.C (Edit) Made InsetLabel editable.
5249
5250         * src/buffer.C (getTocList): New method.
5251
5252         * src/BufferView2.C (ChangeRefs): New method.
5253
5254         * src/buffer.C (getLabelList): New method. It replaces the old
5255         getReferenceList. The return type is vector<string> instead of 
5256         string.
5257
5258         * src/insets/insetinclude.C (getLabelList): New method. Replaces
5259         the old getLabel() and GetNumberOfLabels() methods.
5260         * src/insets/insetlabel.C (getLabelList): ditto
5261         * src/mathed/formula.C (getLabelList): ditto
5262         
5263         * src/paragraph.C (String): New method.
5264
5265         * src/lyx_cb.C (TocSelectCB,TocUpdateCB): Rewritten.
5266         Uses the new getTocList() method. 
5267         TocSelectCB() now calls to TocUpdateCB() before moving the cursor, 
5268         which automatically updates the contents of the browser.
5269         (RefUpdateCB): Use the new getLabelList method.
5270
5271         * src/lyxfunc.C (Dispatch): Give an error if the label is not found.
5272         
5273         * src/BufferView2.C (gotoLabel) Use the new getLabelList method.
5274
5275         * src/spellchecker.C: Added using std::reverse;
5276
5277 2000-05-19  Juergen Vigna  <jug@sad.it>
5278
5279         * src/tabular.C (Validate): fixed/added validating of LaTeXFeatures.
5280
5281         * src/insets/insettext.C (computeTextRows): small fix for display of
5282         1 character after a newline.
5283
5284         * src/tabular.C (OldFormatRead): fixed the OldFormatRead with regard
5285         to cont-rows!
5286
5287 2000-05-18  Juergen Vigna  <jug@sad.it>
5288
5289         * src/insets/insettabular.C (TabularFeatures): fixed update of display
5290         when changing width of column.
5291
5292         * src/tabular.C (set_row_column_number_info): setting of
5293         autobreak rows if necessary.
5294
5295 2000-05-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5296
5297         * src/lyxvc.C (toggleReadOnly): use VCS::status() instead of stat()
5298
5299         * src/vc-backend.*: renamed stat() to status() and vcstat to
5300         vcstatus. It happens that Tru64 Unix 5.0 has stat() as a macro and
5301         compilation broke. The new name seems more relevant, anyway.
5302
5303 2000-05-17  Juergen Vigna  <jug@sad.it>
5304
5305         * src/BufferView2.C (removeAutoInsets): fixed use of AutoDeleteInsets
5306         which was wrong if the removing caused removing of rows!
5307
5308         * src/lyxlex_pimpl.C (next, nextToken): insert support for pushToken.
5309         (pushToken): new function.
5310
5311         * src/text2.C (CutSelection): fix problem discovered with purify
5312
5313 2000-05-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5314
5315         * src/debug.C (showTags): enlarge the first column, now that we
5316         have 6-digits debug codes.
5317
5318         * lib/layouts/hollywood.layout:
5319         * lib/tex/hollywood.cls:        
5320         * lib/tex/brodway.cls: 
5321         * lib/layouts/brodway.layout: more commands and fewer
5322         environments. Preambles moved in the .cls files. Broadway now has 
5323         more options on scene numbering and less whitespace (from Garst)
5324
5325         * src/insets/insetbib.C (getKeys): make sure that we are in the
5326         document directory, in case the bib file is there.
5327
5328         * src/insets/insetbib.C (Latex): revert bogus change.
5329
5330 2000-05-16  Juergen Vigna  <jug@sad.it>
5331
5332         * src/insets/insettabular.C (UnlockInsetInInset): Changes to update
5333         the TabularLayout on cursor move.
5334
5335         * src/TabularLayout.C (TabularOptionsCB): Wrong call to MenuLayoutTable
5336
5337         * src/insets/insettabular.C (Clone): Clone the LyXTabular for
5338         undo-handling.
5339         (getCellXPos): 
5340         (draw): fixed cursor position and drawing so that the cursor is
5341         visible when before the tabular-inset.
5342
5343         * src/insets/insettext.C (init): drawLockedFrame was not initialized
5344         when creating from old insettext.
5345
5346         * src/tabular.C (Clone): added Clone of text-inset for undo-handling.
5347
5348 2000-05-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5349
5350         * lib/tex/hollywood.cls: better algorithm for page breaks (Garst)
5351         * lib/tex/brodway.cls: ditto 
5352
5353         * lib/layouts/brodway.layout: change alignment of parenthical
5354         layout (Garst)
5355         
5356 2000-05-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5357
5358         * config/lyxinclude.m4 (LYX_PATH_XFORMS): make it clear that only
5359         versions 0.88 and 0.89 are supported.
5360
5361 2000-05-15  Juergen Vigna  <jug@sad.it>
5362
5363         * src/insets/insetcollapsable.C (draw): enhancements in drawing and
5364         width calculating.
5365
5366         * src/insets/insettext.C (computeTextRows): redone completely this
5367         function in a much cleaner way, because of problems when having a
5368         fixed maxWidth.
5369         (draw): added a frame border when the inset is locked.
5370         (SetDrawLockedFrame): this sets if we draw the border or not.
5371         (SetFrameColor): this sets the frame color (default=insetframe).
5372
5373         * src/insets/lyxinset.h: added x() and y() functions which return
5374         the top_x and top_baseline values. Added a GetFirstLockingInsetOfType
5375         function which is needed to see if we have a locking inset of some
5376         type in this inset (needed for now in insettabular).
5377
5378         * src/vspace.C (inPixels): the same function also without a BufferView
5379         parameter as so it is easier to use it in some ocasions.
5380
5381         * src/lyxfunc.C: changed all places where insertInset was used so
5382         that now if it couldn't be inserted it is deleted!
5383
5384         * src/TabularLayout.C: 
5385         * src/TableLayout.C: added support for new tabular-inset!
5386
5387         * src/BufferView2.C (insertInset): this now returns a bool if the
5388         inset was really inserted!!!
5389
5390         * src/tabular.C (GetLastCellInRow): 
5391         (GetFirstCellInRow): new helper functions.
5392         (Latex): implemented for new tabular class.
5393         (TeXCellPostamble): 
5394         (TeXCellPreamble): 
5395         (TeXBottomHLine): 
5396         (TeXTopHLine): new Latex() helper functions.
5397
5398 2000-05-12  Juergen Vigna  <jug@sad.it>
5399
5400         * src/mathed/formulamacro.C (Read): 
5401         * src/mathed/formula.C (Read): read also the \end_inset here!
5402
5403 2000-05-10  Dekel Tsur  <dekel@math.tau.ac.il>
5404
5405         * src/mathed/math_write.C (MathParInset::Write): Fixed a bug:
5406         crush when saving formulae with unbalanced parenthesis.
5407
5408 20000-05-11  Dekel Tsur  <dekel@math.tau.ac.il>
5409
5410         * src/layout.C: Add new keyword "endlabelstring" to layout file
5411
5412         * src/text.C (GetVisibleRow): Draw endlabel string.
5413
5414         * lib/layouts/broadway.layout
5415         * lib/layouts/hollywood.layout: Added endlabel for the
5416         Parenthetical layout.
5417
5418         * lib/layouts/heb-article.layout: Do not use slanted font shape
5419         for Theorem like environments.
5420
5421         * src/buffer.C (makeLaTeXFile): Always add "american" to 
5422         the UsedLanguages list if document language is RTL. 
5423
5424 2000-05-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5425
5426         * add addendum to README.OS2 and small patch (from SMiyata)
5427
5428 2000-05-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5429
5430         * many files: correct the calls to ChangeExtension().
5431
5432         * src/support/filetools.C (ChangeExtension): remove the no_path
5433         argument, which does not belong there. Use OnlyFileName() instead.
5434
5435         * src/insets/insetbib.C (Latex): use absolute paths for bibtex
5436         files when LaTeXing a non-nice latex file.
5437
5438         * src/lyxlookup.C (isDeadEvent): use a switch statement instead of
5439         a chain of "if". Return false when deadkeys are not handled.
5440         
5441         * src/lyx_main.C (LyX): adapted the code for default bindings.
5442
5443         * src/kbmap.C (defaultKeyBindings): new method. Performs the default
5444         bindings for basic functionality (except deadkeys).
5445         (deadKeyBindings): new method. Performs the bindings of deadkeys.
5446
5447         * src/lyxrc.C (defaultKeyBindings): moved to lyx_main.C 
5448         several methods: handle override_x_deadkeys.
5449
5450         * src/lyxrc.h: remove the "bindings" map, which did not make much
5451         sense anyway. New variable override_x_deadkeys, defaulting to "true".
5452         
5453 2000-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5454
5455         * src/lyxfont.C (stateText): use a saner method to determine
5456         whether the font is "default". Seems to fix the crash with DEC
5457         cxx. 
5458
5459         * src/Bullet.[Ch] (Bullet): remove const on parameters.
5460
5461 2000-05-08  Juergen Vigna  <jug@sad.it>
5462
5463         * src/insets/insettabular.C (InsetButtonRelease): Now opens the
5464         TabularLayoutMenu with mouse-button-3
5465         (LocalDispatch): added LFUN_MENU_LAYOUT to open the Tabular-Layout.
5466
5467         * src/TabularLayout.C: added this file for having a Layout for
5468         tabular-insets.
5469
5470 2000-05-05  Juergen Vigna  <jug@sad.it>
5471
5472         * src/insets/insettabular.C (UpdateLocal): resetCursorPos when
5473         recalculating inset-widths.
5474         (TabularFeatures): activated this function so that I can change
5475         tabular-features via menu.
5476
5477         * src/menus.C (ShowEditMenu): inserted support for insettabular so
5478         that I can test some functions with the Table menu.
5479
5480 2000-05-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
5481
5482         * src/lyxfont.C (stateText): guard against stupid c++libs.
5483
5484         * src/tabular.C: add using std::vector
5485         some whitespace changes, + removed som autogenerated code.
5486
5487         * src/buffer.C (parseSingleLyXformat2Token): stupid bug.
5488
5489 2000-05-05  Juergen Vigna  <jug@sad.it>
5490
5491         * src/tabular.[Ch]: now using std:vector instead of arrays for all the
5492         row, columns and cellstructures.
5493
5494 2000-05-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
5495
5496         * lib/lyxrc.example: remove obsolete entries.
5497
5498         * src/buffer.C (parseSingleLyXformat2Token): patch from dekel, fix
5499         reading of protected_separator for free_spacing.
5500
5501 2000-05-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5502
5503         * src/text.C (draw): do not display an exclamation mark in the
5504         margin for margin notes. This is confusing, ugly and
5505         uninformative. 
5506
5507         * src/LaTeXFeatures.C (getPackages): load amssymb also when 'Use
5508         AMS math' is checked.
5509
5510         * src/buffer.C (makeLaTeXFile): do not depend on the textclass
5511         name to see whether including the amsmath package is needed.
5512
5513 2000-05-05  Dekel Tsur  <dekel@math.tau.ac.il>
5514
5515         * src/paragraph.C (validate): Compute UsedLanguages correctly
5516         (don't insert the american language if it doesn't appear in the
5517         document)
5518
5519         * src/paragraph.C (TeXOnePar,SimpleTeXOnePar,SimpleTeXSpecialChars)
5520         The argument of \thanks{} command is considered moving argument
5521
5522         * src/paragraph.C (SimpleTeXOnePar): Put \protect before \\ if in
5523         moving argument.
5524
5525 2000-05-04  Dekel Tsur  <dekel@math.tau.ac.il>
5526
5527         * src/text.C (GetVisibleRow): Improved drawing of vertical lines
5528         for appendix/minipage/depth. The lines can be now both in the footnote 
5529         frame, and outside the frame.
5530
5531         * src/text.C (SingleWidth,draw): Correct rendering of Hebrew vowels
5532         points ("nikud")
5533
5534 2000-05-05  Juergen Vigna  <jug@sad.it>
5535
5536         * src/table.[Ch]: removed the inset and buffer stuff as this is now
5537         neede only in tabular.[Ch].
5538
5539 2000-05-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
5540
5541         * src/insets/insetspecialchar.C (Read): allow command == '~' for
5542         PROTECTED_SEPARATOR 
5543         (Write): write '~' for PROTECTED_SEPARATOR
5544
5545 2000-05-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
5546
5547         * src/lyxparagraph.h: add a friend struct matchIT after the struct
5548         InsetTable.
5549
5550         * src/mathed/formula.C (drawStr): rename size to siz.
5551
5552         * src/insets/figinset.C (RestoreForm): rename pflags to piflags,
5553         possibly fix a bug by not changing the pflags = flags to piflags =
5554         flags.
5555
5556 2000-05-05  Juergen Vigna  <jug@sad.it>
5557
5558         * src/insets/insetbib.C: moved using directive
5559
5560         * src/ImportNoweb.C: small fix for being able to compile (missing
5561         include cstdlib)
5562
5563 2000-05-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
5564
5565         * config/lyxinclude.m4 (LYX_CXX_STL_STRING): change the test not
5566         to use clear, since we don't depend on this in the code. Add test
5567         for string::compare
5568
5569 2000-05-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5570
5571         * (various *.C files): add using std::foo directives to please dec
5572         cxx.
5573
5574         * replace calls to string::clear() to string::erase() (Angus)
5575
5576         * src/cheaders/cmath: modified to provide std::abs.
5577
5578 2000-05-04  Juergen Vigna  <jug@sad.it>
5579
5580         * src/insets/insettext.C: Prepared all for inserting of multiple
5581         paragraphs. Still display stuff to do (alignment and other things),
5582         but I would like to use LyXText to do this when we cleaned out the
5583         table-support stuff.
5584
5585         * src/insets/insettabular.C: Changed lot of stuff and added lots
5586         of functionality still a lot to do.
5587
5588         * src/tabular.C: Various functions changed name and moved to be
5589         const functions. Added new Read and Write functions and changed
5590         lots of things so it works good with tabular-insets (also removed
5591         some stuff which is not needed anymore * hacks *).
5592
5593         * src/lyxcursor.h: added operators == and != which just look if
5594         par and pos are (not) equal.
5595
5596         * src/buffer.C (latexParagraphs): inserted this function to latex
5597         all paragraphs form par to endpar as then I can use this too for
5598         text-insets.
5599
5600         * src/text2.C (SetLayout): Changed this to use a cursor this is needed
5601         so that I can call this to from text insets with their own cursor.
5602
5603         * src/buffer.C (makeLaTeXFile): added the output of one \n after the
5604         output off all paragraphs (because of the fix below)!
5605
5606         * src/paragraph.C (TeXOnePar): removed output of \n when we are in
5607         the very last paragraph (this could be also the last paragraph of an
5608         inset!)
5609
5610         * src/texrow.h: added rows() call which returns the count-variable.
5611
5612 2000-05-03  Jose Abilio Oliveira Matos <jamatos@novalis.fc.up.pt>
5613
5614         * lib/lyxrc.example: fix examples for exporting SGML to HTML.
5615
5616         * lib/configure.m4: better autodetection of DocBook tools.
5617
5618 2000-04-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
5619
5620         * src/lyx_main.C (easyParse): use lyxerr instead of cerr.
5621
5622         * src/lyx_cb.C: add using std::reverse;
5623
5624         * src/LaTeX.C (run): on error always run deleteFilesOnError before
5625         returning.
5626
5627         * src/LaTeX.[Ch] (deleteFilesOnError): new method. unlinks some
5628         selected files. Should fix repeated errors from generated files.
5629
5630 2000-04-27  Dekel Tsur  <dekel@math.tau.ac.il>
5631
5632         * src/lyx_cb.C (TocUpdateCB): Reverse strings for Hebrew paragraphs
5633
5634         * src/spellchecker.C (RunSpellChecker): Reverse Hebrew strings in
5635         the spellchecker popup. 
5636
5637         * lib/lyxrc.example:  Removed the \number_inset section
5638
5639 2000-04-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5640
5641         * src/insets/figinset.C (various): Use IsFileReadable() to make
5642         sure that the file actually exist. Relying on ghostscripts errors
5643         is a bad idea since they can lead to X server crashes.  
5644
5645 2000-04-27  Claus Hentschel <claus.hentschel@mbau.fh-hannover.de>
5646
5647         * intl/loadmsgcat.c (_nl_load_domain): pass O_BINARY as flag to
5648         open under CYGWIN 
5649
5650         * lib/lyxrc.example: smallish typo in description of
5651         \view_dvi_paper_option 
5652
5653 2000-04-26  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
5654
5655         * src/lyxfunc.h:
5656         * src/lyxfunc.C: doImportHelper to factor out common code of the
5657         various import methods. New functions doImportASCIIasLines,
5658         doImportASCIIasParagraphs, doImportLaTeX, doImportNoWeb,
5659         doImportLinuxDoc  for the  format specific parts.
5660
5661         * buffer.h:
5662         * buffer.C: Dispatch  returns now a bool to indicate success
5663
5664         * lyx_gui.h:
5665         * lyx_gui.C: Add getLyXView() for member access
5666
5667         * lyx_main.C: Change logic for batch commands: First try
5668         Buffer::Dispatch (possibly without GUI), if that fails, use
5669         LyXFunc::Dispatch
5670
5671         * lyx_main.C: Add support for --import command line switch.
5672         Now 'lyx --import ascii file.txt' opens the GUI with file.txt loaded.
5673         Available Formats: Everything  accepted by 'buffer-import <format>'
5674
5675 2000-04-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
5676
5677         * src/lyx_gui.C (create_forms): small oneliner from Garst to have
5678         unnumbered parts.
5679
5680         * src/lyx_cb.C (ScreenApplyCB): clear the textcache so that the
5681         documents will be reformatted upon reentry.
5682
5683 2000-04-27  Juergen Vigna  <jug@sad.it>
5684
5685         * src/CutAndPaste.C (pasteSelection): last paragraph was not returned
5686         correctly only last pos this was a bug.
5687
5688 2000-04-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
5689
5690         * release of lyx-1.1.5pre1
5691
5692 2000-04-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5693
5694         * src/insets/insettabular.[Ch]: fix the Clone() declaration.
5695
5696         * src/menus.C: revert the change of naming (Figure->Graphic...)
5697         from 2000-04-11. It was incomplete and bad.
5698         
5699         * src/LColor.[Ch]: add LColor::depthbar.
5700         * src/text.C (GetVisibleRow): use it.
5701
5702         * README: update the languages list.
5703
5704 2000-04-25  Dekel Tsur  <dekel@math.tau.ac.il>
5705
5706         * src/text.C (GetVisibleRow): show the depth of paragraphs using
5707         vertical bars.
5708
5709 2000-04-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
5710
5711         * README: remove sections that were just wrong.
5712
5713         * src/text2.C (GetRowNearY): remove currentrow code
5714
5715         * src/text.C (GetRow): remove currentrow code
5716
5717         * src/screen.C (Update): rewritten a bit.
5718         (SmallUpdate): removed func
5719
5720         * src/lyxtext.h (text_status): removed NEED_LITTLE_REFRESH, never
5721         used.
5722         (FullRebreak): return bool
5723         (currentrow): remove var
5724         (currentrow_y): ditto
5725
5726         * src/lyxscreen.h (Draw): change arg to unsigned long
5727         (FitCursor): return bool
5728         (FitManualCursor): ditto
5729         (Smallpdate): remove func
5730         (first): change to unsigned long
5731         (DrawOneRow): change second arg to long (from long &)
5732         (screen_refresh_y): remove var
5733         (scree_refresh_row): ditto
5734         
5735         * src/lyxrow.h: change baseline to usigned int from unsigned
5736         short, this brings some implicit/unsigned issues out in the open.
5737
5738         * src/lyxfunc.C (moveCursorUpdate): update(0) == update(-2) change
5739         accordingly.
5740         (Dispatch): don't call updateScrollbar after fitCursor. Use update
5741         instead of smallUpdate.
5742
5743         * src/lyxcursor.h: change y to unsigned long
5744
5745         * src/buffer.h: don't call updateScrollbar after fitcursor
5746
5747         * src/buffer.C (parseSingleLyXformat2Token): move variables to
5748         where they are used. Removed "\\direction", this was not present
5749         in 1.1.4 and is already obsolete. Commented out some code that I
5750         believe to never be called.
5751         (runLiterate): don't call updateScrollbar after fitCursor
5752         (runLaTeX): ditto
5753         (buildProgram): ditto
5754         (runChktex): ditto
5755
5756         * src/WorkArea.h (workWidth): change return val to unsigned
5757         (width): ditto
5758         (height): ditto
5759         (redraw): remove the button redraws
5760         (setScrollbarValue): change for scrollbar
5761         (getScrollbarValue): change for scrollbar
5762         (getScrollbarBounds): change for scrollbar
5763
5764         * src/WorkArea.C (C_WorkArea_up_cb): removed func
5765         (C_WorkArea_down_cb): removed func
5766         (WorkArea): use fl_add_scrollbar instead of two buttons and a slider.
5767         (resize): change for scrollbar
5768         (setScrollbar): ditto
5769         (setScrollbarBounds): ditto
5770         (setScrollbarIncrements): ditto
5771         (up_cb): removed func
5772         (down_cb): removed func
5773         (scroll_cb): change for scrollbar
5774         (work_area_handler): ditto
5775
5776         * src/BufferView_pimpl.C (fitCursor): only call updateScrollbar
5777         when FitCursor did something.
5778         (updateScrollbar): some unsigned changes
5779         (downCB): removed func
5780         (scrollUpOnePage): removed func
5781         (scrollDownOnePage): remvoed func
5782         (workAreaMotionNotify): don't call screen->FitCursor but use
5783         fitCursor instead. and bool return val
5784         (workAreaButtonPress): ditto
5785         (workAreaButtonRelease): some unsigned changes
5786         (checkInsetHit): ditto
5787         (workAreaExpose): ditto
5788         (update): parts rewritten, comments about the signed char arg added
5789         (smallUpdate): removed func
5790         (cursorPrevious): call needed updateScrollbar
5791         (cursorNext): ditto
5792
5793         * src/BufferView2.C (allFloats): don't call updateScrollbar after
5794         fitCursor.
5795
5796         * src/BufferView.[Ch] (upCB): removed func
5797         (downCB): removed func
5798         (smallUpdate): removed func
5799
5800 2000-04-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
5801
5802         * src/lyxtext.h src/text.C src/text2.C: removed support for the
5803         currentrow, currentrow_y optimization. This did not help a lot and
5804         if we want to do this kind of optimization we should rather use
5805         cursor.row instead of the currentrow. 
5806
5807         * src/buffer.C (parseSingleLyXformat2Token): fixed mistake in
5808         buffer spacing and klyx spacing support.
5809
5810 2000-04-25  Dekel Tsur  <dekel@math.tau.ac.il>
5811
5812         * src/spellchecker.C (RunSpellChecker): Speedup spellchecking by
5813         a factor of 50!
5814
5815 2000-04-26  Juergen Vigna  <jug@sad.it>
5816
5817         * src/insets/figinset.C: fixes to Lars sstream changes!
5818
5819 2000-04-23  Dekel Tsur  <dekel@math.tau.ac.il>
5820
5821         * A lot of files: Added Ascii(ostream &) methods to all inset
5822         classes. Used when exporting to ASCII.
5823         
5824         * src/buffer.C (writeFileAscii,RoffAsciiTable)
5825         * src/paragraph.C (RoffContTableRows): Use the Ascii() methods
5826         instead of Latex()
5827
5828         * src/text2.C (ToggleFree): Disabled implicit word selection when
5829         there is a change in the language
5830         
5831         * src/insets/insetspecialchar.C (Linuxdoc,DocBook): Fixed a bug:
5832         no output was generated for end-of-sentence inset.
5833         
5834         * src/insets/lyxinset.h
5835         * src/buffer.C
5836         * src/lyxfunc.C
5837         * src/paragraph.C: Removed the insetnumber code
5838
5839         * src/text.C (SelectWordWhenUnderCursor): Cleaned the code.
5840
5841 2000-04-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
5842
5843         * src/buffer.C (parseSingleLyXformat2Token): remove no_isolatin1,
5844         no_babel and no_epsfig completely from the file.
5845         (parseSingleLyXformat2Token): add handling for per-paragraph
5846         spacing as written by klyx.
5847
5848         * src/insets/figinset.C: applied patch by Andre. Made it work with
5849         ostringstream too.
5850
5851 2000-04-20  Juergen Vigna  <jug@sad.it>
5852
5853         * src/insets/insettext.C (cutSelection): 
5854         (copySelection): Fixed with selection from right to left.
5855         (draw): now the rows are not recalculated at every draw.
5856         (computeTextRows): for now reset the inset-owner here (this is
5857         important for an undo or copy where the inset-owner is not set
5858         automatically!)
5859
5860         * src/BufferView_pimpl.C (workAreaMotionNotify): when passing the
5861         motion to the_locking_inset screen->first was forgotten, this was
5862         not important till we got multiline insets.
5863
5864 2000-04-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5865
5866         * src/mathed/formulamacro.C (Latex): remove CHECK comment, since
5867         code seems to be alright (it is code changed by Dekel, and the
5868         intent is indeed that all macros should be defined \protect'ed)
5869
5870         * NEWS: a bit of reorganisation of the new user-visible features.
5871
5872 2000-04-19  Juergen Vigna  <jug@sad.it>
5873
5874         * src/insets/insettext.C (init): using a LyXCursor now for cursor
5875         position. Set the inset_owner of the used paragraph so that it knows
5876         that it is inside an inset. Fixed cursor handling with mouse and
5877         cursor keys. Fixed wrong timed inset redraws and lots of other changes
5878         and cleanups to make TextInsets work better.
5879
5880         * src/insets/insettext.h: Using a LyXCursor now. Added a clear() call.
5881         Changed parameters of various functions and added LockInsetInInset().
5882
5883         * src/insets/insettext.C: 
5884
5885         * src/insets/insetcollapsable.h: 
5886         * src/insets/insetcollapsable.C: 
5887         * src/insets/insetfoot.h: 
5888         * src/insets/insetfoot.C: 
5889         * src/insets/insetert.h: 
5890         * src/insets/insetert.C: cleaned up the code so that it works now
5891         correctly with insettext.
5892
5893         * src/insets/inset.C: 
5894         * src/insets/lyxinset.h: inserted inset_owner and some more changes so
5895         that insets in insets are supported right.
5896
5897         * src/table.h: 
5898         * src/table.C: lots of changes for use with inset tabular (and cleanup)
5899
5900         * src/paragraph.C: some small fixes
5901
5902         * src/debug.h: inserted INSETS debug info
5903
5904         * src/lyxfunc.C (Dispatch): added code for InsetTabular and some inset
5905         fixes (f.ex. calling LFUN_DOWN if exiting inset with LFUN_DOWN).
5906
5907         * src/commandtags.h: 
5908         * src/LyXAction.C: insert code for InsetTabular.
5909
5910         * src/BufferView_pimpl.C (workAreaMotionNotify): do return always if
5911         not Button1MotionMask.
5912         (workAreaButtonRelease): send always a InsetButtonRelease event to
5913         the_locking_inset.
5914         (checkInsetHit): some setCursor fixes (always with insets).
5915
5916         * src/BufferView2.C (lockInset): returns a bool now and extended for
5917         locking insets inside insets.
5918         (showLockedInsetCursor): it is important to have the cursor always
5919         before the locked inset.
5920         (fitLockedInsetCursor): forgot adding of InsetInInsetY()-offset.
5921
5922         * src/BufferView.h: made lockInset return a bool.
5923
5924         * src/lyxtext.h: inserted function SetCursor(LyXCursor, ...).
5925
5926         * src/text2.C (SetCursor): This now has a version with a LyXCursor
5927         that is used also internally but can be called as public to have back
5928         a cursor pos which is not set internally.
5929         (SetCursorIntern): Changed to use above function.
5930
5931         * src/CutAndPaste.C (DeleteBuffer): forgot to inizialize textclass
5932
5933 2000-04-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
5934
5935         * ANNOUNCE: 
5936         * INSTALL: 
5937         * UPGRADING: 
5938         * NEWS: updated for prerelease of 1.1.5. Please comment and send
5939         patches for things that should be in or should be changed.
5940
5941         * src/* [insetfiles]: change "usigned char fragile" to bool
5942         fragile. There was only one point that could that be questioned
5943         and that is commented in formulamacro.C. Grep for "CHECK".
5944         
5945         * src/CutAndPaste.C (getBufferTextClass): unused func, removed.
5946         (DeleteBuffer): take it out of CutAndPaste and make it static.
5947
5948 2000-04-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
5949
5950         * src/paragraph.C (TeXOnePar): use the new method in Spacing to
5951         output the spacing envir commands. Also the new commands used in
5952         the LaTeX output makes the result better.
5953
5954         * src/Spacing.C (writeEnvirBegin): new method
5955         (writeEnvirEnd): new method
5956
5957 2000-04-18  Juergen Vigna  <jug@sad.it>
5958
5959         * src/CutAndPaste.C: made textclass a static member of the class
5960         as otherwise it is not accesed right!!!
5961
5962 2000-04-17  Dekel Tsur  <dekel@math.tau.ac.il>
5963
5964         * forms/layout_forms.fd
5965         * src/layout_forms.h
5966         * src/layout_forms.C (create_form_form_character)
5967         * src/lyx_cb.C (UserFreeFont)
5968         * src/lyx_gui.C (create_forms): Added GUI support for multi-lingual
5969         documents (in the layout->character popup).
5970
5971 2000-04-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5972
5973         * src/spellchecker.C (create_ispell_pipe): fix a bug where
5974         \spell_command was in fact not honored (from Kevin Atkinson).
5975
5976         * src/lyx_gui.C (~LyXGUI): make sure lyxViews is deleted when
5977         quitting (Angus)
5978
5979         * src/lyx_gui.h: make lyxViews private (Angus)
5980
5981 2000-04-15  Dekel Tsur  <dekel@math.tau.ac.il>
5982
5983         * src/mathed/math_write.C
5984         (MathMatrixInset::Write) Put \protect before \begin{array} and
5985         \end{array} if fragile
5986         (MathParInset::Write): Put \protect before \\ if fragile
5987
5988 2000-04-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
5989
5990         * src/lyx_gui.C (LyXGUI): initialize the LyXColorHandler. The
5991         initialization if the LyXColorHandler must be done after the
5992         connections to the XServer has been established.
5993
5994         * src/insets/figinset.C (runqueue): change the grabing a bit. Also
5995         get the background pixel from the lyxColorhandler so that the
5996         figures are rendered with the correct background color.
5997         (NextToken): removed functions.
5998         (GetPSSizes): use ifs >> string instead of NextToken.
5999
6000         * src/Painter.[Ch]: the color cache moved out of this file. 
6001
6002         * src/ColorHandler.[Ch]: new files. Holds the gc cache for color
6003         and lines.  
6004
6005 2000-04-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
6006
6007         * src/WorkArea.C (work_area_handler): call BufferView::enterView
6008         and Buffer::leaveView when FL_ENTER and FL_LEAVE.
6009
6010         * src/BufferView.C (enterView): new func
6011         (leaveView): new func
6012
6013         * src/BufferView_pimpl.C (enterView): new func, sets xterm cursor
6014         when approp.
6015         (leaveView): new func, undefines xterm cursor when approp.
6016
6017         * src/bufferview_funcs.C: moved SetXCursor to BufferView_pimp.C
6018         (AllowInput): delete the Workarea cursor handling from this func.
6019
6020         * src/Painter.C (underline): draw a slimer underline in most cases.
6021
6022         * src/lyx_main.C (error_handler): use extern "C"
6023
6024 2000-04-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
6025
6026         * src/insets/figinset.C (DocBook): small patch from Jose (jamatos)
6027         sent directly to me.
6028
6029         * src/text2.C (DeleteEmptyParagraphMechanism): small patch posted
6030         to the list by Dekel.
6031
6032         * src/lyxfunc.C (Dispatch): make PARAGRAPH_SPACING compile with
6033         strstream too.
6034
6035         * src/bufferview_funcs.[Ch]: two new files, moved several of the
6036         methods from lyx_cb.here.
6037
6038         * src/lyx_cb.C: in addition to the above; removed input_prohibited
6039         it was not used.
6040
6041 2000-04-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
6042
6043         * src/lyx_cb.[Ch]: made several functions take a BufferView* arg
6044         instead of using current_view directly. 
6045
6046         * src/lyxfunc.C (Dispatch): the paragraph-spacing implementation
6047
6048         * src/LyXAction.C (init): add the paragraph-spacing command.
6049
6050         * src/commandtags.h: add enum for LFUN_PARAGRAPH_SPACING
6051
6052         * src/buffer.C (parseSingleLyXformat2Token): read the paragraph spacing
6053
6054         * src/lyx_cb.C (CurrentState): output a string when the spacing is
6055         different from the documents.
6056
6057         * src/text.C (SetHeightOfRow): take paragraph spacing into
6058         account, paragraph spacing takes precedence over buffer spacing
6059         (GetVisibleRow): ditto
6060
6061         * src/paragraph.C (writeFile): output the spacing parameter too.
6062         (validate): set the correct features if spacing is used in the
6063         paragraph. 
6064         (Clear): set spacing to default
6065         (MakeSameLayout): spacing too
6066         (HasSameLayout): spacing too
6067         (SetLayout): spacing too
6068         (TeXOnePar): output the spacing commands
6069
6070         * src/lyxparagraph.h: added a spacing variable for use with
6071         per-paragraph spacing.
6072
6073         * src/Spacing.h: add a Default spacing and a method to check if
6074         the current spacing is default. also added an operator==
6075
6076         * src/text2.C (DeleteEmptyParagraphMechanism): added a
6077         RedoParagraphs.
6078
6079 2000-04-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6080
6081         * src/lyxserver.C (callback): fix dispatch of functions
6082
6083         * src/insets/insetlatexaccent.C (checkContents): turn bogus
6084         printf() into lyxerr call. 
6085
6086         * src/tex-strings.C (tex_fonts): add "pslatex" to the choice of
6087         fonts. 
6088
6089         * src/menus.C (ShowInsertMenu): rename "Figure" to "Graphic",
6090         "Table" to "Table Box", "Float" to "Floating Material"; deletes
6091         the "Float" from each of the subitems.
6092         (ShowHelpMenu): add entry for "FAQ" and "TOC".
6093
6094         * src/support/DebugStream.h: add an #ifdef to work around a gcc
6095         2.8.x compiler error. Yes, I know, gcc 2.8.1 is bad, but I
6096         documented the change so that the workaround can be nuked later.
6097
6098         * src/lyx_gui_misc.C (getScreenDPI): new function. Code moved from 
6099         LyX::init().
6100         
6101         * src/lyxlex_pimpl.C (next): do not re-declare the default value
6102         of arguments.
6103         * src/buffer.C (getLatexName): ditto
6104         (setReadonly): ditto
6105
6106 2000-04-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
6107
6108         * src/LaTeXFeatures.h: add a const reference to BufferParams, to
6109         avoid some uses of current_view. Added also a bufferParams()
6110         method to get at this.
6111
6112         * src/lyxtext.h: changed params->buffer and paramters->bparams.
6113
6114 2000-04-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
6115
6116         * src/lyxparagraph.[Ch]: removed
6117         operator<(LyXParagraph::InsetTable..., added a struct matchIT
6118         with operators used by lower_bound and
6119         upper_bound in InsetTable's
6120         Make struct InsetTable private again. Used matchpos.
6121
6122 2000-04-08  Dekel Tsur  <dekel@math.tau.ac.il>
6123         
6124         * src/lyx_cb.C (DocumentApplyCB): When changing the language of the
6125         document, the language of existing text is changed (unless the
6126         document is multi-lingual)
6127
6128         * src/buffer.C (ChangeLanguage,isMultiLingual) New methods.
6129
6130         * src/paragraph.C (ChangeLanguage,isMultiLingual) New methods.
6131
6132         * A lot of files: A rewrite of the Right-to-Left support.
6133    
6134 2000-04-10  Juergen Vigna  <jug@sad.it>
6135
6136         * src/BufferView2.C (showLockedInsetCursor): small bugfix for
6137         misplaced cursor when inset in inset is locked.
6138
6139         * src/insets/insettext.C (LocalDispatch): small fix so that a
6140         BREAKLINE is not inserted if we don't permit it with autBreakRows.
6141
6142         * src/insets/insetfoot.C (GetDrawFont): implemented this as the
6143         footnote font should be decreased in size twice when displaying.
6144
6145         * src/insets/insettext.C (GetDrawFont): inserted this function as
6146         the drawing-font may differ from the real paragraph font.
6147
6148         * src/lyxfunc.C (processKeyEvent): fixed Esc-handling when unlocking
6149         insets (inset in inset!).
6150
6151         * src/insets/insetfoot.C (InsertInsetAllowed): implemented the below
6152         function here because we don't want footnotes inside footnotes.
6153
6154         * src/insets/insettext.C (InsetText): forgot to set autoBreakRows for
6155         Cloned insets.
6156         (init): now set the inset_owner in paragraph.C
6157         (LocalDispatch): added some resetPos() in the right position
6158         (cutSelection): 
6159         (copySelection): 
6160         (pasteSelection): changed to use the new CutAndPaste-Class.
6161
6162         * src/insets/lyxinset.h: inserted new function InsertInsetAllowed
6163         which tells if it is allowed to insert another inset inside this one.
6164
6165         * src/lyx_cb.C (DocumentApplyCB): Using CutAndPaste-Class for
6166         SwitchLayoutsBetweenClasses.
6167
6168         * src/text2.C (InsertInset): checking of the new paragraph-function
6169         InsertInsetAllowed.
6170         (DeleteSimpleCutBuffer): removed (for now only with #ifdef) as this
6171         is not needed anymore here!
6172         (CutSelection): 
6173         (CopySelection): 
6174         (PasteSelection): redone (also with #ifdef) so that now this uses
6175         the CutAndPaste-Class.
6176         (SwitchLayoutsBetweenClasses): removed here and implemented in the
6177         CutAndPaste-Class.
6178         
6179         * src/CutAndPaste.[Ch]: added this for clean handling of CutAndPaste
6180         from/to text/insets.
6181
6182         * src/paragraph.C (LyXParagraph): inserted new inset_owner pointer
6183         so that the paragraph knows if it is inside an (text)-inset.
6184         (InsertFromMinibuffer): changed return-value to bool as now it
6185         may happen that an inset is not inserted in the paragraph.
6186         (InsertInsetAllowed): this checks if it is allowed to insert an
6187         inset in this paragraph.
6188         (PasteParagraph): 
6189         (BreakParagraphConservative): 
6190         (BreakParagraph) : small change for the above change of the return
6191         value of InsertFromMinibuffer.
6192
6193         * src/lyxparagraph.h: added inset_owner and the functions to handle
6194         this (SetInsetOwner(), InInset() and InsertInsetAllowed()).
6195
6196 2000-04-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
6197
6198         * src/BufferView.[Ch], src/BufferView_pimpl.[Ch]: move more
6199         functions from BufferView to BufferView::Pimpl to ease maintence.
6200         
6201         * src/text2.C (DeleteEmptyParagraphMechanism): update the cursor
6202         correctly. Also use SetCursorIntern instead of SetCursor.
6203
6204         * src/insets/insetinfo.C (draw): draw InsetInfo notes with the
6205         correct color.
6206
6207 2000-04-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
6208
6209         * src/WorkArea.C (belowMouse): manually implement below mouse.
6210
6211         * src/*: Add "explicit" on several constructors, I added probably
6212         some unneeded ones. A couple of changes to code because of this.
6213
6214         * src/BufferView.[Ch]: Used the "pimpl" idiom to hide more of the
6215         implementation and private parts from the users of BufferView. Not
6216         quite finished.
6217
6218         * src/lyxlex.[Ch]: Used the "pimpl" idiom to hide more of the
6219         implementation and private parts from the users of LyXLex. Not
6220         quite finished.
6221
6222         * src/BufferView_pimpl.[Ch]: new files
6223
6224         * src/lyxlex_pimpl.[Ch]: new files
6225
6226         * src/LyXView.[Ch]: some inline functions move out-of-line
6227
6228 2000-04-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6229
6230         * src/lyxparagraph.h: make struct InsetTable public.
6231
6232         * src/support/lyxstring.h: change lyxstring::difference_type to be
6233         ptrdiff_t. Add std:: modifiers to streams.
6234
6235         * src/font.C: include the <cctype> header, for islower() and
6236         isupper(). 
6237
6238 2000-04-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
6239
6240         * src/font.[Ch]: new files. Contains the metric functions for
6241         fonts, takes a LyXFont as parameter. Better separation of concepts.
6242         
6243         * src/lyxfont.[Ch]: move the metric functions to font.[Ch] several
6244         changes because of this.
6245
6246         * src/PainterBase.[Ch] (width): remove, use the ones in font.C instead
6247
6248         * src/*: compile with -Winline and move functions that don't
6249         inline out of line.
6250         
6251         * src/lyx_cb.C (stringOnlyContains): use string::find_first_not_of
6252         instead of strspn.
6253
6254 2000-04-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
6255
6256         * src/paragraph.C (GetLabelstring): renamed from GetLabestring.
6257         (various files changed because of this)
6258
6259         * src/Painter.C (text): fixed the drawing of smallcaps.
6260
6261         * src/lyxfont.[Ch] (drawText): removed unused member func.
6262         (drawString): ditto
6263
6264         * src/*.C: added needed "using" statements and "std::" qualifiers. 
6265
6266 2000-03-31  Lars Gullik Bjønnes  <larsbj@lyx.org>
6267
6268         * src/*.h: removed all use of "using" from header files use
6269         qualifier std:: instead. 
6270
6271 2000-04-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6272
6273         * src/text.C (Backspace): some additional cleanups (we already
6274         know whether cursor.pos is 0 or not).
6275
6276         * lib/reLyX/Makefile.am (DESTDIR): add an empty value (since
6277         automake does not provide one).
6278
6279         * src/bmtable.h: replace C++ comments with C comments.
6280
6281 2000-04-02  Dekel Tsur <dekel@math.tau.ac.il>
6282
6283         * src/screen.C (ShowCursor): Change the shape of the cursor if
6284         the current language is not equal to the language of the document.
6285         (If the cursor change its shape unexpectedly, then you've found a bug)
6286
6287         * src/insets/insettext.C (LocalDispatch, UpdateLocal) Fixed some
6288         bugs [I hope...]
6289
6290         * src/insets/insetnumber.[Ch]: New files.
6291
6292         * src/LyXAction.C (init)
6293         * src/lyxfunc.C (dispatch): Add command number-inset-insert
6294
6295         * lyxrc.example
6296         * src/lyxrc.C: Renamed command \auto_mathmode to \number_inset
6297
6298         * src/lyxparagraph.h
6299         * src/paragraph.C: Changed insetlist to Vector<InsetTable>.
6300         (the vector is kept sorted).
6301
6302         * src/text.C (GetVisibleRow): Draw selection correctly when there
6303         is both LTR and RTL text.
6304
6305         * src/paragraph.C (Clone): Use the assignment operator for cloning,
6306         which is much faster.
6307
6308         * src/text.C (GetVisibleRow and other): Do not draw the last space 
6309         in a row if the direction of the last letter is not equal to the
6310         direction of the paragraph.
6311
6312         * src/lyxfont.C (latexWriteStartChanges):
6313         Check that font language is not equal to basefont language.
6314         (latexWriteEndChanges): ditto
6315
6316         * src/lyx_cb.C (StyleReset): Don't change the language while using
6317         the font-default command.
6318
6319         * src/paragraph.C (GetFirstFontSettings): Handle correctly an
6320         empty paragraph before a footnote.
6321
6322         * src/insets/insetcommand.C (draw): Increase x correctly.
6323
6324         * src/screen.C (ShowCursor): Change cursor shape if
6325         current language != document language.
6326
6327         * src/lyxfunc.C (dispatch): Added calls to owner->view()->setState()
6328
6329 2000-03-31  Juergen Vigna  <jug@sad.it>
6330
6331         * src/paragraph.C (GetInset): commented out text[pos] = ' '
6332         (Clone): changed mode how the paragraph-data is copied to the
6333         new clone-paragraph.
6334
6335         * src/lyxfunc.C (Dispatch): fixed small problem when calling
6336         GetInset(pos) with no inset anymore there (in inset UNDO)
6337
6338         * src/insets/insetcommand.C (draw): small fix as here x is
6339         incremented not as much as width() returns (2 before, 2 behind = 4)
6340
6341 2000-03-30  Juergen Vigna  <jug@sad.it>
6342
6343         * src/insets/insettext.C (InsetText): small fix in initialize
6344         widthOffset (should not be done in the init() function)
6345
6346 2000-03-29  Amir Karger <karger@lyx.org>
6347
6348         * lib/examples/it_ItemizeBullets.lyx: translation by 
6349         Stefano Mastella
6350
6351         * Implemented \textasciitilde and fixed a tiny bug in reLyX
6352
6353 2000-03-29  Juergen Vigna  <jug@sad.it>
6354
6355         * src/insets/insetcollapsable.C (Clone): same as in InsetFoot
6356
6357         * src/insets/insetfoot.C (Clone): small change as for the below
6358         new init function in the text-inset
6359
6360         * src/insets/insettext.C (init): new function as I've seen that
6361         clone did not copy the Paragraph-Data!
6362         (LocalDispatch): Added code so that now we have some sort of Undo
6363         functionality (well actually we HAVE Undo ;)
6364
6365         * src/text.C (Backspace): Small fix for the a | a Backspace problem
6366
6367 2000-03-24  Dekel Tsur <dekel@math.tau.ac.il>
6368         
6369         * src/paragraph.C (AutoDeleteInsets) Fixed a bug (wrong positions
6370         were erased)
6371
6372 2000-03-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
6373
6374         * src/main.C: added a runtime check that verifies that the xforms
6375         header used when building LyX and the library used when running
6376         LyX match. Exit with a message if they don't match. This is a
6377         version number check only.
6378
6379         * src/buffer.C (save): Don't allocate memory on the heap for
6380         struct utimbuf times.
6381
6382         * *: some using changes, use iosfwd instead of the real headers.
6383
6384         * src/lyxfont.C use char const * instead of string for the static
6385         strings. Rewrite some functions to use sstream.
6386
6387 2000-03-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6388
6389         * src/text.C (Backspace): hopefully fix the dreaded backaspace
6390         bug. 
6391
6392 2000-03-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6393
6394         * lib/layouts/svjog.layout: new file, for Springer-Verlag Journal
6395         of Geodesy (from Martin Vermeer)
6396
6397         * lib/layouts/svjour.inc: include file for the Springer svjour
6398         class. It can be used to support journals other than JoG.
6399
6400         * lib/Makefile.am: use $(DESTDIR) make variable (from Arkadiusz
6401         Miskiewicz <misiek@pld.org.pl>)
6402         * lib/reLyX/Makefile.am: ditto.
6403
6404 2000-03-27  Juergen Vigna  <jug@sad.it>
6405
6406         * src/insets/insettext.C: added Cut/Copy/Paste inside insets,
6407         also some modifications with operations on selected text.
6408
6409         * src/BufferView.C (checkInsetHit): Now hopefully fixed all the
6410         problems with clicking on insets (last famous words ;)
6411
6412         * src/insets/insetcommand.C (draw): 
6413         (width): Changed to have a bit of space before and after the inset so
6414         that the blinking cursor can be seen (otherwise it was hidden)
6415
6416 2000-03-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6417
6418         * config/gettext.m4 (AM_WITH_NLS): fix a gettext bug where -lintl
6419         would not be added to the link list when an installed gettext (not
6420         part of libc) is found.
6421
6422 2000-03-24  Juergen Vigna  <jug@sad.it>
6423
6424         * src/insets/insetcollapsable.C (Edit): 
6425         * src/mathed/formula.C (InsetButtonRelease): 
6426         (InsetButtonPress): fixed for new handling of ButtonPress/Release
6427         handling.
6428
6429         * src/BufferView.C (workAreaButtonPress): 
6430         (workAreaButtonRelease): 
6431         (checkInsetHit): Finally fixed the clicking on insets be handled
6432         correctly!
6433
6434         * src/insets/insetert.C (Edit): inserted this call so that ERT
6435         insets work always with LaTeX-font
6436
6437 2000-03-21  Kayvan A. Sylvan  <kayvan@camel.internal.sylvan.com>
6438
6439         * src/lyx_main.C (easyParse): Removed misplaced gui=false which
6440         caused lyx to startup with no GUI in place, causing in a crash
6441         upon startup when called with arguments.
6442
6443 2000-03-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6444
6445         * src/FontLoader.C: better initialization of dummyXFontStruct.
6446
6447 2000-03-20 José Abílio Matos <jamatos@lyx.org>
6448
6449         * src/lyxrc.[Ch] Removed \sgml_extra_options, added 6 other flags
6450         for linuxdoc and docbook import and export format options.
6451
6452         * lib/lyxrc.example Example of default values for the previous flags.
6453
6454         * src/lyx_cb.C Use those flags instead of the hardwired values for
6455         linuxdoc and docbook export.
6456
6457         * src/lyxfunc.[Ch] Added HTML export for linuxdoc and docbook, added
6458         linuxdoc import.
6459
6460         * src/menus.C Added menus entries for the new import/exports formats.
6461         
6462 2000-03-09 André Pönitz <poenitz@mathematik.tu-chemnitz.de>
6463
6464         * src/lyxrc.*: Added support for running without Gui 
6465         (\use_gui false)
6466           
6467         * src/FontLoader.C: sensible defaults if no fonts are needed
6468
6469         * src/lyx_cb.C: New function ShowMessage (writes either to the
6470         minibuffer or cout in case of no gui
6471         New function AskOverwrite for common stuff
6472         Consequently various changes to call these functions
6473
6474         * src/lyx_main.C:  allow gui = false and handle lyxrc \use_gui false
6475         wild guess at sensible screen resolution when having no gui
6476
6477         * src/lyxfont.C: no gui, no fonts... set some defaults
6478
6479 2000-03-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6480
6481         * src/LColor.C: made the command inset background a bit lighter.
6482
6483 2000-03-20  Hartmut Goebel <goebel@noris.net>
6484
6485         * lib/layouts/stdstruct.inc: split into stdtitle.inc and
6486         stdstruct.inc. Koma-Script added some title elements which
6487         otherwise have been listed below "bibliography". This split allows
6488         adding title elements to where they belong.
6489
6490         * lib/layouts/scrclass.inc: changed to include stdtitle.inc, then
6491         define the additional tilte elements and then include
6492         stdstruct.inc. 
6493
6494         * many other layout files: changed to include stdtitle.inc just
6495         before stdstruct.inc.
6496
6497 2000-03-18 Dekel Tsur <dekel@math.tau.ac.il>
6498
6499         * src/buffer.C: (save) Added the option to store all backup files
6500         in a single directory
6501
6502         * src/lyxrc.[Ch]: Added variable \backupdir_path
6503
6504         * lib/lyxrc.example: Added descriptions of recently added variables
6505
6506         * src/insets/insetbib.[Ch]: Fixed few bugs (crash when editing a
6507         bibtex inset, not closing the bibtex popup when deleting the inset)
6508
6509 2000-03-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6510
6511         * src/lyx_cb.C: add a couple using directives.
6512
6513 2000-03-17 José Abílio Matos <jamatos@lyx.org>
6514         * src/lyx_cb.C (RunLinuxDoc) Removed the flag==-1 option for linuxdoc 
6515         import based on the filename.
6516         
6517         * src/bufferlist.C () Removed the call to RunLinuxDoc where a linuxdoc
6518         file would be imported at start, if the filename where of a sgml file.
6519
6520         * src/support/filetools.C (IsSGMLfilename) Removed, no longer needed.
6521         
6522         * src/support/filetools.h (IsSGMLfilename) Removed, no longer needed.
6523         
6524 2000-03-16 Dekel Tsur <dekel@math.tau.ac.il>
6525         * src/lyxfont.h Replaced the member variable bits.direction by the
6526         member variable lang. Made many changes in other files.
6527         This allows having a multi-lingual document
6528
6529         * src/lyxfunc.C, src/lyx_cb.C Added a new command "language <l>"
6530         that change the current language to <l>.
6531         Removed the command "font-rtl"
6532
6533         * src/buffer.C Changed LYX_FORMAT to 2.16 (as I changed the file
6534         format for Hebrew documents)
6535
6536         * src/lyxrc.C, src/lyxfunc.C Added a new lyxrc command "auto_mathmode"
6537         When auto_mathmode is "true", pressing a digit key in normal mode 
6538         will cause entering into mathmode.
6539         If auto_mathmode is "rtl" then this behavior will be active only
6540         when writing right-to-left text.
6541
6542         * src/text2.C (InsertStringA) The string is inserted using the
6543         current font.
6544
6545         * src/paragraph.C (GetEndLabel) Gives a correct result for
6546         footnote paragraphs.
6547
6548         * src/paragraph.C (PreviousBeforeFootnote) Fixed a small bug
6549
6550 2000-03-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
6551
6552         * src/text.C (Backspace): move RemoveParagraph and RemoveRow in
6553         front of PasteParagraph. Never insert a ' '. This should at least
6554         fix some cause for the segfaults that we have been experiencing,
6555         it also fixes backspace behaviour slightly. (Phu!)
6556
6557         * src/support/lstrings.C (compare_no_case): some change to make it
6558         compile with gcc 2.95.2 and stdlibc++-v3
6559
6560         * src/text2.C (MeltFootnoteEnvironment): change type o
6561         first_footnote_par_is_not_empty to bool.
6562
6563         * src/lyxparagraph.h: make text private. Changes in other files
6564         because of this.
6565         (fitToSize): new function
6566         (setContentsFromPar): new function
6567         (clearContents): new function
6568         (SetChar): new function
6569
6570         * src/paragraph.C (readSimpleWholeFile): deleted.
6571
6572         * src/lyx_cb.C (InsertAsciiFile): don't use a LyXParagraph to hold
6573         the file, just use a simple string instead. Also read the file in
6574         a more maintainable manner.
6575
6576         * src/text2.C (InsertStringA): deleted.
6577         (InsertStringB): deleted.
6578
6579 2000-03-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
6580
6581         * src/text2.C (DeleteEmptyParagraphMechanism): don't run,
6582         RedoParagraphs from the doublespace handling part, just set status
6583         to NEED_MORE_REFRESH. Also don't update cursor position (should be
6584         done, but perhaps not like this.)
6585
6586 2000-03-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6587
6588         * src/text2.C (InsertStringA): don't forget to insert a META_INSET
6589         character when inserting an inset.
6590
6591 2000-03-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
6592
6593         * src/bufferparams.C (readLanguage): now takes "default" into
6594         consideration.
6595
6596         * src/lyx_main.C (LyX): remove the setup of lyxrc. (new)
6597         also initialize the toplevel_keymap with the default bindings from
6598         lyxrc. 
6599         
6600         * src/buffer.C (Buffer): remove lyxrc from the parameters.
6601
6602         * all files using lyxrc: have lyxrc as a real variable and not a
6603         pointer. remove all extern LyXRC * lyxrc. The equiv to this is
6604         done in lyxrc.h.
6605         
6606         * src/lyxrc.C: remove double call to defaultKeyBindings
6607
6608         * src/toolbar.[Ch]: Let the ToolbarDefaults handle the reading of
6609         toolbar defauls using lyxlex. Remove enums, structs, functions
6610         related to this. 
6611
6612         * src/lyxrc.h: use ToolbarDefaults instead of Toolbar for storing
6613         toolbar defaults. Also store default keybindings in a map.
6614
6615         * src/ToolbarDefaults.[Ch]: New file. This class is used for
6616         storing the toolbar defaults without any xforms dependencies. 
6617
6618         * src/insets/figinset.C: patch posted to list by Andre Poenitz
6619         applied. Changed to use iterators.
6620
6621 2000-03-11  Kayvan A. Sylvan  <kayvan@satyr.sylvan.com>
6622
6623         * development/lyx.spec.in: Fix to ``unset LINGUAS'' line for
6624         systems that don't have LINGUAS set to begin with.
6625
6626 2000-03-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
6627
6628         * src/text2.C (DeleteEmptyParagraphMechanism): small fix posted to
6629         the list by Dekel Tsur.
6630
6631 2000-03-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6632
6633         * src/insets/insetgraphics.C (GraphicxCB): declare with "C" linkage.
6634         * src/insets/form_graphics.C: ditto.
6635
6636         * src/insets/inseturl.C (Latex): the free_spc argument is not used.
6637
6638 2000-03-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
6639
6640         * src/bufferparams.C (readLanguage): use the new language map
6641
6642         * src/intl.C (InitKeyMapper): use the new language map
6643
6644         * src/lyx_gui.C (create_forms): use the new language map
6645
6646         * src/language.[Ch]: New files. Used for holding the information
6647         about each language. Now! Use this new language map enhance it and
6648         make it really usable for our needs. 
6649
6650 2000-03-09 Dekel Tsur <dekel@math.tau.ac.il>
6651         
6652         * screen.C (ShowCursor): Removed duplicate code.
6653         (ShowManualCursor): Support for 3 cursor shapes: Bar (default),
6654         L (LTR text in RTL document), and reversed-L (RTL text in LTR document)
6655         
6656         * src/text.C (NextBreakPoint,Fill): Moved declaration of left_margin
6657
6658         * src/lyxtext.h
6659         * src/text.C  Added TransformChar method. Used for rendering Arabic
6660         text correctly (change the glyphs of the letter according to the
6661         position in the word)
6662
6663         * src/buffer.C
6664         * src/paragraph.C
6665         * src/lyxrc.h
6666         * src/lyxrc.C  Added lyxrc command {language_command_begin,
6667         language_command_end,language_command_ltr,language_command_rtl,
6668         language_package} which allows the use of either arabtex or Omega
6669         for Arabic
6670
6671         * src/lyx_gui.C (init)
6672         * src/lyxrc.h
6673         * src/lyxrc.C Added lyxrc command screen_font_encoding_menu. Allows
6674         to use encoding for menu fonts which is different than the encoding
6675         for screen fonts
6676
6677         * src/buffer.C (makeLaTeXFile): If params.language = "default",
6678         do not load the babel package.
6679         To write an English document with Hebrew/Arabic, change the document
6680         language to "english".
6681
6682         * src/text2.C (SetCounter): Fixed appendix labels for Hebrew document
6683         (alphaCounter): changed to return char
6684         (loweralphaCounter, hebrewCounter, romanCounter): New functions
6685
6686         * lib/lyxrc.example  Added examples for Hebrew/Arabic
6687
6688         * src/layout.h
6689         * src/layout.C  Added layout command endlabeltype
6690
6691         * src/paragraph.C Added GetEndLabel(),LastPhysicalPar() const
6692
6693         * src/text.C (GetVisibleRow): Draw a box at the end of proof layout
6694
6695 2000-03-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
6696
6697         * src/mathed/math_delim.C (search_deco): return a
6698         math_deco_struct* instead of index.
6699
6700 2000-03-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
6701
6702         * All files with a USE_OSTREAM_ONLY within: removed all code that
6703         was unused when USE_OSTREAM_ONLY is defined.
6704         
6705         * src/support/lyxalgo.h (sorted): rewrote to use plain '<' instead
6706         of any less. Removed header and using.
6707
6708         * src/text.C (GetVisibleRow): draw the string "Page Break
6709         (top/bottom)" on screen when drawing a pagebreak line.
6710
6711 2000-03-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6712
6713         * lib/doc/LaTeXConfig.lyx.in: add description of textclass llncs.
6714
6715         * src/mathed/math_macro.C (draw): do some cast magic.
6716         (Metrics): ditto.
6717
6718         * src/mathed/math_defs.h: change byte* argument to byte const*.
6719
6720         * src/mathed/formulamacro.[Ch]: add free_spc to Latex() method.
6721
6722         * src/insets/insetfoot.[Ch]: Clone() always returns an Inset* (well I
6723         know it is right to return InsetFoot* too, but cxx does not like
6724         it...). 
6725
6726         * src/insets/insetcollapsable.[Ch] (Clone): make const.
6727
6728         * development/lyx.spec.in: unset LINGUAS to avoid i18n problems.
6729
6730         * src/mathed/math_delim.C: change == to proper assignment.
6731
6732 2000-03-09  Juergen Vigna  <jug@sad.it>
6733
6734         * src/insets/insettext.C (setPos): fixed various cursor positioning
6735         problems (via mouse and cursor-keys)
6736         (LocalDispatch): added posibility to add a Ctrl-Enter inside a text
6737         inset (still a small display problem but it works ;)
6738
6739         * src/insets/insetcollapsable.C (draw): added button_top_y and
6740         button_bottom_y to have correct values for clicking on the inset.
6741
6742         * src/support/lyxalgo.h: commented out 'using std::less'
6743
6744 2000-03-08  Juergen Vigna  <jug@sad.it>
6745
6746         * src/insets/insetcollapsable.C (InsetButtonRelease): Now a
6747         Button-Release event closes as it is alos the Release-Event
6748         which opens it.
6749
6750         * src/lyxfunc.C (Dispatch): forgot a break in the LFUN_INSET_ERT
6751
6752 2000-03-07  Kayvan A. Sylvan  <kayvan@camel.internal.sylvan.com>
6753
6754         * lib/layouts/literate-scrap.inc: Fixed initial comment. Now we
6755         can add multiple spaces in Scrap (literate programming) styles...
6756         which, by the way, is how I got hooked on LyX to begin with.
6757  
6758         * src/mathed/formula.C (Write): Added dummy variable to an
6759         inset::Latex() call.
6760         (Latex): Add free_spacing boolean to inset::Latex()
6761
6762         * src/mathed/formula.h (Latex): Added free_spacing boolean arg.
6763         
6764         * src/insets/lyxinset.h: Changed definition of the inset::Latex()
6765         virtual function to include the free_spacing boolean from
6766         the containing paragraph's style.
6767  
6768         * src/insets/inseturl.C, src/insets/inseturl.h (Latex):
6769         Added free_spacing boolean arg to match inset.h
6770         
6771         * src/insets/insettext.C, src/insets/insettext.h (Latex):
6772         Added free_spacing boolean arg to match inset.h
6773         
6774         * src/insets/insetspecialchar.C, src/insets/insetspecialchar.h (Latex):
6775         Added free_spacing boolean and made sure that if in a free_spacing
6776         paragraph, that we output normal space if there is a protected space.
6777         
6778         * src/insets/insetref.C, src/insets/insetref.h (Latex):
6779         Added free_spacing boolean arg to match inset.h
6780         
6781         * src/insets/insetquotes.C, src/insets/insetquotes.h (Latex):
6782         Added free_spacing boolean arg to match inset.h
6783         
6784         * src/insets/insetparent.C, src/insets/insetparent.h (Latex):
6785         Added free_spacing boolean arg to match inset.h
6786         
6787         * src/insets/insetlatexaccent.C, src/insets/insetlatexaccent.h (Latex):
6788         Added free_spacing boolean arg to match inset.h
6789         
6790         * src/insets/insetlatex.C, src/insets/insetlatex.h (Latex):
6791         Added free_spacing boolean arg to match inset.h
6792         
6793         * src/insets/insetlabel.C, src/insets/insetlabel.h (Latex): Added
6794         free_spacing boolean arg to match inset.h 
6795         
6796         * src/insets/insetinfo.C, src/insets/insetinfo.h (Latex):
6797         Added free_spacing boolean arg to match inset.h
6798         
6799         * src/insets/insetinclude.C, src/insets/insetinclude.h (Latex):
6800         Added free_spacing boolean arg to match inset.h
6801         
6802         * src/insets/insetgraphics.C, src/insets/insetgraphics.h (Latex):
6803         Added free_spacing boolean arg to match inset.h
6804         
6805         * src/insets/inseterror.C, src/insets/inseterror.h (Latex):
6806         Added free_spacing boolean arg to match inset.h
6807         
6808         * src/insets/insetcommand.C, src/insets/insetcommand.h (Latex):
6809         Added free_spacing boolean arg to match inset.h
6810         
6811         * src/insets/insetbib.C, src/insets/insetbib.h (Latex): Added
6812         free_spacing boolean arg to match inset.h
6813         
6814         * src/insets/figinset.C, src/insets/figinset.h (Latex): Added
6815         free_spacing boolean arg to match inset.h
6816         
6817         * src/text2.C (DeleteEmptyParagraphMechanism): Fix this to
6818         ignore free_spacing paragraphs. The user's spaces are left
6819         alone. 
6820         
6821         * src/text.C (InsertChar): Fixed the free_spacing layout
6822         attribute behavior. Now, if free_spacing is set, you can
6823         add multiple spaces in a paragraph with impunity (and they
6824         get output verbatim).
6825         (SelectSelectedWord): Added dummy argument to inset::Latex()
6826         call.
6827         
6828         * src/paragraph.C (TeXOnePar): Added dummy args to inset::Latex(...)
6829         calls.
6830         
6831         * src/lyxfunc.C (Dispatch): Hard-spaces input in free_spacing
6832         paragraph layouts now only input a simple space instead.
6833         Special character insets don't make any sense in free-spacing
6834         paragraphs.
6835         
6836         * src/buffer.C (parseSingleLyXformat2Token): Code to convert
6837         hard-spaces in the *input* file to simple spaces if the layout
6838         is free-spacing. This converts old files which had to have
6839         hard-spaces in free-spacing layouts where a simple space was
6840         preferrable.
6841         (writeFileAscii): Added free_spacing check to pass to the newly
6842         reworked inset::Latex(...) methods. The inset::Latex() code
6843         ensures that hard-spaces in free-spacing paragraphs get output
6844         as spaces (rather than "~").
6845         
6846 2000-03-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
6847         
6848         * src/mathed/math_delim.C (draw): draw the empty placeholder
6849         delims with a onoffdash line.
6850         (struct math_deco_compare): struct that holds the "functors" used
6851         for the sort and the binary search in math_deco_table.
6852         (class init_deco_table): class used for initial sort of the
6853         math_deco_table. 
6854         (search_deco): use lower_bound to do a binary search in the
6855         math_deco_table.
6856
6857 2000-03-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
6858
6859         * src/lyxrc.C: a small secret thingie...
6860
6861         * src/lyxlex.C (printTable): changed to take a ostream as paramter
6862         and to not flush the stream as often as it used to.
6863
6864         * src/support/lyxalgo.h: new file 
6865         (sorted): template function used for checking if a sequence is
6866         sorted or not. Two versions with and without user supplied
6867         compare. Uses same compare as std::sort.
6868
6869         * src/lyxlex.C (LyXLex): check if the table is sorted, if not sort
6870         it and give warning on lyxerr.
6871         (pushTable): ditto
6872         (struct compare_tags): struct with function operators used for
6873         checking if sorted, sorting and lower_bound.
6874         (search_kw): use lower_bound instead of manually implemented
6875         binary search.
6876
6877 2000-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6878
6879         * src/insets/insetcollapsable.h: fix Clone() declaration.
6880         * src/insets/insetfoot.h: ditto.
6881
6882         * src/insets/lyxinset.h: remove an extra comma at the end of enum.
6883
6884 2000-03-08  Juergen Vigna  <jug@sad.it>
6885
6886         * src/insets/lyxinset.h: added owner call which tells us if
6887         this inset is inside another inset. Changed also the return-type
6888         of Editable to an enum so it tells clearer what the return-value is.
6889
6890         * src/insets/insettext.C (computeTextRows): fixed computing of
6891         textinsets which split automatically on more rows.
6892
6893         * src/insets/insetert.[Ch]: changed this to be of BaseType
6894         InsetCollapsable.
6895
6896         * src/insets/insetfoot.[Ch]: added footnote inset
6897
6898         * src/insets/insetcollapsable.[Ch]: added this BaseClass for
6899         collapsable insets (like footnote, ert, ...)
6900
6901 2000-03-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
6902
6903         * src/lyxdraw.h: remvoe file
6904
6905         * src/lyxdraw.C: remove file
6906
6907         * src/insets/insettext.C: added <algorithm>.
6908
6909 2000-03-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
6910
6911         * src/mathed/math_panel.C (delim_cb): case MM_OK use string stream
6912         (matrix_cb): case MM_OK use string stream
6913
6914         * src/mathed/formula.C (LocalDispatch): case LFUN_SETXY use string
6915         stream.
6916
6917         * src/mathed/math_macro.C (draw): use string stream
6918         (Metrics): use string stream
6919
6920         * src/paragraph.C (TeXFootnote): for case LyXParagraph::FIG, write
6921         directly to the ostream.
6922
6923         * src/vspace.C (asString): use string stream.
6924         (asString): use string stream
6925         (asLatexString): use string stream
6926
6927         * src/lyx_cb.C (UpdateLayoutDocument): use string stream for
6928         setting Spacing::Other.
6929
6930         * src/LaTeXFeatures.C (getPackages): use string stream instead of
6931         sprintf when creating the stretch vale.
6932
6933         * src/text2.C (alphaCounter): changed to return a string and to
6934         not use a static variable internally. Also fixed a one-off bug.
6935         (SetCounter): changed the drawing of the labels to use string
6936         streams instead of sprintf.
6937
6938         * src/support/lyxmanip.h: rewrite the newlineanDepth ostream
6939         manipulator to use a scheme that does not require library support.
6940         This is also the way it is done in the new GNU libstdc++. Should
6941         work with DEC cxx now. 
6942
6943 2000-03-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
6944
6945         * src/mathed/math_inset.h (Write(ostream & os): add a space at the
6946         end. This fixes a bug. 
6947
6948         * src/mathed (all files concerned with file writing): apply the
6949         USE_OSTREAM_ONLY changes to mathed too.
6950         
6951         * src/support/DebugStream.h: make the constructor explicit.
6952
6953         * src/lyxfont.C (latexWriteStartChanges): small bug related to
6954         count and ostream squashed.
6955
6956 2000-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6957
6958         * src/support/Makefile.am (libsupport_la_SOURCES): add lyxmanip.h.
6959
6960         * src/buffer.C (makeLaTeXFile): add a .c_str(), since
6961         ostringstream uses STL strings, and we might not.
6962
6963         * src/insets/insetspecialchar.C: add using directive.
6964         * src/insets/insettext.C: ditto.
6965
6966 2000-03-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
6967
6968         * lib/layouts/seminar.layout: feeble attempt at a layout for
6969         seminar.cls, far from completet and could really use some looking
6970         at from people used to write layout files.
6971
6972         * src/support/lyxmanip.h (newlineAndDepth): ostream manipulator to
6973         use instead of the AddNewlineAndDepth funtion in lyx_cb.C. This is
6974         a lot nicer and works nicely with ostreams.
6975
6976         * src/mathed/formula.C (draw): a slightly different solution that
6977         the one posted to the list, but I think this one works too. (font
6978         size wrong in headers.)
6979
6980         * src/insets/insettext.C (computeTextRows): some fiddling on
6981         Jürgens turf, added some comments that he should read.
6982
6983         * src/lyxrc.C: remove all traces of RC_NOMENUACCELERATORS, never
6984         used and it gave compiler warnings.
6985         RC_SHOW_BANNER + "\\show_banner" added, also to reading and
6986         writing of lyxrc.
6987
6988         * src/lyx_gui.C (create_forms): do the right thing when
6989         show_banner is true/false.
6990
6991         * src/lyx_cb.C (TimerCB): no need to close or do anything if
6992         show_banner is false.
6993
6994         * most file writing files: Now use iostreams to do almost all of
6995         the writing. Also instead of passing string &, we now use
6996         stringstreams. mathed output is still not adapted to iostreams.
6997         This change can be turned off by commenting out all the occurences
6998         of the "#define USE_OSTREAM_ONLY 1" lines.
6999         
7000         * src/WorkArea.C (createPixmap): don't output debug messages.
7001         (WorkArea): don't output debug messages.
7002
7003         * lib/lyxrc.example: added a comment about the new variable
7004         \show_banner 
7005
7006         * development/Code_rules/Rules: Added some more commente about how
7007         to build class interfaces and on how better encapsulation can be
7008         achieved. 
7009
7010 2000-03-03  Juergen Vigna  <jug@sad.it>
7011
7012         * src/insets/insetert.C (InsetERT): Now ERT-insets break row
7013         automatically with the width of the LyX-Window
7014
7015         * src/insets/insettext.C (computeTextRows): fixed update bug in
7016         displaying text-insets (scrollvalues where not initialized!)
7017
7018 2000-03-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
7019
7020         * src/mathed/math_utils.C (MathedLookupBOP): using only res->id ==
7021         id in the check of the result from lower_bound is not enough since
7022         lower_bound can return last too, and then res->id will not be a
7023         valid construct.
7024
7025         *  all insets and some code that use them: I have conditionalized
7026         removed the Latex(string & out, ...) this means that only the
7027         Latex(ostream &, ...) will be used. This is a work in progress to
7028         move towards using streams for all output of files. 
7029
7030         * src/text.C (GetColumnNearX): initialize LyXParagraph::size_type
7031         c to 0.
7032
7033 2000-03-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7034
7035         * src/mathed/math_utils.C (MathedLookupBOP): fix the search
7036         routine (this fixes bug where greek letters were surrounded by too
7037         much white space).
7038
7039         * src/support/filetools.C (findtexfile): change a bit the search
7040         algorithm, to fix bug introduced in 1.1.4. Note that --format is
7041         no longer passed to kpsewhich, we may have to change that later.
7042
7043         * config/lyxinclude.m4 (LYX_PROG_CXX): better version-dependent
7044         warning options to avoid problems with X header files (from Angus
7045         Leeming).
7046         * acinclude.m4: regenerated.
7047
7048 2000-03-02  Juergen Vigna  <jug@sad.it>
7049
7050         * src/insets/insettext.C (WriteParagraphData): Using the
7051         par->writeFile() function for writing paragraph-data.
7052         (Read): Using buffer->parseSingleLyXformat2Token()-function
7053         for parsing paragraph data!
7054
7055         * src/buffer.C (readLyXformat2): removed all parse data and using
7056         the new parseSingleLyXformat2Token()-function.
7057         (parseSingleLyXformat2Token): added this function to parse (read)
7058         lyx-file-format (this is called also from text-insets now!)
7059
7060 2000-03-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
7061
7062         * src/paragraph.C (BeginningOfMainBody): initialize previous_char
7063         and temp.
7064
7065         * src/lyxfunc.C (Dispatch(LFUN_MENUSEARCH)): Do the Search dialog
7066         directly instead of going through a func. One very bad thing: a
7067         static LyXFindReplace, but I don't know where to place it. 
7068
7069         * src/lyxfr1.C (GetCurrentSelectionAsString): rewritten to use a
7070         string instead of char[]. Also changed to static.
7071         (GetSelectionOrWordAtCursor): changed to static inline
7072         (SetSelectionOverLenChars): ditto.
7073
7074         * src/lyxfr0.[Ch] src/lyxfr1.[Ch]: rewrite to get rid of
7075         current_view and global variables. both classes has changed names
7076         and LyXFindReplace is not inherited from SearchForm.
7077         
7078         * src/lyx_gui_misc.C (CloseAllBufferRelatedPopups): remove the
7079         fl_form_search form.
7080
7081         * src/lyx_gui.C (create_forms): removed the fl_form_search form.
7082
7083 2000-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7084
7085         * lib/bind/*.bind: make sure 'buffer-previous' function is not
7086         bound (from Kayvan).
7087
7088         * src/insets/Makefile.am (libinsets_la_SOURCES): add BoundingBox.h.
7089
7090         * lib/layouts/stdletter.inc: fix line spacing in Send_To_Address.
7091
7092 2000-03-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
7093
7094         * some things that I should comment but the local pub says head to
7095         swirly... 
7096         
7097         * comment out all code that belongs to the Roff code for Ascii
7098         export of tables. (this is unused)
7099         
7100         * src/LyXView.C: use correct type for global variable
7101         current_layout. (LyXTextClass::size_type)
7102
7103         * some code to get the new insetgraphics closer to working I'd be
7104         grateful for any help.
7105         
7106         * src/BufferView2.C (insertInset): use the return type of
7107         NumberOfLayout properly. (also changes in other files)
7108
7109         * src/insets/insetspecialchar.[Ch]: add the PROTECTED SEPARATOR to
7110         this as a test. I want to know what breaks because of this.
7111
7112         * src/BufferView.[Ch] (tripleClick): name change from trippleClick.
7113
7114 2000-02-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
7115
7116         * lib/layouts/stdlists.inc: changed the lyxlist latex definition
7117         to use a \makebox in the label, this allows proper justification
7118         with out using protected spaces or multiple hfills. Now it is
7119         "label" for left justified, "\hfill label\hfill" for center, and
7120         "\hfill label" for right justified. UserGuide.lyx sec. 3.3.6.5
7121         should be changed accordingly. 
7122
7123 2000-02-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7124
7125         * src/lyxtext.h: change SetLayout() to take a
7126         LyXTextClass::size_type instead of a char (when there is more than
7127         127 layouts in a class); also change type of copylayouttype.
7128         * src/text2.C (SetLayout): ditto.
7129         * src/LyXView.C (updateLayoutChoice): ditto.
7130
7131         * src/LaTeX.C (scanLogFile): errors where the line number was not
7132         given just after the '!'-line were ignored (from Dekel Tsur).
7133
7134         * lib/lyxrc.example: fix description of \date_insert_format
7135
7136         * lib/layouts/llncs.layout: new layout, contributed by Martin
7137         Vermeer. 
7138
7139 2000-02-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
7140
7141         * config/lyxinclude.m4 (LYX_PROG_CXX): remove case support for gcc
7142         2.7.* and add case support for gcc 2.96*. Gcc 2.96 only exists in
7143         cvs at gcc.gnu.org (currently it fails with ICE on insetbib.C,
7144         insetindex.C, insetloa.C, insettext.C, filetools.C, BufferView.C,
7145         BufferView2.C, LyXView.C, buffer.C, lyx_cb.C, lyxfunc.C,
7146         paragraph.C, text.C, text2.C)
7147
7148 2000-02-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7149
7150         * src/insets/insettext.C (LocalDispatch): remove extra break
7151         statement. 
7152
7153         * src/insets/insetert.[Ch] (Clone): change return value to Inset*
7154         * src/insets/insettext.[Ch] (Clone): change return value to Inset*
7155
7156         * src/mathed/formulamacro.[Ch] (draw): add missing const qualifier
7157         * src/insets/insettext.[Ch] (GetCursorPos): ditto
7158
7159         * src/insets/insetbib.h: move InsetBibkey::Holder and
7160         InsetCitation::Holder in public space.
7161
7162 2000-02-25  Lars Gullik Bjønnes <larsbj@lyx.org>
7163
7164         * src/insets/insettext.h: small change to get the new files from
7165         Juergen to compile (use "string", not "class string").
7166
7167         * src/insets/insettext.[Ch], src/insets/insertert.[Ch]: use string
7168         const & as parameter to LocalDispatch, use LyXFont const & as
7169         paramter to some other func. This also had impacto on lyxinsets.h
7170         and the two mathed insets.
7171
7172 2000-02-24  Juergen Vigna  <jug@sad.it>
7173
7174         * src/buffer.C:
7175         * src/commandtags.h: 
7176         * src/LyXAction.C:
7177         * src/lyxfunc.C: added code for LFUN_INSET_ERT and LFUN_INSET_TEXT
7178
7179         * src/BufferView.h
7180         * src/BufferView.C
7181         * src/BufferView2.C: added/updated code for various inset-functions
7182
7183         * src/insets/insetert.[Ch]: added implementation of InsetERT
7184
7185         * src/insets/insettext.[Ch]: added implementation of InsetText
7186
7187         * src/insets/inset.C (Edit): added "unsigned int button" parameter
7188         (draw): added preliminary code for inset scrolling not finshed yet
7189
7190         * src/insets/inset.C (LocalDispatch): changed arg parameter to string
7191         as it is in lyxfunc.C now
7192
7193         * src/insets/lyxinset.h: Added functions for text-insets
7194
7195 2000-02-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
7196
7197         * src/lyx_cb.C src/UpdateInset.[Ch]: move the updateinsetlist into
7198         BufferView and reimplement the list as a queue put inside its own
7199         class.
7200
7201         * src/bufferlist.[Ch] (updateInset): remove func, not needed.
7202
7203         * several files: use the new interface to the "updateinsetlist"
7204         
7205         * src/WorkArea.C (work_area_handler): call BufferView::doubleClick
7206         on doubleclick.
7207         (work_area_handler): call BufferView::trippleClick on trippleclick.
7208
7209         * src/BufferView.C (doubleClick): new function, selects word on
7210         doubleclick. 
7211         (trippleClick): new function, selects line on trippleclick.
7212
7213 2000-02-22  Allan Rae  <rae@lyx.org>
7214
7215         * lib/bind/xemacs.bind: buffer-previous not supported
7216
7217 2000-02-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7218
7219         * src/insets/insettoc.[Ch] (LinuxDoc, DocBook): mark the methods
7220         as const.
7221
7222 2000-02-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
7223
7224         * src/bufferlist.C: get rid of current_view from this file
7225
7226         * src/spellchecker.C: get rid of current_view from this file
7227
7228         * src/vspace.C: get rid of current_view from this file
7229         (inPixels): added BufferView parameter for this func
7230         (asLatexCommand): added a BufferParams for this func
7231
7232         * src/text.C src/text2.C: get rid of current_view from these
7233         files.
7234         
7235         * src/lyxfont.C (getFontDirection): move this function here from
7236         text.C
7237         
7238         * src/bufferparams.C (getDocumentDirection): move this function
7239         here from text.C
7240
7241         * src/paragraph.C (getParDirection): move this function here from
7242         text.C 
7243         (getLetterDirection): ditto
7244         
7245 2000-02-18  Lars Gullik Bjønnes  <larsbj@lyx.org>
7246
7247         * WorkArea, Painter, LyXScreen: Fixed the crash that occured on
7248         resize due to wrong pixmap beeing used. Also took the opurtunity
7249         to make the LyXScreen stateless on regard to WorkArea and some
7250         general cleanup in the same files.
7251         
7252 2000-02-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
7253
7254         * src/Makefile.am: add missing direction.h
7255
7256         * src/PainterBase.h: made the width functions const.
7257         
7258         * lib/kbd/iso8859-1.cdef: fix a couple of entries and define some
7259         missing ones.
7260         
7261         * src/insets/insetcommand.C (draw): draw Editable as buttons.
7262
7263         * src/insets/insetlatexaccent.C (draw): make the accents draw
7264         better, at present this will only work well with iso8859-1.
7265         
7266         * several files: remove the old drawing code, now we use the new
7267         painter only.
7268
7269         * several files: remove support for mono_video, reverse_video and
7270         fast selection.
7271
7272 2000-02-17  Juergen Vigna  <jug@sad.it>
7273
7274         * src/mathed/math_cursor.[Ch] (SelGetArea): Changed form int * to
7275         int ** as we have to return the pointer, otherwise we have only
7276         NULL pointers in the returning function.
7277
7278 2000-02-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7279
7280         * src/LaTeX.C (operator()): quote file name when running latex.
7281
7282 2000-02-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
7283
7284         * src/toolbar.C (set): use fl_set_object_helper for the tooltop
7285         (bubble tip), this removes our special handling of this.
7286
7287         * Remove all code that is unused now that we have the new
7288         workarea. (Code that are not active when NEW_WA is defined.)
7289
7290         * Make the uses of XSync not conditionalized on define USE_XSYNC.
7291         
7292 2000-02-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7293
7294         * src/lyxfunc.C (Dispatch): fix LFUN_LAYOUT when giving a
7295         nonexisting layout; correctly redirect obsoleted layouts.
7296
7297         * lib/lyxrc.example: document \view_dvi_paper_option
7298
7299         * src/lyxrc.[Ch]: add support for the \view_dvi_paper_option
7300         variable. 
7301
7302         * src/lyx_cb.C (RunScript): handle $$FName for command names. 
7303         (PreviewDVI): handle the view_dvi_paper_option variable.
7304         [Both from Roland Krause]
7305
7306 2000-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
7307
7308         * src/Painter.C (text(int,int,char,LyXFont)): call text(int, int,
7309         char const *, int, LyXFont)
7310         (text(int, int, string, LyXFont)): ditto 
7311
7312         * src/text.C (InsertCharInTable): attempt to fix the double-space
7313         feature in tables too.
7314         (BackspaceInTable): ditto.
7315         (GetVisibleRow): make bottom pagebreak line be a onoff line.
7316
7317 2000-02-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
7318
7319         * src/text2.C (owner): only complain if owner_ is set and bv != 0
7320
7321         * src/BufferView.C (resizeCurrentBuffer): set the owner of the
7322         newly found text in textcache to this.
7323         (buffer): set the owner of the text put into the textcache to 0
7324
7325         * src/insets/figinset.C (draw): fixed the drawing of figures with
7326         the new Painter.
7327
7328         * src/text.C src/mathed/math_cursor.C: nailed and fixed the
7329         drawing of mathframe, hfills, protected space, table lines. I have
7330         now no outstanding drawing problems with the new Painter code. 
7331
7332 2000-02-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7333
7334         * src/PainterBase.C (ellipse, circle): do not specify the default
7335         arguments. 
7336
7337         * src/LColor.h: add using directive.
7338
7339         * src/Painter.[Ch]: change return type of methods from Painter& to
7340         PainterBase&. Add a using directive.
7341
7342         * src/WorkArea.C: wrap xforms callbacks in C functions
7343         C_WorkArea_xxx. 
7344
7345         * lib/layouts/foils.layout: font fix and simplifications from Carl
7346         Ollivier-Gooch.
7347
7348 2000-02-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
7349
7350         * a lot of files: The Painter, LColor and WorkArea from the old
7351         devel branch has been ported to lyx-devel. Some new files and a
7352         lot of #ifdeffed code. The new workarea is enabled by default, but
7353         if you want to test the new Painter and LColor you have to compile
7354         with USE_PAINTER defined (do this in config.h f.ex.) There are
7355         still some rought edges, and I'd like some help to clear those
7356         out. It looks stable (loads and displays the Userguide very well).
7357         
7358
7359 2000-02-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7360
7361         * src/buffer.C (pop_tag): revert to the previous implementation
7362         (use a global variable for both loops).
7363
7364         * lib/kbd/iso8859-1.cdef: fix definition for \"{e}.
7365
7366         * src/lyxrc.C (LyXRC): change slightly default date format.
7367
7368         * src/paragraph.C (TeXOnePar): Generate a correct latex file when
7369         there is an English text with a footnote that starts with a Hebrew
7370         paragraph, or vice versa.
7371         (TeXFootnote): ditto.
7372
7373         * src/text.C (LeftMargin): allow for negative values for
7374         parindent. Thanks to Philip Lehman <lehman@gmx.net> for testing
7375         this out.
7376
7377         * src/lyx_gui.C (create_forms): add iso88595 as a possible choice
7378         for input encoding (cyrillic)
7379
7380 2000-02-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7381
7382         * src/lyx_gui.C (create_forms): make combo box taller (from Dekel
7383         Tsur). 
7384
7385         * src/toolbar.C (set): ditto
7386         * src/insets/insetbib.C (create_form_citation_form): ditto
7387
7388         * lib/CREDITS: added Dekel Tsur.
7389
7390         * lib/kbd/hebrew.kmap, lib/kbd/null.kmap,
7391         lib/layouts/heb-article.layout, lib/layouts/heb-letter.layout: new
7392         hebrew supports files from Dekel Tsur.
7393         
7394         * lib/kbd/iso8859-8.cdef: new file, from Tzafrir Cohen
7395         <tzafrir@technion.ac.il> 
7396
7397         * src/lyxrc.C: put \date_insert_format at the right place.
7398
7399         * src/buffer.C (makeLaTeXFile): fix the handling of
7400         BufferParams::sides when writing out latex files.
7401
7402         * src/BufferView2.C: add a "using" directive.
7403
7404         * src/support/lyxsum.C (sum): when we use lyxstring,
7405         ostringstream::str needs an additional .c_str().
7406
7407 2000-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
7408
7409         * src/support/filetools.C (ChangeExtension): patch from Etienne
7410         applied.
7411
7412         * src/TextCache.C (show): remove const_cast and make second
7413         parameter non-const LyXText *.
7414
7415         * src/TextCache.h: use non const LyXText in show.
7416
7417         * src/paragraph.C (SimpleTeXSpecialChars): patch to make urls work
7418         with hebrew.
7419
7420 2000-02-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
7421
7422         * src/support/lyxsum.C: rework to be more flexible.
7423         
7424         * several places: don't check if a pointer is 0 if you are going
7425         to delete it.
7426
7427         * src/text.C: remove some dead code.
7428
7429         * src/insets/figinset.C: remove some dead code
7430         
7431         * src/buffer.C: move the BufferView funcs to BufferView2.C
7432         remove all support for insetlatexdel
7433         remove support for oldpapersize stuff
7434         made some member funcs const
7435
7436         * src/kbmap.C: use a std::list to store the bindings in.
7437         
7438         * src/BufferView2.C: new file
7439
7440         * src/kbsequence.[Ch]: new files
7441         
7442         * src/LyXAction.C + others: remove all trace of buffer-previous
7443         
7444         * src/Bullet.[Ch]: moved ITEMIZE_DEFAULTS inside Bullet.C so that we
7445         only have one copy in the binary of this table.
7446         
7447         * hebrew patch: moved some functions from LyXText to more
7448         appropriate places. (LyXParagraph, BufferParams, LyXFont)
7449         
7450         * several files: remove support for XForms older than 0.88
7451         whitespace changes.
7452         remove some #if 0 #endif code
7453         
7454         * src/TextCache.[Ch]: new file. Holds the textcache.
7455
7456         * src/BufferView.C: changes to use the new TextCache interface.
7457         (waitForX): remove the now unused code.
7458         
7459         * src/BackStack.h: remove some commented code
7460
7461         * lib/bind/emacs.bind: remove binding for buffer-previous
7462
7463 2000-02-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
7464
7465         * applied the hebrew patch.
7466
7467         * src/lyxrow.h: make sure that all Row variables are initialized.
7468
7469         * src/text2.C (TextHandleUndo): comment out a delete, this might
7470         introduce a memory leak, but should also help us to not try to
7471         read freed memory. We need to look at this one.
7472
7473         * src/paragraph.C (SimpleDocBookOneTablePar): initialize column to 0
7474         (LyXParagraph): initalize footnotekind.
7475
7476         * src/lyxrc.C (output): added case RC_DATE_INSERT_FORMAT. Jug
7477         forgot this when applying the patch. Please heed the warnings.
7478
7479         * src/BufferView.C (buffer): a fix for the buffer-reload problem
7480         (aka. reformat problem)
7481
7482         * src/bufferlist.C (exists): made const, and use const_iterator
7483         (isLoaded): new func.
7484         (release): use std::find to find the correct buffer.
7485
7486         * src/bufferlist.h: made getState a const func.
7487         made empty a const func.
7488         made exists a const func.
7489         new func: isLoaded
7490
7491 2000-02-01  Juergen Vigna  <jug@sad.it>
7492
7493         * src/lyxfunc.C lyxrc.C: changed from insert-date to date-insert
7494
7495         * po/it.po: updated a bit the italian po file and also changed the
7496         'file nuovo' for newfile to 'filenuovo' without a space, this did
7497         annoy me a lot :)
7498         
7499         * src/lyxrc.C (LyXRC): added support for a default insert_date_format
7500         for the new insert_date command.
7501
7502         * src/lyxfunc.C (Dispatch): added support for a insert_date function
7503         from jdblair, to insert a date into the current text conforming to
7504         a strftime format (for now only considering the locale-set and not
7505         the document-language).
7506
7507 2000-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7508
7509         * src/lyxfont.C (textWidth): hopefully better fix for the Array
7510         Bounds Read error seen by purify. The problem was that islower is
7511         a macros which takes an unsigned char and uses it as an index for
7512         in array of characters properties (and is thus subject to the
7513         above error).
7514         (drawText): ditto.
7515
7516         * src/lyx_cb.C (UpdateLayoutDocument): use a switch to set
7517         correctly the paper sides radio buttons.
7518         (UpdateDocumentButtons): ditto.
7519
7520 2000-01-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
7521
7522         * src/kbmap.C (getsym + others): change to return unsigned int,
7523         returning a long can give problems on 64 bit systems. (I assume
7524         that int is 32bit on 64bit systems)
7525
7526 2000-01-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7527
7528         * src/lyxfunc.C (processKeyEvent): fix a the buffer returned by
7529         LyXLookupString to be zero-terminated. Really fixes problems seen
7530         by purify, I think.
7531
7532 2000-01-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
7533
7534         * src/lyxfunc.C (processKeyEvent): "fix" so that we never try to
7535         write a (char*)0 to the lyxerr stream.
7536
7537         * src/lastfiles.C: move algorithm before the using statemets.
7538
7539 2000-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7540
7541         * src/lastfiles.C: move using directives in global scope (egcs 1.x
7542         complains otherwise).
7543         * src/table.C: ditto
7544
7545         * lib/reLyX/reLyX.in: use variable @LYX_DIR@ as built-in data
7546         directory. 
7547
7548         * lib/reLyX/configure.in (LYX_DIR): re-introduce this variable
7549         that I removed earlier... It is really needed.
7550
7551         * lib/examples/multicol.lyx: new file, splitted from Extended.lyx. 
7552
7553 2000-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7554
7555         * INSTALL: update xforms home page URL.
7556
7557         * lib/configure.m4: fix a bug with unreadable layout files.
7558
7559         * src/table.C (calculate_width_of_column): add "using std::max"
7560         directive. 
7561
7562 2000-01-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
7563
7564         * several files: marked several lines with "DEL LINE", this is
7565         lines that can be deleted without changing anything.
7566         if (<ptr>) // DEL LINE  /* this line is _never_ needed. Delete
7567                                    checks this anyway */
7568                 delete <ptr>
7569
7570         * src/insets/insetlatexaccent.C: Changed some debugs to Debug::KEY
7571
7572         * src/DepTable.C (update): add a "+" at the end when the checksum
7573         is different. (debugging string only)
7574
7575         * src/paragraph.C (ReturnNextInsetPointer): fix bug that caused
7576         the next inset to not be displayed. This should also fix the list
7577         of labels in the "Insert Crossreference" dialog.
7578
7579 2000-01-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
7580
7581         * src/support/LSubstring.C (LSubstring): set pos to string::npos
7582         when regex was not found.
7583
7584         * src/support/lstrings.C (lowercase): use handcoded transform always.
7585         (uppercase): ditto
7586
7587         * src/text.C (Delete): fixed the crash. cursor.par->prev and
7588         old_cursor.par->prev could be 0.
7589
7590         * several files: changed post inc/dec to pre inc/dec
7591         
7592         * src/lastfiles.C (writeFile): use ostream_iterator and copy to
7593         write the lastfiles to file.
7594
7595         * src/BufferView.C (buffer): only show TextCache info when debugging
7596         (buffer): ditto
7597         (resizeCurrentBuffer): ditto
7598         (workAreaExpose): ditto
7599
7600         * lib/kbd/iso8859-7.cdef: changed to new quoting scheme
7601
7602         * lib/kbd/iso8859-2.cdef: changed to new quoting scheme
7603
7604         * src/insets/insetlatexaccent.C (Draw): make the display of UMLAUT
7605         a bit better by removing the special case for \i and \j.
7606
7607 2000-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7608
7609         * src/lyx_main.C (easyParse): remove test for bad comand line
7610         options, since this broke all xforms-related parsing.
7611
7612         * src/kbmap.C (getsym): set return type to unsigned long, as
7613         declared in header. On an alpha, long is _not_ the same as int.
7614
7615         * src/support/LOstream.h: add a "using std::flush;"
7616
7617         * src/insets/figinset.C: ditto.
7618
7619 2000-01-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
7620
7621         * src/bufferlist.C (write): use blinding fast file copy instead of
7622         "a char at a time", now we are doing it the C++ way.
7623
7624         * src/insets/figinset.C: get rid of struct pidwaitpit, use a
7625         std::list<int> instead.
7626         (addpidwait): reflect move to std::list<int>
7627         (sigchldchecker): ditto
7628
7629         * src/bmtable.c (fl_set_bmtable_file): have arguments in the X r5
7630         version also. 
7631
7632         * src/paragraph.C (FirstPhysicalPar): remove assert and comment
7633         that obviously was wrong...
7634
7635         * src/lyxfont.C (textWidth): have c as char c[2] instead of char
7636         c, this avoids warnings with purify and islower.
7637
7638         * src/insets/figinset.C: rename struct queue to struct
7639         queue_element and rewrite to use a std::queue. gsqueue is now a
7640         std::queue<queue_element>
7641         (runqueue): reflect move to std::queue
7642         (addwait): ditto
7643
7644         * src/support/lstrings.h (tostr): specialize for bool, otherwise
7645         we would get "1" "0" instead of "true" "false. Also make the tostr
7646         functions inline.
7647
7648 2000-01-21  Juergen Vigna  <jug@sad.it>
7649
7650         * src/buffer.C (writeFileAscii): Disabled code for special groff
7651         handling of tabulars till I fix this in table.C
7652
7653 2000-01-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7654
7655         * src/support/mkdir.C (mkdir): change second argument of mkdir to
7656         unsigned long int.
7657         * src/support/lyxlib.h: ditto.
7658
7659 2000-01-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
7660
7661         * src/insets/insetlatexaccent.C (Draw): make accents on top of 'i'
7662         and 'j' look better. This might fix the "macron" bug that has been
7663         observed.
7664
7665         * src/support/lstrings.[Ch] (tostr): reimplement all the tostr
7666         functions as one template function. Delete the old versions.
7667
7668         * src/support/lyxsum.C: move using std::ifstream inside
7669         MODERN_STL_STREAMS
7670
7671         * src/support/Makefile.am (libsupport_la_SOURCES): added mkdir.C
7672         and putenv.C
7673
7674         * src/mathed/formulamacro.C: delete #include "bufferlist.h" never used
7675
7676         * src/mathed/formula.C: delete #include "bufferlist.h" never used
7677
7678         * src/insets/figinset.C (InitFigures): use new instead of malloc
7679         to allocate memory for figures and bitmaps.
7680         (DoneFigures): use delete[] instead of free to deallocate memory
7681         for figures and bitmaps.
7682         (runqueue): use new to allocate 
7683         (getfigdata): use new/delete[] instead of malloc/free
7684         (RegisterFigure): ditto
7685
7686         * some files: moved some declarations closer to first use, small
7687         whitespace changes use preincrement instead of postincrement where
7688         it does not make a difference.
7689         
7690         * src/kbmap.[Ch]: delete code according to define NO_HASH, it is a
7691         step on the way to use stl::containers for key maps. 
7692
7693         * src/bufferlist.h: add a typedef for const_iterator and const
7694         versions of begin and end.
7695
7696         * src/bufferlist.[Ch]: change name of member variable _state to
7697         state_. (avoid reserved names)
7698         (makePup): removed
7699         (getFileNames): returns the filenames of the buffers in a vector.
7700
7701         * configure.in (ALL_LINGUAS): added ro
7702
7703         * src/support/putenv.C: new file
7704
7705         * src/support/mkdir.C: new file
7706
7707 2000-01-20  Allan Rae <rae@lyx.org>
7708
7709         * lib/layouts/IEEEtran.layout: Added several theorem environments
7710
7711         * lib/templates/IEEEtran.lyx: Example theorem environments and a
7712         couple of minor additions.
7713
7714         * lib/doc/LaTeXConfig.lyx.in:  Use URL insets for ftp sites 
7715         (except for those in footnotes of course)
7716
7717 2000-01-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
7718
7719         * src/lyxlookup.C (CloseLyXLookup): set xic=0; after destruction. 
7720
7721         * src/mathed/math_utils.C (MathedLookupBOP): rewrite to use
7722         std::sort and std::lower_bound instead of qsort and handwritten
7723         binarysearch.
7724         (struct compara): struct that holds the functors used by std::sort
7725         and std::lower_bound in MathedLookupBOP.
7726
7727 2000-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7728
7729         * src/support/LAssert.h: do not do partial specialization. We do
7730         not really need it.
7731
7732         * src/support/lyxlib.h: note that lyx::getUserName() and
7733         lyx::date() are not in use right now. Should these be suppressed?
7734
7735         * src/buffer.C (makeLaTeXFile): we do not need the user name here.
7736         (makeLinuxDocFile): do not put date and user name in linuxdoc
7737         headers. 
7738
7739         * src/support/lyxlib.h (kill): change first argument to long int,
7740         since that's what solaris uses.
7741
7742         * src/support/kill.C (kill): fix declaration to match prototype.
7743
7744         * config/lyxinclude.m4 (LYX_CXX_NAMESPACES): fix the macro to
7745         actually check whether namespaces are supported. This is not what
7746         it used to do.
7747
7748         * src/support/lyxsum.C: add a using directive.
7749
7750 2000-01-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
7751
7752         * src/support/kill.C: if we have namespace support we don't have
7753         to include lyxlib.h.
7754
7755         * src/support/lyxlib.h: use namespace lyx if supported.
7756
7757 2000-01-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
7758
7759         * src/support/date.C: new file
7760
7761         * src/support/chdir.C: new file
7762
7763         * src/support/getUserName.C: new file
7764
7765         * src/support/getcwd.C: new file
7766
7767         * src/support/abort.C: new file
7768
7769         * src/support/kill.C: new file
7770
7771         * src/support/lyxlib.h: moved all the functions in this file
7772         insede struct lyx. Added also kill and abort to this struct. This
7773         is a way to avoid the "kill is not defined in <csignal>", we make
7774         C++ wrappers for functions that are not ANSI C or ANSI C++.
7775
7776         * src/support/lyxsum.C (sum): use #ifdef MODERN_STL_STREAMS
7777         instead of #if __GLIBCPP__. Since lyxsum is now put inside struct
7778         lyx it has been renamed to sum.
7779
7780 2000-01-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7781
7782         * src/text.C: add using directives for std::min and std::max.
7783
7784 2000-01-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7785
7786         * src/texrow.C (getIdFromRow): actually return something useful in
7787         id and pos. Hopefully fixes the bug with positionning of errorbox
7788         insets. 
7789
7790         * src/lyx_main.C (easyParse): output an error and exit if an
7791         incorrect command line option has been given.
7792
7793         * src/spellchecker.C (ispell_check_word): document a memory leak.
7794
7795         * src/bufferlist.C (write): fix mismatched allocation/deletion,
7796         where a "struct utimbuf" is allocated with "new" and deleted with
7797         "delete[]". 
7798
7799 2000-01-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
7800
7801         * src/text2.C (CutSelection): don't delete double spaces.
7802         (PasteSelection): ditto
7803         (CopySelection): ditto
7804         
7805         * src/text.C (Backspace): don't delete double spaces.
7806
7807         * src/lyxlex.C (next): fix a bug that were only present with
7808         conformant std::istream::get to read comment lines, use
7809         std::istream::getline instead. This seems to fix the problem.
7810
7811 2000-01-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
7812
7813         * src/text2.C (DeleteEmptyParagraphMechanism): fix for the "not
7814         allowed to insert space before space" editing problem. Please read
7815         commends at the beginning of the function. Comments about usage
7816         are very welcome.
7817
7818         * src/text.C (InsertChar): fix for the "not allowed to insert
7819         space before space" editing problem.
7820
7821         * src/text2.C (DeleteEmptyParagraphMechanism): when
7822         IsEmptyTableRow can only return false this last "else if" will
7823         always be a no-op. Commented out.
7824
7825         * src/text.C (RedoParagraph): As far as I can understand tmp
7826         cursor is not really needed.
7827
7828         * src/lyxtext.[Ch] (IsEmptyTableCell): commented out. As used at
7829         present it could only return false anyway. 
7830         (several functions): Did something not so smart...added a const
7831         specifier on a lot of methods.
7832         
7833         * src/paragraph.C (BreakParagraph): removed the tmp->text.reserve
7834         and add a tmp->text.resize. The LyXParagraph constructor does the
7835         resize for us.
7836         (BreakParagraphConservative): ditto
7837
7838         * src/support/path.h (Path): add a define so that the wrong usage
7839         "Path("/tmp") will be flagged as a compilation error:
7840         "`unnamed_Path' undeclared (first use this function)"
7841
7842 2000-01-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7843
7844         * config/lyxinclude.m4 (LYX_FUNC_PUTENV_ARGTYPE): fix the macro,
7845         which was bogus for several reasons.
7846
7847         * src/LaTeX.C (scanAux): fix the regular expression used to scan
7848         .aux files. 
7849         (runBibTeX): ditto.
7850
7851         * autogen.sh: do not use "type -path" (what's that anyway?).
7852
7853         * src/support/filetools.C (findtexfile): remove extraneous space
7854         which caused a kpsewhich warning (at least with kpathsea version
7855         3.0). 
7856
7857 2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
7858
7859         * src/mathed/Makefile.am (noinst_LTLIBRARIES): use .la
7860
7861         * src/insets/Makefile.am (noinst_LTLIBRARIES): use .la
7862
7863         * src/Makefile.am (lyx_DEPENDENCIES): switch back to .la libs
7864
7865 2000-01-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7866
7867         * src/paragraph.C (BreakParagraph): do not reserve space on text
7868         if we don't need to (otherwise, if pos_end < pos, we end up
7869         reserving huge amounts of memory due to bad unsigned karma).
7870         (BreakParagraphConservative): ditto, although I have not seen
7871         evidence the bug can happen here.
7872
7873         * src/lyxparagraph.h: add a using std::list.
7874
7875 2000-01-11  Juergen Vigna  <jug@sad.it>
7876
7877         * src/menus.C (MenuDocu): output an Alert if the documentation-file
7878         could not be found.
7879
7880 2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
7881
7882         * src/vc-backend.C (doVCCommand): change to be static and take one
7883         more parameter: the path to chdir too be fore executing the command.
7884         (retrive): new function equiv to "co -r"
7885
7886         * src/bufferlist.C (loadLyXFile): implement the missing parts if
7887         file_not_found_hook is true.
7888
7889         * src/lyxvc.C (file_not_found_hook): implement file_not_found_hook.
7890
7891         * src/support/filetools.C (IsFileWriteable): use FileInfo to check
7892         if a file is readwrite,readonly...anything else.
7893
7894 2000-01-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
7895
7896         * src/lyx_cb.C (MakeLaTeXOutput): name change from MakeDVIOutput
7897         (CreatePostscript): name change from MenuRunDVIPS (or something)
7898         (PreviewPostscript): name change from MenuPreviewPS
7899         (PreviewDVI): name change from MenuPreviewDVI
7900
7901         * lib/lyxrc.example: added \pdflatex_command, \pdf_mode,
7902         \view_pdf_command., \pdf_to_ps_command
7903
7904         * lib/configure.m4: added search for PDF viewer, and search for
7905         PDF to PS converter. 
7906         (lyxrc.defaults output): add \pdflatex_command,
7907         \view_pdf_command and \pdf_to_ps_command.
7908
7909         * src/lyx_cb.C (MenuPreviewDVI): renamed from MenuPreview.
7910
7911         * src/bufferlist.C (write): we don't use blocksize for anything so
7912         I removed it.
7913
7914 2000-01-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7915
7916         * src/support/block.h: disable operator T* (), since it causes
7917         problems with both compilers I tried. See comments in the file.
7918
7919         * lib/reLyX/configure.in: do not define LYX_DIR. support flag
7920         --with-lyxname. 
7921
7922         * lib/reLyX/reLyX.in: change LYX_DIR to pkgdatadir; change env.
7923         variable LYX_DIR_10x to LYX_DIR_11x.
7924
7925         * src/Makefile.am: replace variable LYX_DIR with pkgdatadir.
7926
7927         * INSTALL: document --with-lyxname.
7928         * NEWS: ditto.
7929
7930         * configure.in: new configure flag --with-lyxname which allows to
7931         choose the name under which lyx is installed. Default is "lyx", of
7932         course. It used to be possible to do this with --program-suffix,
7933         but the later has in fact a different meaning for autoconf.
7934
7935         * src/support/lstrings.h (lstrchr): reformat a bit.
7936
7937         * src/lyxlex.h: include LIstream.h, for Sun CC this time.
7938         * src/mathed/math_defs.h: ditto.
7939
7940 2000-01-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
7941
7942         * src/lyxrc.[Ch]: New tag and variable "\make_backup". Defaults to
7943         true, decides if we create a backup file or not when saving. New
7944         tag and variable \pdf_mode, defaults to false. New tag and
7945         variable \pdflatex_command, defaults to pdflatex. New tag and
7946         variable \view_pdf_command, defaults to xpdf. New tag and variable
7947         \pdf_to_ps_command, defaults to pdf2ps.
7948
7949 2000-01-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
7950
7951         * src/bufferlist.C (close): don't call insetUnlock if the buffer
7952         does not have a BufferView.
7953         (unlockInset): ditto + don't access the_locking_inset if the
7954         buffer does not have a BufferView.
7955
7956         * src/LyXView.C (KeyPressMask_raw_callback): add a XSync in
7957         certain circumstances so that we don't continue a keyboard
7958         operation long after the key was released. Try f.ex. to load a
7959         large document, press PageDown for some seconds and then release
7960         it. Before this change the document would contine to scroll for
7961         some time, with this change it stops imidiatly.
7962
7963         * src/support/block.h: don't allocate more space than needed. As
7964         long as we don't try to write to the arr[x] in a array_type arr[x]
7965         it is perfectly ok. (if you write to it you might segfault).
7966         added operator value_type*() so that is possible to pass the array
7967         to functions expecting a C-pointer.
7968
7969         * lib/Makefile.am (dist-hook): don't fail completely if unable to
7970         cvs.
7971
7972         * intl/*: updated to gettext 0.10.35, tried to add our own
7973         required modifications. Please verify.
7974
7975         * po/*: updated to gettext 0.10.35, tried to add our own required
7976         modifications. Please verify.
7977         
7978         * src/support/lstrings.C (tostr): go at fixing the problem with
7979         cxx and stringstream. When stringstream is used return
7980         oss.str().c_str() so that problems with lyxstring and basic_string
7981         are avoided. Note that the best solution would be for cxx to use
7982         basic_string all the way, but it is not conformant yet. (it seems)
7983
7984         * src/lyx_cb.C + other files: moved several global functions to
7985         class BufferView, some have been moved to BufferView.[Ch] others
7986         are still located in lyx_cb.C. Code changes because of this. (part
7987         of "get rid of current_view project".)
7988
7989         * src/buffer.C + other files: moved several Buffer functions to
7990         class BufferView, the functions are still present in buffer.C.
7991         Code changes because of this.
7992
7993         * config/lcmessage.m4: updated to most recent. used when creating
7994         acinclude.m4.
7995
7996         * config/progtest.m4: updated to most recent. used when creating
7997         acinclude.m4.
7998         
7999         * config/gettext.m4: updated to most recent. applied patch for
8000         tmplinguas.
8001
8002         * config/gettext.m4.patch: new file that shows what changes we
8003         have done to the local copy of gettext.m4.
8004
8005         * config/libtool.m4: new file, used in creation of acinclude.m4
8006
8007         * config/lyxinclude.m4: new file, this is the lyx created m4
8008         macros, used in making acinclude.m4.
8009         
8010         * autogen.sh: GNU m4 discovered as a separate task not as part of
8011         the lib/configure creation. 
8012         Generate acinlucde from files in config. Actually cat
8013         lyxinclude.m4, libtool.m4 and gettext.m4 together. This makes it
8014         easier to upgrade .m4 files that really are external.
8015
8016         * src/Spacing.h: moved using std::istringstream to right after
8017         <sstream>. This should fix the problem seen with some compilers.
8018
8019 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
8020
8021         * src/lyx_cb.C: began some work to remove the dependency a lot of
8022         functions have on BufferView::text, even if not really needed.
8023         (GetCurrentTextClass): removed this func, it only hid the
8024         current_view. 
8025
8026         * src/Makefile.am (lyx_DEPENDENCIES): use support/libsupport.la I
8027         forgot this in last commit.
8028
8029         * src/Bullet.C (bulletEntry): use static char const *[] for the
8030         tables, becuase of this the return arg had to change to string.
8031         (bulletSize): ditto
8032         (~Bullet): removed unneeded destructor
8033
8034         * src/BufferView.C (beforeChange): moved from lyx_cb.C
8035         (insetSleep): moved from Buffer
8036         (insetWakeup): moved from Buffer
8037         (insetUnlock): moved from Buffer
8038
8039         * buffer.[Ch], BufferView.[Ch] + others: moved the_locking_inset
8040         from Buffer to BufferView.
8041         
8042         * acinclude.m4: include libtool.m4 from libtool 1.3.4.
8043
8044         * config/ltmain.sh: updated to version 1.3.4 of libtool
8045
8046         * config/ltconfig: updated to version 1.3.4 of libtool
8047
8048 2000-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8049
8050
8051         * src/buffer.C (pop_tag): fix a dubious for() loop initialization.
8052         Did I get that right?
8053
8054         * src/lyxlex.h: add a "using" directive or two.
8055         * src/Spacing.h: ditto.
8056         * src/insets/figinset.C: ditto.
8057         * src/support/filetools.C: ditto.
8058         * src/support/lstrings.C: ditto.
8059         * src/BufferView.C: ditto.
8060         * src/bufferlist.C: ditto.
8061         * src/lyx_cb.C: ditto.
8062         * src/lyxlex.C: ditto.
8063
8064         * NEWS: add some changes for 1.1.4.
8065         
8066 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
8067
8068         * src/BufferView.C: first go at a TextCache to speed up switching
8069         between documents.
8070
8071 2000-01-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8072
8073         * lib/examples/ItemizeBullets.lyx: update from Tino Meinen. 
8074         * lib/examples/nl_voorbeeld_ruw.lyx: ditto.
8075         * lib/examples/nl_voorbeeld_verlyxt.lyx: ditto.
8076         * lib/examples/nl_opsommingstekens.lyx: new translation from Tino
8077         Meinen.
8078         
8079         * src/mathed/math_defs.h (MathedRowSt): make sure that all
8080         members of the struct are correctly initialized to 0 (detected by
8081         purify) 
8082         * src/lyxrc.C (LyXRC): ditto for print_adapt_output.
8083         * src/insets/figinset.C (InsetFig): ditto for pswid and pshgh.
8084
8085         * src/insets/figinset.C (sigchldchecker): use "delete" to free a
8086         pidwait, since it was allocated with "new". This was potentially
8087         very bad. Thanks to Michael Schmitt for running purify for us.
8088
8089
8090 2000-01-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8091
8092         * src/lyx_gui_misc.C: add a 'using std::make_pair;' statement.
8093
8094         * src/lyx_gui_misc.h: add a 'using std::pair;' statement.
8095
8096 1999-12-30  Allan Rae  <rae@lyx.org>
8097
8098         * lib/templates/IEEEtran.lyx: minor change
8099
8100         * src/lyxvc.C (registrer, checkIn), src/lyx_cb.C (MenuInsertLabel),
8101         src/mathed/formula.C (LocalDispatch): askForText changes
8102
8103         * src/lyx_gui_misc.[Ch] (askForText): now returns a bool also so we 
8104         know when a user has cancelled input. Fixes annoying problems with
8105         inserting labels and version control.
8106
8107 1999-12-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
8108
8109         * src/support/lstrings.C (tostr): rewritten to use strstream and
8110         stringstream
8111
8112 1999-12-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
8113
8114         * src/support/filetools.C (IsFileWriteable): use fstream to check
8115         (IsDirWriteable): use fileinfo to check
8116
8117         * src/support/filetools.h (FilePtr): whole class deleted
8118
8119         * src/insets/figinset.C (GetPSSizes): rewritten to use ifstream.
8120
8121         * src/lyxparagraph.h (readSimpleWholeFile): make arg istream
8122
8123         * src/lyx_cb.C (InsertAsciiFile): use ifstream instead of FilePtr
8124
8125         * src/bufferlist.C (write): use ifstream and ofstream instead of
8126         FILE*
8127
8128         * src/Spacing.h: use istrstream instead of sscanf
8129
8130         * src/mathed/math_defs.h: change first arg to istream from FILE*
8131
8132         * src/buffer.C (insertLyXFile): use ifstream instead of FilePtr
8133
8134         * src/mathed/math_parser.C: have yyis to be an istream 
8135         (LexGetArg): use istream (yyis)
8136         (yylex): ditto
8137         (mathed_parse): ditto
8138         (mathed_parser_file): first arg istream instead of FILE*, set yyis
8139
8140         * src/mathed/formula.C (Read): rewritten to use istream
8141
8142         * src/mathed/formulamacro.C (Read): rewritten to use istream
8143
8144         * src/lyxlex.h (~LyXLex): deleted desturctor 
8145         (getStream): new function, returns an istream
8146         (getFile): deleted funtion
8147         (IsOK): return is.good();
8148
8149         * src/lyxlex.C (LyXLex): delete file and owns_file
8150         (setFile): open an filebuf and assign that to a istream instead of
8151         using FILE*
8152         (setStream): new function, takes an istream as arg. 
8153         (setFile): deleted function
8154         (EatLine): rewritten us use istream instead of FILE*
8155         (next): ditto
8156         (nextToken): ditto
8157
8158         * src/table.C (LyXTable): use istream instead of FILE*
8159         (Read): rewritten to take an istream instead of FILE*
8160
8161 1999-12-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8162
8163         * src/buffer.C (Dispatch): remove an extraneous break statement.
8164
8165         * src/support/filetools.C (QuoteName): change to do simple
8166         'quoting'. More work is necessary. Also changed to do nothing
8167         under emx (needs fix too).
8168         (Putenv): Cast the argument of putenv() with PUTENV_TYPE_ARG.
8169
8170         * acinclude.m4 (STL_STRING_FWD_H_LOCATION): add the comment for
8171         config.h.in to the AC_DEFINE_UNQUOTED() call.
8172         (LYX_FUNC_PUTENV_ARGTYPE): new macro. Checks whether putenv()
8173         needs char * as argument (because Solaris 7 declares it like
8174         that). 
8175
8176         * acconfig.h: remove placeholder for STL_STRING_FWD_H_LOCATION;
8177         remove definition of BZERO.
8178
8179 1999-12-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
8180
8181         * src/support/LRegex.C: include <regex.h> if HAVE_REGEX_H is
8182         defined, "lyxregex.h" if not.
8183
8184         * src/support/Makefile.am (noinst_LTLIBRARIES): changed from
8185         pkglib_ to noinst_
8186         (REGEX): new variable that is set to regex.c lyxregex.h when
8187         AM_CONDITIONAL USE_REGEX is set.
8188         (libsupport_la_SOURCES): add $(REGEX)
8189
8190         * src/mathed/Makefile.am (noinst_LTLIBRARIES): changed from
8191         pkglib_ to noinst_
8192
8193         * src/insets/Makefile.am (noinst_LTLIBRARIES): changed from
8194         pkglib_ to noinst_
8195
8196         * configure.in: add call to LYX_REGEX 
8197
8198         * acinclude.m4 (LYX_REGEX): checks if we need to use the included
8199         regex or not. Uses a a AM_CONDITIONAL to decide what to compile. 
8200
8201 1999-12-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8202
8203         * lib/bind/fi_menus.bind: new file, from
8204         pauli.virtanen@saunalahti.fi. 
8205
8206         * src/buffer.C (getBibkeyList): pass the parameter delim to
8207         InsetInclude::getKeys and InsetBibtex::getKeys.
8208
8209         * src/insets/insetinclude.[Ch] (getKeys): add parameter delim, which
8210         is passed to Buffer::getBibkeyList
8211         
8212         * src/insets/insetbib.[Ch] (getKeys): add parameter delim, and use it
8213         instead of the hardcoded comma.
8214
8215         * src/insets/insetbib.C (getKeys): make sure that there are not
8216         leading blanks in bibtex keys. Normal latex does not care, but
8217         harvard.sty seems to dislike blanks at the beginning of citation
8218         keys. In particular, the retturn value of the function is
8219
8220         * INSTALL: make it clear that libstdc++ is needed and that gcc
8221         2.7.x probably does not work.
8222
8223         * src/support/filetools.C (findtexfile): make debug message go to
8224         the LATEX channel
8225         * src/insets/insetbib.C (getKeys): ditto
8226
8227         * src/debug.C (showTags): make sure that the output is correctly
8228         aligned. 
8229
8230         * configure.in: add a comment for TWO_COLOR_ICON define.
8231
8232         * acconfig.h: remove all the entries that already defined in
8233         configure.in or acinclude.m4.
8234
8235         * src/buffer.C (makeLaTeXFile): headers of latex file also changed
8236         to avoid user name, date and copyright.
8237
8238 1999-12-21  Juergen Vigna  <jug@sad.it>
8239
8240         * src/table.C (Read): Now read bogus row format informations
8241                 if the format is < 5 so that afterwards the table can
8242                 be read by lyx but without any format-info. Fixed the
8243                 crash we experienced when not doing this.
8244
8245 1999-12-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
8246
8247         * src/text2.C (RedoHeightOfParagraph): rename arg cursor -> cur
8248         (RedoDrawingOfParagraph): ditto
8249         (RedoParagraphs): ditto
8250         (RemoveTableRow): ditto
8251
8252         * src/text.C (Fill): rename arg paperwidth -> paper_width
8253
8254         * src/buffer.C (insertLyXFile): rename var filename -> fname
8255         (writeFile): rename arg filename -> fname
8256         (writeFileAscii): ditto
8257         (makeLaTeXFile): ditto
8258         (makeLinuxDocFile): ditto
8259         (makeDocBookFile): ditto
8260
8261         * src/LaTeX.C (runMakeIndex): change arg name from file -> f
8262         (runBibTeX): ditto
8263
8264         * src/Makefile.am (lyx_SOURCES): add bmtable.c and remove bmtable.C
8265
8266         * src/bmtable.h: add extern "C" on this file when __cplusplus is
8267         defined.
8268
8269         * src/bmtable.c: new file, a C'ified copy of bmtable.C, this is
8270         compiled by a C compiler not C++. 
8271
8272         * src/layout.h (LyXTextClass): added typedef for const_iterator
8273         (LyXTextClassList): added typedef for const_iterator + member
8274         functions begin and end.
8275
8276         * src/LyXView.C (UpdateDocumentClassChoice): rewritten to use
8277         iterators to fill the choice_class.
8278         (updateLayoutChoice): rewritten to use iterators to fill the
8279         layoutlist in the toolbar.
8280
8281         * src/BufferView.h (BufferView::work_area_width): removed unused
8282         variable. 
8283
8284         * src/lyx_gui_misc.C (WarnReadonly): added string parameter 'file'
8285
8286         * src/buffer.C (sgmlOpenTag): drop the use of the static space array
8287         (sgmlCloseTag): ditto
8288
8289         * src/support/lstrings.h: return type of countChar changed to
8290         unsigned char.
8291
8292         * src/support/lstrings.C (countChar): use HAVE_STD_COUNT to choose
8293         what version of this func to use. Also made to return unsigned int.
8294
8295         * configure.in: call LYX_STD_COUNT 
8296
8297         * acinclude.m4 (LYX_STD_COUNT): new function checks for a standard
8298         conforming std::count. 
8299
8300 1999-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8301
8302         * src/mathed/math_draw.C (Draw, Metrics): fix a bug where a prime
8303         and a subscript would give bad display (patch from Dekel Tsur
8304         <dekel@math.tau.ac.il>). 
8305
8306         * src/insets/insetlatexaccent.h: make sure ACCENT_TYPES is public. 
8307
8308         * src/spellchecker.C (create_ispell_pipe): use a const_cast to
8309         please sun CC.
8310
8311         * src/chset.h: add a few 'using' directives
8312
8313         * src/lyxfunc.C (Dispatch): check that LFUN_UNKNOWN_ACTION is not
8314         triggered when no buffer is active
8315
8316         * src/layout.C: removed `break' after `return' in switch(), since
8317         it is unreachable.
8318
8319         * src/lyx_main.C (init): make sure LyX can be ran in place even
8320         when libtool has done its magic with shared libraries. Fix the
8321         test for the case when the system directory has not been found.
8322
8323         * src/lyx_cb.C (MenuMakeLaTeX): make sure to keep the full path
8324         name for the latex file.
8325         (MenuMakeHTML): ditto
8326
8327         * src/buffer.h: add an optional boolean argument, which is passed
8328         to ChangeExtension.
8329
8330 1999-12-20  Allan Rae  <rae@lyx.org>
8331
8332         * lib/templates/IEEEtran.lyx: small correction and update.
8333
8334         * configure.in: Attempted to use LYX_PATH_HEADER
8335
8336         * src/stl_string_fwd.h: Don't need HAVE_STL_STRING_FWD_H anymore
8337
8338         * acconfig.h, acinclude.m4 (LYX_STL_STRING_FWD): totally revised after
8339         input from JMarc.  Now use preprocessor to find the header.
8340         Also stopped making HAVE_STL_STRING_FWD_H and extended the comments.
8341         (LYX_PATH_HEADER): My, so far, failed attempt to generalize
8342         LYX_STL_STRING_FWD.  See comments in file.      
8343
8344 1999-12-19  Asger Alstrup Nielsen  <alstrup@diku.dk>
8345
8346         * The global MiniBuffer * minibuffer variable is dead.
8347         
8348         * The global FD_form_main * fd_form_main variable is dead.
8349
8350 1999-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8351
8352         * src/toolbar.C (set): condition #warning on WITH_WARNINGS
8353
8354         * src/table.h: add the LOstream.h header
8355         * src/debug.h: ditto
8356         
8357         * src/LyXAction.h: change the explaination of the ReadOnly
8358         attribute: is indicates that the function _can_ be used.
8359
8360         * src/LyXAction.C (init): find-replace _can_ be used in read-only
8361         mode. 
8362
8363 1999-12-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8364
8365         * src/lyxfont.C (ascent): Make sure that char is _always_ used as
8366         unsigned. 
8367         (descent): ditto
8368         (lbearing): ditto
8369         (rbearing): ditto
8370
8371         * src/paragraph.C (GetWord): assert on pos>=0
8372         (GetChar): ditto
8373         
8374         * src/support/lyxstring.C: condition the use of an invariant on
8375         ENABLE_ASSERTIONS 
8376         * src/support/lyxstring.h: ditto
8377
8378         * src/Bullet.[Ch]: replace DEBUG_AS_DEFAULT by ENABLE_ASSERTIONS.
8379         Use LAssert.h instead of plain assert().
8380
8381         * src/support/lstrings.h: add LAssert.h, in case it is needed.
8382
8383         * src/lyxfunc.C: do not include LAssert.h, it is not used.
8384         * src/support/filetools.C: ditto
8385
8386         * src/support/LAssert.h: make Assert a no-op if ENABLE_ASSERTIONS
8387         is not defined. 
8388
8389         * INSTALL: document the new configure flags
8390         
8391         * configure.in: suppress --with-debug; add --enable-assertions
8392
8393         * acinclude.m4: various changes in alignment of help strings.
8394
8395 1999-12-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
8396
8397         * src/kbmap.C: commented out the use of the hash map in kb_map,
8398         beginning of movement to a stl::container. 
8399
8400         * several files: removed code that was not in effect when
8401         MOVE_TEXT was defined.
8402         
8403         * lib/kbd/iso8859-1.cdef: removed bogus backslashes. Backslashes
8404         for escaping should not be used. We can discuss if the string
8405         should be enclosed in f.ex. [] instead of "".
8406
8407         * src/trans_mgr.C (insert): use the new returned value from
8408         encodeString to get deadkeys and keymaps done correctly.
8409
8410         * src/chset.C (encodeString): changed to return a pair, to tell
8411         what to use if we know the string.
8412
8413         * src/lyxscreen.h (fillArc): new function.
8414
8415         * src/FontInfo.C (resize): rewritten to use more std::string like
8416         structore, especially string::replace.
8417
8418         * src/insets/insetlatexaccent.C (Draw): use fillArc for the
8419         approp. accents.
8420
8421         * configure.in (chmod +x some scripts): remove config/gcc-hack 
8422
8423 1999-12-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8424
8425         * src/buffer.C (writeFile): change once again the top comment in a
8426         .lyx file to point to www.lyx.org and to use LYX_DOCVERSION
8427         instead of an hardcoded version number.
8428         (makeDocBookFile): ditto
8429
8430         * src/version.h: add new define LYX_DOCVERSION
8431
8432         * po/de.po: update from Pit Sütterlin
8433         * lib/bind/de_menus.bind: ditto.
8434         
8435         * src/lyxfunc.C (Dispatch): call MenuExport()
8436         * src/buffer.C (Dispatch): ditto
8437
8438         * src/lyx_cb.C (MenuMakeHTML): new function, moved from
8439         LyXFunc::Dispatch().
8440         (MenuExport): new function, moved from
8441         LyXFunc::Dispatch().
8442
8443         * src/trans_mgr.C (insert): small cleanup
8444         * src/chset.C (loadFile): ditto
8445
8446         * lib/kbd/iso8859-1.cdef: add missing backslashes
8447
8448 1999-12-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
8449
8450         * src/insets/insetlatexaccent.C (Lbearing): new function, used to
8451         help with placing the manually drawn accents better.
8452         (Rbearing): ditto
8453         (Draw): x2 and hg changed to float to minimize rounding errors and
8454         help place the accents better.
8455
8456         * src/lyxfont.C (ascent): fixed faulty static_cast, casting from
8457         unsigned short to char is just wrong...cast the char to unsigned
8458         char instead so that the two values can compare sanely. This
8459         should also make the display of insetlatexaccents better and
8460         perhaps also some other insets.
8461         (descent): ditto
8462         (lbearing): new function
8463         (rbearing): ditto
8464
8465 1999-12-15  Allan Rae  <rae@lyx.org>
8466
8467         * src/stl_string_fwd.h, src/Makefile.am (lyx_SOURCES):  added new
8468         header that provides a wrapper around the very annoying SGI STL header
8469         of the same name.
8470
8471         * src/support/lyxstring.C, src/LString.h:
8472         removed old SGI-STL-compatability attempts.
8473
8474         * configure.in: Use LYX_STL_STRING_FWD.
8475
8476         * acinclude.m4 (LYX_STL_STRING_FWD), acconfig.h: Test if 
8477         stl_string_fwd.h is around and try to determine it's location.
8478         Major improvement over previous SGI STL 3.2 compatability.
8479         Three small problems remain with this function due to my zero
8480         knowledge of autoconf.  JMarc and lgb see the comments in the code.
8481
8482 1999-12-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8483
8484         * src/broken_const.h, config/hack-gcc, config/README: removed
8485         
8486         * configure.in: remove --with-gcc-hack option; do not call
8487         LYX_CXX_STL_STACK 
8488
8489         * INSTALL: remove documentation of --with-broken-const and
8490         --with-gcc-hack
8491         
8492         * acconfig.h: remove all trace of BROKEN_CONST define
8493
8494         * src/buffer.C (makeDocBookFile): update version number in output
8495         file. 
8496         (SimpleDocBookOnePar): fix an assert when trying to a character
8497         access beyond string length
8498         [Patch from Jose']
8499
8500 1999-12-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8501
8502         * po/de.po: fix the Export menu
8503
8504         * lyx.man: update the description of -dbg
8505
8506         * src/lyx_main.C (setDebuggingLevel): call Debug::showLevel()
8507         (commandLineHelp): updated
8508         (easyParse): show list of available debug levels if -dbg is passed
8509         without argument.
8510
8511         * src/Makefile.am: add debug.C
8512
8513         * src/debug.h: moved some code to debug.C
8514
8515         * src/debug.C: new file. Contains code to set and show debug
8516         level. 
8517
8518         * src/layout.C: remove 'break' after 'continue' in switch
8519         statements, since these cannot be reached.
8520
8521 1999-12-13  Allan Rae  <rae@lyx.org>
8522
8523         * src/mathed/math_hash.C (math_hash): renamed from hash(), name clash.
8524         (in_word_set): hash() -> math_hash()
8525
8526         * src/LString.h: Used USING_EXCEPTIONS in SGI STL-3.2 support 
8527
8528         * acconfig.h: Added a test for whether we are using exceptions in the
8529         current compilation run. If so USING_EXCEPTIONS is defined.
8530
8531         * config.in: Check for existance of stl_string_fwd.h
8532         * src/LString.h: If compiling --with-included-string and SGI's
8533         STL version 3.2 is present (see above test) we need to block their
8534         forward declaration of string and supply a __get_c_string().
8535         However, it turns out this is only necessary if compiling with
8536         exceptions enabled so I've a bit more to add yet.
8537
8538         * src/insets/figinset.[Ch], src/insets/insetinclude.C,
8539           src/insets/insetloa.C, src/layout.h, src/lyxparagraph.h,
8540           src/support/LRegex.h, src/undo.h:
8541         Shuffle the order of the included files a little to ensure that
8542         LString.h gets included before anything that includes stl_string_fwd.h
8543
8544         *  src/support/lyxstring.C: We need to #include LString.h instead of
8545         lyxstring.h to get the necessary definition of __get_c_string.
8546         (__get_c_string): New function.  This is defined static just like SGI's
8547         although why they need to do this I'm not sure.  Perhaps it should be
8548         in lstrings.C instead.
8549
8550         * lib/templates/IEEEtran.lyx:  New template file.
8551
8552 1999-12-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
8553         
8554         * Makefile.in.in (MKINSTALLDIRS): use $(srcdir)/@MKINSTALLDIRS@
8555         * intl/Makefile.in (MKINSTALLDIRS):  ditto
8556
8557         * src/LyXAction.C (init): changed to hold the LFUN data in a
8558         automatic array in stead of in callso to newFunc, this speeds up
8559         compilation a lot. Also all the memory used by the array is
8560         returned when the init is completed.
8561
8562         * a lot of files: compiled with -Wold-style-cast, changed most of
8563         the reported offenders to C++ style casts. Did not change the
8564         offenders in C files. 
8565
8566         * src/trans.h (Match): change argument type to unsigned int.
8567
8568         * src/support/DebugStream.C: fix some types on the streambufs so
8569         that it works on a conforming implementation.
8570
8571 1999-12-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8572
8573         * lib/examples/example_{raw,lyxified}.lyx: fix embarassing sentence.
8574
8575         * src/support/lyxstring.C: remove the inline added earlier since
8576         they cause a bunch of unsatisfied symbols when linking with dec
8577         cxx. Cxx likes to have the body of inlines at the place where they
8578         are declared.
8579
8580         * src/trans.C (AddDeadkey): add an 'unsigned char' cast to avoid
8581         accessing negative bounds in array. This fixes the crash when
8582         inserting accented characters.
8583         * src/trans.h (Match): ditto
8584
8585         * src/buffer.C (Dispatch): since this is a void, it should not try
8586         to return anything...
8587
8588 1999-12-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
8589
8590         * src/buffer.h: removed the two friends from Buffer. Some changes
8591         because of this. Buffer::getFileName and Buffer::setFileName
8592         renamed to Buffer::fileName() and Buffer::fileName(...).
8593
8594 1999-12-09  Lars Gullik Bjønnes <larsbj@lyx.org>
8595
8596         * buffer.[Ch], BufferView.[Ch] + other files: Moved Buffer::text
8597         and Buffer::update(short) to BufferView. This move is currently
8598         controlled by a define MOVE_TEXT, this will be removed when all
8599         shows to be ok. This move paves the way for better separation
8600         between buffer contents and buffer view. One side effect is that
8601         the BufferView needs a rebreak when swiching buffers, if we want
8602         to avoid this we can add a cache that holds pointers to LyXText's
8603         that is not currently in use. 
8604
8605         * buffer.[Ch], lyx_main.C: small changes to the "-export" patch by
8606         André Pönitz. 
8607
8608 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
8609
8610         * buffer.[Ch]: Dispatch() - new dispatcher on the buffer level
8611
8612         * lyx_main.C: new command line option -x (or --execute) and
8613           -e (or --export). Now direct conversion from .lyx to .tex
8614           (.dvi, .ps, ...) is possible  ('lyx file.lyx --export latex')
8615           Unfortunately, X is still needed and the GUI pops up during the
8616           process...
8617
8618 1999-12-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8619
8620         * src/Spacing.C: add a using directive to bring stream stuff into
8621         normal namespace.
8622         * src/paragraph.C: ditto
8623         * src/buffer.C: ditto
8624
8625         * NEWS: updated a bit the new features of 1.1.3 (took a few things
8626         from Lars' announcement).
8627
8628         * lib/examples/nl_voorbeeld_{ruw,verlyxt}.lyx: new tutorial
8629         example files from Tino Meinen.
8630         
8631 1999-12-06  Allan Rae  <rae@lyx.org>
8632
8633         * src/LaTeX.C (runBibTeX): fix typo in accessing submatch pair.
8634
8635 1999-12-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
8636
8637         * src/support/lyxstring.C: added a lot of inline for no good
8638         reason
8639         
8640         * src/lyxfont.[Ch]: removed latexWriteStartChanges, and
8641         latexWriteEndChanges, they were not used.
8642         
8643         * src/layout.h (operator<<): output operator for PageSides
8644
8645         * src/mathed/math_iter.C (my_memcpy): slightly changed.
8646
8647         * some example files: loaded in LyX 1.0.4 and saved again to update
8648         certain constructs (table format) 
8649
8650         * a lot of files: did the change to use fstream/iostream for all
8651         writing of files. Done with a close look at Andre Poenitz's patch.
8652
8653         * some files: whitespace changes.
8654         
8655 1999-12-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8656
8657         * src/mathed/math_iter.C (my_memcpy): new function. Since the
8658         built-in memcpy() is broken on egcs and gcc 2.95 for alpha
8659         architecture, we provide our own. It is used unconditionnally, but
8660         I do not think this is a performance problem. Thanks to Angus
8661         Leeming <a.leeming@ic.ac.uk> for the code (and again to Michal
8662         Jaegermann <michal@ellpspace.math.ualberta.ca> for finding it the
8663         first time).
8664         (GetInset): use my_memcpy.
8665         (Insert): ditto
8666         (Copy): ditto
8667
8668         * lib/chkconfig.ltx: some cleanup of the latex code. I am not sure
8669         it is easier to understand, but it uses less TeX-only constructs now.
8670
8671         * acinclude.m4 (LYX_SEARCH_PROG): make it work when the PATH
8672         elements contain spaces
8673
8674         * lib/configure: regenerated
8675         
8676         * lib/configure.m4 (SEARCH_PROG): make it work when the PATH
8677         elements contain spaces; display the list of programs that are
8678         tried.
8679
8680         * autogen.sh: make sure lib/configure is executable
8681
8682         * lib/examples/*: rename the tutorial examples to begin with the
8683         two-letters language code.
8684
8685         * src/lyxfunc.C (getStatus): do not query current font if no
8686         buffer exists.
8687
8688         * src/lyx_cb.C (RunScript): use QuoteName
8689         (MenuRunDvips): ditto
8690         (PrintApplyCB): ditto
8691
8692         * src/support/filetools.[Ch] (QuoteName): new function. Add quotes
8693         around argument, so that it works well with the current shell.
8694         Does not work properly with OS/2 shells currently.
8695
8696         * src/LaTeXLog.C (ShowLatexLog): use Buffer::getLatexName
8697         * src/LyXSendto.C (SendtoApplyCB): ditto
8698         * src/lyxfunc.C (Dispatch): ditto
8699         * src/buffer.C (runLaTeX): ditto
8700         (runLiterate): ditto
8701         (buildProgram): ditto
8702         (runChktex): ditto
8703         * src/lyx_cb.C (RunScript): ditto
8704         (MenuMakeLaTeX): ditto
8705         
8706         * src/buffer.h (getLatexName): new method 
8707
8708         * src/support/filetools.C (MakeLatexName): renamed from SpaceLess
8709
8710 1999-12-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8711
8712         * images/sqrt.xpm: change name of the sqrt icon to sqrt_xpm.
8713         * src/mathed/math_panel.C (mathed_get_pixmap_from_icon): ditto
8714         (create_math_panel): ditto
8715
8716         * src/lyxfunc.C (getStatus): re-activate the code which gets
8717         current font and cursor; add test for export to html.
8718
8719         * src/lyxrc.C (read): remove unreachable break statements; add a
8720         few "using".
8721
8722         * src/bmtable.C (fl_set_bmtable_data): add a const_cast.
8723         
8724 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
8725
8726         * src/mathed/formula.C (LocalDispatch): fix small whitspace bug
8727         introduced by faulty regex.
8728         * src/buffer.C: ditto
8729         * src/lastfiles.C: ditto
8730         * src/paragraph.C: ditto
8731         * src/table.C: ditto
8732         * src/vspace.C: ditto
8733         * src/insets/figinset.C: ditto
8734         Note: most of these is absolutely harmless, except the one in
8735         src/mathed formula.C.
8736
8737 1999-11-30  Kayvan A. Sylvan  <kayvan@satyr.sylvan.com>
8738
8739         * src/ImportNoweb.C (documentclass): fixed bounds for substr
8740           operation, yielding correct results for the reLyX command.
8741
8742 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
8743
8744         * src/support/filetools.C (ExpandPath): removed an over eager
8745         Assert.
8746         (ReplaceEnvironmentPath): ditto
8747
8748         * src/toolbar.C (BubbleTimerCB): use C++ style casts. This clearly
8749         shows that we are doing something fishy in our code...
8750         (BubblePost): ditto
8751         (ToolbarCB): ditto
8752
8753         * src/lyxrc.C (read): use a double switch trick to get more help
8754         from the compiler. (the same trick is used in layout.C)
8755         (write): new function. opens a ofstream and pass that to output
8756         (output): new function, takes a ostream and writes the lyxrc
8757         elemts to it. uses a dummy switch to make sure no elements are
8758         forgotten. 
8759
8760         * src/lyxlex.h: added a struct pushpophelper for use in functions
8761         with more than one exit point.
8762
8763         * src/lyxlex.[Ch] (GetInteger): made it const
8764         (GetFloat): ditto
8765         (GetBool): ditto
8766
8767         * src/lyxfunc.C (Dispatch): added case for LFUN_SAVEPREFERENCES
8768
8769         * src/layout.[hC] : LayoutTags splitted into several enums, new
8770         methods created, better error handling cleaner use of lyxlex. Read
8771         the diff.
8772
8773         * src/bmtable.[Ch]: change some member prototypes because of the
8774         image const changes. 
8775
8776         * commandtags.h, src/LyXAction.C (init): new function:
8777         "preferences-save", saves the lyxrc entries into .lyx/preferences.
8778         This file is not read automatically but you can add \input
8779         preferences to your lyxrc if you want to. We need to discuss how
8780         to handle this. 
8781
8782         * src/LaTeX.C (runBibTeX): use regex to match for the needed lines
8783         in .aux, also remove .bib and .bst files from dependencies when
8784         running bibtex.
8785
8786         * src/BufferView.C, src/LyXView.C: add const_cast several places
8787         because of changes to images.
8788
8789         * lib/images/*: same change as for images/*
8790         
8791         * lib/lyxrc.example: Default for accept_compound is false not no.
8792
8793         * images/*: changed to be const, however I have som misgivings
8794         about this change so it might be changed back.
8795
8796 1999-11-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8797
8798         * lib/configure, po/POTFILES.in: regenerated
8799
8800         * autogen.sh: autogenerate lib/configure from lib/configure.m4
8801
8802         * config/lib_configure.m4: removed
8803         
8804         * lib/configure.m4: new file (was config/lib_configure.m4)
8805
8806         * configure.in: do not test for rtti, since we do not use it.
8807         
8808 1999-11-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
8809
8810         * src/support/lyxstring.C (lyxstring::Srep): Changed to use a
8811         doubling of allocated space scheme. This makes it faster for large
8812         strings end to use less memory for small strings. xtra rememoved. 
8813
8814         * src/insets/figinset.C (waitalarm): commented out.
8815         (GhostscriptMsg): use static_cast
8816         (GhostscriptMsg): use new instead of malloc to allocate memory for
8817         cmap. also delete the memory after use.
8818
8819         * src/lyx_cb.C (SetXtermCursor): made cursor_undefined a bool
8820
8821         * src/LaTeX.C (scanAux): new method. Scans the .aux file and looks
8822         for changes in bibtex database or style.
8823         (runBibTeX): remove all .bib and .bst files from dep before we
8824         begin. 
8825         (run): use scanAuc in when dep file already exist.
8826
8827         * src/DepTable.C (remove_files_with_extension): new method
8828         (exist): new method
8829
8830         * src/DepTable.[Ch]: made many of the methods const. 
8831
8832 1999-11-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8833
8834         * src/bufferparams.C: make sure that the default textclass is
8835         "article". It used to be the first one by description order, but
8836         now the first one is "docbook".
8837
8838         * src/lyx_main.C (setDebuggingLevel): change type of argument to
8839         string; call Debug::value.
8840         (easyParse): pass complete argument to setDebuggingLevel().
8841
8842         * src/debug.h (value): fix the code that parses debug levels.
8843
8844         * src/debug.h: add new debug type ACTION, reserved for LyXAction
8845         class.  
8846
8847         * src/LyXAction.C: use Debug::ACTION as debug channel.
8848
8849         * src/lyxlookup.C: make the debug statements go to Debug::KEY.
8850
8851         * NEWS: updated for the future 1.1.3 release.
8852
8853         * src/mathed/symbol_def.h: swap the definitions of \varepsilon and
8854         \epsilon. Now \epsilon shows as red text, and \varepsilon shows as
8855         it should. This is of course a controversial change (since many
8856         people will find that their lyx workscreen is suddenly full of
8857         red), but done for the sake of correctness.
8858
8859         * src/mathed/formulamacro.h, src/mathed/math_macro.[Ch],
8860           src/mathed/math_root.[Ch] (Clone): return a MathedInset*  
8861
8862         * src/insets/inseterror.h, src/insets/inseturl.h,
8863           src/insets/insetinfo.h, src/insets/figinset.h,
8864           src/mathed/formulamacro.h, src/mathed/math_macro.h
8865           (EditMessage): add a missing const and add _() to make sure that
8866         translation happens
8867
8868         * src/ImportNoweb.C, src/LyXAction.h, src/insets/figinset.C,
8869           src/insets/insetbib.C, src/support/filetools.C: add `using'
8870         directives for cxx.  
8871
8872         * src/lyxfunc.C (Dispatch): make sure nothing bad happens when
8873         doing 'Insert index of last word' at the beginning of a paragraph.
8874
8875 1999-11-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
8876
8877         * several files: white-space changes.
8878
8879         * src/mathed/formula.C: removed IsAlpha and IsDigit
8880
8881         * src/insets/insetbib.C (getKeys): use findtexfile to look for the
8882         .bib file. use a ifstream instead of FilePtr when parsing the .bib
8883         file for keys.
8884
8885         * src/insets/figinset.C (GetPSSizes): don't break when
8886         "EndComments" is seen. But break when a boundingbox is read.
8887
8888         * all classes inherited from Inset: return value of Clone
8889         changed back to Inset *.
8890
8891         * all classes inherited form MathInset: return value of Clone
8892         changed back to MathedInset *.
8893         
8894         * src/insets/figinset.C (runqueue): use a ofstream to output the
8895         gs/ps file. Might need some setpresicion or setw. However I can
8896         see no problem with the current code.
8897         (runqueue): use sleep instead of the alarm/signal code. I just
8898         can't see the difference.
8899
8900         * src/paragraph.C (LyXParagraph): reserve space in the new
8901         paragraph and resize the inserted paragraph to just fit.
8902
8903         * src/lyxfunc.h (operator|=): added operator for func_status.
8904
8905         * src/lyxfunc.C (MenuNew): use FileInfo instead of FilePtr to
8906         check for readable file.
8907
8908         * src/lyx_cb.C (MenuMakeLaTeX): use FileInfo instead of FilePtr to
8909         check for readable file.
8910         (MenuMakeLinuxDoc): ditto
8911         (MenuMakeDocBook): ditto
8912         (MenuMakeAscii): ditto
8913         (InsertAsciiFile): split the test for openable and readable
8914
8915         * src/bmtable.C (draw_bitmaptable): use
8916         fl_state[fl_get_vclass()].depth instead of DefualtScreen.
8917
8918         * src/LaTeX.C, src/support/filetools.[Ch]: moved do_popen and
8919         findtexfile from LaTeX to filetools.
8920         
8921         * src/ImportNoweb.C (documentclass): rewrote to use ifstream
8922         instead of FilePtr. Needs to be verified by a literate user.
8923
8924 1999-11-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8925
8926         * src/mathed/formula.[Ch] (GetCursorPos): add a missing 'const'.
8927         (EditMessage): likewise.
8928
8929         * src/paragraph.C (SimpleTeXSpecialChars): output ~ and ^
8930         respectively as \textasciitilde and \textasciicircum.
8931
8932 1999-11-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
8933
8934         * src/support/lyxstring.h: made the methods that take iterators
8935         use const_iterator.
8936
8937         * src/support/lstrings.C (countChar): use std::cound(itr, itr, val)
8938         (regexMatch): made is use the real regex class.
8939
8940         * src/support/Makefile.am: changed to use libtool
8941
8942         * src/support/.cvsignore: added *.lo, .libs and libsupport.la
8943
8944         * src/mathed/math_defs.h: made the mathaligns be in a enum instead
8945         of defines.
8946         (MathIsInset ++): changed several macros to be inline functions
8947         instead. 
8948
8949         * src/mathed/Makefile.am: changed to use libtool
8950
8951         * src/mathed/.cvsignore: added *.lo, .libs and libmathed.la
8952
8953         * src/insets/inset* : Clone changed to const and return type is
8954         the true insettype not just Inset*.
8955         
8956         * src/insets/Makefile.am: changed to use libtool
8957
8958         * src/insets/.cvsignore: added *.lo, .libs and libinsets.la
8959
8960         * src/undo.[Ch] : added empty() and changed some of the method
8961         names.
8962         
8963         * src/texrow.[Ch]: rewrote to store texrow's in a std::list.
8964
8965         * src/lyxparagraph.h: use id() and id(...) instead of getID and
8966         setID use block<> for the bullets array, added const several places.
8967
8968         * src/lyxfunc.C (getStatus): new function
8969
8970         * src/lyxfunc.[Ch] : small changes to take advantage of the new
8971         LyXAction, added const to several funtions.
8972
8973         * src/filedlg.[Ch]: rewrote to store userchache and groupchache in
8974         a std::map, and to store the dir items in a vector.
8975
8976         * src/Makefile.am (lyx_DEPENDENCIES): changed to use libtool files
8977         as dependencies.
8978
8979         * src/LyXView.[Ch] + other files : changed currentView to view.
8980         
8981         * src/LyXAction.[Ch] : ported from the old devel branch.
8982         
8983         * src/.cvsignore: added .libs and a.out
8984
8985         * configure.in : changes to use libtool. 
8986
8987         * acinclude.m4 : inserted libtool.m4
8988
8989         * .cvsignore: added libtool
8990
8991 1999-11-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8992
8993         * src/Makefile.am (lyx_DEPENDENCIES): give the explicit object
8994         file name in insets and mathed directories (otherwise the
8995         dependency is not taken in account under cygwin).
8996
8997         * src/text2.C (InsertString[AB]): make sure that we do not try to
8998         read characters past the string length.
8999
9000 1999-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9001
9002         * lib/doc/LaTeXConfig.lyx.in, 
9003           lib/chkconfig.ltx: remove the test for linuxdoc-sgml.sty.
9004
9005         * src/buffer.C (writeFile): Do not add a comment on top of .lyx
9006         file saying who created them and when this heppened; this is
9007         useless and annoys tools like cvs.
9008
9009         * lib/layouts/g-brief-{en,de}.layout,
9010           lib/templates/g-brief-{en,de}.lyx: new versions of the textclass
9011         from Thomas Hartkens <thomas@hartkens.de>.
9012
9013         * src/{insets,mathed}/Makefile.am: do not declare an empty
9014         LDFLAGS, so that it can be set at configure time (useful on Irix
9015         for -n32 flag).
9016
9017         * lib/reLyX/configure.in: make sure that the prefix is set
9018         correctly in LYX_DIR.
9019
9020 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
9021
9022         * src/commandtags.h: introduction of a new tag 'LFUN_SEQUENCE' to
9023         be used by 'command-sequence' this allows to bind a key to a
9024         sequence of LyX-commands
9025         (Example: 'command-sequence math-insert alpha; math-insert beta;")
9026
9027         * src/LyXAction.C: add "command-sequence"
9028
9029         * src/LyXFunction.C: handling of "command-sequence"
9030
9031         * src/LyXFunction.[hC] changed LyXFunc::Dispatch(string const
9032          &cmd, string const &arg) to LyXFunc::Dispatch(string const& s)
9033
9034         * src/lyxserver.C, src/minibuffer.C: Use this new interface
9035
9036 1999-11-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9037
9038         * src/buffer.C (writeFile): Do not output a comment giving user
9039         and date at the beginning of a .lyx file. This is useless and
9040         annoys cvs anyway; update version number to 1.1.
9041
9042         * src/Makefile.am (LYX_DIR): add this definition, so that a
9043         default path is hardcoded in LyX.
9044
9045         * configure.in: Use LYX_GNU_GETTEXT.
9046
9047         * acinclude.m4 (LYX_GNU_GETTEXT): new macro, essentially a copy of
9048         AM_GNU_GETTEXT with a bug fixed. 
9049
9050         * src/lyx_cb.C (RunLinuxDoc): add a cast to please dec cxx.
9051
9052         * src/chset.C: add "using std::ifstream;" to please dec cxx.
9053
9054         * src/lyx_main.C (init), INSTALL.OS2: the environment variable
9055         which is used to point to LyX data is now LYX_DIR_11x.
9056
9057         * lyx.man: convert to a unix text file; small updates.
9058
9059 1999-11-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
9060
9061         * src/support/LSubstring.[Ch]: made the second arg of most of the
9062         constructors be a const reference. 
9063
9064         * src/mathed/math_parser.C (LexInitCodes): small bug introduced by
9065         me fixed.
9066
9067         * src/support/lyxstring.[Ch] (swap): added missing member function
9068         and specialization of swap(str, str); 
9069
9070         * src/menus.C (ShowBufferMenu): to use the new BufferStorage
9071
9072         * src/bufferlist.[Ch]: use the new BufferStorage class and remove all
9073         trace of the old one.
9074
9075         * src/undo.[Ch]: made the undostack use std::list to store undo's in
9076         put the member definitions in undo.C.
9077
9078         * src/lyxparagraph.h, src/paragraph.C + a lot of files: removed
9079         NEW_TEXT and have now only code that was included when this was
9080         defined. 
9081
9082         * src/intl.C (LCombo): use static_cast
9083         (LCombo2): ditto
9084         (DispatchCallback): ditto
9085
9086         * src/definitions.h: removed whole file
9087         
9088         * src/commandtags.h: comment out LFUN_INSERT_INSET_LATEX
9089
9090         * src/chset.[Ch]: a lot rewritten, does not use lyxlex for cdef
9091         parsing and stores in a std:map. a regex defines the file format.
9092         removed unneeded members.
9093
9094         * src/bufferparams.h: added several enums from definitions.h here.
9095         Removed unsused destructor. Changed some types to use proper enum
9096         types. use block to have the temp_bullets and user_defined_bullets
9097         and to make the whole class assignable.
9098
9099         * src/bufferparams.C (Copy): removed this functions, use a default
9100         assignment instead. 
9101
9102         * src/buffer.h: made isLatex, isLinuxDoc, isDocBook, isSGML and
9103         isLiterate const.
9104
9105         * src/buffer.C (readLyXformat2): commend out all that have with
9106         oldpapersize to do. also comment out all that hve to do with
9107         insetlatex and insetlatexdel. 
9108         (setOldPaperStuff): commented out
9109
9110         * src/Makefile.am (lyx_SOURCES): remove definitions.h, add undo.C
9111
9112         * src/LyXAction.C: remove use of inset-latex-insert
9113
9114         * src/mathed/math_panel.C (button_cb): use static_cast
9115
9116         * src/insets/Makefile.am (insets_o_SOURCES): removed
9117         insetlatex.[Ch] 
9118
9119         * src/support/lyxstring.C (helper): use the unsigned long
9120         specifier, UL, instead of a static_cast.
9121
9122         * src/support/Makefile.am (libsupport_a_SOURCES): added block.h
9123
9124         * src/support/block.h: new file. to be used as a c-style array in
9125         classes, so that the class can be assignable.
9126
9127 1999-11-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9128
9129         * src/lyx_gui_misc.C (askForText): when fl_show_input() returns
9130         NULL, make sure to return an empty string (it is not possible to
9131         set a string to NULL).
9132
9133 1999-11-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9134
9135         * src/support/LRegex.C: use regex_t instead of re_pattern_buffer.
9136
9137         * src/support/lyxstring.C (helper): fix bogus cast in assertion.
9138
9139         * src/{mathed,insets}/Makefile.am (CXXLINK): add $(LDFLAGS) to the
9140         link line, so that Irix users (for example) can set it explicitely to
9141         "-n32".
9142         
9143         * src/Makefile.am (lyx_LDADD): use LYX_LIB as a variable, so that
9144         it can be overidden at make time (static or dynamic link, for
9145         example).
9146         
9147         * src/vc-backend.C, src/LaTeXFeatures.h, 
9148           src/support/LRegex.C, src/support/LRegex.h: add a few "using" 
9149         statements to bring templates to global namespace.
9150
9151 1999-11-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
9152
9153         * src/support/lyxstring.C (operator[] const): make it standard
9154         conforming. 
9155
9156         * src/minibuffer.C (Init): changed to reflect that more
9157         information is given from the lyxvc and need not be provided here.
9158
9159         * src/lyxvc.[Ch]: rewrote to use the vc-backend.
9160         
9161         * src/Makefile.am (lyx_SOURCES): add vc-backend.[Ch]
9162
9163         * src/LyXView.C (UpdateTimerCB): use static_cast
9164         (KeyPressMask_raw_callback): ditto
9165
9166         * src/BufferView.[Ch]: name change _owner -> owner_ and _buffer ->
9167         buffer_, a lot of changes because of this. currentBuffer() ->
9168         buffer(), setBuffer(...) -> buffer(...), getOwner() -> owner(),
9169         also changes to other files because of this.
9170
9171 1999-11-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
9172
9173         * src/vc-backend.[Ch]: new files. The backends for vc handling,
9174         have no support for RCS and partial support for CVS, will be
9175         improved later.
9176         
9177         * src/insets/ several files: changes because of function name
9178         changes in Bufferview and LyXView.
9179         
9180         * src/mathed/math_symbols.C (math_insert_symbol): use static_cast
9181
9182         * src/support/LSubstring.[Ch]: new files. These implement a
9183         Substring that can be very convenient to use. i.e. is this
9184         possible:
9185         string a = "Mary had a little sheep";
9186         Substring(a, "sheep") = "lamb";
9187         a is now "Mary has a little lamb".
9188
9189         * src/support/LRegex.[Ch]: a regex class that can be used to pick
9190         out patterns and subpatterns of strings. It is used by LSubstring
9191         and also by vc-backend.C
9192         
9193         * src/support/lyxstring.C: went over all the assertions used and
9194         tried to correct the wrong ones and flag which of them is required
9195         by the standard. some bugs found because of this. Also removed a
9196         couple of assertions.
9197
9198         * src/support/Makefile.am (libsupport_a_SOURCES): added
9199         LSubstring.[Ch] and LRegex.[Ch]
9200
9201         * src/support/FileInfo.h: have struct stat buf as an object and
9202         not a pointer to one, some changes because of this.
9203
9204         * src/LaTeXFeatures.C (getTClassPreamble): also use the
9205         information in layout when adding the layouts preamble to the
9206         textclass preamble.
9207
9208         * src/LaTeXFeatures.h: use a vector<bool> to store the layout
9209         usage in.
9210
9211         * configure.in (CPPFLAGS): use AC_CHECK_FUNCS to check for XOpenIM
9212         because of bug in OS/2.
9213
9214 1999-11-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9215
9216         * lib/layouts/lyxmacros.inc (lyxcode): set the font with
9217         \verbatim@font instead of \ttfamily, so that it can be redefined.
9218
9219         * src/BackStack.h, src/DepTable.C, src/DepTable.h, src/LaTeX.C,
9220           src/LaTeX.h, src/lastfiles.C, src/lastfiles.h, src/layout.C,
9221           src/layout.h, src/text2.C: add 'using' directive to bring the
9222         STL templates we need from the std:: namespace to the global one.
9223         Needed by DEC cxx in strict ansi mode.
9224
9225         * src/support/LIstream.h,src/support/LOstream.h,
9226           src/support/lyxstring.h,src/table.h,
9227           src/lyxlookup.h: do not include <config.h> in header
9228         files. This should be done in the .C files only.
9229
9230         * development/lyx.spec.in: WHATSNEW has been renamed to NEWS
9231         (from Kayvan).
9232         
9233
9234 1999-11-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9235
9236         * config/lib_configure.m4,lib/configure,lib/lyxrc.example: update
9237         from Kayvan to fix the tth invokation.
9238
9239         * development/lyx.spec.in: updates from Kayvan to reflect the
9240         changes of file names.
9241
9242 1999-11-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
9243
9244         * src/text2.C (InsertStringB): use std::copy
9245         (InsertStringA): use std::copy
9246
9247         * src/bufferlist.C: use a vector to store the buffers in. This is
9248         an internal change and should not affect any other thing.
9249         
9250         * src/BufferView.C (waitForX): use XSync instead of the lengthy
9251         stuff in waitForX.
9252
9253         * src/text.C (Fill): fix potential bug, one off bug.
9254
9255 1999-11-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
9256
9257         * src/Makefile.am (lyx_main.o): add more files it depends on.
9258
9259         * src/lyx_cb.C (addNewlineAndDepth): parameters in wrong order.
9260
9261         * src/support/lyxstring.C: use size_t for the reference count,
9262         size, reserved memory and xtra.
9263         (internal_compare): new private member function. Now the compare
9264         functions should work for std::strings that have embedded '\0'
9265         characters.
9266         (compare): all compare functions rewritten to use
9267         internal_compare.
9268         
9269 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
9270
9271         * src/support/lyxstring.C (compare): pass c_str()
9272         (compare): pass c_str
9273         (compare): pass c_str
9274
9275 1999-11-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9276
9277         * src/support/DebugStream.C: <config.h> was not included correctly.
9278
9279         * lib/configure: forgot to re-generate it :( I'll make this file
9280         auto generated soon.
9281
9282 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
9283
9284         * acinclude.m4 (cross_compiling): add -fpermissive when gcc 2.95.x
9285         is used.
9286
9287         * src/support/lyxstring.C: some changes from length() to rep->sz.
9288         avoids a function call.
9289
9290         * src/support/filetools.C (SpaceLess): yet another version of the
9291         algorithm...now per Jean-Marc's suggestions.
9292
9293 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
9294
9295         * src/layout.C (less_textclass_desc): functor for use in sorting
9296         of textclasses. 
9297         (LyXTextClass::Read): sort the textclasses after reading.
9298         
9299         * src/support/filetools.C (SpaceLess): new version of the
9300         SpaceLess functions. What problems does this one give? Please
9301         report.
9302
9303         * images/banner_bw.xbm: made the arrays unsigned char *
9304
9305 1999-11-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9306
9307         * src/support/lyxstring.C (find): remove bogus assertion in the
9308         two versions of find where this has not been done yet.
9309
9310         * src/support/lyxlib.h: add missing int return type to
9311         lyx::chdir(). 
9312
9313         * src/menus.C (ShowFileMenu): disable exporting to html if no
9314         html export command is present.
9315
9316         * config/lib_configure.m4: add a test for an HTML converter. The
9317         programs checked for are, in this order: tth, latex2html and
9318         hevea. 
9319
9320         * lib/configure: generated from config/lib_configure.m4.
9321
9322         * src/lyxfunc.C (Dispatch): update and improve the execution of an
9323         html converter. The parameters are now passed through $$FName and
9324         $$OutName, instead of standard input/output.
9325
9326         * src/lyxrc.{C,h}: rename \tth_command to \html_command.
9327
9328         * lib/lyxrc.example: update description of \html_command. 
9329         add "quotes" around \screen_font_xxx font setting examples to help
9330         people who use fonts with spaces in their names.
9331
9332 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
9333
9334         * Distribution files: updates for v1.1.2
9335
9336         * src/support/lyxstring.C (find): remove bogus assert and return
9337         npos for the same condition.
9338
9339 1999-11-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
9340
9341         * added patch for OS/2 from SMiyata.
9342
9343 1999-10-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
9344
9345         * src/text2.C (CutSelection): make space_wrapped a bool
9346         (CutSelection): dont declare int i until we have to.
9347         (alphaCounter): return a char const *.
9348
9349 1999-10-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9350
9351         * src/support/syscall.C (Systemcalls::kill): 
9352           src/support/filetools.C (PutEnv, PutEnvPath): 
9353           src/lyx_cb.C (addNewlineAndDepth): 
9354           src/FontInfo.C (FontInfo::resize): condition some #warning
9355         directives with WITH_WARNINGS.
9356         
9357
9358 1999-10-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
9359
9360         * src/layout.[Ch] + several files: access to class variables
9361         limited and made accessor functions instead a lot of code changed
9362         becuase of this. Also instead of returning pointers often a const
9363         reference is returned instead.
9364         
9365         * src/form1.C (create_form_Figure): added a couple fo "no-c-format"
9366
9367         * src/Makefile.am (dist-hook): added used to remove the CVS from
9368         cheaders upon creating a dist
9369         (EXTRA_DIST): added cheaders
9370
9371         * src/support/lstrings.C (tostr(char)): fix it to handle param as
9372         a character not as a small integer. 
9373
9374         * src/support/lyxstring.C (find): removed Assert and added i >=
9375         rep->sz to the first if.
9376
9377 1999-10-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
9378
9379         * src/layout.[Ch] src/BufferView.C src/LaTeXFeatures.C
9380         src/LyXView.C src/buffer.C src/bufferparams.C
9381         src/lyx_cb.C src/lyxfunc.C src/paragraph.C src/text.C 
9382         src/text2.C src/insets/insetinclude.C:
9383         lyxlayout renamed to textclasslist.
9384
9385         * src/layout.C: some lyxerr changes.
9386
9387         * src/layout.[Ch] (LyXLayout::Read): changed second paramter to
9388         LyXTextClass. rewrote LT_COPYSTYLE, rewrote LT_OBSOLETEDBY
9389         (LyXLayoutList): removed all traces of this class.
9390         (LyXTextClass::Read): rewrote LT_STYLE
9391         (LyXTextClass::hasLayout): new function
9392         (LyXTextClass::GetLayout): rewritten to return an iterator + has
9393         both const and nonconst version.
9394         (LyXTextClass::delete_layout): new function.
9395         (LyXTextClassList::Style): bug fix. do the right thing if layout
9396         is to big.
9397         (LyXTextClassList::NumberOfLayout): new acces to layoutlist.
9398         (LyXTextClassList::NameOfLayout): ditto 
9399         (LyXTextClassList::Load): ditto
9400
9401         * src/buffer.C (makeLaTeXFile): new access to layoutlist
9402
9403         * src/LaTeXFeatures.C (getTClassPreamble): new access to layoutlist
9404
9405         * src/LyXAction.C (LookupFunc): added a workaround for sun
9406         compiler, on the other hand...we don't know if the current code
9407         compiles on sun at all...
9408
9409         * src/support/filetools.C (CleanupPath): subst fix
9410
9411         * src/insets/insetbib.C (delDatabase): subst fix, this looks
9412         _really_ weird.
9413
9414         * src/support/filetools.C (PutEnvPath): subst fix, how come nobody
9415         complained about this one?
9416
9417         * src/insets/insetinclude.C (Latex): subst fix
9418
9419         * src/insets/insetbib.C (getKeys): subst fix
9420
9421         * src/LyXSendto.C (SendtoApplyCB): subst fix
9422
9423         * src/lyx_main.C (init): subst fix
9424
9425         * src/layout.C (Read): subst fix
9426
9427         * src/lyx_sendfax_main.C (button_send): subst fix
9428
9429         * src/buffer.C (RoffAsciiTable): subst fix
9430
9431         * src/lyx_cb.C (MenuFax): subst fix
9432         (PrintApplyCB): subst fix
9433
9434 1999-10-26  Juergen Vigna  <jug@sad.it>
9435
9436         * src/table.C (TexEndOfCell) + (DocBookEndOfCell): removed some #if 0
9437
9438         (Read): Cleaned up this code so now we read only format vestion >= 5
9439
9440 1999-10-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
9441
9442         * src/support/filetools.C (PutEnvPath): subst fix for EMX, how
9443         come nobody has complained about this one?
9444
9445         * src/insets/insetinclude.C (Latex): subst fix
9446
9447         * src/insets/insetbib.C (getKeys): subst fix
9448
9449         * src/lyx_main.C (init): subst fix
9450
9451         * src/layout.C (Read): subst fix
9452
9453         * src/buffer.C (RoffAsciiTable): subst fix
9454
9455         * src/lyx_cb.C (MenuFax): subst fix.
9456
9457         * src/layout.[hC] + some other files: rewrote to use
9458         std::container to store textclasses and layouts in.
9459         Simplified, removed a lot of code. Make all classes
9460         assignable. Further simplifications and review of type
9461         use still to be one. 
9462
9463         * src/menus.C (ShowFileMenu/ShowFileMenu2): Use the iterators from
9464         lastfiles to create the lastfiles partr of the menu.
9465
9466         * src/lastfiles.[Ch]: rewritten to use deque to store the
9467         lastfiles in. Uses fstream for reading and writing. Simplifies
9468         code.
9469
9470         * src/support/syscall.C: remove explicit cast.
9471
9472         * src/BufferView.C (CursorToggleCB): removed code snippets that
9473         were commented out.
9474         use explicat C++ style casts instead of C style casts. also use
9475         u_vdata instea of passing pointers in longs.
9476
9477         * src/PaperLayout.C: removed code snippets that were commented out.
9478
9479         * src/lyx_gui_misc.C: removed code snippets that were commented out. 
9480
9481         * src/lyx_main.C: removed code snippets that wer commented out.
9482
9483         * src/paragraph.C: removed code snippets that were commented out.
9484
9485         * src/lyxvc.C (logClose): use static_cast
9486         (logUpdate): ditto
9487         (viewLog): remove explicit cast to void*
9488         (showLog): removed old commented code
9489
9490         * src/menus.C: use static_cast instead of C style casts. use
9491         u_vdata instead of u_ldata. remove explicit cast to (long) for
9492         pointers. Removed old code that was commented out.
9493
9494         * src/insets/inset.C: removed old commented func
9495
9496         * src/insets/insetref.C (InsetRef): removed old code that had been
9497         commented out for a long time.
9498         (Edit): ditto
9499         (escape): removed C style cast
9500
9501         * src/insets/insetlatexaccent.C (Draw): removed old commented code
9502
9503         * src/insets/insetlatex.C (Draw): removed old commented code
9504         (Read): rewritten to use string
9505
9506         * src/insets/insetlabel.C (escape): removed C style cast
9507
9508         * src/insets/insetindex.h: removed vdata and ldata from FD_index_form
9509
9510         * src/insets/insetindex.C: use static_cast and u_vdata, removed
9511         old commented code.
9512
9513         * src/insets/insetinclude.h: removed a couple of stupid bools
9514
9515         * src/insets/insetinclude.C (include_cb): use static_cast and u_data.
9516         (Clone): remove C style cast
9517         (getKeys): changed list to lst because of std::list
9518
9519         * src/insets/inseterror.C (Draw): removed som old commented code.
9520
9521         * src/insets/insetcommand.C (Draw): removed some old commented code.
9522
9523         * src/insets/insetbib.C (bibitem_cb): removed code that has been
9524         commented out forever.
9525         (bibitem_cb): use static_cast instead of C style cast
9526         use of vdata changed to u_vdata.
9527
9528         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forward the data
9529         parameter.
9530         (CloseUrlCB): use static_cast instead of C style cast.
9531         (CloseUrlCB): added a fl_free form...it seemed to be missing.
9532
9533         * src/insets/insetinfo.C (Edit): pass object in u_vdata instead
9534         (C_InsetInfo_CloseInfoCB): forward the ob parameter
9535         (CloseInfoCB): static_cast from ob->u_vdata instead.
9536         (Edit): removed bogus arg from fl_set_object_shortcut, set to 1
9537         instead. 
9538
9539         * src/insets/inseterror.C (Edit): pass object in u_vdata instead
9540         (C_InsetError_CloseErrorCB): forward the ob parameter
9541         (CloseErrorCB): static_cast from ob->u_vdata instead.
9542
9543         * src/vspace.h: include LString.h since we use string in this class.
9544
9545         * src/vspace.C (lyx_advance): changed name from advance because of
9546         nameclash with stl. And since we cannot use namespaces yet...I
9547         used a lyx_ prefix instead. Expect this to change when we begin
9548         using namespaces.
9549
9550         * src/BufferView.[Ch] (BufferView::~BufferView): removed 
9551
9552         * src/BackStack.h: rewrote to use std::stack. made BackStackItem
9553         and removed now defunct constructor and deconstructor.
9554
9555         * src/BufferView.h: have backstack as a object not as a pointer.
9556         removed initialization from constructor. added include for BackStack 
9557
9558         * development/lyx.spec.in (%build): add CFLAGS also.
9559
9560         * src/screen.C (drawFrame): removed another warning.
9561
9562 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9563
9564         * renamed WHATSNEW to NEWS (usual GNU style), CHANGES to
9565         OLD-CHANGES (not used anymore) and modified INSTALL, INSTALL.OS2,
9566         README and ANNOUNCE a bit for the next release. More work is
9567         needed, of course.
9568
9569         * src/paragraph.C (SimpleTeXBlanks): spaces are automatically made
9570         unbreakable if we are in freespacing mode (LyX-Code), but not in
9571         latex mode.
9572
9573 1999-10-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
9574
9575         * src/BackStack.h: fixed initialization order in constructor
9576
9577         * Makefile.am (MAINTAINERCLEANFILES): removed po/POTFILES.in
9578
9579         * acinclude.m4 (VERSION): new rules for when a version is
9580         development, added also a variable for prerelease.
9581         (warnings): we set with_warnings=yes for prereleases
9582         (lyx_opt): prereleases compile with same optimization as development 
9583         (CXXFLAGS): only use pedantic if we are a development version 
9584
9585         * src/BufferView.C (restorePosition): don't do anything if the
9586         backstack is empty.
9587
9588         * src/BackStack.h: added member empty, use this to test if there
9589         is anything to pop...
9590
9591 1999-10-25  Juergen Vigna  <jug@sad.it>
9592
9593         * forms/form1.fd +
9594         * forms/layout_forms.fd +
9595         * forms/latexoptions.fd +
9596         * lyx.fd: changed for various form resize issues
9597
9598         * src/mathed/math_panel.C +
9599         * src/insets/inseterror.C +
9600         * src/insets/insetinfo.C +
9601         * src/insets/inseturl.C +
9602         * src/insets/inseturl.h +
9603         * src/LaTeXLog.C +
9604         * src/LyXSendto.C +
9605         * src/PaperLayout.C +
9606         * src/ParagraphExtra.C +
9607         * src/TableLayout.C +
9608         * src/form1.C +
9609         * src/layout_forms.C +
9610         * src/lyx.C +
9611         * src/lyx_cb.C +
9612         * src/lyx_gui.C +
9613         * src/lyxfr0.C +
9614         * src/lyxfunc.C +
9615         * src/lyxvc.C +
9616         * src/menus.C: fixed various resize issues. So now forms can be
9617         resized savely or not be resized at all.
9618         
9619         * forms/form_url.fd +
9620         * src/insets/form_url.[Ch]: added because it's cleaner and easier
9621         to modify IMO.
9622
9623         * src/insets/Makefile.am: added files form_url.[Ch]
9624         
9625 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9626
9627         * INSTALL: it is now possible to compile LyX with digital C++ 6.1
9628         (and presumably 6.2).
9629
9630         * src/{BufferView,LyXView,combox,filedlg,intl,lyxserver,lyxvc,
9631         menus,minibuffer,toolbar}.{C,h}: added C_xxx wrappers around
9632         remaining static member callbacks. 
9633
9634         * src/lyxfunc.C (Dispatch): Use _() instead of N_() fot minibuffer
9635         messages. 
9636
9637         * src/support/lyxstring.h: declare struct Srep as friend of
9638         lyxstring, since DEC cxx complains otherwise.
9639
9640 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
9641
9642 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
9643
9644         * src/LaTeX.C (run): made run_bibtex also depend on files with
9645         extension ".bst"
9646         (runBibTeX): added scans for "\\bibstyle", now also ".bst" files
9647         are put into the dependency file.
9648
9649         * src/spellchecker.C (create_ispell_pipe): removed old #warning,
9650         the code has shown itself to work
9651         (create_ispell_pipe): removed another warning, added a comment
9652         instead. 
9653
9654         * src/minibuffer.C (ExecutingCB): removed code that has been
9655         commented out a long time
9656
9657         * src/lyxfunc.C (processKeyEvent): removed some very old commented
9658         out code + a warning.
9659
9660         * src/support/lyxstring.h: comment out the three private
9661         operators, when compiling with string ansi conforming compilers
9662         they make problems.
9663
9664         * src/mathed/math_symbols.C (AddBitmap): change 6th arg to be
9665         unsigned char *.
9666         (pixmapFromBitmapData): change type of bdata to be unsigned char *
9667         (pixmapFromBitmapData): add a reinterpret_cast in the call to
9668         XCreateImage
9669
9670         * src/mathed/math_panel.h: change 6th arg to AddBitmap to be
9671         unsigned char *
9672
9673         * src/mathed/math_panel.C (create_math_panel): remove explicit
9674         casts
9675
9676         * src/bmtable.h: change last paramter to fl_set_bmtable_data to be
9677         unsigned char *.
9678
9679         * src/bmtable.C (struct BMTABLE_SPEC): make bdata unsigned char *
9680         (draw_bitmaptable): add a reinterpret_cast to sp->bdata in the call
9681         to XCreatePixmapFromBitmapData
9682         (fl_set_bmtable_data): change the last argument to be unsigned
9683         char *
9684         (fl_set_bmtable_file): change bdata to unsinged char *, change bw
9685         and bh to be unsigned int, remove explicit casts in call to
9686         XReadBitmapFileData.
9687
9688         * images/arrows.xbm: made the arrays unsigned char *
9689         * images/varsz.xbm: ditto
9690         * images/misc.xbm: ditto
9691         * images/greek.xbm: ditto
9692         * images/dots.xbm: ditto
9693         * images/brel.xbm: ditto
9694         * images/bop.xbm: ditto
9695
9696         * Makefile.am (MAINTAINERCLEANFILES): added po/POTFILES.in
9697
9698         * acinclude.m4 (LYX_GXX_STRENGHT_REDUCE): removed. 
9699         (LYX_PROG_CXX): added -pedantic to g++ compile options when
9700         with-warnings, removed the __STRING_ANSI__ hack, seems to not be
9701         needed. 
9702         (LYX_CXX_CHEADERS): added <clocale> to the test. 
9703
9704 1999-10-23  Lars Gullik Bjønnes  <larsbj@lyx.org>
9705
9706         * src/lyx_cb.C (addNewlineAndDepth): changed to use string::append.
9707
9708         * src/support/lyxstring.C (append): fixed something that must be a
9709         bug, rep->assign was used instead of rep->append.
9710
9711         * src/support/Makefile.am (libsupport_a_SOURCES): added LIstream.h
9712         and LOstream.h
9713
9714         * src/lyxfunc.C (processKeyEvent): removed faulty line that made
9715         lyx insert double chars. Fix spotted by Kayvan.
9716
9717 1999-10-23  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
9718
9719         * Fixed the tth support. I messed up with the Emacs patch apply feature
9720         and omitted the changes in lyxrc.C.
9721
9722 1999-10-22  Juergen Vigna  <jug@sad.it>
9723
9724         * src/insets/figinset.C (CallbackFig): Just changed the defines a bit.
9725
9726         * src/lyx_cb.C (MenuInsertRef) + 
9727         * src/lyx_gui.C (create_forms): Inserted fl_set_form_minsize so that
9728         the form cannot be resized under it limits (fixes a segfault)
9729         
9730         * src/lyx.C (create_form_form_ref) +
9731         * forms/lyx.fd: Changed Gravity on name input field so that it is
9732         resized correctly.
9733
9734 1999-10-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9735
9736         * configure.in: use LYX_CXX_STL_MODERN_STREAMS; check for headers
9737         <ostream> and <istream>.
9738         
9739         * acinclude.m4 (LYX_CXX_STL_MODERN_STREAMS): new test. Checks
9740         whether <fstream> provides the latest standard features, or if we
9741         have an oldstyle library (like in egcs).
9742         (LYX_CXX_STL_STRING): fix the test.
9743
9744         * src/support/DebugStream.{C,h}: use L{I,O}stream.h and condition the
9745         code on MODERN_STL_STREAM.
9746
9747         * src/support/lyxstring.h: use L{I,O}stream.h.
9748
9749         * src/support/L{I,O}stream.h: new files, designed to setup
9750         correctly streams for our use
9751           - includes the right header depending on STL capabilities
9752           - puts std::ostream and std::endl (for LOStream.h) or
9753           std::istream (LIStream.h) in toplevel namespace.
9754
9755 1999-10-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
9756
9757         * src/LaTeX.C (run): added a check in 0 sumchange so that if it
9758         was a bib file that had been changed we ensure that bibtex is run.
9759         (runBibTeX): enhanced to extract the names of the bib files and
9760         getting their absolute path and enter them into the dep file.
9761         (findtexfile): static func that is used to look for tex-files,
9762         checks for absolute patchs and tries also with kpsewhich.
9763         Alternative ways of finding the correct files are wanted. Will
9764         probably be moved.
9765         (do_popen): function that runs a command using popen and returns
9766         the whole output of that command in a string. Should be moved to
9767         somewhere else.
9768
9769         * src/DepTable.[Ch] (extchanged): new function that returns true if a
9770         file with extension ext has changed.
9771
9772         * src/insets/figinset.C: added ifdef guards around the fl_free
9773         code that jug commented out. Now it is commented out when
9774         compiling with XForms == 0.89.
9775
9776         * src/support/lyxstring.C: moved the definition of lyxstring::Srep
9777         to lyxstring.C, and only keep a forward declaration in
9778         lyxstring.h. Simplifies the header file a bit and should help a
9779         bit on compile time too. Also changes to Srep will not mandate a
9780         recompile of code just using string.
9781         (~lyxstring): definition moved here since it uses srep.
9782         (size): definition moved here since it uses srep.
9783
9784         * src/support/lyxstring.h: removed a couple of "inline" that should
9785         not be there.
9786
9787 1999-10-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9788
9789         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forgot to pass
9790         the 'ob' argument.
9791
9792 1999-10-21  Juergen Vigna  <jug@sad.it>
9793
9794         * src/table.C (SetPWidth): Just a small fix so the alignment is not
9795         set to left if I just remove the width entry (or it is empty).
9796
9797         * src/text2.C (SetCursorIntern): Fixed a bug calculating to use wrong
9798         paragraph when having dummy paragraphs.
9799
9800 1999-10-20  Juergen Vigna  <jug@sad.it>
9801
9802         * src/insets/figinset.C: just commented some fl_free_form calls
9803         and added warnings so that this calls should be activated later
9804         again. This avoids for now a segfault, but we have a memory leak!
9805
9806         * src/lyxfunc.C (processKeyEvent) (Dispatch): changed
9807         'const char * argument' to 'string argument', this should
9808         fix some Asserts() in lyxstring.C.
9809
9810         * src/lyxfunc.h: Removed the function argAsString(const char *)
9811         as it is not used anymore.
9812
9813 1999-10-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
9814
9815         * src/support/lyxstring.C (getline): reads now _all_ chars. uses
9816         get instead of >>
9817
9818         * src/Literate.h: some funcs moved from public to private to make
9819         interface clearer. Unneeded args removed.
9820
9821         * src/Literate.C (scanLiterateLogFile): rewritten to use iostream
9822         instead of lyxlex.
9823         (scanBuildLogFile): ditto
9824
9825         * src/LaTeX.C (scanLogFile): merged LaTeX Error handling into
9826         normal TeX Error. Still room for improvement.
9827
9828         * src/LaTeX.[Ch]: removed scanError. Wrong place and not needed.
9829
9830         * src/buffer.C (insertErrors): changes to make the error
9831         desctription show properly.
9832
9833         * src/LaTeX.C (deplog): removed the test for file in lyx doc dir.
9834         could never happen
9835
9836         * src/support/lyxstring.C (helper): changed to use
9837         sizeof(object->rep->ref).
9838         (operator>>): changed to use a pointer instead.
9839
9840         * src/support/lyxstring.h: changed const reference & to value_type
9841         const & lets see if that helps.
9842
9843 1999-10-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
9844
9845         * Makefile.am (rpmdist): fixed to have non static package and
9846         verison.
9847
9848         * src/support/lyxstring.C: removed the compilation guards
9849
9850         * src/vspace.C (nextToken): use i + 1  instead of ++i. Maks things
9851         a bit clearer.
9852
9853         * src/support/Makefile.am (LYXSTRING): bruker USE_LYXSTRING for
9854         conditional compile of lyxstring.Ch
9855
9856         * acinclude.m4 (LYX_CXX_STL_STRING): new and improved, still a
9857         stupid check, but it is a lot better than the bastring hack. 
9858         (LYX_CXX_STL_STRING): bruker nå AM_CONDITIONAL(USE_LYXSTRING  
9859
9860         * several files: changed string::erase into string::clear. Not
9861         really needed.
9862         
9863         * src/chset.C (encodeString): use a char temporary instead
9864
9865         * src/table.C (TexEndOfCell): added tostr around
9866         column_of_cell(fcell+i)+1 and around right_column_of_cell(fcell+i)+1
9867         (TexEndOfCell): ditto
9868         (TexEndOfCell): ditto
9869         (TexEndOfCell): ditto
9870         (DocBookEndOfCell): ditto
9871         (DocBookEndOfCell): ditto
9872         (DocBookEndOfCell): ditto
9873         (DocBookEndOfCell): ditto
9874
9875         * src/paragraph.C (TeXEnvironment): added tostr around foot_count -1
9876
9877         * src/lyxfr1.C (SearchReplaceAllCB): added tostr around replace_count
9878
9879         * src/lyx_cb.C (MenuRunLaTeX): added tostr around ret
9880         (MenuBuildProg): added tostr around ret
9881         (MenuRunChktex): added tostr around ret
9882         (DocumentApplyCB): added tostr around ret
9883
9884         * src/chset.C (encodeString): added tostr around t->ic
9885
9886         * src/buffer.C (makeLaTeXFile): added tostr around secnumdepth
9887         (makeLaTeXFile): added tostr around tocdepth
9888         (makeLaTeXFile): added tostr around ftcound - 1
9889
9890         * src/insets/insetbib.C (setCounter): added tostr around counter.
9891
9892         * src/support/lyxstring.h: added an operator+=(int) to catch more
9893         mistakes. 
9894
9895         * src/support/lyxstring.C (lyxstring): We DON'T allow NULL pointers.
9896         (lyxstring): We DON'T allow NULL pointers.
9897
9898 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9899
9900         * src/mathed/math_macro.C (MathMacroArgument::Write,
9901         MathMacroTemplate::WriteDef): add tostr() around macro arg numbers
9902         when writing them out.
9903
9904         * src/LString.C: remove, since it is not used anymore.
9905         
9906         * src/support/lyxstring.C: condition the content to
9907         USE_INCLUDED_STRING macro.
9908
9909         * src/mathed/math_symbols.C, src/support/lstrings.C,
9910         src/support/lyxstring.C: add `using' directive to specify what
9911         we need in <algorithm>. I do not think that we need to
9912         conditionalize this, but any thought is appreciated.
9913
9914         * many files: change all callback functions to "C" linkage
9915         functions to please strict C++ compilers like DEC cxx 6.1 in mode
9916         strict_ansi. Those who were static are now global. 
9917             The case of callbacks which are static class members is
9918         trickier, since we have to make C wrappers around them (see
9919         InsetError, InsetInfo and InsetUrl). The same holds for friends. I
9920         did not finish this yet, since it defeats the purpose of
9921         encapsulation, and I am not sure what the best route is.
9922
9923 1999-10-19  Juergen Vigna  <jug@sad.it>
9924
9925         * src/support/lyxstring.C (lyxstring): we permit to have a null
9926         pointer as assignment value and just don't assign it.
9927
9928         * src/vspace.C (nextToken): corrected this function substituting
9929         find_first(_not)_of with find_last_of.
9930
9931         * src/TableLayout.C (UpdateLayoutTable) (TableOptionsCB)
9932                 (TableOptCloseCB) (TableSpeCloseCB):
9933         inserted fl_set_focus call for problem with fl_hide_form() in
9934         xforms-0.89.
9935
9936 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9937
9938         * src/lyx_cb.C (LayoutsCB): fix bug where int was added to a
9939         string. 
9940
9941 1999-10-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9942
9943         * src/lyxrc.C (Read): RC_PRINTEXSTRAOPTIONS now uses
9944         LyXLex::next() and not eatline() to get its argument.
9945
9946 1999-10-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
9947
9948         * src/DepTable.[Ch]: rewritten to store the dependencies in a map
9949         instead, use fstreams for io of the depfile, removed unneeded
9950         functions and variables. 
9951
9952         * src/LaTeX.[Ch] (class TeXErrors): rewrote to store the errors in a
9953         vector instead, removed all functions and variables that is not in
9954         use.
9955
9956 1999-10-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
9957
9958         * src/buffer.C (insertErrors): use new interface to TeXError
9959
9960         * Makefile.am (rpmdist): added a rpmdist target
9961
9962         * lib/reLyX/Makefile.am: added RelyxFigure.pm and Verbatim.pm as
9963         per Kayvan's instructions.
9964
9965 1999-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9966
9967         * src/Makefile.am: add a definition for localedir, so that locales
9968         are found after installation (Kayvan)
9969
9970 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
9971
9972         * development/.cvsignore: new file.
9973
9974 1999-10-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9975
9976         * acinclude.m4 (LYX_CXX_CHEADERS): New macro. Checks whether the
9977         C++ compiler provides wrappers for C headers and use our alternate
9978         version otherwise.
9979
9980         * configure.in: use LYX_CXX_CHEADERS.
9981
9982         * src/cheader/: new directory, populated with cname headers from
9983         libstdc++-2.8.1. They are a bit old, but probably good enough for
9984         what we want (support compilers who lack them).
9985         
9986         * src/insets/Makefile.am, src/mathed/Makefile.am: remove src/support
9987         from includes. It turns out is was stupid.
9988  
9989 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
9990
9991         * lib/Makefile.am (install-data-local): forgot a ';'
9992         (install-data-local): forgot a '\'
9993         (libinstalldirs): needed after all. reintroduced.
9994
9995 1999-10-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
9996
9997         * configure.in (AC_OUTPUT): added lyx.spec
9998
9999         * development/lyx.spec: removed file
10000
10001         * development/lyx.spec.in: new file
10002
10003         * po/*.po: merged with lyx.pot becuase of make distcheck
10004         
10005         * lib/Makefile.am (dist-hook): added dist-hook so that
10006         documentation files will be included when doing a make
10007         dist/distdir/distcheck. Requires cvs export -r HEAD lyxdoc to run.
10008         (pkgdata_SCRIPTS): added configure.cmd for now, we can use som
10009         conditional later.
10010         more: tried to make install do the right thing, exclude CVS dirs
10011         etc.
10012
10013         * src/LaTeXLog.C (ShowLatexLog): reordered som statements so that
10014         Path would fit in more nicely.
10015
10016         * all files that used to use pathstack: uses now Path instead.
10017         This change was a lot easier than expected.
10018         
10019         * src/support/path.h: new file
10020
10021         * src/support/Makefile.am (libsupport_a_SOURCES): added path.h
10022
10023         * src/Makefile.am (lyx_SOURCES): removed pathstack.[Ch]
10024
10025         * src/support/lyxstring.C (getline): Default arg was given for
10026         para 3. removed.
10027
10028         * Configure.cmd: removed file 
10029
10030 1999-10-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10031
10032         * src/support/DebugStream.[Ch]: remove the explicit std:: before
10033         streams classes and types, add the proper 'using' statements when
10034         MODERN_STL is defined.
10035         
10036         * src/debug.h: move the << operator definition after the inclusion
10037         of DebugStream.h
10038
10039         * src/support/filetools.C: include "LAssert.h", which is needed
10040         later. 
10041
10042         * src/insets/Makefile.am, src/mathed/Makefile.am: add src/support
10043         to includes. 
10044
10045         * src/lyxfont.h, src/commandtags.h, src/mathed/math_defs.h:
10046         include "debug.h" to define a proper ostream.
10047
10048 1999-10-12  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
10049
10050         * src/sys*: Cleaned up the Systemcall stuff a bit. Added "kill(int)"
10051           method to the SystemCall class which can kill a process, but it's
10052           not fully implemented yet.
10053
10054         * src/*.C: Changed Systemcalls::Startscript() to startscript()
10055
10056         * src/support/FileInfo.h: Better documentation  
10057
10058         * src/lyxfunc.C: Added support for buffer-export html
10059         
10060         * src/menus.C: Added Export->As HTML...
10061         
10062         * lib/bind/*.bind: Added short-cut for buffer-export html
10063
10064         * src/lyxrc.*: Added support for new \tth_command
10065         
10066         * lib/lyxrc.example: Added stuff for new \tth_command
10067
10068 1999-10-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
10069
10070         * lib/Makefile.am (IMAGES): removed images/README
10071         (pkgdata_SCRIPTS): use this instead of bin_SCRIPTS to that it
10072         installes in correct place. Check permisions is installed
10073         correctly.
10074
10075         * src/LaTeX.C: some no-op changes moved declaration of some
10076         variables around.
10077
10078         * src/LaTeX.h (LATEX_H): changed include guard name
10079
10080 1999-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10081
10082         * lib/reLyX/Makefile.am: install noweb2lyx.
10083
10084         * lib/Makefile.am: install configure. 
10085
10086         * lib/reLyX/configure.in: declare a config aux dir; set package
10087         name to lyx (not sure what the best solution is); generate noweb2lyx.
10088
10089         * lib/layouts/egs.layout: fix the bibliography layout.
10090
10091 1999-10-08  Jürgen Vigna <jug@sad.it>
10092
10093         * src/support/filetools.C (FileOpenSearch): Fixed a bug where
10094         when in the PATH was something like /usr/bin;;/bin (note: the ;;)
10095         it returned without continuing to search the path.
10096         
10097 1999-10-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
10098
10099         * src/insets/insetquotes.C (Draw): Simplified a gread deal. This
10100         also fixes a bug. It is not allowed to do tricks with std::strings
10101         like: string a("hei"); &a[e]; this will not give what you
10102         think... Any reason for the complexity in this func?
10103
10104 1999-10-06  Asger Alstrup Nielsen  <alstrup@diku.dk>
10105
10106         * Updated README and INSTALL a bit, mostly to check that my
10107         CVS rights are correctly set up.
10108
10109 1999-10-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
10110
10111         * src/support/lyxstring.C (helper): removed bogus Assert. strlen
10112         does not allow '\0' chars but lyxstring and std::string does.
10113
10114 1999-10-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
10115
10116         * autogen.sh (AUTOCONF): let the autogen script create the
10117         POTFILES.in file too. POTFILES.in should perhaps now not be
10118         included in the cvs module.
10119
10120         * some more files changed to use C++ includes instead of C ones.
10121
10122         * src/filedlg.C (Reread): fixed a bug wrt Time. It was appended
10123         not assigned.
10124         (Reread): added tostr to nlink. buggy output otherwise.
10125         (Reread): added a string() around szMode when assigning to Buffer,
10126         without this I got a log of garbled info strings.
10127
10128         * acconfig.h: commented out the PTR_AS_INT macros. They should not
10129         be needed.
10130
10131         * I have added several ostream & operator<<(ostream &, some_type)
10132         functions. This has been done to avoid casting and warnings when
10133         outputting enums to lyxerr. This as thus eliminated a lot of
10134         explicit casts and has made the code clearer. Among the enums
10135         affected: kb_action, InsetLatexAccent::ACCENT_TYPE, a couple of
10136         mathed enums, some font enum the Debug::type enum. 
10137
10138         * src/support/lyxstring.h (clear): missing method. equivalent of
10139         erase(0, npos).
10140
10141         * all files that contained "stderr": rewrote constructs that used
10142         stderr to use lyxerr instead. (except bmtable)
10143
10144         * src/support/DebugStream.h (level): and the passed t with
10145         Debug::ANY to avoid spurious bits set.
10146
10147         * src/debug.h (Debug::type value): made it accept strings of the
10148         type INFO,INIT,KEY.
10149
10150         * configure.in (Check for programs): Added a check for kpsewhich,
10151         the latex generation will use this later to better the dicovery of
10152         all used files. 
10153
10154         * src/BufferView.C (create_view): we don't need to cast this to
10155         (void*) that is done automatically.
10156         (WorkAreaButtonPress): removed some dead code.
10157
10158 1999-10-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10159
10160         * src/minibuffer.C (Init): make sure that the "Welcome to LyX!"
10161         is not overwritten when translated (David Sua'rez de Lis).
10162
10163         * lib/CREDITS: Added David Sua'rez de Lis
10164
10165         * lib/reLyX/configure.in: setup LYX_DIR correctly in reLyX.
10166
10167         * src/bufferparams.C (BufferParams): default input encoding is now
10168         "latin1" 
10169
10170         * acinclude.m4 (cross_compiling): comment out macro
10171         LYX_GXX_STRENGTH_REDUCE. 
10172
10173         * acconfig.h: make sure that const is not defined (to empty) when
10174         we are compiling C++. Remove commented out code using SIZEOF_xx
10175         macros.
10176         
10177         * configure.in : move the test for const and inline as late as
10178         possible so that these C tests do not interefere with C++ ones.
10179         Remove the call to LYX_GXX_STRENGTH_REDUCE, since its usefulness
10180         has not been proven. 
10181
10182 1999-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10183
10184         * src/table.C (getDocBookAlign): remove bad default value for
10185         isColumn parameter.
10186
10187         * src/menus.C (ShowFileMenu): add a missing tostr() for lastfiles
10188         shortcut. 
10189         (ShowFileMenu2): ditto.
10190
10191         * lib/reLyX/.cvsignore: add configure and aclocal.m4 to the list
10192         of files to ignore.
10193
10194 1999-10-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
10195
10196         * Most files: finished the change from the old error code to use
10197         DebugStream for all lyxerr debugging. Only minor changes remain
10198         (e.g. the setting of debug levels using strings instead of number) 
10199
10200 1999-10-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
10201
10202         * src/layout.C (Add): Changed to use compare_no_case instead of
10203         strcasecmp.
10204
10205         * src/FontInfo.C: changed loop variable type too string::size_type.
10206
10207 1999-10-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
10208
10209         * src/support/Makefile.am: added -I${srcdir}/../ to INCLUDES and
10210         set ETAGS_ARGS to --c++ 
10211
10212 1999-09-30  Lars Gullik Bjønnes  <larsbj@lyx.org>
10213
10214         * src/table.C (DocBookEndOfCell): commented out two unused variables
10215
10216         * src/paragraph.C: commented out four unused variables. 
10217
10218         * src/lyx_cb.C (TocUpdateCB): moved variable i and added a new i
10219         insed a if clause with type string::size_type.
10220
10221         * src/lyxfr1.C (IsSearchStringInText): changed iSrch from int to
10222         string::size_type.
10223
10224         * src/lyxfunc.C (Dispatch): use string::size_type as loop variable.
10225
10226         * src/lyx_cb.C (ReplaceWord): use string::size_type as loop
10227         variable, also changed loop to go from 0 to lenght + 1, instead of
10228         -1 to length. This should be correct.
10229
10230         * src/LaTeX.C (scanError): use string::size_type as loop variable
10231         type.
10232
10233         * src/BufferView.C (WorkAreaButtonPress): moved #if 0 up two lines
10234         (l.896) since y_tmp and row was not used anyway.
10235
10236         * src/insets/insetref.C (escape): use string::size_type as loop
10237         variable type.
10238
10239         * src/insets/insetquotes.C (Width): use string::size_type as loop
10240         variable type.
10241         (Draw): use string::size_type as loop variable type.
10242
10243         * src/insets/insetlatexaccent.C (checkContents): use
10244         string::size_type as loop variable type.
10245
10246         * src/insets/insetlabel.C (escape): use string::size_type as loop
10247         variable type.
10248
10249         * src/insets/insetinfo.C: added an extern for current_view.
10250
10251         * src/insets/insetcommand.C (scanCommand): use string::size_type
10252         as loop variable type.
10253
10254         * most files: removed the RCS tags. With them we had to recompile
10255         a lot of files after a simple cvs commit. Also we have never used
10256         them for anything meaningful. 
10257
10258         * most files: tags-query-replace NULL 0. As adviced several plases
10259         we now use "0" instead of "NULL" in our code. 
10260
10261         * src/support/filetools.C (SpaceLess): use string::size_type as
10262         loop variable type.
10263
10264 1999-09-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
10265
10266         * src/paragraph.C: fixed up some more string stuff.
10267
10268 1999-09-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
10269
10270         * src/support/filetools.h: make modestr a std::string.
10271
10272         * src/filetools.C (GetEnv): made ch really const.
10273
10274         * src/lyxlib.h: removed the Maximum and Minimum inline functions,
10275         made code that used these use max/min from <algorithm> instead.
10276
10277         * changed several c library include files to their equivalent c++
10278         library include files. All is not changed yet.
10279
10280         * created a support subdir in src, put lyxstring and lstrings
10281         there + the extra files atexit, fileblock, strerror. Created
10282         Makefile.am. edited configure.in and src/Makefile.am to use this
10283         new subdir. More files moved to support.
10284
10285         * imported som of the functions from repository lyx, filetools
10286         
10287         * ran tags-query-replace on LString -> string, corrected the bogus
10288         cases. Tried to make use of lstrings.[hC], debugged a lot. There
10289         is still some errors in there. This is errors where too much or
10290         too litle get deleted from strings (string::erase, string::substr,
10291         string::replace), there can also be some off by one errors, or
10292         just plain wrong use of functions from lstrings. Viewing of quotes
10293         is wrong. 
10294
10295         * LyX is now running fairly well with string, but there are
10296         certainly some bugs yet (see above) also string is quite different
10297         from LString among others in that it does not allow null pointers
10298         passed in and will abort if it gets any.
10299         
10300         * Added the revtex4 files I forgot when setting up the repository.
10301
10302 1999-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
10303
10304         * All over: Tried to clean everything up so that only the files
10305           that we really need are included in the cvs repository.
10306         * Switched to use automake.
10307         * Generaton of reLyX is not perfect, LYX_DIR does not get substituted.
10308         * Install has not been checked.
10309
10310 1999-09-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
10311
10312         * po/pt.po: Three errors:
10313                l.533 and l.538 format specification error
10314                l. 402 duplicate entry, I just deleted it.